[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commits] r23220 - in /fsf/trunk/libc: ./ ports/ ports/sysdeps/unix/sysv/linux/aarch64/ posix/ string/



Author: eglibc
Date: Wed Jun  5 00:02:17 2013
New Revision: 23220

Log:
Import glibc-mainline for 2013-06-05

Modified:
    fsf/trunk/libc/ChangeLog
    fsf/trunk/libc/ports/ChangeLog.aarch64
    fsf/trunk/libc/ports/sysdeps/unix/sysv/linux/aarch64/getcontext.S
    fsf/trunk/libc/ports/sysdeps/unix/sysv/linux/aarch64/ucontext_i.sym
    fsf/trunk/libc/posix/tst-getaddrinfo4.c
    fsf/trunk/libc/string/test-strchrnul.c

Modified: fsf/trunk/libc/ChangeLog
==============================================================================
--- fsf/trunk/libc/ChangeLog (original)
+++ fsf/trunk/libc/ChangeLog Wed Jun  5 00:02:17 2013
@@ -1,3 +1,9 @@
+2013-06-03  Siddhesh Poyarekar  <siddhesh@xxxxxxxxxx>
+
+	* string/test-strchrnul.c: Add copyright header.
+
+	* posix/tst-getaddrinfo4.c: Increase test timeout.
+
 2013-06-03  Carlos O'Donell  <carlos@xxxxxxxxxx>
 
 	[BZ #15536]

Modified: fsf/trunk/libc/ports/ChangeLog.aarch64
==============================================================================
--- fsf/trunk/libc/ports/ChangeLog.aarch64 (original)
+++ fsf/trunk/libc/ports/ChangeLog.aarch64 Wed Jun  5 00:02:17 2013
@@ -1,3 +1,9 @@
+2013-06-04  Marcus Shawcroft  <marcus.shawcroft@xxxxxxxxxx>
+
+	* sysdeps/unix/sysv/linux/aarch64/getcontext.S (__getcontext):
+	Initialize pstate.
+	* sysdeps/unix/sysv/linux/aarch64/ucontext_i.sym (oPSTATE): Define.
+
 2013-05-29  Siddhesh Poyarekar  <siddhesh@xxxxxxxxxx>
 
 	[BZ #15465]

Modified: fsf/trunk/libc/ports/sysdeps/unix/sysv/linux/aarch64/getcontext.S
==============================================================================
--- fsf/trunk/libc/ports/sysdeps/unix/sysv/linux/aarch64/getcontext.S (original)
+++ fsf/trunk/libc/ports/sysdeps/unix/sysv/linux/aarch64/getcontext.S Wed Jun  5 00:02:17 2013
@@ -53,6 +53,10 @@
 	mov	x2, sp
 	str     x2, [x0, oSP]
 
+	/* Initialize the pstate.  */
+	mov	x3, #0
+	str	x3, [x0, oPSTATE]
+
 	/* Figure out where to place the first context extension
 	   block.  */
 	add     x2, x0, #oEXTENSION

Modified: fsf/trunk/libc/ports/sysdeps/unix/sysv/linux/aarch64/ucontext_i.sym
==============================================================================
--- fsf/trunk/libc/ports/sysdeps/unix/sysv/linux/aarch64/ucontext_i.sym (original)
+++ fsf/trunk/libc/ports/sysdeps/unix/sysv/linux/aarch64/ucontext_i.sym Wed Jun  5 00:02:17 2013
@@ -37,6 +37,7 @@
 oX0				mcontext (regs)
 oSP				mcontext (sp)
 oPC				mcontext (pc)
+oPSTATE				mcontext (pstate)
 oEXTENSION                      mcontext (__reserved)
 
 #define fpsimd_context(member)  offsetof (struct fpsimd_context, member)

Modified: fsf/trunk/libc/posix/tst-getaddrinfo4.c
==============================================================================
--- fsf/trunk/libc/posix/tst-getaddrinfo4.c (original)
+++ fsf/trunk/libc/posix/tst-getaddrinfo4.c Wed Jun  5 00:02:17 2013
@@ -64,4 +64,5 @@
 }
 
 #define TEST_FUNCTION do_test ()
+#define TIMEOUT 10
 #include "../test-skeleton.c"

Modified: fsf/trunk/libc/string/test-strchrnul.c
==============================================================================
--- fsf/trunk/libc/string/test-strchrnul.c (original)
+++ fsf/trunk/libc/string/test-strchrnul.c Wed Jun  5 00:02:17 2013
@@ -1,2 +1,21 @@
+/* Test and measure strchrnul function.
+
+   Copyright (C) 2011-2013 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
+
 #define USE_FOR_STRCHRNUL 1
 #include "test-strchr.c"

_______________________________________________
Commits mailing list
Commits@xxxxxxxxxx
http://eglibc.org/cgi-bin/mailman/listinfo/commits