ChangeLog fix
[glibc.git] / ChangeLog
blob41247ecc92ec9d3d3d3445ba4ef1bb997a59208a
1 2014-07-13  Jim Meyering  <meyering@fb.com>
3         [BZ 17150]
4         regex: don't deref NULL upon heap allocation failure
5         * posix/regcomp.c: (parse_dup_op): Handle duplicate_tree
6         failure in one more place.
7         To trigger the segfault, configure grep -with-included-regex,
8         build it, and run these commands:
9         ( ulimit -v 300000; echo a|src/grep -E a+++++++++++++++++++++ )
11 2014-07-13  Andreas Schwab  <schwab@linux-m68k.org>
13         * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
15 2014-07-11  Richard Henderson  <rth@redhat.com>
17         * sysdeps/aarch64/libm-test-ulps: Update.
19 2014-07-10  Florian Weimer  <fweimer@redhat.com>
21         [BZ #17135]
22         * nptl/pthreadP.h (__nptl_setxid_error): Declare function.
23         * nptl/allocatestack.c (__nptl_setxid_error): New function.
24         (__nptl_setxid): Initialize error member.  Call
25         __nptl_setxid_error.
26         * nptl/nptl-init.c (sighandler_setxid): Call __nptl_setxid_error.
27         * nptl/descr.h (struct xid_command): Add error member.
28         * nptl/tst-setuid3.c: New file.
29         * nptl/Makefile (tests): Add it.
31 2014-07-10  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
33         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h (__lll_base_trylock):
34         New define.
35         (__lll_trylock): Use __lll_base_trylock.
36         (__lll_cond_trylock): Likewise.
38 2014-07-10  Roland McGrath  <roland@hack.frob.com>
40         * nptl/pthread_create.c (start_thread): Use atomic_or and
41         lll_futex_wake directly rather than lll_robust_dead.
42         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h
43         (lll_robust_dead): Macro removed.
44         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: Likewise.
45         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Likewise.
46         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: Likewise.
47         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
48         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
49         * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Likewise.
50         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Likewise.
51         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
52         * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Likewise.
53         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
54         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
55         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
56         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
57         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
58         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
60         * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
61         Use atomic_compare_and_exchange_val_acq directly rather than
62         lll_robust_trylock.
63         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h
64         (__lll_robust_trylock, lll_robust_trylock): Removed.
65         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Likewise.
66         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: Likewise.
67         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
68         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
69         * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Likewise.
70         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Likewise.
71         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
72         * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Likewise.
73         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
74         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
75         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
76         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
77         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
78         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
80 2014-07-02  Florian Weimer  <fweimer@redhat.com>
82         * manual/locale.texi (Locale Names): New section documenting
83         locale name syntax.  Adjust menu and node chaining accordingly.
84         (Choosing Locale): Reference Locale Names, Locale Categories.
85         Mention setting LC_ALL=C.  Reflect that name syntax is now
86         documented.
87         (Locale Categories): New section title.  Reference Locale Names.
88         LC_ALL is an environment variable, but not a category.
89         (Setting the Locale): Remove "locale -a" invocation and LOCPATH
90         description, now in Locale Name.  Reference that section.  Locale
91         name syntax is now documented.
93 2014-07-02  Florian Weimer  <fweimer@redhat.com>
95         [BZ #17137]
96         * locale/findlocale.c (name_present, valid_locale_name): New
97         functions.
98         (_nl_find_locale): Use the loc_name variable to store name
99         candidates.  Call name_present and valid_locale_name to check and
100         validate locale names.  Return an error if the locale is invalid.
102 2014-07-02  Florian Weimer  <fweimer@redhat.com>
104         * locale/setlocale.c (setlocale): Use strdup for allocating
105         composite name copy.
107 2014-07-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
109         Sync up with gnulib.
110         * misc/error.c: Use !_LIBC instead of HAVE_CONFIG_H.
111         [!_LIBC && ENABLE_NLS]: Include gettext.h.
112         [_LIBC]: Define USE_UNLOCKED_IO, _GL_ATTRIBUTE_FORMAT_PRINTF
113         and _GL_ARG_NONNULL.
114         [USE_UNLOCKED_IO]: Include unlocked-io.h.
115         [!_LIBC]: Include code for Windows and Cygwin.
116         [!_LIBC && !HAVE_DECL_STRERROR_R && !STRERROR_R_CHAR_P]:
117         Include prototype for int strerror_r.
118         [!_LIBC] (is_open): New function.
119         (flush_stdout): New function.
120         (print_errno_message): Use it.
121         (error): Likewise.
122         (error_at_line): Likewise.
123         (error_tail) Add function attribute macros.  Use
124         __builtin_expect.
126         * time/strptime_l.c [_LIBC]: Define HAVE_LOCALTIME_R.
128         * time/strftime_l.c [_LIBC]: Define HAVE_STRFTIME.
130         * io/ftw.c: Include sys/param.h unconditionally.
132         * locale/programs/simple-hash.c [!HAVE_OBSTACK]: Remove code.
134         [BZ #17125]
135         * sysdeps/unix/sysv/linux/check_pf.c (cache): Don't use
136         libc_freeres_ptr.
137         (freecache): New function to free CACHE on exit.
139         * sunrpc/xdr.c (xdr_string): Add comment about SIZE
140         initialization.
142 2014-07-09  David S. Miller  <davem@davemloft.net>
144         * sysdeps/sparc/fpu/libm-test-ulps: Update.
146         * sysdeps/sparc/nptl/internaltypes.h: Delete.
147         * sysdeps/sparc/nptl/sparc-nptl.h: New file.
148         * sysdeps/sparc/nptl/pthread_barrier_destroy.c: Include it.
149         * sysdeps/sparc/nptl/pthread_barrier_init.c: Likewise.
150         * sysdeps/sparc/nptl/pthread_barrier_wait.c: Likewise.
151         * sysdeps/sparc/nptl/sem_init.c: Likewise.
152         * sysdeps/sparc/nptl/sem_post.c: Likewise.
153         * sysdeps/sparc/nptl/sem_timedwait.c: Likewise.
154         * sysdeps/sparc/nptl/sem_wait.c: Likewise.
155         * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: Likewise.
156         * sysdeps/sparc/sparc32/nptl/sem_post.c: Likewise.
157         * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: Likewise.
158         * sysdeps/sparc/sparc32/nptl/sem_wait.c: Likewise.
160 2014-07-09  Andreas Schwab  <schwab@suse.de>
162         * sysdeps/powerpc/test-gettimebase.c (do_test): Add newline to
163         output.
164         * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c
165         (do_test): Likewise.
167         * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
169 2014-07-09  Will Newton  <will.newton@linaro.org>
171         * sysdeps/aarch64/tlsdesc.c (_dl_unmap): Test SHARED with #ifdef.
172         * sysdeps/arm/tlsdesc.c (_dl_unmap): Likewise.
173         * sysdeps/i386/tlsdesc.c (_dl_unmap): Likewise.
174         * sysdeps/x86_64/tlsdesc.c (_dl_unmap): Likewise.
175         * sysdeps/hppa/start.S (_start): Likewise.
177 2014-07-09  Siddhesh Poyarekar  <siddhesh@redhat.com>
179         * sunrpc/xdr.c (xdr_string): Initialize SIZE to 0.
181         * sysdeps/generic/unwind-pe.h: Only check if __cplusplus is
182         defined.
184 2014-07-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
186         * resolv/res_query.c (__libc_res_nsearch): Dereference resplen2
187         after checking that it is non-NULL.
189         * sysdeps/i386/dl-machine.h: Define ELF_MACHINE_NO_REL.
191 2014-07-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
193         * sysdeps/powerpc/memmove.c: Remove file.
194         * sysdeps/powerpc/powerpc32/power4/memcopy.h
195         [MEMCPY_OK_FOR_FWD_MEMMOVE]: Define it to 1.
196         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c
197         [MEMCPY_OK_FOR_FWD_MEMMOVE]: Remove define.
198         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c:
199         [MEMCPY_OK_FOR_FWD_MEMMOVE]: Likewise.
200         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Include default
201         string memmove instead of removed powerpc one.
203         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S:
204         [weak_alias]: Fix compiler warning due trailing data.
205         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S:
206         [weak_alias]: Likewise.
207         * sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c: Fix compile
208         warnigs due missing definition of __strcpy_power7 and __strlen_power7.
210         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
211         (__libc_ifunc_impl_list): Add memmove functions.
213 2014-07-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
215         * localedata/tests-mbwc/dat_iswalnum.c [SHOJI_IS_RIGHT]:
216         Remove code.
217         * localedata/tests-mbwc/dat_iswalpha.c [SHOJI_IS_RIGHT]:
218         Likewise
219         * localedata/tests-mbwc/dat_iswctype.c [SHOJI_IS_RIGHT]:
220         Likewise
221         * localedata/tests-mbwc/dat_iswgraph.c [SHOJI_IS_RIGHT]:
222         Likewise
223         * localedata/tests-mbwc/dat_iswprint.c [SHOJI_IS_RIGHT]:
224         Likewise
225         * localedata/tests-mbwc/dat_iswpunct.c [SHOJI_IS_RIGHT]:
226         Likewise
227         * localedata/tests-mbwc/dat_mbrlen.c [SHOJI_IS_RIGHT]:
228         Likewise
229         * localedata/tests-mbwc/dat_mbstowcs.c [SHOJI_IS_RIGHT]:
230         Likewise
231         * localedata/tests-mbwc/dat_mbtowc.c [SHOJI_IS_RIGHT]:
232         Likewise
233         * localedata/tests-mbwc/dat_strcoll.c [SHOJI_IS_RIGHT]:
234         Likewise
235         * localedata/tests-mbwc/dat_swscanf.c [SHOJI_IS_RIGHT]:
236         Likewise
237         * localedata/tests-mbwc/dat_towctrans.c [SHOJI_IS_RIGHT]:
238         Likewise
239         * localedata/tests-mbwc/dat_wcscoll.c [SHOJI_IS_RIGHT]:
240         Likewise
241         * localedata/tests-mbwc/dat_wcswidth.c [SHOJI_IS_RIGHT]:
242         Likewise
243         * localedata/tests-mbwc/dat_wctob.c [SHOJI_IS_RIGHT]:
244         Likewise
245         * localedata/tests-mbwc/dat_wcwidth.c [SHOJI_IS_RIGHT]:
246         Likewise
247         * localedata/tests-mbwc/tst_towctrans.c [SHOJI_IS_RIGHT]:
248         Likewise
250 2014-07-07  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
252         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Align VSX copies to 16B
253         to avoid alignment traps in non-cacheable memory.
254         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Likewise.
256         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memmove
257         multiarch objects.
258         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c: New
259         file: multiarch power7 memmove.
260         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c: New file:
261         multiarch default memmove.
262         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove.c: New file:
263         multiarch memove for powerpc32/power4.
265         * string/bcopy.c: Use full path to include memmove.c.
266         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memmove and bcopy
267         multiarch objects.
268         * sysdeps/powerpc/powerpc64/multiarch/bcopy-ppc64.c: New file: default
269         bcopy for powerpc64.
270         * sysdeps/powerpc/powerpc64/multiarch/bcopy.c: New file: multiarch
271         bcopy for powerpc64.
272         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Add bcopy
273         and memmove implementations.
274         * sysdeps/powerpc/powerpc64/multiarch/memmove-power7.S: New file:
275         optimized multiarch memmove for POWER7/powerpc64.
276         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: New file:
277         default multiarch memmove for powerpc64.
278         * sysdeps/powerpc/powerpc64/multiarch/memmove.c: New file: memmove
279         multiarch for powerpc64.
280         * sysdeps/powerpc/powerpc64/power7/bcopy.c: New file: optimized bcopy
281         for POWER7/powerpc64.
282         * sysdeps/powerpc/powerpc64/power7/memmove.S: New file: optimized
283         memmove for POWER7/powerpc64.
285         * sysdeps/powerpc/memmove.c (memmove): Cleanup impplementation to use
286         glibc default one.
288         * sysdeps/powerpc/bits/link.h [_CALL_ELF]: Guard check for
289         __ELF_NATIVE_CLASS equal to 64.
291 2014-07-07  Roland McGrath  <roland@hack.frob.com>
293         * sysdeps/nptl/lowlevellock.h: File removed.
295         * NEWS: NPTL is no longer an add-on!
296         * nptl/internaltypes.h: Moved ...
297         * sysdeps/nptl/internaltypes.h: ... here.
298         * sysdeps/nptl/aio_misc.h: Use <nptl/pthreadP.h> in #include.
299         * sysdeps/nptl/fork.c: Likewise.
300         * sysdeps/nptl/gai_misc.h: Likewise.
301         * sysdeps/nptl/librt-cancellation.c: Likewise.
302         * sysdeps/nptl/jmp-unwind.c: Likewise.
303         * sysdeps/nptl/setxid.h: Likewise.
304         * sysdeps/unix/sysv/linux/aarch64/Implies: New file.
305         * sysdeps/unix/sysv/linux/alpha/Implies: Add alpha/nptl.
306         * sysdeps/unix/sysv/linux/arm/Implies: New file.
307         * sysdeps/unix/sysv/linux/hppa/Implies: New file.
308         * sysdeps/unix/sysv/linux/i386/Implies: Add i386/nptl.
309         * sysdeps/unix/sysv/linux/i386/i686/Implies: New file.
310         * sysdeps/unix/sysv/linux/ia64/Implies: Add ia64/nptl.
311         * sysdeps/unix/sysv/linux/m68k/Implies: New file.
312         * sysdeps/unix/sysv/linux/microblaze/Implies: New file.
313         * sysdeps/unix/sysv/linux/mips/Implies: New file.
314         * sysdeps/unix/sysv/linux/powerpc/Implies: New file.
315         * sysdeps/unix/sysv/linux/s390/Implies: Add s390/nptl.
316         * sysdeps/unix/sysv/linux/sh/Implies: New file.
317         * sysdeps/unix/sysv/linux/sparc/Implies: New file.
318         * sysdeps/unix/sysv/linux/tile/Implies: New file.
319         * sysdeps/unix/sysv/linux/x86_64/Implies: Add x86_64/nptl.
320         * sysdeps/unix/sysv/linux/x86_64/x32/Implies: New file.
321         * nptl/Makeconfig: Moved ...
322         * sysdeps/nptl/Makeconfig: ... here.
323         * nptl/configure: File removed.
324         * nptl/ANNOUNCE: File removed.
325         * sysdeps/unix/sysv/linux/configure.ac: Remove nptl sanity check.
326         * sysdeps/unix/sysv/linux/configure: Regenerated.
328         * nptl/Makefile (routines): Add libc_pthread_init,
329         libc_multiple_threads, register-atfork and unregister-atfork.
330         (libpthread-routines): Add pthread_mutex_cond_lock and pt-fork here.
331         (gen-as-const-headers): Add lowlevelcond.sym, lowlevelrwlock.sym,
332         lowlevelbarrier.sym, unwindbuf.sym, lowlevelrobustlock.sym,
333         pthread-pi-defines.sym, structsem.sym.
334         * sysdeps/unix/sysv/linux/Makefile [$(subdir) = posix]
335         (CFLAGS-fork.c, CFLAGS-getpid.o, CFLAGS-getpid.os): New variables.
336         [$(subdir) = nptl] (tests): Add tst-setgetname.
337         * nptl/sysdeps/unix/sysv/linux/Makefile: File removed.
338         * sysdeps/unix/sysv/linux/sigaction.c: Just include
339         <nptl/sigaction.c> directly here, instead of WRAPPER_INCLUDE.
340         [!LIBC_SIGACTION]: Remove aliases.
341         * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Likewise.
342         * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
343         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
344         * sysdeps/unix/sysv/linux/ia64/sigaction.c: Likewise.
345         * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
346         * sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c: Likewise.
347         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
348         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
349         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
350         * nptl/Versions (libc: GLIBC_2.3.2): Add __register_atfork.
351         (libc: GLIBC_PRIVATE): Add __libc_pthread_init,
352         __libc_current_sigrtmin_private, __libc_current_sigrtmax_private,
353         __libc_allocate_rtsig_private.
354         * nptl/sysdeps/unix/sysv/linux/Versions: File removed.
355         * sysdeps/unix/sysv/linux/sigtimedwait.c: Include <nptl/pthreadP.h>.
356         * sysdeps/unix/sysv/linux/sigwait.c: Likewise.
357         * sysdeps/unix/sysv/linux/sigwaitinfo.c: Likewise.
358         * sysdeps/unix/sysv/linux/sleep.c: Likewise.
359         * nptl/sysdeps/unix/sysv/linux/sigwait.c: File removed.
360         * nptl/sysdeps/unix/sysv/linux/sigtimedwait.c: File removed.
361         * nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c: File removed.
362         * nptl/sysdeps/unix/sysv/linux/sleep.c: File removed.
363         * nptl/sysdeps/unix/sysv/linux/createthread.c: File removed.
364         * sysdeps/unix/sysv/linux/ia64/fork.S: File removed.
365         * nptl/sysdeps/unix/sysv/linux/internaltypes.h: Moved ...
366         * nptl/internaltypes.h: ... here.
367         * nptl/sysdeps/unix/sysv/linux/jmp-unwind.c: Moved ...
368         * sysdeps/nptl/jmp-unwind.c: ... here.
369         * nptl/sysdeps/unix/sysv/linux/libc-lowlevellock.c: Moved ...
370         * nptl/libc-lowlevellock.c: ... here.
371         * nptl/sysdeps/unix/sysv/linux/libc_multiple_threads.c: Moved ...
372         * nptl/libc_multiple_threads.c: ... here.
373         * nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c: Moved ...
374         * nptl/libc_pthread_init.c: ... here.
375         * nptl/sysdeps/unix/sysv/linux/lowlevelbarrier.sym: Moved ...
376         * nptl/lowlevelbarrier.sym: ... here.
377         * nptl/sysdeps/unix/sysv/linux/lowlevelcond.sym: Moved ...
378         * nptl/lowlevelcond.sym: ... here.
379         * nptl/sysdeps/unix/sysv/linux/lowlevellock.c: Moved ...
380         * nptl/lowlevellock.c: ... here.
381         * nptl/lowlevellock.h: Moved ...
382         * sysdeps/nptl/lowlevellock.h: ... here.
383         * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c: Moved ...
384         * nptl/lowlevelrobustlock.c: ... here.
385         * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.sym: Moved ...
386         * nptl/lowlevelrobustlock.sym: ... here.
387         * nptl/sysdeps/unix/sysv/linux/lowlevelrwlock.sym: Moved ...
388         * nptl/lowlevelrwlock.sym: ... here.
389         * nptl/sysdeps/unix/sysv/linux/pt-fork.c: Moved ...
390         * nptl/pt-fork.c: ... here.
391         * nptl/sysdeps/unix/sysv/linux/pthread-pi-defines.sym: Moved ...
392         * nptl/pthread-pi-defines.sym: ... here.
393         * nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Moved ...
394         * nptl/pthread_attr_getaffinity.c: ... here.
395         * nptl/sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c: Moved ...
396         * nptl/pthread_attr_setaffinity.c: ... here.
397         * nptl/sysdeps/unix/sysv/linux/pthread_mutex_cond_lock.c: Moved ...
398         * nptl/pthread_mutex_cond_lock.c: ... here.
399         * sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c:
400         Update #include.
401         * sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: Likewise.
402         * nptl/sysdeps/unix/sysv/linux/pthread_once.c: Moved ...
403         * nptl/pthread_once.c: ... here, replacing old file.
404         * nptl/sysdeps/unix/sysv/linux/pthread_yield.c: Moved ...
405         * nptl/pthread_yield.c: ... here.
406         * nptl/sysdeps/unix/sysv/linux/register-atfork.c: Moved ...
407         * nptl/register-atfork.c: ... here.
408         * nptl/sysdeps/unix/sysv/linux/sem_post.c: Moved ...
409         * nptl/sem_post.c: ... here.
410         * sysdeps/unix/sysv/linux/alpha/sem_post.c: Update #include.
411         * nptl/sysdeps/unix/sysv/linux/sem_timedwait.c: Moved ...
412         * nptl/sem_timedwait.c: ... here.
413         * nptl/sysdeps/unix/sysv/linux/sem_trywait.c: Moved ...
414         * nptl/sem_trywait.c: ... here.
415         * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: Update #include.
416         * nptl/sysdeps/unix/sysv/linux/sem_wait.c: Moved ...
417         * nptl/sem_wait.c: ... here.
418         * nptl/sysdeps/unix/sysv/linux/structsem.sym: Moved ...
419         * nptl/structsem.sym: ... here.
420         * nptl/sysdeps/unix/sysv/linux/mq_notify.c: Moved ...
421         * sysdeps/unix/sysv/linux/mq_notify.c: ... here, replacing old file.
422         * nptl/sysdeps/unix/sysv/linux/unregister-atfork.c: Moved ...
423         * nptl/unregister-atfork.c: ... here.
424         * nptl/sysdeps/unix/sysv/linux/unwindbuf.sym: Moved ...
425         * nptl/unwindbuf.sym: ... here.
426         * nptl/sysdeps/unix/sysv/linux/fork.c: Moved ...
427         * sysdeps/nptl/fork.c: ... here.
428         * nptl/sysdeps/unix/sysv/linux/fork.h: Moved ...
429         * sysdeps/nptl/fork.h: ... here.
430         * sysdeps/unix/sysv/linux/syscalls.list: Remove fork.
431         * nptl/sysdeps/unix/sysv/linux/aio_misc.h: Moved ...
432         * sysdeps/unix/sysv/linux/aio_misc.h: ... here.
433         * nptl/sysdeps/unix/sysv/linux/allocrtsig.c: Moved ...
434         * sysdeps/unix/sysv/linux/allocrtsig.c: ... here.
435         * nptl/sysdeps/unix/sysv/linux/getpid.c: Moved ...
436         * sysdeps/unix/sysv/linux/getpid.c: ... here.
437         * nptl/sysdeps/unix/sysv/linux/kernel-posix-timers.h: Moved ...
438         * sysdeps/unix/sysv/linux/kernel-posix-timers.h: ... here.
439         * nptl/sysdeps/unix/sysv/linux/pt-raise.c: Moved ...
440         * sysdeps/unix/sysv/linux/pt-raise.c: ... here.
441         * nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c: Moved ...
442         * sysdeps/unix/sysv/linux/pthread_getaffinity.c: ... here.
443         * nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: Moved ...
444         * sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: ... here.
445         * nptl/sysdeps/unix/sysv/linux/pthread_getname.c: Moved ...
446         * sysdeps/unix/sysv/linux/pthread_getname.c: ... here.
447         * nptl/sysdeps/unix/sysv/linux/pthread_kill.c: Moved ...
448         * sysdeps/unix/sysv/linux/pthread_kill.c: ... here.
449         * nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c: Moved ...
450         * sysdeps/unix/sysv/linux/pthread_setaffinity.c: ... here.
451         * nptl/sysdeps/unix/sysv/linux/pthread_setname.c: Moved ...
452         * sysdeps/unix/sysv/linux/pthread_setname.c: ... here.
453         * nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c: Moved ...
454         * sysdeps/unix/sysv/linux/pthread_sigqueue.c: ... here.
455         * nptl/sysdeps/unix/sysv/linux/raise.c: Moved ...
456         * sysdeps/unix/sysv/linux/raise.c: ... here.
457         * nptl/sysdeps/unix/sysv/linux/timer_create.c: Moved ...
458         * sysdeps/unix/sysv/linux/timer_create.c: ... here.
459         * nptl/sysdeps/unix/sysv/linux/timer_delete.c: Moved ...
460         * sysdeps/unix/sysv/linux/timer_delete.c: ... here.
461         * nptl/sysdeps/unix/sysv/linux/timer_getoverr.c: Moved ...
462         * sysdeps/unix/sysv/linux/timer_getoverr.c: ... here.
463         * nptl/sysdeps/unix/sysv/linux/timer_gettime.c: Moved ...
464         * sysdeps/unix/sysv/linux/timer_gettime.c: ... here.
465         * nptl/sysdeps/unix/sysv/linux/timer_routines.c: Moved ...
466         * sysdeps/unix/sysv/linux/timer_routines.c: ... here.
467         * nptl/sysdeps/unix/sysv/linux/timer_settime.c: Moved ...
468         * sysdeps/unix/sysv/linux/timer_settime.c: ... here.
469         * nptl/sysdeps/unix/sysv/linux/tst-setgetname.c: Moved ...
470         * sysdeps/unix/sysv/linux/tst-setgetname.c: ... here.
471         * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Update #include.
473 2014-07-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
475         * sysdeps/generic/memcopy.h: Add comment for
476         MEMCPY_OK_FOR_FWD_MEMMOVE.
478 2014-07-04  Will Newton  <will.newton@linaro.org>
480         * string/memchr.c: Merge from gnulib.
481         [_LIBC]: Remove conditionals.
482         (__ptr_t): Remove define.
483         (LONG_MAX_32_BITS): Likewise.
484         (LONG_MAX): Likewise.
485         (MEMCHR): Use ANSI prototype and optimize algorithm.
487         * sysdeps/arm/dl-machine.h (ELF_MACHINE_NO_REL): Define.
489 2014-07-03  Roland McGrath  <roland@hack.frob.com>
491         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h
492         (lll_futex_timed_wait_bitset): Fix syscall argument count.
494         * sysdeps/nptl/configure.ac (libc_cv_forced_unwind):
495         Use -Dinhibit_libc=1 for unwind.h check to prevent false failure
496         in a bare environment with no <stdlib.h> installed.
497         * sysdeps/nptl/configure: Regenerated.
499         * sysdeps/alpha/fpu/s_nearbyint.c: Include <math_ldbl_opt.h>.
501         * sysdeps/unix/sysv/linux/configure.ac: Use AC_TRY_COMPILE rather than
502         AC_EGREP_CPP for kernel header checks, so they only succeed if
503         including <linux/version.h> actually works right.
504         * sysdeps/unix/sysv/linux/configure: Regenerated.
506         * sysdeps/s390/nptl/tls.h (THREAD_SET_POINTER_GUARD): Refer to the
507         value so it's not diagnosed as unused.
509         * sysdeps/pthread/Makefile: Conditionalize tst-timer bits (the only
510         thing) with "ifeq ($(subdir),rt)".
512 2014-07-03  Richard Henderson  <rth@redhat.com>
514         * sysdeps/alpha/fpu/s_nearbyintf.c: Remove file.
515         * sysdeps/alpha/fpu/s_nearbyint.c (__nearbyint): Remove;
516         include sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c.
518         * sysdeps/alpha/fpu/math_private.h (math_opt_barrier): New.
519         (math_force_eval): New.
521         * sysdeps/alpha/fpu/s_lround.c: Add 0.5 with chopped rounding.
522         * sysdeps/alpha/fpu/s_lroundf.c: Likewise.
524         * sysdeps/alpha/fpu/s_round.c: Remove file.
525         * sysdeps/alpha/fpu/s_roundf.c: Remove file.
527         * elf/dl-support.c (HP_TIMING_AVAIL): Do not redefine.
528         (_dl_non_dynamic_init): Check HP_SMALL_TIMING_AVAIL instead.
529         * elf/rtld.c (HP_TIMING_AVAIL): Do not redefine.
530         (_dl_start_final): Check HP_SMALL_TIMING_AVAIL instead.
531         (_dl_start, print_statistics): Likewise.
532         * sysdeps/generic/ldsodefs.h (struct rtld_global): Only check
533         HP_SMALL_TIMING_AVAIL in defining _dl_cpuclock_offset.
535         * sysdeps/aarch64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
536         * sysdeps/generic/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
537         * sysdeps/i386/i686/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
538         * sysdeps/ia64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
539         * sysdeps/powerpc/powerpc32/power4/hp-timing.h
540         (HP_SMALL_TIMING_AVAIL): Define.
541         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
542         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h
543         (HP_SMALL_TIMING_AVAIL): Define.
544         * sysdeps/sparc/sparc64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
545         * sysdeps/x86_64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
547         * sysdeps/aarch64/hp-timing.h: New file.
549         * sysdeps/generic/hp-timing.h: Remove dead comment.
550         * sysdeps/generic/hp-timing-common.h: New file.
551         * sysdeps/alpha/hp-timing.h: Include it.
552         (HP_TIMING_DIFF, HP_TIMING_ACCUM_NT, HP_TIMING_PRINT): Remove.
553         * sysdeps/i386/i686/hp-timing.h: Likewise.
554         * sysdeps/ia64/hp-timing.h: Likewise.
555         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
556         * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
557         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
558         * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
559         * sysdeps/x86_64/hp-timing.h: Don't include the i686 version.
560         (HP_TIMING_AVAIL, HP_TIMING_INLINE): Define.
561         (hp_timing_t): New.
563         * benchtests/bench-string.h (_dl_hp_timing_overhead): Remove.
564         * benchtests/bench-timing.h (_dl_hp_timing_overhead): Remove.
565         (TIMING_INIT): Remove call to HP_TIMING_DIFF_INIT.
566         * elf/rtld.c (_dl_start_final): Likewise.
567         * sysdeps/generic/ldsodefs.h (_dl_hp_timing_overhead): Remove.
568         * sysdeps/alpha/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
569         * sysdeps/generic/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
570         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
571         * sysdeps/ia64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
572         * sysdeps/powerpc/powerpc32/power4/hp-timing.h
573         (HP_TIMING_DIFF_INIT): Remove.
574         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
575         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h
576         (HP_TIMING_DIFF_INIT): Remove.
577         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
578         * sysdeps/i386/i686/hp-timing.c: Remove file.
579         * sysdeps/x86_64/hp-timing.c: Remove file.
580         * sysdeps/ia64/hp-timing.c: Remove file.
581         * sysdeps/powerpc/powerpc32/power4/hp-timing.c: Remove file.
582         * sysdeps/powerpc/powerpc64/hp-timing.c: Remove file.
583         * sysdeps/sparc/sparc32/sparcv9/hp-timing.c: Remove file.
584         * sysdeps/sparc/sparc64/hp-timing.c: Remove file.
586         * sysdeps/alpha/hp-timing.h (HP_TIMING_ACCUM): Remove.
587         * sysdeps/generic/hp-timing.h (HP_TIMING_ACCUM): Remove.
588         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ACCUM): Remove.
589         * sysdeps/ia64/hp-timing.h (HP_TIMING_ACCUM): Remove.
590         * sysdeps/powerpc/powerpc32/power4/hp-timing.h
591         (HP_TIMING_ACCUM): Remove.
592         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_ACCUM): Remove.
593         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h (HP_TIMING_ACCUM): Remove.
594         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_ACCUM): Remove.
596         * sysdeps/alpha/hp-timing.h (HP_TIMING_ZERO): Remove.
597         * sysdeps/generic/hp-timing.h (HP_TIMING_ZERO): Remove.
598         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ZERO): Remove.
599         * sysdeps/ia64/hp-timing.h (HP_TIMING_ZERO): Remove.
600         * sysdeps/powerpc/powerpc32/power4/hp-timing.h (HP_TIMING_ZERO): Remove.
601         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_ZERO): Remove.
602         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h (HP_TIMING_ZERO): Remove.
603         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_ZERO): Remove.
605         * sysdeps/powerpc/powerpc32/hp-timing.h: Remove file.
607 2014-07-03  Maciej W. Rozycki  <macro@codesourcery.com>
609         * stdlib/tst-strtod-overflow.c (TIMEOUT): Bump up to 30.
611 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
613         Sync up with gettext.
614         * intl/loadmsgcat.c: Define O_BINARY if not defined.
615         [_MSC_VER]: Include malloc.h
616         [_LIBC]: Define PRI_MACROS_BROKEN if it is not defined.
617         (get_sysdep_segment_value) [!__UCLIBC__]: Return "I" flag.
618         (_nl_load_domain): Open DOMAIN_FILE in binary mode.  Don't use
619         TEMP_FAILURE_RETRY.  Cast return of alloca.
620         [!_LIBC] Call gl_rwlock_init.
621         [IN_LIBGLOCALE]: Call _nl_find_msg with one less argument.
623 2014-07-02  Roland McGrath  <roland@hack.frob.com>
625         * misc/sys/cdefs.h: Check if __STDC_VERSION__ is defined
626         before checking its value.
628 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
630         * intl/loadmsgcat.c (_nl_load_domain): Use __builtin_expect.
632         * debug/memcpy_chk.c: Don't include pagecopy.h.
633         * debug/mempcpy_chk.c: Likewise.
634         * string/memcpy.c: Likewise.
635         * string/memmove.c: Likewise.
636         * sysdeps/powerpc/memmove.c: Likewise.
637         * sysdeps/generic/memcopy.h: Include pagecopy.h.  Move
638         definition of PAGE_COPY_FWD_MAYBE here...
639         * sysdeps/generic/pagecopy.h: ... from here.
640         * sysdeps/mach/pagecopy.h: Don't include generic pagecopy.h.
642 2014-07-02  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
643             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
645         * sysdeps/powerpc/strcat.c: Using macro to redefine symbol name.
646         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcat multiarch
647         optimizations.
648         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
649         (__libc_ifunc_impl_list): Likewise.
650         * sysdeps/powerpc/powerpc64/multiarch/strcat.c: New file:
651         multiarch strcat for PPC64.
652         * sysdeps/powerpc/powerpc64/multiarch/strcat-ppc64.c: New file/
653         * sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c: New file.
655 2014-07-02  Roland McGrath  <roland@hack.frob.com>
657         * sysdeps/unix/sysv/linux/dl-sysdep.c: Include <sys/param.h>.
659 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
661         * intl/loadmsgcat.c: Remove declaration of
662         get_sysdep_segment_value.
663         (get_sysdep_segment_value): Use ISO C style.
664         (_nl_load_domain): Use ISO C style.  Get rid of redundant
665         semicolon.  Fix typo and formatting in comment.
666         (_nl_unload_domain): Use ISO C style.
668         * sysdeps/posix/sysconf.c (__sysconf): Fix typo in macro name.
670 2014-07-02  Will Newton  <will.newton@linaro.org>
672         * malloc/obstack.c: Merge from gnulib master.
673         [HAVE_CONFIG_H]: Remove conditional code.
674         [!_LIBC]: Include config.h.
675         [!ELIDE_CODE]: Don't include inttypes.h, include
676         stdint.h unconditionally.
677         (print_and_abort): Mark as _Noreturn.
678         (_obstack_allocated_p): Mark as __attribute_pure__.
679         (obstack_free): Rename to __obstack_free.
680         [!__attribute__]: Remove conditional code.
681         * malloc/obstack.h: Merge from gnulib master.
682         [__cplusplus]: Move conditional down.
683         [!__attribute_pure__]: Define __attribute_pure__ here
684         if it is not already defined.
685         (_obstack_memory_used): Mark as __attribute_pure__.
686         [!__obstack_free]: Define as obstack_free.
687         [__GNUC__]: Remove check for ancient NeXT gcc.
689 2014-07-02  Will Newton  <will.newton@linaro.org>
690             Paul Eggert  <eggert@cs.ucla.edu>
692         * misc/sys/cdefs.h (_Noreturn): New macro, for pre-C11 compilers.
694 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
696         * resolv/gethnamaddr.c: Add comment warning that the file is
697         not maintained.
699 2014-07-01  Carlos O'Donell  <carlos@redhat.com>
701         * sysdeps/unix/sysv/linux/hppa/librt.abilist: Remove GLIBC_2.3
702         entries.
704         * sysdeps/unix/sysv/linux/hppa/Versions: Remove librt GLIBC_2.3
705         entry for aio_cancel and aio_cancel64.
706         * sysdeps/unix/sysv/linux/hppa/ld.abilist: New file.
707         * sysdeps/unix/sysv/linux/hppa/libBrokenLocale.abilist: New file.
708         * sysdeps/unix/sysv/linux/hppa/libanl.abilist: New file.
709         * sysdeps/unix/sysv/linux/hppa/libc.abilist: New file.
710         * sysdeps/unix/sysv/linux/hppa/libcrypt.abilist: New file.
711         * sysdeps/unix/sysv/linux/hppa/libdl.abilist: New file.
712         * sysdeps/unix/sysv/linux/hppa/libm.abilist: New file.
713         * sysdeps/unix/sysv/linux/hppa/libnsl.abilist: New file.
714         * sysdeps/unix/sysv/linux/hppa/libpthread.abilist: New file.
715         * sysdeps/unix/sysv/linux/hppa/libresolv.abilist: New file.
716         * sysdeps/unix/sysv/linux/hppa/librt.abilist: New file.
717         * sysdeps/unix/sysv/linux/hppa/libthread_db.abilist: New file.
718         * sysdeps/unix/sysv/linux/hppa/libutil.abilist: New file.
720 2014-07-01  Roland McGrath  <roland@hack.frob.com>
722         * sysdeps/unix/sysv/linux/sysconf.c: Include <sys/param.h>.
723         * nptl/pthread_mutex_lock.c: Likewise.
724         * nptl/pthread_mutex_timedlock.c: Likewise.
725         * nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Likewise.
727 2014-07-01  Richard henderson  <rth@redhat.com>
729         * sysdeps/alpha/fpu/bits/mathinline.h (__isnanf): Remove.
730         (__isnan, __isnanl): Remove.
731         * sysdeps/alpha/fpu/s_isnan.c (__isnan): Use integer arithmetic.
733         * sysdeps/alpha/fpu/libm-test-ulps: Update.
735 2014-07-01  Stefan Liebler  <stli@linux.vnet.ibm.com>
737         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
739 2014-07-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
741         * resolv/nss_dns/dns-host.c (getanswer_r)
742         [MULTI_PTRS_ARE_ALIASES]: Remove code.
744 2014-07-01  Joseph Myers  <joseph@codesourcery.com>
746         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
747         [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PSELECT): Do not
748         undefine.
749         [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PREADV): Likewise.
750         [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PWRITEV): Likewise.
752 2014-07-01  Roland McGrath <roland@hack.frob.com>
754         * sysdeps/unix/sysv/linux/microblaze/arch-fork.h: New file.
755         * sysdeps/unix/sysv/linux/microblaze/nptl/fork.c: File removed.
757         * sysdeps/microblaze/nptl/tls.h: Define TLS_DEFINE_INIT_TP.
758         * sysdeps/unix/sysv/linux/microblaze/nptl/createthread.c: File removed.
760         * sysdeps/microblaze/nptl/bits/pthreadtypes.h: Moved ...
761         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h:
762         ... here.
763         * sysdeps/microblaze/nptl/bits/semaphore.h: Moved ...
764         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/semaphore.h: ... here.
766         * sysdeps/unix/sysv/linux/microblaze/pt-vfork.S: Moved ...
767         * sysdeps/unix/sysv/linux/microblaze/nptl/pt-vfork.S: ... here.
768         * sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S: Moved ...
769         * sysdeps/unix/sysv/linux/microblaze/vfork.S: ... here.
771         * sysdeps/unix/sysv/linux/microblaze/c++-types.data: Moved ...
772         * sysdeps/unix/sysv/linux/microblaze/nptl/c++-types.data: ... here.
773         * sysdeps/unix/sysv/linux/microblaze/ld.abilist: Moved ...
774         * sysdeps/unix/sysv/linux/microblaze/nptl/ld.abilist: ... here.
775         * sysdeps/unix/sysv/linux/microblaze/libBrokenLocale.abilist:
776         Moved ...
777         * sysdeps/unix/sysv/linux/microblaze/nptl/libBrokenLocale.abilist:
778         ... here.
779         * sysdeps/unix/sysv/linux/microblaze/libanl.abilist: Moved ...
780         * sysdeps/unix/sysv/linux/microblaze/nptl/libanl.abilist: ... here.
781         * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Moved ...
782         * sysdeps/unix/sysv/linux/microblaze/nptl/libc.abilist: ... here.
783         * sysdeps/unix/sysv/linux/microblaze/libcrypt.abilist: Moved ...
784         * sysdeps/unix/sysv/linux/microblaze/nptl/libcrypt.abilist: ... here.
785         * sysdeps/unix/sysv/linux/microblaze/libdl.abilist: Moved ...
786         * sysdeps/unix/sysv/linux/microblaze/nptl/libdl.abilist: ... here.
787         * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Moved ...
788         * sysdeps/unix/sysv/linux/microblaze/nptl/libm.abilist: ... here.
789         * sysdeps/unix/sysv/linux/microblaze/libnsl.abilist: Moved ...
790         * sysdeps/unix/sysv/linux/microblaze/nptl/libnsl.abilist: ... here.
791         * sysdeps/unix/sysv/linux/microblaze/libpthread.abilist: Moved ...
792         * sysdeps/unix/sysv/linux/microblaze/nptl/libpthread.abilist: ... here.
793         * sysdeps/unix/sysv/linux/microblaze/libresolv.abilist: Moved ...
794         * sysdeps/unix/sysv/linux/microblaze/nptl/libresolv.abilist: ... here.
795         * sysdeps/unix/sysv/linux/microblaze/librt.abilist: Moved ...
796         * sysdeps/unix/sysv/linux/microblaze/nptl/librt.abilist: ... here.
797         * sysdeps/unix/sysv/linux/microblaze/libthread_db.abilist: Moved ...
798         * sysdeps/unix/sysv/linux/microblaze/nptl/libthread_db.abilist:
799         ... here.
800         * sysdeps/unix/sysv/linux/microblaze/libutil.abilist: Moved ...
801         * sysdeps/unix/sysv/linux/microblaze/nptl/libutil.abilist: ... here.
802         * sysdeps/unix/sysv/linux/microblaze/localplt.data: Moved ...
803         * sysdeps/unix/sysv/linux/microblaze/nptl/localplt.data: ... here.
804         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Moved ...
805         * sysdeps/unix/sysv/linux/microblaze/nptl/lowlevellock.h: ... here.
806         * sysdeps/unix/sysv/linux/microblaze/nptl/pthread_once.c: Moved ...
807         * sysdeps/unix/sysv/linux/microblaze/pthread_once.c: ... here.
809 2014-07-01  David Holsgrove  <david.holsgrove@xilinx.com>
811         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: New file.
812         * sysdeps/unix/sysv/linux/microblaze/socket.S: Update SINGLE_THREAD_P use.
813         * sysdeps/unix/sysv/linux/microblaze/Makefile(libpthread-routines):
814         Add sysdep.
816 2014-06-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
818         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
820 2014-06-30  Joseph Myers  <joseph@codesourcery.com>
822         * sysdeps/mips/mips32/libm-test-ulps: Regenerated.
823         * sysdeps/mips/mips64/libm-test-ulps: Likewise.
825         * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
827         * sysdeps/arm/libm-test-ulps: Regenerated.
829 2014-06-30  Maciej W. Rozycki  <macro@codesourcery.com>
830             Roland McGrath <roland@hack.frob.com>
832         * test-skeleton.c (signal_handler): Kill the whole process group
833         before killing the child individually.
834         (main): Report any failure on `setpgid'.
836 2014-06-30  Roland McGrath  <roland@hack.frob.com>
838         * sysdeps/arm/nptl/tls.h: Rename the multiple inclusion guard
839         from _TLS_H to _ARM_NPTL_TLS_H.
840         (TLS_INIT_TP): Move macro, and #include of <sysdep.h>, to ...
841         * sysdeps/unix/sysv/linux/arm/tls.h: ... this new file.
843 2014-06-30  Joseph Myers  <joseph@codesourcery.com>
845         [BZ #16539]
846         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Include <float.h>.
847         (__expm1l): Return argument unchanged when small but not
848         subnormal.
850         * soft-fp/op-1.h (_FP_UNPACK_RAW_1): Rename local variables to
851         include macro name.
852         (_FP_UNPACK_RAW_1_P): Likewise.
853         (_FP_PACK_RAW_1): Likewise.
854         (_FP_PACK_RAW_1_P): Likewise.
855         (_FP_MUL_MEAT_1_wide): Likewise.
856         (_FP_MUL_MEAT_DW_1_hard): Likewise.
857         (_FP_MUL_MEAT_1_hard): Likewise.
858         (_FP_DIV_MEAT_1_imm): Likewise.
859         (_FP_DIV_MEAT_1_udiv_norm): Likewise.
860         (_FP_DIV_MEAT_1_udiv): Likewise.
861         * soft-fp/op-2.h (__FP_FRAC_DEC_2): Likewise.
862         (_FP_UNPACK_RAW_2): Likewise.
863         (_FP_UNPACK_RAW_2_P): Likewise.
864         (_FP_PACK_RAW_2): Likewise.
865         (_FP_PACK_RAW_2_P): Likewise.
866         (_FP_MUL_MEAT_DW_2_wide): Likewise.
867         (_FP_MUL_MEAT_2_wide): Likewise.
868         (_FP_MUL_MEAT_DW_2_wide_3mul): Likewise.
869         (_FP_MUL_MEAT_2_wide_3mul): Likewise.
870         (_FP_MUL_MEAT_DW_2_gmp): Likewise.
871         (_FP_MUL_MEAT_2_gmp): Likewise.
872         (_FP_DIV_MEAT_2_udiv): Likewise.
873         * soft-fp/op-4.h (_FP_FRAC_SLL_4): Likewise.
874         (_FP_FRAC_SRL_4): Likewise.
875         (_FP_FRAC_SRST_4): Likewise.
876         (_FP_FRAC_SRS_4): Likewise.
877         (_FP_UNPACK_RAW_4): Likewise.
878         (_FP_UNPACK_RAW_4_P): Likewise.
879         (_FP_PACK_RAW_4): Likewise.
880         (_FP_PACK_RAW_4_P): Likewise.
881         (_FP_MUL_MEAT_DW_4_wide): Likewise.
882         (_FP_MUL_MEAT_4_wide): Likewise.
883         (_FP_MUL_MEAT_4_gmp): Likewise.
884         (umul_ppppmnnn): Likewise.
885         (_FP_DIV_MEAT_4_udiv): Likewise.
886         (__FP_FRAC_ADD_4): Likewise.
887         (__FP_FRAC_SUB_3): Likewise.
888         (__FP_FRAC_SUB_4): Likewise.
889         (__FP_FRAC_DEC_3): Likewise.
890         (__FP_FRAC_DEC_4): Likewise.
891         (__FP_FRAC_ADDI_4): Likewise.
892         * soft-fp/op-8.h (_FP_FRAC_SLL_8): Likewise.
893         (_FP_FRAC_SRL_8): Likewise.
894         (_FP_FRAC_SRS_8): Likewise.
896         * soft-fp/extended.h (FP_UNPACK_RAW_E): Rename local variables to
897         include macro name.
898         (FP_UNPACK_RAW_EP): Likewise.
899         (FP_PACK_RAW_E): Likewise.
900         (FP_PACK_RAW_EP): Likewise.
901         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Likewise.
902         (_FP_ISSIGNAN): Likewise.
903         (_FP_ADD_INTERNAL): Likewise.
904         (_FP_FMA): Likewise.
905         (_FP_CMP): Likewise.
906         (_FP_SQRT): Likewise.
907         (_FP_TO_INT): Likewise.
908         (_FP_FROM_INT): Likewise.
909         (FP_EXTEND): Likewise.
910         (_FP_DIV_MEAT_N_loop): Likewise.
912 2014-06-30  Maciej W. Rozycki  <macro@codesourcery.com>
914         * sysdeps/unix/sysv/linux/bits/socket.h: Adjust macro formatting
915         throughout.
917 2014-06-29  Joseph Myers  <joseph@codesourcery.com>
919         [BZ #17097]
920         * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Return
921         result with correct sign in case of exponents that produce
922         overflow except for X very close to 1.
924 2014-06-28  Paul Eggert  <eggert@cs.ucla.edu>
926         mktime: merge #if/#ifdef usage from glibc
927         * lib/mktime.c: Use "#if defined DEBUG && DEBUG", not "#if DEBUG",
928         as that works with both Glibc's and Gnulib's style.
929         See thread starting at Siddhesh Poyarekar's bug report at:
930         http://lists.gnu.org/archive/html/bug-gnulib/2014-06/msg00102.html
932 2014-06-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
934         * sysdeps/generic/memcopy.h: Define MEMCPY_OK_FOR_FWD_MEMMOVE.
935         * sysdeps/tile/memcopy.h: Redefine MEMCPY_OK_FOR_FWD_MEMMOVE.
936         * sysdeps/tile/tilegx/memmove.c: Remove file.
938 2014-06-27  Joseph Myers  <joseph@codesourcery.com>
940         * Makeconfig ($(common-objpfx)soversions.mk): Do not generate
941         abi-name definition.
942         * scripts/soversions.awk: Do not handle or generate ABI lines.
943         * shlib-versions: Remove ABI entries.
944         * sysdeps/powerpc/nofpu/shlib-versions: Remove file.
945         * sysdeps/x86_64/x32/shlib-versions: Remove ABI entry.
947 2014-06-27  Roland McGrath  <roland@hack.frob.com>
949         * sysdeps/unix/sysv/linux/mips/mips32/nptl/c++-types.data: Moved ...
950         * sysdeps/unix/sysv/linux/mips/mips32/c++-types.data: ... here.
951         * sysdeps/unix/sysv/linux/mips/mips32/fpu/nptl/libc.abilist: Moved ...
952         * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: ... here.
953         * sysdeps/unix/sysv/linux/mips/mips32/nptl/ld.abilist: Moved ...
954         * sysdeps/unix/sysv/linux/mips/mips32/ld.abilist: ... here.
955         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libBrokenLocale.abilist:
956         Moved ...
957         * sysdeps/unix/sysv/linux/mips/mips32/libBrokenLocale.abilist:
958         ... here.
959         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libanl.abilist: Moved ...
960         * sysdeps/unix/sysv/linux/mips/mips32/libanl.abilist: ... here.
961         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libcidn.abilist: Moved ...
962         * sysdeps/unix/sysv/linux/mips/mips32/libcidn.abilist: ... here.
963         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libcrypt.abilist: Moved ...
964         * sysdeps/unix/sysv/linux/mips/mips32/libcrypt.abilist: ... here.
965         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libdl.abilist: Moved ...
966         * sysdeps/unix/sysv/linux/mips/mips32/libdl.abilist: ... here.
967         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libm.abilist: Moved ...
968         * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: ... here.
969         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnsl.abilist: Moved ...
970         * sysdeps/unix/sysv/linux/mips/mips32/libnsl.abilist: ... here.
971         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_compat.abilist:
972         Moved ...
973         * sysdeps/unix/sysv/linux/mips/mips32/libnss_compat.abilist: ... here.
974         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_db.abilist: Moved ...
975         * sysdeps/unix/sysv/linux/mips/mips32/libnss_db.abilist: ... here.
976         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_dns.abilist: Moved ...
977         * sysdeps/unix/sysv/linux/mips/mips32/libnss_dns.abilist: ... here.
978         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_files.abilist:
979         Moved ...
980         * sysdeps/unix/sysv/linux/mips/mips32/libnss_files.abilist: ... here.
981         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_hesiod.abilist:
982         Moved ...
983         * sysdeps/unix/sysv/linux/mips/mips32/libnss_hesiod.abilist: ... here.
984         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_nis.abilist: Moved ...
985         * sysdeps/unix/sysv/linux/mips/mips32/libnss_nis.abilist: ... here.
986         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_nisplus.abilist:
987         Moved ...
988         * sysdeps/unix/sysv/linux/mips/mips32/libnss_nisplus.abilist: ... here.
989         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libpthread.abilist: Moved ...
990         * sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist: ... here.
991         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libresolv.abilist: Moved ...
992         * sysdeps/unix/sysv/linux/mips/mips32/libresolv.abilist: ... here.
993         * sysdeps/unix/sysv/linux/mips/mips32/nptl/librt.abilist: Moved ...
994         * sysdeps/unix/sysv/linux/mips/mips32/librt.abilist: ... here.
995         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libthread_db.abilist:
996         Moved ...
997         * sysdeps/unix/sysv/linux/mips/mips32/libthread_db.abilist: ... here.
998         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libutil.abilist: Moved ...
999         * sysdeps/unix/sysv/linux/mips/mips32/libutil.abilist: ... here.
1000         * sysdeps/unix/sysv/linux/mips/mips32/nofpu/nptl/libc.abilist:
1001         Moved ...
1002         * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: ... here.
1003         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/c++-types.data:
1004         Moved ...
1005         * sysdeps/unix/sysv/linux/mips/mips64/n32/c++-types.data: ... here.
1006         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/ld.abilist: Moved ...
1007         * sysdeps/unix/sysv/linux/mips/mips64/n32/ld.abilist: ... here.
1008         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libBrokenLocale.abilist:
1009         Moved ...
1010         * sysdeps/unix/sysv/linux/mips/mips64/libBrokenLocale.abilist:
1011         ... here.
1012         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libBrokenLocale.abilist:
1013         Identical file removed.
1014         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libanl.abilist:
1015         Moved ...
1016         * sysdeps/unix/sysv/linux/mips/mips64/libanl.abilist: ... here.
1017         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libanl.abilist:
1018         Identical file removed.
1019         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libc.abilist: Moved ...
1020         * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: ... here.
1021         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libcrypt.abilist:
1022         Moved ...
1023         * sysdeps/unix/sysv/linux/mips/mips64/libcrypt.abilist: ... here.
1024         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libcrypt.abilist:
1025         Identical file removed.
1026         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libdl.abilist: Moved ...
1027         * sysdeps/unix/sysv/linux/mips/mips64/libdl.abilist: ... here.
1028         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libdl.abilist:
1029         Identical file removed.
1030         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libm.abilist: Moved ...
1031         * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: ... here.
1032         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libm.abilist:
1033         Identical file removed.
1034         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libnsl.abilist: Moved ...
1035         * sysdeps/unix/sysv/linux/mips/mips64/libnsl.abilist: ... here.
1036         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libnsl.abilist:
1037         Identical file removed.
1038         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libpthread.abilist:
1039         Moved ...
1040         * sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist: ... here.
1041         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libpthread.abilist:
1042         Identical file removed.
1043         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libresolv.abilist:
1044         Moved ...
1045         * sysdeps/unix/sysv/linux/mips/mips64/n32/libresolv.abilist: ... here.
1046         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/librt.abilist: Moved ...
1047         * sysdeps/unix/sysv/linux/mips/mips64/librt.abilist: ... here.
1048         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/librt.abilist:
1049         Identical file removed.
1050         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libthread_db.abilist:
1051         Moved ...
1052         * sysdeps/unix/sysv/linux/mips/mips64/libthread_db.abilist:
1053         ... here.
1054         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libthread_db.abilist:
1055         Identical file removed.
1056         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libutil.abilist:
1057         Moved ...
1058         * sysdeps/unix/sysv/linux/mips/mips64/libutil.abilist: ... here.
1059         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libutil.abilist:
1060         Identical file removed.
1061         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/c++-types.data:
1062         Moved ...
1063         * sysdeps/unix/sysv/linux/mips/mips64/n64/c++-types.data: ... here.
1064         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/ld.abilist: Moved ...
1065         * sysdeps/unix/sysv/linux/mips/mips64/n64/ld.abilist: ... here.
1066         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libc.abilist: Moved ...
1067         * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: ... here.
1068         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libresolv.abilist:
1069         Moved ...
1070         * sysdeps/unix/sysv/linux/mips/mips64/n64/libresolv.abilist: ... here.
1071         * sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h: Moved ...
1072         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: ... here.
1074         * sysdeps/unix/sysv/linux/mips/vfork.S: Incorporate
1075         SAVE_PID and RESTORE_PID blocks from nptl/pt-vfork.S.
1076         * sysdeps/unix/sysv/linux/mips/nptl/vfork.S: File removed.
1077         * sysdeps/unix/sysv/linux/mips/nptl/pt-vfork.S: File removed.
1078         * sysdeps/unix/sysv/linux/mips/pt-vfork.S: New file.
1080 2014-06-27  Arjun Shankar  <arjun.is@lostca.se>
1082         [BZ #17092]
1083         * nscd/nscd.c (monitor_child): Return exit status of child
1084         instead of return value from wait syscall.
1086 2014-06-27  Joseph Myers  <joseph@codesourcery.com>
1088         * configure.ac (libc_commonpagesize): Remove variable.
1089         (libc_relro_required): Likewise.
1090         (libc_cv_z_relro): Remove configure test.
1091         * configure: Regenerated.
1092         * sysdeps/aarch64/preconfigure (libc_commonpagesize): Do not set
1093         variable.
1094         (libc_relro_required): Likewise.
1095         * sysdeps/alpha/preconfigure (libc_commonpagesize): Likewise.
1096         (libc_relro_required): Likewise.
1097         * sysdeps/arm/preconfigure.ac (libc_commonpagesize): Likewise.
1098         (libc_relro_required): Likewise.
1099         * sysdeps/arm/preconfigure: Regenerated.
1100         * sysdeps/ia64/preconfigure: Remove file.
1101         * sysdeps/tile/preconfigure (libc_commonpagesize): Do not set
1102         variable.
1103         (libc_relro_required): Likewise.
1105         [BZ #16561]
1106         [BZ #16562]
1107         * sysdeps/ieee754/dbl-64/e_jn.c: Include <float.h>.
1108         (__ieee754_yn): Set FE_TONEAREST mode internally and then
1109         recompute overflowing results in original rounding mode.
1110         * sysdeps/ieee754/flt-32/e_jnf.c: Include <float.h>.
1111         (__ieee754_ynf): Set FE_TONEAREST mode internally and then
1112         recompute overflowing results in original rounding mode.
1113         * sysdeps/ieee754/ldbl-128/e_jnl.c: Include <float.h>.
1114         (__ieee754_ynl): Set FE_TONEAREST mode internally and then
1115         recompute overflowing results in original rounding mode.
1116         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Include <float.h>.
1117         (__ieee754_ynl): Set FE_TONEAREST mode internally and then
1118         recompute overflowing results in original rounding mode.
1119         * sysdeps/ieee754/ldbl-96/e_jnl.c: Include <float.h>.
1120         (__ieee754_ynl): Set FE_TONEAREST mode internally and then
1121         recompute overflowing results in original rounding mode.
1122         * sysdeps/i386/fpu/fenv_private.h [!__SSE2_MATH__]
1123         (libc_feholdsetround_ctx): New macro.
1124         * math/libm-test.inc (yn_test): Use ALL_RM_TEST.
1125         * sysdeps/i386/fpu/libm-test-ulps: Update.
1126         * sysdeps/x86_64/fpu/libm-test-ulps : Likewise.
1128 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
1130         * sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h
1131         [__PIC__] (PSEUDO): Use name of _nocancel entry point in
1132         corresponding .cpsetup call.
1134 2014-06-26  Roland McGrath  <roland@hack.frob.com>
1136         * sysdeps/unix/sysv/linux/arm/libc-aeabi_read_tp.S: Moved ...
1137         * sysdeps/arm/libc-aeabi_read_tp.S: ... here.
1138         * sysdeps/arm/Makefile [$(subdir) = csu]
1139         (aeabi_routines): Add aeabi_read_tp and libc-aeabi_read_tp here.
1140         (static-only-routines): Add aeabi_read_tp here.
1141         (shared-only-routines): Add libc-aeabi_read_tp here.
1142         (CFLAGS-libc-start.c): Add -fexceptions here.
1143         * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = csu]
1144         (sysdep_routines, static-only-routines, shared-only-routines):
1145         Don't add to these here.
1146         (CFLAGS-libc-start.c): Likewise.
1148         * sysdeps/unix/sysv/linux/arm/nptl-aeabi_unwind_cpp_pr1.c: Moved ...
1149         * sysdeps/arm/nptl-aeabi_unwind_cpp_pr1.c: ... here.
1150         * sysdeps/unix/sysv/linux/arm/rt-aeabi_unwind_cpp_pr1.c: Moved ...
1151         * sysdeps/arm/rt-aeabi_unwind_cpp_pr1.c: ... here.
1152         * sysdeps/arm/Makefile [$(subdir) = rt]
1153         (librt-sysdep_routines, librt-shared-only-routines):
1154         Append rt-aeabi_unwind_cpp_pr1 here.
1155         * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = rt]
1156         (librt-sysdep_routines, librt-shared-only-routines): Don't do it here.
1157         * sysdeps/arm/nptl/Makefile [$(subdir) = nptl]
1158         (libpthread-sysdep_routines, libpthread-shared-only-routines):
1159         Append nptl-aeabi_unwind_cpp_pr1 here.
1160         (tests): Filter out tst-cleanupx4 here.
1161         * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = nptl]
1162         (libpthread-sysdep_routines, libpthread-shared-only-routines, tests):
1163         Don't do those here.
1165 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
1167         * scripts/list-sources.sh: Do not handle ports specially.
1169 2014-06-26  Roland McGrath  <roland@hack.frob.com>
1171         * sysdeps/arm/fesetenv.c: Include <fpu_control.h>.
1172         * sysdeps/arm/feupdateenv.c: Likewise.
1174         * posix/spawn_faction_addopen.c: Include <stdlib.h> for free decl.
1176 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
1178         * manual/texinfo.tex: Update to version 2014-05-05.10 with
1179         trailing whitespace removed.
1180         * scripts/config.guess: Update to version 2014-03-23.
1181         * scripts/config.sub: Update to version 2014-05-01
1182         * scripts/install-sh: Update to version 2013-12-25.23.
1183         * scripts/move-if-change: Update from gnulib.
1185 2014-06-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
1187         * debug/memmove_chk.c: Remove pagecopy.h include.
1189 2014-06-26  Paul Eggert  <eggert@cs.ucla.edu>
1191         * time/mktime.c (leapyear): Remove inline keyword.  The code is now
1192         identical to gnulib mktime.
1194 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
1196         * configure.ac: Do not test for machine being rs6000.  Do not test
1197         for powerpc*-*soft.
1198         * configure: Regenerated.
1200         * configure.ac (libc_cv_asm_cfi_directives): Remove configure
1201         test.
1202         * configure: Regenerated.
1203         * config.h.in (HAVE_ASM_CFI_DIRECTIVES): Remove macro undefine.
1204         * sysdeps/arm/configure.ac (libc_cv_asm_cfi_directive_sections):
1205         Remove configure test.
1206         * sysdeps/arm/configure: Regenerated.
1207         * sysdeps/nptl/configure.ac: Do not check
1208         libc_cv_asm_cfi_directives.
1209         * sysdeps/nptl/configure: Regenerated.
1210         * sysdeps/x86_64/nptl/configure.ac: Remove file.
1211         * sysdeps/x86_64/nptl/configure: Remove generated file.
1212         * b/sysdeps/generic/sysdep.h [HAVE_ASM_CFI_DIRECTIVES]: Make code
1213         unconditional.
1214         [!HAVE_ASM_CFI_DIRECTIVES]: Remove conditional code.
1216 2014-06-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
1218         * posix/fnmatch.c: Define WIDE_CHAR_VERSION.
1219         * posix/fnmatch_loop.c: Undefine WIDE_CHAR_VERSION.
1220         (FCT): Check value of WIDE_CHAR_VERSION instead of checking if
1221         it is defined.
1223         * elf/dl-runtime.c: Check for value of ELF_MACHINE_NO_RELA
1224         instead of whether it is defined.
1225         * sysdeps/aarch64/dl-machine.h: Define ELF_MACHINE_NO_RELA.
1226         * sysdeps/hppa/dl-machine.h: Likewise.
1227         * sysdeps/ia64/dl-machine.h: Likewise.
1228         * sysdeps/m68k/dl-machine.h: Likewise.
1229         * sysdeps/microblaze/dl-machine.h: Likewise.
1230         * sysdeps/mips/dl-machine.: Likewise.
1231         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
1232         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
1233         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
1234         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
1235         * sysdeps/sh/dl-machine.h: Likewise.
1236         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
1237         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
1238         * sysdeps/tile/dl-machine.h: Likewise.
1239         * sysdeps/x86_64/dl-machine.h: Likewise.
1241         * nscd/connections.c (enum usekey) [SEPARATE_KEY]: Remove
1242         code.
1243         (verify_persistent_db): Likewise.
1245 2014-06-26  Roland McGrath  <roland@hack.frob.com>
1247         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/c++-types.data: Moved ...
1248         * sysdeps/unix/sysv/linux/s390/s390-32/c++-types.data: ... here.
1249         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: Moved ...
1250         * sysdeps/unix/sysv/linux/s390/s390-32/ld.abilist: ... here.
1251         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libBrokenLocale.abilist:
1252         Moved ...
1253         * sysdeps/unix/sysv/linux/s390/s390-32/libBrokenLocale.abilist:
1254         ... here.
1255         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libanl.abilist: Moved ...
1256         * sysdeps/unix/sysv/linux/s390/libanl.abilist: ... here.
1257         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libanl.abilist:
1258         Identical file removed.
1259         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Moved ...
1260         * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: ... here.
1261         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist: Moved ...
1262         * sysdeps/unix/sysv/linux/s390/s390-32/libcrypt.abilist: ... here.
1263         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libdl.abilist: Moved ...
1264         * sysdeps/unix/sysv/linux/s390/s390-32/libdl.abilist: ... here.
1265         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: Moved ...
1266         * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: ... here.
1267         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libnsl.abilist: Moved ...
1268         * sysdeps/unix/sysv/linux/s390/s390-32/libnsl.abilist: ... here.
1269         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
1270         Moved ...
1271         * sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist: ... here.
1272         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libresolv.abilist: Moved ...
1273         * sysdeps/unix/sysv/linux/s390/s390-32/libresolv.abilist: ... here.
1274         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: Moved ...
1275         * sysdeps/unix/sysv/linux/s390/s390-32/librt.abilist: ... here.
1276         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libthread_db.abilist:
1277         Moved ...
1278         * sysdeps/unix/sysv/linux/s390/s390-32/libthread_db.abilist: ... here.
1279         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: Moved ...
1280         * sysdeps/unix/sysv/linux/s390/s390-32/libutil.abilist: ... here.
1281         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/localplt.data: Moved ...
1282         * sysdeps/unix/sysv/linux/s390/localplt.data: ... here.
1283         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/localplt.data:
1284         Identical file removed.
1285         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/c++-types.data: Moved ...
1286         * sysdeps/unix/sysv/linux/s390/s390-64/c++-types.data: ... here.
1287         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: Moved ...
1288         * sysdeps/unix/sysv/linux/s390/s390-64/ld.abilist: ... here.
1289         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libBrokenLocale.abilist:
1290         Moved ...
1291         * sysdeps/unix/sysv/linux/s390/s390-64/libBrokenLocale.abilist:
1292         ... here.
1293         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Moved ...
1294         * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: ... here.
1295         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist: Moved ...
1296         * sysdeps/unix/sysv/linux/s390/s390-64/libcrypt.abilist: ... here.
1297         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libdl.abilist: Moved ...
1298         * sysdeps/unix/sysv/linux/s390/s390-64/libdl.abilist: ... here.
1299         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: Moved ...
1300         * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: ... here.
1301         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libnsl.abilist: Moved ...
1302         * sysdeps/unix/sysv/linux/s390/s390-64/libnsl.abilist: ... here.
1303         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
1304         Moved ...
1305         * sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist: ... here.
1306         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libresolv.abilist:
1307         Moved ...
1308         * sysdeps/unix/sysv/linux/s390/s390-64/libresolv.abilist: ... here.
1309         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/librt.abilist: Moved ...
1310         * sysdeps/unix/sysv/linux/s390/s390-64/librt.abilist: ... here.
1311         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libthread_db.abilist:
1312         Moved ...
1313         * sysdeps/unix/sysv/linux/s390/s390-64/libthread_db.abilist: ... here.
1314         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libutil.abilist: Moved ...
1315         * sysdeps/unix/sysv/linux/s390/s390-64/libutil.abilist: ... here.
1317         * nptl/sysdeps/unix/sysv/linux/s390/Makefile: File removed, contents
1318         folded into ...
1319         * sysdeps/unix/sysv/linux/s390/Makefile [$(subdir) = nptl]: ... here.
1320         * sysdeps/unix/sysv/linux/s390/Versions
1321         (libpthread: GLIBC_2.19): New version set.
1322         * nptl/sysdeps/unix/sysv/linux/s390/Versions: File removed.
1323         * sysdeps/unix/sysv/linux/s390/s390-64/Versions
1324         (librt: GLIBC_2.3.3): New version set.
1325         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/Versions: File removed.
1326         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.c: Moved ...
1327         * sysdeps/unix/sysv/linux/s390/elision-conf.c: ... here.
1328         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.h: Moved ...
1329         * sysdeps/unix/sysv/linux/s390/elision-conf.h: ... here.
1330         * nptl/sysdeps/unix/sysv/linux/s390/elision-lock.c: Moved ...
1331         * sysdeps/unix/sysv/linux/s390/elision-lock.c: ... here.
1332         * nptl/sysdeps/unix/sysv/linux/s390/elision-timed.c: Moved ...
1333         * sysdeps/unix/sysv/linux/s390/elision-timed.c: ... here.
1334         * nptl/sysdeps/unix/sysv/linux/s390/elision-trylock.c: Moved ...
1335         * sysdeps/unix/sysv/linux/s390/elision-trylock.c: ... here.
1336         * nptl/sysdeps/unix/sysv/linux/s390/elision-unlock.c: Moved ...
1337         * sysdeps/unix/sysv/linux/s390/elision-unlock.c: ... here.
1338         * nptl/sysdeps/unix/sysv/linux/s390/force-elision.h: Moved ...
1339         * sysdeps/unix/sysv/linux/s390/force-elision.h: ... here.
1340         * nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Moved ...
1341         * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: ... here.
1342         * nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h: Moved ...
1343         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: ... here.
1344         * nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c: Moved ...
1345         * sysdeps/unix/sysv/linux/s390/pt-longjmp.c: ... here.
1346         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c: Moved ...
1347         * sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c: ... here.
1348         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c: Moved ...
1349         * sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c: ... here.
1350         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c: Moved ...
1351         * sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c: ... here.
1352         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c: Moved ...
1353         * sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c: ... here.
1354         * nptl/sysdeps/unix/sysv/linux/s390/pthread_once.c: Moved ...
1355         * sysdeps/unix/sysv/linux/s390/pthread_once.c: ... here.
1356         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Moved ...
1357         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: ... here.
1358         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Moved ...
1359         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: ... here.
1360         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: Moved ...
1361         * sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: ... here.
1362         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: Moved ...
1363         * sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: ... here.
1364         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: Moved ...
1365         * sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: ... here.
1366         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: Moved ...
1367         * sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: ... here.
1368         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: Moved ...
1369         * sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: ... here.
1371         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Moved ...
1372         * sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: ... here.
1373         (__libc_vfork): Define the function under this name.
1374         [!NOT_IN_libc] (__vfork): Make this an alias.
1375         [!NOT_IN_libc] (vfork): Conditionalize the weak_alias.
1376         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Moved ...
1377         * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: ... here.
1378         (__libc_vfork): Define the function under this name.
1379         [!NOT_IN_libc] (__vfork): Make this an alias.
1380         [!NOT_IN_libc] (vfork): Conditionalize the weak_alias.
1381         * sysdeps/unix/sysv/linux/s390/pt-vfork.S: New file.
1382         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: File removed.
1383         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: File removed.
1384         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Remove vfork.
1385         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
1387         * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Deconditionalize the
1388         code that was previously under [RESET_PID].
1389         * sysdeps/unix/sysv/linux/s390/s390-64/clone.S: Likewise.
1390         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/clone.S: File removed.
1391         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/clone.S: File removed.
1393         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h: Moved ...
1394         * sysdeps/aarch64/nptl/bits/pthreadtypes.h: ... here.
1395         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/semaphore.h: Moved ...
1396         * sysdeps/aarch64/nptl/bits/semaphore.h: ... here.
1397         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/local_lim.h: Moved ...
1398         * sysdeps/unix/sysv/linux/aarch64/bits/local_lim.h: ... here.
1399         * sysdeps/unix/sysv/linux/aarch64/nptl/c++-types.data: Moved ...
1400         * sysdeps/unix/sysv/linux/aarch64/c++-types.data: ... here.
1401         * sysdeps/unix/sysv/linux/aarch64/nptl/ld.abilist: Moved ...
1402         * sysdeps/unix/sysv/linux/aarch64/ld.abilist: ... here.
1403         * sysdeps/unix/sysv/linux/aarch64/nptl/libBrokenLocale.abilist:
1404         Moved ...
1405         * sysdeps/unix/sysv/linux/aarch64/libBrokenLocale.abilist: ... here.
1406         * sysdeps/unix/sysv/linux/aarch64/nptl/libanl.abilist: Moved ...
1407         * sysdeps/unix/sysv/linux/aarch64/libanl.abilist: ... here.
1408         * sysdeps/unix/sysv/linux/aarch64/nptl/libc.abilist: Moved ...
1409         * sysdeps/unix/sysv/linux/aarch64/libc.abilist: ... here.
1410         * sysdeps/unix/sysv/linux/aarch64/nptl/libcrypt.abilist: Moved ...
1411         * sysdeps/unix/sysv/linux/aarch64/libcrypt.abilist: ... here.
1412         * sysdeps/unix/sysv/linux/aarch64/nptl/libdl.abilist: Moved ...
1413         * sysdeps/unix/sysv/linux/aarch64/libdl.abilist: ... here.
1414         * sysdeps/unix/sysv/linux/aarch64/nptl/libm.abilist: Moved ...
1415         * sysdeps/unix/sysv/linux/aarch64/libm.abilist: ... here.
1416         * sysdeps/unix/sysv/linux/aarch64/nptl/libnsl.abilist: Moved ...
1417         * sysdeps/unix/sysv/linux/aarch64/libnsl.abilist: ... here.
1418         * sysdeps/unix/sysv/linux/aarch64/nptl/libpthread.abilist: Moved ...
1419         * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist: ... here.
1420         * sysdeps/unix/sysv/linux/aarch64/nptl/libresolv.abilist: Moved ...
1421         * sysdeps/unix/sysv/linux/aarch64/libresolv.abilist: ... here.
1422         * sysdeps/unix/sysv/linux/aarch64/nptl/librt.abilist: Moved ...
1423         * sysdeps/unix/sysv/linux/aarch64/librt.abilist: ... here.
1424         * sysdeps/unix/sysv/linux/aarch64/nptl/libthread_db.abilist: Moved ...
1425         * sysdeps/unix/sysv/linux/aarch64/libthread_db.abilist: ... here.
1426         * sysdeps/unix/sysv/linux/aarch64/nptl/libutil.abilist: Moved ...
1427         * sysdeps/unix/sysv/linux/aarch64/libutil.abilist: ... here.
1428         * sysdeps/unix/sysv/linux/aarch64/nptl/localplt.data: Moved ...
1429         * sysdeps/unix/sysv/linux/aarch64/localplt.data: ... here.
1430         * sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h: Moved ...
1431         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: ... here.
1432         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h: Moved ...
1433         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: ... here.
1435 2014-06-25  Roland McGrath  <roland@hack.frob.com>
1437         * sysdeps/unix/sysv/linux/mips/clone.S: Deconditionalize the code
1438         that was previously under [RESET_PID].
1439         * sysdeps/unix/sysv/linux/mips/nptl/clone.S: File removed.
1441 2014-06-25  Joseph Myers  <joseph@codesourcery.com>
1443         * sysdeps/unix/sysv/linux/dl-opendir.c (__ASSUME_O_CLOEXEC): Do
1444         not undefine and redefine.
1445         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs)
1446         [O_CLOEXEC]: Make code unconditional.
1447         (__get_nprocs) [!O_CLOEXEC]: Remove conditional code.
1448         * sysdeps/unix/sysv/linux/shm_open.c: Do not include
1449         <kernel-features.h>.
1450         [O_CLOEXEC && !__ASSUME_O_CLOEXEC] (have_o_cloexec): Remove
1451         conditional variable definition.
1452         (shm_open) [O_CLOEXEC]: Make code unconditional.
1453         (shm_open) [!O_CLOEXEC || !__ASSUME_O_CLOEXEC]: Remove conditional
1454         code.
1456         * configure.ac (USE_REGPARMS): Don't define here.
1457         * configure: Regenerated.
1458         * sysdeps/i386/configure.ac (USE_REGPARMS): Define here.
1459         * sysdeps/i386/configure: Regenerated.
1461         * nptl/createthread.c: Don't include kernel-features.h.
1462         * nptl/pthread_cancel.c: Likewise.
1463         * nptl/pthread_condattr_setclock.c: Likewise.
1464         * nptl/sysdeps/unix/sysv/linux/pt-raise.c: Likewise.
1465         * nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: Likewise.
1466         * nptl/sysdeps/unix/sysv/linux/pthread_kill.c: Likewise.
1467         * nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c: Likewise.
1468         * nptl/sysdeps/unix/sysv/linux/raise.c: Likewise.
1469         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: Likewise.
1470         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Likewise.
1471         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: Likewise.
1472         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Likewise.
1473         * nptl/sysdeps/unix/sysv/linux/timer_create.c: Likewise.
1474         * nptl/sysdeps/unix/sysv/linux/timer_delete.c: Likewise.
1475         * nptl/sysdeps/unix/sysv/linux/timer_getoverr.c: Likewise.
1476         * nptl/sysdeps/unix/sysv/linux/timer_gettime.c: Likewise.
1477         * nptl/sysdeps/unix/sysv/linux/timer_routines.c: Likewise.
1478         * nptl/sysdeps/unix/sysv/linux/timer_settime.c: Likewise.
1479         * nscd/gai.c: Likewise.
1480         * nss/nss_db/db-open.c: Likewise.
1481         * sysdeps/generic/ldsodefs.h: Likewise.
1482         * sysdeps/sh/nptl/tls.h: Likewise.
1483         * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Likewise.
1484         * sysdeps/unix/sysv/linux/aarch64/sigcontextinfo.h: Likewise.
1485         * sysdeps/unix/sysv/linux/aarch64/vfork.S: Likewise.
1486         * sysdeps/unix/sysv/linux/adjtime.c: Likewise.
1487         * sysdeps/unix/sysv/linux/alpha/xstatconv.h: Likewise.
1488         * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
1489         * sysdeps/unix/sysv/linux/arm/sigcontextinfo.h: Likewise.
1490         * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
1491         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: Likewise.
1492         * sysdeps/unix/sysv/linux/clock_getres.c: Likewise.
1493         * sysdeps/unix/sysv/linux/clock_gettime.c: Likewise.
1494         * sysdeps/unix/sysv/linux/clock_nanosleep.c: Likewise.
1495         * sysdeps/unix/sysv/linux/clock_settime.c: Likewise.
1496         * sysdeps/unix/sysv/linux/dl-execstack.c: Likewise.
1497         * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
1498         * sysdeps/unix/sysv/linux/dl-sysdep.c: Likewise.
1499         * sysdeps/unix/sysv/linux/generic/futimesat.c: Likewise.
1500         * sysdeps/unix/sysv/linux/generic/poll.c: Likewise.
1501         * sysdeps/unix/sysv/linux/generic/wordsize-32/fcntl.c: Likewise.
1502         * sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c: Likewise.
1503         * sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c: Likewise.
1504         * sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c: Likewise.
1505         * sysdeps/unix/sysv/linux/generic/wordsize-32/preadv.c: Likewise.
1506         * sysdeps/unix/sysv/linux/generic/wordsize-32/preadv64.c: Likewise.
1507         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c: Likewise.
1508         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c: Likewise.
1509         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev.c: Likewise.
1510         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev64.c: Likewise.
1511         * sysdeps/unix/sysv/linux/getcwd.c: Likewise.
1512         * sysdeps/unix/sysv/linux/getpagesize.c: Likewise.
1513         * sysdeps/unix/sysv/linux/getsysstats.c: Likewise.
1514         * sysdeps/unix/sysv/linux/i386/fxstat.c: Likewise.
1515         * sysdeps/unix/sysv/linux/i386/lxstat.c: Likewise.
1516         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
1517         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
1518         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
1519         * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
1520         * sysdeps/unix/sysv/linux/i386/xstat.c: Likewise.
1521         * sysdeps/unix/sysv/linux/ia64/system.c: Likewise.
1522         * sysdeps/unix/sysv/linux/if_index.c: Likewise.
1523         * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
1524         * sysdeps/unix/sysv/linux/ifreq.c: Likewise.
1525         * sysdeps/unix/sysv/linux/ldsodefs.h: Likewise.
1526         * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
1527         * sysdeps/unix/sysv/linux/m68k/vfork.S: Likewise.
1528         * sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S: Likewise.
1529         * sysdeps/unix/sysv/linux/mips/mips32/accept4.c: Likewise.
1530         * sysdeps/unix/sysv/linux/mips/mips32/recvmmsg.c: Likewise.
1531         * sysdeps/unix/sysv/linux/mips/mips32/sendmmsg.c: Likewise.
1532         * sysdeps/unix/sysv/linux/mips/pread.c: Likewise.
1533         * sysdeps/unix/sysv/linux/mips/pread64.c: Likewise.
1534         * sysdeps/unix/sysv/linux/mips/pwrite.c: Likewise.
1535         * sysdeps/unix/sysv/linux/mips/pwrite64.c: Likewise.
1536         * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
1537         * sysdeps/unix/sysv/linux/mmap64.c: Likewise.
1538         * sysdeps/unix/sysv/linux/netlinkaccess.h: Likewise.
1539         * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
1540         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c: Likewise.
1541         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
1542         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c: Likewise.
1543         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: Likewise.
1544         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Likewise.
1545         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c: Likewise.
1546         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c: Likewise.
1547         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c: Likewise.
1548         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c: Likewise.
1549         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
1550         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
1551         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Likewise.
1552         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c: Likewise.
1553         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: Likewise.
1554         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S: Likewise.
1555         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
1556         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Likewise.
1557         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
1558         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
1559         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
1560         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Likewise.
1561         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
1562         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Likewise.
1563         * sysdeps/unix/sysv/linux/pread.c: Likewise.
1564         * sysdeps/unix/sysv/linux/pread64.c: Likewise.
1565         * sysdeps/unix/sysv/linux/prof-freq.c: Likewise.
1566         * sysdeps/unix/sysv/linux/pwrite.c: Likewise.
1567         * sysdeps/unix/sysv/linux/pwrite64.c: Likewise.
1568         * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S: Likewise.
1569         * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S: Likewise.
1570         * sysdeps/unix/sysv/linux/s390/system.c: Likewise.
1571         * sysdeps/unix/sysv/linux/sh/pread.c: Likewise.
1572         * sysdeps/unix/sysv/linux/sh/pread64.c: Likewise.
1573         * sysdeps/unix/sysv/linux/sh/pwrite.c: Likewise.
1574         * sysdeps/unix/sysv/linux/sh/pwrite64.c: Likewise.
1575         * sysdeps/unix/sysv/linux/sigaction.c: Likewise.
1576         * sysdeps/unix/sysv/linux/sigpending.c: Likewise.
1577         * sysdeps/unix/sysv/linux/sigprocmask.c: Likewise.
1578         * sysdeps/unix/sysv/linux/sigsuspend.c: Likewise.
1579         * sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c: Likewise.
1580         * sysdeps/unix/sysv/linux/sparc/system.c: Likewise.
1581         * sysdeps/unix/sysv/linux/syslog.c: Likewise.
1582         * sysdeps/unix/sysv/linux/system.c: Likewise.
1583         * sysdeps/unix/sysv/linux/testrtsig.h: Likewise.
1584         * sysdeps/unix/sysv/linux/timespec_get.c: Likewise.
1585         * sysdeps/unix/sysv/linux/ttyname.c: Likewise.
1586         * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
1587         * sysdeps/unix/sysv/linux/utimensat.c: Likewise.
1588         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
1589         * sysdeps/unix/sysv/linux/xstatconv.h: Likewise.
1591         * configure.ac (libc_cv_c_asmcr0_bug): Remove configure test.
1592         * configure: Regenerated.
1593         * config.h.in (BROKEN_PPC_ASM_CR0): Remove macro.
1595         * configure.ac (base_machine): Do not set specially for particular
1596         machines here.
1597         * configure: Regenerated.
1598         * sysdeps/powerpc/preconfigure: Move machine and base_machine
1599         settings from configure.ac.
1600         * sysdeps/i386/preconfigure: New file.
1601         * sysdeps/s390/preconfigure: Likewise.
1602         * sysdeps/sh/preconfigure: Likewise.
1603         * sysdeps/sparc/preconfigure: Likewise.
1605 2014-06-25  Roland McGrath  <roland@hack.frob.com>
1607         * sysdeps/sparc/sparc64/nptl/cpu_relax.S: Moved ...
1608         * sysdeps/sparc/sparc64/cpu_relax.S: ... here.
1609         * sysdeps/sparc/sparc64/nptl/pthread_spin_init.c: Moved ...
1610         * sysdeps/sparc/sparc64/pthread_spin_init.c: ... here.
1611         * sysdeps/sparc/sparc64/nptl/pthread_spin_lock.S: Moved ...
1612         * sysdeps/sparc/sparc64/pthread_spin_lock.S: ... here.
1613         * sysdeps/sparc/sparc64/nptl/pthread_spin_trylock.S: Moved ...
1614         * sysdeps/sparc/sparc64/pthread_spin_trylock.S: ... here.
1615         * sysdeps/sparc/sparc64/nptl/pthread_spin_unlock.S: Moved ...
1616         * sysdeps/sparc/sparc64/pthread_spin_unlock.S: ... here.
1617         * sysdeps/sparc/sparc64/nptl/pthreaddef.h: Moved ...
1618         * sysdeps/sparc/sparc64/pthreaddef.h: ... here.
1619         * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: Update #include.
1620         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: Likewise.
1621         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: Likewise.
1622         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: Likewise.
1623         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: Likewise.
1624         * sysdeps/sparc/sparc64/nptl/Makefile: File removed, its contents ...
1625         * sysdeps/sparc/sparc64/Makefile: ... appended here.
1627         * sysdeps/sparc/sparc32/nptl/lowlevellock.c: Moved ...
1628         * sysdeps/sparc/sparc32/lowlevellock.c: ... here.
1629         * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: Moved ...
1630         * sysdeps/sparc/sparc32/pthread_barrier_wait.c: ... here.
1631         * sysdeps/sparc/sparc32/nptl/pthread_spin_lock.S: Moved ...
1632         * sysdeps/sparc/sparc32/pthread_spin_lock.S: ... here.
1633         * sysdeps/sparc/sparc32/nptl/pthread_spin_trylock.S: Moved ...
1634         * sysdeps/sparc/sparc32/pthread_spin_trylock.S: ... here.
1635         * sysdeps/sparc/sparc32/nptl/pthreaddef.h: Moved ...
1636         * sysdeps/sparc/sparc32/pthreaddef.h: ... here.
1637         * sysdeps/sparc/sparc32/nptl/sem_post.c: Moved ...
1638         * sysdeps/sparc/sparc32/sem_post.c: ... here.
1639         * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: Moved ...
1640         * sysdeps/sparc/sparc32/sem_timedwait.c: ... here.
1641         * sysdeps/sparc/sparc32/nptl/sem_trywait.c: Moved ...
1642         * sysdeps/sparc/sparc32/sem_trywait.c: ... here.
1643         * sysdeps/sparc/sparc32/nptl/sem_wait.c: Moved ...
1644         * sysdeps/sparc/sparc32/sem_wait.c: ... here.
1645         * sysdeps/sparc/sparc32/sparcv9/nptl/cpu_relax.S: Moved ...
1646         * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: ... here.
1647         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_barrier_wait.c: Moved ...
1648         * sysdeps/sparc/sparc32/sparcv9/pthread_barrier_wait.c: ... here.
1649         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_init.c: Moved ...
1650         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: ... here.
1651         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_lock.S: Moved ...
1652         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: ... here.
1653         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_trylock.S: Moved ...
1654         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: ... here.
1655         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: Moved ...
1656         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.S: ... here.
1657         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_post.c: Moved ...
1658         * sysdeps/sparc/sparc32/sparcv9/sem_post.c: ... here.
1659         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_timedwait.c: Moved ...
1660         * sysdeps/sparc/sparc32/sparcv9/sem_timedwait.c: ... here.
1661         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_trywait.c: Moved ...
1662         * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: ... here.
1663         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_wait.c: Moved ...
1664         * sysdeps/sparc/sparc32/sparcv9/sem_wait.c: ... here.
1666         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/c++-types.data: Moved ...
1667         * sysdeps/unix/sysv/linux/sparc/sparc32/c++-types.data: ... here.
1668         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/ld.abilist: Moved ...
1669         * sysdeps/unix/sysv/linux/sparc/sparc32/ld.abilist: ... here.
1670         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libBrokenLocale.abilist:
1671         Moved ...
1672         * sysdeps/unix/sysv/linux/sparc/sparc32/libBrokenLocale.abilist:
1673         ... here.
1674         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libanl.abilist: Moved ...
1675         * sysdeps/unix/sysv/linux/sparc/sparc32/libanl.abilist: ... here.
1676         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Moved ...
1677         * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: ... here.
1678         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist:
1679         Moved ...
1680         * sysdeps/unix/sysv/linux/sparc/sparc32/libcrypt.abilist: ... here.
1681         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libdl.abilist: Moved ...
1682         * sysdeps/unix/sysv/linux/sparc/sparc32/libdl.abilist: ... here.
1683         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libm.abilist: Moved ...
1684         * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: ... here.
1685         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libnsl.abilist: Moved ...
1686         * sysdeps/unix/sysv/linux/sparc/sparc32/libnsl.abilist: ... here.
1687         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
1688         Moved ...
1689         * sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist: ... here.
1690         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libresolv.abilist:
1691         Moved ...
1692         * sysdeps/unix/sysv/linux/sparc/sparc32/libresolv.abilist: ... here.
1693         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/librt.abilist: Moved ...
1694         * sysdeps/unix/sysv/linux/sparc/sparc32/librt.abilist: ... here.
1695         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libthread_db.abilist:
1696         Moved ...
1697         * sysdeps/unix/sysv/linux/sparc/sparc32/libthread_db.abilist: ... here.
1698         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libutil.abilist: Moved ...
1699         * sysdeps/unix/sysv/linux/sparc/sparc32/libutil.abilist: ... here.
1700         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/localplt.data: Moved ...
1701         * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: ... here.
1702         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/c++-types.data: Moved ...
1703         * sysdeps/unix/sysv/linux/sparc/sparc64/c++-types.data: ... here.
1704         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/ld.abilist: Moved ...
1705         * sysdeps/unix/sysv/linux/sparc/sparc64/ld.abilist: ... here.
1706         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libBrokenLocale.abilist:
1707         Moved ...
1708         * sysdeps/unix/sysv/linux/sparc/sparc64/libBrokenLocale.abilist:
1709         ... here.
1710         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libanl.abilist: Moved ...
1711         * sysdeps/unix/sysv/linux/sparc/sparc64/libanl.abilist: ... here.
1712         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Moved ...
1713         * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: ... here.
1714         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist:
1715         Moved ...
1716         * sysdeps/unix/sysv/linux/sparc/sparc64/libcrypt.abilist: ... here.
1717         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libdl.abilist: Moved ...
1718         * sysdeps/unix/sysv/linux/sparc/sparc64/libdl.abilist: ... here.
1719         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libm.abilist: Moved ...
1720         * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: ... here.
1721         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libnsl.abilist: Moved ...
1722         * sysdeps/unix/sysv/linux/sparc/sparc64/libnsl.abilist: ... here.
1723         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
1724         Moved ...
1725         * sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist: ... here.
1726         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libresolv.abilist:
1727         Moved ...
1728         * sysdeps/unix/sysv/linux/sparc/sparc64/libresolv.abilist: ... here.
1729         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/librt.abilist: Moved ...
1730         * sysdeps/unix/sysv/linux/sparc/sparc64/librt.abilist: ... here.
1731         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libthread_db.abilist:
1732         Moved ...
1733         * sysdeps/unix/sysv/linux/sparc/sparc64/libthread_db.abilist: ... here.
1734         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libutil.abilist: Moved ...
1735         * sysdeps/unix/sysv/linux/sparc/sparc64/libutil.abilist: ... here.
1736         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/localplt.data: Moved ...
1737         * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data: ... here.
1739 2014-06-25  Joseph Myers  <joseph@codesourcery.com>
1741         * timezone/checktab.awk: Update from tzcode 2014e.
1742         * timezone/private.h: Likewise.
1743         * timezone/tzfile.h: Likewise.
1744         * timezone/zdump.c: Likewise.
1745         * timezone/zic.c: Likewise.
1747         * sysdeps/unix/sysv/linux/kernel-features.h
1748         (__ASSUME_XFS_RESTRICTED_CHOWN): Remove macro.
1749         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_chown_restricted)
1750         [__ASSUME_XFS_RESTRICTED_CHOWN]: Make code unconditional.
1751         (__statfs_chown_restricted) [!__ASSUME_XFS_RESTRICTED_CHOWN]:
1752         Remove conditional code.
1754 2014-06-25  Will Newton  <will.newton@linaro.org>
1756         * sysdeps/unix/sysv/linux/arm/dl-procinfo.c
1757         (_dl_arm_cap_flags): Add HWCAP2 values.
1758         * sysdeps/unix/sysv/linux/arm/dl-procinfo.h
1759         (_DL_HWCAP_COUNT): Increase to 37.
1760         (_DL_HWCAP_LAST): New define.
1761         (_DL_HWCAP2_LAST): New define.
1762         (_dl_procinfo): Add support for printing
1763         AT_HWCAP2 entries.
1764         (_dl_string_hwcap): Use _dl_hwcap_string.
1766 2014-06-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
1768         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
1770 2014-06-25  Joseph Myers  <joseph@codesourcery.com>
1772         * README: Do not mention ports directory.
1774         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMENSAT):
1775         Remove macro.
1776         * sysdeps/unix/sysv/linux/futimes.c: Do not include
1777         <kernel-features.h>.
1778         [__NR_utimensat && !__ASSUME_UTIMENSAT] (miss_utimensat): Remove
1779         conditional variable definition.
1780         (__futimes): Update comment.
1781         (__futimes) [__ASSUME_UTIMENSAT]: Make code unconditional.
1782         (__futimes) [!__ASSUME_UTIMENSAT]: Remove conditional code.
1784         [BZ #16560]
1785         * sysdeps/ieee754/dbl-64/e_exp10.c (__ieee754_exp10): Return 1 for
1786         arguments close to 0.
1787         * sysdeps/ieee754/ldbl-128/e_exp10l.c (__ieee754_exp10l):
1788         Likewise.
1789         * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c (__ieee754_exp10l):
1790         Likewise.
1791         * math/auto-libm-test-in: Add more tests of exp10.
1792         * math/auto-libm-test-out: Regenerated.
1793         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
1795         * sysdeps/unix/sysv/linux/kernel-features.h
1796         (__ASSUME_COMPLETE_READV_WRITEV): Remove macro.
1797         * sysdeps/unix/sysv/linux/readv.c: Do not include
1798         <kernel-features.h>.
1799         [!__ASSUME_COMPLETE_READV_WRITEV]: Remove conditional code.
1800         [!UIO_FASTIOV] (UIO_FASTIOV): Remove macro.
1801         (__libc_readv) [__ASSUME_COMPLETE_READV_WRITEV]: Make code
1802         unconditional.
1803         (__libc_readv) [!__ASSUME_COMPLETE_READV_WRITEV]: Remove
1804         conditional code.
1805         * sysdeps/unix/sysv/linux/writev.c: Do not include
1806         <kernel-features.h>.
1807         [!__ASSUME_COMPLETE_READV_WRITEV]: Remove conditional code.
1808         [!UIO_FASTIOV] (UIO_FASTIOV): Remove macro.
1809         (__libc_writev) [__ASSUME_COMPLETE_READV_WRITEV]: Make code
1810         unconditional.
1811         (__libc_writev) [!__ASSUME_COMPLETE_READV_WRITEV]: Remove
1812         conditional code.
1814 2014-06-25  Will Newton  <will.newton@linaro.org>
1816         * sysdeps/posix/tempname.c: Merge from gnulib, cosmetic
1817         comment changes throughout the file.  Remove checks
1818         for HAVE_*_H definitions that are not required.
1819         (__gen_tempname): Call abort if an unknown kind value is
1820         passed.
1822 2014-06-25  Andreas Schwab  <schwab@suse.de>
1824         [BZ #17086]
1825         * sysdeps/m68k/m680x0/fpu/s_scalbn.c: Add compat symbols for
1826         scalbln, scalblnf, scalblnl in libc.
1828 2014-06-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
1830         [BZ #17086]
1831         * sysdeps/i386/fpu/s_scalbn.S: Add compat symbol for libc.so.
1832         * sysdeps/i386/fpu/s_scalbnf.S: Likewise.
1833         * sysdeps/i386/fpu/s_scalbnl.S: Likewise.
1835 2014-06-24  Roland McGrath  <roland@hack.frob.com>
1837         * sysdeps/i386/i486/nptl/pthread_spin_trylock.S: Moved ...
1838         * sysdeps/i386/i486/pthread_spin_trylock.S: ... here.
1839         * sysdeps/i386/i586/nptl/pthread_spin_trylock.S: Moved ...
1840         * sysdeps/i386/i586/pthread_spin_trylock.S: ... here.
1841         Update #include.
1842         * sysdeps/i386/i686/nptl/pthread_spin_trylock.S: Moved ...
1843         * sysdeps/i386/i686/pthread_spin_trylock.S: ... here.
1844         Update #include.
1845         * sysdeps/x86_64/64/nptl/shlib-versions: Moved ...
1846         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: ... here.
1847         * sysdeps/x86_64/x32/nptl/shlib-versions: Moved ...
1848         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: ... here.
1849         * sysdeps/x86/nptl/bits/pthreadtypes.h: Moved ...
1850         * sysdeps/x86/bits/pthreadtypes.h: ... here.
1851         * sysdeps/x86/nptl/bits/semaphore.h: Moved ...
1852         * sysdeps/x86/bits/semaphore.h: ... here.
1853         * sysdeps/x86/nptl/elide.h: Moved ...
1854         * sysdeps/x86/elide.h: ... here.
1855         * sysdeps/x86_64/nptl/Implies: File removed.
1856         * sysdeps/i386/nptl/Implies: File removed.
1858 2014-06-24  Joseph Myers  <joseph@codesourcery.com>
1860         [BZ #16539]
1861         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]: Just
1862         return the argument for normal arguments with exponent below -64.
1863         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]:
1864         Likewise.
1865         * math/auto-libm-test-in: Add another test of expm1.
1866         * math/auto-libm-test-out: Regenerated.
1868         [BZ #16287]
1869         * sysdeps/ieee754/ldbl-128/s_erfl.c (__erfl): Return 1 without
1870         calling __erfcl for arguments at least 16.
1871         * math/auto-libm-test-in: Add more tests of erf.
1872         * math/auto-libm-test-out: Regenerated.
1874         * sysdeps/unix/sysv/linux/configure.ac: Remove cases for
1875         individual architectures.
1876         * sysdeps/unix/sysv/linux/configure: Regenerated.
1877         * sysdeps/unix/sysv/linux/i386/configure.ac: New file.
1878         * sysdeps/unix/sysv/linux/i386/configure: New generated file.
1879         * sysdeps/unix/sysv/linux/powerpc/configure.ac
1880         (ldd_rewrite_script): Define variable.
1881         * sysdeps/unix/sysv/linux/powerpc/configure: Regenerated.
1882         * sysdeps/unix/sysv/linux/powerpc/powerpc32/configure.ac: New
1883         file.
1884         * sysdeps/unix/sysv/linux/powerpc/powerpc32/configure: New
1885         generated file.
1886         * sysdeps/unix/sysv/linux/s390/configure.ac: New file.
1887         * sysdeps/unix/sysv/linux/s390/configure: New generated file.
1888         * sysdeps/unix/sysv/linux/sh/configure.ac: New file.
1889         * sysdeps/unix/sysv/linux/sh/configure: New generated file.
1890         * sysdeps/unix/sysv/linux/sparc/configure.ac: New file.
1891         * sysdeps/unix/sysv/linux/sparc/configure: New generated file.
1892         * sysdeps/unix/sysv/linux/x86_64/configure.ac: New file.
1893         * sysdeps/unix/sysv/linux/x86_64/configure: New generated file.
1895 2014-06-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
1897         [BZ #17084]
1898         * sysdeps/x86/nptl/bits/pthreadtypes.h (pthread_mutex_t):
1899         Rename member __data.d to __data.__elision_data.
1901 2014-06-24  Wilco  <wdijkstr@arm.com>
1903         * NEWS: Add 16918 to fixed bug list.
1905 2014-06-24  Wilco  <wdijkstr@arm.com>
1907         * sysdeps/arm/fesetenv.c (fesetenv): Optimize implementation.
1909 2014-06-24  Wilco  <wdijkstr@arm.com>
1911         * sysdeps/arm/fpu_control.h (_FPU_MASK_RM): Define.
1912         * sysdeps/arm/fenv_private.h (libc_fesetround_vfp)
1913         (libc_feholdexcept_setround_vfp) (libc_feholdsetround_vfp)
1914         (libc_feresetround_vfp) (libc_feholdsetround_vfp_ctx)
1915         (libc_feresetround_vfp_ctx): Use _FPU_MASK_RM.
1916         * sysdeps/arm/fesetround.c (fesetround): Use _FPU_MASK_RM.
1917         * sysdeps/arm/get-rounding-mode.h (get_rounding_mode):
1918         Use _FPU_MASK_RM.
1920 2014-06-24  Wilco  <wdijkstr@arm.com>
1922         * sysdeps/arm/fsetexcptflg.c (fesetexceptflag): Remove unused include.
1924 2014-06-24  Wilco  <wdijkstr@arm.com>
1926         * sysdeps/arm/feholdexcpt.c (feholdexcept): Remove space.
1927         * sysdeps/arm/fesetenv.c (fesetenv): Remove space.
1928         * sysdeps/arm/fesetround.c (fesetround): Remove space.
1929         * sysdeps/arm/fraiseexcpt.c (feraiseexcept): Remove space.
1931 2014-06-24  Wilco  <wdijkstr@arm.com>
1933         [BZ #16918]
1934         * sysdeps/arm/feupdateenv.c (feupdateenv):
1935         Rewrite to reduce FPSCR accesses and fix return value.
1937 2014-06-24  Wilco  <wdijkstr@arm.com>
1939         * sysdeps/arm/fclrexcpt.c (feclearexcept):
1940         Optimize to avoid unnecessary FPSCR writes.
1941         * sysdeps/arm/fedisblxcpt.c (fedisableexcept): Likewise.
1942         * sysdeps/arm/feenablxcpt.c (feenableexcept): Likewise.
1943         * sysdeps/arm/fsetexcptflg.c (fesetexceptflag): Likewise.
1944         * sysdeps/arm/setfpucw.c (__setfpucw): Likewise.
1946 2014-06-24  Wilco  <wdijkstr@arm.com>
1948         * sysdeps/arm/fegetround.c (fegetround): Call get_rounding_mode.
1949         * sysdeps/arm/feholdexcpt.c (feholdexcept): Call libc_feholdexcept_vfp.
1950         * sysdeps/arm/fesetround.c (fesetround): Call libc_fesetround_vfp.
1951         * sysdeps/arm/fgetexcptflg.c (fegetexceptflag):
1952         Call libc_fetestexcept_vfp.
1953         * sysdeps/arm/ftestexcept.c (fetestexcept): Call libc_fetestexcept_vfp.
1954         * sysdeps/arm/fenv_private.h: Move libc_*_vfp functions outside of
1955         __SOFTFP__ ifdef so that they can be built for softfp.
1957 2014-06-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
1959         * sysdeps/x86/nptl/elide.h (elision_adapt): Make first
1960         argument type signed char.
1962         * Makerules (check-abi): Dump diff of symlist if the test
1963         fails.
1965 2014-06-23  Roland McGrath  <roland@hack.frob.com>
1967         * sysdeps/generic/get-rounding-mode.h: Include <stdlib.h> before
1968         using abort.
1970         * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
1971         Remove unused variable ST.
1973 2014-06-23  Joseph Myers  <joseph@codesourcery.com>
1975         [BZ #16354]
1976         [BZ #17061]
1977         * sysdeps/ieee754/dbl-64/e_cosh.c (__ieee754_cosh): Check for
1978         small arguments before calling __expm1.
1979         * sysdeps/ieee754/flt-32/e_coshf.c (__ieee754_coshf): Check for
1980         small arguments before calling __expm1f.
1981         * sysdeps/ieee754/ldbl-128/e_coshl.c (__ieee754_coshl): Check for
1982         small arguments before calling __expm1l.
1983         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl):
1984         Likewise.
1985         * sysdeps/ieee754/ldbl-96/e_coshl.c (__ieee754_coshl): Likewise.
1986         * math/auto-libm-test-in: Add more cosh tests.  Do not allow
1987         spurious underflow for some cosh tests.
1988         * math/auto-libm-test-out: Regenerated.
1989         * sysdeps/i386/fpu/libm-test-ulps: Update.
1991         [BZ #17050]
1992         * sysdeps/ieee754/dbl-64/e_j1.c: Include <errno.h>.
1993         (__ieee754_y1): Set errno if return value overflows.
1994         * sysdeps/ieee754/flt-32/e_j1f.c: Include <errno.h>.
1995         (__ieee754_y1f): Set errno if return value overflows.
1996         * sysdeps/ieee754/ldbl-128/e_j1l.c: Include <errno.h>.
1997         (__ieee754_y1l): Set errno if return value overflows.
1998         * sysdeps/ieee754/ldbl-96/e_j1l.c: Include <errno.h>.
1999         (__ieee754_y1l): Set errno if return value overflows.
2000         * math/auto-libm-test-in: Add more tests of y0, y1 and yn.
2001         * math/auto-libm-test-out: Regenerated.
2003         * math/gen-auto-libm-tests.c: Document use of
2004         ignore-zero-inf-sign.
2005         (input_flag_type): Add value flag_ignore_zero_inf_sign.
2006         (input_flags): Add ignore-zero-inf-sign.
2007         (output_for_one_input_case): Handle flag_ignore_zero_inf_sign.
2008         * math/gen-libm-test.pl (generate_testfile): Handle
2009         ignore-zero-inf-sign.
2010         * math/auto-libm-test-in: Mark some cpow tests with
2011         ignore-zero-inf-sign and some with xfail-rounding.
2012         * math/auto-libm-test-out: Regenerated.
2013         * math/libm-test.inc (cpow_test): Use ALL_RM_TEST.
2014         * sysdeps/i386/fpu/libm-test-ulps: Update.
2015         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
2017         [BZ #16315]
2018         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Ensure possibly
2019         overflowing or underflowing operations take place with sign of
2020         result.
2021         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
2022         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
2023         * sysdeps/ieee754/dbl-64/e_pow.c: Include <math.h>.
2024         (__ieee754_pow): Recompute overflowing and underflowing results in
2025         original rounding mode.
2026         * sysdeps/x86/fpu/powl_helper.c: Include <stdbool.h>.
2027         (__powl_helper): Allow negative argument X and scale negated value
2028         as needed.  Avoid passing value outside [-1, 1] to f2xm1.
2029         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Ensure possibly
2030         overflowing or underflowing operations take place with sign of
2031         result.
2032         * sysdeps/x86_64/fpu/multiarch/e_pow.c [HAVE_FMA4_SUPPORT]:
2033         Include <math.h>.
2034         * math/auto-libm-test-in: Add more tests of pow.
2035         * math/auto-libm-test-out: Regenerated.
2036         * math/libm-test.inc (pow_test): Use ALL_RM_TEST.
2037         (pow_tonearest_test_data): Remove.
2038         (pow_test_tonearest): Likewise.
2039         (pow_towardzero_test_data): Likewise.
2040         (pow_test_towardzero): Likewise.
2041         (pow_downward_test_data): Likewise.
2042         (pow_test_downward): Likewise.
2043         (pow_upward_test_data): Likewise.
2044         (pow_test_upward): Likewise.
2045         (main): Don't call removed functions.
2046         * sysdeps/i386/fpu/libm-test-ulps: Update.
2047         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
2049 2014-06-23  Roland McGrath  <roland@hack.frob.com>
2051         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/c++-types.data:
2052         Moved ...
2053         * sysdeps/unix/sysv/linux/powerpc/powerpc32/c++-types.data: ... here.
2054         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
2055         Moved ...
2056         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist: ... here.
2057         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libm.abilist:
2058         Moved ...
2059         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: ... here.
2060         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/localplt.data:
2061         Moved ...
2062         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data: ... here.
2063         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/c++-types.data:
2064         File removed.
2065         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/ld.abilist:
2066         File removed.
2067         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libBrokenLocale.abilist:
2068         File removed.
2069         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libanl.abilist:
2070         File removed.
2071         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libcrypt.abilist:
2072         File removed.
2073         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libdl.abilist:
2074         File removed.
2075         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libnsl.abilist:
2076         File removed.
2077         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
2078         File removed.
2079         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libresolv.abilist:
2080         File removed.
2081         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/librt.abilist:
2082         File removed.
2083         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libthread_db.abilist:
2084         File removed.
2085         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libutil.abilist:
2086         File removed.
2087         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/ld.abilist:
2088         Moved ...
2089         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist: ... here.
2090         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libBrokenLocale.abilist:
2091         Moved ...
2092         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libBrokenLocale.abilist:
2093         ... here.
2094         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libanl.abilist:
2095         Moved ...
2096         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libanl.abilist: ... here.
2097         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libcrypt.abilist:
2098         Moved ...
2099         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libcrypt.abilist: ... here.
2100         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libdl.abilist:
2101         Moved ...
2102         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libdl.abilist: ... here.
2103         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libnsl.abilist:
2104         Moved ...
2105         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libnsl.abilist: ... here.
2106         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libpthread.abilist:
2107         Moved ...
2108         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist: ... here.
2109         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libresolv.abilist:
2110         Moved ...
2111         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libresolv.abilist: ... here.
2112         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/librt.abilist:
2113         Moved ...
2114         * sysdeps/unix/sysv/linux/powerpc/powerpc32/librt.abilist: ... here.
2115         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libthread_db.abilist: Moved ...
2116         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libthread_db.abilist:
2117         ... here.
2118         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libutil.abilist:
2119         Moved ...
2120         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libutil.abilist: ... here.
2121         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libc.abilist:
2122         Moved ...
2123         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
2124         ... here.
2125         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libm.abilist:
2126         Moved ...
2127         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
2128         ... here.
2129         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
2130         Moved ...
2131         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data:
2132         ... here.
2133         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/c++-types.data:
2134         Moved ...
2135         * sysdeps/unix/sysv/linux/powerpc/powerpc64/c++-types.data: ... here.
2136         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist:
2137         Moved ...
2138         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist: ... here.
2139         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist: Moved ...
2140         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist: ... here.
2141         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist:
2142         Moved ...
2143         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale-le.abilist:
2144         ... here.
2145         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale.abilist:
2146         Moved ...
2147         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale.abilist:
2148         ... here.
2149         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist:
2150         Moved ...
2151         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl-le.abilist: ... here.
2152         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl.abilist:
2153         Moved ...
2154         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl.abilist: ... here.
2155         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist:
2156         Moved ...
2157         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist: ... here.
2158         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
2159         Moved ...
2160         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: ... here.
2161         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist:
2162         Moved ...
2163         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt-le.abilist:
2164         ... here.
2165         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist:
2166         Moved ...
2167         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt.abilist: ... here.
2168         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist:
2169         Moved ...
2170         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl-le.abilist: ... here.
2171         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl.abilist:
2172         Moved ...
2173         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl.abilist: ... here.
2174         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist:
2175         Moved ...
2176         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: ... here.
2177         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist: Moved ...
2178         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: ... here.
2179         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist:
2180         Moved ...
2181         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl-le.abilist: ... here.
2182         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl.abilist:
2183         Moved ...
2184         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl.abilist: ... here.
2185         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist:
2186         Moved ...
2187         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread-le.abilist:
2188         ... here.
2189         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
2190         Moved ...
2191         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread.abilist:
2192         ... here.
2193         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist:
2194         Moved ...
2195         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv-le.abilist:
2196         ... here.
2197         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv.abilist:
2198         Moved ...
2199         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv.abilist: ... here.
2200         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist:
2201         Moved ...
2202         * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt-le.abilist: ... here.
2203         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt.abilist:
2204         Moved ...
2205         * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt.abilist: ... here.
2206         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist:
2207         Moved ...
2208         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db-le.abilist:
2209         ... here.
2210         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db.abilist:
2211         Moved ...
2212         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db.abilist:
2213         ... here.
2214         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist:
2215         Moved ...
2216         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil-le.abilist:
2217         ... here.
2218         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil.abilist:
2219         Moved ...
2220         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil.abilist: ... here.
2221         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/localplt.data:
2222         Moved ...
2223         * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data: ... here.
2225 2014-06-23  Will Newton  <will.newton@linaro.org>
2226             Wilco  <wdijkstr@arm.com>
2228         * sysdeps/generic/math_private.h: Add generic HAVE_RM_CTX
2229         implementation.  Include get-rounding-mode.h.
2230         [!HAVE_RM_CTX]: Define HAVE_RM_CTX to zero.
2231         [!libc_feholdsetround_noex_ctx]: Define
2232         libc_feholdsetround_noex_ctx.
2233         [!libc_feholdsetround_noexf_ctx]: Define
2234         libc_feholdsetround_noexf_ctx.
2235         [!libc_feholdsetround_noexl_ctx]: Define
2236         libc_feholdsetround_noexl_ctx.
2237         (libc_feholdsetround_ctx): New function.
2238         (libc_feresetround_ctx): New function.
2239         (libc_feholdsetround_noex_ctx): New function.
2240         (libc_feresetround_noex_ctx): New function.
2242 2014-06-23  Roland McGrath  <roland@hack.frob.com>
2244         * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h: Moved ...
2245         * sysdeps/mips/nptl/bits/pthreadtypes.h: ... here.
2246         * sysdeps/unix/sysv/linux/mips/nptl/bits/semaphore.h: Moved ...
2247         * sysdeps/mips/nptl/bits/semaphore.h: ... here.
2248         * sysdeps/unix/sysv/linux/mips/nptl/bits/local_lim.h: Moved ...
2249         * sysdeps/unix/sysv/linux/mips/bits/local_lim.h: ... here.
2251         * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h: Moved ...
2252         * sysdeps/m68k/nptl/bits/pthreadtypes.h: ... here.
2253         * sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h: Moved ...
2254         * sysdeps/m68k/nptl/bits/semaphore.h: ... here.
2255         * sysdeps/unix/sysv/linux/m68k/nptl/c++-types.data: Moved ...
2256         * sysdeps/unix/sysv/linux/m68k/c++-types.data: ... here.
2257         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/bits/atomic.h: Moved ...
2258         * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h: ... here.
2259         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/ld.abilist: Moved ...
2260         * sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist: ... here.
2261         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libBrokenLocale.abilist:
2262         Moved ...
2263         * sysdeps/unix/sysv/linux/m68k/coldfire/libBrokenLocale.abilist:
2264         ... here.
2265         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libanl.abilist: Moved ...
2266         * sysdeps/unix/sysv/linux/m68k/coldfire/libanl.abilist: ... here.
2267         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libc.abilist: Moved ...
2268         * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: ... here.
2269         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libcrypt.abilist:
2270         Moved ...
2271         * sysdeps/unix/sysv/linux/m68k/coldfire/libcrypt.abilist: ... here.
2272         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libdl.abilist: Moved ...
2273         * sysdeps/unix/sysv/linux/m68k/coldfire/libdl.abilist: ... here.
2274         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libm.abilist: Moved ...
2275         * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: ... here.
2276         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libnsl.abilist: Moved ...
2277         * sysdeps/unix/sysv/linux/m68k/coldfire/libnsl.abilist: ... here.
2278         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libpthread.abilist:
2279         Moved ...
2280         * sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist: ... here.
2281         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libresolv.abilist:
2282         Moved ...
2283         * sysdeps/unix/sysv/linux/m68k/coldfire/libresolv.abilist: ... here.
2284         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/librt.abilist: Moved ...
2285         * sysdeps/unix/sysv/linux/m68k/coldfire/librt.abilist: ... here.
2286         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libthread_db.abilist:
2287         Moved ...
2288         * sysdeps/unix/sysv/linux/m68k/coldfire/libthread_db.abilist: ... here.
2289         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libutil.abilist: Moved ...
2290         * sysdeps/unix/sysv/linux/m68k/coldfire/libutil.abilist: ... here.
2291         * sysdeps/unix/sysv/linux/m68k/nptl/localplt.data: Moved ...
2292         * sysdeps/unix/sysv/linux/m68k/localplt.data: ... here.
2293         * sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h: Moved ...
2294         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: ... here.
2295         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/ld.abilist: Moved ...
2296         * sysdeps/unix/sysv/linux/m68k/m680x0/ld.abilist: ... here.
2297         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libBrokenLocale.abilist:
2298         Moved ...
2299         * sysdeps/unix/sysv/linux/m68k/m680x0/libBrokenLocale.abilist:
2300         ... here.
2301         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libanl.abilist: Moved ...
2302         * sysdeps/unix/sysv/linux/m68k/m680x0/libanl.abilist: ... here.
2303         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libc.abilist: Moved ...
2304         * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: ... here.
2305         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libcrypt.abilist: Moved ...
2306         * sysdeps/unix/sysv/linux/m68k/m680x0/libcrypt.abilist: ... here.
2307         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libdl.abilist: Moved ...
2308         * sysdeps/unix/sysv/linux/m68k/m680x0/libdl.abilist: ... here.
2309         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libm.abilist: Moved ...
2310         * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: ... here.
2311         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libnsl.abilist: Moved ...
2312         * sysdeps/unix/sysv/linux/m68k/m680x0/libnsl.abilist: ... here.
2313         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libpthread.abilist:
2314         Moved ...
2315         * sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist: ... here.
2316         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libresolv.abilist: Moved ...
2317         * sysdeps/unix/sysv/linux/m68k/m680x0/libresolv.abilist: ... here.
2318         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/librt.abilist: Moved ...
2319         * sysdeps/unix/sysv/linux/m68k/m680x0/librt.abilist: ... here.
2320         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libthread_db.abilist:
2321         Moved ...
2322         * sysdeps/unix/sysv/linux/m68k/m680x0/libthread_db.abilist: ... here.
2323         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libutil.abilist: Moved ...
2324         * sysdeps/unix/sysv/linux/m68k/m680x0/libutil.abilist: ... here.
2325         * sysdeps/unix/sysv/linux/m68k/nptl/sysdep-cancel.h: Moved ...
2326         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: ... here.
2328         * sysdeps/unix/sysv/linux/sh/nptl/c++-types.data: Moved ...
2329         * sysdeps/unix/sysv/linux/sh/c++-types.data: ... here.
2330         * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: Moved ...
2331         * sysdeps/unix/sysv/linux/sh/ld.abilist: ... here.
2332         * sysdeps/unix/sysv/linux/sh/nptl/libBrokenLocale.abilist: Moved ...
2333         * sysdeps/unix/sysv/linux/sh/libBrokenLocale.abilist: ... here.
2334         * sysdeps/unix/sysv/linux/sh/nptl/libanl.abilist: Moved ...
2335         * sysdeps/unix/sysv/linux/sh/libanl.abilist: ... here.
2336         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Moved ...
2337         * sysdeps/unix/sysv/linux/sh/libc.abilist: ... here.
2338         * sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist: Moved ...
2339         * sysdeps/unix/sysv/linux/sh/libcrypt.abilist: ... here.
2340         * sysdeps/unix/sysv/linux/sh/nptl/libdl.abilist: Moved ...
2341         * sysdeps/unix/sysv/linux/sh/libdl.abilist: ... here.
2342         * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: Moved ...
2343         * sysdeps/unix/sysv/linux/sh/libm.abilist: ... here.
2344         * sysdeps/unix/sysv/linux/sh/nptl/libnsl.abilist: Moved ...
2345         * sysdeps/unix/sysv/linux/sh/libnsl.abilist: ... here.
2346         * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist: Moved ...
2347         * sysdeps/unix/sysv/linux/sh/libpthread.abilist: ... here.
2348         * sysdeps/unix/sysv/linux/sh/nptl/libresolv.abilist: Moved ...
2349         * sysdeps/unix/sysv/linux/sh/libresolv.abilist: ... here.
2350         * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: Moved ...
2351         * sysdeps/unix/sysv/linux/sh/librt.abilist: ... here.
2352         * sysdeps/unix/sysv/linux/sh/nptl/libthread_db.abilist: Moved ...
2353         * sysdeps/unix/sysv/linux/sh/libthread_db.abilist: ... here.
2354         * sysdeps/unix/sysv/linux/sh/nptl/libutil.abilist: Moved ...
2355         * sysdeps/unix/sysv/linux/sh/libutil.abilist: ... here.
2357 2014-06-23  Joseph Myers  <joseph@codesourcery.com>
2359         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_GNU]
2360         (FALLOC_FL_COLLAPSE_RANGE): New macro.
2361         [__USE_GNU] (FALLOC_FL_ZERO_RANGE): Likewise.
2362         * sysdeps/unix/sysv/linux/bits/in.h (IP_PMTUDISC_OMIT): Likewise.
2363         (IPV6_PMTUDISC_INTERFACE): Likewise.
2364         (IPV6_PMTUDISC_OMIT): Likewise.
2366 2014-06-23  Andreas Schwab  <schwab@suse.de>
2368         * nptl/sysdeps/unix/sysv/linux/mq_notify.c (init_mq_netlink):
2369         Remove unused errout label.
2371 2014-06-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
2373         * sysdeps/powerpc/bits/hwcap.h [PPC_FEATURE2_HAS_VEC_CRYPTO]: New
2374         macro: hardware supports Vector Crypto instructions.
2376 2014-06-23  Will Newton  <will.newton@linaro.org>
2378         * elf/dl-lookup.c: Use __glibc_unlikely and __glibc_likely
2379         rather than __builtin_expect.
2381         * elf/dl-lookup.c (undefined_msg): Remove variable.
2382         (_dl_lookup_symbol_x): Replace undefined_msg with string
2383         literal.
2385         * elf/dl-lookup.c (do_lookup_unique): New function.
2386         (do_lookup_x): Move STB_GNU_UNIQUE handling code
2387         to a separate function.
2389 2014-06-23  Andreas Schwab  <schwab@suse.de>
2391         [BZ #17079]
2392         * nss/nss_files/files-XXX.c (get_contents): Store overflow marker
2393         before reading the next line.
2395 2014-06-23  Will Newton  <will.newton@linaro.org>
2397         * test-skeleton.c (signal_handler): Use printf and %m
2398         rather than perror.  Use printf rather than fprintf to
2399         stderr.  Use puts rather than fputs to stderr.
2400         (main): Likewise.
2402 2014-06-22  Ludovic Courtès  <ludo@gnu.org>
2404         * nscd/nscd.c (thread_info_t): Remove typedef.
2405         (thread_info): Remove variable.
2407 2014-06-21  Allan McRae  <allan@archlinux.org>
2409         * NEWS: Mention CVE-2014-4043.
2411 2014-06-20  Roland McGrath  <roland@hack.frob.com>
2413         * nptl/sysdeps/unix/sysv/linux/smp.h: Moved ...
2414         * nptl/smp.h: ... here.
2416         * nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h: File removed.
2418         * include/libc-symbols.h (HAVE_CONFIG_H, STDC_HEADERS): New macros.
2419         * catgets/Makefile (catgets-CPPFLAGS): Remove -DHAVE_CONFIG_H.
2420         * locale/Makefile (CPPFLAGS-locale-programs): Likewise.
2421         * stdlib/strtol_l.c [_LIBC] (STDC_HEADERS): Don't define it.
2423         * nptl/allocatestack.c: Include <stack-aliasing.h>.
2424         * nptl/stack-aliasing.h: New file.
2425         * sysdeps/i386/i686/stack-aliasing.h: New file.
2426         * sysdeps/i386/i686/nptl/Makefile: File removed.
2427         * sysdeps/x86_64/stack-aliasing.h: New file.
2428         * sysdeps/x86_64/nptl/Makefile
2429         (CFLAGS-pthread_create.c): Variable removed.
2431         * nptl/sysdeps/unix/sysv/linux/bits/local_lim.h: Moved ...
2432         * sysdeps/unix/sysv/linux/bits/local_lim.h: ... here, replacing the
2433         old file.
2434         * nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h: Moved ...
2435         * sysdeps/unix/sysv/linux/bits/posix_opt.h: ... here, replacing the
2436         old file.
2438 2014-06-21  Joseph Myers  <joseph@codesourcery.com>
2440         * sysdeps/unix/sysv/linux/arm/kernel-features.h
2441         (__ASSUME_SIGFRAME_V2): Remove macro.
2442         * sysdeps/unix/sysv/linux/arm/sigrestorer.S: Update comment.
2443         [!__ASSUME_SIGFRAME_V2]: Remove conditional code.
2444         (__default_sa_restorer_v2): Rename to __default_sa_restorer.
2445         (__default_rt_sa_restorer_v2): Rename to __default_rt_sa_restorer.
2446         * sysdeps/unix/sysv/linux/arm/sigaction.c (__default_sa_restorer):
2447         Declare as function.  Remove conditional macro definitions.
2448         (__default_rt_sa_restorer): Likewise.
2449         (__default_sa_restorer_v1): Remove declaration.
2450         (__default_sa_restorer_v2): Likewise.
2451         (__default_rt_sa_restorer_v1): Likewise.
2452         (__default_rt_sa_restorer_v2): Likewise.
2453         * sysdeps/unix/sysv/linux/arm/Versions (GLIBC_PRIVATE): Remove
2454         __default_sa_restorer_v1, __default_rt_sa_restorer_v1,
2455         __default_sa_restorer_v2 and __default_rt_sa_restorer_v2.
2457 2014-06-20  Roland McGrath  <roland@hack.frob.com>
2459         * sysdeps/unix/sysv/linux/sparc/Makefile [$(subdir) = nptl]
2460         (libpthread-routines): Add sysdep.
2461         * nptl/sysdeps/unix/sysv/linux/sparc/Makefile: File removed.
2462         * sysdeps/unix/sysv/linux/sparc/Versions
2463         (libpthread: GLIBC_2.3.3): New version set.
2464         * nptl/sysdeps/unix/sysv/linux/sparc/Versions: File removed.
2465         * nptl/sysdeps/unix/sysv/linux/sparc/aio_cancel.c: Moved ...
2466         * sysdeps/unix/sysv/linux/sparc/aio_cancel.c: ... here.
2467         * nptl/sysdeps/unix/sysv/linux/sparc/internaltypes.h: Moved ...
2468         * sysdeps/sparc/nptl/internaltypes.h: ... here.  Use #include_next.
2469         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_destroy.c:
2470         Moved ...
2471         * sysdeps/sparc/nptl/pthread_barrier_destroy.c: ... here.
2472         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_init.c: Moved ...
2473         * sysdeps/sparc/nptl/pthread_barrier_init.c: ... here.
2474         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_wait.c: Moved ...
2475         * sysdeps/sparc/nptl/pthread_barrier_wait.c: ... here.
2476         * nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c: Moved ...
2477         * sysdeps/sparc/nptl/sem_init.c: ... here.
2478         * nptl/sysdeps/unix/sysv/linux/sparc/sem_post.c: Moved ...
2479         * sysdeps/sparc/nptl/sem_post.c: ... here.
2480         * nptl/sysdeps/unix/sysv/linux/sparc/sem_timedwait.c: Moved ...
2481         * sysdeps/sparc/nptl/sem_timedwait.c: ... here.
2482         * nptl/sysdeps/unix/sysv/linux/sparc/sem_wait.c: Moved ...
2483         * sysdeps/sparc/nptl/sem_wait.c: ... here.
2484         * nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Moved ...
2485         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: ... here.
2486         * sysdeps/sparc/sparc32/sparcv9/Makefile [$(subdir) = nptl]
2487         (libpthread-routines): Add cpu_relax.
2488         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/Makefile:
2489         File removed.
2490         * sysdeps/unix/sysv/linux/sparc/sparc64/Versions
2491         (librt: GLIBC_2.3.3): New version set.
2492         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Versions: File removed.
2493         * sysdeps/sparc/sparc64/nptl/Makefile: New file.
2494         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile [$(subdir) = nptl]
2495         (CFLAGS-pause.c, CFLAGS-sigsuspend.c): New variables.
2496         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Makefile: File removed.
2497         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/lowlevellock.c: Moved ...
2498         * sysdeps/sparc/sparc32/nptl/lowlevellock.c: ... here.
2499         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_wait.c:
2500         Moved ...
2501         * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: ... here.
2502         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c: Moved ...
2503         * sysdeps/sparc/sparc32/nptl/sem_post.c: ... here.
2504         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_timedwait.c: Moved ...
2505         * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: ... here.
2506         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_trywait.c: Moved ...
2507         * sysdeps/sparc/sparc32/nptl/sem_trywait.c: ... here.
2508         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c: Moved ...
2509         * sysdeps/sparc/sparc32/nptl/sem_wait.c: ... here.
2510         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/cpu_relax.S:
2511         Moved ...
2512         * sysdeps/sparc/sparc32/sparcv9/nptl/cpu_relax.S: ... here.
2513         Update #include.
2514         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/pthread_barrier_wait.c:
2515         Moved ...
2516         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_barrier_wait.c: ... here.
2517         Update #include.
2518         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_post.c:
2519         Moved ...
2520         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_post.c: ... here.
2521         Update #include.
2522         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_timedwait.c:
2523         Moved ...
2524         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_timedwait.c: ... here.
2525         Update #include.
2526         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_trywait.c:
2527         Moved ...
2528         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_trywait.c: ... here.
2529         Update #include.
2530         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_wait.c:
2531         Moved ...
2532         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_wait.c: ... here.
2533         Update #include.
2534         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/cpu_relax.S: Moved ...
2535         * sysdeps/sparc/sparc64/nptl/cpu_relax.S: ... here.
2536         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Moved ...
2537         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: ... here.
2538         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Moved ...
2539         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: ... here.
2540         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c: Moved ...
2541         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c: ... here.
2542         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c: Moved ...
2543         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c: ... here.
2544         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c:
2545         Moved ...
2546         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c: ... here.
2547         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c: Moved ...
2548         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c: ... here.
2549         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c: Moved ...
2550         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c: ... here.
2552 2014-06-20  Joseph Myers  <joseph@codesourcery.com>
2554         * nptl/pthread_cond_wait.c: Include <kernel-features.h>.
2555         * nptl/pthread_rwlock_timedrdlock.c: Likewise.
2556         * nptl/pthread_rwlock_timedwrlock.c: Likewise.
2557         * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c: Likewise.
2558         * nscd/nscd.c: Likewise.
2559         * sysdeps/i386/nptl/tcb-offsets.sym: Likewise.
2560         * sysdeps/powerpc/nptl/tcb-offsets.sym: Likewise.
2561         * sysdeps/sh/nptl/tcb-offsets.sym: Likewise.
2562         * sysdeps/x86_64/nptl/tcb-offsets.sym: Likewise.
2564         * nptl/sysdeps/unix/sysv/linux/mq_notify.c: Do not include
2565         <kernel-features.h>.
2566         (init_mq_netlink): Remove conditional have_sock_cloexec
2567         definitions.  Remove code conditional on have_sock_cloexec < 0.
2568         (init_mq_netlink) [!SOCK_CLOEXEC]: Remove conditional code.
2569         (init_mq_netlink) [!__ASSUME_SOCK_CLOEXEC]: Likewise.
2570         * sysdeps/unix/sysv/linux/opensock.c: Do not include
2571         <kernel-features.h>.
2572         (__opensock) [SOCK_CLOEXEC]: Make code unconditional.
2573         (__opensock) [!__ASSUME_SOCK_CLOEXEC]: Remove conditional code.
2575 2014-06-20  H.J. Lu  <hongjiu.lu@intel.com>
2577         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
2578         Add tests for memset_chk and memset.
2580         * sysdeps/x86_64/multiarch/init-arch.h (HAS_AVX2): Defined
2581         with AVX2_Usable.
2583 2014-06-20  Maciej W. Rozycki  <macro@codesourcery.com>
2585         [BZ #16046]
2586         * elf/tst-dl-iter-static.c: New file.
2587         * elf/Makefile (tests-static): Add tst-dl-iter-static.
2589         * stdlib/tst-qsort2.c (main): Fix off-by-one argc interpretation
2590         error.
2592 2014-06-20  Joseph Myers  <joseph@codesourcery.com>
2594         * sysdeps/unix/sysv/linux/kernel-features.h
2595         (__ASSUME_F_GETOWN_EX): Remove macro.
2596         * sysdeps/unix/sysv/linux/fcntl.c: Do not include
2597         <kernel-features.h>.
2598         (miss_F_GETOWN_EX): Remove variable or macro.
2599         (do_fcntl): Do not check miss_F_GETOWN_EX.
2600         (do_fcntl) [!__ASSUME_F_GETOWN_EX]: Remove conditional code.
2602         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_RANDOM):
2603         Remove macro.
2604         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard)
2605         [!__ASSUME_AT_RANDOM]: Remove conditional code.
2606         (_dl_setup_pointer_guard) [!__ASSUME_AT_RANDOM]: Likewise.
2608         * sysdeps/unix/sysv/linux/kernel-features.h
2609         (__ASSUME_ADJ_OFFSET_SS_READ): Remove macro.
2610         * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME)
2611         [ADJ_OFFSET_SS_READ]: Make code unconditional.
2612         (ADJTIME) [!ADJ_OFFSET_SS_READ]: Remove conditional code.
2614 2014-06-20  Maciej W. Rozycki  <macro@codesourcery.com>
2616         [BZ #17075]
2617         * sysdeps/arm/dl-machine.h (elf_machine_rel) <R_ARM_TLS_DESC>:
2618         Fix calculation of the symbol's value.
2619         * sysdeps/arm/tst-armtlsdescloc.c: New file.
2620         * sysdeps/arm/tst-armtlsdesclocmod.c: New file.
2621         * sysdeps/arm/tst-armtlsdescextnow.c: New file.
2622         * sysdeps/arm/tst-armtlsdescextlazymod.c: New file.
2623         * sysdeps/arm/tst-armtlsdescextlazy.c: New file.
2624         * sysdeps/arm/tst-armtlsdescextnowmod.c: New file.
2625         * sysdeps/arm/Makefile (tests): Add `tst-armtlsdesc',
2626         `tst-armtlsdescextnow' and `tst-armtlsdescextlazy'.
2627         (modules-names): Add `tst-armtlsdescmod',
2628         `tst-armtlsdescextlazymod' and `tst-armtlsdescextnowmod'.
2629         (CPPFLAGS-tst-armtlsdescextnowmod.c): New variable.
2630         (CPPFLAGS-tst-armtlsdescextlazymod.c): Likewise.
2631         (CFLAGS-tst-armtlsdesclocmod.c): Likewise.
2632         (CFLAGS-tst-armtlsdescextnowmod.c): Likewise.
2633         (CFLAGS-tst-armtlsdescextlazymod.c): Likewise.
2634         (LDFLAGS-tst-armtlsdescextnowmod.so): Likewise.
2635         ($(objpfx)tst-armtlsdescloc): New dependency.
2636         ($(objpfx)tst-armtlsdescextnow): Likewise.
2637         ($(objpfx)tst-armtlsdescextlazy): Likewise.
2638         * sysdeps/arm/configure.ac: Add a check for tools' GNU descriptor
2639         TLS scheme support.
2640         * sysdeps/arm/configure: Regenerate.
2642 2014-06-20  Joseph Myers  <joseph@codesourcery.com>
2644         * include/fcntl.h (__atfct_seterrno): Remove prototype.
2645         (__atfct_seterrno_2): Likewise.
2646         * sysdeps/unix/sysv/linux/alpha/dl-fxstatat64.c: Do not include
2647         <kernel-features.h>.
2648         (__ASSUME_ATFCTS): Do not undefine and redefine.
2649         * sysdeps/unix/sysv/linux/alpha/fxstatat.c [__ASSUME_ATFCTS]
2650         (__have_atfcts): Remove conditional definition.
2651         (__fxstatat([__NR_fstatat64]: Make code unconditional.
2652         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code and code
2653         unreachable if [__ASSUME_ATFCTS].
2654         * sysdeps/unix/sysv/linux/dl-fxstatat64.c (__ASSUME_ATFCTS): Do
2655         not undefine and redefine.
2656         * sysdeps/unix/sysv/linux/faccessat.c: Do not include
2657         <kernel-features.h>.
2658         (faccessat) [__NR_faccessat]: Make code unconditional.
2659         (faccessat) [!__ASSUME_ATFCTS]: Remove conditional code.
2660         * sysdeps/unix/sysv/linux/fchmodat.c: Do not include
2661         <kernel-features.h>.
2662         (fchmodat) [__NR_fchmodat]: Make code unconditional.
2663         (fchmodat) [!__ASSUME_ATFCTS]: Remove conditional code.
2664         * sysdeps/unix/sysv/linux/fchownat.c: Do not include
2665         <kernel-features.h>.
2666         (fchownat) [__NR_fchownat]: Make code unconditional.
2667         (fchownat) [!__ASSUME_ATFCTS]: Remove conditional code.
2668         * sysdeps/unix/sysv/linux/futimesat.c: Do not include
2669         <kernel-features.h>.
2670         (futimesat) [__NR_futimesat]: Make code unconditional.
2671         (futimesat) [!__ASSUME_ATFCTS]: Remove conditional code.
2672         * sysdeps/unix/sysv/linux/fxstatat.c: Do not include
2673         <kernel-features.h>.
2674         (__fxstatat) [__NR_newfstatat]: Make code unconditional.
2675         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
2676         * sysdeps/unix/sysv/linux/fxstatat64.c: Do not include
2677         <kernel-features.h>.
2678         (__fxstatat64) [__NR_fstatat64]: Make code unconditional.
2679         (__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
2680         * sysdeps/unix/sysv/linux/i386/fchownat.c: Remove file.
2681         * sysdeps/unix/sysv/linux/i386/fxstatat.c: Do not include
2682         <kernel-features.h>.
2683         (__fxstatat) [__NR_fstatat64]: Make code unconditional.
2684         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
2685         * sysdeps/unix/sysv/linux/linkat.c: Do not include
2686         <kernel-features.h>.
2687         (linkat) [__NR_linkat]: Make code unconditional.
2688         (linkat) [!__ASSUME_ATFCTS]: Remove conditional code.
2689         * sysdeps/unix/sysv/linux/m68k/fchownat.c: Remove file.
2690         * sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c: Do not include
2691         <kernel-features.h>.
2692         (__fxstatat64) [__NR_newfstatat]: Make code unconditional.
2693         (__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
2694         * sysdeps/unix/sysv/linux/mkdirat.c: Do not include
2695         <kernel-features.h>.
2696         (mkdirat) [__NR_mkdirat]: Make code unconditional.
2697         (mkdirat) [!__ASSUME_ATFCTS]: Remove conditional code.
2698         * sysdeps/unix/sysv/linux/openat.c: Do not include
2699         <kernel-features.h>.
2700         [!__ASSUME_ATFCTS] (__atfct_seterrno): Remove function.
2701         [!__ASSUME_ATFCTS] (__have_atfcts): Remove variable.
2702         (OPENAT_NOT_CANCEL) [__NR_openat]: Make code unconditional.
2703         (OPENAT_NOT_CANCEL) [!__ASSUME_ATFCTS]: Remove conditional code.
2704         * sysdeps/unix/sysv/linux/powerpc/fchownat.c: Remove file.
2705         * sysdeps/unix/sysv/linux/readlinkat.c: Do not include
2706         <kernel-features.h>.
2707         (readlinkat) [__NR_readlinkat]: Make code unconditional.
2708         (readlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.  Return
2709         result of INLINE_SYSCALL directly, not via int variable.
2710         * sysdeps/unix/sysv/linux/renameat.c: Do not include
2711         <kernel-features.h>.
2712         [!__ASSUME_ATFCTS] (__atfct_seterrno_2): Remove function.
2713         (renameat) [__NR_renameat]: Make code unconditional.
2714         (renameat) [!__ASSUME_ATFCTS]: Remove conditional code.
2715         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Remove file.
2716         * sysdeps/unix/sysv/linux/sh/fchownat.c: Remove file.
2717         * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Remove file.
2718         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-fxstatat64.c
2719         (__ASSUME_ATFCTS): Do not undefine and redefine.
2720         * sysdeps/unix/sysv/linux/symlinkat.c: Do not include
2721         <kernel-features.h>.
2722         (symlinkat) [__NR_symlinkat]: Make code unconditional.
2723         (symlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
2724         * sysdeps/unix/sysv/linux/unlinkat.c: Do not include
2725         <kernel-features.h>.
2726         (unlinkat) [__NR_unlinkat]: Make code unconditional.
2727         (unlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
2728         * sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c
2729         (__ASSUME_ATFCTS): Do not undefine and redefine.
2730         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Do not include
2731         <kernel-features.h>.
2732         (__fxstatat) [__NR_newfstatat]: Make code unconditional.
2733         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
2734         * sysdeps/unix/sysv/linux/xmknodat.c: Do not include
2735         <kernel-features.h>.
2736         (__xmknodat) [__NR_mknodat]: Make code unconditional.
2737         (__xmknodat) [!__ASSUME_ATFCTS]: Remove conditional code.
2739 2014-06-20  H.J. Lu  <hongjiu.lu@intel.com>
2741         * sysdeps/x86_64/multiarch/rtld-strlen.S: Removed.
2743 2014-06-20  Andreas Schwab  <schwab@linux-m68k.org>
2745         [BZ #17069]
2746         * posix/regcomp.c (parse_reg_exp): Deallocate partially
2747         constructed tree before returning error.
2748         * posix/bug-regexp36.c: Expand test case.
2750 2014-06-20  Stefan Liebler  <stli@linux.vnet.ibm.com>
2752         [BZ #6803]
2753         * math/libm-test.inc (scalbln_test_date):
2754         Add errno expectations.
2755         * math/w_scalblnf.c: New File.
2756         Add wrapper which checks for setting errno to ERANGE.
2757         Add weak_alias for corresponding scalbln function.
2758         * math/w_scalbln.c: Likewise.
2759         * math/w_scalblnl.c: Likewise.
2760         * math/Makefile (libm-calls): Add w_scalbln.
2761         * sysdeps/ieee754/flt-32/s_scalblnf.c:
2762         Remove weak_alias for corresponding scalbln function.
2763         * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
2764         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: Likewise.
2765         * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
2766         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
2767         * sysdeps/sparc/sparc64/soft-fp/s_scalblnl.c: Likewise.
2768         * sysdeps/i386/fpu/s_scalbnf.S: Likewise.
2769         * sysdeps/i386/fpu/s_scalbn.S: Likewise.
2770         * sysdeps/i386/fpu/s_scalbnl.S: Likewise.
2771         * sysdeps/m68k/m680x0/fpu/s_scalbn.c: Likewise.
2772         * sysdeps/ieee754/ldbl-64-128/s_scalblnl.c:
2773         Remove long_double_symbol for scalblnl function in libm, libc.
2774         * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: New File.
2775         Add wrapper which checks for setting errno to ERANGE.
2776         Add long_double_symbol for scalblnl function in libm, libc.
2777         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c:
2778         Remove long_double_symbol for scalblnl in libm.
2779         * sysdeps/ieee754/ldbl-128ibm/w_scalblnl.c: New File.
2780         Add wrapper which checks for setting errno to ERANGE.
2781         Add long_double_symbol for scalblnl function in libm.
2782         * sysdeps/ia64/fpu/w_scalblnf.c: New File.
2783         Do not use wrapper because of own implementation.
2785 2014-06-19  H.J. Lu  <hongjiu.lu@intel.com>
2787         * sysdeps/x86/nptl/bits/pthreadtypes.h (pthread_rwlock_t): Use
2788         3 bytes for __pad1 for x32.
2789         (__PTHREAD_RWLOCK_ELISION_EXTRA): Likewise.
2791 2014-06-19  Ling Ma  <ling.ml@alibaba-inc.com>
2792             H.J. Lu  <hongjiu.lu@intel.com>
2794         * sysdeps/x86_64/multiarch/Makefile: Add memset-avx2.
2795         * sysdeps/x86_64/multiarch/memset-avx2.S: New file.
2796         * sysdeps/x86_64/multiarch/memset.S: Likewise.
2797         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
2798         * sysdeps/x86_64/multiarch/rtld-memset.S: Likewise.
2800 2014-06-19  Andreas Schwab  <schwab@linux-m68k.org>
2802         [BZ #17069]
2803         * posix/regcomp.c (parse_expression): Deallocate partially
2804         constructed tree before returning error.
2805         * posix/Makefile.c (tests): Add bug-regex36.
2806         (generated): Add bug-regex36.mtrace.
2807         (tests-special): Add $(objpfx)bug-regex36-mem.out
2808         (bug-regex36-ENV): New variable.
2809         ($(objpfx)bug-regex36-mem.out): New rule.
2810         * posix/bug-regex36.c: New file.
2812 2014-06-19  Will Newton  <will.newton@linaro.org>
2814         * malloc/malloc.c (systrim): If extra is zero then return
2815         early.
2817 2014-06-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
2819         * benchtests/Makefile ($(objpfx)bench-%.c): Remove $(.).
2821 2014-06-19  Richard Earnshaw  <rearnsha@arm.com>
2823         * sysdeps/aarch64/strchr.S: New file.
2825 2014-06-18  Joseph Myers  <joseph@codesourcery.com>
2827         [BZ #17022]
2828         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Do not subtract 1
2829         from arguments -2 or below.
2830         * sysdeps/i386/i686/fpu/e_logl.S (__ieee754_logl): Likewise.
2831         * sysdeps/x86_64/fpu/e_logl.S (__ieee754_logl): Likewise.
2833 2014-06-18  Andreas Schwab  <schwab@suse.de>
2835         [BZ #17062]
2836         * posix/fnmatch_loop.c (FCT): Rerrange loop for skipping over rest
2837         of a bracket expr not to run off the end of the string.
2838         * posix/Makefile (tests): Add tst-fnmatch3.
2839         * posix/tst-fnmatch3.c: New file.
2841 2014-06-18  Joseph Myers  <joseph@codesourcery.com>
2843         * elf/Makefile ($(objpfx)tst-unused-dep.out): Use $(rtld-prefix).
2844         * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
2845         [$(cross-compiling) = no]: Likewise.
2846         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
2847         [$(cross-compiling) = no]: Likewise.
2849 2014-16-17  Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
2851         [BZ #17031]
2852         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Consider the low
2853         double, adjusted for any remainder from the high double.
2854         * math/libm-test.inc (nearbyint): Add tests.
2855         (rint): Likewise.
2857 2014-06-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
2859         * nptl/sysdeps/powerpc/Makefile: Moved ...
2860         * sysdeps/powerpc/nptl/Makefile: ... here.
2861         * nptl/sysdeps/powerpc/pthread_spin_lock.c: Moved ...
2862         * sysdeps/powerpc/nptl/pthread_spin_lock.c: .. here.
2863         * nptl/sysdeps/powerpc/pthread_spin_trylock.c: Moved ...
2864         * sysdeps/powerpc/nptl/pthread_spin_trylock.c: ... here.
2865         * nptl/sysdeps/powerpc/pthreaddef.h: Moved ...
2866         * sysdeps/powerpc/nptl/pthreaddef.h: ... here.
2867         * nptl/sysdeps/powerpc/tcb-offsets.sym: Moved ...
2868         * sysdeps/powerpc/nptl/tcb-offsets.sym: ... here.
2869         * nptl/sysdeps/powerpc/tls.h: Moved ...
2870         * sysdeps/powerpc/nptl/tls.h: ... here.
2872 2014-06-16  Joseph Myers  <joseph@codesourcery.com>
2874         [BZ #16681]
2875         * sysdeps/i386/fpu/s_ceil.S (__ceil): Add CFI.
2876         * sysdeps/i386/fpu/s_ceilf.S (__ceilf): Likewise.
2877         * sysdeps/i386/fpu/s_ceill.S (__ceill): Likewise.
2878         * sysdeps/i386/fpu/s_floor.S (__floor): Likewise.
2879         * sysdeps/i386/fpu/s_floorf.S (__floorf): Likewise.
2880         * sysdeps/i386/fpu/s_floorl.S (__floorl): Likewise.
2881         * sysdeps/i386/fpu/s_trunc.S (__trunc): Likewise.
2882         * sysdeps/i386/fpu/s_truncf.S (__truncf): Likewise.
2883         * sysdeps/i386/fpu/s_truncl.S (__truncl): Likewise.
2885 2014-06-17  Andreas Schwab  <schwab@linux-m68k.org>
2887         * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
2889 2014-06-16  Andreas Schwab  <schwab@linux-m68k.org>
2891         * sysdeps/m68k/m680x0/bits/huge_vall.h: Fix missing space after
2892         defined operator.
2894         * scripts/cross-test-ssh.sh (timeoutfactor): Default to
2895         $TIMEOUTFACTOR.
2897 2014-06-16  Florian Weimer  <fweimer@redhat.com>
2899         [BZ #17058]
2900         * nptl/tst-setuid2.c (do_test): Fix tautological comparison in
2901         non-executed part of the test.
2903 2014-06-16  Andreas Schwab  <schwab@suse.de>
2905         * string/bits/string2.h (strdup, strndup): Update feature guard.
2907 2014-06-14  David S. Miller  <davem@davemloft.net>
2909         * sysdeps/sparc/fpu/libm-test-ulps: Update.
2911 2014-06-14  Andreas Schwab  <schwab@linux-m68k.org>
2913         * sysdeps/unix/sysv/linux/m68k/clone.S: Deconditionalize the code
2914         that was previously under [RESET_PID].
2915         * sysdeps/unix/sysv/linux/m68k/nptl/clone.S: Remove file.
2917         * sysdeps/unix/sysv/linux/m68k/pt-vfork.c: New file.
2918         * sysdeps/unix/sysv/linux/m68k/nptl/pt-vfork.S: Remove file.
2919         * sysdeps/unix/sysv/linux/m68k/vfork.S: Include <tcb-offsets.h>.
2920         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
2921         (__libc_vfork): New strong alias.
2922         * sysdeps/unix/sysv/linux/m68k/nptl/vfork.S: Remove file.
2924 2014-06-14 Andi Kleen  <ak@linux.intel.com>
2926         * sysdeps/generic/elide.h: New file.
2928 2014-06-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
2930         * Makefile (installed-headers): Adjust path of pthread.h header.
2932 2014-06-13  Roland McGrath  <roland@hack.frob.com>
2934         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Moved ...
2935         * sysdeps/s390/nptl/bits/pthreadtypes.h: ... here.
2936         * nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h: Moved ...
2937         * sysdeps/s390/nptl/bits/semaphore.h: ... here.
2939         * nptl/sysdeps/s390/Makefile: Moved ...
2940         * sysdeps/s390/nptl/Makefile: ... here.
2941         * nptl/sysdeps/s390/pthread_spin_init.c: Moved ...
2942         * sysdeps/s390/nptl/pthread_spin_init.c: ... here.
2943         * nptl/sysdeps/s390/pthread_spin_lock.c: Moved ...
2944         * sysdeps/s390/nptl/pthread_spin_lock.c: ... here.
2945         * nptl/sysdeps/s390/pthread_spin_trylock.c: Moved ...
2946         * sysdeps/s390/nptl/pthread_spin_trylock.c: ... here.
2947         * nptl/sysdeps/s390/pthread_spin_unlock.c: Moved ...
2948         * sysdeps/s390/nptl/pthread_spin_unlock.c: ... here.
2949         * nptl/sysdeps/s390/pthreaddef.h: Moved ...
2950         * sysdeps/s390/nptl/pthreaddef.h: ... here.
2951         * nptl/sysdeps/s390/tcb-offsets.sym: Moved ...
2952         * sysdeps/s390/nptl/tcb-offsets.sym: ... here.
2953         * nptl/sysdeps/s390/tls.h: Moved ...
2954         * sysdeps/s390/nptl/tls.h: ... here.
2956         * sysdeps/unix/sysv/linux/s390/arch-fork.h: New file.
2957         * nptl/sysdeps/unix/sysv/linux/s390/fork.c: File removed.
2959 2014-06-13  David S. Miller  <davem@davemloft.net>
2961         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: Delete.
2962         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pt-vfork.S: Delete.
2963         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: Moved ...
2964         * sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: ... here.
2965         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Delete.
2966         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/pt-vfork.S: Delete.
2967         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: Moved ...
2968         * sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: ... here.
2969         * sysdeps/unix/sysv/linux/sparc/fork.S: Delete.
2970         * sysdeps/unix/sysv/linux/sparc/pt-vfork.S: New file.
2971         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__thread_start):
2972         Remove RESET_PID cpp guards.
2973         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__thread_start):
2974         Remove RESET_PID cpp guards.
2975         * sysdeps/unix/sysv/linux/sparc/vfork.S: Delete.
2977 2014-06-13  Andreas Schwab  <schwab@linux-m68k.org>
2979         * sysdeps/m68k/jmpbuf-unwind.h (_JMPBUF_UNWINDS, _jmpbuf_sp): Cast
2980         __sp to uintptr_t.
2982 2014-06-13  Andi Kleen  <ak@linux.intel.com>
2984         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: Remove.
2985         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S: dito.
2986         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S: dito.
2987         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: dito.
2988         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: dito.
2989         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S: dito.
2990         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S: dito.
2991         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S: dito.
2992         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S: dito.
2993         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S: dito.
2994         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S: dito.
2995         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S: dito.
2996         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S: dito.
2997         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S: dito.
2998         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S: dito.
2999         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: dito.
3000         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: dito.
3001         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S: dito.
3002         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: dito.
3003         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: dito.
3005         * nptl/pthread_rwlock_rdlock.c: Include elide.h.
3006         (pthread_rwlock_rdlock): Add elision.
3007         * nptl/pthread_rwlock_wrlock.c: Include elide.h.
3008         (pthread_rwlock_wrlock): Add elision.
3009         * nptl/pthread_rwlock_trywrlock.c: Include elide.h.
3010         (pthread_rwlock_trywrlock): Add elision.
3011         * nptl/pthread_rwlock_tryrdlock.c: Include elide.h.
3012         (pthread_rwlock_tryrdlock): Add elision.
3013         * nptl/pthread_rwlock_unlock.c: Include elide.h.
3014         (pthread_rwlock_tryrdlock): Add elision unlock.
3015         * nptl/sysdeps/pthread/pthread.h:
3016         (__PTHREAD_RWLOCK_ELISION_EXTRA): Handle new define
3017         (PTHREAD_RWLOCK_INITIALIZER,
3018         PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP):
3019         Handle new elision field.
3020         * sysdeps/x86/nptl/elide.h: New file. Add generic elision macros.
3021         * sysdeps/arm/nptl/bits/pthreadtypes.h
3022         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
3023         * sysdeps/sh/nptl/bits/pthreadtypes.h
3024         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
3025         * sysdeps/tile/nptl/bits/pthreadtypes.h
3026         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
3027         * sysdeps/a/nptl/bits/pthreadtypes.h
3028         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
3029         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h
3030         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
3031         * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h
3032         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
3033         * sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h
3034         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
3035         * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h
3036         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
3037         * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h
3038         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
3039         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h
3040         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
3041         * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h
3042         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
3043         * sysdeps/unix/sysv/linux/powerpc/nptl/bits/pthreadtypes.h
3044         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
3045         * sysdeps/unix/sysv/linux/x86/elision-conf.c:
3046         (elision_init): Set try_xbegin to zero when no RTM.
3047         * sysdeps/x86/nptl/bits/pthreadtypes.h
3048         (pthread_rwlock_t): Change __pad1 to __rwelision.
3049         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
3051 2014-06-13  Andi Kleen  <ak@linux.intel.com>
3053         * nptl/pthread_rwlock_rdlock (__pthread_rwlock_rdlock):
3054         Split into __do_pthread_rwlock_rdlock and __pthread_rwlock_rdlock.
3055         * nptl/pthread_rwlock_wrlock (__pthread_rwlock_wrlock):
3056         Split into __do_pthread_rwlock_wrlock and __pthread_wrlock_rdlock.
3058 2014-06-13  Meador Inge  <meadori@codesourcery.com>
3060         [BZ #16996]
3061         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Ensure
3062         that the cached result has been set before returning it.
3064 2014-06-12  Roland McGrath  <roland@hack.frob.com>
3066         * nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Moved ...
3067         * sysdeps/sparc/nptl/bits/pthreadtypes.h: ... here.
3068         * nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h: Moved ...
3069         * sysdeps/sparc/nptl/bits/semaphore.h: ... here.
3070         * nptl/sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: Moved ...
3071         * sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: ... here.
3073         * nptl/sysdeps/sparc/Makefile: Moved ...
3074         * sysdeps/sparc/nptl/Makefile: ... here.
3075         * nptl/sysdeps/sparc/tcb-offsets.sym: Moved ...
3076         * sysdeps/sparc/nptl/tcb-offsets.sym: ... here.
3077         * nptl/sysdeps/sparc/tls.h: Moved ...
3078         * sysdeps/sparc/nptl/tls.h: ... here.
3079         * nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S: Moved ...
3080         * sysdeps/sparc/sparc32/nptl/pthread_spin_lock.S: ... here.
3081         * nptl/sysdeps/sparc/sparc32/pthread_spin_trylock.S: Moved ...
3082         * sysdeps/sparc/sparc32/nptl/pthread_spin_trylock.S: ... here.
3083         * nptl/sysdeps/sparc/sparc32/pthreaddef.h: Moved ...
3084         * sysdeps/sparc/sparc32/nptl/pthreaddef.h: ... here.
3085         * nptl/sysdeps/sparc/sparc64/pthread_spin_init.c: Moved ...
3086         * sysdeps/sparc/sparc64/nptl/pthread_spin_init.c: ... here.
3087         * nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S: Moved ...
3088         * sysdeps/sparc/sparc64/nptl/pthread_spin_lock.S: ... here.
3089         * nptl/sysdeps/sparc/sparc64/pthread_spin_trylock.S: Moved ...
3090         * sysdeps/sparc/sparc64/nptl/pthread_spin_trylock.S: ... here.
3091         * nptl/sysdeps/sparc/sparc64/pthread_spin_unlock.S: Moved ...
3092         * sysdeps/sparc/sparc64/nptl/pthread_spin_unlock.S: ... here.
3093         * nptl/sysdeps/sparc/sparc64/pthreaddef.h: Moved ...
3094         * sysdeps/sparc/sparc64/nptl/pthreaddef.h: ... here.
3095         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: Moved ...
3096         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_init.c: ... here.
3097         Update #include.
3098         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: Moved ...
3099         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_lock.S: ... here.
3100         Update #include.
3101         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: Moved ...
3102         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_trylock.S: ... here.
3103         Update #include.
3104         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.S: Moved ...
3105         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: ... here.
3106         Update #include.
3108         * nptl/sysdeps/sparc/tls.h (TLS_DEFINE_INIT_TP): New macro.
3110         * sysdeps/unix/sysv/linux/sparc/arch-fork.h: New file.
3111         * nptl/sysdeps/unix/sysv/linux/sparc/fork.c: File removed.
3113         * sysdeps/pthread/posix-timer.h: Include <list.h>.
3114         (struct list_links): Type removed.
3115         (struct thread_node, struct timer_node): Replace struct list_links
3116         with struct list_head.
3117         (list_unlink_ip): Likewise.
3118         * sysdeps/pthread/timer_routines.c
3119         (timer_free_list, thread_free_list, thread_active_list): Likewise.
3120         (list_append, list_insbefore): Likewise.
3121         (list_init): Function removed.
3122         (thread_init, init_module): Use INIT_LIST_HEAD instead.
3123         * sysdeps/nptl/Makefile: Move tst-timer bits to ...
3124         * sysdeps/pthread/Makefile: ... here, new file.
3126         * nptl/sysdeps/unix/sysv/linux/Implies: Moved ...
3127         * sysdeps/nptl/Implies: ... here.
3128         * sysdeps/unix/sysv/linux/Implies: Add nptl.
3129         * nptl/sysdeps/pthread/list.h: Moved ...
3130         * include/list.h: ... here.
3131         * nptl/sysdeps/pthread/createthread.c: Moved ...
3132         * nptl/createthread.c: ... here.
3133         * nptl/sysdeps/unix/sysv/linux/createthread.c: Update #include.
3134         * nptl/sysdeps/pthread/pt-longjmp.c: Moved ...
3135         * nptl/pt-longjmp.c: ... here.
3136         * nptl/sysdeps/pthread/Makefile: Moved ...
3137         * sysdeps/nptl/Makefile: ... here.
3138         * nptl/sysdeps/pthread/Subdirs: Moved ...
3139         * sysdeps/nptl/Subdirs: ... here.
3140         * nptl/sysdeps/pthread/aio_misc.h: Moved ...
3141         * sysdeps/nptl/aio_misc.h: ... here.
3142         * nptl/sysdeps/pthread/bits/libc-lock.h: Moved ...
3143         * sysdeps/nptl/bits/libc-lock.h: ... here.
3144         * nptl/sysdeps/pthread/bits/libc-lockP.h: Moved ...
3145         * sysdeps/nptl/bits/libc-lockP.h: ... here.
3146         * nptl/sysdeps/pthread/bits/stdio-lock.h: Moved ...
3147         * sysdeps/nptl/bits/stdio-lock.h: ... here.
3148         * nptl/sysdeps/pthread/configure: Moved ...
3149         * sysdeps/nptl/configure: ... here.
3150         * nptl/sysdeps/pthread/configure.ac: Moved ...
3151         * sysdeps/nptl/configure.ac: ... here.
3152         * nptl/sysdeps/pthread/gai_misc.h: Moved ...
3153         * sysdeps/nptl/gai_misc.h: ... here.
3154         * nptl/sysdeps/pthread/librt-cancellation.c: Moved ...
3155         * sysdeps/nptl/librt-cancellation.c: ... here.
3156         * nptl/sysdeps/pthread/malloc-machine.h: Moved ...
3157         * sysdeps/nptl/malloc-machine.h: ... here.
3158         * nptl/sysdeps/pthread/pthread-functions.h: Moved ...
3159         * sysdeps/nptl/pthread-functions.h: ... here.
3160         * nptl/sysdeps/pthread/pthread.h: Moved ...
3161         * sysdeps/nptl/pthread.h: ... here.
3162         * nptl/sysdeps/pthread/setxid.h: Moved ...
3163         * sysdeps/nptl/setxid.h: ... here.
3164         * nptl/sysdeps/pthread/sigfillset.c: Moved ...
3165         * sysdeps/nptl/sigfillset.c: ... here.
3166         * nptl/sysdeps/pthread/tcb-offsets.h: Moved ...
3167         * sysdeps/nptl/tcb-offsets.h: ... here.
3168         * nptl/sysdeps/pthread/tst-mqueue8x.c: Moved ...
3169         * sysdeps/nptl/tst-mqueue8x.c: ... here.
3170         * nptl/sysdeps/pthread/unwind-forcedunwind.c: Moved ...
3171         * sysdeps/nptl/unwind-forcedunwind.c: ... here.
3172         * nptl/sysdeps/pthread/allocalim.h: Moved ...
3173         * sysdeps/pthread/allocalim.h: ... here.
3174         * nptl/sysdeps/pthread/bits/sigthread.h: Moved ...
3175         * sysdeps/pthread/bits/sigthread.h: ... here.
3176         * nptl/sysdeps/pthread/flockfile.c: Moved ...
3177         * sysdeps/pthread/flockfile.c: ... here.
3178         * nptl/sysdeps/pthread/ftrylockfile.c: Moved ...
3179         * sysdeps/pthread/ftrylockfile.c: ... here.
3180         * nptl/sysdeps/pthread/funlockfile.c: Moved ...
3181         * sysdeps/pthread/funlockfile.c: ... here.
3182         * nptl/sysdeps/pthread/posix-timer.h: Moved ...
3183         * sysdeps/pthread/posix-timer.h: ... here.
3184         * nptl/sysdeps/pthread/timer_create.c: Moved ...
3185         * sysdeps/pthread/timer_create.c: ... here.
3186         * nptl/sysdeps/pthread/timer_delete.c: Moved ...
3187         * sysdeps/pthread/timer_delete.c: ... here.
3188         * nptl/sysdeps/pthread/timer_getoverr.c: Moved ...
3189         * sysdeps/pthread/timer_getoverr.c: ... here.
3190         * nptl/sysdeps/pthread/timer_gettime.c: Moved ...
3191         * sysdeps/pthread/timer_gettime.c: ... here.
3192         * nptl/sysdeps/pthread/timer_routines.c: Moved ...
3193         * sysdeps/pthread/timer_routines.c: ... here.
3194         * nptl/sysdeps/pthread/timer_settime.c: Moved ...
3195         * sysdeps/pthread/timer_settime.c: ... here.
3196         * nptl/sysdeps/pthread/tst-timer.c: Moved ...
3197         * sysdeps/pthread/tst-timer.c: ... here.
3198         * nptl/sysdeps/pthread/pthread_sigmask.c: Moved ...
3199         * sysdeps/unix/sysv/linux/pthread_sigmask.c: ... here.
3201         * sysdeps/unix/sysv/linux/sigprocmask.c: Include <nptl/pthreadP.h>.
3202         * nptl/sysdeps/pthread/sigprocmask.c: File removed.
3204         * nptl/sysdeps/i386/i486/pthread_spin_trylock.S: Moved ...
3205         * sysdeps/i386/i486/nptl/pthread_spin_trylock.S: ... here.
3206         * nptl/sysdeps/i386/i586/pthread_spin_trylock.S: Moved ...
3207         * sysdeps/i386/i586/nptl/pthread_spin_trylock.S: ... here.
3208         Update #include target.
3209         * nptl/sysdeps/i386/i686/Makefile: Moved ...
3210         * sysdeps/i386/i686/nptl/Makefile: ... here.
3211         * nptl/sysdeps/i386/i686/pthread_spin_trylock.S: Moved ...
3212         * sysdeps/i386/i686/nptl/pthread_spin_trylock.S: ... here.
3213         Update #include target.
3214         * nptl/sysdeps/i386/i686/tls.h: Moved ...
3215         * sysdeps/i386/i686/nptl/tls.h: ... here.  Use #include_next.
3216         * nptl/sysdeps/i386/Makefile: Moved ...
3217         * sysdeps/i386/nptl/Makefile: ... here.
3218         * nptl/sysdeps/i386/pthread_spin_init.c: Moved ...
3219         * sysdeps/i386/nptl/pthread_spin_init.c: ... here.
3220         * sysdeps/x86_64/nptl/pthread_spin_init.c: Update #include target.
3221         * nptl/sysdeps/i386/pthread_spin_lock.S: Moved ...
3222         * sysdeps/i386/nptl/pthread_spin_lock.S: ... here.
3223         * nptl/sysdeps/i386/pthread_spin_unlock.S: Moved ...
3224         * sysdeps/i386/nptl/pthread_spin_unlock.S: ... here.
3225         * nptl/sysdeps/i386/pthreaddef.h: Moved ...
3226         * sysdeps/i386/nptl/pthreaddef.h: ... here.
3227         * nptl/sysdeps/i386/tcb-offsets.sym: Moved ...
3228         * sysdeps/i386/nptl/tcb-offsets.sym: ... here.
3229         * nptl/sysdeps/i386/tls.h: Moved ...
3230         * sysdeps/i386/nptl/tls.h: ... here.
3232         * sysdeps/sh/Makefile [$(subdir) = csu]
3233         (gen-as-const-headers): Add tcb-offsets.sym.
3234         * nptl/sysdeps/sh/Makefile: File removed.
3235         * nptl/sysdeps/sh/pthread_spin_init.c: Moved ...
3236         * sysdeps/sh/nptl/pthread_spin_init.c: ... here.
3237         * nptl/sysdeps/sh/pthread_spin_lock.c: Moved ...
3238         * sysdeps/sh/nptl/pthread_spin_lock.c: ... here.
3239         * nptl/sysdeps/sh/pthread_spin_trylock.S: Moved ...
3240         * sysdeps/sh/nptl/pthread_spin_trylock.S: ... here.
3241         * nptl/sysdeps/sh/pthread_spin_unlock.S: Moved ...
3242         * sysdeps/sh/nptl/pthread_spin_unlock.S: ... here.
3243         * nptl/sysdeps/sh/pthreaddef.h: Moved ...
3244         * sysdeps/sh/nptl/pthreaddef.h: ... here.
3245         * nptl/sysdeps/sh/tcb-offsets.sym: Moved ...
3246         * sysdeps/sh/nptl/tcb-offsets.sym: ... here.
3247         * nptl/sysdeps/sh/tls.h: Moved ...
3248         * sysdeps/sh/nptl/tls.h: ... here.
3249         * nptl/sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: Moved ...
3250         * sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: ... here.
3251         * nptl/sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h: Moved ...
3252         * sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h: ... here.
3253         * nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.S: Moved ...
3254         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: ... here.
3255         * nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.h: Moved ...
3256         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: ... here.
3257         * nptl/sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: Moved ...
3258         * sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: ... here.
3259         * nptl/sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: Moved ...
3260         * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: ... here.
3261         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: Moved ...
3262         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: ... here.
3263         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: Moved ...
3264         * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: ... here.
3265         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Moved ...
3266         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: ... here.
3267         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Moved ...
3268         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: ... here.
3269         * nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S: Moved ...
3270         * sysdeps/unix/sysv/linux/sh/pthread_once.S: ... here.
3271         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Moved ...
3272         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: ... here.
3273         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S:
3274         Moved ...
3275         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: ... here.
3276         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S:
3277         Moved ...
3278         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: ... here.
3279         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: Moved ...
3280         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: ... here.
3281         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Moved ...
3282         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: ... here.
3283         * nptl/sysdeps/unix/sysv/linux/sh/sem_post.S: Moved ...
3284         * sysdeps/unix/sysv/linux/sh/sem_post.S: ... here.
3285         * nptl/sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Moved ...
3286         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: ... here.
3287         * nptl/sysdeps/unix/sysv/linux/sh/sem_trywait.S: Moved ...
3288         * sysdeps/unix/sysv/linux/sh/sem_trywait.S: ... here.
3289         * nptl/sysdeps/unix/sysv/linux/sh/sem_wait.S: Moved ...
3290         * sysdeps/unix/sysv/linux/sh/sem_wait.S: ... here.
3291         * nptl/sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: Moved ...
3292         * sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: ... here.
3293         * nptl/sysdeps/unix/sysv/linux/sh/smp.h: Moved ...
3294         * sysdeps/unix/sysv/linux/sh/smp.h: ... here.
3295         * nptl/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Moved ...
3296         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: ... here.
3298 2014-06-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
3300         * posix/spawn_faction_addopen.c: Include string.h.
3302 2014-06-11  Roland McGrath  <roland@hack.frob.com>
3304         * nptl/sysdeps/x86_64/64/shlib-versions: Moved ...
3305         * sysdeps/x86_64/64/nptl/shlib-versions: ... here.
3306         * nptl/sysdeps/x86_64/Makefile: Moved ...
3307         * sysdeps/x86_64/nptl/Makefile: ... here.
3308         * nptl/sysdeps/x86_64/configure: Moved ...
3309         * sysdeps/x86_64/nptl/configure: ... here.
3310         * nptl/sysdeps/x86_64/configure.ac: Moved ...
3311         * sysdeps/x86_64/nptl/configure.ac: ... here.
3312         * nptl/sysdeps/x86_64/pthread_spin_init.c: Moved ...
3313         * sysdeps/x86_64/nptl/pthread_spin_init.c: ... here.
3314         * nptl/sysdeps/x86_64/pthread_spin_lock.S: Moved ...
3315         * sysdeps/x86_64/nptl/pthread_spin_lock.S: ... here.
3316         * nptl/sysdeps/x86_64/pthread_spin_trylock.S: Moved ...
3317         * sysdeps/x86_64/nptl/pthread_spin_trylock.S: ... here.
3318         * nptl/sysdeps/x86_64/pthread_spin_unlock.S: Moved ...
3319         * sysdeps/x86_64/nptl/pthread_spin_unlock.S: ... here.
3320         * nptl/sysdeps/x86_64/pthreaddef.h: Moved ...
3321         * sysdeps/x86_64/nptl/pthreaddef.h: ... here.
3322         * nptl/sysdeps/x86_64/tcb-offsets.sym: Moved ...
3323         * sysdeps/x86_64/nptl/tcb-offsets.sym: ... here.
3324         * nptl/sysdeps/x86_64/tls.h: Moved ...
3325         * sysdeps/x86_64/nptl/tls.h: ... here.
3326         * nptl/sysdeps/x86_64/x32/shlib-versions: Moved ...
3327         * sysdeps/x86_64/x32/nptl/shlib-versions: ... here.
3328         * nptl/sysdeps/x86_64/x32/tls.h: Moved ...
3329         * sysdeps/x86_64/x32/nptl/tls.h: ... here.
3331         * sysdeps/x86_64/x32/nptl/tls.h: Use #include_next.
3333 2014-06-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
3335         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
3337 2014-06-11  Joseph Myers  <joseph@codesourcery.com>
3339         * conform/data/sys/mman.h-data [POSIX] (size_t): Do not require
3340         type.
3341         [POSIX] (off_t): Likewise.
3342         * conform/data/sys/stat.h-data (S_IRGRP): Require constant.
3343         [POSIX] (S_ISBLK): Require macro.
3344         [POSIX] (S_ISCHR): Likewise.
3345         [POSIX] (S_ISDIR): Likewise.
3346         [POSIX] (S_ISFIFO): Likewise.
3347         [POSIX] (S_ISREG): Likewise.
3348         [POSIX || XPG3 || XPG4 || UNIX98] (S_TYPEISTMO): Do not list
3349         optional-macro.
3350         * conform/data/sys/types.h-data [POSIX] (blkcnt_t): Do not require
3351         type.
3352         [POSIX] (time_t): Likewise.
3353         [POSIX] (timer_t): Likewise.
3355 2014-06-11  Florian Weimer  <fweimer@redhat.com>
3357         [BZ #17048]
3358         * posix/spawn_int.h (struct __spawn_action): Make the path string
3359         non-const to support deallocation.
3360         * posix/spawn_faction_addopen.c
3361         (posix_spawn_file_actions_addopen): Make a copy of the pathname.
3362         * posix/spawn_faction_destroy.c
3363         (posix_spawn_file_actions_destroy): Adjust comment.  Deallocate
3364         path in all spawn_do_open actions.
3365         * posix/tst-spawn.c (do_test): Exercise the copy operation in
3366         posix_spawn_file_actions_addopen.
3368 2014-06-11  Chris Metcalf  <cmetcalf@tilera.com>
3370         * sysdeps/unix/sysv/linux/tile/pt-vfork.c: New file.
3371         * sysdeps/unix/sysv/linux/tile/pt-vfork.S: Remove file.
3372         * sysdeps/unix/sysv/linux/tile/vfork.S (__vfork): Make PT_VFORK
3373         conditional code always true.
3374         (__libc_vfork): New alias.
3376 2014-06-11  Roland McGrath  <roland@hack.frob.com>
3378         * sysdeps/tile/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
3379         * sysdeps/unix/sysv/linux/tile/createthread.c: File removed.
3381         * nptl/sysdeps/s390/tls.h (TLS_DEFINE_INIT_TP): New macro.
3383         * sysdeps/alpha/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
3384         * sysdeps/unix/sysv/linux/alpha/createthread.c: File removed.
3386         * nptl/sysdeps/powerpc/tls.h (TLS_DEFINE_INIT_TP): New macro.
3387         * sysdeps/unix/sysv/linux/powerpc/createthread.c: File removed.
3389         * sysdeps/aarch64/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
3390         * sysdeps/unix/sysv/linux/aarch64/nptl/createthread.c: File removed.
3392 2014-06-11  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
3394         * sysdeps/powerpc/powerpc64/power7/strcmp.S: New file: Optimization.
3395         * sysdeps/powerpc/powerpc64/multiarch/strcmp.c: New file:
3396         multiarch strcmp for PPC64.
3397         * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: New file.
3398         * sysdeps/powerpc/powerpc64/multiarch/strcmp-power7.S: New file.
3399         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcmp
3400         multiarch optimizations.
3401         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
3402         (__libc_ifunc_impl_list): Likewise.
3404 2014-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
3406         * benchtests/scripts/validate_benchout.py: New script.
3407         * benchtests/Makefile (bench-func): Call it.
3408         * benchtests/scripts/benchout.schema.json: New file.
3410 2014-06-10  Chris Metcalf  <cmetcalf@tilera.com>
3412         * sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h: Moved ...
3413         * sysdeps/tile/nptl/bits/pthreadtypes.h: ... here.
3414         * sysdeps/unix/sysv/linux/tile/nptl/bits/semaphore.h: Moved ...
3415         * sysdeps/tile/nptl/bits/semaphore.h: ... here.
3416         * sysdeps/unix/sysv/linux/tile/nptl/Makefile: Removed, merged into ...
3417         * sysdeps/unix/sysv/linux/tile/Makefile: ... here.
3418         * sysdeps/unix/sysv/linux/tile/nptl/clone.S: Moved ...
3419         * sysdeps/unix/sysv/linux/tile/clone.S: ... here.
3420         * sysdeps/unix/sysv/linux/tile/nptl/createthread.c: Moved ...
3421         * sysdeps/unix/sysv/linux/tile/createthread.c: ... here.
3422         * sysdeps/unix/sysv/linux/tile/nptl/lowlevellock.h: Moved ...
3423         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: ... here.
3424         * sysdeps/unix/sysv/linux/tile/nptl/pt-vfork.S: Moved ...
3425         * sysdeps/unix/sysv/linux/tile/pt-vfork.S: ... here.
3426         * sysdeps/unix/sysv/linux/tile/nptl/sysdep-cancel.h: Moved ...
3427         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: ... here.
3428         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/c++-types.data:
3429         Moved ...
3430         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/c++-types.data:
3431         ... here.
3432         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/ld.abilist:
3433         Moved ...
3434         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/ld.abilist: ... here.
3435         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libBrokenLocale.abilist:
3436         Moved ...
3437         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libBrokenLocale.abilist:
3438         ... here.
3439         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libanl.abilist:
3440         Moved ...
3441         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libanl.abilist:
3442         ... here.
3443         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libc.abilist:
3444         Moved ...
3445         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist: ... here.
3446         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libcrypt.abilist:
3447         Moved ...
3448         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libcrypt.abilist:
3449         ... here.
3450         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libdl.abilist:
3451         Moved ...
3452         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libdl.abilist:
3453         ... here.
3454         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libm.abilist:
3455         Moved ...
3456         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist: ... here.
3457         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libnsl.abilist:
3458         Moved ...
3459         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libnsl.abilist:
3460         ... here.
3461         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libpthread.abilist:
3462         Moved ...
3463         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libpthread.abilist:
3464         ... here.
3465         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libresolv.abilist:
3466         Moved ...
3467         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libresolv.abilist:
3468         ... here.
3469         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/librt.abilist:
3470         Moved ...
3471         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/librt.abilist: ... here.
3472         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libthread_db.abilist:
3473         Moved ...
3474         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libthread_db.abilist:
3475         ... here.
3476         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libutil.abilist:
3477         Moved ...
3478         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libutil.abilist:
3479         ... here.
3480         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/c++-types.data:
3481         Moved ...
3482         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/c++-types.data:
3483         ... here.
3484         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/ld.abilist:
3485         Moved ...
3486         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/ld.abilist: ... here.
3487         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libBrokenLocale.abilist:
3488         Moved ...
3489         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libBrokenLocale.abilist:
3490         ... here.
3491         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libanl.abilist:
3492         Moved ...
3493         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libanl.abilist:
3494         ... here.
3495         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libc.abilist:
3496         Moved ...
3497         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist: ... here.
3498         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libcrypt.abilist:
3499         Moved ...
3500         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libcrypt.abilist:
3501         ... here.
3502         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libdl.abilist:
3503         Moved ...
3504         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libdl.abilist: ... here.
3505         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libm.abilist:
3506         Moved ...
3507         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist: ... here.
3508         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libnsl.abilist:
3509         Moved ...
3510         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libnsl.abilist:
3511         ... here.
3512         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libpthread.abilist:
3513         Moved ...
3514         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libpthread.abilist:
3515         ... here.
3516         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libresolv.abilist:
3517         Moved ...
3518         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libresolv.abilist:
3519         ... here.
3520         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/librt.abilist:
3521         Moved ...
3522         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/librt.abilist: ... here.
3523         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libthread_db.abilist:
3524         Moved ...
3525         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libthread_db.abilist:
3526         ... here.
3527         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libutil.abilist:
3528         Moved ...
3529         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libutil.abilist:
3530         ... here.
3531         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/c++-types.data: Moved ...
3532         * sysdeps/unix/sysv/linux/tile/tilepro/c++-types.data: ... here.
3533         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/ld.abilist: Moved ...
3534         * sysdeps/unix/sysv/linux/tile/tilepro/ld.abilist: ... here.
3535         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libBrokenLocale.abilist:
3536         Moved ...
3537         * sysdeps/unix/sysv/linux/tile/tilepro/libBrokenLocale.abilist:
3538         ... here.
3539         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libanl.abilist: Moved ...
3540         * sysdeps/unix/sysv/linux/tile/tilepro/libanl.abilist: ... here.
3541         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libc.abilist: Moved ...
3542         * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: ... here.
3543         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libcrypt.abilist: Moved ...
3544         * sysdeps/unix/sysv/linux/tile/tilepro/libcrypt.abilist: ... here.
3545         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libdl.abilist: Moved ...
3546         * sysdeps/unix/sysv/linux/tile/tilepro/libdl.abilist: ... here.
3547         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libm.abilist: Moved ...
3548         * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: ... here.
3549         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libnsl.abilist: Moved ...
3550         * sysdeps/unix/sysv/linux/tile/tilepro/libnsl.abilist: ... here.
3551         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libpthread.abilist:
3552         Moved ...
3553         * sysdeps/unix/sysv/linux/tile/tilepro/libpthread.abilist: ... here.
3554         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libresolv.abilist:
3555         Moved ...
3556         * sysdeps/unix/sysv/linux/tile/tilepro/libresolv.abilist: ... here.
3557         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/librt.abilist: Moved ...
3558         * sysdeps/unix/sysv/linux/tile/tilepro/librt.abilist: ... here.
3559         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libthread_db.abilist:
3560         Moved ...
3561         * sysdeps/unix/sysv/linux/tile/tilepro/libthread_db.abilist: ... here.
3562         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libutil.abilist: Moved ...
3563         * sysdeps/unix/sysv/linux/tile/tilepro/libutil.abilist: ... here.
3564         * sysdeps/unix/sysv/linux/tile/nptl/vfork.S: Moved ...
3565         * sysdeps/unix/sysv/linux/tile/vfork.S: ... here.
3566         * sysdeps/unix/sysv/linux/tile/nptl/waitpid.S: Moved ...
3567         * sysdeps/unix/sysv/linux/tile/waitpid.S: ... here.
3569 2014-06-10  Wilco  <wdijkstr@arm.com>
3571         * math/test-fenv-return.c: New file.
3572         * math/Makefile: Add new test test-fenv-return.
3574 2014-06-10  Joseph Myers  <joseph@codesourcery.com>
3576         [BZ #17042]
3577         * sysdeps/i386/fpu/e_log2.S (__ieee754_log2): Take absolete value
3578         when x - 1 is zero.
3579         * sysdeps/i386/fpu/e_log2f.S (__ieee754_log2f): Likewise.
3580         * sysdeps/i386/fpu/e_log2l.S (__ieee754_log2l): Likewise.
3581         * sysdeps/ieee754/ldbl-128/e_log2l.c (__ieee754_log2l): Return
3582         0.0L for an argument of 1.0L.
3583         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l):
3584         Likewise.
3585         * sysdeps/x86_64/fpu/e_log2l.S (__ieee754_log2l): Take absolute
3586         value when x - 1 is zero.
3587         * math/libm-test.inc (log2_test): Use ALL_RM_TEST.
3588         * sysdeps/i386/fpu/libm-test-ulps: Update.
3589         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
3591 2014-06-09  Bernard Ogden  <bernie.ogden@linaro.org>
3593         [BZ #15119]
3594         * ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.c: Remove file.
3596 2014-06-09  Roland McGrath  <roland@hack.frob.com>
3598         * nptl/sysdeps/sh/tls.h (TLS_DEFINE_INIT_TP): New macro.
3599         * nptl/sysdeps/unix/sysv/linux/sh/createthread.c: File removed.
3601 2014-06-09  Roland McGrath  <roland@hack.frob.com>
3603         * sysdeps/m68k/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
3604         * sysdeps/unix/sysv/linux/m68k/nptl/createthread.c: File removed.
3606         * sysdeps/hppa/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
3607         * sysdeps/unix/sysv/linux/hppa/nptl/createthread.c: File removed.
3609         * sysdeps/mips/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
3610         * sysdeps/unix/sysv/linux/mips/nptl/createthread.c: File removed.
3612         * sysdeps/arm/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
3613         * sysdeps/unix/sysv/linux/arm/createthread.c: File removed.
3615         * nptl/sysdeps/pthread/createthread.c (TLS_DEFINE_INIT_TP): New macro,
3616         if not already defined.
3617         (do_clone): Use that in place of PREPARE_CREATE and TLS_VALUE.
3618         * nptl/sysdeps/x86_64/tls.h (TLS_DEFINE_INIT_TP): New macro.
3619         * nptl/sysdeps/i386/tls.h (tls_fill_user_desc): New function.
3620         (TLS_INIT_TP): Use it.
3621         (TLS_DEFINE_INIT_TP): New macro.
3622         * sysdeps/unix/sysv/linux/i386/createthread.c: File removed.
3624 2014-06-09  Joseph Myers  <joseph@codesourcery.com>
3626         * conform/data/termios.h-data [POSIX] (IUCLC): Do not expect
3627         constant.
3628         [POSIX] (IXANY): Likewise.
3629         [POSIX] (OLCUC): Likewise.
3630         [POSIX || POSIX2008] (CBAUD): Do not allow.
3631         [POSIX || POSIX2008] (DEFECHO): Likewise.
3632         [POSIX || POSIX2008] (ECHOCTL): Likewise.
3633         [POSIX || POSIX2008] (ECHOKE): Likewise.
3634         [POSIX || POSIX2008] (ECHOPRT): Likewise.
3635         [POSIX || POSIX2008] (EXTA): Likewise.
3636         [POSIX || POSIX2008] (EXTB): Likewise.
3637         [POSIX || POSIX2008] (FLUSHO): Likewise.
3638         [POSIX || POSIX2008] (LOBLK): Likewise.
3639         [POSIX || POSIX2008] (PENDIN): Likewise.
3640         [POSIX || POSIX2008] (SWTCH): Likewise.
3641         [POSIX || POSIX2008] (VDISCARD): Likewise.
3642         [POSIX || POSIX2008] (VDSUSP): Likewise.
3643         [POSIX || POSIX2008] (VLNEXT): Likewise.
3644         [POSIX || POSIX2008] (VREPRINT): Likewise.
3645         [POSIX || POSIX2008] (VSTATUS): Likewise.
3646         [POSIX || POSIX2008] (VWERASE): Likewise.
3647         (B*): Change to B[0123456789]*.
3648         * conform/data/time.h-data [POSIX || UNIX98]
3649         (CLOCK_PROCESS_CPUTIME_ID): Do not expect constant.
3650         [POSIX || UNIX98] (CLOCK_THREAD_CPUTIME_ID): Likewise.
3651         [POSIX || UNIX98] (CLOCK_MONOTONIC): Likewise.
3652         [POSIX] (tm_*): Do not allow.
3654 2014-06-07  Joseph Myers  <joseph@codesourcery.com>
3656         * Makefile (install): Don't set LANGUAGE.
3657         * Makefile.in (install): Likewise.
3658         * assert/Makefile (test-assert-ENV): Remove variable.
3659         (test-assert-perr-ENV): Likewise.
3660         * elf/Makefile (neededtest4-ENV): Likewise.
3661         * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
3662         [$(cross-compiling) = no]: Don't set LANGUAGE.
3663         * io/ftwtest-sh (LANG): Remove variable.
3664         * libio/Makefile (tst-widetext-ENV): Likewise.
3665         * manual/install.texi (Running make install): Don't refer to
3666         environment settings for make install.
3667         * INSTALL: Regenerated.
3668         * nptl/tst-tls6.sh: Don't set LANG.
3669         * posix/globtest.sh (LANG): Remove variable.
3670         * string/Makefile (tester-ENV): Likewise.
3671         (inl-tester-ENV): Likewise.
3672         (noinl-tester-ENV): Likewise.
3673         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
3674         [$(cross-compiling) = no]: Don't set LANGUAGE.
3675         * timezone/Makefile (build-testdata): Use $(built-program-cmd)
3676         without explicit environment settings.
3678 2014-06-06  Roland McGrath  <roland@hack.frob.com>
3680         * nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Moved ...
3681         * sysdeps/sh/nptl/bits/pthreadtypes.h: ... here.
3682         * nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h: Moved ...
3683         * sysdeps/sh/nptl/bits/semaphore.h: ... here.
3685 2014-06-06  Chris Metcalf  <cmetcalf@tilera.com>
3687         * crypt/crypt-private.h [DOS]: Add some includes taken from the
3688         other files in the crypt directory.
3689         * crypt/crypt.c: Remove duplicate includes.
3690         * crypt/crypt-entry.c: Likewise.
3691         * crypt/crypt_util.c: Likewise.
3693 2014-06-06  Joseph Myers  <joseph@codesourcery.com>
3695         * Makeconfig (run-program-env): New variable.
3696         (run-program-prefix-before-env): Likewise.
3697         (run-program-prefix-after-env): Likewise.
3698         (run-program-prefix): Define in terms of new variables.
3699         (built-program-cmd-before-env): New variable.
3700         (built-program-cmd-after-env): Likewise.
3701         (built-program-cmd): Define in terms of new variables.
3702         (test-program-prefix-before-env): New variable.
3703         (test-program-prefix-after-env): Likewise.
3704         (test-program-prefix): Define in terms of new variables.
3705         (test-program-cmd-before-env): New variable.
3706         (test-program-cmd-after-env): Likewise.
3707         (test-program-cmd): Define in terms of new variables.
3708         * Rules (make-test-out): Use $(run-program-env).
3709         * scripts/cross-test-ssh.sh (env_blacklist): Remove variable.
3710         (help): Do not mention environment variables.  Mention
3711         --timeoutfactor option.
3712         (timeoutfactor): New variable.
3713         (blacklist_exports): Remove function.
3714         (exports): Remove variable.
3715         (command): Do not include ${exports}.
3716         * manual/install.texi (Configuring and compiling): Do not mention
3717         test wrappers preserving environment variables.  Mention that last
3718         assignment to a variable must take precedence.
3719         * INSTALL: Regenerated.
3720         * benchtests/Makefile (run-bench): Use $(run-program-env).
3721         * catgets/Makefile ($(objpfx)test1.cat): Use
3722         $(built-program-cmd-before-env), $(run-program-env) and
3723         $(built-program-cmd-after-env).
3724         ($(objpfx)test2.cat): Do not specify environment variables
3725         explicitly.
3726         ($(objpfx)de/libc.cat): Use $(built-program-cmd-before-env),
3727         $(run-program-env) and $(built-program-cmd-after-env).
3728         ($(objpfx)test-gencat.out): Use $(test-program-cmd-before-env),
3729         $(run-program-env) and $(test-program-cmd-after-env).
3730         ($(objpfx)sample.SJIS.cat): Do not specify environment variables
3731         explicitly.
3732         * catgets/test-gencat.sh: Use test_program_cmd_before_env,
3733         run_program_env and test_program_cmd_after_env arguments.
3734         * elf/Makefile ($(objpfx)tst-pathopt.out): Use $(run-program-env).
3735         * elf/tst-pathopt.sh: Use run_program_env argument.
3736         * iconvdata/Makefile ($(objpfx)iconv-test.out): Use
3737         $(test-wrapper-env) and $(run-program-env).
3738         * iconvdata/run-iconv-test.sh: Use test_wrapper_env and
3739         run_program_env arguments.
3740         * iconvdata/tst-table.sh: Do not set GCONV_PATH explicitly.
3741         * intl/Makefile ($(objpfx)tst-gettext.out): Use
3742         $(test-program-prefix-before-env), $(run-program-env) and
3743         $(test-program-prefix-after-env).
3744         ($(objpfx)tst-gettext2.out): Likewise.
3745         * intl/tst-gettext.sh: Use test_program_prefix_before_env,
3746         run_program_env and test_program_prefix_after_env arguments.
3747         * intl/tst-gettext2.sh: Likewise.
3748         * intl/tst-gettext4.sh: Do not set environment variables
3749         explicitly.
3750         * intl/tst-gettext6.sh: Likewise.
3751         * intl/tst-translit.sh: Likewise.
3752         * malloc/Makefile ($(objpfx)tst-mtrace.out): Use
3753         $(test-program-prefix-before-env), $(run-program-env) and
3754         $(test-program-prefix-after-env).
3755         * malloc/tst-mtrace.sh: Use test_program_prefix_before_env,
3756         run_program_env and test_program_prefix_after_env arguments.
3757         * math/Makefile (run-regen-ulps): Use $(run-program-env).
3758         * nptl/Makefile ($(objpfx)tst-tls6.out): Use $(run-program-env).
3759         * nptl/tst-tls6.sh: Use run_program_env argument.  Set LANG=C
3760         explicitly with each use of ${test_wrapper_env}.
3761         * posix/Makefile ($(objpfx)wordexp-tst.out): Use
3762         $(test-program-prefix-before-env), $(run-program-env) and
3763         $(test-program-prefix-after-env).
3764         * posix/tst-getconf.sh: Do not set environment variables
3765         explicitly.
3766         * posix/wordexp-tst.sh: Use test_program_prefix_before_env,
3767         run_program_env and test_program_prefix_after_env arguments.
3768         * stdio-common/tst-printf.sh: Do not set environment variables
3769         explicitly.
3770         * stdlib/Makefile ($(objpfx)tst-fmtmsg.out): Use
3771         $(test-program-prefix-before-env), $(run-program-env) and
3772         $(test-program-prefix-after-env).
3773         * stdlib/tst-fmtmsg.sh: Use test_program_prefix_before_env,
3774         run_program_env and test_program_prefix_after_env arguments.
3775         Split $test calls into $test_pre and $test.
3776         * timezone/Makefile (build-testdata): Use
3777         $(built-program-cmd-before-env), $(run-program-env) and
3778         $(built-program-cmd-after-env).
3780 2014-06-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
3782         * sysdeps/powerpc/powerpc64/power7/strncat.S [STRLEN]: Define it as
3783         strlen for non SHARED builds.
3785 2014-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
3787         * nptl/allocatestack.c (check_list): Inlined function...
3788         (__reclaim_stacks): ... here.
3790 2014-06-05  Ondřej Bílka  <neleai@seznam.cz>
3792         [BZ #15698]
3793         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Fix
3794         memory overrun.
3796 2014-06-05  Joseph Myers  <joseph@codesourcery.com>
3798         * Rules (make-test-out): Include
3799         LOCPATH=$(common-objpfx)localedata in default environment.
3800         * debug/Makefile (tst-chk1-ENV): Remove variable.
3801         (tst-chk2-ENV): Likewise.
3802         (tst-chk3-ENV): Likewise.
3803         (tst-chk4-ENV): Likewise.
3804         (tst-chk5-ENV): Likewise.
3805         (tst-chk6-ENV): Likewise.
3806         (tst-lfschk1-ENV): Likewise.
3807         (tst-lfschk2-ENV): Likewise.
3808         (tst-lfschk3-ENV): Likewise.
3809         (tst-lfschk4-ENV): Likewise.
3810         (tst-lfschk5-ENV): Likewise.
3811         (tst-lfschk6-ENV): Likewise.
3812         * iconvdata/Makefile (bug-iconv6-ENV): Likewise.
3813         (tst-iconv7-ENV): Likewise.
3814         * intl/Makefile (LOCPATH-ENV): Likewise.
3815         (tst-codeset-ENV): Likewise.
3816         (tst-gettext3-ENV): Likewise.
3817         (tst-gettext5-ENV): Likewise.
3818         * libio/Makefile (tst-widetext-ENV): Don't set LOCPATH.
3819         (tst-fopenloc-ENV): Likewise.
3820         (tst-fgetws-ENV): Remove variable.
3821         (tst-ungetwc1-ENV): Likewise.
3822         (tst-ungetwc2-ENV): Likewise.
3823         (bug-ungetwc2-ENV): Likewise.
3824         (tst-swscanf-ENV): Likewise.
3825         (bug-ftell-ENV): Likewise.
3826         (tst-fgetwc-ENV): Likewise.
3827         (tst-fseek-ENV): Likewise.
3828         (tst-ftell-partial-wide-ENV): Likewise.
3829         (tst-ftell-active-handler-ENV): Likewise.
3830         (tst-ftell-append-ENV): Likewise.
3831         * posix/Makefile (tst-fnmatch-ENV): Likewise.
3832         (tst-regexloc-ENV): Likewise.
3833         (bug-regex1-ENV): Likewise.
3834         (tst-regex-ENV): Likewise.
3835         (tst-regex2-ENV): Likewise.
3836         (bug-regex5-ENV): Likewise.
3837         (bug-regex6-ENV): Likewise.
3838         (bug-regex17-ENV): Likewise.
3839         (bug-regex18-ENV): Likewise.
3840         (bug-regex19-ENV): Likewise.
3841         (bug-regex20-ENV): Likewise.
3842         (bug-regex22-ENV): Likewise.
3843         (bug-regex23-ENV): Likewise.
3844         (bug-regex25-ENV): Likewise.
3845         (bug-regex26-ENV): Likewise.
3846         (bug-regex30-ENV): Likewise.
3847         (bug-regex32-ENV): Likewise.
3848         (bug-regex33-ENV): Likewise.
3849         (bug-regex34-ENV): Likewise.
3850         (bug-regex35-ENV): Likewise.
3851         (tst-rxspencer-ENV): Likewise.
3852         (tst-rxspencer-no-utf8-ENV): Likewise.
3853         * stdio-common/Makefile (tst-sprintf-ENV): Likewise.
3854         (tst-sscanf-ENV): Likewise.
3855         (tst-swprintf-ENV): Likewise.
3856         (tst-swscanf-ENV): Likewise.
3857         (test-vfprintf-ENV): Likewise.
3858         (scanf13-ENV): Likewise.
3859         (bug14-ENV): Likewise.
3860         (tst-grouping-ENV): Likewise.
3861         * stdlib/Makefile (tst-strtod-ENV): Likewise.
3862         (tst-strtod3-ENV): Likewise.
3863         (tst-strtod4-ENV): Likewise.
3864         (tst-strtod5-ENV): Likewise.
3865         (testmb2-ENV): Likewise./
3866         * string/Makefile (tst-strxfrm-ENV): Likewise.
3867         (tst-strxfrm2-ENV): Likewise.
3868         (bug-strcoll1-ENV): Likewise.
3869         (test-strcasecmp-ENV): Likewise.
3870         (test-strncasecmp-ENV): Likewise.
3871         * time/Makefile (tst-strptime-ENV): Likewise.
3872         (tst-ftime_l-ENV): Likewise.
3873         * wcsmbs/Makefile (tst-btowc-ENV): Likewise.
3874         (tst-mbrtowc-ENV): Likewise.
3875         (tst-wcrtomb-ENV): Likewise.
3876         (tst-mbrtowc2-ENV): Likewise.
3877         (tst-c16c32-1-ENV): Likewise.
3878         (tst-mbsnrtowcs-ENV): Likewise.
3880 2014-06-05  Ondřej Bílka  <neleai@seznam.cz>
3882         * manual/resource.texi (How to get information about the memory
3883         subsystem?): Fix typo.
3884         Reported by Peon de la Parra Ivan <peon@keba.com>
3886 2014-06-03  Guo Yixuan  <culu.gyx@gmail.com>
3888         [BZ #16882]
3889         * nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S
3890         (pthread_spin_lock): Branch out of spin loop to proper location.
3891         * nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S
3892         (pthread_spin_lock): Likewise.
3894         * nptl/tst-spin4.c: New test.
3895         * nptl/Makefile (tests): Add tst-spin4.
3897 2014-06-03  Andreas Schwab  <schwab@suse.de>
3899         [BZ #15946]
3900         * resolv/res_send.c (send_dg): Reload file descriptor after
3901         calling reopen.
3903 2014-06-03  Stefan Liebler  <stli@linux.vnet.ibm.com>
3905         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
3907 2014-06-03  Richard Henderson  <rth@redhat.com>
3909         * sysdeps/unix/sysv/linux/aarch64/pt-vfork.c: New file.
3910         * sysdeps/unix/sysv/linux/aarch64/nptl/pt-vfork.S: Remove file.
3911         * sysdeps/unix/sysv/linux/aarch64/vfork.S (__vfork): Incorporate
3912         SAVE_PID and RESTORE_PID blocks from pt-vfork.S.  Map 0 to INT_MIN
3913         in the SAVE_PID block.
3914         (__libc_vfork): New alias.
3915         * sysdeps/unix/sysv/linux/aarch64/nptl/vfork.S: Remove file.
3917         * sysdeps/unix/sysv/linux/aarch64/clone.S (__clone): Save args for
3918         child in registers, not on the stack.  Remove RESET_PID conditionals.
3919         * sysdeps/unix/sysv/linux/aarch64/nptl/clone.S: Remove file.
3921 2014-06-03  Marcus Shawcroft  <marcus.shawcroft@arm.com>
3923         * sysdeps/aarch64/libm-test-ulps: Regenerate.
3925 2014-06-03  Wilco  <wdijkstr@arm.com>
3927         * sysdeps/aarch64/fpu/math_private.h (libc_fesetround_aarch64)
3928         (libc_feholdexcept_setround_aarch64) (libc_feholdsetround_aarch64)
3929         (libc_feresetround_aarch64) (libc_feholdsetround_aarch64_ctx):
3930         Use _FPU_FPCR_RM_MASK for rounding mask rather than FE_TOWARDZERO.
3931         * sysdeps/aarch64/fpu/get-rounding-mode.h (get_rounding_mode):
3932         Likewise.
3934 2014-06-03  Wilco  <wdijkstr@arm.com>
3936         * sysdeps/aarch64/fpu/math_private.h
3937         (libc_feholdexcept_aarch64) (libc_feholdexcept_setround_aarch64)
3938         (libc_fetestexcept_aarch64) (libc_fesetenv_aarch64)
3939         (libc_feupdateenv_test_aarch64) (libc_feholdsetround_aarch64)
3940         (libc_feresetround_aarch64) (libc_feholdsetround_aarch64_ctx):
3941         Fix declarations.
3943 2014-06-03  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
3945         * crypt/crypt-private.h: Include ufc-crypt.h.
3946         (__b64_from_24bit): Declare extern.
3947         * crypt/crypt_util.c(__b64_from_24bit): New function.
3948         (b64t): New static const variable.
3949         * crypt/md5-crypt.c (b64_from_24bit): Remove function.
3950         (b64t): Remove variable.
3951         (__md5_crypt_r): Replace b64_from_24bit with __b64_from_24bit.
3952         * crypt/sha256-crypt.c: Include crypt-private.h.
3953         (b64t): Remove variable.
3954         (__sha256_crypt_r): Remove b64_from_24bit and replace
3955         with __b64_from_24bit.
3956         * crypt/sha512-crypt.c: Likewise.
3958 2014-06-02  Roland McGrath  <roland@hack.frob.com>
3960         * nptl/sysdeps/unix/sysv/linux/sh/vfork.S: Moved ...
3961         * sysdeps/unix/sysv/linux/sh/vfork.S: ... here.
3962         Label the code __libc_vfork rather than __vfork.
3963         [!NOT_IN_libc] (vfork): Define as weak alias.
3964         [!NOT_IN_libc] (__vfork): Define as strong alias, and libc_hidden_def.
3965         * sysdeps/unix/sysv/linux/sh/pt-vfork.S: New file.
3966         * nptl/sysdeps/unix/sysv/linux/sh/pt-vfork.S: File removed.
3968 2014-06-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
3970         * malloc/malloc.c (malloc_info): Fix format specifier for
3971         n_mmaps.
3973 2014-06-02  Wilco  <wdijkstr@arm.com>
3975         * sysdeps/aarch64/fpu/fpu_control.h (_FPU_SETCW): Remove ISB after
3976         FPCR write.
3978 2014-06-02  Wilco  <wdijkstr@arm.com>
3980         [BZ #17009]
3981         * sysdeps/aarch64/fpu/feupdateenv (feupdateenv):
3982         Rewrite to reduce FPCR/FPSR accesses.
3984 2014-06-01  David S. Miller  <davem@davemloft.net>
3986         * sysdeps/sparc/fpu/libm-test-ulps: Update.
3988 2014-05-31  David S. Miller  <davem@davemloft.net>
3990         * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_y1f): Force computations
3991         to occur in round to nearest mode when |x| >= 2.0
3993 2014-05-30  Richard Henderson  <rth@twiddle.net>
3995         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (PSEUDO_RET): Remove.
3996         (PSEUDO_RET_NOERRNO): Remove.
3997         (ret): Don't redefine.
3998         (ret_NOERRNO): Define in terms of ret.
3999         (ret_ERRVAL): Likewise.
4001         * sysdeps/unix/sysv/linux/aarch64/ioctl.S (__ioctl): Remove the
4002         use of PSEUDO_RET; perform the error check directly.
4004 2014-05-30 Marko Myllynen  <myllynen@redhat.com>
4006         * sysdeps/x86_64/link-defines.sym (BND_SIZE): Replace __int128
4007         with __int128_t.
4009 2014-05-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
4011         * malloc/malloc (malloc_info): Fix formatting.
4013 2014-05-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
4014             Roland McGrath  <roland@hack.frob.com>
4016         * malloc/malloc (malloc_info): Also print mmapped statistics.
4018 2014-05-30  Roland McGrath  <roland@hack.frob.com>
4020         * sysdeps/unix/sysv/linux/m68k/arch-fork.h: New file.
4021         * sysdeps/unix/sysv/linux/m68k/nptl/fork.c: File removed.
4023 2014-05-30  Ondřej Bílka  <neleai@seznam.cz>
4025         * malloc/malloc.c (malloc_info): Inline mi_arena.
4027 2014-05-29  Richard Henderson  <rth@twiddle.net>
4029         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (INTERNAL_VSYSCALL_NCS):
4030         Remove comma before expanding ASM_ARGS_##nr.
4031         (INTERNAL_SYSCALL_RAW): Make _sys_result signed, instead of casting.
4032         Make _x0 a strict output; make _x8 a strict input; adjust expansion
4033         of ASM_ARGS_##nr.
4034         (CLOBBER_ARGS_0, CLOBBER_ARGS_1, CLOBBER_ARGS_2): Remove.
4035         (CLOBBER_ARGS_3, CLOBBER_ARGS_4, CLOBBER_ARGS_5): Remove.
4036         (CLOBBER_ARGS_6, CLOBBER_ARGS_7): Remove.
4037         (ASM_ARGS_1): Add leading comma.
4039         * sysdeps/unix/sysv/linux/aarch64/sysdep.h [NOT_IN_libc]
4040         (SYSCALL_ERROR_HANDLER): Use tpidr_el0 instead of a call
4041         to __errno_location.
4042         * sysdeps/unix/sysv/linux/aarch64/nptl/localplt.data (libpthread.so):
4043         Remove the expected plt for __errno_location.
4045         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
4046         [NOT_IN_libc] (SINGLE_THREAD_P): Use tpidr_el0 instead of a
4047         call to __read_tp.
4049         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
4050         Always allocate 64 bytes of stack frame.  Use ldp/stp to create
4051         it and break it down.
4052         (DOCARGS_0, DOCARGS_1): Do nothing.
4053         (DOCARGS_2): Update to store into the new stack frame.
4054         (DOCARGS_3, DOCARGS_4, DOCARGS_5, DOCARGS_6): Likewise.
4055         (UNDOCARGS_1): Update to restore from the new stack frame.
4056         (UNDOCARGS_2, UNDOCARGS_3, UNDOCARGS_4): Likewise.
4057         (UNDOCARGS_5, UNDOCARGS_6): Likewise.
4059         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
4060         (SINGLE_THREAD_P): New parameter for result regno.
4061         (PSEUDO): Update to match; use cbz instead of beq.
4063         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
4064         Use ENTRY to define the _nocancel entry point.  Share the syscall
4065         and syscall error check paths with the cancel path.
4066         (PSEUDO_END): New.
4068         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h: Adjust
4069         whitespace; tabs before and after asm mnemonics.
4071 2014-05-29  Eric Wong  <normalperson@yhbt.net>
4073         [BZ #15132]
4074         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
4075         Call fstat64 or stat64 internally, depending on arguments passed.
4076         Replace stat buffer argument with file descriptor argument.
4077         (INTERNAL_STATVFS): Update arguments to match __statvfs_getflags.
4078         * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
4079         Pass fd to __internal_statvfs instead of calling fstat64.
4080         * sysdeps/unix/sysv/linux/fstatvfs64.c (__fstatvfs64):
4081         Pass fd to __internal_statvfs64 instead of calling fstat64.
4082         * sysdeps/unix/sysv/linux/statvfs.c (statvfs):
4083         Pass -1 to __internal_statvfs instead of calling stat64.
4084         * sysdeps/unix/sysv/linux/statvfs64.c (__statvfs64):
4085         Pass -1 to __internal_statvfs64 instead of calling stat64.
4087 2014-05-28  Roland McGrath  <roland@hack.frob.com>
4089         * sysdeps/unix/sysv/linux/sh/clone.S: Deconditionalize the code
4090         that was previously under [RESET_PID].
4091         * nptl/sysdeps/unix/sysv/linux/sh/clone.S: File removed.
4093         * sysdeps/unix/sysv/linux/tile/arch-fork.h: New file.
4094         * sysdeps/unix/sysv/linux/tile/nptl/fork.c: File removed.
4096 2014-05-27  Roland McGrath  <roland@hack.frob.com>
4098         * sysdeps/unix/sysv/linux/ia64/arch-fork.h: New file.
4100         * sysdeps/unix/sysv/linux/sh/arch-fork.h: New file.
4101         * nptl/sysdeps/unix/sysv/linux/sh/fork.c: File removed.
4103 2014-05-27  Ondřej Bílka  <neleai@seznam.cz>
4105         * elf/dl-deps.c (_dl_map_object_deps): Remove duplicate code.
4107 2014-05-27  Andreas Schwab  <schwab@suse.de>
4109         * csu/libc-tls.c (__libc_setup_tls): Remove second argument from
4110         TLS_INIT_TP macro.
4111         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
4112         * elf/rtld.c (init_tls, dl_main): Likewise.
4113         * nptl/sysdeps/i386/tls.h (TLS_INIT_TP): Likewise.
4114         * nptl/sysdeps/powerpc/tls.h (TLS_INIT_TP): Likewise.
4115         * nptl/sysdeps/s390/tls.h (TLS_INIT_TP): Likewise.
4116         * nptl/sysdeps/sh/tls.h (TLS_INIT_TP): Likewise.
4117         * nptl/sysdeps/sparc/tls.h (TLS_INIT_TP): Likewise.
4118         * nptl/sysdeps/x86_64/tls.h (TLS_INIT_TP): Likewise.
4119         * sysdeps/aarch64/nptl/tls.h (TLS_INIT_TP): Likewise.
4120         * sysdeps/alpha/nptl/tls.h (TLS_INIT_TP): Likewise.
4121         * sysdeps/arm/nptl/tls.h (TLS_INIT_TP): Likewise.
4122         * sysdeps/hppa/nptl/tls.h (TLS_INIT_TP): Likewise.
4123         * sysdeps/ia64/nptl/tls.h (TLS_INIT_TP): Likewise.
4124         * sysdeps/m68k/nptl/tls.h (TLS_INIT_TP): Likewise.
4125         * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Likewise.
4126         * sysdeps/microblaze/nptl/tls.h (TLS_INIT_TP): Likewise.
4127         * sysdeps/mips/nptl/tls.h (TLS_INIT_TP): Likewise.
4128         * sysdeps/tile/nptl/tls.h (TLS_INIT_TP): Likewise.
4129         * sysdeps/generic/tls.h: Update description.
4131 2014-05-27  Will Newton  <will.newton@linaro.org>
4133         [BZ #16990]
4134         * sysdeps/arm/dl-tlsdesc.S (_dl_tlsdesc_resolve_hold): Save
4135         and restore r2 rather than just restoring.
4137 2014-05-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
4139         [BZ #16724]
4140         * libio/tst-ftell-append.c: New test case.
4141         * libio/Makefile (tests): Add test case.
4142         * libio/fileops.c (do_ftell): Don't trust _IO_read_end when in
4143         append mode.
4144         * libio/wfileops.c (do_ftell_wide): Likewise.
4146 2014-05-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4148         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
4150         * nptl/sysdeps/unix/sysv/linux/powerpc/Versions: Remove, merge into
4151         ...
4152         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions: ... here.
4153         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Likewise.
4154         * nptl/sysdeps/unix/sysv/linux/powerpc/Makefile: Moved rules to ...
4155         * sysdeps/unix/sysv/linux/powerpc/Makefile: ... here.
4156         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h: Moved ...
4157         * sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h: ... here.
4158         * nptl/sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Moved ...
4159         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: ...here.
4160         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h:
4161         Moved ...
4162         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: ... here.
4163         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h:
4164         Moved ...
4165         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: ... here.
4166         * nptl/sysdeps/unix/sysv/linux/powerpc/createthread.c: Moved ...
4167         * sysdeps/unix/sysv/linux/powerpc/createthread.c: ... here.
4168         * nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Moved ...
4169         * sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: ... here.
4170         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstack.c: Moved
4171         ...
4172         * sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstack.c: ... here.
4173         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c:
4174         Moved ...
4175         * sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c: ...
4176         here.
4177         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c: Moved
4178         ...
4179         * sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c: ... here.
4180         * nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c: Moved ...
4181         * sysdeps/unix/sysv/linux/powerpc/sem_post.c: ... here.
4183         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Moved ...
4184         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: ... here.
4185         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: Moved ...
4186         * sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: ... here.
4188         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Remove,
4189         merge into ...
4190         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: ... here.
4191         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c: Moved
4192         ...
4193         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c: ... here.
4194         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c: Moved
4195         ...
4196         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c: ... here.
4197         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c:
4198         Moved ...
4199         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c: ...
4200         here.
4201         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c:
4202         Moved ...
4203         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c: ... here.
4204         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c:
4205         Moved ...
4206         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c: ... here.
4208         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Remove
4209         conditional [RESET_PID].
4210         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Likewise.
4211         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: File
4212         removed.
4213         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: File
4214         removed.
4216         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Include
4217         <tcb-offsets.h>.
4218         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
4219         (__libc_vfork): New strong alias.
4220         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S: File
4221         removed.
4222         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: File
4223         Removed.
4225         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Include
4226         <tcb-offsets.h>.
4227         (__vfork): Incorporate save/retore of PID from nptl/vfork.S here.
4228         (__libc_vfork): New strong alias.
4229         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S: File
4230         removed.
4231         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: File
4232         removed.
4234 2014-05-26  Carlos O'Donell  <carlos@redhat.com>
4236         * malloc/malloc.c (mi_arena): New function.
4237         (malloc_info): Remove nested function mi_arena. Call non-nosted
4238         function mi_arena.
4240 2014-05-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4242         * sysdeps/powerpc/powerpc32/power4/memset.S (memset): Replace insrdi
4243         by insrwi.
4244         * sysdeps/powerpc/powerpc32/power6/memset.S (memset): Likewise.
4245         * sysdeps/powerpc/powerpc32/power7/memset.S (memset): Likewise.
4246         * sysdeps/powerpc/powerpc32/power7/memchr.S (memchr): Likewise.
4247         * sysdeps/powerpc/powerpc32/power7/memrchr.S (memrchr): Likewise.
4248         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S (rawmemchr): Likewise.
4249         * sysdeps/powerpc/powerpc32/power7/strchr.S (strchr): Likewise.
4250         * sysdeps/powerpc/powerpc32/power7/strchrnul.S (strchrnul): Likewise.
4252 2014-05-26  Andreas Schwab  <schwab@suse.de>
4254         [BZ #16984]
4255         * locale/programs/repertoire.c (repertoire_read): Add slash
4256         between I18NPATH element and file name.
4257         * locale/programs/locfile.c (locfile_read): Likewise.
4259 2014-05-26  Stefan Liebler  <stli@linux.vnet.ibm.com>
4261         * nptl/pthread_mutexattr_settype.c
4262         (__pthread_mutexattr_settype):
4263         Disable lock elision for PTHREAD_MUTEX_NORMAL.
4265 2014-05-26  Stefan Liebler  <stli@linux.vnet.ibm.com>
4267         * nptl/tst-mutex5 (do_test):
4268         Use #ifndef ENABLE_LOCK_ELISION instead of #ifdef.
4270 2014-05-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
4272         * benchtests/README: Document 'init' directive.
4273         * benchtests/bench-skeleton.c (main) [BENCH_INIT]: Call
4274         BENCH_INIT.
4275         * scripts/bench.py (gen_source): Define BENCH_INIT macro.
4276         (parse_file): Recognize 'init' directive.
4278 2014-05-26  Kyle McMartin  <kyle@redhat.com>
4280         [BZ #16796]
4281         * sysdeps/aarch64/nptl/tls.h: increase TCB alignment to the
4282         alignment of struct pthread.
4284 2014-05-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
4286         [BZ #16878]
4287         * nscd/netgroupcache.c (addgetnetgrentX): Look for
4288         NSS_STATUS_TRYAGAIN to indicate insufficient buffer space.
4289         * nscd/nss_files/files-netgrp.c (_nss_netgroup_parseline): Use
4290         NSS_STATUS_TRYAGAIN to indicate insufficient buffer space.
4292 2014-05-25  Richard Henderson  <rth@twiddle.net>
4294         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
4295         (SINGLE_THREAD_P_PIC): Remove.
4296         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h
4297         (SINGLE_THREAD_P_PIC): Remove.
4299         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (PSEUDO_RET): Move
4300         branch to syscall error ...
4301         (PSEUDO): ... here.
4302         [NOT_IN_libc] (SYSCALL_ERROR_HANDLER): Rename the label
4303         from __local_syscall_error to .Lsyscall_error.
4304         [!NOT_IN_libc] (SYSCALL_ERROR_HANDLER): Branch to __syscall_error.
4305         (SYSCALL_ERROR): Update label name.
4307         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
4308         Do not use DOARGS/UNDOARGS.
4309         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (DO_CALL): Likewise.
4310         (DOARGS_0, DOARGS_1, DOARGS_2, DOARGS_3): Remove.
4311         (DOARGS_4, DOARGS_5, DOARGS_6, DOARGS_7): Remove.
4312         (UNDOARGS_0, UNDOARGS_1, UNDOARGS_2, UNDOARGS_3): Remove.
4313         (UNDOARGS_4, UNDOARGS_5, UNDOARGS_6, UNDOARGS_7): Remove.
4315         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (DO_CALL): Fix
4316         block comment.
4318         * sysdeps/unix/sysv/linux/alpha/vfork.S (vfork, __vfork): Only
4319         define if !NOT_IN_libc.
4320         * sysdeps/unix/sysv/linux/alpha/pt-vfork.S (vfork, __vfork): Only
4321         define with non-default symbol versions.
4323 2014-05-23  Richard Henderson  <rth@twiddle.net>
4325         * nptl/pt-vfork.c (vfork_resolve): Rename from vfork_ifunc.
4326         (vfork, __vfork): Define via compat_symbol.
4328         * nptl/pt-vfork.c: Error if !HAVE_IFUNC.
4329         [!HAVE_IFUNC] (vfork_compat): Remove.
4330         [!HAVE_IFUNC] (DEFINE_VFORK): Remove.
4332 2014-05-23  Joseph Myers  <joseph@codesourcery.com>
4334         [BZ #16978]
4335         * posix/tar.h [!__USE_XOPEN2K] (TSVTX): Define macro.
4336         * conform/Makefile (test-xfail-POSIX/tar.h/conform): Remove
4337         variable.
4339 2014-05-23  Richard Henderson  <rth@twiddle.net>
4341         * sysdeps/unix/sysv/linux/alpha/nptl/Makefile: Merge into...
4342         * sysdeps/unix/sysv/linux/alpha/Makefile: ... here.
4343         * sysdeps/unix/sysv/linux/alpha/nptl/Versions: Merge into...
4344         * sysdeps/unix/sysv/linux/alpha/Versions: ... here.
4346         * sysdeps/unix/sysv/linux/alpha/nptl/aio_cancel.c: Moved ...
4347         * sysdeps/unix/sysv/linux/alpha/aio_cancel.c: ... here.
4348         * sysdeps/unix/sysv/linux/alpha/nptl/bits/local_lim.h: Moved ...
4349         * sysdeps/unix/sysv/linux/alpha/bits/local_lim.h: ... here.
4350         * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h: Moved ...
4351         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h: ... here.
4352         * sysdeps/unix/sysv/linux/alpha/nptl/bits/semaphore.h: Moved ...
4353         * sysdeps/unix/sysv/linux/alpha/bits/semaphore.h: ... here.
4354         * sysdeps/unix/sysv/linux/alpha/nptl/c++-types.data: Moved ...
4355         * sysdeps/unix/sysv/linux/alpha/c++-types.data: ... here.
4356         * sysdeps/unix/sysv/linux/alpha/nptl/createthread.c: Moved ...
4357         * sysdeps/unix/sysv/linux/alpha/createthread.c: ... here.
4358         * sysdeps/unix/sysv/linux/alpha/nptl/ld.abilist: Moved ...
4359         * sysdeps/unix/sysv/linux/alpha/ld.abilist: ... here.
4360         * sysdeps/unix/sysv/linux/alpha/nptl/libBrokenLocale.abilist: Moved ...
4361         * sysdeps/unix/sysv/linux/alpha/libBrokenLocale.abilist: ... here.
4362         * sysdeps/unix/sysv/linux/alpha/nptl/libanl.abilist: Moved ...
4363         * sysdeps/unix/sysv/linux/alpha/libanl.abilist: ... here.
4364         * sysdeps/unix/sysv/linux/alpha/nptl/libc.abilist: Moved ...
4365         * sysdeps/unix/sysv/linux/alpha/libc.abilist: ... here.
4366         * sysdeps/unix/sysv/linux/alpha/nptl/libcrypt.abilist: Moved ...
4367         * sysdeps/unix/sysv/linux/alpha/libcrypt.abilist: ... here.
4368         * sysdeps/unix/sysv/linux/alpha/nptl/libdl.abilist: Moved ...
4369         * sysdeps/unix/sysv/linux/alpha/libdl.abilist: ... here.
4370         * sysdeps/unix/sysv/linux/alpha/nptl/libm.abilist: Moved ...
4371         * sysdeps/unix/sysv/linux/alpha/libm.abilist: ... here.
4372         * sysdeps/unix/sysv/linux/alpha/nptl/libnsl.abilist: Moved ...
4373         * sysdeps/unix/sysv/linux/alpha/libnsl.abilist: ... here.
4374         * sysdeps/unix/sysv/linux/alpha/nptl/libpthread.abilist: Moved ...
4375         * sysdeps/unix/sysv/linux/alpha/libpthread.abilist: ... here.
4376         * sysdeps/unix/sysv/linux/alpha/nptl/libresolv.abilist: Moved ...
4377         * sysdeps/unix/sysv/linux/alpha/libresolv.abilist: ... here.
4378         * sysdeps/unix/sysv/linux/alpha/nptl/librt.abilist: Moved ...
4379         * sysdeps/unix/sysv/linux/alpha/librt.abilist: ... here.
4380         * sysdeps/unix/sysv/linux/alpha/nptl/libthread_db.abilist: Moved ...
4381         * sysdeps/unix/sysv/linux/alpha/libthread_db.abilist: ... here.
4382         * sysdeps/unix/sysv/linux/alpha/nptl/libutil.abilist: Moved ...
4383         * sysdeps/unix/sysv/linux/alpha/libutil.abilist: ... here.
4384         * sysdeps/unix/sysv/linux/alpha/nptl/localplt.data: Moved ...
4385         * sysdeps/unix/sysv/linux/alpha/localplt.data: ... here.
4386         * sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h: Moved ...
4387         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: ... here.
4388         * sysdeps/unix/sysv/linux/alpha/nptl/sem_post.c: Moved ...
4389         * sysdeps/unix/sysv/linux/alpha/sem_post.c: ... here.
4390         * sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h: Moved ...
4391         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: ... here.
4392         * sysdeps/unix/sysv/linux/alpha/nptl/timer_create.c: Moved ...
4393         * sysdeps/unix/sysv/linux/alpha/timer_create.c: ... here.
4394         * sysdeps/unix/sysv/linux/alpha/nptl/timer_delete.c: Moved ...
4395         * sysdeps/unix/sysv/linux/alpha/timer_delete.c: ... here.
4396         * sysdeps/unix/sysv/linux/alpha/nptl/timer_getoverr.c: Moved ...
4397         * sysdeps/unix/sysv/linux/alpha/timer_getoverr.c: ... here.
4398         * sysdeps/unix/sysv/linux/alpha/nptl/timer_gettime.c: Moved ...
4399         * sysdeps/unix/sysv/linux/alpha/timer_gettime.c: ... here.
4400         * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Moved ...
4401         * sysdeps/unix/sysv/linux/alpha/timer_settime.c: ... here.
4403         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove vfork.
4404         * sysdeps/unix/sysv/linux/alpha/nptl/vfork.S: Move file ...
4405         * sysdeps/unix/sysv/linux/alpha/vfork.S: ... here.  Restore PID
4406         before exiting on error.
4407         (__libc_vfork): New strong alias.
4408         * sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S: Remove file.
4409         * sysdeps/unix/sysv/linux/alpha/pt-vfork.S: New file.
4411         * sysdeps/unix/sysv/linux/alpha/clone.S: Deconditionalize the code
4412         that was previously under [RESET_PID].
4413         * sysdeps/unix/sysv/linux/alpha/nptl/clone.S: File removed.
4415         * sysdeps/unix/sysv/linux/alpha/nptl/fork.c: Remove file.
4417 2014-05-23  Joseph Myers  <joseph@codesourcery.com>
4419         [BZ #16977]
4420         * sysdeps/i386/fpu/e_log10.S (__ieee754_log10): Take absolute
4421         value when x - 1 is zero.
4422         * sysdeps/i386/fpu/e_log10f.S (__ieee754_log10f): Likewise.
4423         * sysdeps/i386/fpu/e_log10l.S (__ieee754_log10l): Likewise.
4424         * sysdeps/ieee754/ldbl-128/e_log10l.c (__ieee754_log10l): Return
4425         0.0L for an argument of 1.0L.
4426         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l):
4427         Likewise.
4428         * sysdeps/x86_64/fpu/e_log10l.S (__ieee754_log10l): Take absolute
4429         value when x - 1 is zero.
4430         * math/libm-test.inc (log10_test): Use ALL_RM_TEST.
4431         * sysdeps/i386/fpu/libm-test-ulps: Update.
4432         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
4434 2014-05-23  Rasmus Villemoes  <rv@rasmusvillemoes.dk>
4436         * manual/filesys.texi (Scanning Directory Content): Fix prototype of
4437         alphasort and versionsort.
4439 2014-05-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4441         * sysdeps/powerpc/fpu/math_private.h [copysign]: Remove unneeded
4442         macro.
4443         [copysignf]: Likewise.
4445 2014-05-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
4447         * crypt/md5-crypt.c: Fix formatting.
4449 2014-05-22  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
4451         * crypt/md5-crypt.c (__md5_crypt_r): Remove a nested function.
4452         (b64_from_24bit): New function.
4454 2014-05-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4456         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c (memchr): Remove
4457         libc_hidden_builtin_def to ifunc.
4458         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
4459         [libc_hidden_builtin_def]: Define hidden definition to __memchr_ppc32.
4461 2014-05-21  Roland McGrath  <roland@hack.frob.com>
4463         * sysdeps/unix/sysv/linux/aarch64/arch-fork.h: New file.
4464         * sysdeps/unix/sysv/linux/aarch64/nptl/fork.c: File removed.
4466 2014-05-21  Joseph Myers  <joseph@codesourcery.com>
4468         * nscd/Depend (linuxthreads): Remove.
4469         (nptl): Add.
4470         * resolv/Depend (linuxthreads): Remove.
4471         * rt/Depend (linuxthreads): Remove.
4473         * Makeconfig [$(build-hardcoded-path-in-tests) = yes]
4474         (rtld-tests-LDFLAGS): Use $(elf-objpfx) instead of
4475         $(common-objpfx)elf/.
4476         (link-libc-before-gnulib): Likewise.
4477         (elfobjdir): Remove variable.
4478         * Makefile (install): Use $(elf-objpfx) instead of
4479         $(common-objpfx)elf/.
4480         * Makerules (link-libc-args): Use $(elf-objpfx) instead of
4481         $(elfobjdir)/.
4482         (link-libc-deps): Likewise.
4483         ($(common-objpfx)libc.so): Likewise.
4484         ($(common-objpfx)linkobj/libc.so): Likewise.
4485         [$(cross-compiling) = no] (symbolic-link-prog): Use $(elf-objpfx)
4486         instead of $(common-objpfx)elf/.
4487         (symbolic-link-list): Likewise.
4488         * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
4489         [$(cross-compiling) = no]: Likewise.
4490         * sysdeps/arm/Makefile (gnulib-arch): Use $(elf-objpfx) instead of
4491         $(elfobjdir)/.
4492         (static-gnulib-arch): Likewise.
4493         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
4494         [$(cross-compiling) = no]: Use $(elf-objpfx) instead of
4495         $(common-objpfx)elf/.
4497 2014-05-21  Richard Henderson  <rth@redhat.com>
4499         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
4500         (SINGLE_THREAD_P): Use the correct width load.  Fold
4501         into the ldr offset.
4503         * sysdeps/unix/sysv/linux/aarch64/sysdep.h [RTLD_PRIVATE_ERRNO]
4504         (SYSCALL_ERROR_HANDLER): Fold add insn into str offset.
4506 2014-05-20  Joseph Myers  <joseph@codesourcery.com>
4508         * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c
4509         (libgcc_s_resume): Use __attribute_used__.
4510         * sysdeps/unix/sysv/linux/arm/unwind-resume.c (libgcc_s_resume):
4511         Likewise.
4513 2014-05-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4515         * sysdeps/powerpc/fpu/math_private.h [__copysignf]: Fix copysign macro
4516         optimization when used with float constants.
4518         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
4520 2014-05-20  Aurelien Jarno  <aurelien@aurel32.net>
4522         [BZ #16915]
4523         * locale/nl_langinfo_l.c: Make direct reference to every
4524         _nl_current_CATEGORY symbol.
4525         * localedata/Makefile (test-srcs): Add tst-langinfo-static.
4526         (tests-static): Add tst-langinfo-static.
4527         (tests-special): Add tst-langinfo-static.out.
4528         ($(objpfx)tst-langinfo.out): Redirect output.
4529         ($(objpfx)tst-langinfo-static.out): New.
4530         * localedata/tst-langinfo.sh: Send output to stdout.
4531         * localedata/tst-langinfo-static.c: New file.
4533         [BZ #16965]
4534         * stdlib/strtod_l.c (round_and_return): Add code to shift limbs
4535         when the shift amount is modulo the limb size.
4537 2014-05-20  Richard Henderson  <rth@redhat.com>
4539         [BZ #16967]
4540         * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h (struct sigaction):
4541         Change type of sa_flags from unsigned int to int.
4543         [BZ #16966]
4544         * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h: Remove file.
4546         * sysdeps/alpha/dl-machine.h (ELF_MACHINE_NO_RELA): Define.
4548 2014-05-20  Will Newton  <will.newton@linaro.org>
4550         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
4551         Test the return value of the system call in the nocancel case.
4553 2014-05-20  Will Newton  <will.newton@linaro.org>
4554             Yvan Roux  <yvan.roux@linaro.org>
4556         * sysdeps/unix/sysv/linux/aarch64/sys/user.h: Remove unused
4557         #include of asm/ptrace.h.
4558         (PTRACE_GET_THREAD_AREA): Remove #undef.
4559         (PTRACE_GETHBPREGS): Likewise.
4560         (PTRACE_SETHBPREGS): Likewise.
4561         (struct user_regs_struct): New structure.
4562         (struct user_fpsimd_struct): New structure.
4563         * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h: Remove unused
4564         #include of asm/ptrace.h and second #include of sys/user.h.
4565         (PTRACE_GET_THREAD_AREA): Remove #undef.
4566         (PTRACE_GETHBPREGS): Likewise.
4567         (PTRACE_SETHBPREGS): Likewise.
4568         (ELF_NGREG): Use new struct user_regs_struct.
4569         (elf_fpregset_t): Use new struct user_fpsimd_struct.
4571 2014-05-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4573         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypof.c: Moved ...
4574         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c: ... here.
4576 2014-05-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
4578         [BZ #16958]
4579         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Add missing
4580         membar to avoid block loads/stores to overlap previous stores.
4582 2014-05-17  Richard Henderson  <rth@redhat.com>
4584         * sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h (PSEUDO):
4585         Create the __##syscall_name##_nocancel entry point.
4586         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S (__sigsuspend_nocancel):
4587         Remove; let the sysdep-cancel.h code create it.
4589 2014-05-17  David S. Miller  <davem@davemloft.net>
4591         * sysdeps/unix/sysv/linux/sparc/bits/termios.h (PAGEOUT, WRAP):
4592         Protect with __USE_GNU.
4593         (TIOCSET_TEMPT): Likewise.
4594         (TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
4595         TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI): Remove as
4596         these are already provided in bits/ioctl-types.h
4598 2014-05-16  Roland McGrath  <roland@hack.frob.com>
4600         * sysdeps/unix/sysv/linux/alpha/arch-fork.h: New file.
4601         * sysdeps/unix/sysv/linux/ia64/nptl/fork.c: File removed.
4603         * sysdeps/unix/sysv/linux/not-cancel.h (waitpid_not_cancel):
4604         Use wait4 regardless of [__NR_waitpid].
4606 2014-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
4608         PR libgcc/60166
4609         * sysdeps/arm/soft-fp/sfp-machine.h (_FP_NANFRAC_S, _FP_NANFRAC_D)
4610         (_FP_NANSIGN_Q): Set the quiet bit.
4612 2014-05-16  Joseph Myers  <joseph@codesourcery.com>
4614         * benchtests/Makefile
4615         ($(addprefix $(objpfx)bench-,$(bench-math))): Depend on $(libm),
4616         not $(common-objpfx)math/libm.so.
4617         ($(addprefix $(objpfx)bench-,$(bench-pthread))): Depend on
4618         $(shared-thread-library), not $(common-objpfx)nptl/libpthread.so.
4619         * elf/Makefile ($(objpfx)noload): Depend on $(libdl), not
4620         $(common-objpfx)dlfcn/libdl.so.
4621         ($(objpfx)tst-audit8): Depend on $(libm), not
4622         $(common-objpfx)math/libm.so.
4623         * malloc/Makefile ($(objpfx)libmemusage.so): Depend on $(libdl),
4624         not $(common-objpfx)dlfcn/libdl.so.
4625         * math/Makefile
4626         ($(addprefix $(objpfx),$(filter-out $(tests-static),$(tests)))):
4627         Depend on $(libm), not $(objpfx)libm.so.  Do not condition on
4628         [$(build-shared) = yes].
4629         ($(objpfx)test-fenv-tls): Depend on $(shared-thread-library), not
4630         $(common-objpfx)nptl/libpthread.so.
4631         * misc/Makefile ($(objpfx)tst-tsearch): Depend on $(libm), not
4632         $(common-objpfx)math/libm.so$(libm.so-version) or
4633         $(common-objpfx)math/libm.a depending on [$(build-shared) = yes].
4634         * nptl/Makefile ($(objpfx)tst-unload): Depend on $(libdl), not
4635         $(common-objpfx)dlfcn/libdl.so.
4636         * setjmp/Makefile (link-libm): Remove variable.
4637         ($(objpfx)tst-setjmp-fp): Depend on $(libm), not $(link-libm).
4638         * stdio-common/Makefile (link-libm): Remove variable.
4639         ($(objpfx)tst-printf-round): Depend on $(libm), not $(link-libm).
4640         * stdlib/Makefile (link-libm): Remove variable.
4641         ($(objpfx)bug-getcontext): Depend on $(libm), not $(link-libm).
4642         ($(objpfx)tst-strtod-round): Likewise.
4643         ($(objpfx)tst-tininess): Likewise.
4644         ($(objpfx)tst-strtod-underflow): Likewise.
4645         ($(objpfx)tst-strtod6): Likewise.
4646         ($(objpfx)tst-tls-atexit): Depend on $(shared-thread-library) and
4647         $(libdl), not $(common-objpfx)nptl/libpthread.so and
4648         $(common-objpfx)dlfcn/libdl.so.
4650 2014-05-16  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4652         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_MISC]: Guard
4653         BSD terminal modes definitions.
4655 2014-05-16  Roland McGrath  <roland@hack.frob.com>
4657         * sysdeps/unix/sysv/linux/arm/arch-fork.h: New file.
4658         * sysdeps/unix/sysv/linux/arm/fork.c: File removed.
4660         * sysdeps/unix/sysv/linux/arch-fork.h: New file.
4661         * sysdeps/unix/sysv/linux/i386/fork.h: Moved ...
4662         * sysdeps/unix/sysv/linux/i386/arch-fork.h: ... here.
4663         Don't do #include_next.
4664         * sysdeps/unix/sysv/linux/x86_64/fork.h: Moved ...
4665         * sysdeps/unix/sysv/linux/x86_64/arch-fork.h: ... here.
4666         Don't do #include_next.
4667         * sysdeps/unix/sysv/linux/mips/arch-fork.h: New file.
4668         * sysdeps/unix/sysv/linux/mips/fork.h: File removed.
4669         * sysdeps/unix/sysv/linux/powerpc/arch-fork.h: New file.
4670         * sysdeps/unix/sysv/linux/powerpc/fork.h: File removed.
4672 2014-05-16  Allan McRae  <allan@archlinux.org>
4674         * po/sv.po: Update Swedish translation from translation project.
4676         * timezone/Makefile ($(objpfx)tzselect): Use correct variable
4677         in sed expression.
4679 2014-05-16  Aurelien Jarno  <aurelien@aurel32.net>
4681         [BZ #16917]
4682         * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_internal): Return
4683         errno if the TIOCGPTN ioctl fails with an error different than
4684         EINVAL.
4685         * login/tst-ptsname.c: New file.
4686         * login/Makefile (tests): Add tst-ptsname.
4688         [BZ #16943]
4689         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Declare prlimit
4690         and prlimit64.
4692 2014-05-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
4694         [BZ #16849]
4695         * sysdeps/posix/getaddrinfo.c (gaih_inet): Only check for
4696         herrno to return EAI_AGAIN.
4698 2014-05-14  Roland McGrath  <roland@hack.frob.com>
4700         * sysdeps/unix/sysv/linux/i386/nptl/c++-types.data: Moved ...
4701         * sysdeps/unix/sysv/linux/i386/c++-types.data: ... here.
4702         * sysdeps/unix/sysv/linux/i386/nptl/ld.abilist: Moved ...
4703         * sysdeps/unix/sysv/linux/i386/ld.abilist: ... here.
4704         * sysdeps/unix/sysv/linux/i386/nptl/libBrokenLocale.abilist: Moved ...
4705         * sysdeps/unix/sysv/linux/i386/libBrokenLocale.abilist: ... here.
4706         * sysdeps/unix/sysv/linux/i386/nptl/libanl.abilist: Moved ...
4707         * sysdeps/unix/sysv/linux/i386/libanl.abilist: ... here.
4708         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Moved ...
4709         * sysdeps/unix/sysv/linux/i386/libc.abilist: ... here.
4710         * sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist: Moved ...
4711         * sysdeps/unix/sysv/linux/i386/libcrypt.abilist: ... here.
4712         * sysdeps/unix/sysv/linux/i386/nptl/libdl.abilist: Moved ...
4713         * sysdeps/unix/sysv/linux/i386/libdl.abilist: ... here.
4714         * sysdeps/unix/sysv/linux/i386/nptl/libm.abilist: Moved ...
4715         * sysdeps/unix/sysv/linux/i386/libm.abilist: ... here.
4716         * sysdeps/unix/sysv/linux/i386/nptl/libnsl.abilist: Moved ...
4717         * sysdeps/unix/sysv/linux/i386/libnsl.abilist: ... here.
4718         * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: Moved ...
4719         * sysdeps/unix/sysv/linux/i386/libpthread.abilist: ... here.
4720         * sysdeps/unix/sysv/linux/i386/nptl/libresolv.abilist: Moved ...
4721         * sysdeps/unix/sysv/linux/i386/libresolv.abilist: ... here.
4722         * sysdeps/unix/sysv/linux/i386/nptl/librt.abilist: Moved ...
4723         * sysdeps/unix/sysv/linux/i386/librt.abilist: ... here.
4724         * sysdeps/unix/sysv/linux/i386/nptl/libthread_db.abilist: Moved ...
4725         * sysdeps/unix/sysv/linux/i386/libthread_db.abilist: ... here.
4726         * sysdeps/unix/sysv/linux/i386/nptl/libutil.abilist: Moved ...
4727         * sysdeps/unix/sysv/linux/i386/libutil.abilist: ... here.
4728         * sysdeps/unix/sysv/linux/i386/nptl/localplt.data: Moved ...
4729         * sysdeps/unix/sysv/linux/i386/localplt.data: ... here.
4730         * sysdeps/unix/sysv/linux/x86_64/64/nptl/c++-types.data: Moved ...
4731         * sysdeps/unix/sysv/linux/x86_64/64/c++-types.data: ... here.
4732         * sysdeps/unix/sysv/linux/x86_64/64/nptl/ld.abilist: Moved ...
4733         * sysdeps/unix/sysv/linux/x86_64/64/ld.abilist: ... here.
4734         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libBrokenLocale.abilist:
4735         Moved ...
4736         * sysdeps/unix/sysv/linux/x86_64/64/libBrokenLocale.abilist: ... here.
4737         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libanl.abilist: Moved ...
4738         * sysdeps/unix/sysv/linux/x86_64/64/libanl.abilist: ... here.
4739         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Moved ...
4740         * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: ... here.
4741         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist: Moved ...
4742         * sysdeps/unix/sysv/linux/x86_64/64/libcrypt.abilist: ... here.
4743         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libdl.abilist: Moved ...
4744         * sysdeps/unix/sysv/linux/x86_64/64/libdl.abilist: ... here.
4745         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libm.abilist: Moved ...
4746         * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: ... here.
4747         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libnsl.abilist: Moved ...
4748         * sysdeps/unix/sysv/linux/x86_64/64/libnsl.abilist: ... here.
4749         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist: Moved ...
4750         * sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist: ... here.
4751         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libresolv.abilist: Moved ...
4752         * sysdeps/unix/sysv/linux/x86_64/64/libresolv.abilist: ... here.
4753         * sysdeps/unix/sysv/linux/x86_64/64/nptl/librt.abilist: Moved ...
4754         * sysdeps/unix/sysv/linux/x86_64/64/librt.abilist: ... here.
4755         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libthread_db.abilist: Moved ...
4756         * sysdeps/unix/sysv/linux/x86_64/64/libthread_db.abilist: ... here.
4757         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libutil.abilist: Moved ...
4758         * sysdeps/unix/sysv/linux/x86_64/64/libutil.abilist: ... here.
4759         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/c++-types.data: Moved ...
4760         * sysdeps/unix/sysv/linux/x86_64/x32/c++-types.data: ... here.
4761         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/ld.abilist: Moved ...
4762         * sysdeps/unix/sysv/linux/x86_64/x32/ld.abilist: ... here.
4763         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libBrokenLocale.abilist:
4764         Moved ...
4765         * sysdeps/unix/sysv/linux/x86_64/x32/libBrokenLocale.abilist: ... here.
4766         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libanl.abilist: Moved ...
4767         * sysdeps/unix/sysv/linux/x86_64/x32/libanl.abilist: ... here.
4768         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Moved ...
4769         * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: ... here.
4770         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist: Moved ...
4771         * sysdeps/unix/sysv/linux/x86_64/x32/libcrypt.abilist: ... here.
4772         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libdl.abilist: Moved ...
4773         * sysdeps/unix/sysv/linux/x86_64/x32/libdl.abilist: ... here.
4774         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libm.abilist: Moved ...
4775         * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: ... here.
4776         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libnsl.abilist: Moved ...
4777         * sysdeps/unix/sysv/linux/x86_64/x32/libnsl.abilist: ... here.
4778         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist: Moved ...
4779         * sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist: ... here.
4780         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libresolv.abilist: Moved ...
4781         * sysdeps/unix/sysv/linux/x86_64/x32/libresolv.abilist: ... here.
4782         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/librt.abilist: Moved ...
4783         * sysdeps/unix/sysv/linux/x86_64/x32/librt.abilist: ... here.
4784         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libthread_db.abilist:
4785         Moved ...
4786         * sysdeps/unix/sysv/linux/x86_64/x32/libthread_db.abilist: ... here.
4787         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libutil.abilist: Moved ...
4788         * sysdeps/unix/sysv/linux/x86_64/x32/libutil.abilist: ... here.
4790         * nptl/sysdeps/unix/sysv/linux/x86/Makefile: File removed.
4791         * sysdeps/unix/sysv/linux/x86/Makefile [$(subdir) = nptl]
4792         (libpthread-sysdep_routines): Add elision-related stuff here instead.
4793         * nptl/sysdeps/unix/sysv/linux/x86/elision-conf.c: Moved ...
4794         * sysdeps/unix/sysv/linux/x86/elision-conf.c: ... here.
4795         * nptl/sysdeps/unix/sysv/linux/x86/elision-conf.h: Moved ...
4796         * sysdeps/unix/sysv/linux/x86/elision-conf.h: ... here.
4797         * nptl/sysdeps/unix/sysv/linux/x86/elision-lock.c: Moved ...
4798         * sysdeps/unix/sysv/linux/x86/elision-lock.c: ... here.
4799         * nptl/sysdeps/unix/sysv/linux/x86/elision-timed.c: Moved ...
4800         * sysdeps/unix/sysv/linux/x86/elision-timed.c: ... here.
4801         * nptl/sysdeps/unix/sysv/linux/x86/elision-trylock.c: Moved ...
4802         * sysdeps/unix/sysv/linux/x86/elision-trylock.c: ... here.
4803         * nptl/sysdeps/unix/sysv/linux/x86/elision-unlock.c: Moved ...
4804         * sysdeps/unix/sysv/linux/x86/elision-unlock.c: ... here.
4805         * nptl/sysdeps/unix/sysv/linux/x86/force-elision.h: Moved ...
4806         * sysdeps/unix/sysv/linux/x86/force-elision.h: ... here.
4807         * nptl/sysdeps/unix/sysv/linux/x86/hle.h: Moved ...
4808         * sysdeps/unix/sysv/linux/x86/hle.h: ... here.
4809         * nptl/sysdeps/unix/sysv/linux/x86/init-arch.c: Moved ...
4810         * sysdeps/unix/sysv/linux/x86/init-arch.c: ... here.
4811         * nptl/sysdeps/unix/sysv/linux/x86/init-arch.h: Moved ...
4812         * sysdeps/unix/sysv/linux/x86/init-arch.h: ... here.
4813         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: Moved ...
4814         * sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: ... here.
4815         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c: Moved ...
4816         * sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c: ... here.
4817         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c: Moved ...
4818         * sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c: ... here.
4819         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c: Moved ...
4820         * sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c: ... here.
4822         * sysdeps/unix/sysv/linux/mips/fork.h: New file.
4823         * sysdeps/unix/sysv/linux/mips/nptl/fork.c: File removed.
4825         * nptl/sysdeps/unix/sysv/linux/i386/Implies: File removed.
4826         * nptl/sysdeps/unix/sysv/linux/i386/i786/Implies: Moved ...
4827         * sysdeps/unix/sysv/linux/i386/i786/Implies: ... here.
4828         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: Moved ...
4829         * sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: ... here.
4830         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S:
4831         Moved ...
4832         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S: ... here.
4833         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S:
4834         Moved ...
4835         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S: ... here.
4836         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S:
4837         Moved ...
4838         * sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S: ... here.
4839         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S:
4840         Moved ...
4841         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S: ... here.
4842         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: Moved ...
4843         * sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: ... here.
4844         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S:
4845         Moved ...
4846         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S: ... here.
4847         * nptl/sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: Moved ...
4848         * sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: ... here.
4849         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S: Moved ...
4850         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S: ... here.
4851         * nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S: Moved ...
4852         * sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S: ... here.
4853         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S:
4854         Moved ...
4855         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S: ... here.
4856         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S:
4857         Moved ...
4858         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S:
4859         ... here.
4860         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: Moved ...
4861         * sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: ... here.
4862         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_post.S: Moved ...
4863         * sysdeps/unix/sysv/linux/i386/i586/sem_post.S: ... here.
4864         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S:
4865         Moved ...
4866         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S:
4867         ... here.
4868         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S:
4869         Moved ...
4870         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S: ... here.
4871         * nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S: Moved ...
4872         * sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S: ... here.
4873         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: Moved ...
4874         * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: ... here.
4875         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S:
4876         Moved ...
4877         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: ... here.
4878         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S:
4879         Moved ...
4880         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: ... here.
4881         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S:
4882         Moved ...
4883         * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S: ... here.
4884         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S:
4885         Moved ...
4886         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: ... here.
4887         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: Moved ...
4888         * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: ... here.
4889         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S:
4890         Moved ...
4891         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S: ... here.
4892         * nptl/sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: Moved ...
4893         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: ... here.
4894         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Moved ...
4895         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: ... here.
4896         * nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: Moved ...
4897         * sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: ... here.
4898         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S:
4899         Moved ...
4900         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S: ... here.
4901         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
4902         Moved ...
4903         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
4904         ... here.
4905         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: Moved ...
4906         * sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: ... here.
4907         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Moved ...
4908         * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: ... here.
4909         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
4910         Moved ...
4911         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
4912         ... here.
4913         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S:
4914         Moved ...
4915         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: ... here.
4916         * nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Moved ...
4917         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: ... here.
4918         * nptl/sysdeps/unix/sysv/linux/i386/dl-sysdep.h: Moved ...
4919         * sysdeps/unix/sysv/linux/i386/dl-sysdep.h: ... here.
4920         * nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h: Moved ...
4921         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: ... here.
4922         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: Moved ...
4923         * sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: ... here.
4924         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S:
4925         Moved ...
4926         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S: ... here.
4927         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S:
4928         Moved ...
4929         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S: ... here.
4930         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S:
4931         Moved ...
4932         * sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S: ... here.
4933         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S:
4934         Moved ...
4935         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S: ... here.
4936         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: Moved ...
4937         * sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: ... here.
4938         * nptl/sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: Moved ...
4939         * sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: ... here.
4940         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S:
4941         Moved ...
4942         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S: ... here.
4943         * nptl/sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: Moved ...
4944         * sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: ... here.
4945         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S: Moved ...
4946         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S: ... here.
4947         * nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S: Moved ...
4948         * sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S: ... here.
4949         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S:
4950         Moved ...
4951         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S: ... here.
4952         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S:
4953         Moved ...
4954         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S:
4955         ... here.
4956         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: Moved ...
4957         * sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: ... here.
4958         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_post.S: Moved ...
4959         * sysdeps/unix/sysv/linux/i386/i686/sem_post.S: ... here.
4960         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S:
4961         Moved ...
4962         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S:
4963         ... here.
4964         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S:
4965         Moved ...
4966         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S: ... here.
4967         * nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S: Moved ...
4968         * sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S: ... here.
4969         * nptl/sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Moved ...
4970         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: ... here.
4971         * nptl/sysdeps/unix/sysv/linux/i386/smp.h: Moved ...
4972         * sysdeps/unix/sysv/linux/i386/smp.h: ... here.
4973         * nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S: Moved ...
4974         * sysdeps/unix/sysv/linux/i386/pthread_once.S: ... here.
4975         * nptl/sysdeps/unix/sysv/linux/i386/createthread.c: Moved ...
4976         * sysdeps/unix/sysv/linux/i386/createthread.c: ... here.
4978         * sysdeps/unix/sysv/linux/powerpc/fork.h: New file.
4979         * nptl/sysdeps/unix/sysv/linux/powerpc/fork.c: File removed.
4981         * nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_init.c: File removed.
4982         * nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_unlock.S: File removed.
4984         * nptl/sysdeps/unix/sysv/linux/x86_64/Implies: File removed.
4985         * nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S: Moved ...
4986         * sysdeps/unix/sysv/linux/x86_64/cancellation.S: ... here.
4987         * nptl/sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S: Moved ...
4988         * sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S: ... here.
4989         * nptl/sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: Moved ...
4990         * sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: ... here.
4991         * nptl/sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S: Moved ...
4992         * sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S: ... here.
4993         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Moved ...
4994         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: ... here.
4995         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Moved ...
4996         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: ... here.
4997         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: Moved ...
4998         * sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: ... here.
4999         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: Moved ...
5000         * sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: ... here.
5001         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S:
5002         Moved ...
5003         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S: ... here.
5004         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: Moved ...
5005         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: ... here.
5006         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:
5007         Moved ...
5008         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: ... here.
5009         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Moved ...
5010         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: ... here.
5011         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Moved ...
5012         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: ... here.
5013         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: Moved ...
5014         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: ... here.
5015         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S:
5016         Moved ...
5017         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: ... here.
5018         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S:
5019         Moved ...
5020         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S: ... here.
5021         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: Moved ...
5022         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: ... here.
5023         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: Moved ...
5024         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: ... here.
5025         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c: Moved ...
5026         * sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c: ... here.
5027         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S: Moved ...
5028         * sysdeps/unix/sysv/linux/x86_64/sem_post.S: ... here.
5029         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Moved ...
5030         * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: ... here.
5031         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Moved ...
5032         * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: ... here.
5033         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Moved ...
5034         * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: ... here.
5035         * nptl/sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Moved ...
5036         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: ... here.
5038         * nptl/sysdeps/unix/sysv/linux/fork.c: Use <> for fork.h #include.
5039         * nptl/sysdeps/unix/sysv/linux/x86_64/fork.c: File removed.
5040         * sysdeps/unix/sysv/linux/x86_64/fork.h: New file.
5041         * nptl/sysdeps/unix/sysv/linux/i386/fork.c: File removed.
5042         * sysdeps/unix/sysv/linux/i386/fork.h: New file.
5044         * nptl/sysdeps/unix/sysv/linux/i386/not-cancel.h: Moved ...
5045         * sysdeps/unix/sysv/linux/not-cancel.h: ... here.
5046         * nptl/sysdeps/unix/sysv/linux/sparc/not-cancel.h: File removed.
5047         * nptl/sysdeps/unix/sysv/linux/sh/not-cancel.h: File removed.
5048         * nptl/sysdeps/unix/sysv/linux/powerpc/not-cancel.h: File removed.
5049         * nptl/sysdeps/unix/sysv/linux/x86_64/not-cancel.h: File removed.
5050         * nptl/sysdeps/unix/sysv/linux/s390/not-cancel.h: File removed.
5051         * sysdeps/unix/sysv/linux/generic/not-cancel.h: File removed.
5052         * sysdeps/unix/sysv/linux/generic/nptl/not-cancel.h: File removed.
5053         * sysdeps/unix/sysv/linux/m68k/nptl/not-cancel.h: File removed.
5055         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_init.c: File removed.
5056         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_unlock.S: Likewise.
5058         * nptl/sysdeps/unix/sysv/linux/x86_64/compat-timer.h: Moved ...
5059         * sysdeps/unix/sysv/linux/x86_64/compat-timer.h: ... here.
5060         * nptl/sysdeps/unix/sysv/linux/x86_64/Versions: Remove, merge into ...
5061         * sysdeps/unix/sysv/linux/x86_64/Versions: ... here.
5062         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_create.c: Moved ...
5063         * sysdeps/unix/sysv/linux/x86_64/timer_create.c: here.
5064         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_delete.c: Moved ...
5065         * sysdeps/unix/sysv/linux/x86_64/timer_delete.c: ... here
5066         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c: Moved ...
5067         * sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c: ... here
5068         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_gettime.c: Moved ...
5069         * sysdeps/unix/sysv/linux/x86_64/timer_gettime.c: ... here
5070         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_settime.c: Moved ...
5071         * sysdeps/unix/sysv/linux/x86_64/timer_settime.c: ... here
5072         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c:
5073         Update #include.
5074         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c:
5075         Likewise.
5076         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c:
5077         Likewise.
5078         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c:
5079         Likewise.
5080         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c:
5081         Likewise.
5082         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c:
5083         Likewise.
5084         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c:
5085         Likewise.
5086         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c:
5087         Likewise.
5088         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c:
5089         Likewise.
5090         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c:
5091         Likewise.
5092         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: Likewise.
5093         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: Likewise.
5094         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: Likewise.
5095         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: Likewise.
5096         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: Likewise.
5097         * sysdeps/unix/sysv/linux/alpha/nptl/timer_create.c: Likewise.
5098         * sysdeps/unix/sysv/linux/alpha/nptl/timer_delete.c: Likewise.
5099         * sysdeps/unix/sysv/linux/alpha/nptl/timer_getoverr.c: Likewise.
5100         * sysdeps/unix/sysv/linux/alpha/nptl/timer_gettime.c: Likewise.
5101         * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Likewise.
5102         * sysdeps/unix/sysv/linux/ia64/nptl/timer_create.c: Likewise.
5103         * sysdeps/unix/sysv/linux/ia64/nptl/timer_delete.c: Likewise.
5104         * sysdeps/unix/sysv/linux/ia64/nptl/timer_getoverr.c: Likewise.
5105         * sysdeps/unix/sysv/linux/ia64/nptl/timer_gettime.c:  Likewise.
5106         * sysdeps/unix/sysv/linux/ia64/nptl/timer_settime.c:  Likewise.
5108         * sysdeps/unix/sysv/linux/x86_64/clone.S: Deconditionalize the code
5109         that was previously under [RESET_PID].
5110         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
5111         * nptl/sysdeps/unix/sysv/linux/x86_64/clone.S: File removed.
5112         * nptl/sysdeps/unix/sysv/linux/i386/clone.S: File removed.
5114         * sysdeps/i386/nptl/Implies: New file.
5115         * sysdeps/x86_64/nptl/Implies: New file.
5116         * nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h: Moved ...
5117         * sysdeps/x86/nptl/bits/pthreadtypes.h: ... here.
5118         * nptl/sysdeps/unix/sysv/linux/x86/bits/semaphore.h: Moved ...
5119         * sysdeps/x86/nptl/bits/semaphore.h: ... here.
5121         * sysdeps/unix/sysv/linux/i386/vfork.S: Include <tcb-offsets.h>.
5122         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
5123         (__libc_vfork): New strong alias.
5124         * nptl/sysdeps/unix/sysv/linux/i386/vfork.S: File removed.
5125         * nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S: File removed.
5127         * sysdeps/unix/sysv/linux/x86_64/vfork.S: Include <tcb-offsets.h>.
5128         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
5129         (__libc_vfork): New strong alias.
5130         * nptl/sysdeps/unix/sysv/linux/x86_64/vfork.S: File removed.
5131         * nptl/sysdeps/unix/sysv/linux/x86_64/pt-vfork.S: File removed.
5133         * sysdeps/unix/sysv/linux/arm/vfork.S: Include <tcb-offsets.h>.
5134         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
5135         (__libc_vfork): New strong alias.
5136         * sysdeps/unix/sysv/linux/arm/nptl/vfork.S: File removed.
5137         * sysdeps/unix/sysv/linux/arm/nptl/pt-vfork.S: File removed.
5138         * nptl/pt-vfork.c: New file.
5139         * nptl/Versions (libc: GLIBC_PRIVATE): Add __libc_vfork.
5140         (libpthread: GLIBC_2.20): New version set (empty).
5142 2014-05-14  Will Newton  <will.newton@linaro.org>
5144         * stdlib/gmp-impl.h: Test USE_STACK_ALLOC #ifdef
5145         rather than #if.
5147 2014-05-14  Joseph Myers  <joseph@codesourcery.com>
5149         [BZ #16564]
5150         * sysdeps/i386/fpu/s_log1pl.S (__log1pl): Do not add 1 to positive
5151         arguments with exponent 65 or above.
5152         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): Do not add 1 to
5153         arguments 0x1p113L or above.
5154         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Do not add 1
5155         to arguments 0x1p107L or above.
5156         * sysdeps/x86_64/fpu/s_log1pl.S (__log1pl): Do not add 1 to
5157         positive arguments with exponent 65 or above.
5158         * math/auto-libm-test-in: Add more tests of log1p.
5159         * math/auto-libm-test-out: Regenerated.
5161         [BZ #16928]
5162         * math/s_cacos.c (__cacos): Ensure zero real part of result from
5163         non-finite arguments is +0.
5164         * math/s_cacosf.c (__cacosf): Likewise.
5165         * math/s_cacosl.c (__cacosl): Likewise.
5166         * math/libm-test.inc (cacos_test): Use ALL_RM_TEST.
5167         * sysdeps/i386/fpu/libm-test-ulps: Update.
5168         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
5170         [BZ #16927]
5171         * sysdeps/i386/fpu/e_acosh.S (__ieee754_acosh): Use fabs on x-1
5172         value.
5173         * sysdeps/i386/fpu/e_acoshf.S (__ieee754_acoshf): Likewise.
5174         * sysdeps/i386/fpu/e_acoshl.S (__ieee754_acoshl): Likewise.
5175         * sysdeps/ieee754/ldbl-96/e_acoshl.c (__ieee754_acoshl): Correct
5176         for explicit high bit of mantissa when testing for argument equal
5177         to 1.
5178         * math/libm-test.inc (acosh_test): Use ALL_RM_TEST.
5179         * sysdeps/i386/fpu/libm-test-ulps: Update.
5180         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
5182         [BZ #16516]
5183         * sysdeps/ieee754/dbl-64/s_erf.c (efx8): Remove variable.
5184         (__erf): Scale by 16 instead of 8 in potentially underflowing
5185         case.  Ensure exception if result actually underflows.
5186         * sysdeps/ieee754/flt-32/s_erff.c (efx8): Remove variable.
5187         (__erff): Scale by 16 instead of 8 in potentially underflowing
5188         case.  Ensure exception if result actually underflows.
5189         * sysdeps/ieee754/ldbl-128/s_erfl.c: Include <float.h>.
5190         (efx8): Remove variable.
5191         (__erfl): Scale by 16 instead of 8 in potentially underflowing
5192         case.  Ensure exception if result actually underflows.
5193         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Include <float.h>.
5194         (efx8): Remove variable.
5195         (__erfl): Scale by 16 instead of 8 in potentially underflowing
5196         case.  Ensure exception if result actually underflows.
5197         * sysdeps/ieee754/ldbl-96/s_erfl.c: Include <float.h>.
5198         (efx8): Remove variable.
5199         (__erfl): Scale by 16 instead of 8 in potentially underflowing
5200         case.  Ensure exception if result actually underflows.
5201         * math/auto-libm-test-in: Add more tests of erf.
5202         * math/auto-libm-test-out: Regenerated.
5204 2014-05-14  Andreas Schwab  <schwab@suse.de>
5206         * elf/rtld.c (_dl_start_final, _dl_start, init_tls, dl_main):
5207         Remove code conditionalized on USE___THREAD.
5209         * config.h.in (HAVE_PT_CHOWN): Define as 0.
5210         * sysdeps/unix/grantpt.c (grantpt): Check HAVE_PT_CHOWN for value,
5211         not definedness.
5213 2014-05-14  Joseph Myers  <joseph@codesourcery.com>
5215         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES):
5216         Define unconditionally.
5217         (__ASSUME_O_CLOEXEC): Likewise.
5218         (__ASSUME_SOCK_CLOEXEC): Likewise.
5219         (__ASSUME_IN_NONBLOCK): Likewise.
5220         (__ASSUME_PIPE2): Likewise.
5221         (__ASSUME_EVENTFD2): Likewise.
5222         (__ASSUME_SIGNALFD4): Likewise.
5223         (__ASSUME_DUP3): Likewise.
5224         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
5225         (__ASSUME_DUP3): Do not define.
5226         (__ASSUME_EVENTFD2): Likewise.
5227         (__ASSUME_IN_NONBLOCK): Likewise.
5228         (__ASSUME_O_CLOEXEC): Likewise.
5229         (__ASSUME_PIPE2): Likewise.
5230         (__ASSUME_SIGNALFD4): Likewise.
5231         (__ASSUME_SOCK_CLOEXEC): Likewise.
5232         (__ASSUME_UTIMES): Undefine.
5233         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
5234         (__ASSUME_UTIMES): Do not define.
5235         (__ASSUME_O_CLOEXEC): Likewise.
5236         (__ASSUME_SOCK_CLOEXEC): Likewise.
5237         (__ASSUME_IN_NONBLOCK): Undefine if [__LINUX_KERNEL_VERSION <
5238         0x020621] instead of defining if [__LINUX_KERNEL_VERSION >=
5239         0x020621].
5240         (__ASSUME_PIPE2): Likewise.
5241         (__ASSUME_EVENTFD2): Likewise.
5242         (__ASSUME_SIGNALFD4): Likewise.
5243         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_DUP3): Undefine.
5244         * sysdeps/unix/sysv/linux/arm/kernel-features.h (__ASSUME_UTIMES):
5245         Do not define.
5246         (__ASSUME_EVENTFD2): Likewise.
5247         (__ASSUME_SIGNALFD4): Likewise.
5248         * sysdeps/unix/sysv/linux/hppa/kernel-features.h
5249         (__ASSUME_32BITUIDS): Likewise.
5250         (__ASSUME_TRUNCATE64_SYSCALL): Likewise.
5251         (__ASSUME_IPC64): Likewise.
5252         (__ASSUME_ST_INO_64_BIT): Likewise.
5253         (__ASSUME_GETDENTS64_SYSCALL): Likewise.
5254         [__LINUX_KERNEL_VERSION < 0x030e00] (__ASSUME_UTIMES): Undefine.
5255         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
5256         (__ASSUME_UTIMES): Do not define.
5257         (__ASSUME_PSELECT): Likewise.
5258         (__ASSUME_PPOLL): Likewise.
5259         (__ASSUME_O_CLOEXEC): Likewise.
5260         (__ASSUME_SOCK_CLOEXEC): Likewise.
5261         (__ASSUME_IN_NONBLOCK): Likewise.
5262         (__ASSUME_PIPE2): Likewise.
5263         (__ASSUME_EVENTFD2): Likewise.
5264         (__ASSUME_SIGNALFD4): Likewise.
5265         (__ASSUME_DUP3): Likewise.
5266         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
5267         (__ASSUME_UTIMES): Likewise.
5268         (__ASSUME_O_CLOEXEC): Likewise.
5269         (__ASSUME_SOCK_CLOEXEC): Likewise.
5270         (__ASSUME_IN_NONBLOCK): Likewise.
5271         (__ASSUME_PIPE2): Likewise.
5272         (__ASSUME_EVENTFD2): Likewise.
5273         (__ASSUME_SIGNALFD4): Likewise.
5274         (__ASSUME_DUP3): Likewise.
5275         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
5276         (__ASSUME_UTIMES): Likewise.
5277         (__ASSUME_O_CLOEXEC): Likewise.
5278         (__ASSUME_SOCK_CLOEXEC): Likewise.
5279         (__ASSUME_IN_NONBLOCK): Likewise.
5280         (__ASSUME_PIPE2): Likewise.
5281         (__ASSUME_EVENTFD2): Likewise.
5282         (__ASSUME_SIGNALFD4): Likewise.
5283         (__ASSUME_DUP3): Likewise.
5284         * sysdeps/unix/sysv/linux/mips/kernel-features.h (__ASSUME_IPC64):
5285         Likewise.
5286         (__ASSUME_UTIMES): Likewise.
5287         (__ASSUME_EVENTFD2): Likewise.
5288         (__ASSUME_SIGNALFD4): Likewise.
5289         * sysdeps/unix/sysv/linux/tile/kernel-features.h
5290         (__ASSUME_O_CLOEXEC): Likewise.
5291         (__ASSUME_SOCK_CLOEXEC): Likewise.
5292         (__ASSUME_IN_NONBLOCK): Likewise.
5293         (__ASSUME_PIPE2): Likewise.
5294         (__ASSUME_EVENTFD2): Likewise.
5295         (__ASSUME_SIGNALFD4): Likewise.
5296         (__ASSUME_DUP3): Likewise.
5297         (__ASSUME_UTIMES): Undefine.
5299         * sysdeps/arm/fclrexcpt.c (__feclearexcept): Rename to
5300         feclearexcept.  Remove symbol versioning code.
5301         * sysdeps/arm/fegetenv.c (__fegetenv): Rename to fegetenv.  Remove
5302         symbol versioning code.
5303         * sysdeps/arm/fesetenv.c (__fesetenv): Rename to fesetenv.  Remove
5304         symbol versioning code.
5305         * sysdeps/arm/feupdateenv.c (__feupdateenv): Rename to
5306         feupdateenv.  Remove symbol versioning code.
5307         * sysdeps/arm/fgetexcptflg.c (__fegetexceptflag): Rename to
5308         fegetexceptflag.  Remove symbol versioning code.
5309         * sysdeps/arm/fsetexcptflg.c (__fesetexceptflag): Rename to
5310         fesetexceptflag.  Remove symbol versioning code.
5311         * sysdeps/unix/sysv/linux/arm/Versions (libc): Remove GLIBC_2.0,
5312         GLIBC_2.2 and GLIBC_2.3.3 entries.  Change GLIBC_2.1 to GLIBC_2.4.
5313         * sysdeps/unix/sysv/linux/arm/posix_fadvise64.c
5314         (__posix_fadvise64_l32): Remove prototype.
5315         [SHLIB_COMPAT(libc, GLIBC_2_2, GLIBC_2_3_3)]: Remove conditional
5316         code.
5318 2014-05-13  Roland McGrath  <roland@hack.frob.com>
5320         * sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h: Moved ...
5321         * sysdeps/arm/nptl/bits/pthreadtypes.h: ... here.
5322         * sysdeps/unix/sysv/linux/arm/nptl/bits/semaphore.h: Moved ...
5323         * sysdeps/arm/nptl/bits/semaphore.h: ... here.
5325 2014-05-13  Sami Kerola  <kerolasa@iki.fi>
5327         * timezone/Makefile ($(objpfx)tzselect): Use zonedir instead
5328         current working directory
5330 2014-05-13  Roland McGrath  <roland@hack.frob.com>
5332         * sysdeps/unix/sysv/linux/arm/nptl/c++-types.data: Moved ...
5333         * sysdeps/unix/sysv/linux/arm/c++-types.data: ... here.
5334         * sysdeps/unix/sysv/linux/arm/nptl/createthread.c: Moved ...
5335         * sysdeps/unix/sysv/linux/arm/createthread.c: ... here.
5336         * sysdeps/unix/sysv/linux/arm/nptl/fork.c: Moved ...
5337         * sysdeps/unix/sysv/linux/arm/fork.c: ... here.
5338         * sysdeps/unix/sysv/linux/arm/nptl/ld.abilist: Moved ...
5339         * sysdeps/unix/sysv/linux/arm/ld.abilist: ... here.
5340         * sysdeps/unix/sysv/linux/arm/nptl/libBrokenLocale.abilist: Moved ...
5341         * sysdeps/unix/sysv/linux/arm/libBrokenLocale.abilist: ... here.
5342         * sysdeps/unix/sysv/linux/arm/nptl/libanl.abilist: Moved ...
5343         * sysdeps/unix/sysv/linux/arm/libanl.abilist: ... here.
5344         * sysdeps/unix/sysv/linux/arm/nptl/libc.abilist: Moved ...
5345         * sysdeps/unix/sysv/linux/arm/libc.abilist: ... here.
5346         * sysdeps/unix/sysv/linux/arm/nptl/libcrypt.abilist: Moved ...
5347         * sysdeps/unix/sysv/linux/arm/libcrypt.abilist: ... here.
5348         * sysdeps/unix/sysv/linux/arm/nptl/libdl.abilist: Moved ...
5349         * sysdeps/unix/sysv/linux/arm/libdl.abilist: ... here.
5350         * sysdeps/unix/sysv/linux/arm/nptl/libm.abilist: Moved ...
5351         * sysdeps/unix/sysv/linux/arm/libm.abilist: ... here.
5352         * sysdeps/unix/sysv/linux/arm/nptl/libnsl.abilist: Moved ...
5353         * sysdeps/unix/sysv/linux/arm/libnsl.abilist: ... here.
5354         * sysdeps/unix/sysv/linux/arm/nptl/libpthread.abilist: Moved ...
5355         * sysdeps/unix/sysv/linux/arm/libpthread.abilist: ... here.
5356         * sysdeps/unix/sysv/linux/arm/nptl/libresolv.abilist: Moved ...
5357         * sysdeps/unix/sysv/linux/arm/libresolv.abilist: ... here.
5358         * sysdeps/unix/sysv/linux/arm/nptl/librt.abilist: Moved ...
5359         * sysdeps/unix/sysv/linux/arm/librt.abilist: ... here.
5360         * sysdeps/unix/sysv/linux/arm/nptl/libthread_db.abilist: Moved ...
5361         * sysdeps/unix/sysv/linux/arm/libthread_db.abilist: ... here.
5362         * sysdeps/unix/sysv/linux/arm/nptl/libutil.abilist: Moved ...
5363         * sysdeps/unix/sysv/linux/arm/libutil.abilist: ... here.
5364         * sysdeps/unix/sysv/linux/arm/nptl/localplt.data: Moved ...
5365         * sysdeps/unix/sysv/linux/arm/localplt.data: ... here.
5366         * sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.h: Moved ...
5367         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: ... here.
5368         * sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h: Moved ...
5369         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: ... here.
5370         * sysdeps/unix/sysv/linux/arm/nptl/unwind-forcedunwind.c: Moved ...
5371         * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c: ... here.
5372         * sysdeps/unix/sysv/linux/arm/nptl/unwind-resume.c: Moved ...
5373         * sysdeps/unix/sysv/linux/arm/unwind-resume.c: ... here.
5375         * sysdeps/unix/sysv/linux/arm/Versions (libc: GLIBC_PRIVATE): New set.
5376         * sysdeps/unix/sysv/linux/arm/nptl/Versions: File removed.
5378         * sysdeps/unix/sysv/linux/arm/Makefile
5379         [$(subdir) = rt] (librt-sysdep_routines, librt-shared-only-routines):
5380         Add rt-aeabi_unwind_cpp_pr1.
5381         [$(subdir) = nptl] (librt-sysdep_routines, librt-shared-only-routines):
5382         Add nptl-aeabi_unwind_cpp_pr1.
5383         [$(subdir) = nptl] (tests): Filter out tst-cleanupx4.
5384         * sysdeps/unix/sysv/linux/arm/nptl/Makefile: File removed.
5385         * sysdeps/unix/sysv/linux/arm/nptl/rt-aeabi_unwind_cpp_pr1.c: Move ...
5386         * sysdeps/unix/sysv/linux/arm/rt-aeabi_unwind_cpp_pr1.c: ... here.
5387         * sysdeps/unix/sysv/linux/arm/nptl/nptl-aeabi_unwind_cpp_pr1.c: Move ...
5388         * sysdeps/unix/sysv/linux/arm/nptl-aeabi_unwind_cpp_pr1.c: ... here.
5390         * sysdeps/unix/sysv/linux/arm/configure.ac: Force -fexceptions here.
5391         * sysdeps/unix/sysv/linux/arm/configure: Regenerated.
5392         * sysdeps/unix/sysv/linux/arm/nptl/configure.ac: File removed.
5393         * sysdeps/unix/sysv/linux/arm/nptl/configure: File removed.
5395         * sysdeps/unix/sysv/linux/arm/clone.S: Include <tcb-offsets.h>.
5396         Deconditionalize the code that was previously under [RESET_PID].
5397         * sysdeps/unix/sysv/linux/arm/nptl/clone.S: File removed.
5399         * sysdeps/generic/exit-thread.h: New file.
5400         * sysdeps/unix/sysv/linux/exit-thread.h: New file.
5401         * include/unistd.h (__exit_thread): Remove declaration.
5402         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Drop exit-thread.
5403         * sysdeps/unix/sysv/linux/exit-thread.S: File removed.
5404         * csu/libc-start.c: Include <exit-thread.h>.
5405         (LIBC_START_MAIN): Pass no argument to __exit_thread.
5406         * nptl/pthread_create.c: Include <exit-thread.h>.
5407         (start_thread): Call __exit_thread in place of __exit_thread_inline.
5408         * nptl/sysdeps/i386/pthreaddef.h (__exit_thread_inline): Macro removed.
5409         * nptl/sysdeps/powerpc/pthreaddef.h: Likewise.
5410         * nptl/sysdeps/s390/pthreaddef.h: Likewise.
5411         * nptl/sysdeps/sh/pthreaddef.h: Likewise.
5412         * nptl/sysdeps/sparc/sparc32/pthreaddef.h: Likewise.
5413         * nptl/sysdeps/sparc/sparc64/pthreaddef.h: Likewise.
5414         * nptl/sysdeps/x86_64/pthreaddef.h: Likewise.
5415         * sysdeps/aarch64/nptl/pthreaddef.h: Likewise.
5416         * sysdeps/alpha/nptl/pthreaddef.h: Likewise.
5417         * sysdeps/arm/nptl/pthreaddef.h: Likewise.
5418         * sysdeps/hppa/nptl/pthreaddef.h: Likewise.
5419         * sysdeps/ia64/nptl/pthreaddef.h: Likewise.
5420         * sysdeps/m68k/nptl/pthreaddef.h: Likewise.
5421         * sysdeps/microblaze/nptl/pthreaddef.h: Likewise.
5422         * sysdeps/mips/nptl/pthreaddef.h: Likewise.
5423         * sysdeps/tile/nptl/pthreaddef.h: Likewise.
5425 2014-05-13  Andreas Schwab  <schwab@suse.de>
5427         * sysdeps/unix/grantpt.c (grantpt): Fix typo in assertion.
5429 2014-05-12  Joseph Myers  <joseph@codesourcery.com>
5431         * sysdeps/unix/sysv/linux/kernel-features.h [__s390__]
5432         (__ASSUME_UTIMES): Do not condition on kernel version.
5433         (__ASSUME_PSELECT): Define unconditionally.
5434         (__ASSUME_PPOLL): Likewise.
5435         (__ASSUME_ATFCTS): Likewise.
5436         (__ASSUME_SET_ROBUST_LIST): Do not condition on kernel version.
5437         (__ASSUME_COMPLETE_READV_WRITEV): Define unconditionally.
5438         (__ASSUME_FUTEX_LOCK_PI): Do not condition on kernel version.
5439         (__ASSUME_UTIMENSAT): Define unconditionally.
5440         (__ASSUME_PRIVATE_FUTEX): Likewise.
5441         (__ASSUME_FALLOCATE): Likewise.
5442         (__ASSUME_O_CLOEXEC): Likewise.
5443         (__LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL): Remove.
5444         (__ASSUME_ARG_MAX_STACK_BASED): Likewise.
5445         (__ASSUME_ADJ_OFFSET_SS_READ): Define unconditionally.
5446         (__ASSUME_SOCK_CLOEXEC): Do not condition on kernel version.
5447         (__ASSUME_IN_NONBLOCK): Likewise.
5448         (__ASSUME_PIPE2): Likewise.
5449         (__ASSUME_EVENTFD2): Likewise.
5450         (__ASSUME_SIGNALFD4): Likewise.
5451         (__ASSUME_DUP3): Likewise.
5452         [__x86_64__ || __sparc__] (__ASSUME_ACCEPT4_SYSCALL): Likewise.
5453         (__ASSUME_FUTEX_CLOCK_REALTIME): Define unconditionally.
5454         (__ASSUME_AT_RANDOM): Likewise.
5455         (__ASSUME_PREADV): Likewise.
5456         (__ASSUME_PWRITEV): Likewise.
5457         (__ASSUME_REQUEUE_PI): Do not condition on kernel version.
5458         (__ASSUME_F_GETOWN_EX): Define unconditionally.
5459         (__ASSUME_XFS_RESTRICTED_CHOWN): Likewise.
5460         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
5461         [!__ASSUME_ARG_MAX_STACK_BASED]: Remove conditional code.
5462         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
5463         (__ASSUME_O_CLOEXEC): Define unconditionally.
5464         (__ASSUME_PSELECT): Do not undefine conditionally.
5465         (__ASSUME_PPOLL): Likewise.
5466         (__ASSUME_ATFCTS): Likewise.
5467         (__ASSUME_SET_ROBUST_LIST): Likewise.
5468         (__ASSUME_UTIMENSAT): Likewise.
5469         (__ASSUME_FDATASYNC): Define unconditionally.
5470         * sysdeps/unix/sysv/linux/arm/kernel-features.h
5471         (__ASSUME_SIGFRAME_V2): Likewise.
5472         )__ASSUME_EVENTFD2): Likewise.
5473         (__ASSUME_SIGNALFD4): Likewise.
5474         (__ASSUME_PSELECT): Do not undefine conditionally.
5475         (__ASSUME_PPOLL): Likewise.
5476         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
5477         (__ASSUME_PSELECT): Define unconditionally.
5478         (__ASSUME_PPOLL): Likewise.
5479         (__ASSUME_O_CLOEXEC): Likewise.
5480         (__ASSUME_SOCK_CLOEXEC): Likewise.
5481         (__ASSUME_IN_NONBLOCK): Likewise.
5482         (__ASSUME_PIPE2): Likewise.
5483         (__ASSUME_EVENTFD2): Likewise.
5484         (__ASSUME_SIGNALFD4): Likewise.
5485         (__ASSUME_DUP3): Likewise.
5486         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
5487         (__ASSUME_O_CLOEXEC): Likewise.
5488         (__ASSUME_SOCK_CLOEXEC): Likewise.
5489         (__ASSUME_IN_NONBLOCK): Likewise.
5490         (__ASSUME_PIPE2): Likewise.
5491         (__ASSUME_EVENTFD2): Likewise.
5492         (__ASSUME_SIGNALFD4): Likewise.
5493         (__ASSUME_DUP3): Likewise.
5494         * sysdeps/unix/sysv/linux/mips/kernel-features.h
5495         (__ASSUME_EVENTFD2): Likewise.
5496         (__ASSUME_SIGNALFD4): Likewise.
5497         (__ASSUME_ACCEPT4_SYSCALL): Likewise.
5499 2014-05-12  Andreas Schwab  <schwab@suse.de>
5501         [BZ #16932]
5502         * nis/nss_nis/nis-hosts.c (internal_gethostbyname2_r)
5503         (_nss_nis_gethostbyname4_r): Return error if item length is larger
5504         than maximum RPC packet size.
5505         * nis/nss_nis/nis-initgroups.c (initgroups_netid): Likewise.
5506         * nis/nss_nis/nis-network.c (_nss_nis_getnetbyname_r): Likewise.
5507         * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r)
5508         (_nss_nis_getservbyport_r): Likewise.
5510 2014-05-12  Will Newton  <will.newton@linaro.org>
5512         * malloc/Makefile (tests): Add tst-mallopt.
5513         * malloc/tst-mallopt.c: New file.
5515 2014-05-09  Roland McGrath  <roland@hack.frob.com>
5517         * sysdeps/arm/armv7/strcmp.S: Use sfi_breg prefix on loads not from sp.
5518         [NO_THUMB]: Cope without cbz, cnbz, and orn instructions.
5520 2014-05-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5522         * elf/Makefile (tst-tlsmod5.so): Add $(no-as-needed).
5523         (tst-tlsmod6.so): Likewise.
5525 2014-05-09  Roland McGrath  <roland@hack.frob.com>
5527         * sysdeps/gnu/unwind-resume.c (libgcc_s_resume): Mark as noreturn.
5529 2014-05-09  Joseph Myers  <joseph@codesourcery.com>
5531         [BZ #16064]
5532         * sysdeps/i386/fpu/fegetenv.c: Include <unistd.h>, <ldsodefs.h>
5533         and <dl-procinfo.h>.
5534         (__fegetenv): Save SSE state in envp->__eip if supported.
5535         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Save SSE state in
5536         envp->__eip if supported.
5537         * sysdeps/i386/fpu/fesetenv.c: Include <unistd.h>, <ldsodefs.h>
5538         and <dl-procinfo.h>.
5539         (__fesetenv): Always set __eip, __cs_selector, __opcode,
5540         __data_offset and __data_selector in environment to 0.  Set SSE
5541         state if supported.
5542         * sysdeps/x86/fpu/Makefile [$(subdir) = math] (tests): Add
5543         test-fenv-sse.
5544         [$(subdir) = math] (CFLAGS-test-fenv-sse.c): Add -msse2
5545         -mfpmath=sse.
5546         * sysdeps/x86/fpu/test-fenv-sse.c: New file.
5548 2014-05-09  Will Newton  <will.newton@linaro.org>
5550         * sysdeps/arm/preconfigure.ac: Set libc_commonpagesize
5551         and libc_relro_required for ARM.
5552         * sysdeps/arm/preconfigure: Regenerate.
5554 2014-05-09  Dominik Vogt  <vogt@linux.vnet.ibm.com>
5555             Stefan Liebler  <stli@linux.vnet.ibm.com>
5557         * config.make.in (enable-lock-elision): New Makefile variable.
5558         * configure.ac: Likewise.
5559         * configure: Regenerate.
5560         * sysdeps/s390/configure.ac:
5561         Add check for gcc transactions support.
5562         * sysdeps/s390/configure: Regenerate.
5563         * nptl/sysdeps/unix/sysv/linux/s390/Makefile: New file.
5564         Build elision files if enabled.
5565         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.c: New file.
5566         Add lock elision support for s390.
5567         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.h: Likewise.
5568         * nptl/sysdeps/unix/sysv/linux/s390/elision-lock.c: Likewise.
5569         * nptl/sysdeps/unix/sysv/linux/s390/elision-timed.c: Likewise.
5570         * nptl/sysdeps/unix/sysv/linux/s390/elision-trylock.c: Likewise.
5571         * nptl/sysdeps/unix/sysv/linux/s390/elision-unlock.c: Likewise.
5572         * nptl/sysdeps/unix/sysv/linux/s390/force-elision.h: Likewise.
5573         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c:
5574         Likewise.
5575         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c:
5576         Likewise.
5577         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c:
5578         Likewise.
5579         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c:
5580         Likewise.
5581         * nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h:
5582         (__lll_timedlock_elision, __lll_lock_elision)
5583         (__lll_unlock_elision, __lll_trylock_elision)
5584         (lll_timedlock_elision, lll_lock_elision)
5585         (lll_unlock_elision, lll_trylock_elision): Add.
5586         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
5587         (pthread_mutex_t): Add lock elision support for s390.
5589 2014-05-14  Wilco  <wdijkstr@arm.com>
5591         * sysdeps/arm/fclrexcpt.c: Cleanup.
5592         * sysdeps/arm/fedisblxcpt.c: Cleanup.
5593         * sysdeps/arm/feenablxcpt.c: Cleanup.
5594         * sysdeps/arm/fegetenv.c: Cleanup.
5595         * sysdeps/arm/fegetexcept.c: Cleanup.
5596         * sysdeps/arm/fegetround.c: Cleanup.
5597         * sysdeps/arm/feholdexcpt.c: Cleanup.
5598         * sysdeps/arm/fesetenv.c: Cleanup.
5599         * sysdeps/arm/fesetround.c: Cleanup.
5600         * sysdeps/arm/feupdateenv.c: Cleanup.
5601         * sysdeps/arm/fgetexcptflg.c: Cleanup.
5602         * sysdeps/arm/fraiseexcpt.c: Cleanup.
5603         * sysdeps/arm/fsetexcptflg.c: Cleanup.
5604         * sysdeps/arm/ftestexcept.c: Cleanup.
5605         * sysdeps/arm/get-rounding-mode.h: Cleanup.
5606         * sysdeps/arm/setfpucw.c: Cleanup.
5608 2014-05-09  Will Newton  <will.newton@linaro.org>
5610         * sysdeps/arm/armv7/strcmp.S: New file.
5611         * NEWS: Mention addition of ARMv7 optimized strcmp.
5613 2014-05-08  Roland McGrath  <roland@hack.frob.com>
5615         * Makeconfig ($(common-objpfx)config.status): Fix patsubst uses to
5616         look for %.ac rather than %.in.
5618         * sysdeps/mach/hurd/configure.ac (inhibit_glue): Remove variable.
5619         * sysdeps/unix/sysv/linux/configure.ac: Likewise.
5620         * sysdeps/mach/hurd/configure: Regenerated.
5621         * sysdeps/unix/sysv/linux/configure: Regenerated.
5623         * bits/utsname.h (_UTSNAME_DOMAIN_LENGTH): New macro, set to 0.
5625 2014-05-07  Steve Ellcey  <sellcey@mips.com>
5627         [BZ# 16922]
5628         * sysdeps/mips/sys/asm.h (INT_SUB): Fix definition.
5629         (LONG_SUB): Ditto.
5630         (PTR_SUB): Ditto.
5632 2014-05-07  Andreas Schwab  <schwab@suse.de>
5634         * sysdeps/posix/getaddrinfo.c (gaih_inet): Advance address pointer
5635         when skipping over non-matching result from nscd.
5637 2014-05-07  Ondřej Bílka  <neleai@seznam.cz>
5639         [BZ #16876]
5640         * nptl/sockperf.c (client): Check socket return value.
5642         [BZ #16877]
5643         * nscd/selinux.c (nscd_request_avc_has_perm): Check if there is
5644         nscd security class.
5646 2014-05-06  Roland McGrath  <roland@hack.frob.com>
5648         * sysdeps/unix/sysv/linux/arm/nptl/unwind.h: File moved to ...
5649         * sysdeps/arm/unwind.h: ... here.
5651 2014-05-06  Aurelien Jarno  <aurelien@aurel32.net>
5653         [BZ# 16916]
5654         * sysdeps/unix/sysv/linux/sparc/bits/eventfd.h (EFD_SEMAPHORE):
5655         Define.
5657 2014-05-06  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
5659         * sysdeps/powerpc/powerpc64/power7/strncpy.S: New file: Optimization.
5660         * sysdeps/powerpc/powerpc64/multiarch/strncpy.c: New file:
5661         multiarch strncpy for PPC64.
5662         * sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c: New file
5663         * sysdeps/powerpc/powerpc64/multiarch/strncpy-power7.S: New file
5664         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strpcpy, stpncpy
5665         multiarch optimizations.
5666         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
5667         (__libc_ifunc_impl_list): Likewise.
5668         * sysdeps/powerpc/powerpc64/power7/stpncpy.S: New file: Optimization.
5669         * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c: New file:
5670         multiarch stpncpy for PPC64.
5671         * sysdeps/powerpc/powerpc64/multiarch/stpncpy-ppc64.c: New file
5672         * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power7.S: New file
5674 2014-05-06  Andreas Schwab  <schwab@suse.de>
5676         [BZ #16912]
5677         * gmon/mcount.c (_MCOUNT_DECL): Use
5678         atomic_compare_and_exchange_bool_acq instead of
5679         catomic_compare_and_exchange_bool_acq.
5681 2014-05-05  Roland McGrath  <roland@hack.frob.com>
5683         * elf/Makefile (others, install-bin): Remove pldd.
5684         (pldd-modules): Variable removed.
5685         ($(objpfx)pldd): Target removed.
5686         * sysdeps/unix/sysv/linux/Makefile [$(subdir) = elf]
5687         (others, install-bin): Append pldd here.
5688         ($(objpfx)pldd): New target.
5690         * sysdeps/gnu/errlist.awk (BEGIN): Emit an initial #define of ERR_MAX
5691         to 0, so the first #if test emitted later doesn't see it undefined.
5692         (END): Emit "!defined ERRLIST_NO_COMPAT" to match what BEGIN does.
5693         * sysdeps/gnu/errlist.c: Regenerated.
5695 2014-05-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5697         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
5698         [libc_hidden_builtin_def]: Define to empty value.
5699         * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S:
5700         [libc_hidden_builtin_def]: Likewise.
5701         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S:
5702         [libc_hidden_builtin_def]: Likewise.
5703         * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S:
5704         [libc_hidden_builtin_def]: Likewise.
5705         * sysdeps/powerpc/powerpc64/multiarch/memcpy.c (memcpy): Redefined to
5706         __redirect_memcpy and define ifunc as default hidden symbol.
5707         * sysdeps/powerpc/powerpc64/multiarch/memset.c (memset): Likewise.
5708         * sysdeps/powerpc/powerpc64/multiarch/strlen.c (strlen): Likewise.
5710 2014-05-04  Adam Conrad  <adconrad@0c3.net>
5712         * locale/iso-4217.def: Reintroduce XDR currency.
5714 2014-05-04  Allan McRae  <allan@archlinux.org>
5716         * po/eo.po: Update Esperanto translation from translation project.
5718 2014-05-02  Carlos O'Donell  <carlos@redhat.com>
5720         * sysdeps/x86_64/multiarch/init-arch.h: Define FEATURE_INDEX_1 to 0,
5721         and FEATURE_INDEX_MAX to 1.
5722         [!__ASSEMBLER__]: Remove anonymous enum for FEATURE_INDEX_*.
5724 2014-05-01  Steve Ellcey  <sellcey@mips.com>
5726         * iconvdata/ansi_x3.110.c (ONE_DIRECTION): Define.
5727         * iconvdata/armscii-8.c (ONE_DIRECTION): Define.
5728         * iconvdata/big5.c (ONE_DIRECTION): Define.
5729         * iconvdata/big5hkscs.c (ONE_DIRECTION): Define.
5730         * iconvdata/cp1255.c (ONE_DIRECTION): Define.
5731         * iconvdata/cp1258.c (ONE_DIRECTION): Define.
5732         * iconvdata/cp932.c (ONE_DIRECTION): Define.
5733         * iconvdata/euc-cn.c (ONE_DIRECTION): Define.
5734         * iconvdata/euc-jisx0213.c (ONE_DIRECTION): Define.
5735         * iconvdata/euc-jp-ms.c (ONE_DIRECTION): Define.
5736         * iconvdata/euc-jp.c (ONE_DIRECTION): Define.
5737         * iconvdata/euc-kr.c (ONE_DIRECTION): Define.
5738         * iconvdata/euc-tw.c (ONE_DIRECTION): Define.
5739         * iconvdata/gb18030.c (ONE_DIRECTION): Define.
5740         * iconvdata/gbbig5.c (ONE_DIRECTION): Define.
5741         * iconvdata/gbgbk.c (ONE_DIRECTION): Define.
5742         * iconvdata/gbk.c (ONE_DIRECTION): Define.
5743         * iconvdata/ibm1364.c (ONE_DIRECTION): Define.
5744         * iconvdata/ibm930.c (ONE_DIRECTION): Define.
5745         * iconvdata/ibm932.c (ONE_DIRECTION): Define.
5746         * iconvdata/ibm933.c (ONE_DIRECTION): Define.
5747         * iconvdata/ibm935.c (ONE_DIRECTION): Define.
5748         * iconvdata/ibm937.c (ONE_DIRECTION): Define.
5749         * iconvdata/ibm939.c (ONE_DIRECTION): Define.
5750         * iconvdata/ibm943.c (ONE_DIRECTION): Define.
5751         * iconvdata/iso-2022-cn-ext.c (ONE_DIRECTION): Define.
5752         * iconvdata/iso-2022-cn.c (ONE_DIRECTION): Define.
5753         * iconvdata/iso-2022-jp-3.c (ONE_DIRECTION): Define.
5754         * iconvdata/iso-2022-jp.c (ONE_DIRECTION): Define.
5755         * iconvdata/iso-2022-kr.c (ONE_DIRECTION): Define.
5756         * iconvdata/iso646.c (ONE_DIRECTION): Define.
5757         * iconvdata/iso8859-1.c (ONE_DIRECTION): Define.
5758         * iconvdata/iso_11548-1.c (ONE_DIRECTION): Define.
5759         * iconvdata/iso_6937-2.c (ONE_DIRECTION): Define.
5760         * iconvdata/iso_6937.c (ONE_DIRECTION): Define.
5761         * iconvdata/johab.c (ONE_DIRECTION): Define.
5762         * iconvdata/shift_jisx0213.c (ONE_DIRECTION): Define.
5763         * iconvdata/sjis.c (ONE_DIRECTION): Define.
5764         * iconvdata/t.61.c (ONE_DIRECTION): Define.
5765         * iconvdata/tcvn5712-1.c (ONE_DIRECTION): Define.
5766         * iconvdata/tscii.c (ONE_DIRECTION): Define.
5767         * iconvdata/uhc.c (ONE_DIRECTION): Define.
5768         * iconvdata/unicode.c (ONE_DIRECTION): Define.
5769         * iconvdata/utf-16.c (ONE_DIRECTION): Define.
5770         * iconvdata/utf-32.c (ONE_DIRECTION): Define.
5771         * iconvdata/utf-7.c (ONE_DIRECTION): Define.
5773 2014-05-01  Roland McGrath  <roland@hack.frob.com>
5775         * libio/libioP.h [!_IO_USE_OLD_IO_FILE && !_G_IO_NO_BACKWARD_COMPAT]
5776         (_IO_JUMPS_OFFSET): Define to 0.
5778         * nptl/sysdeps/pthread/bits/libc-lock.h
5779         [_LIBC && (!NOT_IN_libc || IS_IN_libpthread)]
5780         (__libc_lock_define_initialized_recursive): Always define using
5781         initializer.  Modern compilers treat uninitialized (implicit zero) and
5782         explicit zero initializers the same (i.e. put the datum in bss).
5784 2014-05-01  Andreas Schwab  <schwab@linux-m68k.org>
5786         * nscd/nscd-client.h: Include <string.h>.
5788 2014-05-01  David S. Miller  <davem@davemloft.net>
5790         [BZ #16885]
5791         * sysdeps/sparc/sparc64/strcmp.S: Fix end comparison handling when
5792         multiple zero bytes exist at the end of a string.
5793         Reported by Aurelien Jarno <aurelien@aurel32.net>
5795         * string/test-strcmp.c (check): Add explicit test for situations where
5796         there are multiple zero bytes after the first.
5798 2014-05-01  Andreas Schwab  <schwab@linux-m68k.org>
5800         [BZ #16890]
5801         * stdio-common/vfprintf.c (process_arg) [%p]: Mark string as wide
5802         when compiling wprintf.
5803         * stdio-common/tstdiomisc.c (t3): New function.
5804         (main): Call it.
5806 2014-05-01  Steve Ellcey  <sellcey@mips.com>
5808         * intl/iconv/skeleton.c (ONE_DIRECTION): Remove define.
5809         * iconv/gconv_simple.c (ONE_DIRECTION): Define.
5810         * iconvdata/8bit-gap.c (ONE_DIRECTION): Ditto.
5811         * iconvdata/8bit-generic.c (ONE_DIRECTION): Ditto.
5813 2014-05-01  Steve Ellcey  <sellcey@mips.com>
5815         * stdlib/longlong.h: Updated from GCC.
5817 2014-05-01  Will Newton  <will.newton@linaro.org>
5818             Bernard Ogden  <bernie.ogden@linaro.org>
5820         * NEWS: Update fixed bug list.
5822         [BZ #15119]
5823         * sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.c: Remove file.
5825 2014-04-30  David S. Miller  <davem@davemloft.net>
5827         * sysdeps/sparc/fpu/fenv_private.h (HAVE_RM_CTX): Define.
5828         (libc_feholdexcept_setround_sparc_ctx): New function.
5829         (libc_fesetenv_sparc_ctx): Likewise.
5830         (libc_feupdateenv_sparc_ctx): Likewise.
5831         (libc_feholdsetround_sparc_ctx): Likewise.
5832         (libc_feholdexcept_setround_ctx): Define.
5833         (libc_feholdexcept_setroundf_ctx): Likewise.
5834         (libc_feholdexcept_setroundl_ctx): Likewise.
5835         (libc_fesetenv_ctx): Likewise.
5836         (libc_fesetenvf_ctx): Likewise.
5837         (libc_fesetenvl_ctx): Likewise.
5838         (libc_feupdateenv_ctx): Likewise.
5839         (libc_feupdateenvf_ctx): Likewise.
5840         (libc_feupdateenvl_ctx): Likewise.
5841         (libc_feresetround_ctx): Likewise.
5842         (libc_feresetroundf_ctx): Likewise.
5843         (libc_feresetroundl_ctx): Likewise.
5844         (libc_feholdsetround_ctx): Likewise.
5845         (libc_feholdsetroundf_ctx): Likewise.
5846         (libc_feholdsetroundl_ctx): Likewise.
5848         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect
5849         with __USE_GNU instead of XOPEN cpp guards.
5851         * sysdeps/sparc/bits/string.h (_STRING_ARCH_unaligned): Define to
5852         0.
5854         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect
5855         with XOPEN cpp guards.
5857 2014-04-30  Julian Brown  <julian@codesourcery.com>
5859         [BZ #16888]
5860         * sysdeps/arm/dl-machine.h (elf_machine_rela): Fix R_ARM_IRELATIVE
5861         handling.
5863 2014-04-30  Joseph Myers  <joseph@codesourcery.com>
5865         [BZ #9894]
5866         * sysdeps/unix/sysv/linux/configure.ac (LIBC_LINUX_VERSION):
5867         Change to 2.6.32.
5868         (arch_minimum_kernel): Change all 2.6.16 settings to 2.6.32.
5869         * sysdeps/unix/sysv/linux/configure: Regenerated.
5870         * sysdeps/unix/sysv/linux/microblaze/configure.ac: Remove file.
5871         * sysdeps/unix/sysv/linux/microblaze/configure: Likewise.
5872         * sysdeps/unix/sysv/linux/tile/configure.ac: Likewise.
5873         * sysdeps/unix/sysv/linux/tile/configure: Likewise.
5874         * README: Update reference to required Linux kernel version.
5875         * manual/install.texi (Linux): Update reference to required Linux
5876         kernel headers version.
5877         * INSTALL: Regenerated.
5879         * conform/data/stdlib.h-data [POSIX] (stddef.h): Do not allow
5880         header inclusion.
5881         [POSIX] (limits.h): Likewise.
5882         [POSIX] (math.h): Likewise.
5883         [POSIX] (sys/wait.h): Likewise.
5884         * conform/data/string.h-data [POSIX || UNIX98] (strtok_r): Require
5885         function.
5886         [POSIX] (stddef.h): Do not allow header inclusion.
5888 2014-04-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5890         * sysdeps/generic/symbol-hacks.h (memcpy): Add internal alias.
5892 2014-04-30  Yang Yingliang  <yangyingliang@huawei.com>
5894         * nptl/pthread_cond_broadcast.c (__pthread_cond_broadcast):
5895         Return immediately after lll_futex_wake.
5897 2014-04-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
5899         [BZ #16791]
5900         * nscd/nscd-client.h (datahead_init_common): Initialize entire
5901         structure.
5902         (datahead_init_pos): Call datahead_init_common early.
5903         (datahead_init_neg): Likewise.
5905         * nscd/nscd-client.h (datahead_init_common, datahead_init_pos,
5906         datahead_init_neg): New functions.
5907         * nscd/aicache.c (addhstaiX): Use them.
5908         * nscd/grpcache.c (cache_addgr): Likewise.
5909         * nscd/hstcache.c (cache_addhst): Likewise.
5910         * nscd/initgrcache.c (addinitgroupsX): Likewise.
5911         * nscd/netgroupcache.c (do_notfound): Likewise.
5912         (addgetnetgrentX): Likewise.
5913         (addinnetgrX): Likewise.
5914         * nscd/pwdcache.c (cache_addpw): Likewise.
5915         * nscd/servicescache.c (cache_addserv): Likewise.
5917 2014-04-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
5918             Atsushi Onoe  <atsushi@onoe.org>
5920         [BZ #14308]
5921         [BZ #12994]
5922         [BZ #13651]
5923         * resolv/res_query.c (__libc_res_nsearch): Return if at least
5924         one response is valid.
5925         * resolv/res_send.c (send_dg): Check for validity of other
5926         response if the current response is a referral.
5928 2014-04-29  Steve Ellcey  <sellcey@mips.com>
5930         * iconv/skeleton.c (ONE_DIRECTION): Set default value if not set.
5932 2014-04-29  Stefan Liebler  <stli@linux.vnet.ibm.com>
5934         [BZ #16823]
5935         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl):
5936         Always divide by positive zero when computing -Inf result.
5937         * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Likewise.
5938         * sysdeps/ieee754/flt-32/s_log1pf.c (__log1pf): Likewise.
5940 2014-04-28  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5942         * sysdeps/powerpc/fpu/fclrexcpt.c (__feclearexcept): Do not update
5943         FPSCR if value do not change.
5944         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
5945         * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Likewise.
5946         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Likewise.
5947         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Likewise.
5948         * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Likewise.
5949         * sysdeps/powerpc/fpu/fenv_libc.h (fenv_reg_to_exceptions): New helper
5950         function.
5952 2014-05-29  Carlos O'Donell  <carlos@systemhalted.org>
5954         * sysdeps/hppa: Move directory from ports/sysdeps/hppa.
5955         * sysdeps/unix/sysv/linux/hppa: Move directory from
5956         ports/systeps/unix/sysv/linux/hppa.
5957         * README: Update listing for hppa-*-linux-gnu.
5959 2014-04-28  Ondřej Bílka  <neleai@seznam.cz>
5961         [BZ #16754]
5962         * manual/stdio.texi (Hook functions): Fix types of stream hook
5963         functions.
5964         [BZ #16854]
5965         * socket/sys/socket.h: Fix typo in comment.
5967 2014-04-28  Wilco  <wdijkstr@arm.com>
5969         * sysdeps/arm/fenv_private.h: New file.
5970         * sysdeps/arm/math_private.h: New file.
5971         * sysdeps/arm/fpu_control.h: Add _FPU_MASK_NCZV and _FPU_MASK_EXCEPT.
5973 2014-04-25  H.J. Lu  <hongjiu.lu@intel.com>
5975         * sysdeps/x86/bits/link.h (La_x86_64_regs): Replace __int128
5976         with __int128_t.
5977         (La_x86_64_retval): Likewise.
5979 2014-04-24  Ian Bolton  <ian.bolton@arm.com>
5981         * sysdeps/aarch64/fpu/fclrexcpt.c (feclearexcept): Don't write to
5982         fpsr if value didn't change.
5983         * sysdeps/aarch64/fpu/fedisblxcpt.c (fedisableexcept): Don't write
5984         to fpcr if value didn't change.
5985         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept): Likewise.
5986         * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Don't write to
5987         fpsr or fpcr if value didn't change.
5988         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Likewise.
5989         * sysdeps/aarch64/fpu/fesetround.c (fesetround): Don't write to
5990         fpcr if value didn't change.
5991         * sysdeps/aarch64/fpu/fsetexcptflg.c (fesetexceptflag): Don't write
5992         to fpsr if value didn't change.
5994 2014-02-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
5996         * nptl/tst-sem3.c: Use test-skeleton.c
5997         (main): Rename to do_test.  Use return instead of
5998         exit.
5999         * nptl/tst-sem4.c: Use test-skeleton.c
6000         (main): Rename to do_test.
6002 2014-04-22  David S. Miller  <davem@davemloft.net>
6004         * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h
6005         (struct sigaction): New struct member __glibc_reserved0, change
6006         type of sa_flags to int.
6008 2014-04-22  Yufeng Zhang  <yufeng.zhang@arm.com>
6010         * stdlib/longlong.h (count_leading_zeros, count_trailing_zeros)
6011         (COUNT_LEADING_ZEROS_0): Define for AArch64.
6013 2014-04-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
6015         * nptl/sysdeps/unix/sysv/linux/sem_trywait.c: Include atomic.h.
6016         * nptl/sysdeps/unix/sysv/linux/sem_wait.c: Likewise.
6018 2014-04-22  Will Newton  <will.newton@linaro.org>
6019             Venkataramanan Kumar  <venkataramanan.kumar@linaro.org>
6021         * sysdeps/aarch64/__longjmp.S: Include stap-probe.h.
6022         (__longjmp): Add longjmp and longjmp_target SystemTap
6023         probes.
6024         * sysdeps/aarch64/setjmp.S: Include stap-probe.h.
6025         (__sigsetjmp): Add setjmp SystemTap probe.
6027 2014-04-17  Carlos O'Donell  <carlos@redhat.com>
6029         * manual/intro.texi (Roadmap to the manual): Sort chapter listing to
6030         match manual order.
6032 2014-04-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
6034         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c: Remove file.
6036         * sysdeps/powerpc/fpu/fenv_private.h
6037         (libc_feholdexcept_setroundl_ctx): Define to
6038         libc_feholdexcept_setround_ppc_ctx.
6039         (libc_fesetenvl_ctx): Define to libc_fesetenv_ppc_ctx.
6040         (libc_feholdsetroundl_ctx): Define to libc_feholdsetround_ppc_ctx.
6041         (libc_feresetroundl_ctx): Define to libc_feresetround_ppc_ctx.
6042         (libc_feupdateenvl_ctx): libc_feupdateenv_ppc_ctx.
6044 2014-04-17  Ian Bolton  <ian.bolton@arm.com>
6046         * sysdeps/aarch64/math-tests.h: New file.
6048 2014-04-17  Sihai Yao  <sihai.ysh@alibaba-inc.com>
6050         * sysdeps/x86_64/multiarch/ifunc-defines.sym (COMMON_CPUID_INDEX_7):
6051         New.
6052         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
6053         Check and set bit_AVX2_Usable.
6054         * sysdeps/x86_64/multiarch/init-arch.h (bit_AVX2_Usable): New
6055         macro.
6056         (bit_AVX2): Likewise.
6057         (index_AVX2_Usable): Likewise.
6058         (CPUID_AVX2): Likewise.
6059         (HAS_AVX2): Likewise.
6061 2014-04-17  Will Newton  <will.newton@linaro.org>
6063         * manual/setjmp.texi (System V contexts): Add note that
6064         calling setcontext on a context created by a call to a
6065         signal handler is undefined.  Update text to note that
6066         setcontext from a signal handler is possible but not
6067         recommended.
6069         [BZ #16629]
6070         * stdlib/tst-setcontext.c: Include signal.h.
6071         (main): Check that the signal stack before and
6072         after swapcontext is the same.
6074         * sysdeps/unix/sysv/linux/aarch64/setcontext.S (__setcontext):
6075         Re-implement to restore registers in user code and avoid
6076         rt_sigreturn system call.
6078 2014-04-17  Wilco  <wdijkstr@arm.com>
6080         * sysdeps/arm/math-tests.h: New file: Set ARM math-test settings.
6081         * sysdeps/generic/math-tests.h: Add macro (EXCEPTION_ENABLE_SUPPORTED).
6082         * math/test-fenv.c: Skip exception trap tests on targets which only
6083         support non-stop mode.
6085 2014-04-17  Ian Bolton  <ian.bolton@arm.com>
6086             Wilco Dijkstra  <wilco.dijkstra@arm.com>
6088         * sysdeps/aarch64/fpu/math_private.h (HAVE_RM_CTX)
6089         (libc_feholdsetround_aarch64_ctx)
6090         (libc_feholdsetround_ctx, libc_feholdsetroundf_ctx)
6091         (libc_feholdsetroundl_ctx, libc_feresetround_aarch64_ctx)
6092         (libc_feresetround_ctx, libc_feresetroundf_ctx)
6093         (libc_feresetroundl_ctx, libc_feresetround_noex_aarch64_ctx)
6094         (libc_feresetround_noex_ctx, libc_feresetround_noexf_ctx)
6095         (libc_feresetround_noexl_ctx): Define.
6097 2014-04-16  Richard Henderson  <rth@redhat.com>
6099         * sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c: Remove.
6101         * sysdeps/alpha/Makefile [debug] (CFLAGS-backtrace.c): Enable
6102         unwind tables.
6104         * sysdeps/unix/alpha/sysdep.h (__pointer_chk_guard): Remove
6105         const from the non-libc, non-ldso copy.
6107         * sysdeps/alpha/libm-test-ulps: Regenerate.
6109 2014-04-16  Ian Bolton  <ian.bolton@arm.com>
6110             Wilco Dijkstra  <wilco.dijkstra@arm.com>
6112         * sysdeps/aarch64/fpu/math_private.h: New file.
6114 2014-04-16  Marcus Shawcroft  <marcus.shawcroft@arm.com>
6116         * sysdeps/aarch64/libm-test-ulps: Regenerate.
6118 2014-04-16  Igor Zamyatin  <igor.zamyatin@intel.com>
6120         * sysdeps/x86_64/bits/link.h (La_x86_64_regs): Add lr_bnd.
6121         (La_x86_64_retval): Add lrv_bnd0 and lrv_bnd1.
6122         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Save
6123         Intel MPX bound registers before _dl_profile_fixup.
6124         * sysdeps/x86_64/dl-trampoline.h: Restore Intel MPX bound
6125         registers after _dl_profile_fixup.  Save and restore bound
6126         registers bnd0/bnd1 when calling _dl_call_pltexit.
6127         * sysdeps/x86_64/link-defines.sym (BND_SIZE): New.
6128         (LR_BND_OFFSET): Likewise.
6129         (LRV_BND0_OFFSET): Likewise.
6130         (LRV_BND1_OFFSET): Likewise.
6132 2014-04-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
6134         * sysdeps/mach/hurd/tls.h (dtv, dtv_t, tcbhead_t): Move declarations
6135         to...
6136         * sysdeps/mach/hurd/i386/tls.h: ... here.
6137         (tcbhead_t): Add multiple_threads, sysinfo, stack_guard,
6138         pointer_guard, gscope_flag, private_futex, __private_tm, __private_ss
6139         fields.
6141 2014-04-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
6143         * sysdeps/mach/munmap.c (__munmap): Return EINVAL if `addr' is 0.
6145 2014-04-16  Stefan Liebler  <stli@linux.vnet.ibm.com>
6147         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
6149 2014-04-16  Stefan Liebler  <stli@linux.vnet.ibm.com>
6151         [BZ #14770]
6152         * sysdeps/s390/configure.ac: Check for Binutils >= 2.24.
6153         * sysdeps/s390/configure: Regenerate.
6155         [BZ #16824]
6156         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_y1l):
6157         Set round-to-nearest internally to reduce error accumulation.
6159 2014-04-16  Alan Modra  <amodra@gmail.com>
6161         [BZ #16740]
6162         [BZ #16619]
6163         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Rewrite.
6164         * math/libm-test.inc (frexp_test_data): Add tests.
6165         * NEWS: Update fixed bug list.
6167 2014-04-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
6169         * benchtests/Makefile: Depend on libraries in build directory.
6170         (bench-math): Separate out math tests.
6171         (bench-pthread): Separate out pthread tests.
6172         (bench): Include math and pthread tests.
6174 2014-04-14  Carlos O'Donell  <carlos@redhat.com>
6176         [BZ #16831]
6177         * csu/libc-start.c (LIBC_START_MAIN) [!SHARED]: Call
6178         _dl_debug_initialize.
6180         * configure.ac: Remove SELinux header check.
6181         * configure: Regenerate.
6182         * nscd/selinux.c (perms): Array of const char* to permission names.
6183         (nscd_request_avc_has_perm): Call security_deny_unknown to find
6184         default policy. Call string_to_security_class and string_to_av_perm to
6185         translate strings. Enforce default policy and call avs_has_perm with
6186         results of translated strings.
6188 2014-04-13  David S. Miller  <davem@davemloft.net>
6190         * sysdeps/sparc/fpu/libm-test-ulps: Update.
6192 2014-04-12  Allan McRae  <allan@archlinux.org>
6194         [BZ #16838]
6195         * manual/string.texi (Collation Functions): Fix qsort argument
6196         order in example.
6197         Reported by David C. Rankin <drankinatty@suddenlinkmail.com>.
6199 2014-04-11  Chris Metcalf  <cmetcalf@tilera.com>
6201         * math/test-fenv-preserve.c [FE_ALL_EXCEPT == 0] (do_test):
6202         Make the test a no-op if there are no exceptions defined.
6204 2014-04-11  Paul Pluzhnikov  <ppluzhnikov@google.com>
6206         * elf/Makefile (tests): make tst-dlopen-aout conditional on
6207         enable-hardcoded-path-in-tests
6209 2014-04-11  Will Newton  <will.newton@linaro.org>
6211         * benchtests/Makefile (extra-objs): Add json-lib.o.
6212         (bench-func): Tidy up JSON output.
6213         * benchtests/bench-skeleton.c: Include json-lib.h.
6214         (main): Use JSON library functions to do output of
6215         benchmark results.
6216         * benchtests/bench-timing-type.c (main): Output the
6217         timing type simply, leaving formatting to the user.
6218         * benchtests/json-lib.c: New file.
6219         * benchtests/json-lib.h: Likewise.
6221 2014-04-11  Torvald Riegel  <triegel@redhat.com>
6223         [BZ #15215]
6224         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_once.c: Moved to ...
6225         * nptl/sysdeps/unix/sysv/linux/pthread_once.c: ... here.  Add missing
6226         memory barriers.  Add comments.
6227         * sysdeps/unix/sysv/linux/aarch64/nptl/pthread_once.c: Remove file.
6228         * sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c: Remove file.
6229         * sysdeps/unix/sysv/linux/ia64/nptl/pthread_once.c: Remove file.
6230         * sysdeps/unix/sysv/linux/m68k/nptl/pthread_once.c: Remove file.
6231         * sysdeps/unix/sysv/linux/mips/nptl/pthread_once.c: Remove file.
6232         * sysdeps/unix/sysv/linux/tile/nptl/pthread_once.c: Remove file.
6234 2014-04-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
6236         * sysdeps/s390/s390-32/configure.ac: Unify file with ...
6237         * sysdeps/s390/s390-64/configure.ac: ... this ...
6238         * sysdeps/s390/configure.ac: ... to here.
6239         * sysdeps/s390/s390-32/configure: Delete file.
6240         * sysdeps/s390/s390-64/configure: Delete file.
6241         * sysdeps/s390/configure: Regenerate.
6243 2014-04-11  Joseph Anthony Pasquale Holsten  <joseph@josephholsten.com>
6245         * resolv/res_query.c (__libc_res_nsearch): Fix typo in comment.
6247 2014-04-11  Will Newton  <will.newton@linaro.org>
6249         * malloc/malloc.c [!MALLOC_DEBUG]: #define MALLOC_DEBUG
6250         to zero if it is not defined elsewhere.  (mtrim): Test
6251         the value of MALLOC_DEBUG with #if rather than #ifdef.
6253 2014-04-10 Torvald Riegel  <triegel@redhat.com>
6255         * benchtests/pthread_once-inputs: New file.
6256         * benchtests/pthread_once-source.c: New file.
6257         * benchtests/README: Update documentation.
6259 2014-04-09  Igor Zamyatin  <igor.zamyatin@intel.com>
6260             H.J. Lu  <hongjiu.lu@intel.com>
6262         * config.h.in (HAVE_MPX_SUPPORT): New #undef.
6263         * sysdeps/x86_64/configure.ac: Set HAVE_MPX_SUPPORT.
6264         * sysdeps/x86_64/configure: Regenerated.
6265         * sysdeps/x86_64/dl-trampoline.S (REGISTER_SAVE_AREA): New
6266         macro.
6267         (REGISTER_SAVE_RAX): Likewise.
6268         (REGISTER_SAVE_RCX): Likewise.
6269         (REGISTER_SAVE_RDX): Likewise.
6270         (REGISTER_SAVE_RSI): Likewise.
6271         (REGISTER_SAVE_RDI): Likewise.
6272         (REGISTER_SAVE_R8): Likewise.
6273         (REGISTER_SAVE_R9): Likewise.
6274         (REGISTER_SAVE_BND0): Likewise.
6275         (REGISTER_SAVE_BND1): Likewise.
6276         (REGISTER_SAVE_BND2): Likewise.
6277         (_dl_runtime_resolve): Use them.  Save and restore Intel MPX
6278         bound registers when calling _dl_fixup.
6280 2014-04-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
6282         * bits/string.h (_STRING_ARCH_unaligned): Define it to 0.
6283         * crypt/sha256.c (_STRING_ARCH_unaligned): Check its value instead
6284         of its definition.
6285         * iconv/gconv_simple.c (_STRING_ARCH_unaligned): Likewise.
6286         * iconv/loop.c (_STRING_ARCH_unaligned): Likewise.
6287         * iconv/skeleton.c (_STRING_ARCH_unaligned): Likewise.
6288         * nscd/nscd_gethst_r.c (_STRING_ARCH_unaligned): Likewise.
6289         * nscd/nscd_getserv_r.c (_STRING_ARCH_unaligned): Likewise.
6290         * nscd/nscd_helper.c (_STRING_ARCH_unaligned): Likewise.
6291         * resolv/res_send.c (_STRING_ARCH_unaligned): Likewise.
6293 2014-04-09  Peter Brett  <peter@peter-b.co.uk>
6295         [BZ #15514]
6296         * sysdeps/posix/pathconf.c (__pathconf): Use statvfs64() for
6297         pathconf(_PC_NAME_MAX).
6299 2014-04-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
6301         * nptl/sysdeps/pthread/pthread.h (__PTHREAD_MUTEX_HAVE_ELISION):
6302         Remove macro usage.
6303         (__PTHREAD_SPINS): Move definition to ...
6304         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
6305         (__PTHREAD_SPINS): ... here.
6306         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
6307         (__PTHREAD_SPIN): Likewise.
6308         * nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h
6309         (__PTHREAD_SPIN): Likewise.
6310         * nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h
6311         (__PTHREAD_SPIN): Likewise.
6312         * nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h
6313         (__PTHREAD_SPIN): Likewise.
6314         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h
6315         (__PTHREAD_SPIN): Likewise.
6316         * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h
6317         (__PTHREAD_SPIN): Likewise.
6318         * sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h
6319         (__PTHREAD_SPIN): Likewise.
6320         * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h
6321         (__PTHREAD_SPIN): Likewise.
6322         * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h
6323         (__PTHREAD_SPIN): Likewise.
6324         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h
6325         (__PTHREAD_SPIN): Likewise.
6326         * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h
6327         (__PTHREAD_SPIN): Likewise.
6328         * sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h
6329         (__PTHREAD_SPIN): Likewise.
6331         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
6332         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: new file.
6333         * sysdeps/powerpc/powerpc64/power6x/multiarch/Implies: New file.
6334         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Remove multiarch
6335         imply folder.
6336         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Likewise.
6337         * sysdeps/powerpc/powerpc64/power7/fpu/Implies: Likewise.
6338         * sysdeps/powerpc/powerpc64/power8/fpu/Implies: Likewise.
6339         * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: Adjust
6340         correct imply path.
6341         * sysdeps/powerpc/powerpc64/power7/strncat.S (STRLEN): Define correct
6342         strlen symbol for non multi-arch builds.
6343         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (__isnan): Add
6344         missing hidden_def and weak_alias.
6346 2014-04-08  Carlos O'Donell  <carlos@redhat.com>
6348         * manual/ipc.texi (sem_close): AC-unsafe because of aculock.
6350 2014-04-07  Will Newton  <will.newton@linaro.org>
6352         * string/basename.c [HAVE_CONFIG_H]: Remove #ifdef and
6353         and contents.  [!_LIBC] Remove #ifndef and contents.
6354         (basename): Use ANSI prototype.  [_LIBC] Remove #idef.
6355         * string/memccpy.c (__memccpy): Use ANSI prototype.
6356         * string/memfrob.c (memfrob): Likewise.
6357         * string/strcoll.c (STRCOLL): Likewise.
6358         * string/strlen.c (strlen): Likewise.
6359         * string/strtok.c (STRTOK): Likewise.
6360         * string/strcat.c: Remove unused #include of memcopy.h.
6361         (strcat): Use ANSI prototype.
6362         * string/strchr.c: Remove unused #include of memcopy.h.
6363         (strchr): Use ANSI prototype.
6364         * string/strcmp.c: Remove unused #include of memcopy.h.
6365         (strcmp): Use ANSI prototype.
6366         * string/strcpy.c: Remove unused #include of memcopy.h.
6367         (strcpy): Use ANSI prototype.
6369 2014-04-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
6371         * Makeconfig (CPPFLAGS): Add config-extra-cppflags to list.
6372         * config.make.in (config-extra-cppflags): Set it from
6373         libc_extra_cppflags.
6374         * configure.ac (libc_extra_cflags): Make it accumulate over
6375         configure fragments.
6376         (libc_extra_cppflags): New flag.
6377         * configure. Regenerate.
6378         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
6379         (libc_cv_ppc64_def_call_elf): Define it to yes if compiler does
6380         not set _CALL_ELF and add -D_CALL_ELF=1 to libc_extra_cppflags.
6381         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Regenerate.
6383         [BZ #16815]
6384         * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S (__nearbyint): Fix
6385         result for FE_DOWNWARD rounding mode.
6386         * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S (__nearbyintf):
6387         Likewise.
6388         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
6390 2014-04-04  Chris Metcalf  <cmetcalf@tilera.com>
6392         * sysdeps/tile/dl-runtime.c (_dl_unmap): Fix cut-and-paste bug
6393         in function argument name.
6395 2014-04-03  David Svoboda  <svoboda@cert.org>
6397         [BZ #5666]
6398         * manual/stdio.texi (Line-Oriented Input): Document buffer allocation
6399         explicitly.
6401 2014-04-03  Roland McGrath  <roland@hack.frob.com>
6403         * elf/dl-unmap-segments.h: New file.
6404         * sysdeps/generic/ldsodefs.h
6405         (DL_UNMAP): Use _dl_unmap_segments in place of __munmap.
6406         * elf/dl-close.c: Include <dl-unmap-segments.h>.
6407         * elf/dl-fptr.c: Likewise.
6408         (_dl_unmap): Use _dl_unmap_segments in place of __munmap.
6409         * sysdeps/aarch64/tlsdesc.c: Likewise.
6410         * sysdeps/arm/tlsdesc.c: Likewise.
6411         * sysdeps/i386/tlsdesc.c: Likewise.
6412         * sysdeps/tile/dl-runtime.c: Likewise.
6413         * sysdeps/x86_64/tlsdesc.c: Likewise.
6414         * elf/dl-load.h: New file.
6415         * elf/dl-load.c: Include it.
6416         (MAP_FILE, MAP_COPY, MAP_BASE_ADDR):
6417         Macros moved to dl-load.h.
6418         (ELF_PREFERRED_ADDRESS_DATA, ELF_PREFERRED_ADDRESS): Likewise.
6419         (_dl_map_object_from_fd): Type 'struct loadcmd' moved to dl-load.h.
6420         Use _dl_unmap_segments in place of __munmap.
6421         Break out segment-mapping loop into ...
6422         * elf/dl-map-segments.h (_dl_map_segments): ... here, in new file.
6424 2014-04-03  Will Newton  <will.newton@linaro.org>
6426         * elf/dl-lookup.c (do_lookup_x): Remove comment
6427         referring to nested function and move variable
6428         declarations down to before first use.
6430 2014-04-02  Joseph Myers  <joseph@codesourcery.com>
6432         [BZ #16799]
6433         [BZ #16800]
6434         * math/s_catan.c (__catan): Avoid passing -0 denominator to atan2
6435         with 0 numerator.
6436         * math/s_catanf.c (__catanf): Likewise.
6437         * math/s_catanh.c (__catanh): Likewise.
6438         * math/s_catanhf.c (__catanhf): Likewise.
6439         * math/s_catanhl.c (__catanhl): Likewise.
6440         * math/s_catanl.c (__catanl): Likewise.
6441         * sysdeps/ieee754/flt-32/e_logf.c (__ieee754_logf): Always divide
6442         by positive zero when computing -Inf result.
6443         * math/libm-test.inc (catan_test): Use ALL_RM_TEST.
6444         (catanh_test): Likewise.
6445         * sysdeps/i386/fpu/libm-test-ulps: Update.
6446         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
6448         [BZ #16789]
6449         * math/s_clog.c (__clog): Use math_force_eval to ensure underflow
6450         instead of using underflowing value in computing result.
6451         * math/s_clog10.c (__clog10): Likewise.
6452         * math/s_clog10f.c (__clog10f): Likewise.
6453         * math/s_clog10l.c (__clog10l): Likewise.
6454         * math/s_clogf.c (__clogf): Likewise.
6455         * math/s_clogl.c (__clogl): Likewise.
6456         * math/libm-test.inc (clog_test): Use ALL_RM_TEST.
6457         (clog10_test): Likewise.
6458         * sysdeps/i386/fpu/libm-test-ulps: Update.
6459         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
6461 2014-04-02  Alan Modra  <amodra@gmail.com>
6463         [BZ #16739]
6464         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Correct
6465         output when value is near a power of two.  Use int64_t for lx and
6466         remove casts.  Use decimal rather than hex exponent constants.
6467         Don't use long double multiplication when double will suffice.
6468         * math/libm-test.inc (nextafter_test_data): Add tests.
6469         * NEWS: Add 16739 and 16786 to bug list.
6471         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Correct stream hint.
6473         * sysdeps/powerpc/powerpc64/start.S: Add @toc to toc symbol reference.
6475 2014-04-01  Will Newton  <will.newton@linaro.org>
6477         * benchtests/Makefile (CFLAGS-bench-ffs.c): Add
6478         -fno-builtin.  (CFLAGS-bench-ffsll.c): Likewise.
6480 2014-04-01  Florian Weimer  <fweimer@redhat.com>
6482         [BZ #13347]
6483         * nptl/nptl-init.c (sighandler_setxid): Check system call result.
6484         * nptl/tst-setuid2.c: New file.
6485         * nptl/Makefile (xtests): Add tst-setuid2.
6487 2014-04-01  Alan Modra  <amodra@gmail.com>
6489         [BZ #16786]
6490         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Don't trash stack.
6492 2014-03-31  Joseph Myers  <joseph@codesourcery.com>
6494         [BZ #6803]
6495         [BZ #6804]
6496         * math/w_scalb.c (__scalb): For non-SVID mode, check result and
6497         set errno as appropriate.
6498         * math/w_scalbf.c (__scalbf): Likewise.
6499         * math/w_scalbl.c (__scalbl): Likewise.
6500         * math/gen-libm-test.pl (parse_args): Handle ERRNO_PLUS_OFLOW,
6501         ERRNO_MINUS_OFLOW, ERRNO_PLUS_UFLOW and ERRNO_MINUS_UFLOW.
6502         * math/libm-test.inc (scalb_test_data): Add errno expectations.
6503         Add more NaN tests.
6505         [BZ #16349]
6506         * math/w_atan2.c: Include <errno.h>.
6507         (__atan2): Set errno for result underflowing to zero.
6508         * math/w_atan2f.c: Include <errno.h>.
6509         (__atan2f): Set errno for result underflowing to zero.
6510         * math/w_atan2l.c: Include <errno.h>.
6511         (__atan2l): Set errno for result underflowing to zero.
6512         * math/auto-libm-test-in: Don't allow missing errno for some atan2
6513         tests.
6514         * math/auto-libm-test-out: Regenerated.
6516 2014-03-31  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
6518         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S (MFVSRD_R3_V1):
6519         Encode instruction correctly in little endian.
6520         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S (MFVSRD_R3_V1):
6521         Likewise.
6522         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (MFVSRD_R3_V1):
6523         Likewise.
6524         * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S (MFVSRD_R3_V1):
6525         Likewise.
6526         * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S (MFVSRD_R3_V1):
6527         Likewise.
6529 2014-03-31  Joseph Myers  <joseph@codesourcery.com>
6531         [BZ #9894]
6532         * sysdeps/unix/sysv/linux/kernel-features.h
6533         [__sparc__ && !__arch64__ && !__sparc_v9__]
6534         (__ASSUME_SET_ROBUST_LIST): Do not define.
6535         [__sparc__ && !__arch64__ && !__sparc_v9__]
6536         (__ASSUME_FUTEX_LOCK_PI): Likewise.
6537         [__sparc__ && !__arch64__ && !__sparc_v9__] (__ASSUME_REQUEUE_PI):
6538         Likewise.
6539         * sysdeps/unix/sysv/linux/arm/kernel-features.h
6540         (__ASSUME_FUTEX_LOCK_PI): Undefine.
6541         (__ASSUME_REQUEUE_PI): Likewise.
6542         (__ASSUME_SET_ROBUST_LIST): Likewise.
6543         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
6544         [__LINUX_KERNEL_VERSION < 0x030a00] (__ASSUME_FUTEX_LOCK_PI):
6545         Undefine.
6546         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
6547         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_FUTEX_LOCK_PI):
6548         Likewise.
6549         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_REQUEUE_PI):
6550         Likewise.
6551         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_SET_ROBUST_LIST):
6552         Likewise.
6553         * sysdeps/unix/sysv/linux/mips/kernel-features.h
6554         [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_FUTEX_LOCK_PI):
6555         Undefine.
6556         [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_REQUEUE_PI): Likewise.
6557         [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_SET_ROBUST_LIST):
6558         Likewise.
6560         [BZ #16648]
6561         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
6562         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_FUTIMESAT): Define.
6563         * sysdeps/unix/sysv/linux/microblaze/futimesat.c: New file.
6565 2014-03-31  Will Newton  <will.newton@linaro.org>
6567         * benchtests/Makefile (bench): Add ffs and ffsll to list
6568         of tests.
6569         * benchtests/ffs-inputs: New file.
6570         * benchtests/ffsll-inputs: Likewise.
6572 2014-03-29  Joseph Myers  <joseph@codesourcery.com>
6574         [BZ #16770]
6575         * math/e_scalb.c (__ieee754_scalb): Check second argument is not
6576         too large before casting to int.
6577         * math/e_scalbf.c (__ieee754_scalbf): Likewise.
6578         * math/e_scalbl.c (__ieee754_scalbl): Likewise.
6579         * math/libm-test.inc (scalb_test_data): Add more tests.
6581 2014-03-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
6583         * benchtests/Makefile (DETAILED_OPT): New make option.
6584         (bench-func): Run benchmark program with -d if DETAILED_OPT is
6585         set.
6586         * benchtests/bench-skeleton.c: Include stdbool.h.
6587         (main): Store and print timings per input.
6588         * benchtests/scripts/bench.py (STRUCT_TEMPLATE): Add timing
6589         member to each argument value.
6590         (EPILOGUE): Define new macros RESULT and RESULT_ACCUM.
6591         (_print_arg_data): Initialize per-input timing to 0.
6593         * benchtests/Makefile (timing-type): New binary.
6594         (bench-clean): Also remove bench-timing-type.
6595         (bench): New target for timing-type.
6596         (bench-func): Print output in JSON format.
6597         * benchtests/bench-skeleton.c (main): Print output in JSON
6598         format.
6599         * benchtests/bench-timing-type.c: New file.
6600         * benchtests/bench-timing.h (TIMING_TYPE): New macro.
6601         (TIMING_PRINT_STATS): Remove.
6602         * benchtests/scripts/bench.py (_print_arg_data): Store variant
6603         name separately.
6605         * benchtests/bench-modf.c: Remove.
6606         * benchtests/modf-inputs: New inputs file.
6608 2014-03-28  Joseph Myers  <joseph@codesourcery.com>
6610         [BZ #16362]
6611         * math/s_clog10.c (M_PI_LOG10E): New macro.
6612         (__clog10): Use M_PI_LOG10E instead of M_PI when real and
6613         imaginary parts are 0.
6614         * math/s_clog10f.c (M_PI_LOG10Ef): New macro.
6615         (__clog10f): Use M_PI_LOG10Ef instead of M_PI when real and
6616         imaginary parts are 0.
6617         * math/s_clog10l.c (M_PI_LOG10El): New macro.
6618         (__clog10l): Use M_PI_LOG10El instead of M_PIl when real and
6619         imaginary parts are 0.
6620         * math/libm-test.inc (clog10_test_data): Update expected results
6621         for when real and imaginary parts are 0.
6623 2014-03-27  Paul Pluzhnikov  <ppluzhnikov@google.com>
6625         * elf/dl-load.c: Finish conversion of __builtin_expect into
6626         __glibc_{un}likely.
6628 2014-03-27  Joseph Myers  <joseph@codesourcery.com>
6630         [BZ #16348]
6631         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [!USE_AS_EXPM1L]: Use
6632         1+x for argument with exponent below -67.
6633         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [!USE_AS_EXPM1L]:
6634         Likewise.
6635         * math/auto-libm-test-in: Add more tests of exp.
6636         * math/auto-libm-test-out: Regenerated.
6638 2014-03-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
6640         [BZ #16759]
6641         * inet/getnetgrent_r.c (get_nonempty_val): New function.
6642         (nscd_getnetgrent): Use it.
6644         [BZ #16760]
6645         * nscd/netgroupcache.c (addgetnetgrentX): Use memmove instead
6646         of stpcpy.
6648 2014-03-27  Andi Kleen  <ak@linux.intel.com>
6650         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (lll_lock)
6651         (lll_robust_lock, lll_cond_lock, lll_timedlock)
6652         (lll_robust_cond_lock, lll_robust_timedlock, lll_unlock)
6653         (lll_robust_unlock): Remove out of line section. Use cfi
6654         intrinsics.
6655         (LLL_STUB_UNWIND_INFO*): Remove.
6656         * nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_lock)
6657         (lll_robust_lock, lll_cond_lock, lll_timedlock)
6658         (lll_robust_cond_lock, lll_robust_timedlock, lll_unlock)
6659         (lll_robust_unlock): Remove out of line section. Use cfi
6660         intrinsics.
6661         (LLL_STUB_UNWIND_INFO*): Remove.
6663 2014-03-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
6665         [BZ #16758]
6666         * nscd/netgroupcache.c (addinnetgrX): Succeed if triplet has
6667         blank values.
6669 2014-03-26  Paul Pluzhnikov  <ppluzhnikov@google.com>
6671         * elf/dl-load.c: Convert __builtin_expect into __glibc_{un}likely.
6673 2014-03-26  Joseph Myers  <joseph@codesourcery.com>
6675         [BZ #16198]
6676         * sysdeps/x86_64/fpu/fegetenv.c (fegetenv): Use fldenv after
6677         fnstenv.
6678         * math/test-fenv-preserve.c: New file.
6679         * math/Makefile (tests): Add test-fenv-preserve.
6681 2014-03-26  Will Newton <will.newton@linaro.org>
6683         * benchtests/bench-strtod.c (TIMEOUT): Define to 10.
6685 2014-03-25  Roland McGrath  <roland@hack.frob.com>
6687         * scripts/versionlist.awk: Partition the version sets and emit all
6688         GLIBC_* (sorted) before all others (sorted).
6690 2014-03-25  Joseph Myers  <joseph@codesourcery.com>
6692         * elf/Versions (libc) [EXPORT_UNWIND_FIND_FDE]: Add empty
6693         GLIBC_2.2.5 version.
6695 2014-03-25 Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
6697         * scripts/localplt.awk: Check for PLT generated by internal IFUNC
6698         calls.
6700         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Revert
6701         previous change.
6703         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
6705 2014-03-25  Andreas Schwab  <schwab@suse.de>
6707         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Add out_fail2
6708         label to be used after in6ailist is initialized.
6710 2014-03-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
6712         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
6713         (__PTHREAD_MUTEX_HAVE_ELISION): New define.
6715 2014-03-25  Joseph Myers  <joseph@codesourcery.com>
6717         [BZ #16357]
6718         [BZ #16599]
6719         * math/gen-auto-libm-tests.c (fp_format_desc): Add field
6720         min_plus_half.
6721         (fp_formats): Update initializers.
6722         (init_fp_formats): Initialize new field.
6723         (output_for_one_input_case): Allow underflow for results up to
6724         min_plus_half.
6725         * math/libm-test.inc (log1p_test): Use ALL_RM_TEST.
6726         * math/auto-libm-test-in: Don't mark some underflows from asin and
6727         atanh as spurious.
6728         * math/auto-libm-test-out: Regenerated.
6729         * sysdeps/i386/fpu/libm-test-ulps: Update.
6730         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
6732 2014-03-25  Andreas Schwab  <schwab@suse.de>
6734         * libio/Makefile (tst-ftell-partial-wide-ENV)
6735         (tst-ftell-active-handler-ENV): Define.
6737 2014-03-25  Stefan Liebler <stli@linux.vnet.ibm.com>
6739         * NEWS: Add 16712, 16713, 16714 to fixed bug list.
6741 2014-03-24  Paul Pluzhnikov  <ppluzhnikov@google.com>
6743         * elf/tst-dlopen-aout.c: Adjust comments. Use test-skeleton.c
6745 2014-03-24  Joseph Myers  <joseph@codesourcery.com>
6747         * sysdeps/ieee754/dbl-64/e_exp.c: Include <math.h>.
6748         * sysdeps/x86_64/fpu/multiarch/e_exp.c
6749         [HAVE_FMA4_SUPPORT || HAVE_AVX_SUPPORT]: Likewise.
6751 2014-03-24  Paul Pluzhnikov  <ppluzhnikov@google.com>
6753         [BZ #16634]
6754         * elf/dl-load.c (open_verify): Add mode parameter.
6755         Error early when ET_EXEC and mode does not have __RTLD_OPENEXEC.
6756         (open_path): Change from boolean 'secure' to complete flag 'mode'
6757         (_dl_map_object): Adjust.
6758         * elf/Makefile (tests): Add tst-dlopen-aout.
6759         * elf/tst-dlopen-aout.c: New test.
6761 2014-03-24  Stefan Liebler <stli@linux.vnet.ibm.com>
6763         [BZ #16714]
6764         * sysdeps/unix/sysv/linux/s390/bits/stat.h
6765         (struct stat): Rename member pad0 to __glibc_reserved0.
6767         [BZ #16712]
6768         * sysdeps/s390/s390-32/bits/wordsize.h
6769         (__WORDSIZE32_SIZE_ULONG): New define.
6770         * sysdeps/s390/s390-64/bits/wordsize.h
6771         (__WORDSIZE32_SIZE_ULONG): Likewise.
6772         * sysdeps/generic/stdint.h (SIZE_MAX):
6773         Define as UL if __WORDSIZE32_SIZE_ULONG.
6775         [BZ #16713]
6776         * sysdeps/unix/sysv/linux/s390/bits/sigaction.h
6777         (__glibc_reserved0): New variable.
6778         (sa_flags): Change type to int.
6780         * posix/Makefile (before-compile): Use += before-compile instead
6781         of a :=.
6783         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
6784         (__PTHREAD_MUTEX_HAVE_ELISION): New define.
6786 2014-03-20  Andreas Schwab  <schwab@suse.de>
6788         [BZ #16743]
6789         * sysdeps/posix/getaddrinfo.c (gaih_inet): Properly skip over
6790         non-matching result from nscd.
6792 2014-03-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
6794         * scripts/bench.py: Moved to ...
6795         * benchtests/scripts/bench.py: ... here.
6796         * benchtests/Makefile ($(objpfx)bench-%.c): Adjust.
6798 2014-03-24  Andreas Schwab  <schwab@suse.de>
6800         [BZ #16002]
6801         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Use
6802         alloca_account and account alloca use for struct in6ailist.
6804 2014-03-24  Joseph Myers  <joseph@codesourcery.com>
6806         [BZ #16284]
6807         * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Use original
6808         rounding mode to recompute results that overflow to infinity or
6809         underflow to zero.
6810         * math/auto-libm-test-in: Don't mark tests as expected to fail for
6811         bug 16284.
6812         * math/auto-libm-test-out: Regenerated.
6813         * math/libm-test.inc (ccos_test): Use ALL_RM_TEST.
6814         (ccosh_test): Likewise.
6815         (csin_test_data): Use plus_oflow.
6816         (csin_test): Use ALL_RM_TEST.
6817         (csinh_test_data): Use plus_oflow.
6818         (csinh_test): Use ALL_RM_TEST.
6819         * sysdeps/i386/fpu/libm-test-ulps: Update.
6820         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
6822 2014-03-21  Joseph Myers  <joseph@codesourcery.com>
6824         * sysdeps/mips/bits/wordsize.h: Include <sgidefs.h>.
6825         * sysdeps/unix/sysv/linux/mips/getrlimit64.c: Likewise.
6826         * sysdeps/unix/sysv/linux/mips/setrlimit64.c: Likewise.
6828         [BZ #16731]
6829         * sysdeps/i386/fpu/e_log.S (__ieee754_log): Take absolute value
6830         when x - 1 is zero.
6831         * sysdeps/i386/fpu/e_logf.S (__ieee754_logf): Likewise.
6832         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Likewise.
6833         * sysdeps/i386/i686/fpu/e_logl.S (__ieee754_logl): Likewise.
6834         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Return +0 when
6835         argument is 1.
6836         * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Likewise.
6837         * sysdeps/x86_64/fpu/e_logl.S: Take absolute value when x - 1 is
6838         zero.
6839         * math/libm-test.inc (log_test): Use ALL_RM_TEST.
6840         * sysdeps/i386/fpu/libm-test-ulps: Update.
6841         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
6843 2014-03-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
6845         * scripts/bench.pl: Remove file.
6846         * scripts/bench.py: New benchmark script.
6847         * benchtests/Makefile ($(objpfx)bench-%.c): Use it.
6848         * benchtests/README: Mention python dependency.
6849         * scripts/pylintrc: New file.
6850         * scripts/pylint: New file.
6852         * bits/mathdef.h: Use #ifdef instead of #if.
6853         * sysdeps/arm/bits/mathdef.h [defined __USE_ISOC99 && defined
6854         _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
6855         * sysdeps/tile/bits/mathdef.h [defined __USE_ISOC99 && defined
6856         _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
6857         * sysdeps/x86/bits/mathdef.h [defined __USE_ISOC99 && defined
6858         _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
6860 2014-03-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
6861             Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
6863         * string/strpbrk.c (strpbrk): Using macro to redefine symbol name.
6864         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strpbrk-power7
6865         and strpbrk-ppc64 objects.
6866         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
6867         (__libc_ifunc_impl_list): Add new strpbrk optimized symbols.
6868         * sysdeps/powerpc/powerpc64/multiarch/strpbrk-power7.S: New file:
6869         multiarch strpbrk for POWER7.
6870         * sysdeps/powerpc/powerpc64/multiarch/strpbrk-ppc64.c: New file:
6871         multiarch strpbrk for PPC64.
6872         * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: New file: strpbrk
6873         ifunc selector.
6874         * sysdeps/powerpc/powerpc64/power7/strpbrk.S: New file: optimited
6875         strpbrk for POWER7.
6877 2014-03-20  Joseph Myers  <joseph@codesourcery.com>
6879         * math/libm-test.inc (asinh_test): Use ALL_RM_TEST.
6880         (atan_test): Likewise.
6881         (atanh_test_data): Use NO_TEST_INLINE for two tests.
6882         (atanh_test): Use ALL_RM_TEST.
6883         (atan2_test_data): Likewise.
6884         (cabs_test): Likewise.
6885         (cacosh_test): Likewise.
6886         (carg_test): Likewise.
6887         (casin_test): Likewise.
6888         (casinh_test): Likewise.
6889         (cbrt_test): Likewise.
6890         (csqrt_test): Likewise.
6891         (erf_test): Likewise.
6892         (erfc_test): Likewise.
6893         (pow10_test): Likewise.
6894         (exp2_test): Likewise.
6895         (hypot_test): Likewise.
6896         (j0_test): Likewise.
6897         (j1_test): Likewise.
6898         (lgamma_test): Likewise.
6899         (gamma_test): Likewise.
6900         (sincos_test): Likewise.
6901         (tanh_test): Likewise.
6902         (y0_test): Likewise.
6903         (y1_test): Likewise.
6904         * sysdeps/i386/fpu/libm-test-ulps: Update.
6905         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
6907 2014-03-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
6909         * string/strcspn.c (strcspn): Using macro to redefine symbol name.
6910         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcspn-power7
6911         and strcspn-ppc64 objects.
6912         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
6913         (__libc_ifunc_impl_list): Add new strcspn optimized symbols.
6914         * sysdeps/powerpc/powerpc64/multiarch/strcspn-power7.S: New file:
6915         multiarch strcspn for POWER7.
6916         * sysdeps/powerpc/powerpc64/multiarch/strcspn-ppc64.c: New file:
6917         multiarch strcspn for PPC64.
6918         * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: New file: strcspn
6919         ifunc selector.
6920         * sysdeps/powerpc/powerpc64/power7/strcspn.S: New file: optimited
6921         strcspn for POWER7.
6923 2014-03-20  Joseph Myers  <joseph@codesourcery.com>
6925         * math/gen-libm-test.pl (generate_testfile): Expect only function
6926         name as argument to AUTO_TESTS_* and pass results for all rounding
6927         modes to parse_args.
6928         (parse_auto_input): Separate inputs of automatic tests from
6929         outputs before storing in %auto_tests.
6930         * math/libm-test.inc (acos_test_data): Update call to
6931         AUTO_TESTS_f_f.
6932         (acos_test): Use ALL_RM_TEST.
6933         (acos_tonearest_test_data): Remove.
6934         (acos_test_tonearest): Likewise.
6935         (acos_towardzero_test_data): Likewise.
6936         (acos_test_towardzero): Likewise.
6937         (acos_downward_test_data): Likewise.
6938         (acos_test_downward): Likewise.
6939         (acos_upward_test_data): Likewise.
6940         (acos_test_upward): Likewise.
6941         (acosh_test_data): Update call to AUTO_TESTS_f_f.
6942         (asin_test_data): Likewise.
6943         (asin_test): Use ALL_RM_TEST.
6944         (asin_tonearest_test_data): Remove.
6945         (asin_test_tonearest): Likewise.
6946         (asin_towardzero_test_data): Likewise.
6947         (asin_test_towardzero): Likewise.
6948         (asin_downward_test_data): Likewise.
6949         (asin_test_downward): Likewise.
6950         (asin_upward_test_data): Likewise.
6951         (asin_test_upward): Likewise.
6952         (asinh_test_data): Update call to AUTO_TESTS_f_f.
6953         (atan_test_data): Likewise.
6954         (atanh_test_data): Likewise.
6955         (atan2_test_data): Update call to AUTO_TESTS_ff_f.
6956         (cabs_test_data): Update call to AUTO_TESTS_c_f.
6957         (carg_test_data): Likewise.
6958         (cbrt_test_data): Update call to AUTO_TESTS_f_f.
6959         (ccos_test_data): Update call to AUTO_TESTS_c_c.
6960         (ccosh_test_data): Likewise.
6961         (cexp_test_data): Likewise.
6962         (clog_test_data): Likewise.
6963         (clog10_test_data): Likewise.
6964         (cos_test_data): Update call to AUTO_TESTS_f_f.
6965         (cos_test): Use ALL_RM_TEST.
6966         (cos_tonearest_test_data): Remove.
6967         (cos_test_tonearest): Likewise.
6968         (cos_towardzero_test_data): Likewise.
6969         (cos_test_towardzero): Likewise.
6970         (cos_downward_test_data): Likewise.
6971         (cos_test_downward): Likewise.
6972         (cos_upward_test_data): Likewise.
6973         (cos_test_upward): Likewise.
6974         (cosh_test_data): Update call to AUTO_TESTS_f_f.
6975         (cosh_test): Use ALL_RM_TEST.
6976         (cosh_tonearest_test_data): Remove.
6977         (cosh_test_tonearest): Likewise.
6978         (cosh_towardzero_test_data): Likewise.
6979         (cosh_test_towardzero): Likewise.
6980         (cosh_downward_test_data): Likewise.
6981         (cosh_test_downward): Likewise.
6982         (cosh_upward_test_data): Likewise.
6983         (cosh_test_upward): Likewise.
6984         (cpow_test_data): Update call to AUTO_TESTS_cc_c.
6985         (csqrt_test_data): Update call to AUTO_TESTS_c_c.
6986         (ctan_test_data): Likewise.
6987         (ctan_test): Use ALL_RM_TEST.
6988         (ctan_tonearest_test_data): Remove.
6989         (ctan_test_tonearest): Likewise.
6990         (ctan_towardzero_test_data): Likewise.
6991         (ctan_test_towardzero): Likewise.
6992         (ctan_downward_test_data): Likewise.
6993         (ctan_test_downward): Likewise.
6994         (ctan_upward_test_data): Likewise.
6995         (ctan_test_upward): Likewise.
6996         (ctanh_test_data): Update call to AUTO_TESTS_c_c.
6997         (ctanh_test): Use ALL_RM_TEST.
6998         (ctanh_tonearest_test_data): Remove.
6999         (ctanh_test_tonearest): Likewise.
7000         (ctanh_towardzero_test_data): Likewise.
7001         (ctanh_test_towardzero): Likewise.
7002         (ctanh_downward_test_data): Likewise.
7003         (ctanh_test_downward): Likewise.
7004         (ctanh_upward_test_data): Likewise.
7005         (ctanh_test_upward): Likewise.
7006         (erf_test_data): Update call to AUTO_TESTS_f_f.
7007         (erfc_test_data): Likewise.
7008         (exp_test_data): Likewise.
7009         (exp_test): Use ALL_RM_TEST.
7010         (exp_tonearest_test_data): Remove.
7011         (exp_test_tonearest): Likewise.
7012         (exp_towardzero_test_data): Likewise.
7013         (exp_test_towardzero): Likewise.
7014         (exp_downward_test_data): Likewise.
7015         (exp_test_downward): Likewise.
7016         (exp_upward_test_data): Likewise.
7017         (exp_test_upward): Likewise.
7018         (exp10_test_data): Update call to AUTO_TESTS_f_f.
7019         (exp10_test): Use ALL_RM_TEST.
7020         (exp10_tonearest_test_data): Remove.
7021         (exp10_test_tonearest): Likewise.
7022         (exp10_towardzero_test_data): Likewise.
7023         (exp10_test_towardzero): Likewise.
7024         (exp10_downward_test_data): Likewise.
7025         (exp10_test_downward): Likewise.
7026         (exp10_upward_test_data): Likewise.
7027         (exp10_test_upward): Likewise.
7028         (exp2_test_data): Update call to AUTO_TESTS_f_f.
7029         (expm1_test_data): Likewise.
7030         (expm1_test): Use ALL_RM_TEST.
7031         (expm1_tonearest_test_data): Remove.
7032         (expm1_test_tonearest): Likewise.
7033         (expm1_towardzero_test_data): Likewise.
7034         (expm1_test_towardzero): Likewise.
7035         (expm1_downward_test_data): Likewise.
7036         (expm1_test_downward): Likewise.
7037         (expm1_upward_test_data): Likewise.
7038         (expm1_test_upward): Likewise.
7039         (fma_test_data): Update call to AUTO_TESTS_fff_f.
7040         (fma_test): Use ALL_RM_TEST.
7041         (fma_towardzero_test_data): Remove.
7042         (fma_test_towardzero): Likewise.
7043         (fma_downward_test_data): Likewise.
7044         (fma_test_downward): Likewise.
7045         (fma_upward_test_data): Likewise.
7046         (fma_test_upward): Likewise.
7047         (hypot_test_data): Update call to AUTO_TESTS_ff_f.
7048         (j0_test_data): Update call to AUTO_TESTS_f_f.
7049         (j1_test_data): Likewise.
7050         (jn_test_data): Update call to AUTO_TESTS_if_f.
7051         (lgamma_test_data): Update call to AUTO_TESTS_f_f1.
7052         (log_test_data): Update call to AUTO_TESTS_f_f.
7053         (log10_test_data): Likewise.
7054         (log1p_test_data): Likewise.
7055         (log2_test_data): Likewise.
7056         (pow_test_data): Update call to AUTO_TESTS_ff_f.
7057         (pow_tonearest_test_data): Likewise.
7058         (sin_test_data): Update call to AUTO_TESTS_f_f.
7059         (sin_test): Use ALL_RM_TEST.
7060         (sin_tonearest_test_data): Remove.
7061         (sin_test_tonearest): Likewise.
7062         (sin_towardzero_test_data): Likewise.
7063         (sin_test_towardzero): Likewise.
7064         (sin_downward_test_data): Likewise.
7065         (sin_test_downward): Likewise.
7066         (sin_upward_test_data): Likewise.
7067         (sin_test_upward): Likewise.
7068         (sincos_test_data): Update call to AUTO_TESTS_fFF_11.
7069         (sinh_test_data): Update call to AUTO_TESTS_f_f.
7070         (sinh_test): Use ALL_RM_TEST.
7071         (sinh_tonearest_test_data): Remove.
7072         (sinh_test_tonearest): Likewise.
7073         (sinh_towardzero_test_data): Likewise.
7074         (sinh_test_towardzero): Likewise.
7075         (sinh_downward_test_data): Likewise.
7076         (sinh_test_downward): Likewise.
7077         (sinh_upward_test_data): Likewise.
7078         (sinh_test_upward): Likewise.
7079         (sqrt_test_data): Update call to AUTO_TESTS_f_f.
7080         (sqrt_test): Use ALL_RM_TEST.
7081         (sqrt_tonearest_test_data): Remove.
7082         (sqrt_test_tonearest): Likewise.
7083         (sqrt_towardzero_test_data): Likewise.
7084         (sqrt_test_towardzero): Likewise.
7085         (sqrt_downward_test_data): Likewise.
7086         (sqrt_test_downward): Likewise.
7087         (sqrt_upward_test_data): Likewise.
7088         (sqrt_test_upward): Likewise.
7089         (tan_test_data): Update call to AUTO_TESTS_f_f.
7090         (tan_test): Use ALL_RM_TEST.
7091         (tan_tonearest_test_data): Remove.
7092         (tan_test_tonearest): Likewise.
7093         (tan_towardzero_test_data): Likewise.
7094         (tan_test_towardzero): Likewise.
7095         (tan_downward_test_data): Likewise.
7096         (tan_test_downward): Likewise.
7097         (tan_upward_test_data): Likewise.
7098         (tan_test_upward): Likewise.
7099         (tanh_test_data): Update call to AUTO_TESTS_f_f.
7100         (tgamma_test_data): Likewise.
7101         (y0_test_data): Likewise.
7102         (y1_test_data): Likewise.
7103         (yn_test_data): Update call to AUTO_TESTS_if_f.
7104         (main): Do not call removed functions.
7106 2014-03-19  Joseph Myers  <joseph@codesourcery.com>
7108         * math/libm-test.inc (fdim_test): Use ALL_RM_TEST.
7109         (ldexp_test_data): Remove.
7110         (ldexp_test): Move to after scalbn_test.  Use ALL_RM_TEST with
7111         scalbn_test_data.
7112         (scalb_test): Use ALL_RM_TEST.
7114 2014-03-19  Andreas Schwab  <schwab@suse.de>
7116         * nscd/nscd.service: Also invalidate netgroup cache on reload.
7118 2014-03-19  Joseph Myers  <joseph@codesourcery.com>
7120         [BZ #16649]
7121         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
7122         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_PREADV): Undefine.
7123         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_PWRITEV): Likewise.
7124         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
7125         (__ASSUME_PREADV): Undefine.
7126         (__ASSUME_PWRITEV): Likewise.
7128 2014-03-18  Roland McGrath  <roland@hack.frob.com>
7130         * bits/mman-linux.h: Add comment about non-Linux use.
7131         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add comment about
7132         bits/mman-linux.h resting place.
7134         * sysdeps/unix/sysv/linux/bits/mman-linux.h: Moved to ...
7135         * bits/mman-linux.h: ... here.
7137 2014-03-18  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7139         * conform/conformtest.pl: Add standard definition when calling C
7140         preprocessor on data files.
7141         (checknamespace): Remove unused variable.
7143 2014-03-18  Joseph Myers  <joseph@codesourcery.com>
7145         * math/gen-libm-test.pl (parse_args): Handle plus_oflow,
7146         minus_oflow, plus_uflow and minus_uflow in expected results.
7147         * math/libm-test.inc (scalbn_test_data): Add more tests of
7148         negative arguments.  Use plus_oflow, minus_oflow, plus_uflow and
7149         minus_uflow.
7150         (scalbn_test): Use ALL_RM_TEST.
7151         (scalbln_test_data): Add more tests of negative arguments.  Use
7152         plus_oflow, minus_oflow, plus_uflow and minus_uflow.
7153         (scalbln_test): Use ALL_RM_TEST.
7155 2014-03-18  Roland McGrath  <roland@hack.frob.com>
7157         * scripts/abilist.awk: Ignore symbols marked with .hidden.
7159 2014-03-18  Will Newton  <will.newton@linaro.org>
7161         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Remove
7162         inaccurate comment.
7164 2014-03-18  Joseph Myers  <joseph@codesourcery.com>
7166         * Makerules [!subdir] (check-abi): Exit with error status if a
7167         test failed.
7169 2014-03-17  Joseph Myers  <joseph@codesourcery.com>
7171         * math/libm-test.inc (nearbyint_test_data): Include all tests used
7172         for rint.  Include results for all rounding modes.
7173         (nearbyint_test): Use ALL_RM_TEST.
7174         (rint_test_data): Include all tests used for nearbyint.
7176 2014-03-17  Will Newton  <will.newton@linaro.org>
7178         * nptl/sysdeps/pthread/pthread.h: Revert previous
7179         change.
7181         * sysdeps/generic/ldsodefs.h: Revert previous
7182         change.
7184         * libio/genops.c: Revert previous change.
7185         * libio/libioP.h: Likewise.
7186         * stdio-common/vfprintf.c: Likewise.
7188         * sysdeps/generic/math_private.h: Revert previous
7189         change.
7191         * sysdeps/generic/math_private.h: Check whether
7192         HAVE_RM_CTX is defined with #ifdef rather
7193         than #if.
7195         * argp/argp-fmtstream.h: Check whether
7196         __STRICT_ANSI__ is defined with #ifdef rather
7197         than #if.
7198         * argp/argp.h: Likewise.
7200         * libio/genops.c: Check whether
7201         _IO_JUMPS_OFFSET is defined with #ifdef rather
7202         than #if.
7203         * libio/libioP.h: Likewise.
7204         * stdio-common/vfprintf.c: Likewise.
7206         * sysdeps/generic/ldsodefs.h: Check whether
7207         HP_SMALL_TIMING_AVAIL is defined with #ifdef rather
7208         than #if.
7210         * nptl/sysdeps/pthread/pthread.h: Check
7211         __PTHREAD_MUTEX_HAVE_ELISION is defined before testing
7212         its value.
7214 2014-03-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
7216         * libio/iofdopen.c (_IO_new_fdopen): Seek to end only if
7217         setting O_APPEND.
7218         * libio/tst-ftell-active-handler.c (do_append_test): Add a
7219         test case.
7221         [BZ #16680]
7222         * libio/fileops.c (_IO_file_open): Seek to end of file but
7223         don't cache the offset.
7224         (get_file_offset): Remove function.
7225         (do_ftell): Use cached offset when available.
7226         * libio/iofdopen.c (_IO_new_fdopen): Seek to end of file but
7227         don't cache the offset.
7228         * libio/tst-ftell-active-handler.c (do_rewind_test): New test
7229         case.
7230         (do_one_test): Call it.
7231         (do_ftell_test): Fix up expected old offset for a+ mode.
7232         * libio/wfileops.c (do_ftell_wide): Used cached offset when
7233         available.
7235         * libio/tst-ftell-active-handler.c (do_ftell_test): Don't mix
7236         up test status with function return status.
7237         (do_write_test): Likewise.
7238         (do_append_test): Likewise.
7240         * nptl/sysdeps/pthread/bits/libc-lockP.h [defined NOT_IN_libc
7241         && !defined IS_IN_libpthread && __LT_SPINNOCK_INIT != 0]:
7242         Remove.
7244 2014-03-17  Joseph Myers  <joseph@codesourcery.com>
7246         * math/gen-libm-test.pl (parse_args): Handle results specified for
7247         each rounding mode separately.
7248         * math/libm-test.inc (lrint_test_data): Merge in per-rounding-mode
7249         tests and results from lrint_tonearest_test_data,
7250         lrint_towardzero_test_data, lrint_downward_test_data and
7251         lrint_upward_test_data.
7252         (lrint_test): Use ALL_RM_TEST.
7253         (lrint_tonearest_test_data): Remove.
7254         (lrint_test_tonearest): Likewise.
7255         (lrint_towardzero_test_data): Likewise.
7256         (lrint_test_towardzero): Likewise.
7257         (lrint_downward_test_data): Likewise.
7258         (lrint_test_downward): Likewise.
7259         (lrint_upward_test_data): Likewise.
7260         (lrint_test_upward): Likewise.
7261         (llrint_test_data): Merge in per-rounding-mode tests and results
7262         from llrint_tonearest_test_data, llrint_towardzero_test_data,
7263         llrint_downward_test_data and llrint_upward_test_data.
7264         (llrint_test): Use ALL_RM_TEST.
7265         (llrint_tonearest_test_data): Remove.
7266         (llrint_test_tonearest): Likewise.
7267         (llrint_towardzero_test_data): Likewise.
7268         (llrint_test_towardzero): Likewise.
7269         (llrint_downward_test_data): Likewise.
7270         (llrint_test_downward): Likewise.
7271         (llrint_upward_test_data): Likewise.
7272         (llrint_test_upward): Likewise.
7273         (rint_test_data): Merge in per-rounding-mode tests and results
7274         from rint_tonearest_test_data, rint_towardzero_test_data,
7275         rint_downward_test_data and rint_upward_test_data.  Add
7276         per-rounding-mode results for tests not in those arrays.
7277         (rint_test): Use ALL_RM_TEST.
7278         (rint_tonearest_test_data): Remove.
7279         (rint_test_tonearest): Likewise.
7280         (rint_towardzero_test_data): Likewise.
7281         (rint_test_towardzero): Likewise.
7282         (rint_downward_test_data): Likewise.
7283         (rint_test_downward): Likewise.
7284         (rint_upward_test_data): Likewise.
7285         (rint_test_upward): Likewise.
7286         (main): Don't call removed functions.
7288 2014-03-14  Roland McGrath  <roland@hack.frob.com>
7290         * csu/Makefile ($(objpfx)version-info.h): Remove linux-specific
7291         "Compiled on ..." crapola.  It is anti-useful.
7293 2014-03-14  Joseph Myers  <joseph@codesourcery.com>
7295         * scripts/evaluate-test.sh: Handle fourth argument to determine
7296         whether test run should stop on failure.
7297         * Makeconfig (stop-on-test-failure): New variable.
7298         (evaluate-test): Pass fourth argument to evaluate-test.sh based on
7299         $(stop-on-test-failure).
7300         * Makefile (tests): Give a summary of results from testing and
7301         exit with failure status if they include an ERROR or FAIL.
7302         (xtests): Likewise.
7303         * manual/install.texi (Configuring and compiling): Mention
7304         stop-on-test-failure=y.
7305         * INSTALL: Regenerated.
7307 2014-03-14  Roland McGrath  <roland@hack.frob.com>
7309         * scripts/versionlist.awk: New file.
7310         * Makerules [$(build-shared) = yes]
7311         (postclean-generated): Add Versions.def, not Versions.def.v and
7312         Versions.def.v.i.
7313         ($(common-objpfx)Versions.def.v.i): Target removed.
7314         ($(common-objpfx)Versions.def): New target.
7315         ($(common-objpfx)Versions.all): Depend on that rather that
7316         $(common-objpfx)Versions.def.v.
7317         * Versions.def: File removed.
7319         * Makeconfig (+gccwarn): Add -Wundef.
7320         * include/errno.h [IS_IN_rtld] [!RTLD_PRIVATE_ERRNO]: #error to catch
7321         a dl-sysdep.h breaking its contract.
7322         [!IS_IN_rtld] (RTLD_PRIVATE_ERRNO): Define it to 0.
7323         * include/stackinfo.h: New file.
7324         * nptl/sysdeps/i386/tls.h (TLS_DTV_AT_TP): New macro.
7325         * nptl/sysdeps/powerpc/tls.h (TLS_TCB_AT_TP): New macro.
7326         * nptl/sysdeps/s390/tls.h (TLS_DTV_AT_TP): New macro.
7327         * nptl/sysdeps/sh/tls.h (TLS_TCB_AT_TP): New macro.
7328         * nptl/sysdeps/sparc/tls.h (TLS_DTV_AT_TP): New macro.
7329         * nptl/sysdeps/x86_64/tls.h (TLS_DTV_AT_TP): New macro.
7330         * sysdeps/aarch64/nptl/tls.h (TLS_TCB_AT_TP): New macro.
7331         * sysdeps/alpha/nptl/tls.h (TLS_TCB_AT_TP): New macro.
7332         * sysdeps/arm/nptl/tls.h (TLS_TCB_AT_TP): New macro.
7333         * sysdeps/ia64/nptl/tls.h (TLS_TCB_AT_TP): New macro.
7334         * sysdeps/m68k/nptl/tls.h (TLS_TCB_AT_TP): New macro.
7335         * sysdeps/mach/hurd/i386/tls.h (TLS_DTV_AT_TP): New macro.
7336         * sysdeps/microblaze/nptl/tls.h (TLS_TCB_AT_TP): New macro.
7337         * sysdeps/mips/nptl/tls.h (TLS_TCB_AT_TP): New macro.
7338         * sysdeps/tile/nptl/tls.h (TLS_TCB_AT_TP): New macro.
7340 2014-03-14  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7342         [BZ #16707]
7343         * sysdeps/powerpc/powerpc64/fpu/s_roundl.S: Remove wrong
7344         implementation.
7345         * math/libm-test.inc (round_test_data): Add more tests.
7347         [BZ #16706]
7348         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S: Remove wrong
7349         implementation.
7350         * math/libm-test.inc (nearbyint_test_data): Add more tests.
7352         [BZ #16701]
7353         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Remove wrong
7354         implementation.
7355         * math/libm-test.inc (ceil_test_data): Add more tests.
7357         * math/libm-test.inc (trunc_test_data): Add more tests related to
7358         BZ#16414.
7360 2014-03-14  Roland McGrath  <roland@hack.frob.com>
7362         * nptl/pthread_create.c (__pthread_create_2_1): Test TLS_TCB_AT_TP
7363         with #if rather than #ifdef.
7364         * nptl/sysdeps/pthread/createthread.c (create_thread): Likewise.
7366 2014-03-14  H.J. Lu  <hongjiu.lu@intel.com>
7368         * sysdeps/x86_64/configure.ac: Check AVX-512 assembler support
7369         first.  Disable AVX-512 GCC support if assembler doesn't support
7370         it.
7371         * sysdeps/x86_64/configure: Regenerated.
7373 2014-03-13  Carlos O'Donell  <carlos@redhat.com>
7375         * nptl/pthread_attr_setstack.c (__pthread_attr_setstack)
7376         [!_STACK_GROWS_DOWN]: Don't add stacksize to stackaddr.
7377         (__old_pthread_attr_setstack): Likewise.
7378         * nptl/pthread_attr_getstack.c (__pthread_attr_getstack)
7379         [!_STACK_GROWS_DOWN]: Likewise.
7381 2014-03-13  Mike Frysinger  <vapier@gentoo.org>
7383         * config.make.in (have-bash2): Delete.
7384         * configure.ac (libc_cv_have_bash2): Delete.
7385         * configure: Regenerate.
7386         * elf/Makefile (common-ldd-rewrite): Rename to ...
7387         (ldd-rewrite): ... this.  Move bash-ldd-rewrite content to end.
7388         (sh-ldd-rewrite): Delete.
7389         (bash-ldd-rewrite): Delete.
7390         (have-bash2): Delete checks.
7391         [ldd-rewrite-script]: Change $(ldd-shell)-ldd-rewrite to
7392         ldd-rewrite.
7394         * config.make.in (have-ksh): Delete.
7395         (KSH): Delete.
7396         * configure.ac (libc_cv_have_ksh): Delete.
7397         * configure: Regenerate.
7399         * elf/Makefile: Delete $(have-ksh) check.
7400         ($(objpfx)sotruss): Change KSH to BASH.
7401         * elf/sotruss.ksh: Rename to ...
7402         * elf/sotruss.sh: ... this.  Change @KSH@ to @BASH@.  Change
7403         function style to match POSIX.  Drop ksh vim mode setting.
7405         * manual/time.texi (Specifying the Time Zone with TZ): Change
7406         Tuesday to Thursday.
7408         * debug/tst-longjmp_chk2.c: Update header comment.
7409         (stackoverflow_handler): Add comment.  Call assert on pass value.
7411 2014-03-13  Igor Zamyatin  <igor.zamyatin@intel.com>
7413         * config.h.in (HAVE_AVX512_SUPPORT): New #undef.
7414         (HAVE_AVX512_ASM_SUPPORT): Likewise.
7415         * sysdeps/x86_64/bits/link.h (La_x86_64_zmm): New.
7416         (La_x86_64_vector): Add zmm.
7417         * sysdeps/x86_64/Makefile (tests): Add tst-audit10.
7418         (modules-names): Add tst-auditmod10a and tst-auditmod10b.
7419         ($(objpfx)tst-audit10): New target.
7420         ($(objpfx)tst-audit10.out): Likewise.
7421         (tst-audit10-ENV): New.
7422         (AVX512-CFLAGS): Likewise.
7423         (CFLAGS-tst-audit10.c): Likewise.
7424         (CFLAGS-tst-auditmod10a.c): Likewise.
7425         (CFLAGS-tst-auditmod10b.c): Likewise.
7426         * sysdeps/x86_64/configure.ac: Set config-cflags-avx512,
7427         HAVE_AVX512_SUPPORT and HAVE_AVX512_ASM_SUPPORT.
7428         * sysdeps/x86_64/configure: Regenerated.
7429         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Add
7430         AVX-512 zmm register support.
7431         (_dl_x86_64_save_sse): Likewise.
7432         (_dl_x86_64_restore_sse): Likewise.
7433         * sysdeps/x86_64/dl-trampoline.h: Updated to support different
7434         size vector registers.
7435         * sysdeps/x86_64/link-defines.sym (YMM_SIZE): New.
7436         (ZMM_SIZE): Likewise.
7437         * sysdeps/x86_64/tst-audit10.c: New file.
7438         * sysdeps/x86_64/tst-auditmod10a.c: Likewise.
7439         * sysdeps/x86_64/tst-auditmod10b.c: Likewise.
7441 2014-03-13  Roland McGrath  <roland@hack.frob.com>
7443         * configure.ac (HAVE_EHDR_START): New check.
7444         * configure: Regenerated.
7445         * config.h.in (HAVE_EHDR_START): New #undef.
7446         * elf/rtld.c (dl_main) [HAVE_EHDR_START]: Use __ehdr_start rather than
7447         assuming the lowest-addressed segment maps the start of the file.
7449 2014-03-13  Joseph Myers  <joseph@codesourcery.com>
7451         * INSTALL: Regenerated.
7453 2014-03-13  Will Newton  <will.newton@linaro.org>
7455         * manual/setjmp.texi (System V contexts): Improve
7456         clarity and grammar of documentation.
7458 2014-03-12  Paul Pluzhnikov  <ppluzhnikov@google.com>
7460         [BZ #16381]
7461         * elf/Makefile (tests): Add tst-pie2.
7462         (tests-pie): Add tst-pie2.
7463         * elf/tst-pie2.c: New file.
7464         * elf/dl-load.c (_dl_map_object_from_fd): Assert correct l_type
7465         for ET_EXEC.
7466         * elf/rtld.c (map_doit): Load executable as lt_executable.
7467         (dl_main): Likewise.
7469 2014-03-12  Joseph Myers  <joseph@codesourcery.com>
7471         [BZ #16642]
7472         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
7473         (__ASSUME_PSELECT): Undefine.
7475 2014-03-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7477         [BZ #16689]
7478         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S
7479         (__bzero_ppc): Call memset@local instead of __memset_ppc@local for
7480         static build.
7481         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: Build IFUNC
7482         selector for static builds.
7484 2014-03-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
7486         [BZ #16695]
7487         * nscd/netgroupcache.c (addgetnetgrentX): Factor in space for
7488         key in the buffer.
7490 2014-03-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7492         * sysdeps/powerpc/powerpc64/multiarch/strspn.c (strspn): Build
7493         IFUNC selector for static builds.
7495 2014-03-11  Joseph Myers  <joseph@codesourcery.com>
7497         * sysdeps/mips/math_private.h [__mips_hard_float]
7498         (libc_feresetround_ctx): Define to libc_feupdateenv_mips_ctx not
7499         libc_feresetround_mips_ctx.
7500         [__mips_hard_float] (libc_feresetroundf_ctx): Likewise.
7501         [__mips_hard_float] (libc_feresetroundl_ctx): Likewise.
7502         [__mips_hard_float] (libc_feresetround_mips_ctx): Remove.
7504         [BZ #16677]
7505         * math/s_nextafter.c (__nextafter): Do not return value from
7506         overflowing computation.
7507         * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Likewise.
7508         * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise.
7509         * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl):
7510         Likewise.
7511         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl):
7512         Likewise.
7513         * sysdeps/m68k/m680x0/fpu/s_nextafterl.c (__nextafterl): Likewise.
7514         * math/libm-test.inc (nextafter_test): Use ALL_RM_TEST.
7516 2014-03-11  Roland McGrath  <roland@hack.frob.com>
7518         * sysdeps/arm/setjmp.S: Use sfi_breg on stores of mangled registers.
7519         * sysdeps/arm/__longjmp.S: Use sfi_breg on loads of mangled registers.
7520         Move sfi_sp use from the load-multiple (that no longer sets sp) to
7521         the new mov targetting sp.
7523 2014-03-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7525         [BZ #16683]
7526         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S (__bzero_ppc):
7527         Define it for static builds as well.
7528         (NO_BZERO_IMPL): Likewise.
7530 2014-03-11  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
7532         * sysdeps/powerpc/powerpc64/power7/strspn.S: New file: Optimization.
7533         * sysdeps/powerpc/powerpc64/multiarch/strspn.c: New file:
7534         multiarch strspn for PPC64.
7535         * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: New file
7536         * sysdeps/powerpc/powerpc64/multiarch/strspn-power7.S: New file
7537         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
7538         (__libc_ifunc_impl_list): Likewise.
7539         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strspn
7540         multiarch optimizations
7541         * string/strspn.c (strspn): Using macro to redefine symbol name.
7543 2014-03-10  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
7544             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7546         * sysdeps/powerpc/powerpc64/power7/strncat.S: New file: Optimization.
7547         * sysdeps/powerpc/powerpc64/multiarch/strncat.c: New file:
7548         multiarch strncat for PPC64.
7549         * sysdeps/powerpc/powerpc64/multiarch/strncat-ppc64.c: New file
7550         * sysdeps/powerpc/powerpc64/multiarch/strncat-power7.S: New file
7551         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
7552         (__libc_ifunc_impl_list): Likewise.
7553         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncat
7554         multiarch optimizations
7556 2014-03-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
7558         [BZ #16639]
7559         * nscd/nscd.service: Make service type forking.
7561 2014-03-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7563         * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Fix to return correct
7564         sign in non default rounding modes.
7565         * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
7567 2014-03-08  Joseph Myers  <joseph@codesourcery.com>
7569         * math/libm-test.inc (ALL_RM_TEST): New macro.
7570         (ceil_test): Use ALL_RM_TEST.
7571         (cimag_test): Likewise.
7572         (conj_test): Likewise.
7573         (copysign_test): Likewise.
7574         (cproj_test): Likewise.
7575         (creal_test): Likewise.
7576         (fabs_test): Likewise.
7577         (floor_test): Likewise.
7578         (fmax_test): Likewise.
7579         (fmin_test): Likewise.
7580         (fmod_test): Likewise.
7581         (fpclassify_test): Likewise.
7582         (frexp_test): Likewise.
7583         (ilogb_test): Likewise.
7584         (isfinite_test): Likewise.
7585         (finite_test): Likewise.
7586         (isgreater_test): Likewise.
7587         (isgreaterequal_test): Likewise.
7588         (isinf_test): Likewise.
7589         (isless_test): Likewise.
7590         (islessequal_test): Likewise.
7591         (islessgreater_test): Likewise.
7592         (isnan_test): Likewise.
7593         (isnormal_test): Likewise.
7594         (issignaling_test): Likewise.
7595         (isunordered_test): Likewise.
7596         (logb_test): Likewise.
7597         (logb_downward_test_data): Remove.
7598         (logb_test_downward): Likewise.
7599         (lround_test): Use ALL_RM_TEST.
7600         (llround_test): Likewise.
7601         (modf_test): Likewise.
7602         (nexttoward_test): Likewise.
7603         (remainder_test): Likewise.
7604         (drem_test): Likewise.
7605         (remainder_tonearest_test_data): Likewise.
7606         (remainder_test_tonearest): Likewise.
7607         (drem_test_tonearest): Likewise.
7608         (remainder_towardzero_test_data): Likewise.
7609         (remainder_test_towardzero): Likewise.
7610         (drem_test_towardzero): Likewise.
7611         (remainder_downward_test_data): Likewise.
7612         (remainder_test_downward): Likewise.
7613         (drem_test_downward): Likewise.
7614         (remainder_upward_test_data): Likewise.
7615         (remainder_test_upward): Likewise.
7616         (drem_test_upward): Likewise.
7617         (remquo_test): Use ALL_RM_TEST.  Remove comment about x.
7618         (round_test): Use ALL_RM_TEST.
7619         (signbit_test): Likewise.
7620         (trunc_test): Likewise.
7621         (significand_test): Likewise.
7622         (main): Don't call removed functions.
7624 2014-03-07  Joseph Myers  <joseph@codesourcery.com>
7626         [BZ #16674]
7627         * bits/siginfo.h (ILL_ILLOPC): Condition on [__USE_XOPEN_EXTENDED
7628         || __USE_XOPEN2K8].
7629         (ILL_ILLOPN): Likewise.
7630         (ILL_ILLADR): Likewise.
7631         (ILL_ILLTRP): Likewise.
7632         (ILL_PRVOPC): Likewise.
7633         (ILL_PRVREG): Likewise.
7634         (ILL_COPROC): Likewise.
7635         (ILL_BADSTK): Likewise.
7636         (FPE_INTDIV): Likewise.
7637         (FPE_INTOVF): Likewise.
7638         (FPE_FLTDIV): Likewise.
7639         (FPE_FLTOVF): Likewise.
7640         (FPE_FLTUND): Likewise.
7641         (FPE_FLTRES): Likewise.
7642         (FPE_FLTINV): Likewise.
7643         (FPE_FLTSUB): Likewise.
7644         (SEGV_MAPERR): Likewise.
7645         (SEGV_ACCERR): Likewise.
7646         (BUS_ADRALN): Likewise.
7647         (BUS_ADRERR): Likewise.
7648         (BUS_OBJERR): Likewise.
7649         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
7650         (TRAP_TRACE): Likewise.
7651         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
7652         __USE_XOPEN2K8].
7653         (CLD_KILLED): Likewise.
7654         (CLD_DUMPED): Likewise.
7655         (CLD_TRAPPED): Likewise.
7656         (CLD_STOPPED): Likewise.
7657         (CLD_CONTINUED): Likewise.
7658         (POLL_IN): Likewise.
7659         (POLL_OUT): Likewise.
7660         (POLL_MSG): Likewise.
7661         (POLL_ERR): Likewise.
7662         (POLL_PRI): Likewise.
7663         (POLL_HUP): Likewise.
7664         * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h (ILL_ILLOPC):
7665         Likewise.
7666         (ILL_ILLOPN): Likewise.
7667         (ILL_ILLADR): Likewise.
7668         (ILL_ILLTRP): Likewise.
7669         (ILL_PRVOPC): Likewise.
7670         (ILL_PRVREG): Likewise.
7671         (ILL_COPROC): Likewise.
7672         (ILL_BADSTK): Likewise.
7673         (FPE_INTDIV): Likewise.
7674         (FPE_INTOVF): Likewise.
7675         (FPE_FLTDIV): Likewise.
7676         (FPE_FLTOVF): Likewise.
7677         (FPE_FLTUND): Likewise.
7678         (FPE_FLTRES): Likewise.
7679         (FPE_FLTINV): Likewise.
7680         (FPE_FLTSUB): Likewise.
7681         (SEGV_MAPERR): Likewise.
7682         (SEGV_ACCERR): Likewise.
7683         (BUS_ADRALN): Likewise.
7684         (BUS_ADRERR): Likewise.
7685         (BUS_OBJERR): Likewise.
7686         (BUS_MCEERR_AR): Likewise.
7687         (BUS_MCEERR_AO): Likewise.
7688         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
7689         (TRAP_TRACE): Likewise.
7690         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
7691         __USE_XOPEN2K8].
7692         (CLD_KILLED): Likewise.
7693         (CLD_DUMPED): Likewise.
7694         (CLD_TRAPPED): Likewise.
7695         (CLD_STOPPED): Likewise.
7696         (CLD_CONTINUED): Likewise.
7697         (POLL_IN): Likewise.
7698         (POLL_OUT): Likewise.
7699         (POLL_MSG): Likewise.
7700         (POLL_ERR): Likewise.
7701         (POLL_PRI): Likewise.
7702         (POLL_HUP): Likewise.
7703         * sysdeps/unix/sysv/linux/bits/siginfo.h (ILL_ILLOPC): Likewise.
7704         (ILL_ILLOPN): Likewise.
7705         (ILL_ILLADR): Likewise.
7706         (ILL_ILLTRP): Likewise.
7707         (ILL_PRVOPC): Likewise.
7708         (ILL_PRVREG): Likewise.
7709         (ILL_COPROC): Likewise.
7710         (ILL_BADSTK): Likewise.
7711         (FPE_INTDIV): Likewise.
7712         (FPE_INTOVF): Likewise.
7713         (FPE_FLTDIV): Likewise.
7714         (FPE_FLTOVF): Likewise.
7715         (FPE_FLTUND): Likewise.
7716         (FPE_FLTRES): Likewise.
7717         (FPE_FLTINV): Likewise.
7718         (FPE_FLTSUB): Likewise.
7719         (SEGV_MAPERR): Likewise.
7720         (SEGV_ACCERR): Likewise.
7721         (BUS_ADRALN): Likewise.
7722         (BUS_ADRERR): Likewise.
7723         (BUS_OBJERR): Likewise.
7724         (BUS_MCEERR_AR): Likewise.
7725         (BUS_MCEERR_AO): Likewise.
7726         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
7727         (TRAP_TRACE): Likewise.
7728         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
7729         __USE_XOPEN2K8].
7730         (CLD_KILLED): Likewise.
7731         (CLD_DUMPED): Likewise.
7732         (CLD_TRAPPED): Likewise.
7733         (CLD_STOPPED): Likewise.
7734         (CLD_CONTINUED): Likewise.
7735         (POLL_IN): Likewise.
7736         (POLL_OUT): Likewise.
7737         (POLL_MSG): Likewise.
7738         (POLL_ERR): Likewise.
7739         (POLL_PRI): Likewise.
7740         (POLL_HUP): Likewise.
7741         * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h (ILL_ILLOPC):
7742         Likewise.
7743         (ILL_ILLOPN): Likewise.
7744         (ILL_ILLADR): Likewise.
7745         (ILL_ILLTRP): Likewise.
7746         (ILL_PRVOPC): Likewise.
7747         (ILL_PRVREG): Likewise.
7748         (ILL_COPROC): Likewise.
7749         (ILL_BADSTK): Likewise.
7750         (ILL_BADIADDR): Likewise.
7751         (ILL_BREAK): Likewise.
7752         (FPE_INTDIV): Likewise.
7753         (FPE_INTOVF): Likewise.
7754         (FPE_FLTDIV): Likewise.
7755         (FPE_FLTOVF): Likewise.
7756         (FPE_FLTUND): Likewise.
7757         (FPE_FLTRES): Likewise.
7758         (FPE_FLTINV): Likewise.
7759         (FPE_FLTSUB): Likewise.
7760         (FPE_DECOVF): Likewise.
7761         (FPE_DECDIV): Likewise.
7762         (FPE_DECERR): Likewise.
7763         (FPE_INVASC): Likewise.
7764         (FPE_INVDEC): Likewise.
7765         (SEGV_MAPERR): Likewise.
7766         (SEGV_ACCERR): Likewise.
7767         (SEGV_PSTKOVF): Likewise.
7768         (BUS_ADRALN): Likewise.
7769         (BUS_ADRERR): Likewise.
7770         (BUS_OBJERR): Likewise.
7771         (BUS_MCEERR_AR): Likewise.
7772         (BUS_MCEERR_AO): Likewise.
7773         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
7774         (TRAP_TRACE): Likewise.
7775         (TRAP_BRANCH): Likewise.
7776         (TRAP_HWBKPT): Likewise.
7777         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
7778         __USE_XOPEN2K8].
7779         (CLD_KILLED): Likewise.
7780         (CLD_DUMPED): Likewise.
7781         (CLD_TRAPPED): Likewise.
7782         (CLD_STOPPED): Likewise.
7783         (CLD_CONTINUED): Likewise.
7784         (POLL_IN): Likewise.
7785         (POLL_OUT): Likewise.
7786         (POLL_MSG): Likewise.
7787         (POLL_ERR): Likewise.
7788         (POLL_PRI): Likewise.
7789         (POLL_HUP): Likewise.
7790         * sysdeps/unix/sysv/linux/mips/bits/siginfo.h (ILL_ILLOPC): Likewise.
7791         (ILL_ILLOPN): Likewise.
7792         (ILL_ILLADR): Likewise.
7793         (ILL_ILLTRP): Likewise.
7794         (ILL_PRVOPC): Likewise.
7795         (ILL_PRVREG): Likewise.
7796         (ILL_COPROC): Likewise.
7797         (ILL_BADSTK): Likewise.
7798         (FPE_INTDIV): Likewise.
7799         (FPE_INTOVF): Likewise.
7800         (FPE_FLTDIV): Likewise.
7801         (FPE_FLTOVF): Likewise.
7802         (FPE_FLTUND): Likewise.
7803         (FPE_FLTRES): Likewise.
7804         (FPE_FLTINV): Likewise.
7805         (FPE_FLTSUB): Likewise.
7806         (SEGV_MAPERR): Likewise.
7807         (SEGV_ACCERR): Likewise.
7808         (BUS_ADRALN): Likewise.
7809         (BUS_ADRERR): Likewise.
7810         (BUS_OBJERR): Likewise.
7811         (BUS_MCEERR_AR): Likewise.
7812         (BUS_MCEERR_AO): Likewise.
7813         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
7814         (TRAP_TRACE): Likewise.
7815         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
7816         __USE_XOPEN2K8].
7817         (CLD_KILLED): Likewise.
7818         (CLD_DUMPED): Likewise.
7819         (CLD_TRAPPED): Likewise.
7820         (CLD_STOPPED): Likewise.
7821         (CLD_CONTINUED): Likewise.
7822         (POLL_IN): Likewise.
7823         (POLL_OUT): Likewise.
7824         (POLL_MSG): Likewise.
7825         (POLL_ERR): Likewise.
7826         (POLL_PRI): Likewise.
7827         (POLL_HUP): Likewise.
7828         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (ILL_ILLOPC): Likewise.
7829         (ILL_ILLOPN): Likewise.
7830         (ILL_ILLADR): Likewise.
7831         (ILL_ILLTRP): Likewise.
7832         (ILL_PRVOPC): Likewise.
7833         (ILL_PRVREG): Likewise.
7834         (ILL_COPROC): Likewise.
7835         (ILL_BADSTK): Likewise.
7836         (FPE_INTDIV): Likewise.
7837         (FPE_INTOVF): Likewise.
7838         (FPE_FLTDIV): Likewise.
7839         (FPE_FLTOVF): Likewise.
7840         (FPE_FLTUND): Likewise.
7841         (FPE_FLTRES): Likewise.
7842         (FPE_FLTINV): Likewise.
7843         (FPE_FLTSUB): Likewise.
7844         (SEGV_MAPERR): Likewise.
7845         (SEGV_ACCERR): Likewise.
7846         (BUS_ADRALN): Likewise.
7847         (BUS_ADRERR): Likewise.
7848         (BUS_OBJERR): Likewise.
7849         (BUS_MCEERR_AR): Likewise.
7850         (BUS_MCEERR_AO): Likewise.
7851         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
7852         (TRAP_TRACE): Likewise.
7853         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
7854         __USE_XOPEN2K8].
7855         (CLD_KILLED): Likewise.
7856         (CLD_DUMPED): Likewise.
7857         (CLD_TRAPPED): Likewise.
7858         (CLD_STOPPED): Likewise.
7859         (CLD_CONTINUED): Likewise.
7860         (POLL_IN): Likewise.
7861         (POLL_OUT): Likewise.
7862         (POLL_MSG): Likewise.
7863         (POLL_ERR): Likewise.
7864         (POLL_PRI): Likewise.
7865         (POLL_HUP): Likewise.
7866         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (ILL_ILLOPC): Likewise.
7867         (ILL_ILLOPN): Likewise.
7868         (ILL_ILLADR): Likewise.
7869         (ILL_ILLTRP): Likewise.
7870         (ILL_PRVOPC): Likewise.
7871         (ILL_PRVREG): Likewise.
7872         (ILL_COPROC): Likewise.
7873         (ILL_BADSTK): Likewise.
7874         (FPE_INTDIV): Likewise.
7875         (FPE_INTOVF): Likewise.
7876         (FPE_FLTDIV): Likewise.
7877         (FPE_FLTOVF): Likewise.
7878         (FPE_FLTUND): Likewise.
7879         (FPE_FLTRES): Likewise.
7880         (FPE_FLTINV): Likewise.
7881         (FPE_FLTSUB): Likewise.
7882         (SEGV_MAPERR): Likewise.
7883         (SEGV_ACCERR): Likewise.
7884         (BUS_ADRALN): Likewise.
7885         (BUS_ADRERR): Likewise.
7886         (BUS_OBJERR): Likewise.
7887         (BUS_MCEERR_AR): Likewise.
7888         (BUS_MCEERR_AO): Likewise.
7889         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
7890         (TRAP_TRACE): Likewise.
7891         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
7892         __USE_XOPEN2K8].
7893         (CLD_KILLED): Likewise.
7894         (CLD_DUMPED): Likewise.
7895         (CLD_TRAPPED): Likewise.
7896         (CLD_STOPPED): Likewise.
7897         (CLD_CONTINUED): Likewise.
7898         (POLL_IN): Likewise.
7899         (POLL_OUT): Likewise.
7900         (POLL_MSG): Likewise.
7901         (POLL_ERR): Likewise.
7902         (POLL_PRI): Likewise.
7903         (POLL_HUP): Likewise.
7904         * sysdeps/unix/sysv/linux/tile/bits/siginfo.h (ILL_ILLOPC): Likewise.
7905         (ILL_ILLOPN): Likewise.
7906         (ILL_ILLADR): Likewise.
7907         (ILL_ILLTRP): Likewise.
7908         (ILL_PRVOPC): Likewise.
7909         (ILL_PRVREG): Likewise.
7910         (ILL_COPROC): Likewise.
7911         (ILL_BADSTK): Likewise.
7912         (ILL_DBLFLT): Likewise.
7913         (ILL_HARDWALL): Likewise.
7914         (FPE_INTDIV): Likewise.
7915         (FPE_INTOVF): Likewise.
7916         (FPE_FLTDIV): Likewise.
7917         (FPE_FLTOVF): Likewise.
7918         (FPE_FLTUND): Likewise.
7919         (FPE_FLTRES): Likewise.
7920         (FPE_FLTINV): Likewise.
7921         (FPE_FLTSUB): Likewise.
7922         (SEGV_MAPERR): Likewise.
7923         (SEGV_ACCERR): Likewise.
7924         (BUS_ADRALN): Likewise.
7925         (BUS_ADRERR): Likewise.
7926         (BUS_OBJERR): Likewise.
7927         (BUS_MCEERR_AR): Likewise.
7928         (BUS_MCEERR_AO): Likewise.
7929         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
7930         (TRAP_TRACE): Likewise.
7931         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
7932         __USE_XOPEN2K8].
7933         (CLD_KILLED): Likewise.
7934         (CLD_DUMPED): Likewise.
7935         (CLD_TRAPPED): Likewise.
7936         (CLD_STOPPED): Likewise.
7937         (CLD_CONTINUED): Likewise.
7938         (POLL_IN): Likewise.
7939         (POLL_OUT): Likewise.
7940         (POLL_MSG): Likewise.
7941         (POLL_ERR): Likewise.
7942         (POLL_PRI): Likewise.
7943         (POLL_HUP): Likewise.
7944         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h (ILL_ILLOPC): Likewise.
7945         (ILL_ILLOPN): Likewise.
7946         (ILL_ILLADR): Likewise.
7947         (ILL_ILLTRP): Likewise.
7948         (ILL_PRVOPC): Likewise.
7949         (ILL_PRVREG): Likewise.
7950         (ILL_COPROC): Likewise.
7951         (ILL_BADSTK): Likewise.
7952         (FPE_INTDIV): Likewise.
7953         (FPE_INTOVF): Likewise.
7954         (FPE_FLTDIV): Likewise.
7955         (FPE_FLTOVF): Likewise.
7956         (FPE_FLTUND): Likewise.
7957         (FPE_FLTRES): Likewise.
7958         (FPE_FLTINV): Likewise.
7959         (FPE_FLTSUB): Likewise.
7960         (SEGV_MAPERR): Likewise.
7961         (SEGV_ACCERR): Likewise.
7962         (BUS_ADRALN): Likewise.
7963         (BUS_ADRERR): Likewise.
7964         (BUS_OBJERR): Likewise.
7965         (BUS_MCEERR_AR): Likewise.
7966         (BUS_MCEERR_AO): Likewise.
7967         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
7968         (TRAP_TRACE): Likewise.
7969         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
7970         __USE_XOPEN2K8].
7971         (CLD_KILLED): Likewise.
7972         (CLD_DUMPED): Likewise.
7973         (CLD_TRAPPED): Likewise.
7974         (CLD_STOPPED): Likewise.
7975         (CLD_CONTINUED): Likewise.
7976         (POLL_IN): Likewise.
7977         (POLL_OUT): Likewise.
7978         (POLL_MSG): Likewise.
7979         (POLL_ERR): Likewise.
7980         (POLL_PRI): Likewise.
7981         (POLL_HUP): Likewise.
7982         * conform/Makefile (test-xfail-POSIX/signal.h/conform): Remove.
7983         (test-xfail-POSIX/sys/wait.h/conform): Likewise.
7985         [BZ #16670]
7986         * posix/sched.h [!__USE_XOPEN2K] (__need_time_t): Don't define
7987         before #include of <time.h>.
7988         [!__USE_XOPEN2K] (__need_timespec): Likewise.
7989         * conform/Makefile (test-xfail-POSIX/sched.h/conform): Remove.
7990         (test-xfail-UNIX98/sched.h/conform): Likewise.
7992 2014-03-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
7994         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept): Detect and
7995         error absence of trapping exception support.
7996         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Likewise.
7998 2014-03-07  Joseph Myers  <joseph@codesourcery.com>
8000         * catgets/Makefile (tests-special): Add $(objpfx)sample.SJIS.cat.
8001         ($(objpfx)sample.SJIS.cat): Use $(evaluate-test).
8002         * timezone/Makefile (testdata): Move definition above include of
8003         Rules.
8004         (test-zones): New variable.
8005         (tests-special): Add zone files.
8006         (build-testdata): Use $(evaluate-test).
8008         * elf/Makefile (tests-special): Rename tests to end with .out.
8009         ($(objpfx)noload-mem): Likewise.
8010         ($(objpfx)tst-leaks1-mem): Likewise.
8011         ($(objpfx)tst-leaks1-static-mem.out): Likewise.
8012         * iconv/Makefile (xtests-special): Change test-iconvconfig to
8013         $(objpfx)test-iconvconfig.out.
8014         (test-iconvconfig): Change to $(objpfx)test-iconvconfig.out.  Use
8015         set -e inside subshell and redirect output to file.
8016         * iconvdata/Makefile (generated): Rename tests to end with .out.
8017         Correct type.
8018         (tests-special): Rename tests to end with .out.
8019         ($(objpfx)mtrace-tst-loading): Likewise.
8020         * intl/Makefile (generated): Likewise.
8021         (tests-special): Likewise.
8022         ($(objpfx)mtrace-tst-gettext): Likewise.
8023         * misc/Makefile (generated): Likewise.
8024         (tests-special): Likewise.
8025         ($(objpfx)tst-error1-mem): Likewise.
8026         * nptl/Makefile (tests-special): Likewise.
8027         ($(objpfx)tst-stack3-mem): Likewise.
8028         (generated): Likewise.
8029         * posix/Makefile (generated): Likewise.
8030         (tests-special): Likewise.
8031         (xtests-special): Likewise.
8032         ($(objpfx)tst-fnmatch-mem): Likewise.
8033         ($(objpfx)bug-regex2-mem): Likewise.
8034         ($(objpfx)bug-regex14-mem): Likewise.
8035         ($(objpfx)bug-regex21-mem): Likewise.
8036         ($(objpfx)bug-regex31-mem): Likewise.
8037         ($(objpfx)tst-vfork3-mem): Likewise.
8038         ($(objpfx)tst-rxspencer-no-utf8-mem): Likewise.
8039         ($(objpfx)tst-pcre-mem): Likewise.
8040         ($(objpfx)tst-boost-mem): Likewise.
8041         ($(objpfx)bug-ga2-mem): Likewise.
8042         ($(objpfx)bug-glob2-mem): Likewise.
8043         * resolv/Makefile (generate): Likewise.
8044         (tests-special): Likewise.
8045         (xtests-special): Likewise.
8046         (generated): Likewise.
8047         ($(objpfx)mtrace-tst-leaks): Likewise.
8048         ($(objpfx)mtrace-tst-leaks2): Likewise.
8050         * scripts/merge-test-results.sh: New file.
8051         * Makefile (tests-special-notdir): New variable.
8052         (tests): Run merge-test-results.sh.
8053         (xtests): Likewise.
8054         * Rules (tests-special-notdir): New variable.
8055         (xtests-special-notdir): Likewise.
8056         (tests): Run merge-test-results.sh
8057         (xtests): Likewise.
8059         * Makeconfig (test-xfail-name): New variable.
8060         (evaluate-test): Use $(test-xfail-name) instead of $(@F:.out=) to
8061         compute variable name for expected failures.
8062         * conform/Makefile (conformtest-headers-data): New variable.
8063         (conformtest-standards): Likewise.
8064         (conformtest-headers-ISO): Likewise.
8065         (conformtest-headers-ISO99): Likewise.
8066         (conformtest-headers-ISO11): Likewise.
8067         (conformtest-headers-POSIX): Likewise.
8068         (conformtest-headers-XPG3): Likewise.
8069         (conformtest-headers-XPG4): Likewise.
8070         (conformtest-headers-UNIX98): Likewise.
8071         (conformtest-headers-XOPEN2K): Likewise.
8072         (conformtest-headers-POSIX2008): Likewise.
8073         (conformtest-headers-XOPEN2K8): Likewise.
8074         (conformtest-header-list-base): Likewise.
8075         (conformtest-header-list-tests): Likewise.
8076         (conformtest-header-base): Likewise.
8077         (conformtest-header-tests): Likewise.
8078         (tests-special): Add $(conformtest-header-list-tests).  If
8079         [$(fast-check) && !$(cross-compiling)], add
8080         $(conformtest-header-tests) instead of
8081         $(objpfx)run-conformtest.out.
8082         (generated): Add $(conformtest-header-list-base).  If
8083         [$(fast-check) && !$(cross-compiling)], add
8084         $(conformtest-header-base).  Remove previous setting.
8085         ($(conformtest-header-list-tests)): New target.
8086         (test-xfail-run-conformtest): Remove variable.
8087         ($(objpfx)run-conformtest.out): Remove target.
8088         (test-xfail-ISO11/complex.h/conform): New variable.
8089         (test-xfail-ISO11/stdalign.h/conform): Likewise.
8090         (test-xfail-ISO11/stdnoreturn.h/conform): Likewise.
8091         (test-xfail-XPG3/varargs.h/conform): Likewise.
8092         (test-xfail-XPG4/varargs.h/conform): Likewise.
8093         (test-xfail-UNIX98/varargs.h/conform): Likewise.
8094         (test-xfail-XPG4/ndbm.h/conform): Likewise.
8095         (test-xfail-UNIX98/ndbm.h/conform): Likewise.
8096         (test-xfail-XOPEN2K/ndbm.h/conform): Likewise.
8097         (test-xfail-XOPEN2K8/ndbm.h/conform): Likewise.
8098         (test-xfail-XPG3/fcntl.h/conform): Likewise.
8099         (test-xfail-XPG3/ftw.h/conform): Likewise.
8100         (test-xfail-XPG3/grp.h/conform): Likewise.
8101         (test-xfail-XPG3/langinfo.h/conform): Likewise.
8102         (test-xfail-XPG3/limits.h/conform): Likewise.
8103         (test-xfail-XPG3/pwd.h/conform): Likewise.
8104         (test-xfail-XPG3/search.h/conform): Likewise.
8105         (test-xfail-XPG3/signal.h/conform): Likewise.
8106         (test-xfail-XPG3/stdio.h/conform): Likewise.
8107         (test-xfail-XPG3/stdlib.h/conform): Likewise.
8108         (test-xfail-XPG3/string.h/conform): Likewise.
8109         (test-xfail-XPG3/sys/ipc.h/conform): Likewise.
8110         (test-xfail-XPG3/sys/msg.h/conform): Likewise.
8111         (test-xfail-XPG3/sys/sem.h/conform): Likewise.
8112         (test-xfail-XPG3/sys/shm.h/conform): Likewise.
8113         (test-xfail-XPG3/sys/stat.h/conform): Likewise.
8114         (test-xfail-XPG3/sys/types.h/conform): Likewise.
8115         (test-xfail-XPG3/sys/wait.h/conform): Likewise.
8116         (test-xfail-XPG3/termios.h/conform): Likewise.
8117         (test-xfail-XPG3/time.h/conform): Likewise.
8118         (test-xfail-XPG3/unistd.h/conform): Likewise.
8119         (test-xfail-XPG4/arpa/inet.h/conform): Likewise.
8120         (test-xfail-XPG4/fcntl.h/conform): Likewise.
8121         (test-xfail-XPG4/langinfo.h/conform): Likewise.
8122         (test-xfail-XPG4/netdb.h/conform): Likewise.
8123         (test-xfail-XPG4/netinet/in.h/conform): Likewise.
8124         (test-xfail-XPG4/signal.h/conform): Likewise.
8125         (test-xfail-XPG4/stdio.h/conform): Likewise.
8126         (test-xfail-XPG4/stdlib.h/conform): Likewise.
8127         (test-xfail-XPG4/stropts.h/conform): Likewise.
8128         (test-xfail-XPG4/sys/ipc.h/conform): Likewise.
8129         (test-xfail-XPG4/sys/msg.h/conform): Likewise.
8130         (test-xfail-XPG4/sys/sem.h/conform): Likewise.
8131         (test-xfail-XPG4/sys/shm.h/conform): Likewise.
8132         (test-xfail-XPG4/sys/socket.h/conform): Likewise.
8133         (test-xfail-XPG4/sys/stat.h/conform): Likewise.
8134         (test-xfail-XPG4/sys/time.h/conform): Likewise.
8135         (test-xfail-XPG4/sys/types.h/conform): Likewise.
8136         (test-xfail-XPG4/sys/wait.h/conform): Likewise.
8137         (test-xfail-XPG4/termios.h/conform): Likewise.
8138         (test-xfail-XPG4/ucontext.h/conform): Likewise.
8139         (test-xfail-XPG4/unistd.h/conform): Likewise.
8140         (test-xfail-XPG4/utmpx.h/conform): Likewise.
8141         (test-xfail-POSIX/sched.h/conform): Likewise.
8142         (test-xfail-POSIX/signal.h/conform): Likewise.
8143         (test-xfail-POSIX/sys/wait.h/conform): Likewise.
8144         (test-xfail-POSIX/tar.h/conform): Likewise.
8145         (test-xfail-UNIX98/arpa/inet.h/conform): Likewise.
8146         (test-xfail-UNIX98/fcntl.h/conform): Likewise.
8147         (test-xfail-UNIX98/langinfo.h/conform): Likewise.
8148         (test-xfail-UNIX98/netdb.h/conform): Likewise.
8149         (test-xfail-UNIX98/netinet/in.h/conform): Likewise.
8150         (test-xfail-UNIX98/sched.h/conform): Likewise.
8151         (test-xfail-UNIX98/signal.h/conform): Likewise.
8152         (test-xfail-UNIX98/stdio.h/conform): Likewise.
8153         (test-xfail-UNIX98/stdlib.h/conform): Likewise.
8154         (test-xfail-UNIX98/stropts.h/conform): Likewise.
8155         (test-xfail-UNIX98/sys/ipc.h/conform): Likewise.
8156         (test-xfail-UNIX98/sys/msg.h/conform): Likewise.
8157         (test-xfail-UNIX98/sys/sem.h/conform): Likewise.
8158         (test-xfail-UNIX98/sys/shm.h/conform): Likewise.
8159         (test-xfail-UNIX98/sys/socket.h/conform): Likewise.
8160         (test-xfail-UNIX98/sys/time.h/conform): Likewise.
8161         (test-xfail-UNIX98/sys/wait.h/conform): Likewise.
8162         (test-xfail-UNIX98/ucontext.h/conform): Likewise.
8163         (test-xfail-UNIX98/unistd.h/conform): Likewise.
8164         (test-xfail-UNIX98/utmpx.h/conform): Likewise.
8165         (test-xfail-XOPEN2K/aio.h/conform): Likewise.
8166         (test-xfail-XOPEN2K/arpa/inet.h/conform): Likewise.
8167         (test-xfail-XOPEN2K/fcntl.h/conform): Likewise.
8168         (test-xfail-XOPEN2K/langinfo.h/conform): Likewise.
8169         (test-xfail-XOPEN2K/math.h/conform): Likewise.
8170         (test-xfail-XOPEN2K/mqueue.h/conform): Likewise.
8171         (test-xfail-XOPEN2K/netdb.h/conform): Likewise.
8172         (test-xfail-XOPEN2K/netinet/in.h/conform): Likewise.
8173         (test-xfail-XOPEN2K/semaphore.h/conform): Likewise.
8174         (test-xfail-XOPEN2K/signal.h/conform): Likewise.
8175         (test-xfail-XOPEN2K/stdarg.h/conform): Likewise.
8176         (test-xfail-XOPEN2K/stdio.h/conform): Likewise.
8177         (test-xfail-XOPEN2K/stropts.h/conform): Likewise.
8178         (test-xfail-XOPEN2K/sys/ipc.h/conform): Likewise.
8179         (test-xfail-XOPEN2K/sys/msg.h/conform): Likewise.
8180         (test-xfail-XOPEN2K/sys/sem.h/conform): Likewise.
8181         (test-xfail-XOPEN2K/sys/shm.h/conform): Likewise.
8182         (test-xfail-XOPEN2K/sys/socket.h/conform): Likewise.
8183         (test-xfail-XOPEN2K/sys/wait.h/conform): Likewise.
8184         (test-xfail-XOPEN2K/termios.h/conform): Likewise.
8185         (test-xfail-XOPEN2K/tgmath.h/conform): Likewise.
8186         (test-xfail-XOPEN2K/ucontext.h/conform): Likewise.
8187         (test-xfail-XOPEN2K/utmpx.h/conform): Likewise.
8188         (test-xfail-POSIX2008/arpa/inet.h/conform): Likewise.
8189         (test-xfail-POSIX2008/fcntl.h/conform): Likewise.
8190         (test-xfail-POSIX2008/netdb.h/conform): Likewise.
8191         (test-xfail-POSIX2008/netinet/in.h/conform): Likewise.
8192         (test-xfail-POSIX2008/signal.h/conform): Likewise.
8193         (test-xfail-POSIX2008/stropts.h/conform): Likewise.
8194         (test-xfail-POSIX2008/sys/socket.h/conform): Likewise.
8195         (test-xfail-POSIX2008/sys/wait.h/conform): Likewise.
8196         (test-xfail-XOPEN2K8/arpa/inet.h/conform): Likewise.
8197         (test-xfail-XOPEN2K8/fcntl.h/conform): Likewise.
8198         (test-xfail-XOPEN2K8/limits.h/conform): Likewise.
8199         (test-xfail-XOPEN2K8/math.h/conform): Likewise.
8200         (test-xfail-XOPEN2K8/netdb.h/conform): Likewise.
8201         (test-xfail-XOPEN2K8/netinet/in.h/conform): Likewise.
8202         (test-xfail-XOPEN2K8/signal.h/conform): Likewise.
8203         (test-xfail-XOPEN2K8/stdio.h/conform): Likewise.
8204         (test-xfail-XOPEN2K8/stropts.h/conform): Likewise.
8205         (test-xfail-XOPEN2K8/sys/ipc.h/conform): Likewise.
8206         (test-xfail-XOPEN2K8/sys/msg.h/conform): Likewise.
8207         (test-xfail-XOPEN2K8/sys/select.h/conform): Likewise.
8208         (test-xfail-XOPEN2K8/sys/sem.h/conform): Likewise.
8209         (test-xfail-XOPEN2K8/sys/shm.h/conform): Likewise.
8210         (test-xfail-XOPEN2K8/sys/socket.h/conform): Likewise.
8211         (test-xfail-XOPEN2K8/sys/time.h/conform): Likewise.
8212         (test-xfail-XOPEN2K8/sys/wait.h/conform): Likewise.
8213         (test-xfail-XOPEN2K8/termios.h/conform): Likewise.
8214         (test-xfail-XOPEN2K8/tgmath.h/conform): Likewise.
8215         (test-xfail-XOPEN2K8/utmpx.h/conform): Likewise.
8216         (conformtest-cc-flags): Likewise.
8217         ($(conformtest-header-tests): New target.
8218         * conform/check-header-lists.sh: New file.
8219         * conform/run-conformtest.sh: Remove.
8221         * conform/conformtest.pl: Allow ' and \ in values given for
8222         constants.
8223         * conform/data/semaphore.h-data [POSIX] (fcntl.h): Allow header
8224         inclusion.
8225         [POSIX] (sys/types.h): Likewise.
8226         [POSIX2008 || XOPEN2K8] (sys/types.h): Don't allow header
8227         inclusion.
8228         [POSIX || UNIX98 || XOPEN2K] (time.h): Don't allow header
8229         inclusion.
8230         * conform/data/signal.h-data (SIGIO): Remove expectation.
8231         [XPG3] (SIGBUS): Do not expect.
8232         [POSIX || XPG3] (SIGPOLL): Likewise.
8233         [POSIX || XPG3] (SIGPROF): Likewise.
8234         [POSIX || XPG3] (SIGSYS): Likewise.
8235         [XPG3] (SIGTRAP): Likewise.
8236         [POSIX || XPG3] (SIGURG): Likewise.
8237         [POSIX || XPG3] (SIGVTALRM): Likewise.
8238         [POSIX || XPG3] (SIGXCPU): Likewise.
8239         [POSIX || XPG3] (SIGXFSZ): Likewise.
8240         [POSIX] (SA_SIGINFO): Expect.
8241         [XPG3] (siginfo_t): Do not expect type or contents.
8242         [POSIX] (si_pid): Do not expect element.
8243         [POSIX] (si_uid): Likewise.
8244         [POSIX] (si_addr): Likewise.
8245         [POSIX] (si_status): Likewise.
8246         [POSIX] (si_band): Likewise.
8247         [XPG4] (si_value): Likewise.
8248         [POSIX || XPG3] (ILL_ILLOPC): Do not expect.
8249         [POSIX || XPG3] (ILL_ILLOPN): Likewise.
8250         [POSIX || XPG3] (ILL_ILLADR): Likewise.
8251         [POSIX || XPG3] (ILL_ILLTRP): Likewise.
8252         [POSIX || XPG3] (ILL_PRVOPC): Likewise.
8253         [POSIX || XPG3] (ILL_PRVREG): Likewise.
8254         [POSIX || XPG3] (ILL_COPROC): Likewise.
8255         [POSIX || XPG3] (ILL_BADSTK): Likewise.
8256         [POSIX || XPG3] (FPE_INTDIV): Likewise.
8257         [POSIX || XPG3] (FPE_INTOVF): Likewise.
8258         [POSIX || XPG3] (FPE_FLTDIV): Likewise.
8259         [POSIX || XPG3] (FPE_FLTOVF): Likewise.
8260         [POSIX || XPG3] (FPE_FLTUND): Likewise.
8261         [POSIX || XPG3] (FPE_FLTRES): Likewise.
8262         [POSIX || XPG3] (FPE_FLTINV): Likewise.
8263         [POSIX || XPG3] (FPE_FLTSUB): Likewise.
8264         [POSIX || XPG3] (SEGV_MAPERR): Likewise.
8265         [POSIX || XPG3] (SEGV_ACCERR): Likewise.
8266         [POSIX || XPG3] (BUS_ADRALN): Likewise.
8267         [POSIX || XPG3] (BUS_ADRERR): Likewise.
8268         [POSIX || XPG3] (BUS_OBJERR): Likewise.
8269         [POSIX || XPG3] (CLD_EXITED): Likewise.
8270         [POSIX || XPG3] (CLD_KILLED): Likewise.
8271         [POSIX || XPG3] (CLD_DUMPED): Likewise.
8272         [POSIX || XPG3] (CLD_TRAPPED): Likewise.
8273         [POSIX || XPG3] (CLD_STOPPED): Likewise.
8274         [POSIX || XPG3] (CLD_CONTINUED): Likewise.
8275         [POSIX || XPG3] (POLL_IN): Likewise.
8276         [POSIX || XPG3] (POLL_OUT): Likewise.
8277         [POSIX || XPG3] (POLL_MSG): Likewise.
8278         [POSIX || XPG3] (POLL_ERR): Likewise.
8279         [POSIX || XPG3] (POLL_PRI): Likewise.
8280         [POSIX || XPG3] (POLL_HUP): Likewise.
8281         [POSIX || XPG3 || POSIX2008] (TRAP_BRKPT): Likewise.
8282         [POSIX || XPG3 || POSIX2008] (TRAP_TRACE): Likewise.
8283         (SIG*): Do not allow.
8284         [XPG3] (si_*): Likewise.
8285         [XPG3] (SI_*): Likewise.
8286         [XPG3 || XPG4] (sigev_*): Likewise.
8287         [XPG3 || XPG4] (SIGEV_*): Likewise.
8288         [XPG3 || XPG4] (sival_*): Likewise.
8289         [POSIX || XPG3 || XPG4] (uc_*): Likewise.
8290         [POSIX || XPG3] (BUS_*): Likewise.
8291         [POSIX || XPG3] (CLD_*): Likewise.
8292         [POSIX || XPG3] (FPE_*): Likewise.
8293         [POSIX || XPG3] (ILL_*): Likewise.
8294         [POSIX || XPG3] (POLL_*): Likewise.
8295         [POSIX || XPG3] (SEGV_*): Likewise.
8296         [POSIX || XPG3 || POSIX2008] (SS_*): Likewise.
8297         [POSIX || XPG3 || POSIX2008] (SV_*): Likewise.
8298         [POSIX || XPG3 || POSIX2008] (TRAP_*): Likewise.
8299         [POSIX || XPG3 || POSIX2008] (ss_*): Likewise.
8300         [POSIX || XPG3 || POSIX2008] (sv_*): Likewise.
8301         * conform/data/tar.h-data (TMAGLEN): Use macro-int-constant.
8302         Specify type and value.
8303         (TVERSLEN): Likewise.
8304         (REGTYPE): Likewise.
8305         (AREGTYPE): Likewise.
8306         (LNKTYPE): Likewise.
8307         (SYMTYPE): Likewise.
8308         (CHRTYPE): Likewise.
8309         (BLKTYPE): Likewise.
8310         (DIRTYPE): Likewise.
8311         (FIFOTYPE): Likewise.
8312         (CONTTYPE): Likewise.
8313         (TSUID): Likewise.
8314         (TSGID): Likewise.
8315         (TSVTX): Likewise.
8316         (TUREAD): Likewise.
8317         (TUWRITE): Likewise.
8318         (TUEXEC): Likewise.
8319         (TGREAD): Likewise.
8320         (TGWRITE): Likewise.
8321         (TGEXEC): Likewise.
8322         (TOREAD): Likewise.
8323         (TOWRITE): Likewise.
8324         (TOEXEC): Likewise.
8325         [POSIX] (TSVTX): Expect constant.
8327 2014-03-06  Joseph Myers  <joseph@codesourcery.com>
8329         * Makefile (tests): Change dependencies to ....
8330         (tests-special): ... additions to this variable.
8331         (tests): Depend on $(tests-special).
8332         * Makerules (check-abi-list): New variable.
8333         (check-abi): Depend on $(check-abi-list).
8334         [$(subdir) = elf] (tests-special): Add
8335         $(objpfx)check-abi-libc.out.
8336         [$(build-shared) = yes && subdir] (tests-special): Add
8337         $(check-abi-list).
8338         [$(build-shared) = yes && subdir] (tests): Do not depend on
8339         check-abi.
8340         * Rules (tests): Depend on $(tests-special).
8341         (xtests): Depend on $(xtests-special).
8342         * catgets/Makefile (tests): Change dependencies to ....
8343         (tests-special): ... additions to this variable.
8344         * conform/Makefile (tests): Change dependencies to ....
8345         (tests-special): ... additions to this variable.
8346         * elf/Makefile (tests): Change dependencies to ....
8347         (tests-special): ... additions to this variable.
8348         * grp/Makefile (tests): Change dependencies to ....
8349         (tests-special): ... additions to this variable.
8350         * iconv/Makefile (xtests): Change dependencies to ....
8351         (xtests-special): ... additions to this variable.
8352         * iconvdata/Makefile (tests): Change dependencies to ....
8353         (tests-special): ... additions to this variable.
8354         * intl/Makefile (tests): Change dependencies to ....
8355         (tests-special): ... additions to this variable.  Also add
8356         $(objpfx)tst-gettext.out.
8357         * io/Makefile (tests): Change dependencies to ....
8358         (tests-special): ... additions to this variable.
8359         * libio/Makefile (tests): Change dependencies to ....
8360         (tests-special): ... additions to this variable.
8361         * malloc/Makefile (tests): Change dependencies to ....
8362         (tests-special): ... additions to this variable.
8363         * misc/Makefile (tests): Change dependencies to ....
8364         (tests-special): ... additions to this variable.
8365         * nptl/Makefile (tests): Change dependencies to ....
8366         (tests-special): ... additions to this variable.
8367         * nptl_db/Makefile (tests): Change dependencies to ....
8368         (tests-special): ... additions to this variable.
8369         * posix/Makefile (tests): Change dependencies to ....
8370         (tests-special): ... additions to this variable.
8371         (xtests): Change dependencies to ....
8372         (xtests-special): ... additions to this variable.
8373         * resolv/Makefile (tests): Change dependencies to ....
8374         (tests-special): ... additions to this variable.
8375         (xtests): Change dependencies to ....
8376         (xtests-special): ... additions to this variable.
8377         * stdio-common/Makefile (tests): Change dependencies to ....
8378         (tests-special): ... additions to this variable.
8379         (do-tst-unbputc): Remove target.
8380         (do-tst-printf): Likewise.
8381         * stdlib/Makefile (tests): Change dependencies to ....
8382         (tests-special): ... additions to this variable.
8383         * string/Makefile (tests): Change dependencies to ....
8384         (tests-special): ... additions to this variable.
8385         * sysdeps/x86/Makefile (tests): Change dependencies to ....
8386         (tests-special): ... additions to this variable.
8388         * conform/data/netinet/tcp.h-data [POSIX2008 || XOPEN2K8]: Enable
8389         whole file.
8390         * conform/data/sys/timeb.h-data [POSIX2008 || XOPEN2K8]: Disable
8391         whole file.
8392         * conform/data/sys/uio.h-data [POSIX2008]: Likewise.
8393         * conform/data/ucontext.h-data [POSIX2008 || XOPEN2K8]: Likewise.
8395         * conform/data/aio.h-data [XPG3 || XPG4]: Disable whole file.
8396         * conform/data/arpa/inet.h-data [XPG3]: Likewise.
8397         * conform/data/dlfcn.h-data [XPG3 || XPG4]: Likewise.
8398         * conform/data/fmtmsg.h-data [XPG3]: Likewise.
8399         * conform/data/libgen.h-data [XPG3]: Likewise.
8400         * conform/data/mqueue.h-data [XPG3 || XPG4]: Likewise.
8401         * conform/data/ndbm.h-data [XPG3]: Likewise.
8402         * conform/data/net/if.h-data [XPG3 || XPG4 || UNIX98]: Likewise.
8403         * conform/data/netdb.h-data [XPG3]: Likewise.
8404         * conform/data/netinet/in.h-data [XPG3]: Likewise.
8405         * conform/data/poll.h-data [XPG3]: Likewise.
8406         * conform/data/spawn.h-data [XPG3 || XPG4 || UNIX98]: Likewise.
8407         * conform/data/strings.h-data [XPG3]: Likewise.
8408         * conform/data/stropts.h-data [XPG3]: Likewise.
8409         * conform/data/sys/mman.h-data [XPG3]: Likewise.
8410         * conform/data/sys/resource.h-data [XPG3]: Likewise.
8411         * conform/data/sys/select.h-data [XPG3 || XPG4 || UNIX98]:
8412         Likewise.
8413         * conform/data/sys/statvfs.h-data [XPG3]: Likewise.
8414         * conform/data/sys/time.h-data [XPG3]: Likewise.
8415         * conform/data/sys/timeb.h-data [XPG3]: Likewise.
8416         * conform/data/sys/uio.h-data [XPG3]: Likewise.
8417         * conform/data/sys/un.h-data [XPG3]: Likewise.
8418         * conform/data/syslog.h-data [XPG3]: Likewise.
8419         * conform/data/ucontext.h-data [XPG3]: Likewise.
8420         * conform/data/utmpx.h-data [XPG3]: Likewise.
8421         * conform/data/varargs.h-data [UNIX98]: Enable file.
8423         * manual/Makefile (INSTALL_INFO): Remove variable setting.
8425         * math/libm-test.inc (struct test_f_f_data): Move expected results
8426         into structure for each rounding mode.
8427         (struct test_ff_f_data): Likewise.
8428         (struct test_ff_f_data_nexttoward): Likewise.
8429         (struct test_fi_f_data): Likewise.
8430         (struct test_fl_f_data): Likewise.
8431         (struct test_if_f_data): Likewise.
8432         (struct test_fff_f_data): Likewise.
8433         (struct test_c_f_data): Likewise.
8434         (struct test_f_f1_data): Likewise.
8435         (struct test_fF_f1_data): Likewise.
8436         (struct test_ffI_f1_data): Likewise.
8437         (struct test_c_c_data): Likewise.
8438         (struct test_cc_c_data): Likewise.
8439         (struct test_f_i_data): Likewise.
8440         (struct test_ff_i_data): Likewise.
8441         (struct test_f_l_data): Likewise.
8442         (struct test_f_L_data): Likewise.
8443         (struct test_fFF_11_data): Likewise.
8444         (RM_): New macro.
8445         (RM_FE_DOWNWARD): Likewise.
8446         (RM_FE_TONEAREST): Likewise.
8447         (RM_FE_TOWARDZERO): Likewise.
8448         (RM_FE_UPWARD): Likewise.
8449         (RUN_TEST_LOOP_f_f): Update references to expected results.
8450         (RUN_TEST_LOOP_2_f): Likewise.
8451         (RUN_TEST_LOOP_fff_f): Likewise.
8452         (RUN_TEST_LOOP_c_f): Likewise.
8453         (RUN_TEST_LOOP_f_f1): Likewise.
8454         (RUN_TEST_LOOP_fF_f1): Likewise.
8455         (RUN_TEST_LOOP_fI_f1): Likewise.
8456         (RUN_TEST_LOOP_ffI_f1): Likewise.
8457         (RUN_TEST_LOOP_c_c): Likewise.
8458         (RUN_TEST_LOOP_cc_c): Likewise.
8459         (RUN_TEST_LOOP_f_i): Likewise.
8460         (RUN_TEST_LOOP_f_i_tg): Likewise.
8461         (RUN_TEST_LOOP_ff_i_tg): Likewise.
8462         (RUN_TEST_LOOP_f_b): Likewise.
8463         (RUN_TEST_LOOP_f_b_tg): Likewise.
8464         (RUN_TEST_LOOP_f_l): Likewise.
8465         (RUN_TEST_LOOP_f_L): Likewise.
8466         (RUN_TEST_LOOP_fFF_11): Likewise.
8467         * math/gen-libm-test.pl (parse_args): Output four copies of
8468         expected results for each test.
8470         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
8471         (__ASSUME_UTIMES): Remove.
8472         * sysdeps/unix/sysv/linux/tile/kernel-features.h
8473         (__ASSUME_UTIMES): Likewise.
8475         * math/gen-auto-libm-tests.c: Update comment on output format.
8476         (output_for_one_input_case): Generate before-rounding and
8477         after-rounding information as conditions on output flags not
8478         floating-point format.
8479         * math/auto-libm-test-out: Regenerated.
8480         * math/gen-libm-test.pl (cond_value): New function.
8481         (or_cond_value): Use cond_value.
8482         (generate_testfile): Handle conditional exceptions.
8484 2014-03-05  Joseph Myers  <joseph@codesourcery.com>
8486         * math/libm-test.inc (max_valid_error): New variable.
8487         (init_max_error): Take new argument specifying whether function
8488         results are exactly determined.  Set max_valid_error and bound
8489         other variables for errors based on this argument.
8490         (set_max_error): Do not record results above max_valid_error.
8491         (check_float_internal): Only accept errors of up to 0.5ulps if
8492         also at most max_valid_error.
8493         (START): Take new argument EXACT and pass it to init_max_error.
8494         (acos_test): Update call to START.
8495         (acos_test_tonearest): Likewise.
8496         (acos_test_towardzero): Likewise.
8497         (acos_test_downward): Likewise.
8498         (acos_test_upward): Likewise.
8499         (acosh_test): Likewise.
8500         (asin_test): Likewise.
8501         (asin_test_tonearest): Likewise.
8502         (asin_test_towardzero): Likewise.
8503         (asin_test_downward): Likewise.
8504         (asin_test_upward): Likewise.
8505         (asinh_test): Likewise.
8506         (atan_test): Likewise.
8507         (atanh_test): Likewise.
8508         (atan2_test): Likewise.
8509         (cabs_test): Likewise.
8510         (cacos_test): Likewise.
8511         (cacosh_test): Likewise.
8512         (carg_test): Likewise.
8513         (casin_test): Likewise.
8514         (casinh_test): Likewise.
8515         (catan_test): Likewise.
8516         (catanh_test): Likewise.
8517         (cbrt_test): Likewise.
8518         (ccos_test): Likewise.
8519         (ccosh_test): Likewise.
8520         (ceil_test): Likewise.
8521         (cexp_test): Likewise.
8522         (cimag_test): Likewise.
8523         (clog_test): Likewise.
8524         (clog10_test): Likewise.
8525         (conj_test): Likewise.
8526         (copysign_test): Likewise.
8527         (cos_test): Likewise.
8528         (cos_test_tonearest): Likewise.
8529         (cos_test_towardzero): Likewise.
8530         (cos_test_downward): Likewise.
8531         (cos_test_upward): Likewise.
8532         (cosh_test): Likewise.
8533         (cosh_test_tonearest): Likewise.
8534         (cosh_test_towardzero): Likewise.
8535         (cosh_test_downward): Likewise.
8536         (cosh_test_upward): Likewise.
8537         (cpow_test): Likewise.
8538         (cproj_test): Likewise.
8539         (creal_test): Likewise.
8540         (csin_test): Likewise.
8541         (csinh_test): Likewise.
8542         (csqrt_test): Likewise.
8543         (ctan_test): Likewise.
8544         (ctan_test_tonearest): Likewise.
8545         (ctan_test_towardzero): Likewise.
8546         (ctan_test_downward): Likewise.
8547         (ctan_test_upward): Likewise.
8548         (ctanh_test): Likewise.
8549         (ctanh_test_tonearest): Likewise.
8550         (ctanh_test_towardzero): Likewise.
8551         (ctanh_test_downward): Likewise.
8552         (ctanh_test_upward): Likewise.
8553         (erf_test): Likewise.
8554         (erfc_test): Likewise.
8555         (exp_test): Likewise.
8556         (exp_test_tonearest): Likewise.
8557         (exp_test_towardzero): Likewise.
8558         (exp_test_downward): Likewise.
8559         (exp_test_upward): Likewise.
8560         (exp10_test): Likewise.
8561         (exp10_test_tonearest): Likewise.
8562         (exp10_test_towardzero): Likewise.
8563         (exp10_test_downward): Likewise.
8564         (exp10_test_upward): Likewise.
8565         (pow10_test): Likewise.
8566         (exp2_test): Likewise.
8567         (expm1_test): Likewise.
8568         (expm1_test_tonearest): Likewise.
8569         (expm1_test_towardzero): Likewise.
8570         (expm1_test_downward): Likewise.
8571         (expm1_test_upward): Likewise.
8572         (fabs_test): Likewise.
8573         (fdim_test): Likewise.
8574         (floor_test): Likewise.
8575         (fma_test): Likewise.
8576         (fma_test_towardzero): Likewise.
8577         (fma_test_downward): Likewise.
8578         (fma_test_upward): Likewise.
8579         (fmax_test): Likewise.
8580         (fmin_test): Likewise.
8581         (fmod_test): Likewise.
8582         (fpclassify_test): Likewise.
8583         (frexp_test): Likewise.
8584         (hypot_test): Likewise.
8585         (ilogb_test): Likewise.
8586         (isfinite_test): Likewise.
8587         (finite_test): Likewise.
8588         (isgreater_test): Likewise.
8589         (isgreaterequal_test): Likewise.
8590         (isinf_test): Likewise.
8591         (isless_test): Likewise.
8592         (islessequal_test): Likewise.
8593         (islessgreater_test): Likewise.
8594         (isnan_test): Likewise.
8595         (isnormal_test): Likewise.
8596         (issignaling_test): Likewise.
8597         (isunordered_test): Likewise.
8598         (j0_test): Likewise.
8599         (j1_test): Likewise.
8600         (jn_test): Likewise.
8601         (ldexp_test): Likewise.
8602         (lgamma_test): Likewise.
8603         (gamma_test): Likewise.
8604         (lrint_test): Likewise.
8605         (lrint_test_tonearest): Likewise.
8606         (lrint_test_towardzero): Likewise.
8607         (lrint_test_downward): Likewise.
8608         (lrint_test_upward): Likewise.
8609         (llrint_test): Likewise.
8610         (llrint_test_tonearest): Likewise.
8611         (llrint_test_towardzero): Likewise.
8612         (llrint_test_downward): Likewise.
8613         (llrint_test_upward): Likewise.
8614         (log_test): Likewise.
8615         (log10_test): Likewise.
8616         (log1p_test): Likewise.
8617         (log2_test): Likewise.
8618         (logb_test): Likewise.
8619         (logb_test_downward): Likewise.
8620         (lround_test): Likewise.
8621         (llround_test): Likewise.
8622         (modf_test): Likewise.
8623         (nearbyint_test): Likewise.
8624         (nextafter_test): Likewise.
8625         (nexttoward_test): Likewise.
8626         (pow_test): Likewise.
8627         (pow_test_tonearest): Likewise.
8628         (pow_test_towardzero): Likewise.
8629         (pow_test_downward): Likewise.
8630         (pow_test_upward): Likewise.
8631         (remainder_test): Likewise.
8632         (drem_test): Likewise.
8633         (remainder_test_tonearest): Likewise.
8634         (drem_test_tonearest): Likewise.
8635         (remainder_test_towardzero): Likewise.
8636         (drem_test_towardzero): Likewise.
8637         (remainder_test_downward): Likewise.
8638         (drem_test_downward): Likewise.
8639         (remainder_test_upward): Likewise.
8640         (drem_test_upward): Likewise.
8641         (remquo_test): Likewise.
8642         (rint_test): Likewise.
8643         (rint_test_tonearest): Likewise.
8644         (rint_test_towardzero): Likewise.
8645         (rint_test_downward): Likewise.
8646         (rint_test_upward): Likewise.
8647         (round_test): Likewise.
8648         (scalb_test): Likewise.
8649         (scalbn_test): Likewise.
8650         (scalbln_test): Likewise.
8651         (signbit_test): Likewise.
8652         (sin_test): Likewise.
8653         (sin_test_tonearest): Likewise.
8654         (sin_test_towardzero): Likewise.
8655         (sin_test_downward): Likewise.
8656         (sin_test_upward): Likewise.
8657         (sincos_test): Likewise.
8658         (sinh_test): Likewise.
8659         (sinh_test_tonearest): Likewise.
8660         (sinh_test_towardzero): Likewise.
8661         (sinh_test_downward): Likewise.
8662         (sinh_test_upward): Likewise.
8663         (sqrt_test): Likewise.
8664         (sqrt_test_tonearest): Likewise.
8665         (sqrt_test_towardzero): Likewise.
8666         (sqrt_test_downward): Likewise.
8667         (sqrt_test_upward): Likewise.
8668         (tan_test): Likewise.
8669         (tan_test_tonearest): Likewise.
8670         (tan_test_towardzero): Likewise.
8671         (tan_test_downward): Likewise.
8672         (tan_test_upward): Likewise.
8673         (tanh_test): Likewise.
8674         (tgamma_test): Likewise.
8675         (trunc_test): Likewise.
8676         (y0_test): Likewise.
8677         (y1_test): Likewise.
8678         (yn_test): Likewise.
8679         (significand_test): Likewise.
8681         * math/libm-test.inc (struct ulp_data): Don't refer to ulps for
8682         individual tests in comment.
8683         (libm-test-ulps.h): Don't refer to test_ulps in #include comment.
8684         (prev_max_error): New variable.
8685         (prev_real_max_error): Likewise.
8686         (prev_imag_max_error): Likewise.
8687         (compare_ulp_data): Don't refer to test names in comment.
8688         (find_test_ulps): Remove function.
8689         (find_function_ulps): Likewise.
8690         (find_complex_function_ulps): Likewise.
8691         (init_max_error): Take function name as argument.  Look up ulps
8692         for that function.
8693         (print_ulps): Remove function.
8694         (print_max_error): Use prev_max_error instead of calling
8695         find_function_ulps.
8696         (print_complex_max_error): Use prev_real_max_error and
8697         prev_imag_max_error instead of calling find_complex_function_ulps.
8698         (check_float_internal): Take max_ulp parameter instead of calling
8699         find_test_ulps.  Don't call print_ulps.
8700         (check_float): Update call to check_float_internal.
8701         (check_complex): Update calls to check_float_internal.
8702         (START): Pass argument to init_max_error.
8703         * math/gen-libm-test.pl (%results): Don't include "kind"
8704         information.
8705         (parse_ulps): Don't handle ulps of individual tests.
8706         (print_ulps_file): Likewise.
8707         (output_ulps): Likewise.
8708         * math/README.libm-test: Update.
8709         * manual/libm-err-tab.pl (parse_ulps): Don't handle ulps of
8710         individual tests.
8711         * sysdeps/aarch64/libm-test-ulps: Remove individual test ulps.
8712         * sysdeps/alpha/fpu/libm-test-ulps: Likewise.
8713         * sysdeps/arm/libm-test-ulps: Likewise.
8714         * sysdeps/i386/fpu/libm-test-ulps: Likewise.
8715         * sysdeps/ia64/fpu/libm-test-ulps: Likewise.
8716         * sysdeps/m68k/coldfire/fpu/libm-test-ulps: Likewise.
8717         * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Likewise.
8718         * sysdeps/microblaze/libm-test-ulps: Likewise.
8719         * sysdeps/mips/mips32/libm-test-ulps: Likewise.
8720         * sysdeps/mips/mips64/libm-test-ulps: Likewise.
8721         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
8722         * sysdeps/powerpc/nofpu/libm-test-ulps: Likewise.
8723         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
8724         * sysdeps/sh/libm-test-ulps: Likewise.
8725         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
8726         * sysdeps/tile/libm-test-ulps: Likewise.
8727         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
8729 2014-03-04  Joseph Myers  <joseph@codesourcery.com>
8731         * math/libm-test.inc (print_complex_max_error): Check separately
8732         whether real and imaginary errors are within allowed range and
8733         pass 0 to print_complex_function_ulps instead of value within
8734         allowed range.
8736 2014-03-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
8738         * libio/tst-ftell-active-handler.c (get_handles_fdopen): Fix
8739         formatting.
8740         (get_handles_fopen): Likewise.
8741         (do_write_test): Likewise.
8743         * libio/wfileops.c (do_ftell_wide): Fix up formatting.
8745         * libio/fileops.c (do_ftell): Use cached offset when
8746         available.
8747         * libio/iofwide.c (do_ftell_wide): Likewise.
8748         * libio/iofdopen.c (_IO_new_fdopen): Don't use
8749         _IO_file_attach.
8750         * libio/wfileops.c (_IO_fwide): Don't cache offset.
8752         [BZ #16532]
8753         * libio/libioP.h (get_file_offset): New function.
8754         * libio/fileops.c (get_file_offset): Likewise.
8755         (do_ftell): Likewise.
8756         (_IO_new_file_seekoff): Split out ftell logic.
8757         * libio/wfileops.c (do_ftell_wide): Likewise.
8758         (_IO_wfile_seekoff): Split out ftell logic.
8759         * libio/tst-ftell-active-handler.c: New test case.
8760         * libio/Makefile (tests): Add it.
8762 2014-03-03  Roland McGrath  <roland@hack.frob.com>
8764         * nptl/ChangeLog: Renamed to nptl/ChangeLog.old, no longer used.
8765         * nptl_db/ChangeLog: Renamed to nptl_db/ChangeLog.old, no longer used.
8767 2014-03-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
8769         [BZ #16639]
8770         * nscd/connections.c (nscd_init): Call do_exit.
8771         (start_threads): Call do_exit and notify_parent.
8772         (begin_drop_privileges): Call do_exit.
8773         (finish_drop_privileges): Likewise.
8774         * nscd/selinux.c (preserve_capabilities): Likewise.
8775         (install_real_capabilities): Likewise.
8776         (nscd_selinux_enabled): Likewise.
8777         (avc_create_thread): Likewise.
8778         (avc_alloc_lock): Likewise.
8779         (nscd_avc_init): Likewise.
8780         * nscd/nscd.c (parent_fd): New static variable.
8781         (main): Create a pipe between parent and child processes.
8782         Skip closing parent_fd.
8783         (monitor_child): New function.
8784         (do_exit): Likewise.
8785         (notify_parent): Likewise.
8786         * nscd/nscd.h (notify_parent): Likewise.
8787         (do_exit): Likewise.
8789 2014-03-03  Carlos O'Donell  <carlos@redhat.com>
8791         * malloc/malloc.c (__libc_calloc): Revert last change.
8793 2014-03-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
8795         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
8797 2014-03-03  Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
8799         * sysdeps/powerpc/powerpc64/power7/strrchr.S: New file.
8800         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strrchr multiarch
8801         implementation.
8802         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
8803         (__libc_ifunc_impl_list): Likewise.
8804         * sysdeps/powerpc/powerpc64/multiarch/strrchr.c: New file.
8805         * sysdeps/powerpc/powerpc64/multiarch/strrchr-ppc64.c: New file.
8806         * sysdeps/powerpc/powerpc64/multiarch/strrchr-power7.S: New file.
8807         * string/strrchr.c: Define STRRCHR.
8809 2014-02-28  Ondřej Bílka  <neleai@seznam.cz>
8811         * benchtest/bench-strtok.c (simple_strtok): Delete.
8812         (strtok_string): Use as benchmark.
8813         * string/strtok (STRTOK): New macro.
8815 2014-02-28  Carlos O'Donell  <carlos@redhat.com>
8817         * manual/threads.texi: Add header and standard comments to all
8818         functions.
8820         * elf/dl-lookup.c (check_match): New function.
8821         (ELF_MACHINE_SYM_NO_MATCH): Adjust comment.
8822         (do_lookup_x): Remove nested function check_match. Use non-nested
8823         function check_match.
8825 2014-02-28  Roland McGrath  <roland@hack.frob.com>
8827         * csu/Makefile (generated, before-compile): Use += rather than =.
8828         * catgets/Makefile (generated, generated-dirs): Likewise.
8829         * debug/Makefile (generated): Likewise.
8830         * dlfcn/Makefile (generated): Likewise.
8831         * elf/Makefile (before-compile, generated, generated-dirs): Likewise.
8832         * iconvdata/Makefile (before-compile, generated): Likewise.
8833         * intl/Makefile (before-compile, generated, generated-dirs): Likewise.
8834         * libio/Makefile (generated): Likewise.
8835         * malloc/Makefile (generated): Likewise.
8836         * manual/Makefile (generated, generated-dirs): Likewise.
8837         * misc/Makefile (generated): Likewise.
8838         * posix/Makefile (generated): Likewise.
8839         * resolv/Makefile (generated): Likewise.
8840         * sunrpc/Makefile (generated, generated-dirs): Likewise.
8841         * timezone/Makefile (generated, generated-dirs): Likewise.
8843         * stdio-common/Versions (libc: GLIBC_PRIVATE): Add missing }.
8845 2014-02-27  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
8847         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llround
8848         power8 implementation.
8849         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power8.S: New
8850         file: POWER8 llround ifunc implementation.
8851         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c
8852         (__lllround): Add POWER8 implementation.
8853         * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S: New file:
8854         POWER8 llround implementation.
8856         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llrint
8857         power8 implementation.
8858         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power8.S: New
8859         file: POWER8 llrint ifunc implementation.
8860         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c (__lllrint):
8861         Add POWER8 implementation.
8862         * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S: New file:
8863         POWER8 llrint implementation.
8865         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add finite
8866         power8 implementation.
8867         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power8.S: New
8868         file: POWER8 finite ifunc implementation.
8869         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c (__finite):
8870         Add POWER8 implementation.
8871         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c (__finitef):
8872         Likewise.
8873         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S: New file:
8874         POWER8 finite implementation.
8875         * sysdeps/powerpc/powerpc64/power8/fpu/s_finitef.S: New file.
8877         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isinf
8878         power8 implementation.
8879         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power8.S: New
8880         file: POWER8 isinf ifunc implementation.
8881         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c (__isinf): Add
8882         POWER8 implementation.
8883         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c (__isinff):
8884         Likewise.
8885         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S: New file: POWER8
8886         isinf implementation.
8887         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinff.S: New file.
8889         * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h
8890         (INIT_ARCH): Add hwcap2 initialization.
8891         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isnan
8892         power8 implementation.
8893         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power8.S: New
8894         file: POWER8 isnan ifunc implementation.
8895         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c (__isnan): Add
8896         POWER8 implementation.
8897         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c (__isnanf):
8898         Likewise.
8899         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S: New file: POWER8
8900         isnan implementation.
8901         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnanf.S: New file.
8903 2014-02-27  Joey Ye  <joey.ye@arm.com>
8905         * sysdeps/arm/soft-fp/sfp-machine.h (_FP_NANFRAC_S, _FP_NANFRAC_D)
8906         (_FP_NANFRAC_Q): Set to zero.
8908 2014-02-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
8910         [BZ #16623]
8911         * math/auto-libm-test-in: New test inputs.
8912         * math/auto-libm-test-out: Regenerate.
8913         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Preserve sign of A
8914         and DA.
8915         (__cos): Likewise.
8916         * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate.
8918 2014-02-27  Joseph Myers  <joseph@codesourcery.com>
8920         * scripts/evaluate-test.sh: Take new argument indicating whether
8921         failure is expected.
8922         * Makeconfig (evaluate-test): Pass argument to evaluate-test.sh
8923         indicating whether failure is expected.
8924         * conform/Makefile (test-xfail-run-conformtest): New variable.
8925         ($(objpfx)run-conformtest.out): Don't expect to fail at makefile
8926         level.
8927         * posix/Makefile (test-xfail-annexc): New variable.
8928         ($(objpfx)annexc.out): Don't expect to fail at makefile level.
8930 2014-02-26  Joseph Myers  <joseph@codesourcery.com>
8932         * argp/Makefile: Include Makeconfig immediately after defining
8933         subdir.
8934         * assert/Makefile: Likewise.
8935         * benchtests/Makefile: Likewise.
8936         * catgets/Makefile: Likewise.
8937         * conform/Makefile: Likewise.
8938         * crypt/Makefile: Likewise.
8939         * csu/Makefile: Likewise.
8940         (all): Remove target.
8941         * ctype/Makefile: Include Makeconfig immediately after defining
8942         subdir.
8943         * debug/Makefile: Likewise.
8944         * dirent/Makefile: Likewise.
8945         * dlfcn/Makefile: Likewise.
8946         * gmon/Makefile: Likewise.
8947         * gnulib/Makefile: Likewise.
8948         * grp/Makefile: Likewise.
8949         * gshadow/Makefile: Likewise.
8950         * hesiod/Makefile: Likewise.
8951         * hurd/Makefile: Likewise.
8952         (all): Remove target.
8953         * iconvdata/Makefile: Include Makeconfig immediately after
8954         defining subdir.
8955         * inet/Makefile: Likewise.
8956         * intl/Makefile: Likewise.
8957         * io/Makefile: Likewise.
8958         * libio/Makefile: Likewise.
8959         (all): Remove target.
8960         * locale/Makefile: Include Makeconfig immediately after defining
8961         subdir.
8962         * login/Makefile: Likewise.
8963         * mach/Makefile: Likewise.
8964         (all): Remove target.
8965         * malloc/Makefile: Include Makeconfig immediately after defining
8966         subdir.
8967         (all): Remove target.
8968         * manual/Makefile: Include Makeconfig immediately after defining
8969         subdir.
8970         * math/Makefile: Likewise.
8971         * misc/Makefile: Likewise.
8972         * nis/Makefile: Likewise.
8973         * nss/Makefile: Likewise.
8974         * po/Makefile: Likewise.
8975         (all): Remove target.
8976         * posix/Makefile: Include Makeconfig immediately after defining
8977         subdir.
8978         * pwd/Makefile: Likewise.
8979         * resolv/Makefile: Likewise.
8980         * resource/Makefile: Likewise.
8981         * rt/Makefile: Likewise.
8982         * setjmp/Makefile: Likewise.
8983         * shadow/Makefile: Likewise.
8984         * signal/Makefile: Likewise.
8985         * socket/Makefile: Likewise.
8986         * soft-fp/Makefile: Likewise.
8987         * stdio-common/Makefile: Likewise.
8988         * stdlib/Makefile: Likewise.
8989         * streams/Makefile: Likewise.
8990         * string/Makefile: Likewise.
8991         * sunrpc/Makefile: Likewise.
8992         (all): Remove target.
8993         * sysvipc/Makefile: Include Makeconfig immediately after defining
8994         subdir.
8995         * termios/Makefile: Likewise.
8996         * time/Makefile: Likewise.
8997         * timezone/Makefile: Likewise.
8998         (all): Remove target.
8999         * wcsmbs/Makefile: Include Makeconfig immediately after defining
9000         subdir.
9001         * wctype/Makefile: Likewise.
9003 2014-02-26  Steve Ellcey  <sellcey@mips.com>
9005         * sysdeps/mips/math_private.h (_FPU_MASK_ALL) New.
9006         (libc_feholdexcept_mips): Use _FPU_MASK_ALL.
9007         (libc_feholdexcept_setround_mips): Ditto.
9008         (libc_feholdsetround): New.
9009         (libc_feholdsetroundf): New.
9010         (libc_feholdsetroundl): New.
9011         (libc_feupdateenv_test_mips): New.
9012         (libc_feupdateenv_test): New.
9013         (libc_feupdateenv_testf): New.
9014         (libc_feupdateenv_testl): New.
9015         (libc_feresetround): New.
9016         (libc_feresetroundf): New.
9017         (libc_feresetroundl): New.
9018         (libc_fetestexcept_mips): New.
9019         (libc_fetestexcept): New.
9020         (libc_fetestexceptf): New.
9021         (libc_fetestexceptl): New.
9022         (HAVE_RM_CTX): New.
9023         (libc_feholdexcept_setround_mips_ctx): New.
9024         (libc_feholdexcept_setround_ctx): New.
9025         (libc_feholdexcept_setroundf_ctx): New.
9026         (libc_feholdexcept_setroundl_ctx): New.
9027         (libc_fesetenv_mips_ctx): New.
9028         (libc_fesetenv_ctx): New.
9029         (libc_fesetenv_ctxf): New.
9030         (libc_fesetenv_ctxl): New.
9031         (libc_feupdateenv_mips_ctx): New.
9032         (libc_feupdateenv_ctx): New.
9033         (libc_feupdateenvf_ctx): New.
9034         (libc_feupdateenvl_ctx): New.
9035         (libc_feholdsetround_mips_ctx): New.
9036         (libc_feholdsetround_ctx): New.
9037         (libc_feholdsetroundf_ctx): New.
9038         (libc_feholdsetroundl_ctx): New.
9039         (libc_feresetround_mips_ctx): New.
9040         (libc_feresetround_ctx): New.
9041         (libc_feresetroundf_ctx): New.
9042         (libc_feresetroundl_ctx): New.
9044 2014-02-26  Carlos O'Donell  <carlos@redhat.com>
9046         * manual/ipc.texi (Semaphores): Use @Theglibc{}.
9048         * manual/ipc.texi: New file.
9049         * manual/Makefile (chapters): Add ipc.
9050         * manual/job.texi: Add "Inter-Process Communication" to next.
9051         * manual/process.texi: Add "Inter-Process Communication" to prev.
9053 2014-02-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9055         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
9057 2014-02-26  Ondřej Bílka  <neleai@seznam.cz>
9059         * malloc/malloc.c (__libc_calloc): Simplify implementation.
9061         * manual/arith.texi: Fix spaces after sentences.
9062         * manual/charset.texi: Likewise.
9063         * manual/errno.texi: Likewise.
9064         * manual/install.texi: Likewise.
9065         * manual/llio.texi: Likewise.
9066         * manual/locale.texi: Likewise.
9067         * manual/maint.texi: Likewise.
9068         * manual/math.texi: Likewise.
9069         * manual/memory.texi: Likewise.
9070         * manual/message.texi: Likewise.
9071         * manual/probes.texi: Likewise.
9072         * manual/resource.texi: Likewise.
9073         * manual/signal.texi: Likewise.
9074         * manual/socket.texi: Likewise.
9075         * manual/stdio.texi: Likewise.
9076         * manual/string.texi: Likewise.
9077         * manual/time.texi: Likewise.
9078         * manual/users.texi: Likewise.
9080 2014-02-25  Carlos O'Donell  <carlos@redhat.com>
9082         [BZ #16632]
9083         * include/features.h: Don't warn about _BSD_SOURCE or _SVID_SOURCE if
9084         _DEFAULT_SOURCE is defined.
9086 2014-02-25  Ulrich Drepper  <drepper@gmail.com>
9087             Carlos O'Donell  <carlos@redhat.com>
9089         [BZ #16613]
9090         * elf/dl-tls.c (_dl_count_modids): New function.
9091         * sysdeps/generic/ldsodefs.h: Declare _dl_count_modids.
9092         * elf/rtld.c (dl_main): Call _dl_count_modids to track TLS usage in
9093         audit library and increment generation counter.
9094         (_dl_allocate_tls_init): Add assertion to check TLS generation count.
9095         * elf/tst-audit9.c: New file.
9096         * elf/tst-auditmod9a.c: New file.
9097         * elf/tst-auditmod9b.c: New file.
9098         * elf/Makefile: Add rules to build and run tst-audit9.
9100 2014-02-25  Florian Weimer  <fweimer@redhat.com>
9102         [BZ #15347]
9103         * misc/sys/select.h (__FD_MASK): Avoid signed integer overflow.
9105 2014-02-25  Will Newton  <will.newton@linaro.org>
9107         * sysdeps/arm/__longjmp.S: Include stap-probe.h.
9108         (__longjmp): Restore sp and lr before restoring callee
9109         saved registers.  Add longjmp and longjmp_target
9110         SystemTap probe point.
9111         * sysdeps/arm/bits/setjmp.h (__jmp_buf): Update comment.
9112         * sysdeps/arm/include/bits/setjmp.h (__JMP_BUF_SP):
9113         Define to zero to match jmpbuf layout.
9114         * sysdeps/arm/setjmp.S: Include stap-probe.h.
9115         (__sigsetjmp): Save sp and lr before saving callee
9116         saved registers.  Add setjmp SystemTap probe point.
9118 2014-02-24  Stefan Liebler  <stli@linux.vnet.ibm.com>
9120         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
9122 2014-02-24  Andreas Schwab  <schwab@suse.de>
9124         [BZ #15804]
9125         * elf/pldd.c (wait_for_ptrace_stop): New function.
9126         (main): Call it after attaching.
9128 2014-02-22  Roland McGrath  <roland@hack.frob.com>
9130         * Makerules ($(common-objpfx)Versions.v.i): No longer depend
9131         on $(common-objpfx)abi-versions.h; using <shlib-compat.h> inside
9132         Versions files is now verboten.
9133         * hurd/Versions (libc: GLIBC_2.0):
9134         Remove various [SHLIB_COMPAT (libc, GLIBC_2_0, ...)] sections.
9135         (libc: HURD_CTHREADS_0.3): Remove conditionalization, was under
9136         [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)].
9137         * mach/Versions: Likewise.
9139         * csu/Versions: Remove unused %include.
9140         * resolv/Versions: Likewise.
9142 2014-02-21  Joseph Myers  <joseph@codesourcery.com>
9144         * Makefile ($(objpfx)c++-types-check.out): Use $(evaluate-test).
9145         ($(objpfx)check-local-headers.out): Likewise.
9146         ($(objpfx)begin-end-check.out): Likewise.
9147         * Makerules (check-abi-%.out): Likewise.
9148         * catgets/Makefile ($(objpfx)test1.cat): Likewise.
9149         ($(objpfx)test2.cat): Likewise.
9150         ($(objpfx)de/libc.cat): Likewise.
9151         ($(objpfx)test-gencat.out): Likewise.
9152         * conform/Makefile ($(objpfx)run-conformtest.out): Likewise.
9153         * elf/Makefile ($(objpfx)order-cmp.out): Likewise.
9154         ($(objpfx)noload-mem): Likewise.
9155         ($(objpfx)tst-pathopt.out): Likewise.
9156         ($(objpfx)tst-rtld-load-self.out): Likewise.
9157         ($(objpfx)tst-array1-cmp.out): Likewise.
9158         ($(objpfx)tst-array1-static-cmp.out): Likewise.
9159         ($(objpfx)tst-array2-cmp.out): Likewise.
9160         ($(objpfx)tst-array3-cmp.out): Likewise.
9161         ($(objpfx)tst-array4-cmp.out): Likewise.
9162         ($(objpfx)tst-array5-cmp.out): Likewise.
9163         ($(objpfx)tst-array5-static-cmp.out): Likewise.
9164         ($(objpfx)check-textrel.out): Likewise.
9165         ($(objpfx)check-execstack.out): Likewise.
9166         ($(objpfx)check-localplt.out): Likewise.
9167         ($(objpfx)order2-cmp.out): Likewise.
9168         ($(objpfx)tst-leaks1-mem): Likewise.
9169         ($(objpfx)tst-leaks1-static-mem): Likewise.
9170         ($(objpfx)tst-initorder-cmp.out): Likewise.
9171         ($(objpfx)tst-initorder2-cmp.out): Likewise.
9172         ($(objpfx)tst-unused-dep.out): Likewise.
9173         ($(objpfx)tst-unused-dep-cmp.out): Likewise.
9174         * grp/Makefile ($(objpfx)tst_fgetgrent.out): Likewise.
9175         * iconv/Makefile (test-iconvconfig): Likewise.
9176         * iconvdata/Makefile ($(objpfx)mtrace-tst-loading): Likewise.
9177         ($(objpfx)iconv-test.out): Likewise.
9178         ($(objpfx)tst-tables.out): Likewise.
9179         * intl/Makefile ($(objpfx)mtrace-tst-gettext): Likewise.
9180         ($(objpfx)tst-gettext.out): Likewise.
9181         ($(objpfx)tst-translit.out): Likewise.
9182         ($(objpfx)tst-gettext2.out): Likewise.
9183         ($(objpfx)tst-gettext4.out): Likewise.
9184         ($(objpfx)tst-gettext6.out): Likewise.
9185         * io/Makefile ($(objpfx)ftwtest.out): Likewise.
9186         * libio/Makefile ($(objpfx)test-freopen.out): Likewise.
9187         ($(objpfx)tst-fopenloc-cmp.out): Likewise.
9188         ($(objpfx)tst-fopenloc-mem.out): Likewise.
9189         * malloc/Makefile ($(objpfx)tst-mtrace.out): Likewise.
9190         * misc/Makefile ($(objpfx)tst-error1-mem): Likewise.
9191         * posix/Makefile ($(objpfx)globtest.out): Likewise.
9192         ($(objpfx)wordexp-tst.out): Likewise.
9193         ($(objpfx)annexc.out): Likewise.
9194         ($(objpfx)tst-fnmatch-mem): Likewise.
9195         ($(objpfx)bug-regex2-mem): Likewise.
9196         ($(objpfx)bug-regex14-mem): Likewise.
9197         ($(objpfx)bug-regex21-mem): Likewise.
9198         ($(objpfx)bug-regex31-mem): Likewise.
9199         ($(objpfx)tst-vfork3-mem): Likewise.
9200         ($(objpfx)tst-rxspencer-no-utf8-mem): Likewise.
9201         ($(objpfx)tst-pcre-mem): Likewise.
9202         ($(objpfx)tst-boost-mem): Likewise.
9203         ($(objpfx)tst-getconf.out): Likewise.
9204         ($(objpfx)bug-ga2-mem): Likewise.
9205         ($(objpfx)bug-glob2-mem): Likewise.
9206         * resolv/Makefile ($(objpfx)mtrace-tst-leaks): Likewise.
9207         ($(objpfx)mtrace-tst-leaks2): Likewise.
9208         * stdio-common/Makefile ($(objpfx)tst-unbputc.out): Likewise.
9209         ($(objpfx)tst-printf.out): Likewise.
9210         ($(objpfx)tst-setvbuf1.out): Likewise.
9211         ($(objpfx)tst-setvbuf1-cmp.out): Likewise.
9212         * stdlib/Makefile ($(objpfx)isomac.out): Likewise.
9213         ($(objpfx)tst-fmtmsg.out): Likewise.
9214         * string/Makefile ($(objpfx)tst-svc-cmp.out): Likewise.
9215         * sysdeps/x86/Makefile ($(objpfx)tst-xmmymm.out): Likewise.
9217         * bits/fcntl.h [__USE_MISC]: Remove redundant conditionals.
9218         * bits/sigaction.h [__USE_MISC]: Likewise.
9219         * bits/waitstatus.h: Update #endif comments.
9220         * ctype/ctype.h: Likewise.
9221         * dirent/dirent.h: Likewise.
9222         [__USE_MISC]: Remove redundant conditionals.
9223         * grp/grp.h: Update #endif comments.
9224         [__USE_GNU]: Remove redundant conditionals.
9225         [__USE_MISC]: Likewise.
9226         * inet/netinet/in.h [__USE_GNU]: Likewise.
9227         * io/sys/stat.h [__USE_MISC]: Likewise.
9228         * libio/bits/stdio-ldbl.h [__USE_MISC]: Likewise.
9229         * libio/bits/stdio.h: Update #endif comments.
9230         [__USE_MISC]: Remove redundant conditionals.
9231         * libio/bits/stdio2.h [__USE_MISC]: Likewise.
9232         * libio/stdio.h: Update #endif comments.
9233         [__USE_MISC]: Remove redundant conditionals.
9234         * math/bits/math-finite.h [__USE_MISC]: Likewise.
9235         * math/bits/mathcalls.h [__USE_MISC]: Likewise.
9236         * math/math.h: Update #else and #endif comments.
9237         [__USE_MISC]: Remove redundant conditionals.
9238         * misc/sys/uio.h: Update #endif comments.
9239         * posix/bits/unistd.h [__USE_MISC]: Remove redundant conditionals.
9240         * posix/glob.h [__USE_MISC]: Likewise.
9241         * posix/sys/types.h: Update #endif comments.
9242         [__USE_MISC]: Remove redundant conditionals.
9243         * posix/sys/wait.h: Update #endif comments.
9244         [__USE_MISC]: Remove redundant conditionals.
9245         * posix/unistd.h: Update #endif comments.
9246         [__USE_MISC]: Remove redundant conditionals.
9247         * pwd/pwd.h [__USE_GNU]: Likewise.
9248         [__USE_MISC]: Likewise.
9249         * resolv/netdb.h [__USE_GNU]: Likewise.
9250         * signal/signal.h: Update #endif comments.
9251         [__USE_MISC]: Remove redundant conditionals.
9252         * stdlib/stdlib.h: Update #else and #endif comments.
9253         [__USE_MISC]: Remove redundant conditionals.
9254         [__USE_GNU]: Likewise.
9255         * string/bits/string2.h [__USE_MISC]: Likewise.
9256         * string/string.h: Update #endif comments.
9257         [__USE_MISC]: Remove redundant conditionals.
9258         * sysdeps/m68k/m680x0/fpu/bits/mathinline.h [__USE_MISC]:
9259         Likewise.
9260         * sysdeps/mach/hurd/bits/fcntl.h [__USE_MISC]: Likewise.
9261         * sysdeps/mach/hurd/bits/stat.h [__USE_MISC]: Likewise.
9262         * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h [__USE_MISC]:
9263         Likewise.
9264         * sysdeps/unix/sysv/linux/alpha/bits/stat.h [__USE_MISC]:
9265         Likewise.
9266         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: Update #endif
9267         comments.
9268         [__USE_MISC]: Remove redundant conditionals.
9269         * sysdeps/unix/sysv/linux/bits/in.h [__USE_GNU]: Likewise.
9270         * sysdeps/unix/sysv/linux/bits/sigaction.h [__USE_MISC]: Likewise.
9271         * sysdeps/unix/sysv/linux/bits/socket.h [__USE_GNU]: Likewise.
9272         * sysdeps/unix/sysv/linux/bits/stat.h [__USE_MISC]: Likewise.
9273         * sysdeps/unix/sysv/linux/ia64/bits/sigaction.h [__USE_MISC]:
9274         Likewise.
9275         * sysdeps/unix/sysv/linux/m68k/bits/stat.h [__USE_MISC]: Likewise.
9276         * sysdeps/unix/sysv/linux/mips/bits/sigaction.h [__USE_MISC]:
9277         Likewise.
9278         * sysdeps/unix/sysv/linux/mips/bits/stat.h [__USE_MISC]: Likewise.
9279         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h [__USE_MISC]:
9280         Likewise.
9281         * sysdeps/unix/sysv/linux/s390/bits/sigaction.h [__USE_MISC]:
9282         Likewise.
9283         * sysdeps/unix/sysv/linux/s390/bits/stat.h [__USE_MISC]: Likewise.
9284         * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h [__USE_MISC]:
9285         Likewise.
9286         * sysdeps/unix/sysv/linux/sparc/bits/stat.h [__USE_MISC]:
9287         Likewise.
9288         * sysdeps/unix/sysv/linux/x86/bits/stat.h [__USE_MISC]: Likewise.
9289         * sysdeps/x86/bits/string.h: Update #endif comments.
9290         * sysdeps/x86/fpu/bits/mathinline.h [__USE_MISC]: Remove redundant
9291         conditionals.
9292         * time/sys/time.h: Update #endif comments.
9293         * time/time.h: Likewise.
9294         [__USE_MISC]: Remove redundant conditionals.
9296 2014-02-21  Yury Gribov  <y.gribov@samsung.com>
9298         [BZ #16600]
9299         * sysdeps/arm/libm-test-ulps: Update for VFPv4.
9301 2014-02-21  Andreas Schwab  <schwab@linux-m68k.org>
9303         * Versions.def (librt): Add GLIBC_2.17.
9305 2014-02-21  Adam Conrad  <adconrad@0c3.net>
9307         * sysdeps/powerpc/bits/hwcap.h: Allow _SYSDEPS_SYSDEP_H guard as a
9308         synonym for _SYS_AUXV_H to allow direct inclusion.
9309         * sysdeps/sparc/bits/hwcap.h: Likewise.
9310         * sysdeps/powerpc/sysdep.h: Define _SYSDEPS_SYSDEP_H instead of
9311         _SYS_AUXV_H so we can include sysdep.h and sys/auxv.h together.
9312         * sysdeps/sparc/sysdep.h: Likewise.
9314 2014-02-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
9316         * benchtests/bench-strrchr.c (do_test): Fix minor formatting.
9318 2014-02-21  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
9320         * benchtests/bench-strrchr.c: Print length instead of position.
9322 2014-02-20  Joseph Myers  <joseph@codesourcery.com>
9324         [BZ #16611]
9325         * sysdeps/unix/sysv/linux/kernel-features.h
9326         [__LINUX_KERNEL_VERSION >= 0x030000 && __ASSUME_SOCKETCALL]
9327         (__ASSUME_SENDMMSG_SOCKETCALL): Define.
9328         [__LINUX_KERNEL_VERSION >= 0x030000 && (__i386__ || __x86_64__ ||
9329         __powerpc__ || __sh__ || __sparc__)] (__ASSUME_SENDMMSG_SYSCALL):
9330         Likewise.
9331         [__i386__ || __powerpc__ || __sh__ || __sparc__]
9332         (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
9333         [__ASSUME_SENDMMSG_SOCKETCALL || __ASSUME_SENDMMSG_SYSCALL]
9334         (__ASSUME_SENDMMSG): Define instead of using previous
9335         [__LINUX_KERNEL_VERSION >= 0x020627] condition.
9336         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
9337         (__ASSUME_SENDMMSG_SYSCALL): Define.
9338         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
9339         [__LINUX_KERNEL_VERSION >= 0x030200] (__ASSUME_SENDMMSG_SYSCALL):
9340         Likewise.
9341         * sysdeps/unix/sysv/linux/arm/kernel-features.h
9342         [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
9343         Likewise.
9344         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
9345         [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
9346         Likewise.
9347         * sysdeps/unix/sysv/linux/internal_sendmmsg.S [__ASSUME_SOCKETCALL
9348         && !__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL &&
9349         !__ASSUME_SENDMMSG_SYSCALL] (__NR_sendmmsg): Undefine.
9350         [__ASSUME_SENDMMSG]: Change conditionals to
9351         [__ASSUME_SENDMMSG_SOCKETCALL].
9352         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
9353         [__LINUX_KERNEL_VERSION >= 0x030300] (__ASSUME_SENDMMSG_SYSCALL):
9354         Define.
9355         * sysdeps/unix/sysv/linux/mips/kernel-features.h
9356         [__LINUX_KERNEL_VERSION >= 0x030100] (__ASSUME_SENDMMSG_SYSCALL):
9357         Likewise.
9358         * sysdeps/unix/sysv/linux/sendmmsg.c [__ASSUME_SOCKETCALL &&
9359         !__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL &&
9360         !__ASSUME_SENDMMSG_SYSCALL] (__NR_sendmmsg): Undefine.
9361         [!__ASSUME_SENDMMSG]: Change conditional to
9362         [!__ASSUME_SENDMMSG_SOCKETCALL].
9363         * sysdeps/unix/sysv/linux/tile/kernel-features.h
9364         [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
9365         Define.
9367         [BZ #16610]
9368         * sysdeps/unix/sysv/linux/kernel-features.h
9369         [__LINUX_KERNEL_VERSION >= 0x020621 && __ASSUME_SOCKETCALL]
9370         (__ASSUME_RECVMMSG_SOCKETCALL): Define.
9371         [(__LINUX_KERNEL_VERSION >= 0x020621 && (__i386__ || __x86_64__ ||
9372         __sparc__)) || (__LINUX_KERNEL_VERSION >= 0x020625 && (__powerpc__
9373         || __sh__))] (__ASSUME_RECVMMSG_SYSCALL): Likewise.
9374         [__i386__ || __sparc__]
9375         (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
9376         [__ASSUME_RECVMMSG_SOCKETCALL || __ASSUME_RECVMMSG_SYSCALL]
9377         (__ASSUME_RECVMMSG): Define instead of using previous
9378         [__LINUX_KERNEL_VERSION >= 0x020621] condition.
9379         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
9380         (__ASSUME_RECVMMSG_SYSCALL): Define.
9381         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
9382         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
9383         Likewise.
9384         * sysdeps/unix/sysv/linux/arm/kernel-features.h
9385         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
9386         Likewise.
9387         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
9388         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
9389         Likewise.
9390         * sysdeps/unix/sysv/linux/internal_recvmmsg.S [__ASSUME_SOCKETCALL
9391         && !__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL &&
9392         !__ASSUME_RECVMMSG_SYSCALL] (__NR_recvmmsg): Undefine.
9393         [__ASSUME_RECVMMSG]: Change condition to
9394         [__ASSUME_RECVMMSG_SOCKETCALL].
9395         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
9396         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
9397         Define.
9398         (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
9399         * sysdeps/unix/sysv/linux/mips/kernel-features.h
9400         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
9401         Likewise.
9402         * sysdeps/unix/sysv/linux/recvmmsg.c [__ASSUME_SOCKETCALL &&
9403         !__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL &&
9404         !__ASSUME_RECVMMSG_SYSCALL] (__NR_recvmmsg): Undefine.
9405         [!__ASSUME_RECVMMSG]: Change condition to
9406         [!__ASSUME_RECVMMSG_SOCKETCALL].
9407         * sysdeps/unix/sysv/linux/tile/kernel-features.h
9408         (__ASSUME_RECVMMSG_SYSCALL): Define.
9410         [BZ #16609]
9411         * sysdeps/unix/sysv/linux/kernel-features.h [__i386__ ||
9412         __powerpc__ || __s390__ || __sh__ || __sparc__]
9413         (__ASSUME_SOCKETCALL): Define.
9414         [__LINUX_KERNEL_VERSION && __ASSUME_SOCKETCALL]
9415         (__ASSUME_ACCEPT4_SOCKETCALL): Likewise.
9416         [(__LINUX_KERNEL_VERSION >= 0x02061c && (__x86_64__ || __sparc__))
9417         || (__LINUX_KERNEL_VERSION >= 0x020625 && (__powerpc__ ||
9418         __sh__))] (__ASSUME_ACCEPT4_SYSCALL): Likewise.
9419         [__sparc__] (__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL): Likewise.
9420         [__ASSUME_ACCEPT4_SOCKETCALL || __ASSUME_ACCEPT4_SYSCALL]
9421         (__ASSUME_ACCEPT4): Define instead of using previous
9422         [__LINUX_KERNEL_VERSION >= 0x02061c && (__i386__ || __x86_64__ ||
9423         __powerpc__ || __sparc__ || __s390__)] condition.
9424         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
9425         (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.
9426         * sysdeps/unix/sysv/linux/accept4.c [__ASSUME_SOCKETCALL &&
9427         !__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
9428         !__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
9429         [!__ASSUME_ACCEPT4]: Change condition to
9430         [!__ASSUME_ACCEPT4_SOCKETCALL].
9431         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
9432         (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.  Correct
9433         condition to [__LINUX_KERNEL_VERSION >= 0x030200].
9434         * sysdeps/unix/sysv/linux/arm/kernel-features.h
9435         [__LINUX_KERNEL_VERSION >= 0x020624] (__ASSUME_ACCEPT4): Change to
9436         __ASSUME_ACCEPT4_SYSCALL.
9437         * sysdeps/unix/sysv/linux/i386/accept4.S [__ASSUME_ACCEPT4]:
9438         Change conditions to [__ASSUME_ACCEPT4_SOCKETCALL].
9439         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
9440         [__LINUX_KERNEL_VERSION >= 0x030300] (__ASSUME_ACCEPT4): Change to
9441         __ASSUME_ACCEPT4_SYSCALL.
9442         * sysdeps/unix/sysv/linux/internal_accept4.S [__ASSUME_SOCKETCALL
9443         && !__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
9444         !__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
9445         [__ASSUME_ACCEPT4]: Change condition to
9446         [__ASSUME_ACCEPT4_SOCKETCALL].
9447         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
9448         (__ASSUME_SOCKETCALL): Define.
9449         [__LINUX_KERNEL_VERSION >= 0x02061c] (__ASSUME_ACCEPT4): Remove.
9450         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
9451         (__ASSUME_SOCKETCALL): Define.
9452         (__ASSUME_ACCEPT4): Remove.
9453         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_ACCEPT4_SYSCALL):
9454         Define.
9455         * sysdeps/unix/sysv/linux/mips/kernel-features.h
9456         [__LINUX_KERNEL_VERSION >= 0x02061f] (__ASSUME_ACCEPT4_SYSCALL):
9457         Likewise.
9458         * sysdeps/unix/sysv/linux/tile/kernel-features.h
9459         (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.
9461         * sysdeps/unix/sysv/linux/arm/bits/hwcap.h (HWCAP_ARM_VFPD32): New
9462         macro.
9463         (HWCAP_ARM_LPAE): Likewise.
9464         (HWCAP_ARM_EVTSTRM): Likewise.
9465         * sysdeps/unix/sysv/linux/arm/dl-procinfo.c (_dl_arm_cap_flags):
9466         Add vpfd32, lpae and evtstrm.
9467         * sysdeps/unix/sysv/linux/arm/dl-procinfo.h (_DL_HWCAP_COUNT):
9468         Increase to 22.
9470 2014-02-19  Joseph Myers  <joseph@codesourcery.com>
9472         * math/auto-libm-test-in: Add tests of clog10.
9473         * math/auto-libm-test-out: Regenerated.
9474         * math/libm-test.inc (clog10_test_data): Use AUTO_TESTS_c_c.
9475         * sysdeps/i386/fpu/libm-test-ulps: Update.
9476         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
9478 2014-02-18  Andreas Schwab  <schwab@suse.de>
9480         [BZ #16574]
9481         * resolv/res_send.c (send_vc): Add parameter ansp2_malloced.
9482         Store non-zero if the second buffer was newly allocated.
9483         (send_dg): Likewise.
9484         (__libc_res_nsend): Add parameter ansp2_malloced and pass it down
9485         to send_vc and send_dg.
9486         (res_nsend): Pass NULL for ansp2_malloced.
9487         * resolv/res_query.c (__libc_res_nquery): Add parameter
9488         answerp2_malloced and pass it down to __libc_res_nsend.
9489         (res_nquery): Pass additional NULL to __libc_res_nquery.
9490         (__libc_res_nsearch): Add parameter answerp2_malloced and pass it
9491         down to __libc_res_nquery and __libc_res_nquerydomain.  Deallocate
9492         second answer buffer if answerp2_malloced was set.
9493         (res_nsearch): Pass additional NULL to __libc_res_nsearch.
9494         (__libc_res_nquerydomain): Add parameter
9495         answerp2_malloced and pass it down to __libc_res_nquery.
9496         (res_nquerydomain): Pass additional NULL to
9497         __libc_res_nquerydomain.
9498         * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyname_r): Pass
9499         additional NULL to __libc_res_nsend and __libc_res_nquery.
9500         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Pass
9501         additional NULL to __libc_res_nsearch.
9502         (_nss_dns_gethostbyname4_r): Revert last change.  Use new
9503         parameter of __libc_res_nsearch to check for separately allocated
9504         second buffer.
9505         (_nss_dns_gethostbyaddr2_r): Pass additional NULL to
9506         __libc_res_nquery.
9507         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Pass
9508         additional NULL to __libc_res_nquery.
9509         * resolv/gethnamaddr.c (gethostbyname2): Pass additional NULL to
9510         __libc_res_nsearch.
9511         (gethostbyaddr): Pass additional NULL to __libc_res_nquery.
9512         * include/resolv.h: Update prototypes of __libc_res_nquery,
9513         __libc_res_nsearch, __libc_res_nsend.
9515 2014-02-18  Joseph Myers  <joseph@codesourcery.com>
9517         * math/auto-libm-test-in: Add tests of fma.
9518         * math/auto-libm-test-out: Regenerated.
9519         * math/libm-test.inc (fma_test_data): Use AUTO_TESTS_fff_f.
9520         (fma_towardzero_test_data): Likewise.
9521         (fma_downward_test_data): Likewise.
9522         (fma_upward_test_data): Likewise.
9523         * math/gen-auto-libm-tests.c (rounding_mode_desc): Add field
9524         mpc_mode.
9525         (rounding_modes): Add values for new field.
9526         (func_calc_method): Add value mpfr_fff_f.
9527         (func_calc_desc): Add mpfr_fff_f union field.
9528         (test_function): Add field exact_args.
9529         (FUNC): Add macro argument EXACT_ARGS.
9530         (FUNC_mpfr_f_f): Update call to FUNC.
9531         (FUNC_mpfr_f_f): Likewise.
9532         (FUNC_mpfr_ff_f): Likewise.
9533         (FUNC_mpfr_if_f): Likewise.
9534         (FUNC_mpc_c_f): Likewise.
9535         (FUNC_mpc_c_c): Likewise.
9536         (test_functions): Add fma.  Update calls to FUNC.
9537         (handle_input_arg): Add argument exact_args.
9538         (add_test): Update call to handle_input_arg.
9539         (calc_generic_results): Add argument mode.  Handle mpfr_fff_f.
9540         (output_for_one_input_case): Update call to calc_generic_results.
9541         Recalculate exact zero results in each rounding mode.
9543         * math/gen-auto-libm-tests.c (adjust_real): Ensure integers are
9544         non-negative before setting low bit.
9545         * math/auto-libm-test-in: Mark one asin test possibly having
9546         spurious underflow.
9547         * math/auto-libm-test-out: Regenerated.
9548         * sysdeps/i386/fpu/libm-test-ulps: Update.
9549         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
9551 2014-02-17  David Holsgrove <david.holsgrove@xilinx.com>
9553         * sysdeps/microblaze: Move directory from ports/sysdeps/microblaze.
9554         * sysdeps/unix/sysv/linux/microblaze: Move directory from
9555         ports/sysdeps/unix/sysv/linux/microblaze.
9556         * README: Add missing listing for microblaze*-*-linux-gnu.
9558 2014-02-16  Mike Frysinger  <vapier@gentoo.org>
9560         * sysdeps/ia64: Move directory from ports/sysdeps/ia64.
9561         * sysdeps/unix/sysv/linux/ia64: Move directory from
9562         ports/sysdeps/unix/sysv/linux/ia64.
9563         * README: Update listing for ia64-*-linux-gnu.
9565 2014-02-14  Tomas Dohnalek  <tdohnale@redhat.com>
9566             Joseph Myers  <joseph@codesourcery.com>
9568         * Makeconfig (test-name): New variable.
9569         (evaluate-test): Likewise.
9570         * Makerules (do-test-clean): Remove .test-result files.
9571         (common-mostlyclean): Likewise.
9572         * Rules ($(objpfx)%.out): Use $(evaluate-test) in both rules.
9573         * scripts/evaluate-test.sh: New file.
9575 2014-02-14  Joseph Myers  <joseph@codesourcery.com>
9577         * libio/Makefile ($(objpfx)tst-fopenloc.check): Split into
9578         separate $(objpfx)tst-fopenloc-cmp.out and
9579         $(objpfx)tst-fopenloc-mem.out targets.
9580         (tests): Update dependencies.
9581         * posix/Makefile (tests variable): Add tst-rxspencer-no-utf8.
9582         (generated): Change tst-rxspencer-mem and tst-rxspencer.mtrace to
9583         tst-rxspencer-no-utf8-mem and tst-rxspencer-no-utf8.mtrace.
9584         (tst-rxspencer-no-utf8-ARGS): New variable.
9585         (tst-rxspencer-no-utf8-ENV): Likewise.
9586         (tests target): Depend on $(objpfx)tst-rxspencer-no-utf8-mem
9587         instead of $(objpfx)tst-rxspencer-mem.
9588         ($(objpfx)tst-rxspencer-mem): Change target to
9589         $(objpfx)tst-rxspencer-no-utf8-mem.  Depend on
9590         $(objpfx)tst-rxspencer-no-utf8.out instead of running test program.
9591         * posix/tst-rxspencer-no-utf8.c: New file.
9593         * elf/Makefile ($(objpfx)order.out): Remove rule.
9594         [$(run-built-tests) = yes] (tests): Depend on
9595         $(objpfx)order-cmp.out.
9596         ($(objpfx)order-cmp.out): New rule.
9597         [$(run-built-tests) = yes] (tests): Depend on
9598         $(objpfx)tst-array1-cmp.out, $(objpfx)tst-array1-static-cmp.out,
9599         $(objpfx)tst-array2-cmp.out, $(objpfx)tst-array3-cmp.out,
9600         $(objpfx)tst-array4-cmp.out, $(objpfx)tst-array5-cmp.out and
9601         $(objpfx)tst-array5-static-cmp.out.
9602         ($(objpfx)tst-array1.out): Remove rule.
9603         ($(objpfx)tst-array1-cmp.out): New rule.
9604         ($(objpfx)tst-array1-static.out): Remove rule.
9605         ($(objpfx)tst-array1-static-cmp.out): New rule.
9606         ($(objpfx)tst-array2.out): Remove rule.
9607         ($(objpfx)tst-array2-cmp.out): New rule.
9608         ($(objpfx)tst-array3.out): Remove rule.
9609         ($(objpfx)tst-array3-cmp.out): New rule.
9610         ($(objpfx)tst-array4.out): Remove rule.
9611         ($(objpfx)tst-array4-cmp.out): New rule.
9612         ($(objpfx)tst-array5.out): Remove rule.
9613         ($(objpfx)tst-array5-cmp.out): New rule.
9614         ($(objpfx)tst-array5-static.out): Remove rule.
9615         ($(objpfx)tst-array5-static-cmp.out): New rule.
9616         [$(run-built-tests) = yes] (tests): Depend on
9617         $(objpfx)order2-cmp.out.
9618         ($(objpfx)order2.out): Remove rule.
9619         ($(objpfx)order2-cmp.out): New rule.
9620         ($(objpfx)tst-initorder.out): Remove rule.
9621         [$(run-built-tests) = yes] (tests): Depend on
9622         $(objpfx)tst-initorder-cmp.out.
9623         ($(objpfx)tst-initorder-cmp.out): New rule.
9624         ($(objpfx)tst-initorder2.out): Remove rule.
9625         [$(run-built-tests) = yes] (tests): Depend on
9626         $(objpfx)tst-initorder2-cmp.out.
9627         ($(objpfx)tst-initorder2-cmp.out): New rule.
9628         [$(run-built-tests) = yes] (tests): Depend on
9629         $(objpfx)tst-unused-dep-cmp.out.
9630         ($(objpfx)tst-unused-dep-cmp.out): Do not run cmp.
9631         ($(objpfx)tst-unused-dep-cmp.out): New rule.
9632         * stdio-common/Makefile [$(run-built-tests) = yes] (tests): Depend
9633         on $(objpfx)tst-setvbuf1-cmp.out.
9634         ($(objpfx)tst-setvbuf1.out): Do not run cmp.
9635         ($(objpfx)tst-setvbuf1-cmp.out): New rule.
9636         * string/Makefile [$(run-built-tests) = yes] (tests): Depend
9637         $(objpfx)tst-svc-cmp.out instead of $(objpfx)tst-svc.out.
9638         ($(objpfx)tst-svc.out): Remove rule.
9639         ($(objpfx)tst-svc-cmp.out): New rule.
9641 2014-02-13  Joseph Myers  <joseph@codesourcery.com>
9643         * bits/mman.h [__USE_MISC]: Remove redundant conditionals.
9644         * ctype/ctype.h [__USE_MISC]: Likewise.
9645         * dirent/dirent.h [__USE_MISC]: Likewise.
9646         * grp/grp.h [__USE_MISC]: Likewise.
9647         * io/fcntl.h [__USE_MISC]: Likewise.
9648         * io/sys/stat.h [__USE_MISC]: Likewise.
9649         * libio/stdio.h [__USE_MISC]: Likewise.
9650         * posix/unistd.h [__USE_MISC]: Likewise.
9651         * pwd/pwd.h [__USE_MISC]: Likewise.
9652         * stdlib.h [__USE_MISC]: Likewise.
9653         * string/bits/string2.h [__USE_MISC]: Likewise.
9654         * string/string.h [__USE_MISC]: Likewise.
9655         * time/time.h [__USE_MISC]: Likewise.
9657 2014-02-13  Andreas Schwab  <schwab@suse.de>
9659         [BZ #16574]
9660         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname4_r): Free the
9661         second answer buffer if it was separately allocated.
9663 2014-02-12  Joseph Myers  <joseph@codesourcery.com>
9665         * sysdeps/mips/math-tests.h: Include <features.h>.
9666         [!__mips_soft_float && _MIPS_SIM != _ABIO32 && __GNUC_PREREQ (4, 9)]
9667         (ROUNDING_TESTS_long_double): Do not define.
9668         [!__mips_soft_float && _MIPS_SIM != _ABIO32 && __GNUC_PREREQ (4, 9)]
9669         (EXCEPTION_TESTS_long_double): Likewise.
9670         * sysdeps/mips/mips64/libm-test-ulps: Update.
9672         * include/features.h (__USE_BSD): Remove macro definitions.
9673         (__USE_SVID): Likewise.
9674         (_BSD_SOURCE): Likewise.
9675         (_SVID_SOURCE): Likewise.
9676         [!defined _BSD_SOURCE && !defined _SVID_SOURCE]: Remove condition
9677         from definition of _DEFAULT_SOURCE.
9678         [_BSD_SOURCE || _SVID_SOURCE]: Change condition to
9679         [_DEFAULT_SOURCE].
9680         * bits/fcntl.h [__USE_BSD]: Change condition to [__USE_MISC].
9681         * bits/mman.h [__USE_BSD]: Likewise.
9682         * bits/termios.h [__USE_BSD]: Likewise.
9683         * bits/waitstatus.h [__USE_BSD]: Likewise.
9684         * ctype/ctype.h [__USE_SVID]: Likewise.
9685         * dirent/dirent.h [__USE_BSD]: Likewise.
9686         * grp/grp.h [__USE_SVID]: Likewise.
9687         [__USE_BSD]: Likewise.
9688         * inet/netinet/igmp.h [__USE_BSD]: Likewise.
9689         * io/fcntl.h [__USE_BSD]: Likewise.
9690         * io/ftw.h [__USE_BSD]: Likewise.
9691         * io/sys/stat.h [__USE_BSD]: Likewise.
9692         * libio/bits/stdio-ldbl.h [__USE_BSD]: Likewise.
9693         * libio/bits/stdio2.h [__USE_BSD]: Likewise.
9694         * libio/stdio.h [__USE_SVID]: Likewise.
9695         [__USE_BSD]: Likewise.
9696         * math/math.h [__USE_SVID]: Likewise.
9697         [__USE_BSD]: Likewise.
9698         * misc/bits/syslog-ldbl.h [__USE_BSD]: Likewise.
9699         * misc/bits/syslog.h [__USE_BSD]: Likewise.
9700         * misc/search.h [__USE_SVID]: Likewise.
9701         * misc/sys/mman.h [__USE_BSD]: Likewise.
9702         * misc/sys/syslog.h [__USE_BSD]: Likewise.
9703         * misc/sys/uio.h [__USE_BSD]: Likewise.
9704         * posix/bits/unistd.h [__USE_BSD]: Likewise.
9705         * posix/glob.h [__USE_BSD]: Likewise.
9706         * posix/regex.h [__USE_BSD]: Likewise.
9707         * posix/sys/types.h [__USE_BSD]: Likewise.
9708         [__USE_SVID]: Likewise.
9709         * posix/sys/utsname.h [__USE_SVID]: Likewise.
9710         * posix/sys/wait.h [__USE_BSD]: Likewise.
9711         [__USE_SVID]: Likewise.
9712         * posix/unistd.h [__USE_BSD]: Likewise.
9713         [__USE_SVID]: Likewise.
9714         * pwd/pwd.h [__USE_SVID]: Likewise.
9715         * resolv/netdb.h [__USE_BSD]: Likewise.
9716         * setjmp/setjmp.h [__USE_BSD]: Likewise.
9717         * signal/signal.h [__USE_BSD]: Likewise.
9718         [__USE_SVID]: Likewise.
9719         * socket/sys/socket.h [__USE_BSD]: Likewise.
9720         * stdlib/fmtmsg.h [__USE_SVID]: Likewise.
9721         * stdlib/stdlib.h [__USE_BSD]: Likewise.
9722         [__USE_SVID]: Likewise.
9723         * string/bits/string2.h [__USE_BSD]: Likewise.
9724         [__USE_SVID]: Likewise.
9725         * string/bits/string3.h [__USE_BSD]: Likewise.
9726         * string/endian.h [__USE_BSD]: Likewise.
9727         * string/string.h [__USE_SVID]: Likewise.
9728         [__USE_BSD]: Likewise.
9729         * string/strings.h [__USE_BSD]: Likewise.
9730         * sysdeps/generic/netinet/ip.h [__USE_BSD]: Likewise.
9731         * sysdeps/gnu/netinet/ip_icmp.h [__USE_BSD]: Likewise.
9732         * sysdeps/mach/hurd/bits/fcntl.h [__USE_BSD]: Likewise.
9733         * sysdeps/mach/hurd/bits/stat.h [__USE_BSD]: Likewise.
9734         * sysdeps/unix/sysv/linux/alpha/bits/mman.h [__USE_BSD]: Likewise.
9735         * sysdeps/unix/sysv/linux/alpha/bits/termios.h [__USE_BSD]:
9736         Likewise.
9737         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_BSD]:
9738         Likewise.
9739         * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_BSD]: Likewise.
9740         * sysdeps/unix/sysv/linux/bits/sys_errlist.h [__USE_BSD]:
9741         Likewise.
9742         * sysdeps/unix/sysv/linux/bits/termios.h [__USE_BSD]: Likewise.
9743         * sysdeps/unix/sysv/linux/mips/bits/termios.h [__USE_BSD]:
9744         Likewise.
9745         * sysdeps/unix/sysv/linux/netinet/if_ether.h [__USE_BSD]:
9746         Likewise.
9747         * sysdeps/unix/sysv/linux/netinet/if_fddi.h [__USE_BSD]: Likewise.
9748         * sysdeps/unix/sysv/linux/netinet/if_tr.h [__USE_BSD]: Likewise.
9749         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_BSD]:
9750         Likewise.
9751         * sysdeps/unix/sysv/linux/sparc/bits/termios.h [__USE_BSD]:
9752         Likewise.
9753         * sysdeps/x86/bits/string.h [__USE_BSD]: Likewise.
9754         * sysvipc/sys/ipc.h [__USE_SVID]: Likewise.
9755         * termios/termios.h [__USE_BSD]: Likewise.
9756         * time/sys/time.h [__USE_BSD]: Likewise.
9757         * time/time.h [__USE_BSD]: Likewise.
9758         [__USE_SVID]: Likewise.
9760         * Makefile (subdir_targets): Remove subdir_lint.out.
9762         * stdio-common/Makefile (do-tst-unbputc): Remove target.
9763         (do-tst-printf): Likewise.
9764         (tests): Depend directly on $(objpfx)tst-unbputc.out and
9765         $(objpfx)tst-printf.out.
9767         * io/ftwtest-sh (testout): Change to $tmp/ftwtest-tmp.out.
9769         * Makerules (check-abi-%): Change target to
9770         $(objpfx)check-abi-%.out.
9771         (check-abi target): Update dependencies.
9772         (check-abi-pattern variable): Redirect output of diff to $@.
9773         (check-abi variable): Likewise.
9774         * elf/Makefile (check-abi): Update dependencies.
9776         * soft-fp/op-common.h (_FP_DECL): Mark exponent as possibly
9777         unused.
9778         (_FP_PACK_SEMIRAW): Determine tininess based on rounding shifted
9779         value if _FP_TININESS_AFTER_ROUNDING and unrounded value is in
9780         subnormal range.
9781         (_FP_PACK_CANONICAL): Determine tininess based on rounding to
9782         normal precision if _FP_TININESS_AFTER_ROUNDING and unrounded
9783         value has largest subnormal exponent.
9784         * soft-fp/soft-fp.h [FP_NO_EXCEPTIONS]
9785         (_FP_TININESS_AFTER_ROUNDING): Undefine and redefine to 0.
9786         * sysdeps/aarch64/soft-fp/sfp-machine.h
9787         (_FP_TININESS_AFTER_ROUNDING): New macro.
9788         * sysdeps/alpha/soft-fp/sfp-machine.h
9789         (_FP_TININESS_AFTER_ROUNDING): Likewise.
9790         * sysdeps/arm/soft-fp/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
9791         Likewise.
9792         * sysdeps/mips/mips64/soft-fp/sfp-machine.h
9793         (_FP_TININESS_AFTER_ROUNDING): Likewise.
9794         * sysdeps/mips/soft-fp/sfp-machine.h
9795         (_FP_TININESS_AFTER_ROUNDING): Likewise.
9796         * sysdeps/powerpc/soft-fp/sfp-machine.h
9797         (_FP_TININESS_AFTER_ROUNDING): Likewise.
9798         * sysdeps/sh/soft-fp/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
9799         Likewise.
9800         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h
9801         (_FP_TININESS_AFTER_ROUNDING): Likewise.
9802         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h
9803         (_FP_TININESS_AFTER_ROUNDING): Likewise.
9804         * sysdeps/tile/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
9805         Likewise.
9807 2014-02-12  Dylan Alex Simon  <dylan@dylex.net>
9809         [BZ #16545]
9810         * sysdeps/x86_64/fpu/libm-test-ulps: Update on AMD family 21h
9811         model 1.
9813 2014-02-12  Richard Henderson  <rth@redhat.com>
9815         * sysdeps/alpha: Move directory from ports/sysdeps/alpha.
9816         * sysdeps/unix/alpha: Move directory from ports/sysdeps/unix/alpha.
9817         * sysdeps/unix/sysv/linux/alpha: Move directory from
9818         ports/sysdeps/unix/sysv/linux/alpha.
9819         * README: Update listing for alpha-*-linux-gnu.
9821 2014-02-11  Joseph Myers  <joseph@codesourcery.com>
9823         * include/features.h: Update comment documenting feature test
9824         macros.
9825         [_BSD_SOURCE || _SVID_SOURCE]: Give #warning.  Define
9826         _DEFAULT_SOURCE.
9827         * manual/creature.texi (_BSD_SOURCE): Remove documentation.
9828         (_SVID_SOURCE): Likewise.
9829         (_DEFAULT_SOURCE): Update description of default features.
9830         (Feature Test Macros): Don't mention _SVID_SOURCE in conjunction
9831         with _GNU_SOURCE.
9832         * manual/filesys.texi (__ftw_func_t): Do not refer to _BSD_SOURCE.
9833         (S_ISVTX): Likewise.
9834         * manual/math.texi (Mathematical Constants): Likewise.
9835         * manual/signal.texi (Interrupted Primitives): Likewise.
9836         * manual/startup.texi (putenv): Do not refer to _SVID_SOURCE.
9837         * math/test-matherr.c (_SVID_SOURCE): Do not define.
9838         * sysvipc/sys/ipc.h [__USE_SVID && !__USE_XOPEN && __GNUC__ >= 2]:
9839         Don't refer to _SVID_SOURCE in warning text.
9841         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
9843         * elf/dl-lookup.c (ELF_MACHINE_SYM_NO_MATCH): Define if not
9844         already defined.
9845         (do_lookup_x): Use ELF_MACHINE_SYM_NO_MATCH.
9846         * sysdeps/mips/dl-lookup.c: Remove.
9847         * sysdeps/mips/dl-machine.h (ELF_MACHINE_SYM_NO_MATCH): New macro.
9849 2014-02-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
9851         [BZ #16447]
9852         * math/auto-libm-test-in: Add testcase for expl.
9853         * math/auto-libm-test-out: Regenerate.
9854         * sysdeps/ieee754/ldbl-128/e_expl.c (__ieee754_expl): Fix
9855         calculation of unsafe.
9856         * sysdeps/s390/fpu/libm-test-ulps: Adjust ULPs for added testcase.
9858 2014-02-11  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9860         * sysdeps/aarch64: Move directory from ports/sysdeps/aarch64.
9861         * sysdeps/unix/sysv/linux/aarch64: Move directory from
9862         ports/sysdeps/unix/sysv/linux/aarch64.
9863         * README: Update listing for aarch64*-*-linux-gnu.
9865 2014-02-11  Will Newton  <will.newton@linaro.org>
9867         * manual/probes.texi (Mathematical Function Probes): Use
9868         "triggered" instead of "hit".
9870         * manual/probes.texi (Internal Probes): Add documentation
9871         of setjmp, longjmp and longjmp_target probes.
9873         * include/stap-probe.h: Add comment about probe argument
9874         format.
9876         * malloc/mtrace.c (attribute_hidden): Remove unused macro
9877         definition.  (tr_where, tr_freehook, tr_mallochook,
9878         tr_reallochook, tr_memalignhook): Use ANSI protoype.
9880 2014-02-11  David S. Miller  <davem@davemloft.net>
9882         * stdio-common/tst-sscanf.c (main): Use 'long' for 'dummy' when
9883         processing int_tests.
9885 2014-02-10  Joseph Myers  <joseph@codesourcery.com>
9887         * sysdeps/mips: Move directory from ports/sysdeps/mips.
9888         * sysdeps/unix/mips: Move directory from ports/sysdeps/unix/mips.
9889         * sysdeps/unix/sysv/linux/mips: Move directory from
9890         ports/sysdeps/unix/sysv/linux/mips.
9891         * README: Update listing for mips-*-linux-gnu and
9892         mips64-*-linux-gnu.
9894 2014-02-10  Andreas Schwab  <schwab@linux-m68k.org>
9896         * sysdeps/m68k: Move directory from ports/sysdeps/m68k.
9897         * sysdeps/unix/sysv/linux/m68k: Move directory from
9898         ports/sysdeps/unix/sysv/linux/m68k.
9899         * README: Update listing for m68k-*-linux-gnu.
9901 2014-02-10  Chris Metcalf  <cmetcalf@tilera.com>
9903         * sysdeps/tile: Move directory from ports/sysdeps/tile.
9904         * sysdeps/unix/sysv/linux/generic: Move directory from
9905         ports/sysdeps/unix/sysv/linux/generic.
9906         * sysdeps/unix/sysv/linux/tile: Move directory from
9907         ports/sysdeps/unix/sysv/linux/tile.
9908         * README: Update listing for tile*-*-linux-gnu.
9910 2014-02-10  Ondřej Bílka  <neleai@seznam.cz>
9912         * assert/assert.c (__assert_fail_base): Use glibc_likely instead
9913         __builtin_expect.
9914         * benchtests/bench-memmem.c (simple_memmem): Likewise.
9915         * catgets/open_catalog.c (__open_catalog): Likewise.
9916         * csu/libc-start.c (LIBC_START_MAIN): Likewise.
9917         * debug/confstr_chk.c: Likewise.
9918         * debug/fread_chk.c (__fread_chk): Likewise.
9919         * debug/fread_u_chk.c (__fread_unlocked_chk): Likewise.
9920         * debug/getgroups_chk.c: Likewise.
9921         * debug/mbsnrtowcs_chk.c: Likewise.
9922         * debug/mbsrtowcs_chk.c: Likewise.
9923         * debug/mbstowcs_chk.c: Likewise.
9924         * debug/memcpy_chk.c: Likewise.
9925         * debug/memmove_chk.c: Likewise.
9926         * debug/mempcpy_chk.c: Likewise.
9927         * debug/memset_chk.c: Likewise.
9928         * debug/stpcpy_chk.c (__stpcpy_chk): Likewise.
9929         * debug/strcat_chk.c (__strcat_chk): Likewise.
9930         * debug/strcpy_chk.c (__strcpy_chk): Likewise.
9931         * debug/strncat_chk.c (__strncat_chk): Likewise.
9932         * debug/vsnprintf_chk.c (___vsnprintf_chk): Likewise.
9933         * debug/vswprintf_chk.c (__vswprintf_chk): Likewise.
9934         * debug/wcpcpy_chk.c (__wcpcpy_chk): Likewise.
9935         * debug/wcpncpy_chk.c: Likewise.
9936         * debug/wcscat_chk.c (__wcscat_chk): Likewise.
9937         * debug/wcscpy_chk.c (__wcscpy_chk): Likewise.
9938         * debug/wcsncat_chk.c (__wcsncat_chk): Likewise.
9939         * debug/wcsncpy_chk.c: Likewise.
9940         * debug/wcsnrtombs_chk.c: Likewise.
9941         * debug/wcsrtombs_chk.c: Likewise.
9942         * debug/wcstombs_chk.c: Likewise.
9943         * debug/wmemcpy_chk.c: Likewise.
9944         * debug/wmemmove_chk.c: Likewise.
9945         * debug/wmempcpy_chk.c: Likewise.
9946         * debug/wmemset_chk.c: Likewise.
9947         * dirent/scandirat.c (SCANDIRAT): Likewise.
9948         * dlfcn/dladdr1.c (dladdr1): Likewise.
9949         * dlfcn/dladdr.c (dladdr): Likewise.
9950         * dlfcn/dlclose.c (dlclose_doit): Likewise.
9951         * dlfcn/dlerror.c (__dlerror): Likewise.
9952         * dlfcn/dlinfo.c (dlinfo_doit): Likewise.
9953         * dlfcn/dlmopen.c (dlmopen_doit): Likewise.
9954         * dlfcn/dlopen.c (dlopen_doit): Likewise.
9955         * dlfcn/dlopenold.c (__dlopen_nocheck): Likewise.
9956         * dlfcn/dlsym.c (dlsym_doit): Likewise.
9957         * dlfcn/dlvsym.c (dlvsym_doit): Likewise.
9958         * elf/dl-cache.c (_dl_load_cache_lookup): Likewise.
9959         * elf/dl-close.c (remove_slotinfo, _dl_close_worker, _dl_close):
9960         Likewise.
9961         * elf/dl-conflict.c: Likewise.
9962         * elf/dl-deps.c (_dl_build_local_scope, _dl_map_object_deps): Likewise.
9963         * elf/dl-dst.h: Likewise.
9964         * elf/dl-fini.c (_dl_sort_fini, _dl_fini): Likewise.
9965         * elf/dl-fptr.c (_dl_make_fptr): Likewise.
9966         * elf/dl-hwcaps.c (_dl_important_hwcaps): Likewise.
9967         * elf/dl-init.c (call_init, _dl_init): Likewise.
9968         * elf/dl-libc.c (__libc_dlopen_mode, __libc_dlsym): Likewise.
9969         * elf/dl-load.c (_dl_dst_substitute, fillin_rpath, _dl_init_paths)
9970         (_dl_map_object_from_fd, open_verify, open_path, _dl_map_object):
9971         Likewise.
9972         * elf/dl-lookup.c (do_lookup_x, add_dependency, _dl_lookup_symbol_x):
9973         Likewise.
9974         * elf/dl-minimal.c (__libc_memalign): Likewise.
9975         * elf/dl-open.c (add_to_global, dl_open_worker, _dl_open): Likewise.
9976         * elf/dl-reloc.c (_dl_relocate_object): Likewise.
9977         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
9978         * elf/dl-sym.c (do_sym): Likewise.
9979         * elf/dl-tls.c (tls_get_addr_tail, update_get_addr)
9980         (__tls_get_addr, _dl_tls_get_addr_soft): Likewise.
9981         * elf/dl-version.c (match_symbol, _dl_check_map_versions): Likewise.
9982         * elf/dl-writev.h (_dl_writev): Likewise.
9983         * elf/ldconfig.c (search_dir): Likewise.
9984         * elf/rtld.c (_dl_start_final, _dl_start, init_tls, do_preload)
9985         (dl_main): Likewise.
9986         * elf/setup-vdso.h (setup_vdso): Likewise.
9987         * grp/compat-initgroups.c (compat_call): Likewise.
9988         * grp/fgetgrent.c (fgetgrent): Likewise.
9989         * grp/initgroups.c (getgrouplist, initgroups): Likewise.
9990         * grp/putgrent.c (putgrent): Likewise.
9991         * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_initgroups_dyn):
9992         Likewise.
9993         * hurd/hurdinit.c: Likewise.
9994         * iconvdata/8bit-gap.c (struct): Likewise.
9995         * iconvdata/ansi_x3.110.c : Likewise.
9996         * iconvdata/big5.c : Likewise.
9997         * iconvdata/big5hkscs.c : Likewise.
9998         * iconvdata/cp1255.c: Likewise.
9999         * iconvdata/cp1258.c : Likewise.
10000         * iconvdata/cp932.c : Likewise.
10001         * iconvdata/euc-cn.c: Likewise.
10002         * iconvdata/euc-jisx0213.c : Likewise.
10003         * iconvdata/euc-jp.c: Likewise.
10004         * iconvdata/euc-jp-ms.c : Likewise.
10005         * iconvdata/euc-kr.c (euckr_from_ucs4): Likewise.
10006         * iconvdata/gb18030.c : Likewise.
10007         * iconvdata/gbbig5.c (const): Likewise.
10008         * iconvdata/gbgbk.c: Likewise.
10009         * iconvdata/gbk.c : Likewise.
10010         * iconvdata/ibm1364.c : Likewise.
10011         * iconvdata/ibm930.c : Likewise.
10012         * iconvdata/ibm932.c: Likewise.
10013         * iconvdata/ibm933.c : Likewise.
10014         * iconvdata/ibm935.c : Likewise.
10015         * iconvdata/ibm937.c : Likewise.
10016         * iconvdata/ibm939.c : Likewise.
10017         * iconvdata/ibm943.c: Likewise.
10018         * iconvdata/iso_11548-1.c: Likewise.
10019         * iconvdata/iso-2022-cn.c : Likewise.
10020         * iconvdata/iso-2022-cn-ext.c : Likewise.
10021         * iconvdata/iso-2022-jp-3.c: Likewise.
10022         * iconvdata/iso-2022-jp.c (gconv_end): Likewise.
10023         * iconvdata/iso-2022-kr.c : Likewise.
10024         * iconvdata/iso646.c (gconv_end): Likewise.
10025         * iconvdata/iso_6937-2.c : Likewise.
10026         * iconvdata/iso_6937.c : Likewise.
10027         * iconvdata/iso8859-1.c: Likewise.
10028         * iconvdata/johab.c (johab_sym_hanja_to_ucs): Likewise.
10029         * iconvdata/shift_jisx0213.c : Likewise.
10030         * iconvdata/sjis.c : Likewise.
10031         * iconvdata/t.61.c : Likewise.
10032         * iconvdata/tcvn5712-1.c : Likewise.
10033         * iconvdata/tscii.c: Likewise.
10034         * iconvdata/uhc.c : Likewise.
10035         * iconvdata/unicode.c (gconv_end): Likewise.
10036         * iconvdata/utf-16.c (gconv_end): Likewise.
10037         * iconvdata/utf-32.c (gconv_end): Likewise.
10038         * iconvdata/utf-7.c (base64): Likewise.
10039         * iconv/gconv_cache.c (__gconv_load_cache): Likewise.
10040         * iconv/gconv_close.c (__gconv_close): Likewise.
10041         * iconv/gconv_open.c (__gconv_open): Likewise.
10042         * iconv/gconv_simple.c (internal_ucs4_loop_single)
10043         (ucs4_internal_loop, ucs4_internal_loop_unaligned)
10044         (ucs4_internal_loop_single, internal_ucs4le_loop_single)
10045         (ucs4le_internal_loop, ucs4le_internal_loop_unaligned)
10046         (ucs4le_internal_loop_single): Likewise.
10047         * iconv/iconv.c (iconv): Likewise.
10048         * iconv/iconv_close.c: Likewise.
10049         * iconv/loop.c (SINGLE): Likewise.
10050         * iconv/skeleton.c (FUNCTION_NAME): Likewise.
10051         * include/atomic.h: Likewise.
10052         * inet/inet6_option.c (option_alloc): Likewise.
10053         * intl/bindtextdom.c (set_binding_values): Likewise.
10054         * intl/dcigettext.c (DCIGETTEXT, _nl_find_msg): Likewise.
10055         * intl/loadmsgcat.c (_nl_load_domain): Likewise.
10056         * intl/localealias.c (read_alias_file): Likewise.
10057         * libio/filedoalloc.c (_IO_file_doallocate): Likewise.
10058         * libio/fileops.c (_IO_file_open, _IO_file_underflow_mmap)
10059         (_IO_new_file_overflow, _IO_file_xsgetn_mmap): Likewise.
10060         * libio/fmemopen.c (fmemopen): Likewise.
10061         * libio/iofgets.c (_IO_fgets): Likewise.
10062         * libio/iofgets_u.c (fgets_unlocked): Likewise.
10063         * libio/iofgetws.c (fgetws): Likewise.
10064         * libio/iofgetws_u.c (fgetws_unlocked): Likewise.
10065         * libio/iogetdelim.c (_IO_getdelim): Likewise.
10066         * libio/wfileops.c (_IO_wfile_underflow, _IO_wfile_underflow_mmap)
10067         (adjust_wide_data, _IO_wfile_seekoff): Likewise.
10068         * locale/findlocale.c (_nl_find_locale): Likewise.
10069         * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
10070         * locale/loadlocale.c (_nl_intern_locale_data, _nl_load_locale):
10071         Likewise.
10072         * locale/setlocale.c (setlocale): Likewise.
10073         * login/programs/pt_chown.c (main): Likewise.
10074         * malloc/arena.c (ptmalloc_init, shrink_heap, arena_get2): Likewise.
10075         * malloc/malloc.c (_int_malloc, _int_free): Likewise.
10076         * malloc/memusage.c (update_data, malloc, realloc, calloc, free)
10077         (mmap, mmap64, mremap, munmap): Likewise.
10078         * math/e_exp2l.c: Likewise.
10079         * math/e_scalb.c (invalid_fn, __ieee754_scalb): Likewise.
10080         * math/e_scalbf.c (invalid_fn, __ieee754_scalbf): Likewise.
10081         * math/e_scalbl.c (invalid_fn, __ieee754_scalbl): Likewise.
10082         * math/s_catan.c (__catan): Likewise.
10083         * math/s_catanf.c (__catanf): Likewise.
10084         * math/s_catanh.c (__catanh): Likewise.
10085         * math/s_catanhf.c (__catanhf): Likewise.
10086         * math/s_catanhl.c (__catanhl): Likewise.
10087         * math/s_catanl.c (__catanl): Likewise.
10088         * math/s_ccosh.c (__ccosh): Likewise.
10089         * math/s_ccoshf.c (__ccoshf): Likewise.
10090         * math/s_ccoshl.c (__ccoshl): Likewise.
10091         * math/s_cexp.c (__cexp): Likewise.
10092         * math/s_cexpf.c (__cexpf): Likewise.
10093         * math/s_cexpl.c (__cexpl): Likewise.
10094         * math/s_clog10.c (__clog10): Likewise.
10095         * math/s_clog10f.c (__clog10f): Likewise.
10096         * math/s_clog10l.c (__clog10l): Likewise.
10097         * math/s_clog.c (__clog): Likewise.
10098         * math/s_clogf.c (__clogf): Likewise.
10099         * math/s_clogl.c (__clogl): Likewise.
10100         * math/s_csin.c (__csin): Likewise.
10101         * math/s_csinf.c (__csinf): Likewise.
10102         * math/s_csinh.c (__csinh): Likewise.
10103         * math/s_csinhf.c (__csinhf): Likewise.
10104         * math/s_csinhl.c (__csinhl): Likewise.
10105         * math/s_csinl.c (__csinl): Likewise.
10106         * math/s_csqrt.c (__csqrt): Likewise.
10107         * math/s_csqrtf.c (__csqrtf): Likewise.
10108         * math/s_csqrtl.c (__csqrtl): Likewise.
10109         * math/s_ctan.c (__ctan): Likewise.
10110         * math/s_ctanf.c (__ctanf): Likewise.
10111         * math/s_ctanh.c (__ctanh): Likewise.
10112         * math/s_ctanhf.c (__ctanhf): Likewise.
10113         * math/s_ctanhl.c (__ctanhl): Likewise.
10114         * math/s_ctanl.c (__ctanl): Likewise.
10115         * math/w_pow.c: Likewise.
10116         * math/w_powf.c: Likewise.
10117         * math/w_powl.c: Likewise.
10118         * math/w_scalb.c (sysv_scalb): Likewise.
10119         * math/w_scalbf.c (sysv_scalbf): Likewise.
10120         * math/w_scalbl.c (sysv_scalbl): Likewise.
10121         * misc/error.c (error_tail): Likewise.
10122         * misc/pselect.c (__pselect): Likewise.
10123         * nis/nis_callback.c (__nis_create_callback): Likewise.
10124         * nis/nis_call.c (__nisfind_server): Likewise.
10125         * nis/nis_creategroup.c (nis_creategroup): Likewise.
10126         * nis/nis_domain_of_r.c (nis_domain_of_r): Likewise.
10127         * nis/nis_findserv.c (__nis_findfastest_with_timeout): Likewise.
10128         * nis/nis_getservlist.c (nis_getservlist): Likewise.
10129         * nis/nis_lookup.c (nis_lookup): Likewise.
10130         * nis/nis_subr.c (nis_leaf_of_r, nis_getnames): Likewise.
10131         * nis/nis_table.c (__create_ib_request, nis_list, nis_add_entry)
10132         (nis_modify_entry, nis_first_entry, nis_next_entry): Likewise.
10133         * nis/nis_xdr.c (xdr_endpoint): Likewise.
10134         * nis/nss_compat/compat-grp.c (getgrent_next_file)
10135         (internal_getgrnam_r, internal_getgrgid_r): Likewise.
10136         * nis/nss_compat/compat-initgroups.c (add_group)
10137         (internal_getgrent_r): Likewise.
10138         * nis/nss_compat/compat-pwd.c (getpwent_next_file)
10139         (internal_getpwnam_r, internal_getpwuid_r): Likewise.
10140         * nis/nss_compat/compat-spwd.c (getspent_next_file)
10141         (internal_getspnam_r): Likewise.
10142         * nis/nss_nis/nis-alias.c (internal_nis_getaliasent_r)
10143         (_nss_nis_getaliasbyname_r): Likewise.
10144         * nis/nss_nis/nis-ethers.c (_nss_nis_gethostton_r)
10145         (_nss_nis_getntohost_r): Likewise.
10146         * nis/nss_nis/nis-grp.c (internal_nis_setgrent)
10147         (internal_nis_getgrent_r, _nss_nis_getgrnam_r)
10148         (_nss_nis_getgrgid_r): Likewise.
10149         * nis/nss_nis/nis-hosts.c (_nss_nis_sethostent)
10150         (internal_nis_gethostent_r, internal_gethostbyname2_r)
10151         (_nss_nis_gethostbyname_r, _nss_nis_gethostbyaddr_r)
10152         (_nss_nis_gethostbyname4_r): Likewise.
10153         * nis/nss_nis/nis-initgroups.c (internal_getgrent_r)
10154         (initgroups_netid): Likewise.
10155         * nis/nss_nis/nis-netgrp.c (_nss_nis_setnetgrent): Likewise.
10156         * nis/nss_nis/nis-network.c (internal_nis_getnetent_r)
10157         (_nss_nis_getnetbyname_r, _nss_nis_getnetbyaddr_r): Likewise.
10158         * nis/nss_nis/nis-proto.c (_nss_nis_getprotobyname_r)
10159         (_nss_nis_getprotobynumber_r): Likewise.
10160         * nis/nss_nis/nis-publickey.c (_nss_nis_getpublickey)
10161         (_nss_nis_getsecretkey): Likewise.
10162         * nis/nss_nis/nis-pwd.c (_nis_saveit, internal_nis_setpwent)
10163         (internal_nis_getpwent_r, _nss_nis_getpwnam_r)
10164         (_nss_nis_getpwuid_r): Likewise.
10165         * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r)
10166         (_nss_nis_getrpcbyname_r, _nss_nis_getrpcbynumber_r): Likewise.
10167         * nis/nss_nis/nis-service.c (dosearch, internal_nis_getservent_r)
10168         (_nss_nis_getservbyname_r, _nss_nis_getservbyport_r): Likewise.
10169         * nis/nss_nis/nis-spwd.c (_nss_nis_setspent)
10170         (internal_nis_getspent_r, _nss_nis_getspnam_r): Likewise.
10171         * nis/nss_nisplus/nisplus-alias.c (_nss_nisplus_getaliasbyname_r):
10172         Likewise.
10173         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r)
10174         (_nss_nisplus_getntohost_r): Likewise.
10175         * nis/nss_nisplus/nisplus-grp.c (internal_nisplus_getgrent_r)
10176         (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
10177         * nis/nss_nisplus/nisplus-hosts.c (internal_gethostbyname2_r)
10178         (_nss_nisplus_gethostbyaddr_r, _nss_nisplus_gethostbyname4_r):
10179         Likewise.
10180         * nis/nss_nisplus/nisplus-initgroups.c
10181         (_nss_nisplus_initgroups_dyn): Likewise.
10182         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyname_r)
10183         (_nss_nisplus_getnetbyaddr_r): Likewise.
10184         * nis/nss_nisplus/nisplus-proto.c (_nss_nisplus_getprotobyname_r)
10185         (_nss_nisplus_getprotobynumber_r): Likewise.
10186         * nis/nss_nisplus/nisplus-pwd.c (internal_nisplus_getpwent_r)
10187         (_nss_nisplus_getpwnam_r, _nss_nisplus_getpwuid_r): Likewise.
10188         * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_getrpcbyname_r):
10189         Likewise.
10190         * nis/nss_nisplus/nisplus-service.c
10191         (internal_nisplus_getservent_r, _nss_nisplus_getservbyname_r)
10192         (_nss_nisplus_getservbyport_r): Likewise.
10193         * nis/nss_nisplus/nisplus-spwd.c (internal_nisplus_getspent_r)
10194         (_nss_nisplus_getspnam_r): Likewise.
10195         * nis/ypclnt.c (__yp_bind, yp_match, yp_all, yp_maplist):
10196         Likewise.
10197         * nscd/aicache.c (addhstaiX): Likewise.
10198         * nscd/cache.c (cache_search, prune_cache): Likewise.
10199         * nscd/connections.c (register_traced_file, send_ro_fd)
10200         (handle_request, nscd_run_prune, nscd_run_worker, fd_ready)
10201         (main_loop_epoll): Likewise.
10202         * nscd/grpcache.c (addgrbyX): Likewise.
10203         * nscd/hstcache.c (addhstbyX): Likewise.
10204         * nscd/initgrcache.c (addinitgroupsX): Likewise.
10205         * nscd/mem.c (gc, mempool_alloc): Likewise.
10206         * nscd/netgroupcache.c (do_notfound, addgetnetgrentX)
10207         (addinnetgrX): Likewise.
10208         * nscd/nscd-client.h (__nscd_acquire_maplock)
10209         (__nscd_drop_map_ref): Likewise.
10210         * nscd/nscd_getai.c (__nscd_getai): Likewise.
10211         * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
10212         * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp, nscd_gethst_r):
10213         Likewise.
10214         * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
10215         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
10216         * nscd/nscd_helper.c (__readvall, open_socket, __nscd_get_mapping)
10217         (__nscd_get_map_ref): Likewise.
10218         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
10219         * nscd/nscd_netgroup.c (__nscd_setnetgrent, __nscd_innetgr):
10220         Likewise.
10221         * nscd/pwdcache.c (addpwbyX): Likewise.
10222         * nscd/selinux.c (preserve_capabilities): Likewise.
10223         * nscd/servicescache.c (addservbyX): Likewise.
10224         * nss/nss_files/files-XXX.c (internal_getent): Likewise.
10225         * posix/fnmatch.c (fnmatch): Likewise.
10226         * posix/getopt.c (_getopt_internal_r): Likewise.
10227         * posix/glob.c (glob, glob_in_dir): Likewise.
10228         * posix/wordexp.c (exec_comm_child): Likewise.
10229         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r)
10230         (getanswer_r, gaih_getanswer_slice): Likewise.
10231         * resolv/nss_dns/dns-network.c (getanswer_r): Likewise.
10232         * resolv/res_init.c: Likewise.
10233         * resolv/res_mkquery.c (res_nmkquery): Likewise.
10234         * resolv/res_query.c (__libc_res_nquery): Likewise.
10235         * resolv/res_send.c (__libc_res_nsend, send_vc, reopen, send_dg):
10236         Likewise.
10237         * stdio-common/_i18n_number.h (_i18n_number_rewrite): Likewise.
10238         * stdio-common/perror.c (perror): Likewise.
10239         * stdio-common/printf_fp.c (___printf_fp): Likewise.
10240         * stdio-common/tmpnam.c (tmpnam): Likewise.
10241         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Likewise.
10242         * stdlib/cxa_finalize.c (__cxa_finalize): Likewise.
10243         * stdlib/cxa_thread_atexit_impl.c (__cxa_thread_atexit_impl):
10244         Likewise.
10245         * stdlib/drand48-iter.c (__drand48_iterate): Likewise.
10246         * stdlib/putenv.c (putenv): Likewise.
10247         * stdlib/setenv.c (__add_to_environ): Likewise.
10248         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Likewise.
10249         * stdlib/strtol_l.c (INTERNAL): Likewise.
10250         * string/memmem.c (memmem): Likewise.
10251         * string/strerror.c (strerror): Likewise.
10252         * string/strnlen.c (__strnlen): Likewise.
10253         * string/test-memmem.c (simple_memmem): Likewise.
10254         * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Likewise.
10255         * sunrpc/pm_getport.c (__get_socket): Likewise.
10256         * sysdeps/gnu/unwind-resume.c (init, _Unwind_Resume): Likewise.
10257         * sysdeps/i386/dl-irel.h (elf_irel): Likewise.
10258         * sysdeps/i386/dl-machine.h (elf_machine_runtime_setup)
10259         (elf_machine_rel, elf_machine_lazy_rel, elf_machine_lazy_rela):
10260         Likewise.
10261         * sysdeps/ieee754/dbl-64/e_atanh.c (__ieee754_atanh): Likewise.
10262         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Likewise.
10263         * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Likewise.
10264         * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r): Likewise.
10265         * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Likewise.
10266         * sysdeps/ieee754/dbl-64/e_j1.c (__ieee754_j1, __ieee754_y1):
10267         Likewise.
10268         * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn, __ieee754_yn):
10269         Likewise.
10270         * sysdeps/ieee754/dbl-64/e_log10.c (__ieee754_log10): Likewise.
10271         * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Likewise.
10272         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
10273         * sysdeps/ieee754/dbl-64/e_sinh.c (__ieee754_sinh): Likewise.
10274         * sysdeps/ieee754/dbl-64/s_asinh.c (__asinh): Likewise.
10275         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Likewise.
10276         * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Likewise.
10277         * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Likewise.
10278         * sysdeps/ieee754/dbl-64/s_modf.c (__modf): Likewise.
10279         * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): Likewise.
10280         * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
10281         * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c (__ieee754_acosh):
10282         Likewise.
10283         * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c (__ieee754_log10):
10284         Likewise.
10285         * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c (__ieee754_log2):
10286         Likewise.
10287         * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c (__frexp): Likewise.
10288         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
10289         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c (__remquo): Likewise.
10290         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c (__round): Likewise.
10291         * sysdeps/ieee754/flt-32/e_atanhf.c (__ieee754_atanhf): Likewise.
10292         * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r): Likewise.
10293         * sysdeps/ieee754/flt-32/s_logbf.c (__logbf): Likewise.
10294         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Likewise.
10295         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_nearbyint): Likewise.
10296         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c (__llrintl): Likewise.
10297         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c (__llroundl): Likewise.
10298         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
10299         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Likewise.
10300         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c (__lroundl): Likewise.
10301         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
10302         * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
10303         Likewise.
10304         * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l, __ieee754_y0l):
10305         Likewise.
10306         * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l, __ieee754_y1l):
10307         Likewise.
10308         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl, __ieee754_ynl):
10309         Likewise.
10310         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
10311         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
10312         * sysdeps/posix/clock_getres.c (hp_timing_getres, realtime_getres):
10313         Likewise.
10314         * sysdeps/posix/fdopendir.c (__fdopendir): Likewise.
10315         * sysdeps/posix/getaddrinfo.c (gaih_inet, getaddrinfo): Likewise.
10316         * sysdeps/posix/opendir.c (__opendirat): Likewise.
10317         * sysdeps/posix/sleep.c: Likewise.
10318         * sysdeps/posix/tempname.c: Likewise.
10319         * sysdeps/powerpc/powerpc32/dl-irel.h (elf_irela): Likewise.
10320         * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
10321         Likewise.
10322         * sysdeps/powerpc/powerpc32/dl-machine.h
10323         (elf_machine_runtime_setup, elf_machine_rela): Likewise.
10324         * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irela): Likewise.
10325         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
10326         * sysdeps/pthread/aio_notify.c (__aio_notify_only): Likewise.
10327         * sysdeps/pthread/aio_suspend.c (do_aio_misc_wait, aio_suspend):
10328         Likewise.
10329         * sysdeps/s390/dl-irel.h (elf_irela): Likewise.
10330         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_runtime_setup)
10331         (elf_machine_rela, elf_machine_lazy_rel): Likewise.
10332         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_runtime_setup)
10333         (elf_machine_rela, elf_machine_lazy_rel): Likewise.
10334         * sysdeps/s390/s390-64/utf16-utf32-z9.c (gconv_end): Likewise.
10335         * sysdeps/s390/s390-64/utf8-utf16-z9.c (gconv_end): Likewise.
10336         * sysdeps/s390/s390-64/utf8-utf32-z9.c (gconv_end): Likewise.
10337         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
10338         * sysdeps/sparc/sparc32/dl-irel.h (elf_irela): Likewise.
10339         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela)
10340         (elf_machine_lazy_rel): Likewise.
10341         * sysdeps/sparc/sparc64/dl-irel.h (elf_irela): Likewise.
10342         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela)
10343         (elf_machine_lazy_rel): Likewise.
10344         * sysdeps/sparc/sparc64/dl-plt.h (sparc64_fixup_plt): Likewise.
10345         * sysdeps/unix/clock_gettime.c (hp_timing_gettime): Likewise.
10346         * sysdeps/unix/clock_settime.c (hp_timing_settime): Likewise.
10347         * sysdeps/unix/grantpt.c (grantpt): Likewise.
10348         * sysdeps/unix/sysv/linux/accept4.c (accept4): Likewise.
10349         * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME): Likewise.
10350         * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): Likewise.
10351         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
10352         Likewise.
10353         * sysdeps/unix/sysv/linux/faccessat.c (faccessat): Likewise.
10354         * sysdeps/unix/sysv/linux/fchmodat.c (fchmodat): Likewise.
10355         * sysdeps/unix/sysv/linux/fchownat.c (fchownat): Likewise.
10356         * sysdeps/unix/sysv/linux/futimesat.c (futimesat): Likewise.
10357         * sysdeps/unix/sysv/linux/fxstatat64.c (__fxstatat64): Likewise.
10358         * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Likewise.
10359         * sysdeps/unix/sysv/linux/i386/fallocate64.c (fallocate64): Likewise.
10360         * sysdeps/unix/sysv/linux/i386/fallocate.c (fallocate): Likewise.
10361         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
10362         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise.
10363         * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
10364         Likewise.
10365         * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c
10366         (__posix_fallocate64_l64): Likewise.
10367         * sysdeps/unix/sysv/linux/i386/posix_fallocate.c
10368         (posix_fallocate): Likewise.
10369         * sysdeps/unix/sysv/linux/i386/scandir64.c (__old_scandir64):
10370         Likewise.
10371         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
10372         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request)
10373         (getifaddrs_internal): Likewise.
10374         * sysdeps/unix/sysv/linux/linkat.c (linkat): Likewise.
10375         * sysdeps/unix/sysv/linux/mkdirat.c (mkdirat): Likewise.
10376         * sysdeps/unix/sysv/linux/mq_unlink.c (mq_unlink): Likewise.
10377         * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Likewise.
10378         * sysdeps/unix/sysv/linux/posix_fallocate64.c
10379         (__posix_fallocate64_l64): Likewise.
10380         * sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate):
10381         Likewise.
10382         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
10383         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c
10384         (__get_clockfreq): Likewise.
10385         * sysdeps/unix/sysv/linux/readlinkat.c (readlinkat): Likewise.
10386         * sysdeps/unix/sysv/linux/recvmmsg.c (recvmmsg): Likewise.
10387         * sysdeps/unix/sysv/linux/renameat.c (renameat): Likewise.
10388         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
10389         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
10390         * sysdeps/unix/sysv/linux/sched_setaffinity.c: Likewise.
10391         * sysdeps/unix/sysv/linux/sendmmsg.c (__sendmmsg): Likewise.
10392         * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs, shm_open):
10393         Likewise.
10394         * sysdeps/unix/sysv/linux/sleep.c (__sleep): Likewise.
10395         * sysdeps/unix/sysv/linux/symlinkat.c (symlinkat): Likewise.
10396         * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Likewise.
10397         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Likewise.
10398         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
10399         * sysdeps/unix/sysv/linux/unlinkat.c (unlinkat): Likewise.
10400         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c (__fxstatat):
10401         Likewise.
10402         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
10403         (posix_fallocate): Likewise.
10404         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
10405         * sysdeps/unix/sysv/linux/xmknodat.c (__xmknodat): Likewise.
10406         * sysdeps/x86_64/dl-irel.h (elf_irela): Likewise.
10407         * sysdeps/x86_64/dl-machine.h (elf_machine_runtime_setup)
10408         (elf_machine_rela, elf_machine_rela_relative)
10409         (elf_machine_lazy_rel): Likewise.
10410         * time/asctime.c (asctime_internal): Likewise.
10411         * time/tzfile.c (__tzfile_read, __tzfile_compute): Likewise.
10412         * time/tzset.c (__tzset_parse_tz): Likewise.
10413         * wcsmbs/mbrtoc16.c (mbrtoc16): Likewise.
10414         * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
10415         * wcsmbs/wcsmbsload.c (__wcsmbs_load_conv): Likewise.
10416         * wcsmbs/wcsmbsload.h: Likewise.
10418         [BZ #15894]
10419         * stdlib/setenv.c (__add_to_environ): Remove duplicate code.
10421         * malloc/arena.c (grow_heap, get_free_list, reused_arena)
10422         (arena_get2): Remove THREAD_STATS conditionals.
10423         * malloc/malloc.c (__malloc_assert, __libc_realloc, _int_free)
10424         (__malloc_stats, int): Likewise.
10426 2014-02-08  Mike Frysinger  <vapier@gentoo.org>
10428         * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs): Compare
10429         f.f_type to RAMFS_MAGIC too.  Compare mp->mnt_type to shm too.
10431         * manual/setjmp.texi: Fix typos/grammar errors.
10433         * debug/tst-backtrace4.c (handle_signal): Add NUM_FUNCTIONS to output.
10434         Only return early when n is <= 0.  Delete unused return statement.
10436         * debug/Makefile (CFLAGS-tst-longjmp_chk3.c): Define.
10437         (CPPFLAGS-tst-longjmp_chk3.c): Likewise.
10438         * debug/tst-longjmp_chk3.c: New file.
10440         * benchtests/bench-strcpy_chk.c: Move test-skeleton.c to top.
10441         (test_main): Replace code with set_fortify_handler call.
10442         * debug/test-strcpy_chk.c: Likewise.
10443         * debug/tst-chk1.c: Likewise.
10444         * debug/tst-longjmp_chk.c: Likewise.
10445         * test-skeleton.c: Include fcntl.h & paths.h
10446         (set_fortify_handler): Define.
10448         * debug/tst-longjmp_chk.c: Add header comment and include
10449         ../test-skeleton.c.
10450         (do_test): Mark static.
10451         (TEST_FUNCTION): Define.
10453         * sysdeps/unix/sysv/linux/bits/in.h (IP_NODEFRAG): Define.
10454         (IP_PMTUDISC_INTERFACE): Likewise.
10455         (IP_MULTICAST_IF): Likewise.
10456         (IP_MULTICAST_TTL): Likewise.
10457         (IP_MULTICAST_LOOP): Likewise.
10458         (IP_ADD_MEMBERSHIP): Likewise.
10459         (IP_DROP_MEMBERSHIP): Likewise.
10460         (IP_UNBLOCK_SOURCE): Likewise.
10461         (IP_BLOCK_SOURCE): Likewise.
10462         (IP_ADD_SOURCE_MEMBERSHIP): Likewise.
10463         (IP_DROP_SOURCE_MEMBERSHIP): Likewise.
10464         (IP_MSFILTER): Likewise.
10465         (MCAST_JOIN_GROUP): Likewise.
10466         (MCAST_BLOCK_SOURCE): Likewise.
10467         (MCAST_UNBLOCK_SOURCE): Likewise.
10468         (MCAST_LEAVE_GROUP): Likewise.
10469         (MCAST_JOIN_SOURCE_GROUP): Likewise.
10470         (MCAST_LEAVE_SOURCE_GROUP): Likewise.
10471         (MCAST_MSFILTER): Likewise.
10472         (IP_MULTICAST_ALL): Likewise.
10473         (IP_UNICAST_IF): Likewise.
10475         * timezone/Makefile: Delete $(have-ksh) check.
10476         ($(objpfx)tzselect): Change $(KSH) to $(BASH).
10477         * timezone/tzselect.ksh: Add +x mode bits.
10479         * sysdeps/unix/sysv/linux/linux_fsinfo.h (AFS_SUPER_MAGIC): Define.
10480         (ANON_INODE_FS_MAGIC): Likewise.
10481         (BDEVFS_MAGIC): Likewise.
10482         (BINFMTFS_MAGIC): Likewise.
10483         (BTRFS_TEST_MAGIC): Likewise.
10484         (CRAMFS_MAGIC_WEND): Likewise.
10485         (DEBUGFS_MAGIC): Likewise.
10486         (ECRYPTFS_SUPER_MAGIC): Likewise.
10487         (EXT3_SUPER_MAGIC): Likewise.
10488         (EXT4_SUPER_MAGIC): Likewise.
10489         (FUTEXFS_SUPER_MAGIC): Likewise.
10490         (HOSTFS_SUPER_MAGIC): Likewise.
10491         (HUGETLBFS_MAGIC): Likewise.
10492         (MINIX3_SUPER_MAGIC): Likewise.
10493         (MTD_INODE_FS_MAGIC): Likewise.
10494         (NILFS_SUPER_MAGIC): Likewise.
10495         (OPENPROM_SUPER_MAGIC): Likewise.
10496         (PIPEFS_MAGIC): Likewise.
10497         (PSTOREFS_MAGIC): Likewise.
10498         (QNX6_SUPER_MAGIC): Likewise.
10499         (RAMFS_MAGIC): Likewise.
10500         (REISERFS_SUPER_MAGIC_STRING): Likewise.
10501         (REISER2FS_SUPER_MAGIC_STRING): Likewise.
10502         (REISER2FS_JR_SUPER_MAGIC_STRING): Likewise.
10503         (SECURITYFS_MAGIC): Likewise.
10504         (SELINUX_MAGIC): Likewise.
10505         (SMACK_MAGIC): Likewise.
10506         (SOCKFS_MAGIC): Likewise.
10507         (SQUASHFS_MAGIC): Likewise.
10508         (STACK_END_MAGIC): Likewise.
10509         (TMPFS_MAGIC): Likewise.
10510         (USBDEVICE_SUPER_MAGIC): Likewise.
10511         (V9FS_MAGIC): Likewise.
10512         (XENFS_SUPER_MAGIC): Likewise.
10513         (CRAMFS_MAGIC): Fix typo in comment.
10514         (EXT2_SUPER_MAGIC): Update comment.
10515         (USBDEVFS_SUPER_MAGIC): Fix sorting order by moving further down.
10517 2014-02-08  Joseph Myers  <joseph@codesourcery.com>
10519         * sysdeps/arm: Move directory from ports/sysdeps/arm.
10520         * sysdeps/unix/arm: Move directory from ports/sysdeps/unix/arm.
10521         * sysdeps/unix/sysv/linux/arm: Move directory from
10522         ports/sysdeps/unix/sysv/linux/arm.
10523         * README: Update listing for arm-*-linux-gnueabi.
10525         * README: Remove mention of am33.
10527 2014-02-07  Roland McGrath  <roland@hack.frob.com>
10529         * bits/sigset.h (__sigemptyset): Use a statement expression rather
10530         than the comma operator, to avoid "rhs of comma has no effect"
10531         compiler warnings.
10532         (__sigfillset, __sigandset, __sigorset): Likewise.
10533         * include/signal.h (__sigemptyset): Likewise.
10534         * sysdeps/generic/malloc-machine.h (mutex_lock): Likewise.
10536 2014-02-07  Allan McRae  <allan@archlinux.org>
10538         * version.h (RELEASE): Set to "development".
10539         (VERSION): Set to "2.19.90"
10540         * NEWS: Add 2.20 section.
10542 2014-02-06  Carlos O'Donell  <carlos@redhat.com>
10544         [BZ #16529]
10545         * inet/netinet/in.h: Remove comma after IPPROTO_MH.
10547 2014-02-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
10549         * manual/contrib.texi: Update entry for Carlos O'Donell,
10550         Joseph Myers, Roland McGrath, Alexandre Oliva and Ryan Arnold.
10552 2014-02-05  Carlos O'Donell  <carlos@rehdat.com>
10554         * sysdeps/unix/sysv/linux/kernel-features.h: Fix comment.
10556         * sysdeps/unix/sysv/linux/kernel-features.h
10557         [__LINUX_KERNEL_VERSION >= 0x020621]
10558         (__ASSUME_PROC_PID_TASK_COMM): Define.
10560 2014-02-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
10562         [BZ #16398]
10563         * libio/wfileops.c (_IO_wfile_seekoff): Break out form
10564         conversion when destination buffer does not have enough space.
10565         * libio/tst-ftell-partial-wide.c: New test case.
10566         * libio/Makefile (tests): Add tst-ftell-partial-wide.
10568         * manual/contrib.texi: Update entry for Ondrej Bilka, Will
10569         Newton and Alexandre Oliva.  Add entries for Steve Ellcey, Chris
10570         Leonard and Allan McRae.
10572 2014-02-04  David S. Miller  <davem@davemloft.net>
10574         * sysdeps/sparc/fpu/libm-test-ulps: Update for some 64-bit differences from
10575         32-bit.
10577 2014-02-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10579         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist:
10580         New file
10581         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist:
10582         New file
10583         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist:
10584         New file.
10585         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist:
10586         New file.
10587         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist:
10588         New file.
10589         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist:
10590         New file.
10591         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist:
10592         New file.
10593         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist:
10594         New file.
10595         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist:
10596         New file.
10597         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist:
10598         New file.
10599         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist:
10600         New file.
10601         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist:
10602         New file.
10603         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist:
10604         New file.
10606 2014-02-01  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10608         * nptl/shlib-versions: Change powerpc*le start to 2.17.
10609         * shlib-versions: Likewise.
10611 2014-02-04  Roland McGrath  <roland@hack.frob.com>
10612             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10614         * sysdeps/powerpc/Makefile [$(config-machine) ends with 'le']
10615         (abilist-pattern): New variable, set to %-le.abilist.
10617         * Makerules (abilist-pattern): New variable.
10618         (vpath): Use $(abilist-pattern) in place of %.abilist.
10619         (check-abi-% pattern rule): Likewise.
10620         (check-abi, update-abi): Likewise.
10622 2014-02-04  Eric Wong  <normalperson@yhbt.net>
10624         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
10626 2014-02-03  Carlos O'Donell  <carlos@redhat.com>
10628         * manual/startup.texi: Add next, previous, and top entries for
10629         the `Program Arguments' and `Environment Variables' nodes.
10631 2014-02-03  Alexandre Oliva <aoliva@redhat.com>
10633         * manual/macros.texi: Add comments before MTASC-safety macros.
10635         * manual/users.texi: Document MTASC-safety properties.
10637         * manual/threads.texi (pthread_key_create, pthread_key_delete)
10638         (pthread_getspecific, pthread_setspecific): Format with
10639         @deftypefun, and add @safety note.
10640         * manual/signal.texi: Move comments that analyze the above
10641         functions to their home place.
10643 2014-02-03  Allan McRae  <allan@archlinux.org>
10645         * po/sl.po: Update Slovenian translation from translation project.
10647 2014-02-02  Alexandre Oliva <aoliva@redhat.com>
10649         * manual/time.texi (timegm): Add missing blank after @c.
10650         Reported by Joseph Myers <joseph@codesourcery.com>.
10652 2014-02-01  Alexandre Oliva <aoliva@redhat.com>
10654         * manual/check-safety.sh: New.
10655         * manual/Makefile ($(objpfx)stamp-summary): Run it.
10657         * manual/terminal.texi: Document MTASC-safety properties.
10659         * manual/filesys.texi: Document MTASC-safety properties.
10661         * manual/errno.texi: Document MTASC-safety properties.
10663         * manual/intro.texi: Document safety identifiers and
10664         conditionals.
10666         * manual/string.texi (wcstok): Fix prototype.
10667         (wcstok, strtok, strtok_r): Adjust reentrancy remarks.
10669         * manual/time.texi: Document MTASC-safety properties.
10671         * manual/string.texi: Document MTASC-safety properties.
10673         * manual/threads.texi: Document MTASC-safety properties.
10675         * manual/stdio.texi: Document MTASC-safety properties.
10677         * manual/syslog.texi: Document MTASC-safety properties.
10679         * manual/sysinfo.texi: Document MTASC-safety properties.
10681         * manual/startup.texi: Document MTASC-safety properties.
10683         * manual/socket.texi: Document MTASC-safety properties.
10685         * manual/signal.texi: Document MTASC-safety properties.
10687 2014-01-31  Alexandre Oliva <aoliva@redhat.com>
10689         * manual/setjmp.texi: Document MTASC-safety properties.
10691         * manual/search.texi: Document MTASC-safety properties.
10693         * manual/resource.texi: Document MTASC-safety properties.
10695         * manual/process.texi: Document MTASC-safety properties.
10697         * manual/platform.texi: Document MTASC-safety properties.
10699         * manual/pipe.texi: Document MTASC-safety properties.
10701         * manual/pattern.texi: Document MTASC-safety properties.
10703         * manual/message.texi: Document MTASC-safety properties.
10705         [BZ #12751]
10706         * manual/memory.texi: Document MTASC-safety properties.
10708         * manual/math.texi: Document MTASC-safety properties.
10710         * manual/locale.texi: Document MTASC-safety properties.
10712         * manual/llio.texi: Document MTASC-safety properties.
10714         * manual/libdl.texi: New.
10716         * manual/lang.texi: Document MTASC-safety properties.
10718         * manual/job.texi: Document MTASC-safety properties.
10720         * manual/getopt.texi: Document MTASC-safety properties.
10722         * manual/ctype.texi: Document MTASC-safety properties.
10724 2014-01-31  Maciej W. Rozycki  <macro@codesourcery.com>
10726         [BZ #16046]
10727         * csu/libc-tls.c (static_map): Remove variable.
10728         (__libc_setup_tls): Use main executable's link map for TLS data.
10729         * elf/dl-close.c (_dl_close_worker) [!SHARED]: Remove special
10730         casing for LM_ID_BASE and GL(dl_nns).
10731         * elf/dl-iteratephdr.c [!SHARED] (dl_iterate_phdr): Remove
10732         function.  Alias dl_iterate_phdr to __dl_iterate_phdr.
10733         * elf/dl-load.c (_dl_map_object) [!SHARED]: Remove special
10734         casing for GL(dl_ns)[LM_ID_BASE]._ns_loaded.
10735         * elf/dl-support.c (_dl_main_map): Also initialize l_flags_1
10736         member.
10737         (_dl_non_dynamic_init): Also initialize _dl_main_map's l_phdr and
10738         l_phnum members.
10740 2014-01-30  Alexandre Oliva <aoliva@redhat.com>
10742         * manual/debug.texi: Document MTASC-safety properties.
10744 2014-01-29  H.J. Lu  <hongjiu.lu@intel.com>
10746         [BZ #16510]
10747         * sysdeps/x86/fpu/bits/mathinline.h: Check __SSE2_MATH__ instead
10748         of __x86_64__ when disabling x87 inline functions.
10750 2014-01-29  Alexandre Oliva <aoliva@redhat.com>
10752         * manual/charset.texi: Document MTASC-safety properties.
10754         * manual/crypt.texi: Document MTASC-safety properties.
10756         * manual/conf.texi: Document MTASC-safety properties.
10758         * manual/arith.texi: Document MTASC-safety properties.
10760         * manual/argp.texi: Document MTASC-safety properties.
10762         * manual/macros.texi: Introduce macros to document multi
10763         thread, asynchronous signal and asynchronous cancellation
10764         safety properties.
10765         * manual/intro.texi: Introduce the properties themselves.
10767 2014-01-27  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
10769         * sysdeps/sh/sh4/Makefile: New file.
10771 2014-01-27  Andreas Schwab  <schwab@linux-m68k.org>
10773         * math/gen-libm-test.pl ($srcdir): New variable.
10774         ($auto_input): Use it.
10776 2014-01-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
10778         [BZ #16506]
10779         * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): Avoid
10780         access beyond array bounds when parsing netgroups file.
10782         * nscd/netgroupcache.c (addgetnetgrentX): Compute offset from
10783         the old buffer before realloc.
10785 2014-01-27  Allan McRae  <allan@archlinux.org>
10787         * po/fr.po: Update French translation from translation project.
10789 2014-01-26  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
10791         * sysdeps/sh/libm-test-ulps: Regenerate.
10793 2014-01-24  David S. Miller  <davem@davemloft.net>
10795         * sysdeps/sparc/fpu/libm-test-ulps: Regenerate.
10797 2014-01-25  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
10799         * sysdeps/sh/sh4/fpu/libm-test-ulps: Move to ...
10800         * sysdeps/sh/libm-test-ulps: ... here and regenerated.
10802 2013-01-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
10804         [BZ #16474]
10805         * nscd/netgroupcache.c (addgetnetgrentX): Adjust triplet
10806         string pointers after reallocation.
10808 2014-01-24  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
10810         * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: Use __SH4__ and
10811         __SH4A__ instead of __SH_FPU_ANY__.
10813 2014-01-23  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
10815         * sysdeps/sh/fpu_control.h: New file.
10816         * sysdeps/sh/sh4/fpu/fpu_control.h: Remove.
10817         * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: New file.
10818         * sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h: Remove.
10819         * sysdeps/unix/sysv/linux/sh/sh3/sys: Remove directory.
10820         * sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h: Remove.
10821         * sysdeps/unix/sysv/linux/sh/sh4/sys: Remove directory.
10822         * sysdeps/sh/sys/ucontext.h: Remove.
10823         * sysdeps/sh/sys: Remove directory.
10825 2014-01-22  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
10827         * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Merge into
10828         s390/sys/ucontext.h.
10829         * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Likewise.
10830         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: New file.
10832 2014-01-20  H.J. Lu  <hongjiu.lu@intel.com>
10834         [BZ #15605]
10835         * sysdeps/x86_64/x32/symbol-hacks.h: Include generic symbol-hacks.h.
10837 2014-01-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10839         [BZ#16431]
10840         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c (__gettimeofday):
10841         Adjust the vDSO correctly for internal calls.
10842         * sysdeps/unix/sysv/linux/powerpc/time.c (time): Likewise.
10844 2014-01-20  Allan McRae  <allan@archlinux.org>
10846         * po/ca.po: Update Catalan translation from translation project.
10848 2014-01-16  Mike Frysinger  <vapier@gentoo.org>
10850         * sysdeps/s390/sotruss-lib.c: New file.
10852 2014-01-16  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10854         [BZ#16430]
10855         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c
10856         (__GI___gettimeofday): Alias for a different internal symbol to avoid
10857         local calls issues by not having a PLT stub required for IFUNC calls.
10858         * sysdeps/unix/sysv/linux/powerpc/time.c (__GI_time): Likewise.
10860 2014-01-16 Joseph Myers  <joseph@codesourcery.com>
10862         * math/test-fpucw-ieee.c: Use <> in #include of test-fpucw.c.
10863         * math/test-fpucw-static.c: Likewise.
10865 2013-01-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
10867         [BZ #16453]
10868         * nscd/netgroupcache.c (addgetnetgrentX): Don't use alloca.
10870 2014-01-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10872         * sysdeps/powerpc/sotruss-lib.c: New file: sotruss-lib.so
10873         implementation for powerpc.
10875 2014-01-15  Ondřej Bílka  <neleai@seznam.cz>
10877         [BZ #14782]
10878         * sysdeps/posix/system.c (__libc_system): Do not enable
10879         asynchronous cancellation.
10881 2014-01-15  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
10883         [BZ #16427]
10884         * sysdeps/ieee754/ldbl-128/w_expl.c (__expl): Invoke the non-IEEE
10885         handling only for numbers special also in the IEEE case.
10887 2014-01-15  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
10889         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
10891 2014-01-11  Allan McRae  <allan@archlinux.org>
10893         * po/bg.po: Update Bulgarian translation from translation project.
10895         * po/de.po: Update German translation from translation project.
10897 2014-01-10  Roland McGrath  <roland@hack.frob.com>
10899         * sysdeps/generic/gcc-compat.h: New file.
10901 2014-01-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
10903         * benchtests/asin-inputs: Correct slow inputs.
10904         * benchtests/acos-inputs: Likewise.
10906 2014-01-10  Allan McRae  <allan@archlinux.org>
10908         * po:sv.po: Update Swedish translation from translation project.
10910         * po/vi.po: Update Vietnamese translation from translation project.
10912         * po/eo.po: Update Esperanto translation from translation project.
10914         * po/cs.po: Update Czech translation from translation project.
10916         * po/nl.po: Update Dutch translation from translation project.
10918         * po/pl.po: Update Polish translation from translation project.
10920         * po/ru.po: Update Russian translation from translation project.
10922         * po/uk.po: Update Ukrainian translation from translation project.
10924 2014-01-08  Brooks Moses  <bmoses@google.com>
10926         * elf/dl-load.c: Fix comment typo.
10928 2014-01-08  Carlos O'Donell  <carlos@redhat.com>
10930         * po/header.pot: Rename to...
10931         * po/pot.header: ... this.
10932         * po/Makefile: Use pot.header.
10934 2014-01-08  Yuriy Kaminskiy  <yumkam@gmail.com>
10935             Maxim Kuvyrkov  <maxim@kugelworks.com>
10937         [BZ #16394]
10938         * sysdeps/i386/i686/memmove.S (memmove): Compare distance between
10939         SRC and DEST against LEN.
10941 2014-01-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10943         [BZ #16414]
10944         * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: Remove wrong
10945         implementation.
10946         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Remove bogus comment.
10948 2014-01-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10950         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
10952 2014-01-08  Joseph Myers  <joseph@codesourcery.com>
10954         [BZ #16408]
10955         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Use __expl
10956         for large positive arguments.
10958 2014-01-07  Joseph Myers  <joseph@codesourcery.com>
10960         * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
10962         * math/auto-libm-test-in: Mark various tests with
10963         xfail-rounding:ldbl-128ibm.
10964         * math/auto-libm-test-out: Regenerated.
10966         [BZ #16407]
10967         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl):
10968         Increase overflow threshold.
10970 2014-01-07  Ondřej Bílka  <neleai@seznam.cz>
10972         [BZ #14286]
10973         * stdio-common/vfprintf.c: Check for integer overflow.
10975 2014-01-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
10977         * sysdeps/s390/dl-tls.h: sysdeps/s390/dl-tls.h: Remove casts for
10978         the first argument and return value of __tls_get_addr_internal.
10980 2014-01-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
10982         * sysdeps/s390/s390-32/dl-machine.h: Gate the definition of refsym
10983         also with !RTLD_BOOTSTRAP to get rid of unused variable warning.
10985 2014-01-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
10987         * sysdeps/s390/Makefile: Build rtld-global-offsets.sym.
10988         * sysdeps/s390/rtld-global-offsets.sym: New file.
10989         * sysdeps/unix/sysv/linux/s390/Versions: Add getcontext as new
10990         GLIBC_2.19 symbol.
10991         * sysdeps/unix/sysv/linux/s390/getcontext.S: New file.
10992         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Rename to ...
10993         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S:
10994         ... this.
10995         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Rename to ...
10996         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S:
10997         ... this.
10998         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
10999         Regenerate.
11000         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
11001         Regenerate.
11002         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Restore upper
11003         halfs of GPRs for high_gprs contexts.
11004         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Save and
11005         restore upper halfs of GPRs for high_gprs contexts.  Copy uc_flags
11006         field.
11007         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Copy
11008         uc_flags field.
11009         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Split into 32 and
11010         64 bit versions:
11011         * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Add field
11012         for high GPRs (uc_high_gprs) and for future extensions
11013         (__reserved).
11014         * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Add field
11015         for future extensions (__reserved).
11016         * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: Split into 32 and
11017         64 bit versions:
11018         * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym: Add
11019         SC_HIGHGPRS offset definition.
11020         * sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.sym: New file.
11021         * sysdeps/unix/sysv/linux/s390/rtld-getcontext.S: New file.
11023         * Versions.def: Add GLIBC_2.19 for libpthread.
11024         * nptl/sysdeps/unix/sysv/linux/s390/Versions: Add longjmp and
11025         siglongjmp for libpthread with GLIBC_2.19 symver.
11026         * nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c: New file.
11027         * sysdeps/s390/Makefile: Build v1-longjmp.c and v1-sigjmp.c.
11028         * sysdeps/s390/Versions: New GLIBC_2.19 and GLIBC_PRIVATE symbols.
11029         * sysdeps/s390/__longjmp.c: New file.
11030         * sysdeps/s390/bits/setjmp.h: Add new fields to __s390_jmp_buf.
11031         * sysdeps/s390/longjmp.c: New file.
11032         * sysdeps/s390/setjmp.S: New file.
11033         * sysdeps/s390/sigjmp.S: New file.
11034         * sysdeps/s390/v1-longjmp.c: New file.
11035         * sysdeps/s390/v1-setjmp.h: New file.
11036         * sysdeps/s390/v1-sigjmp.c: New file.
11037         * sysdeps/unix/sysv/linux/s390/Makefile: Build __longjmp_chk.
11038         * sysdeps/unix/sysv/linux/s390/Versions: Add __longjmp_chk with
11039         GLIBC_2.19 version.
11040         * sysdeps/unix/sysv/linux/s390/longjmp_chk.c: New file.
11041         * sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c: Provide
11042         versioned symbols for ____longjmp_chk.
11043         * sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c:
11044         Likewise.
11045         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
11046         Regenerate.
11047         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
11048         Regenerate.
11049         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
11050         Regenerate.
11051         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
11052         Regenerate.
11053         * sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c: New file.
11054         * sysdeps/s390/s390-32/__longjmp.c: Rename to ...
11055         * sysdeps/s390/s390-32/__longjmp-common.c: ... this.
11056         * sysdeps/s390/s390-32/setjmp.S: Rename and adjust to ...
11057         * sysdeps/s390/s390-32/setjmp-common.S: ... this.
11058         * sysdeps/s390/s390-64/__longjmp.c: Rename to ...
11059         * sysdeps/s390/s390-64/__longjmp-common.c: ... this.
11060         * sysdeps/s390/s390-64/setjmp.S: Rename and adjust to ...
11061         * sysdeps/s390/s390-64/setjmp-common.S: ... this.
11062         * sysdeps/s390/rtld-__longjmp.c: New file.
11063         * sysdeps/s390/rtld-setjmp.S: New file.
11065 2014-01-06  Joseph Myers  <joseph@codesourcery.com>
11067         [BZ #16400]
11068         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
11069         Return -__logl (x) for small positive arguments without evaluating
11070         a polynomial.
11072 2014-01-06  Mike Frysinger  <vapier@gentoo.org>
11074         * sysdeps/unix/sysv/linux/sys/ptrace.h (ptrace_peeksiginfo_args):
11075         Rename to ...
11076         (__ptrace_peeksiginfo_args): ... this.
11077         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
11078         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
11079         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
11081 2014-01-06  Allan McRae  <allan@archlinux.org>
11083         * inet/netinet/in.h: Fix typo in comment.
11085 2014-01-05  Andreas Jaeger  <aj@suse.de>
11087         * sysdeps/i386/fpu/libm-test-ulps: Update.
11089 2014-01-05  Allan McRae  <allan@archlinux.org>
11091         * po/libc.pot: Regenerated.
11093         * malloc/memusagestat.c: Fix gettext call formatting.
11095 2014-01-04  Sami Kerola  <kerolasa@iki.fi>
11097         * nscd/nscd.c: Improve usage() output.
11099 2014-01-04  Mike Frysinger  <vapier@gentoo.org>
11101         * config.h.in: Add HAVE_LINUX_FANOTIFY_H template.
11102         * sysdeps/unix/sysv/linux/configure: Regenerated.
11103         * sysdeps/unix/sysv/linux/configure.ac: Call AC_DEFINE.
11104         * sysdeps/unix/sysv/linux/tst-fanotify.c: Include config.h.
11106 2014-01-03  Joseph Myers  <joseph@codesourcery.com>
11108         [BZ #16390]
11109         * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
11110         (CFLAGS-e_atan2l.c): Use -fno-builtin-fabsl.
11112 2014-01-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11114         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: Remove
11115         extra tokens at end of #undef directive.
11116         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: Likewise.
11117         * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: Likewise.
11118         * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c: Likewise.
11120 2014-01-03  Joseph Myers  <joseph@codesourcery.com>
11122         * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
11124         * math/auto-libm-test-in: Mark various tests with
11125         xfail-rounding:ldbl-128ibm.
11126         * math/auto-libm-test-out: Regenerated.
11128 2014-01-02  Joseph Myers  <joseph@codesourcery.com>
11130         [BZ #16386]
11131         * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Adjust
11132         numbers with subnormal high part when calculating exponent.
11134         [BZ #16385]
11135         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Use fabsl not
11136         fabs.
11138         [BZ #16384]
11139         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (ln2): Initialize with
11140         M_LN2l.
11141         (__ieee754_acoshl): Use __log1pl not __log1p.
11143 2013-01-02  Ondřej Bílka  <neleai@seznam.cz>
11145         * malloc/arena.c (malloc_atfork, free_atfork, ptmalloc_lock_all)
11146         (ptmalloc_unlock_all, ptmalloc_unlock_all2, next_env_entry)
11147         (__failing_morecore, ptmalloc_init, dump_heap, new_heap)
11148         (grow_heap, heap_trim, _int_new_arena, get_free_list)
11149         (reused_arena, arena_get2): Convert to GNU style.
11150         * malloc/hooks.c (memalign_hook_ini, __malloc_check_init)
11151         (mem2mem_check, mem2chunk_check, top_check, realloc_check)
11152         (memalign_check, __malloc_set_state): Likewise.
11153         * malloc/mallocbug.c (main): Likewise.
11154         * malloc/malloc.c (__malloc_assert, malloc_init_state)
11155         (free_perturb, do_check_malloced_chunk, do_check_malloc_state)
11156         (sysmalloc, systrim, mremap_chunk, __libc_malloc, __libc_free)
11157         (__libc_realloc, _mid_memalign, _int_malloc, malloc_consolidate)
11158         (_int_realloc, _int_memalign, mtrim, musable, __libc_mallopt)
11159         (__posix_memalign, malloc_info): Likewise.
11160         * malloc/malloc.h: Likewise.
11161         * malloc/mcheck.c (checkhdr, unlink_blk, link_blk, freehook)
11162         (mallochook, memalignhook, reallochook, mabort): Likewise.
11163         * malloc/mcheck.h: Likewise.
11164         * malloc/memusage.c (update_data, me, malloc, realloc, calloc)
11165         (free, mmap, mmap64, mremap, munmap, dest): Likewise.
11166         * malloc/memusagestat.c (main, parse_opt, more_help): Likewise.
11167         * malloc/morecore.c (__default_morecore): Likewise.
11168         * malloc/mtrace.c (tr_break, lock_and_info, mtrace): Likewise.
11169         * malloc/obstack.c (_obstack_begin, _obstack_newchunk)
11170         (_obstack_allocated_p, obstack_free, _obstack_memory_used)
11171         (print_and_abort): Likewise.
11172         * malloc/obstack.h: Likewise.
11173         * malloc/set-freeres.c (__libc_freeres): Likewise.
11174         * malloc/tst-mallocstate.c (main): Likewise.
11175         * malloc/tst-mtrace.c (main): Likewise.
11176         * malloc/tst-realloc.c (do_test): Likewise.
11178 2013-01-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
11180         [BZ #16366]
11181         * nscd/netgroupcache.c (do_notfound): New function.
11182         (addgetnetgrentX): Use it.
11184         [BZ # 16365]
11185         * nscd/netgroupcache.c (addgetnetgrentX): Break if status is
11186         NSS_STATUS_NOTFOUND.
11188 2014-01-01  Joseph Myers  <joseph@codesourcery.com>
11190         * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
11191         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11193 2014-01-01  Allan McRae  <allan@archlinux.org>
11195         * scripts/update-copyrights: Update configure input file suffix.
11197         * NEWS: Update copyright year.
11198         * catgets/gencat.c: Likewise.
11199         * csu/version.c: Likewise.
11200         * debug/catchsegv.sh: Likewise.
11201         * debug/pcprofiledump.c: Likewise.
11202         * debug/xtrace.sh: Likewise.
11203         * elf/ldconfig.c: Likewise.
11204         * elf/ldd.bash.in: Likewise.
11205         * elf/pldd.c: Likewise.
11206         * elf/sotruss.ksh: Likewise.
11207         * elf/sprof.c: Likewise.
11208         * iconv/iconv_prog.c: Likewise.
11209         * iconv/iconvconfig.c: Likewise.
11210         * locale/programs/locale.c: Likewise.
11211         * locale/programs/localedef.c: Likewise.
11212         * login/programs/pt_chown.c: Likewise.
11213         * malloc/memusage.sh: Likewise.
11214         * malloc/memusagestat.c: Likewise.
11215         * malloc/mtrace.pl: Likewise.
11216         * manual/libc.texinfo: Likewise.
11217         * nscd/nscd.c: Likewise.
11218         * nss/getent.c: Likewise.
11219         * nss/makedb.c: Likewise.
11220         * posix/getconf.c: Likewise.
11221         * scripts/test-installation.pl: Likewise.
11223         * All files with FSF copyright notices: Update copyright dates
11224         using scripts/update-copyrights.
11225         * intl/plural.c: Regenerated.
11226         * locale/programs/charmap-kw.h: Likewise.
11227         * locale/programs/locfile-kw.h: Likewise.
11229 2013-12-31  Mike Frysinger  <vapier@gentoo.org>
11231         * sysdeps/unix/sysv/linux/configure: Regenerated.
11232         * sysdeps/unix/sysv/linux/configure.ac: Call AC_CHECK_HEADER on
11233         the linux/fanotify.h header.
11234         * sysdeps/unix/sysv/linux/tst-fanotify.c: Check if
11235         HAVE_LINUX_FANOTIFY_H is defined.
11237 2013-12-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
11239         * benchtests/cos-inputs: New inputs.
11240         * benchtests/sin-inputs: Likewise.
11242         * benchtests/atan-inputs: New inputs. Fix name of multiple
11243         precision fallback inputs.
11245         * benchtests/atanh-inputs: New inputs.
11246         * benchtests/tanh-inputs: Likewise.
11248         * benchtests/acosh-inputs: New inputs.
11249         * benchtests/asinh-inputs: Likewise.
11251         * benchtests/cosh-inputs: New inputs.
11252         * benchtests/sinh-inputs: Likewise.
11254         * benchtests/acos-inputs: Add more inputs.
11255         * benchtests/asin-inputs: Likewise.
11257 2013-12-30  Ville Skytta  <ville.skytta@iki.fi>
11259         [BZ #16375]
11260         * manual/arith.texi: Fix spelling.
11261         * manual/charset.texi: Likewise.
11262         * manual/errno.texi: Likewise.
11263         * manual/filesys.texi: Likewise.
11264         * manual/lang.texi: Likewise.
11265         * manual/llio.texi: Likewise.
11266         * manual/locale.texi: Likewise.
11267         * manual/message.texi: Likewise.
11268         * manual/resource.texi: Likewise.
11269         * manual/search.texi: Likewise.
11270         * manual/setjmp.texi: Likewise.
11271         * manual/stdio.texi: Likewise.
11272         * manual/string.texi: Likewise.
11273         * manual/sysinfo.texi: Likewise.
11274         * manual/time.texi: Likewise.
11276 2013-12-27  Carlos O'Donell  <carlos@redhat.com>
11278         * po/sl.po: New file.
11280 2013-12-27  Mike Frysinger  <vapier@gentoo.org>
11282         * .gitignore: Add core/.gdbinit/.gdb_history.
11284 2013-12-27  Allan McRae  <allan@archlinux.org>
11286         [BZ #16369]
11287         * sysdeps/ieee754/dbl-64/s_sin.c (csloww): Fix variable name.
11288         Reported by Il'ya Malakhov <ilmalakhov@yandex.ru>
11290 2013-12-24  Brooks Moses  <bmoses@google.com>
11292         * string/string.h (__CORRECT_ISO_CPP_STRING_H_PROTO): Define for
11293         all compilers that claim C++98 compliance, not just GCC.
11294         * string/strings.h (__CORRECT_ISO_CPP_STRINGS_H_PROTO):
11295         Likewise.
11297 2013-12-24  Maxim Kuvyrkov  <maxim@kugelworks.com>
11299         * NEWS: Restore accidentally deleted bug-fix entries.
11301 2013-12-24  Maxim Kuvyrkov  <maxim@kugelworks.com>
11302             Ondřej Bílka  <neleai@seznam.cz>
11304         [BZ #15073]
11305         * malloc/malloc.c (_int_free): Perform sanity check only if we
11306         have_lock.
11308 2013-12-23  Ondřej Bílka  <neleai@seznam.cz>
11310         [BZ #12986]
11311         * manual/stdio.texi (String Input Conversions): Clarify that character
11312         classes are not supported.
11314 2013-12-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11316         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
11318 2013-12-22  Joseph Myers  <joseph@codesourcery.com>
11320         [BZ #16337]
11321         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
11322         Calculate results for small negative arguments directly rather
11323         than using reflection formula with special underflow handling.
11325         * sysdeps/mach/hurd/Implies: Change unix/bsd/bsd4.4 to unix/bsd.
11326         * sysdeps/unix/bsd/syscalls.list (chflags): Add entry from
11327         sysdeps/unix/bsd/bsd4.4/syscalls.list.
11328         (fchflags): Likewise.
11329         (revoke): Likewise.
11330         (setlogin): Likewise.
11331         (sigaltstack): Likewise.
11332         (wait4): Likewise.
11333         (sigblock): Remove.
11334         (sigsetmask): Likewise.
11335         (wait3): Likewise.
11336         (waitpid): Likewise.
11337         * sysdeps/unix/bsd/bsd4.4/syscalls.list: Remove file.
11338         * sysdeps/unix/sysv/linux/wait3.c: Update directory of included
11339         file.
11340         * sysdeps/unix/bsd/bsd4.4/Makefile: Move to ...
11341         * sysdeps/unix/bsd/Makefile: ... here.
11342         * sysdeps/unix/bsd/bsd4.4/Versions: Move to ...
11343         * sysdeps/unix/bsd/Versions: ... here.
11344         * sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h: Move to ...
11345         * sysdeps/unix/bsd/bits/sockaddr.h: ... here.
11346         * sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c: Move to ...
11347         * sysdeps/unix/bsd/cmsg_nxthdr.c: ... here.
11348         * sysdeps/unix/bsd/bsd4.4/sigblock.c: Move to ...
11349         * sysdeps/unix/bsd/sigblock.c: ... here.
11350         * sysdeps/unix/bsd/bsd4.4/sigsetmask.c: Move to ...
11351         * sysdeps/unix/bsd/sigsetmask.c: ... here.
11352         * sysdeps/unix/bsd/bsd4.4/sigvec.c: Move to ...
11353         * sysdeps/unix/bsd/sigvec.c: ... here.
11354         * sysdeps/unix/bsd/bsd4.4/tcdrain.c: Move to ...
11355         * sysdeps/unix/bsd/tcdrain.c: ... here.
11356         * sysdeps/unix/bsd/bsd4.4/tcgetattr.c: Move to ...
11357         * sysdeps/unix/bsd/tcgetattr.c: ... here.
11358         * sysdeps/unix/bsd/bsd4.4/tcsetattr.c: Move to ...
11359         * sysdeps/unix/bsd/tcsetattr.c: ... here.
11360         * sysdeps/unix/bsd/bsd4.4/wait.c: Move to ...
11361         * sysdeps/unix/bsd/wait.c: ... here.
11362         * sysdeps/unix/bsd/bsd4.4/wait3.c: Move to ...
11363         * sysdeps/unix/bsd/wait3.c: ... here.
11364         * sysdeps/unix/bsd/bsd4.4/waitpid.c: Move to ...
11365         * sysdeps/unix/bsd/waitpid.c: ... here.
11367 2013-12-21  Joseph Myers  <joseph@codesourcery.com>
11369         [BZ #16356]
11370         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Also set
11371         round-to-nearest for [!USE_AS_EXPM1L].
11372         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Likewise.
11373         * math/auto-libm-test-in: Do not expect cosh tests to fail.  Add
11374         more tests of exp and exp10.  Expect some exp10 tests to miss
11375         exceptions or fail in directed rounding modes.
11376         * math/auto-libm-test-out: Regenerated.
11377         * math/libm-test.inc (exp10_tonearest_test_data): New array.
11378         (exp10_test_tonearest): New function.
11379         (exp10_towardzero_test_data): New array.
11380         (exp10_test_towardzero): New function.
11381         (exp10_downward_test_data): New array.
11382         (exp10_test_downward): New function.
11383         (exp10_upward_test_data): New array.
11384         (exp10_test_upward): New function.
11385         (main): Call the new functions.
11386         * sysdeps/i386/fpu/libm-test-ulps: Update.
11387         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11389 2013-12-20  Joseph Myers  <joseph@codesourcery.com>
11391         * math/auto-libm-test-in: Add more tests of acos, acosh, asin,
11392         asinh, atan, atan2, atanh, cbrt, cos and cosh.
11393         * math/auto-libm-test-out: Regenerated.
11394         * math/libm-test.inc (acosh_test_data): Add more tests.
11395         (atanh_test_data): Likewise.
11396         (ceil_test_data): Likewise.
11397         (copysign_test_data): Likewise.
11398         * sysdeps/i386/fpu/libm-test-ulps: Update.
11399         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11401         * timezone/checktab.awk: Update from tzcode 2013i.
11402         * timezone/private.h: Likewise.
11403         * timezone/scheck.c: Likewise.
11404         * timezone/tzfile.h: Likewise.
11405         * timezone/tzselect.ksh: Likewise.
11406         * timezone/zdump.c: Likewise.
11407         * timezone/zic.c: Likewise.
11409         * math/auto-libm-test-in: Add tests of cpow.
11410         * math/auto-libm-test-out: Regenerated.
11411         * math/libm-test.inc (cpow_test_data): Use AUTO_TESTS_cc_c.
11412         * math/gen-auto-libm-tests.c (func_calc_method): Add value
11413         mpc_cc_c.
11414         (func_calc_desc): Add mpc_cc_c union field.
11415         (test_functions): Add cpow.
11416         (special_fill_2pi): New function.
11417         (special_real_inputs): Add 2pi.
11418         (calc_generic_results): Handle mpc_cc_c.
11419         * sysdeps/i386/fpu/libm-test-ulps: Update.
11420         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11422         * math/auto-libm-test-in: Add tests of ccos, ccosh, cexp, clog,
11423         csqrt, ctan and ctanh.
11424         * math/auto-libm-test-out: Regenerated.
11425         * math/libm-test.inc (TEST_COND_x86_64): New macro.
11426         (TEST_COND_x86): Likewise.
11427         (ccos_test_data): Use AUTO_TESTS_c_c.
11428         (ccosh_test_data): Likewise.
11429         (cexp_test_data): Likewise.
11430         (clog_test_data): Likewise.
11431         (csqrt_test_data): Likewise.
11432         (ctan_test_data): Likewise.
11433         (ctan_tonearest_test_data): Likewise.
11434         (ctan_towardzero_test_data): Likewise.
11435         (ctan_downward_test_data): Likewise.
11436         (ctan_upward_test_data): Likewise.
11437         (ctanh_test_data): Likewise.
11438         (ctanh_tonearest_test_data): Likewise.
11439         (ctanh_towardzero_test_data): Likewise.
11440         (ctanh_downward_test_data): Likewise.
11441         (ctanh_upward_test_data): Likewise.
11442         * math/gen-auto-libm-tests.c (func_calc_method): Add value
11443         mpc_c_c.
11444         (func_calc_desc): Add mpc_c_c union field.
11445         (FUNC_mpc_c_c): New macro.
11446         (test_functions): Add cacos, cacosh, casin, casinh, catan, catanh,
11447         ccos, ccosh, cexp, clog, clog10, csin, csinh, csqrt, ctan and
11448         ctanh.
11449         (special_fill_min_subnorm_p120): New function.
11450         (special_real_inputs): Add min_subnorm_p120.
11451         (calc_generic_results): Handle mpc_c_c.
11452         * sysdeps/i386/fpu/libm-test-ulps: Update.
11453         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11455 2013-12-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
11457         * sysdeps/ieee754/dbl-64/s_sin.c (do_cos, do_cos_slow, do_sin)
11458         (do_sin_slow): New functions.
11459         (__sin, __cos, slow1, slow2, sloww1, sloww2, bsloww1, bsloww2)
11460         (cslow2, csloww1, csloww2): Use the new functions.
11462         * sysdeps/ieee754/dbl-64/s_sin.c (sloww1): Add new argument M.
11463         Use M to change sign of result instead of X.  Assume X is
11464         positive.
11465         (csloww1): Likewise.
11466         (__sin): Adjust.
11467         (__cos): Adjust.
11469         * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): Remove
11470         arguments A and DA.
11471         (__sin): Adjust.
11472         (__cos): Likewise.
11474         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use DA directly.
11475         (__cos): Likewise.
11476         (sloww1): Don't adjust sign of DX.
11477         (csloww1): Likewise.
11478         (sloww2): Use X directly and don't adjust sign of DX.
11479         (csloww2): Likewise.
11481 2013-12-19  Joseph Myers  <joseph@codesourcery.com>
11483         * math/auto-libm-test-in: Add tests of cabs and carg.
11484         * math/auto-libm-test-out: Regenerated.
11485         * math/libm-test.inc (cabs_test_data): Use AUTO_TESTS_c_f.
11486         (carg_test_data): Likewise.
11487         * math/gen-auto-libm-tests.c (func_calc_method): Add value
11488         mpc_c_f.
11489         (func_calc_desc): Add mpc_c_f union field.
11490         (test_functions): Add cabs and carg.
11491         (calc_generic_results): Handle mpc_c_f.
11493         * sysdeps/powerpc/powerpc32/libgcc-compat.S
11494         [_SOFT_FLOAT || __NO_FPRS__] (__fixdfdi_v_glibc20): Do not define
11495         as a macro and a compat symbol.
11496         [_SOFT_FLOAT || __NO_FPRS__] (__fixsfdi_v_glibc20): Likewise.
11497         [_SOFT_FLOAT || __NO_FPRS__] (__fixunsdfdi_v_glibc20): Likewise.
11498         [_SOFT_FLOAT || __NO_FPRS__] (__fixunssfdi_v_glibc20): Likewise.
11499         [_SOFT_FLOAT || __NO_FPRS__] (__floatdidf_v_glibc20): Likewise.
11500         [_SOFT_FLOAT || __NO_FPRS__] (__floaddisf_v_glibc20): Likewise.
11501         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixdfdi): Do
11502         not use .hidden.
11503         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixsfdi):
11504         Likewise.
11505         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixunsdfdi):
11506         Likewise.
11507         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixunssfdi):
11508         Likewise.
11509         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__floaddidf):
11510         Likewise.
11511         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__floaddisf):
11512         Likewise.
11513         * sysdeps/powerpc/nofpu/Versions (libc): Remove __fixdfdi,
11514         __fixsfdi, __fixunsdfdi, __fixunssfdi, __floatdidf and __floatdisf
11515         from GLIBC_2.3.2.
11517 2013-12-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11519         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
11521 2013-12-19  Joseph Myers  <joseph@codesourcery.com>
11523         * manual/texinfo.tex: Update to version 2013-11-26.10 with
11524         trailing whitespace removed.
11525         * scripts/config.guess: Update to version 2013-11-29.
11526         * scripts/config.sub: Update to version 2013-10-01.
11528         * math/auto-libm-test-in: Add tests of sincos.
11529         * math/auto-libm-test-out: Regenerated.
11530         * math/libm-test.inc (sincos_test_data): Use AUTO_TESTS_fFF_11.
11531         * math/gen-auto-libm-tests.c (func_calc_method): Add value
11532         mpfr_f_11.
11533         (func_calc_desc): Add mpfr_f_11 union field.
11534         (test_functions): Add sincos.
11535         (calc_generic_results): Handle mpfr_f_11.
11536         * sysdeps/i386/fpu/libm-test-ulps: Update.
11537         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11539 2013-12-19  Andreas Schwab  <schwab@suse.de>
11541         * sysdeps/powerpc/powerpc64/power7/memchr.S: Fix argument of
11542         CALL_MCOUNT.
11543         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.
11544         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S
11545         [USE_IN_EXTENDED_LOCALE_MODEL]: Likewise.
11547 2013-12-19  Joseph Myers  <joseph@codesourcery.com>
11549         * math/gen-libm-test.pl (%beautify): Remove M_* constants.
11550         * sysdeps/i386/fpu/libm-test-ulps: Update.
11551         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11553         [BZ #16293]
11554         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]: Set
11555         round-to-nearest mode when using frndint.
11556         * sysdeps/i386/fpu/s_expm1.S (__expm1): Likewise.
11557         * sysdeps/i386/fpu/s_expm1f.S (__expm1f): Likewise.
11558         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]:
11559         Likewise.
11560         * math/auto-libm-test-in: Add more tests of expm1.  Do not expect
11561         sinh test to fail.
11562         * math/auto-libm-test-out: Regenerated.
11563         * math/libm-test.inc (TEST_COND_x86_64): Remove macro.
11564         (TEST_COND_x86): Likewise.
11565         (expm1_tonearest_test_data): New array.
11566         (expm1_test_tonearest): New function.
11567         (expm1_towardzero_test_data): New array.
11568         (expm1_test_towardzero): New function.
11569         (expm1_downward_test_data): New array.
11570         (expm1_test_downward): New function.
11571         (expm1_upward_test_data): New array.
11572         (expm1_test_upward): New function.
11573         (main): Run the new test functions.
11574         * sysdeps/i386/fpu/libm-test-ulps: Update.
11575         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11577         * include/features.h: Update comment documenting feature test
11578         macros.  Mention _DEFAULT_SOURCE in comment.
11579         [_GNU_SOURCE] (_DEFAULT_SOURCE): Undefine and redefine.
11580         [_DEFAULT_SOURCE]: Undefine and redefine _DEFAULT_SOURCE,
11581         _BSD_SOURCE and _SVID_SOURCE.
11582         [!__STRICT_ANSI__ && !_ISOC99_SOURCE && !_POSIX_SOURCE &&
11583         !_POSIX_C_SOURCE && !_XOPEN_SOURCE && !_BSD_SOURCE &&
11584         !_SVID_SOURCE]: Likewise.
11585         [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
11586         (__USE_POSIX_IMPLICITLY): Define.
11587         [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
11588         (_POSIX_SOURCE): Undefine and redefine.
11589         [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
11590         (_POSIX_C_SOURCE): Likewise.
11591         * manual/creature.texi (_DEFAULT_SOURCE): Document.
11592         (Feature Test Macros): Update documentation of default features.
11594 2013-12-19  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
11596         * benchtests/Makefile: Add bench-strtok.
11597         * benchtests/bench-strtok.c: New file: strtok benchtest.
11599 2013-12-19  Allan McRae  <allan@archlinux.org>
11601         * manual/install.texi: Suppress menu for plain text output.
11602         * INSTALL: Regenerated.
11604 2013-12-18  Brooks Moses  <bmoses@google.com>
11606         [BZ #15846]
11607         * misc/getauxval.c: Include errno.h.
11608         (__getauxval): Set errno to ENOENT if the requested type is not
11609         found.
11610         * misc/sys/auxv.h (getauxval): Document that it may set errno;
11611         don't declare with __attribute_const__.
11612         * elf/tst-auxv.c: Add tests for errno and type-not-found case.
11613         * manual/startup.texi: Document that getauxval sets errno.
11615 2013-12-18  Joseph Myers  <joseph@codesourcery.com>
11617         * math/auto-libm-test-in: Add tests of jn and yn.
11618         * math/auto-libm-test-out: Regenerated.
11619         * math/libm-test.inc (jn_test_data): Use AUTO_TESTS_if_f.
11620         (yn_test_data): Likewise.
11621         * math/gen-auto-libm-tests.c (func_calc_method): Add value
11622         mpfr_if_f.
11623         (func_calc_desc): Add mpfr_if_f union field.
11624         (FUNC_mpfr_if_f): New macro.
11625         (test_functions): Add jn and yn.
11626         (calc_generic_results): Assert type of second input for
11627         mpfr_ff_f.  Handle mpfr_if_f.
11628         (output_for_one_input_case): Disable all checking for arguments
11629         fitting floating-point types in case of an integer argument.
11630         * sysdeps/i386/fpu/libm-test-ulps: Update.
11631         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11633         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
11634         Don't expect fegetround reference in libm.so.
11636 2013-12-17  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
11638         * sysdeps/ieee754/dbl-64/Makefile (CFLAGS-e_sqrt.c): Add
11639         $(config-cflags-nofma).
11641 2013-12-18  Joseph Myers  <joseph@codesourcery.com>
11643         * math/auto-libm-test-in: Mark some hypot tests no-test-inline.
11644         * math/auto-libm-test-out: Regenerated.
11646         [BZ #16338]
11647         * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Use __frexpl
11648         to determine exponent and adjust argument to have exponent of -1.
11649         * math/auto-libm-test-in: Add more tests of log, log10, log1p and
11650         log2.
11651         * math/auto-libm-test-out: Regenerated.
11652         * sysdeps/i386/fpu/libm-test-ulps: Update.
11653         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11655 2013-12-18  Ondřej Bílka  <neleai@seznam.cz>
11657         * manual/probes.texi: Remove cases when per-thread arenas are
11658         disabled.
11660 2013-12-18  Andreas Schwab  <schwab@suse.de>
11662         * sysdeps/i386/i686/multiarch/strstr.c: Remove.
11663         * sysdeps/i386/i686/multiarch/strstr-c.c: Remove.
11664         * sysdeps/i386/i686/multiarch/strcasestr.c: Remove.
11665         * sysdeps/i386/i686/multiarch/strcasestr-nonascii.c: Remove.
11666         * sysdeps/i386/i686/multiarch/Makefile: Update.
11667         * sysdeps/i386/i686/multiarch/ifunc-impl-list.c: Update.
11669 2013-12-17  Joseph Myers  <joseph@codesourcery.com>
11671         * sysdeps/unix/bsd/bsd4.4/bits/errno.h: Remove file.
11672         * sysdeps/unix/bsd/bsd4.4/bits/ioctls.h: Likewise.
11674 2013-12-17  Paul Eggert  <eggert@cs.ucla.edu>
11676         [BZ #15968]
11677         Support TZ transition times < 00:00:00.
11678         This is needed for version-3 tz-format files; it supports time
11679         stamps past 2037 for America/Godthab (the only entry in the tz
11680         database for which this change is relevant).
11681         * manual/time.texi (TZ Variable): Document transition times
11682         from -167:59:59 through -00:00:01.
11683         * time/tzset.c (tz_rule): Time of day is now signed.
11684         (__tzset_parse_tz): Parse negative time of day.
11686         Document TZ transition times >= 25:00:00.
11687         * manual/time.texi (TZ Variable): Document transition times from
11688         25:00:00 through 167:59:59.  These are already supported, and this
11689         support will help with version-3 tz-format files.
11691         * manual/time.texi (TZ Variable): Modernize North America example
11692         to reflect current (i.e., 2007-and-later) daylight saving rules.
11694         * manual/time.texi (TZ Variable): POSIX.1 hour can be 24.
11696 2013-12-17  Joseph Myers  <joseph@codesourcery.com>
11698         * sysdeps/unix/bsd/bits/posix_opt.h: Remove file.
11699         * sysdeps/unix/bsd/bits/stat.h: Likewise.
11700         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/environments.h: Likewise.
11701         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h: Likewise.
11702         * sysdeps/unix/bsd/bsd4.4/freebsd/sys/sysmacros.h: Likewise.
11703         * sysdeps/unix/bsd/bsdstat.h: Likewise.
11704         * sysdeps/unix/bsd/clock.c: Likewise.
11705         * sysdeps/unix/bsd/i386/vfork.S: Likewise.
11706         * sysdeps/unix/bsd/i386/wait3.S: Likewise.
11707         * sysdeps/unix/bsd/init-posix.c: Likewise.
11708         * sysdeps/unix/bsd/poll.c: Likewise.
11709         * sysdeps/unix/bsd/ptsname.c: Likewise.
11710         * sysdeps/unix/bsd/seekdir.c: Likewise.
11711         * sysdeps/unix/bsd/setegid.c: Likewise.
11712         * sysdeps/unix/bsd/seteuid.c: Likewise.
11713         * sysdeps/unix/bsd/setgid.c: Likewise.
11714         * sysdeps/unix/bsd/setrgid.c: Likewise.
11715         * sysdeps/unix/bsd/setruid.c: Likewise.
11716         * sysdeps/unix/bsd/setsid.c: Likewise.
11717         * sysdeps/unix/bsd/setuid.c: Likewise.
11718         * sysdeps/unix/bsd/sigaction.c: Likewise.
11719         * sysdeps/unix/bsd/sigprocmask.c: Likewise.
11720         * sysdeps/unix/bsd/sigsuspend.c: Likewise.
11721         * sysdeps/unix/bsd/sys/reboot.h: Likewise.
11722         * sysdeps/unix/bsd/telldir.c: Likewise.
11723         * sysdeps/unix/bsd/times.c: Likewise.
11724         * sysdeps/unix/bsd/usleep.c: Likewise.
11726         * misc/Makefile (install-lib): Remove libbsd-compat.a.
11727         ($(objpfx)libbsd-compat.a): Remove rule.
11729         * include/features.h (__FAVOR_BSD): Do not define.
11730         * manual/creature.texi (_BSD_SOURCE): Do not document as enabling
11731         features conflicting with POSIX.
11732         (_GNU_SOURCE): Do not mention interaction with _BSD_SOURCE.
11733         (_BSD_SOURCE): Remove description of not being a subset of other
11734         feature test macros.
11735         * manual/job.texi (getpgrp): Do not document BSD version.
11736         (getpgid): Do not document by reference to BSD getpgrp.
11737         * posix/unistd.h [__FAVOR_BSD]: Remove conditional code.
11738         * setjmp/setjmp.h [__FAVOR_BSD]: Likewise.
11739         * signal/signal.h [__FAVOR_BSD]: Likewise.
11740         * sysdeps/gnu/netinet/tcp.h (struct tcphdr): Use anonymous unions
11741         instead of making contents conditional on [__FAVOR_BSD].
11742         * sysdeps/gnu/netinet/udp.h (struct udphdr): Likewise.
11744 2013-12-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11746         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
11748 2013-12-17  Joseph Myers  <joseph@codesourcery.com>
11750         [BZ #16314]
11751         * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Adjust up
11752         values below 2**-450, not 2**-500.
11753         * math/auto-libm-test-in: Don't allow spurious underflow from
11754         hypot.
11755         * math/auto-libm-test-out: Regenerated.
11757         [BZ #16316]
11758         [BZ #16330]
11759         * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Update
11760         values of ha and hb and sort them after adjusting subnormal
11761         arguments.
11762         * sysdeps/ieee754/ldbl-128/e_hypotl.c (__ieee754_hypotl):
11763         Likewise.
11764         * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Update
11765         values of ea and eb and sort them after adjusting subnormal
11766         arguments.
11767         * math/auto-libm-test-in: Do not expect some hypot tests of
11768         subnormals to fail.  Add more hypot tests.
11769         * math/auto-libm-test-out: Regenerated.
11771 2013-12-16  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
11773         [BZ #13304]
11774         * sysdeps/sh/s_fma.c: New file.
11775         * sysdeps/sh/s_fmaf.c: New file.
11776         * sysdeps/sh/soft-fp/sfp-machine.h: New file.  Based on arm
11777         version.
11778         * sysdeps/sh/Implies: Add sh/soft-fp.
11780 2013-12-16  Roland McGrath  <roland@hack.frob.com>
11782         * elf/dl-error.c (struct catch): Add new member `errcode'.  Add a
11783         level of indirection to members `objname', `errstring', `malloced'.
11784         (_dl_signal_error): Store through pointers in *LCATCH rather modifying
11785         *LCATCH itself.  Set *LCATCH->errcode to ERRCODE rather than passing
11786         it as the __longjmp argument (just pass 1 instead).
11787         (_dl_catch_error): Initialize C with argument pointers and address of
11788         volatile local ERRCODE rather than copying values out of C at return.
11790 2013-12-16  Joseph Myers  <joseph@codesourcery.com>
11792         * math/auto-libm-test-in: Add tests of atan2, hypot and pow.
11793         * math/auto-libm-test-out: Regenerated.
11794         * math/libm-test.inc (atan2_test_data): Use AUTO_TESTS_ff_f.
11795         (hypot_test_data): Likewise.
11796         (pow_test_data): Likewise.
11797         (pow_tonearest_test_data): Likewise.
11798         * math/gen-auto-libm-tests.c (func_calc_method): Add value
11799         mpfr_ff_f.
11800         (func_calc_desc): Add mpfr_ff_f union field.
11801         (FUNC_mpfr_ff_f): New macro.
11802         (test_functions): Add atan2, hypot and pow.
11803         (special_fill_min): New function.
11804         (special_fill_minus_min): Likewise.
11805         (special_fill_min_subnorm): Likewise.
11806         (special_fill_minus_min_subnorm): Likewise.
11807         (special_real_inputs): Add min, -min, min_subnorm and
11808         -min_subnorm.
11809         (calc_generic_results): Handle mpfr_ff_f.
11810         * sysdeps/i386/fpu/libm-test-ulps: Update.
11811         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11813 2013-12-16  Will Newton  <will.newton@linaro.org>
11815         * manual/memory.texi (Malloc Examples): Mention aligned_alloc.
11816         (Aligned Memory Blocks): Add documentation for aligned_alloc
11817         and suggest it as an alternative to posix_memalign.
11818         (Hooks for Malloc): Document __memalign_hook is also called
11819         for aligned_alloc.  (Summary of Malloc): Add summary for
11820         aligned alloc.  Document __memalign_hook is also called
11821         for aligned_alloc.
11823 2013-12-16  Will Newton  <will.newton@linaro.org>
11825         * manual/memory.texi (Malloc Examples): Clarify default
11826         alignment documentation.  Suggest posix_memalign rather
11827         than memalign or valloc.
11828         (Aligned Memory Blocks): Remove suggestion to use memalign
11829         or valloc.  Remove obsolete comment about BSD.
11830         Document memalign errno values and mark the function obsolete.
11831         Document posix_memalign returned error codes.  Mark valloc
11832         as obsolete.  (Hooks for Malloc): __memalign_hook is also
11833         called for posix_memalign and valloc.
11834         (Summary of Malloc): Add posix_memalign to function summary.
11835         __memalign_hook is also called for posix_memalign and valloc.
11837 2013-12-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
11839         * sysdeps/ieee754/dbl-64/s_sin.c (TAYLOR_SINCOS): Rename to
11840         TAYLOR_SIN.
11841         (__sin): Adjust.
11842         (__cos): Likewise.
11843         (sloww): Use mynumber union.  Expand ternary operator into
11844         if-else statements.
11845         (cslow): use mynumber union.
11847 2013-12-16  Allan McRae  <allan@archlinux.org>
11849         * configure.ac: Set AUTOCONF when maintainer-mode is not used.
11850         * configure: Regenerated.
11852         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update file name.
11854         [BZ #14120]
11855         * configure.ac: Added --enable-maintainer-mode. Check for
11856         autoconf when enabled.
11857         * configure: Regenerated.
11859         * nscd/nscd.service: New file.
11860         * nscd/nscd.tmpfiles: New file.
11862 2013-12-14  Ondřej Bílka  <neleai@seznam.cz>
11864         [BZ #12100]
11865         * sysdeps/x86_64/multiarch/strstr-sse2-unaligned.S: New file
11866         * sysdeps/x86_64/multiarch/strstr-c.c: Moved to ...
11867         * sysdeps/x86_64/multiarch/strstr.c: ... here.
11868         (strstr): Add __strstr_sse2_unaligned ifunc.
11869         * sysdeps/x86_64/multiarch/strcasestr-c.c: Moved to ...
11870         * sysdeps/x86_64/multiarch/strcasestr.c ... here.
11871         (strcasestr): Remove __strcasestr_sse42 ifunc.
11872         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: Remove.
11873         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update.
11874         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Update.
11876 2013-12-14  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
11878         * sysdeps/sh/sh4/fpu/bits/fenv.h: Move to ...
11879         * sysdeps/sh/bits/fenv.h: ... here.
11880         * sysdeps/sh/sh4/fpu/bits: Remove directory.
11882 2013-12-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11884         * NEWS: Mention ppc64 STT_GNU_IFUNC support.
11886         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add hypot and
11887         hypotf multiarch implementations.
11888         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-power7.c: New file.
11889         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-ppc64.c: New file.
11890         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot.c: New file:
11891         multiarch hypot for PPC64.
11892         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-power7.c: New file.
11893         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-ppc64.c: New file.
11894         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c : New file:
11895         multiarch hypotf for PPC64.
11897         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add modf and
11898         modff multiarch implementations.
11899         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c: New file.
11900         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c: New file.
11901         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: New file:
11902         multiarch modf for PPC64.
11903         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c: New file.
11904         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c: New file.
11905         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c : New file:
11906         multiarch modff for PPC64.
11908         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add logb, logbf,
11909         and logl multiarch implementations.
11910         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-power7.c: New file.
11911         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-ppc64.c: New file.
11912         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c: New file:
11913         multiarch logb for PPC64.
11914         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-power7.c: New file.
11915         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-ppc64.c: New file.
11916         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf.c: New file:
11917         multiarch logb for PPC64.
11918         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-power7.c: New file.
11919         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-ppc64.c: New file.
11920         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl.c: New file:
11921         multiarch logb for PPC64.
11923         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isinf and
11924         isinff multiarch implementation.
11925         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S: New
11926         file.
11927         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.S: New file.
11928         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c: New file:
11929         multiarch isinf for PPC64.
11930         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c: New
11931         file.
11932         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c: New file:
11933         multiarch isinff for PPC64.
11935         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add finite and
11936         finitef multiarch implementation.
11937         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power7.S: New
11938         file.
11939         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-ppc64.S: New file.
11940         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c: New file:
11941         multiarch finite for PPC64.
11942         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef-ppc64.c: New
11943         file.
11944         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c: New file:
11945         multiarch finitef for PPC64.
11947         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llrint and
11948         lrint multiarch implementation.
11949         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power6x.S: New
11950         file.
11951         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-ppc64.S: New file.
11952         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c: New file:
11953         multiarch llrint for PPC64.
11954         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_lrint.c: New file:
11955         multiarch lrint for PPC64.
11957         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add copysign/
11958         copysignf multiarch implementation.
11959         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-power6.S: New
11960         file.
11961         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-ppc64.S: New
11962         file.
11963         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: New file:
11964         multiarch copysign for PPC64.
11965         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c: New file:
11966         multiarch copysignf for PPC64.
11968         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add trunc/truncf
11969         multiarch implementation.
11970         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-power5+.S: New
11971         file.
11972         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-ppc64.S: New
11973         file.
11974         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-power5+.S: New
11975         file.
11976         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-ppc64.S: New
11977         file.
11978         multiarch llround for PPC64.
11979         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c: New file:
11980         multiarch trunc for PPC64.
11981         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c: New file:
11982         multiarch truncf for PPC64.
11984         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add round/roundf
11985         multiarch implementation.
11986         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-power5+.S: New
11987         file.
11988         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-ppc64.S: New
11989         file.
11990         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-power5+.S: New
11991         file.
11992         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-ppc64.S: New
11993         file.
11994         multiarch llround for PPC64.
11995         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c: New file:
11996         multiarch round for PPC64.
11997         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c: New file:
11998         multiarch roundf for PPC64.
12000         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add floor/floorf
12001         multiarch implementation.
12002         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-power5+.S: New
12003         file.
12004         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-ppc64.S: New
12005         file.
12006         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-power5+.S: New
12007         file.
12008         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-ppc64.S: New
12009         file.
12010         multiarch llround for PPC64.
12011         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c: New file:
12012         multiarch floor for PPC64.
12013         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c: New file:
12014         multiarch floorf for PPC64.
12016         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add ceil/ceilf
12017         multiarch implementation.
12018         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-power5+.S: New
12019         file.
12020         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-ppc64.S: New
12021         file.
12022         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-power5+.S: New
12023         file.
12024         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-ppc64.S: New
12025         file.
12026         multiarch llround for PPC64.
12027         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c: New file:
12028         multiarch ceil for PPC64.
12029         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c: New file:
12030         multiarch ceilf for PPC64.
12032         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llround
12033         multiarch implementation.
12034         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S: New
12035         file.
12036         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S: New
12037         file.
12038         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S: New
12039         file.
12040         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c: New file:
12041         multiarch llround for PPC64.
12042         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_lround.c: New file:
12043         multiarch lround for PPC64.
12045         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isnan
12046         multiarch implementation.
12047         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power5.S: New file.
12048         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6.S: New file.
12049         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6x.S: New
12050         file.
12051         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power7.S: New file.
12052         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S: New file.
12053         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c: New file:
12054         multiarch isnan for PPC64.
12055         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c: New file:
12056         multiarch isnanf for PPC64.
12058         * sysdeps/powerpc/powerpc64/power5+/fpu/multiarch/Implies: New file.
12059         * sysdeps/powerpc/powerpc64/power5/fpu/multiarch/Implies: New file.
12060         * sysdeps/powerpc/powerpc64/power6/fpu/multiarch/Implies: New file.
12061         * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: New file.
12062         * sysdeps/powerpc/powerpc64/power7/fpu/multiarch/Implies: New file
12063         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/Implies: Remove.
12065         * sysdeps/powerpc/fpu/w_sqrt.c: Remove file
12066         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
12067         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
12068         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
12070         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add stpcpy
12071         multiarch implementations.
12072         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12073         (__libc_ifunc_impl_list): Likewise.
12074         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-power7.c: New file.
12075         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.c: New file.
12076         * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c : New file:
12077         multiarch stpcpy for PPC64.
12079         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcpy
12080         multiarch implementations.
12081         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12082         (__libc_ifunc_impl_list): Likewise.
12083         * sysdeps/powerpc/powerpc64/multiarch/strcpy-power7.c: New file.
12084         * sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.c: New file.
12085         * sysdeps/powerpc/powerpc64/multiarch/strcpy.c : New file:
12086         multiarch strcpy for PPC64.
12088         * string/wordcopy.c (_wordcopy_fwd_aligned): Add define to
12089         redefine function name.
12090         (_wordcopy_fwd_dest_aligned): Likewise.
12091         (_wordcopy_bwd_aligned): Likewise.
12092         (_wordcopy_bwd_dest_aligned): Likewise.
12093         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wordcopy
12094         multiarch implementations.
12095         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12096         (__libc_ifunc_impl_list): Likewise.
12097         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power6.c: New file.
12098         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power7.c: New file.
12099         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-ppc64.c: New file.
12100         * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c : New file:
12101         multiarch wcscpy for PPC64.
12103         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcscpy
12104         multiarch implementations.
12105         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12106         (__libc_ifunc_impl_list): Likewise.
12107         * sysdeps/powerpc/powerpc64/multiarch/wcscpy-power6.c: New file.
12108         * sysdeps/powerpc/powerpc64/multiarch/wcscpy-power7.c: New file.
12109         * sysdeps/powerpc/powerpc64/multiarch/wcscpy-ppc64.c: New file.
12110         * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c : New file:
12111         multiarch wcscpy for PPC64.
12113         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcsrchr
12114         multiarch implementations.
12115         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12116         (__libc_ifunc_impl_list): Likewise.
12117         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power6.c: New file.
12118         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power7.c: New file.
12119         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-ppc64.c: New file.
12120         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c : New file:
12121         multiarch wcsrchr for PPC64.
12123         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcschr
12124         multiarch implementations.
12125         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12126         (__libc_ifunc_impl_list): Likewise.
12127         * sysdeps/powerpc/powerpc64/multiarch/wcschr-power6.c: New file.
12128         * sysdeps/powerpc/powerpc64/multiarch/wcschr-power7.c: New file.
12129         * sysdeps/powerpc/powerpc64/multiarch/wcschr-ppc64.c: New file.
12130         * sysdeps/powerpc/powerpc64/multiarch/wcschr.c : New file:
12131         multiarch wcschr for PPC64.
12133         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strchrnul
12134         multiarch implementations.
12135         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12136         (__libc_ifunc_impl_list): Likewise.
12137         * sysdeps/powerpc/powerpc64/multiarch/strchrnul-power7.S: New file.
12138         * sysdeps/powerpc/powerpc64/multiarch/strchrnul-ppc64.c: New file.
12139         * sysdeps/powerpc/powerpc64/multiarch/strchrnul.c: New file:
12140         multiarch strchrnul for PPC64.
12142         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strchr multiarch
12143         implementations.
12144         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12145         (__libc_ifunc_impl_list): Likewise.
12146         * sysdeps/powerpc/powerpc64/multiarch/rtld-strchr.S: New file.
12147         * sysdeps/powerpc/powerpc64/multiarch/strchr-power7.S: New file.
12148         * sysdeps/powerpc/powerpc64/multiarch/strchr-ppc64.S: New file.
12149         * sysdeps/powerpc/powerpc64/multiarch/strchr.c: New file: multiarch
12150         strchr for PPC64.
12152         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncmp multiarch
12153         implementations.
12154         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12155         (__libc_ifunc_impl_list): Likewise.
12156         * sysdeps/powerpc/powerpc64/multiarch/strncmp-power4.S: New file.
12157         * sysdeps/powerpc/powerpc64/multiarch/strncmp-power7.S: New file.
12158         * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: New file.
12159         * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: New file: multiarch
12160         strncmp for PPC64.
12162         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncasecmp
12163         multiarch implementations.
12164         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12165         (__libc_ifunc_impl_list): Likewise.
12166         * sysdeps/powerpc/powerpc64/multiarch/strncase-power7.c: New file.
12167         * sysdeps/powerpc/powerpc64/multiarch/strncase.c: New file: multiarch
12168         strncasecmp for PPC64.
12169         * sysdeps/powerpc/powerpc64/multiarch/strncase_l-power7.c: New file.
12170         * sysdeps/powerpc/powerpc64/multiarch/strncase_l.c: New file:
12171         multiarch strncasecmp_l for PPC64.
12173         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcasecmp
12174         multiarch implementations.
12175         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
12176         (__libc_ifunc_impl_list): Likewise.
12177         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: New file.
12178         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c: New file:
12179         multiarch strcasecmp for PPC64.
12180         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: New
12181         file.
12182         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c: new file:
12183         multiarch strcasecmp_l for PPC64.
12185         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strnlen multiarch
12186         implementations.
12187         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12188         (__libc_ifunc_impl_list): Likewise.
12189         * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: New file.
12190         * sysdeps/powerpc/powerpc64/multiarch/strnlen-ppc64.c: New file.
12191         * sysdeps/powerpc/powerpc64/multiarch/strnlen.c: New file: multiarch
12192         strnlen for PPC64.
12194         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strlen multiarch
12195         implementations.
12196         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12197         (__libc_ifunc_impl_list): Likewise.
12198         * sysdeps/powerpc/powerpc64/multiarch/strlen-power7.S: New file.
12199         * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: New file.
12200         * sysdeps/powerpc/powerpc64/multiarch/strlen.c: New file: multiarch
12201         strlen for PPC64.
12203         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add rawmemch multiarch
12204         implementations.
12205         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12206         (__libc_ifunc_impl_list): Likewise.
12207         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S: New file.
12208         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c: New file.
12209         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c: New file: multiarch
12210         rawmemrchr for PPC64.
12212         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memrchr multiarch
12213         implementation.
12214         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12215         (__libc_ifunc_impl_list): Likewise.
12216         * sysdeps/powerpc/powerpc64/multiarch/memrchr-power7.S: New file.
12217         * sysdeps/powerpc/powerpc64/multiarch/memrchr-ppc64.c: New file.
12218         * sysdeps/powerpc/powerpc64/multiarch/memrchr.c: New file: multiarch
12219         memrchr for PPC64.
12221         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memchr multiarch
12222         implementation.
12223         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12224         (__libc_ifunc_impl_list): Likewise.
12225         * sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S: New file.
12226         * sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c: New file.
12227         * sysdeps/powerpc/powerpc64/multiarch/memchr.c: New file: multiarch
12228         memchr for PPC64.
12230         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add mempcpy multiarch
12231         implementation.
12232         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12233         (__libc_ifunc_impl_list): Likewise.
12234         * sysdeps/powerpc/powerpc64/multiarch/mempcpy-power7.S: New file.
12235         * sysdeps/powerpc/powerpc64/multiarch/mempcpy-ppc64.c: New file.
12236         * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c: New file: multiarch
12237         mempcpy for PPC64.
12239         * sysdeps/powerpc/powerpc64/memset.S (NO_BZERO_IMPL): Add macro to
12240         avoid cretion of __bzero symbol.
12241         * sysdeps/powerpc/powerpc64/power4/memset.S (NO_BZERO_IMPL):
12242         Likewise.
12243         * sysdeps/powerpc/powerpc64/power6/memset.S (NO_BZERO_IMPL):
12244         Likewise.
12245         * sysdeps/powerpc/powerpc64/power7/memset.S (NO_BZERO_IMPL):
12246         Likewise.
12247         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memset/bzero
12248         multiarch implementations.
12249         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12250         (__libc_ifunc_impl_list): Likewise.
12251         * sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S: New file.
12252         * sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S: New file.
12253         * sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S: New file.
12254         * sysdeps/powerpc/powerpc64/multiarch/bzero.c: New file: multiarch
12255         bzero for PPC32.
12256         * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S: New file.
12257         * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: New file.
12258         * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: New file.
12259         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S: New file.
12260         * sysdeps/powerpc/powerpc64/multiarch/memset.c: New file: multiarch
12261         memset for PPC64.
12262         * sysdeps/powerpc/powerpc64/multiarch/rtld-memset.c: New file.
12264         * string/memcmp.c (memcmp): Using macro to redefine symbol name.
12265         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memcpy multiarch
12266         implementations.
12267         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12268         (__libc_ifunc_impl_list): Likewise.
12269         * sysdeps/powerpc/powerpc64/multiarch/memcmp-power4.S: New file.
12270         * sysdeps/powerpc/powerpc64/multiarch/memcmp-power7.S: New file.
12271         * sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c: New file.
12272         * sysdeps/powerpc/powerpc64/multiarch/memcmp.c: New file: multiarch
12273         memcmp for PPC64.
12275         * sysdeps/powerpc/powerpc64/multiarch/Makefile: New file to support
12276         multiarch for POWER/PPC64.
12277         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Likewise.
12278         * sysdeps/powerpc/powerpc64/multiarch/init-arch.h: Likewise.
12279         * sysdeps/powerpc/powerpc64/multiarch/memcpy-a2.S: New file.
12280         * sysdeps/powerpc/powerpc64/multiarch/memcpy-cell.S: New file.
12281         * sysdeps/powerpc/powerpc64/multiarch/memcpy-power4.S: New file.
12282         * sysdeps/powerpc/powerpc64/multiarch/memcpy-power6.S: New file.
12283         * sysdeps/powerpc/powerpc64/multiarch/memcpy-power7.S: New file.
12284         * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: New file.
12285         * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: New file: multiarch
12286         memcpy for PPC64.
12288         * sysdeps/powerpc/powerpc64/power4/fpu/Implies: New file.
12289         * sysdeps/powerpc/powerpc64/power4/fpu/multiarch/Implies: New File.
12290         * sysdeps/powerpc/powerpc64/power4/multiarch/Implies: New File.
12291         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: New File.
12292         * sysdeps/powerpc/powerpc64/power5+/multiarch/Implies: New File.
12293         * sysdeps/powerpc/powerpc64/power5/Implies: New File.
12294         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: New File.
12295         * sysdeps/powerpc/powerpc64/power5/multiarch/Implies: New File.
12296         * sysdeps/powerpc/powerpc64/power6/fpu/Implies: New File.
12297         * sysdeps/powerpc/powerpc64/power6/multiarch/Implies: New File.
12298         * sysdeps/powerpc/powerpc64/power7/fpu/Implies: New File.
12299         * sysdeps/powerpc/powerpc64/power7/multiarch/Implies: New File.
12300         * sysdeps/powerpc/powerpc64/power8/fpu/Implies: New File.
12301         * sysdeps/powerpc/powerpc64/power8/fpu/multiarch/Implies: New File.
12302         * sysdeps/powerpc/powerpc64/power8/multiarch/Implies: New File.
12303         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/Implies: Remove.
12304         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/Implies: Remove.
12305         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/Implies: Remove.
12306         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/Implies: Remove.
12307         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/Implies: Remove.
12308         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/Implies: Remove.
12309         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power8/Implies: Remove.
12311 2013-12-12  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
12313         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Use $$ver.
12315 2013-12-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
12317         * benchtests/Makefile (bench): Add exp2 and log2.
12318         (LDLIBS-bench-exp2): Add -lm.
12319         (LDLIBS-bench-log2): Likewise.
12320         * benchtests/exp2-inputs: New inputs file.
12321         * benchtests/log2-inputs: New inputs file.
12322         * benchtests/log-inputs: Add new inputs.
12323         * benchtests/tan-inputs: Likewise.
12325 2013-12-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
12327         * sysdeps/ieee754/dbl-64/s_sin.c (t22): Consolidate const
12328         definition...
12329         (slow1, slow2, sloww1, sloww2, bsloww1, bsloww2, cslow2, csloww1)
12330         (csloww2): ... from here.
12332         * sysdeps/ieee754/dbl-64/usncs.h: Define constants as double
12333         instead of structures.
12334         * sysdeps/ieee754/dbl-64/s_sin.c (POLYNOMIAL2): Adjust.
12335         (POLYNOMIAL): Likewise.
12336         (TAYLOR_SLOW): Likewise.
12337         (__sin): Likewise.
12338         (__cos): Likewise.
12339         (slow1): Likewise.
12340         (slow2): Likewise.
12341         (sloww): Likewise.
12342         (sloww1); Likewise.
12343         (sloww2): Likewise.
12344         (bsloww1): Likewise.
12345         (bsloww2): Likewise.
12346         (cslow2): Likewise.
12347         (csloww): Likewise.
12348         (csloww1): Likewise.
12349         (csloww2): Likewise.
12351 2013-12-10  Ondřej Bílka  <neleai@seznam.cz>
12353         * malloc/malloc.c (MALLOC_COPY, MALLOC_ZERO): Delete.
12354         (__malloc_assert, __libc_realloc, __libc_calloc, _int_realloc):
12355         Expand MALLOC_COPY and MALLOC_ZERO to memcpy and memset.
12356         * malloc/hooks.c (realloc_check): Likewise.
12358         * malloc/Makefile (CPPFLAGS-malloc.c): Remove -DPER_THREAD flag.
12359         * malloc/arena.c: Remove PER_THREAD conditional.
12360         [!PER_THREAD]: Remove code.
12361         (ptmalloc_unlock_all2): Likewise.
12362         (ptmalloc_init): Likewise.
12363         (_int_new_arena): Likewise.
12364         (arena_get2): Likewise.
12365         * malloc/hooks.c (__malloc_get_state): Likewise.
12366         (__malloc_set_state): Likewise.
12367         * malloc/malloc.c: Likewise.
12368         (struct malloc_state): Likewise.
12369         (struct malloc_par): Likewise.
12370         (__libc_realloc): Likewise.
12371         (__libc_mallopt): Likewise.
12373 2013-12-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12375         * Versions.def (libm): Add GLIBC_2.3 and GLIBC_2.19.
12377 2013-12-09  Ondřej Bílka  <neleai@seznam.cz>
12379         * malloc/malloc.c (alloc_perturb, free_perturb): Convert from
12380         macro to a function.  Check for zero perturb_byte.
12381         (_int_malloc, _int_free): Remove zero perturb_byte checks.
12383         * malloc/malloc.c: (force_reg): Remove.
12384         (__malloc_assert, __libc_malloc, __libc_free, __libc_realloc)
12385         (_mid_memalign, __libc_calloc, sysmalloc, systrim): Replace
12386         force_reg by atomic_forced_read.
12387         * malloc/arena.c (ptmalloc_init): Likewise.
12388         * malloc/hooks.c (top_check): Likewise.
12390 2013-12-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12392         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
12394 2013-12-09  Markus Trippelsdorf  <markus@trippelsdorf.de>
12396         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
12398 2013-12-08  Joseph Myers  <joseph@codesourcery.com>
12400         * math/auto-libm-test-in: Add tests of lgamma.
12401         * math/auto-libm-test-out: Regenerated.
12402         * math/libm-test.inc (M_LOG_SQRT_PIl): Remove macro.
12403         (M_LOG_2_SQRT_PIl): Likewise.
12404         (lgamma_test_data): Use AUTO_TESTS_f_f1.
12405         * math/gen-auto-libm-tests.c (func_calc_method): Add value
12406         mpfr_f_f1.
12407         (func_calc_desc): Add mpfr_f_f1 union field.
12408         (ARGS1): New macro.
12409         (ARGS2): Likewise.
12410         (ARGS3): Likewise.
12411         (ARGS4): Likewise.
12412         (RET1): Likewise.
12413         (RET2): Likewise.
12414         (CALC): Likewise.
12415         (FUNC): Likewise.
12416         (FUNC_mpfr_f_f): Use new macros FUNC, ARGS1, RET1 and CALC.
12417         (test_functions): Add lgamma.
12418         (calc_generic_results): Handle mpfr_f_f1.
12419         * sysdeps/i386/fpu/libm-test-ulps: Update.
12420         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
12422 2013-12-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12424         * sysdeps/powerpc/powerpc64/power7/add_n.S: New file: optimized
12425         __mpn_add_n for PowerPC64/POWER7.
12426         * sysdeps/powerpc/powerpc64/power7/sub_n.S: New file: optimized
12427         __mpn_sub_n for PowerPC64/POWER7.
12429         * sysdeps/powerpc/powerpc64/addmul_1.S: New file: optimized
12430         __mpn_addmul_1 for PowerPC64.
12431         * sysdeps/powerpc/powerpc64/submul_1.S: New file: optimized
12432         __mpn_submul_1 for PowerPC64.
12433         * sysdeps/powerpc/powerpc64/lshift.S: New file: optimized __mpn_lshift
12434         for PowerPC64.
12435         * sysdeps/powerpc/powerpc64/mul_1.S: New file: optimized __mpn_mul_1
12436         for PowerPC64.
12438 2013-12-06  Fernando J. V. da Silva  <fernandojvdasilva@gmail.com>
12440         [BZ #15089]
12441         * malloc/malloc.c: Exit systrim() if pad is bigger than heap top size.
12443 2013-12-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12445         * NEWS: Mention ppc32/power4+ STT_GNU_IFUNC support.
12447         * sysdeps/powerpc/powerpc32/power5+/fpu/multiarch/Implies: New file:
12448         add multiarch folders.
12449         * sysdeps/powerpc/powerpc32/power5+/multiarch/Implies: Likewise.
12450         * sysdeps/powerpc/powerpc32/power5/fpu/multiarch/Implies: Likewise.
12451         * sysdeps/powerpc/powerpc32/power5/multiarch/Implies: Likewise.
12452         * sysdeps/powerpc/powerpc32/power6/fpu/multiarch/Implies: Likewise.
12453         * sysdeps/powerpc/powerpc32/power6/multiarch/Implies: Likewise.
12454         * sysdeps/powerpc/powerpc32/power6x/fpu/multiarch/Implies: Likewise.
12455         * sysdeps/powerpc/powerpc32/power6x/multiarch/Implies: Likewise.
12456         * sysdeps/powerpc/powerpc32/power7/fpu/multiarch/Implies: Likewise.
12457         * sysdeps/powerpc/powerpc32/power7/multiarch/Implies: Likewise.
12458         * sysdeps/powerpc/powerpc32/power8/fpu/multiarch/Implies: Likewise.
12459         * sysdeps/powerpc/powerpc32/power8/multiarch/Implies: Likewise.
12460         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/Implies: Remove.
12461         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/Implies: Remove.
12462         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/Implies: Remove.
12463         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/Implies: Remove.
12464         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/Implies: Remove.
12465         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power8/Implies: Remove.
12467         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add
12468         __ieee754_hypot and __ieee754_hypotf multiarch implementations.
12469         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-power7.c:
12470         New file.
12471         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-ppc32.c:
12472         New file.
12473         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot.c: New file:
12474         multiarch __ieee754_hypot for PowerPC32.
12475         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-power7.c:
12476         New file.
12477         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-ppc32.c:
12478         New file.
12479         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf.c: New file:
12480         multiarch __ieee754_hypotf for PowerPC32.
12482         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Define
12483         long_double_symbol only if __logbl is defined.
12484         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: Moved to ...
12485         * sysdeps/powerpc/power7/fpu/s_logb.c: ... here.
12486         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbf.c: Move to ...
12487         * sysdeps/powerpc/power7/fpu/s_logbf.c: ... here.
12488         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c: Move to ...
12489         * sysdeps/powerpc/power7/fpu/s_logbl.c: ... here.
12490         * sysdeps/powerpc/powerpc64/power7/fpu/s_logb.c: Adjust to use new
12491         path for implementation.
12492         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbf.c: Likewise.
12493         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbl.c: Likewise.
12494         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add logbf,
12495         logb, and logbl multiarch implementations for PowerPC32.
12496         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-power7.c: New
12497         file.
12498         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-ppc32.c: New
12499         file.
12500         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c: New file:
12501         multiarch logb for PowerPC32.
12502         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-power7.c: New
12503         file.
12504         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-ppc32.c: New
12505         file.
12506         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf.c: New file:
12507         multiarch logbf for PowerPC32.
12508         * sysdeps/powerpc/power4/fpu/multiarch/s_logbl-power7.c: New file.
12509         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-ppc32.c: New
12510         file.
12511         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl.c: New file:
12512         multiarch logbl implementation for PowerPC32.
12514         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add modf
12515         and modff multiarch implementations.
12516         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c:
12517         New file.
12518         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-ppc32.c:
12519         New file.
12520         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c: New file:
12521         multiarch modf for PowerPC32.
12522         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c:
12523         New file.
12524         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-ppc32.c:
12525         New file.
12526         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff.c: New file:
12527         multiarch modff for PowerPC32.
12529         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add lrint
12530         and lrintf multiarch implementations.
12531         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-power6x.S:
12532         New file.
12533         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-ppc32.S:
12534         New file.
12535         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint.c: New file:
12536         multiarch lrint for PowerPC32.
12537         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrintf.c: New
12538         file: multiarch lrintf for PowerPC32.
12540         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add lround
12541         and lroundf multiarch implementations.
12542         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power5+.S:
12543         New file.
12544         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power6.S:
12545         New file.
12546         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-ppc32.S:
12547         New file.
12548         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround.c: New file:
12549         multiarch lround for PowerPC32.
12550         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lroundf.c: New
12551         file: multiarch lroundf for PowerPC32.
12553         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add
12554         copysign and copysignf multiarch implementations.
12555         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-power6.S:
12556         New file.
12557         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-ppc32.S:
12558         New file.
12559         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c: New
12560         file: multiarch copysign for PowerPC32.
12561         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c: New
12562         file: multiarch copysignf for PowerPC32.
12564         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add trunc
12565         and truncf multiarch implementations.
12566         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-power5+.S:
12567         New file.
12568         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-ppc32.S: New
12569         file.
12570         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c: New file:
12571         multiarch trunc for PowerPC32.
12572         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-power5+.S:
12573         New file.
12574         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-ppc32.S:
12575         New file.
12576         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c: New file:
12577         multiarch truncf for PowerPC32.
12579         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add round
12580         and roundf multiarch implementations.
12581         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-power5+.S:
12582         New file.
12583         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-ppc32.S: New
12584         file.
12585         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c: New file:
12586         multiarch round for PowerPC32.
12587         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-power5+.S:
12588         New file.
12589         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-ppc32.S:
12590         New file.
12591         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c: New file:
12592         multiarch roundf for PowerPC32.
12594         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add floor
12595         and floorf multiarch implementations.
12596         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-power5+.S:
12597         New file.
12598         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-ppc32.S: New
12599         file.
12600         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c: New file:
12601         multiarch floor for PowerPC32.
12602         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-power5+.S:
12603         New file.
12604         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-ppc32.S:
12605         New file.
12606         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c: New file:
12607         multiarch floorf for PowerPC32.
12609         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add ceil
12610         and ceilf multiarch implementations.
12611         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-power5+.S:
12612         New file.
12613         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-ppc32.S: New
12614         file.
12615         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c: New file:
12616         multiarch ceil for PowerPC32.
12617         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-power5+.S:
12618         New file.
12619         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-ppc32.S: New
12620         file.
12621         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c: New file:
12622         multiarch ceilf for PowerPC32.
12624         * sysdeps/ieee754/dbl-64/s_finite.c (__finite): Redefine it if FINITE
12625         is defined.
12626         * sysdeps/ieee754/flt-32/s_finitef.c (__finitef): Redefine it if
12627         FINITEF is defined.
12628         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add finite
12629         and finitef multiarch implementations.
12630         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-power7.S:
12631         New file.
12632         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-ppc32.c: New
12633         file.
12634         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c: New file:
12635         multiarch finite for PowerPC32.
12636         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef-ppc32.c:
12637         New file.
12638         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef.c: New
12639         file: multiarch finitef for PowerPC32.
12641         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add isinf
12642         and isinff multiarch implementations.
12643         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-power7.S: New
12644         file.
12645         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-ppc32.c: New
12646         file.
12647         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c: New file:
12648         multiarch isinf for PowerPC32.
12649         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff-ppc32.c:
12650         New file.
12651         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff.c: New file:
12652         multiarch isinff for PowerPC32.
12654         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S (__isnan): Only implement
12655         alias when __isnan is defined.
12656         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add isnan
12657         and isnanf multiarch implementations.
12658         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power5.S: New
12659         file.
12660         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power6.S: New
12661         file.
12662         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power7.S: New
12663         file.
12664         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-ppc32.S: New
12665         file.
12666         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c: New file:
12667         multiarch isnan for PowerPC32.
12668         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power6.S:
12669         New file.
12670         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power7.S:
12671         New file.
12672         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf.c: New file:
12673         multiarch isnanf for PowerPC32.
12675         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add sqrt
12676         and sqrtf multiarch implementations.
12677         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-power5.S: New
12678         file.
12679         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-ppc32.S: New
12680         file.
12681         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt.c: New file:
12682         multiarch sqrt for PowerPC32.
12683         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-power5.S: New
12684         file.
12685         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-ppc32.S: New
12686         file.
12687         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf.c: New file:
12688         multiarch sqrtf for PowerPC32.
12690         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add llround
12691         and llroundf multiarch implementations.
12692         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power5+.S:
12693         New file.
12694         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power6.S:
12695         New file.
12696         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-ppc32.S:
12697         New file.
12698         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround.c: New
12699         file: multiarch llround for PowerPC32.
12700         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llroundf.c: New
12701         file: multiarch llroundf for PowerPC32.
12703         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: New file:
12704         multiarch PowerPC32 fpu implementations.
12705         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-power6.S:
12706         New file.
12707         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-ppc32.S:
12708         New file.
12709         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint.c: New file:
12710         multiarch llrint for PowerPC32.
12711         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-power6.S:
12712         New file.
12713         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-ppc32.S:
12714         New file.
12715         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf.c: New
12716         file.
12718         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/Implies: Remove.
12720         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power6.c: New
12721         file.
12722         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power7.c: New
12723         file.
12724         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-ppc32.c: New
12725         file.
12726         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c: New file:
12727         multiarch wordcopy for PPC32.
12728         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcscpy
12729         wordcopy objects.
12730         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
12731         (__libc_ifunc_impl_list): Likewise.
12732         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Move ...
12733         * sysdeps/powerpc/power4/wordcopy.c: ... to here.
12734         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Move ...
12735         * sysdeps/powerpc/power6/wordcopy.c: ... to here.
12736         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Remove uneeded file.
12737         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: Likewise.
12739         * wcsmbs/wcscpy.c (wcscpy): Using macro to redefine symbol name
12740         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power6.c: New
12741         file.
12742         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power7.c: New
12743         file.
12744         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c: New
12745         file.
12746         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c: New file:
12747         multiarch wcscpy for PPC32.
12748         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcscpy
12749         multiarch objects.
12750         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
12751         (__libc_ifunc_impl_list): Likewise.
12752         * sysdeps/powerpc/powerpc32/power6/wcsrchr.c: Move ...
12753         * sysdeps/powerpc/power6/wcsrchr.c: ... to here.
12754         * sysdeps/powerpc/powerpc64/power6/wcscpy.c: Adjust to use
12755         sysdeps/powerpc/power6/wcscpy.c.
12757         * wcsmbs/wcsrchr.c (wcsrchr): Using macro to redefine symbol name
12758         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power6.c: New
12759         file.
12760         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power7.c: New
12761         file.
12762         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c: New
12763         file.
12764         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c: New file:
12765         multiarch wcsrchr for PPC32.
12766         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcschr
12767         multiarch objects.
12768         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
12769         (__libc_ifunc_impl_list): Likewise.
12770         * sysdeps/powerpc/powerpc32/power6/wcsrchr.c: Move ...
12771         * sysdeps/powerpc/power6/wcsrchr.c: ... to here.
12772         * sysdeps/powerpc/powerpc64/power6/wcsrchr.c: Adjust to use
12773         sysdeps/powerpc/power6/wcsrchr.c.
12775         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power6.c: New
12776         file.
12777         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power7.c: New
12778         file.
12779         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c: New file.
12780         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c: New file:
12781         multiarch wcschr for PPc32.
12782         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcschr
12783         multiarch objects.
12784         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
12785         (__libc_ifunc_impl_list): Likewise.
12786         * sysdeps/powerpc/powerpc32/power6/wcschr.c: Move ...
12787         * sysdeps/powerpc/power6/wcschr.c: ... to here.
12788         * sysdeps/powerpc/powerpc64/power6/wcschr.c: Adjust to use
12789         sysdeps/powerpc/power6/wcschr.c.
12791         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strchr.S: New file.
12792         * sysdeps/powerpc/powerpc32/power4/multiarch/strchr-power7.S: New
12793         file.
12794         * sysdeps/powerpc/powerpc32/power4/multiarch/strchr-ppc32.S: New file.
12795         * sysdeps/powerpc/powerpc/powerpc32/power4/multiarch/strchr.c: New
12796         file: multiarch strchr for PPC32.
12797         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strchr
12798         multiarch objects.
12799         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
12800         (__libc_ifunc_impl_list): Likewise.
12802         * string/strchrnul.c (__strchrnul): Using macro to redefine symbol
12803         name.
12804         * sysdeps/powerpc/powerpc32/power4//multiarch/strchrnul-power7.S: New
12805         file.
12806         * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-ppc32.c: New
12807         file.
12808         * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c: New file:
12809         multiarch strchrnul for PPC32.
12810         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strchrnul
12811         multiarch objects.
12812         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
12813         (__libc_ifunc_impl_list): Likewise.
12815         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c: New
12816         file.
12817         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c: New file:
12818         multiarch strncasecmp for PPC32.
12819         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l-power7.c: New
12820         file.
12821         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c: New file:
12822         multiarch strncasecmp_l for PPC32.
12823         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added
12824         strncasecmp multiarch objects.
12825         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
12826         (__libc_ifunc_impl_list): Likewise.
12828         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S: New
12829         file.
12830         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c: New file:
12831         multiarch strncasecmp for PPC32.
12832         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S:
12833         New file.
12834         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c: New file:
12835         multiarch strcasecmp_l for PPC32.
12836         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strcasecmp
12837         multiarch objects.
12838         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
12839         (__libc_ifunc_impl_list): Likewise.
12841         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-power7.S: New
12842         file.
12843         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S: New
12844         file.
12845         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c: New file:
12846         multiarch strncmp for PPC32.
12847         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strncmp
12848         multiarch objects.
12849         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
12850         (__libc_ifunc_impl_list): Likewise.
12852         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strnlen.c: New file.
12853         * sysdeps/powerpc/powerpc32//power4/multiarch/strnlen-power7.S: New
12854         file.
12855         * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-ppc32.c: New file.
12856         * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c: New file.
12857         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strnlen
12858         multiarch objects.
12859         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
12860         (__libc_ifunc_impl_list): Likewise.
12862         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-power7.S: New
12863         file.
12864         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S: New
12865         file.
12866         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c: New file.
12867         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strlen
12868         multiarch objects.
12869         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
12870         (__libc_ifunc_impl_list): Likewise.
12872         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-power7.S: New
12873         file.
12874         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c: New
12875         file.
12876         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c: New file:
12877         multiarch rawmemchr for PPC32.
12878         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added rawmemchr
12879         multiarch objects.
12880         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
12881         (__libc_ifunc_impl_list): Likewise.
12883         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-power7.S: New
12884         file.
12885         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c: New
12886         file.
12887         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c: New
12888         file: memrchr multiarch for PPC32.
12889         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added memrchr
12890         multiarch objects.
12891         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
12892         (__libc_ifunc_impl_list): Likewise.
12894         * string/memchr.c (__memchr): Using macro to redefine symbol name.
12895         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-power7.S: New
12896         file.
12897         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c: New File.
12898         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c: New file:
12899         multiarch memchr for PPC32.
12900         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memchr
12901         multiarch objects.
12902         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
12903         (__libc_ifunc_impl_list): Likewise.
12905         * string/mempcpy.c (__mempcpy): Using macro to redefine symbol name.
12906         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-power7.S: New
12907         file.
12908         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-ppc32.c: New
12909         file.
12910         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c: New
12911         file: multiarch mempcpy for PPC32.
12912         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add mempcpy
12913         multiarch objects.
12914         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
12915         (__libc_ifunc_impl_list): Likewise.
12917         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power6.S: New file.
12918         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power7.S: New file.
12919         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S: New file.
12920         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: New file:
12921         multiarch bzero for PPC32.
12922         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-power6.S: New
12923         file.
12924         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-power7.S: New
12925         file.
12926         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S: New file.
12927         * sysdeps/powerpc/powerpc/powerpc32/power4/multiarch/memset.c: New
12928         file: multiarch memset for PPC32.
12929         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memset.S: New file.
12930         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add bzero and
12931         memset multiarch objects.
12932         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
12933         (__libc_ifunc_impl_list): Likewise.
12935         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-power7.S: New
12936         file.
12937         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S: New file.
12938         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c: multiarch
12939         memcmp for PPC32.
12940         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memcmp.S: New file.
12941         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memcmp
12942         multiarch objects.
12943         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
12944         (__libc_ifunc_impl_list): Likewise.
12946         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-a2.S: New file.
12947         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-cell.S: New file.
12948         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power6.S: New
12949         file.
12950         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power7.S: New
12951         file.
12952         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S: New
12953         file.
12954         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c: New file:
12955         multiarch memcpy for PPC32.
12956         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memcpy
12957         multiarch objects.
12958         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
12959         (__libc_ifunc_impl_list): Likewise.
12961         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: New file to
12962         support multiarch for POWER/PPC32.
12963         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c:
12964         Likewise.
12965         * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h: Likewise.
12966         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/Implies: Remove
12967         Implies file to make multiarch folder appers before the fpu and
12968         default folder for power4 configuration.
12970 2013-12-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
12972         * scripts/bench.pl: Append volatile keyword to type.
12974 2013-12-05  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
12976         * sysdeps/sh/sotruss-lib.c: New file.
12977         * sysdeps/unix/sysv/linux/sh/nptl/c++-types.data: New file.
12979 2013-12-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12981         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
12983 2013-12-05  Joseph Myers  <joseph@codesourcery.com>
12985         [BZ #6810]
12986         * math/w_tgamma.c: Include <errno.h>.
12987         (__tgamma): Use __glibc_unlikely.  Set errno on underflow to 0.
12988         * math/w_tgammaf.c: Include <errno.h>.
12989         (__tgammaf): Use __glibc_unlikely.  Set errno on underflow to 0.
12990         * math/w_tgammal.c: Include <errno.h>.
12991         (__tgammal): Use __glibc_unlikely.  Set errno on underflow to 0.
12992         * math/auto-libm-test-in: Do not allow missing errno on tgamma
12993         underflow.  Add more tgamma tests.
12994         * math/auto-libm-test-out: Regenerated.
12995         * sysdeps/i386/fpu/libm-test-ulps: Update.
12996         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
12998         * math/auto-libm-test-in: Add tests of log, log10, log1p, log2,
12999         sin, sinh, tan, tanh, tgamma, y0 and y1.
13000         * math/auto-libm-test-out: Regenerated.
13001         * math/libm-test.inc (TEST_COND_x86_64): New macro.
13002         (TEST_COND_x86): Likewise.
13003         (M_E2l): Remove macro.
13004         (M_E3l): Likewise.
13005         (M_2_SQRT_PIl): Likewise.
13006         (M_SQRT_PIl): Likewise.
13007         (M_1_DIV_El): Likewise.
13008         (log_test_data): Use AUTO_TESTS_f_f.
13009         (log10_test_data): Likewise.
13010         (log1p_test_data): Likewise.
13011         (log2_test_data): Likewise.
13012         (sin_test_data): Likewise.
13013         (sin_tonearest_test_data): Likewise.
13014         (sin_towardzero_test_data): Likewise.
13015         (sin_downward_test_data): Likewise.
13016         (sin_upward_test_data): Likewise.
13017         (sinh_test_data): Likewise.
13018         (sinh_tonearest_test_data): Likewise.
13019         (sinh_towardzero_test_data): Likewise.
13020         (sinh_downward_test_data): Likewise.
13021         (sinh_upward_test_data): Likewise.
13022         (tan_test_data): Likewise.
13023         (tan_tonearest_test_data): Likewise.
13024         (tan_towardzero_test_data): Likewise.
13025         (tan_downward_test_data): Likewise.
13026         (tan_upward_test_data): Likewise.
13027         (tanh_test_data): Likewise.
13028         (tgamma_test_data): Likewise.
13029         (y0_test_data): Likewise.
13030         (y1_test_data): Likewise.
13031         * math/gen-auto-libm-tests.c (special_fill_pi_4): New function.
13032         (special_real_inputs): Add pi/4.
13033         * sysdeps/i386/fpu/libm-test-ulps: Update.
13034         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
13036 2013-12-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13038         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Add "longjmp" and
13039         "longjmp_target" static probes.
13040         (__longjmp): Rename to __longjmp_symbol.
13041         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
13042         * sysdeps/powerpc/powerpc32/__longjmp.S: Define __longjmp_symbol based
13043         on which longjmp to generate.
13044         * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
13045         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Add "setjmp" static
13046         probe.
13047         (__sigsetjmp): Rename to __sigsetjmp_symbol.
13048         (__sigjmp_save): Rename to __sigjmp_save_symbol.
13049         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
13050         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Define __sigsetjmp_symbol
13051         and __sigjmp_save_symbol based on which sigsetjmp to generated.
13052         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise
13053         * sysdeps/unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: Define
13054         __longjmp_symbol based on which __longjmp to generate.
13055         * sysdeps/powerpc/powerpc64/setjmp-common.S: Add "setjmp" static
13056         probe.
13057         (setjmp): Rename to setjmp_symbol.
13058         (__sigsetjmp): Rename to __sigsetjmp_symbol.
13059         (_setjmp): Rename to _setjmp_symbol.
13060         (__sigsetjmp): Rename to __sigsetjmp_symbol.
13061         * sysdeps/powerpc/powerpc64/setjmp.S: Define setjmp_symbol,
13062         _setjmp_symbol, __sigsetjmp_symbol, and __sigjmp_save_symbol based on
13063         which setjmp to generate.
13064         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Add "longjmp" and
13065         "longjmp_target" static probes.
13067 2013-12-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
13069         * benchtests/README: Add note about output arguments.
13070         * benchtests/bench-sincos.c: Remove file.
13071         * benchtests/sincos-inputs: New file.
13072         * scripts/bench.pl: Identify output arguments and define
13073         static variables for them.
13075         * debug/stpncpy_chk.c (__stpncpy_chk): Remove unused variables.
13077         [BZ #15941]
13078         * Makefile (INSTALL): Add install-plain.texi as the primary
13079         dependency.
13080         * manual/install-plain.texi: New file.
13081         * manual/install.texi: Include node directive only for
13082         non-plaintext output.
13084 2013-12-04  Joseph Myers  <joseph@codesourcery.com>
13086         * stdlib/longlong.h: Update from GCC.
13088         [BZ #6807]
13089         [BZ #15901]
13090         * math/w_j0.c (y0): Raise FE_DIVBYZERO on zero argument.
13091         * math/w_j0f.c (y0f): Likewise.
13092         * math/w_j0l.c (__y0l): Likewise.
13093         * math/w_j1.c (y1): Likewise.
13094         * math/w_j1f.c (y1f): Likewise.
13095         * math/w_j1l.c (__y1l): Likewise
13096         * math/w_jn.c (yn): Likewise.
13097         * math/w_jnf.c (ynf): Likewise.
13098         * sysdeps/ieee754/k_standard.c (__kernel_standard): Use ERANGE for
13099         Bessel function pole errors in _POSIX_ mode.  Use NAN as return
13100         value for Bessel function domain errors outside _SVID_ mode.
13101         Adjust sign of return value for yn (negative integer, 0).
13102         * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_ynl): Use division
13103         by zero in return for negative x and set sign appropriately for
13104         negative n.
13105         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_ynl): Likewise.
13106         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Likewise.
13107         * math/libm-test.inc (y0_test_data): Add more tests and adjust
13108         expectations in error cases.
13109         (y1_test_data): Likewise.
13110         (yn_test_data): Likewise.
13111         * sysdeps/i386/fpu/libm-test-ulps: Update.
13112         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
13114 2013-11-12  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
13116         * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-variants): Rename
13117         "64" to "64-v1".  Add "64-v2".
13118         (abi-64-options): Rename to ...
13119         (abi-64-v1-options): ... this.   Redefine _CALL_ELF.
13120         (abi-64-condition): Rename to ...
13121         (abi-64-v1-condition): ... this.  Add _CALL_ELF check.,
13122         (abi-64-ld-soname): Rename to ...
13123         (abi-64-v1-ld-soname): ... this.
13124         (abi-64-v2-options): Define.
13125         (abi-64-v2-condition): Likewise.
13126         (abi-64-v2-ld-soname): Likewise.
13127         * sysdeps/unix/sysv/linux/powerpc/ldconfig.h
13128         (SYSDEP_KNOWN_INTERPRETER_NAMES): Add "/lib64/ld64.so.2".
13129         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Makefile: Delete file.
13130         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac: New file.
13131         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Generate.
13133 2013-11-12  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
13134             Alan Modra  <amodra@gmail.com>
13136         * sysdeps/powerpc/bits/link.h (La_ppc64v2_regs, La_ppc64v2_retval):
13137         New versions for use with the ELFv2 ABI.
13138         (la_ppc64v2_gnu_pltenter, la_ppc64v2_gnu_pltexit): Add prototypes.
13139         * sysdeps/powerpc/lsdodefs.h (struct La_ppc64v2_regs): Add forward
13140         declaration.
13141         (struct La_ppc64v2_retval): Likewise.
13142         (ARCH_PLTENTER_MEMBERS): Add ppc64v2_gnu_pltenter.
13143         (ARCH_PLTEXIT_MEMBERS): Add ppc64v2_gnu_pltexit.
13144         * sysdeps/powerpc/powerpc64/dl-machine.h (ARCH_LA_PLTENTER): Define
13145         to ppc64v2_gnu_pltenter if _CALL_ELF == 2.
13146         (ARCH_LA_PLTEXIT): Define to ppc64v2_gnu_pltexit if _CALL_ELF == 2.
13147         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve):
13148         Do not save or restore CR.
13149         (FRAME_SIZE, VR_RTN): Provide updated values for _CALL_ELF == 2.
13150         (_dl_profile_resolve): Do no save or restore CR.  Support extended
13151         return values for ELFv2 ABI.  Fix location of FPR return registers.
13152         * sysdeps/powerpc/powerpc64/tst-audit.h (pltenter, pltexit): Provide
13153         updated values for _CALL_ELF == 2.
13154         (La_regs, La_retval, int_retval): Likewise.
13156 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
13158         * sysdeps/powerpc/powerpc64/sysdep.h (FRAME_MIN_SIZE): Define.
13159         (FRAME_MIN_SIZE_PARM): Likewise.
13160         (FRAME_BACKCHAIN): Likewise.
13161         (FRAME_CR_SAVE): Likewise.
13162         (FRAME_LR_SAVE): Likewise.
13163         (FRAME_TOC_SAVE): Likewise.
13164         (FRAME_PARM_SAVE): Likewise.
13165         (FRAME_PARM1_SAVE, FRAME_PARM2_SAVE, FRAME_PARM3_SAVE,
13166         FRAME_PARM4_SAVE, FRAME_PARM5_SAVE, FRAME_PARM6_SAVE,
13167         FRAME_PARM7_SAVE, FRAME_PARM8_SAVE, FRAME_PARM9_SAVE): Likewise.
13168         (call_mcount_parm_offset): New macro.
13169         (SAVE_ARG, REST_ARG, CFI_SAVE_ARG): Use it.
13170         (PROF): Use symbolic stack frame offsets.
13171         (TAIL_CALL_SYSCALL_ERROR): Likewise.
13172         * sysdeps/powerpc/powerpc64/dl-trampoline.S (FRAME_SIZE, INT_PARMS):
13173         Redefine in terms of FRAME_MIN_SIZE.
13174         (_dl_runtime_resolve): Use symbolic stack frame offsets.
13175         (_dl_profile_resolve): Likewise.  Update comment.
13176         * sysdeps/powerpc/powerpc64/setjmp-common.S (__GI__setjmp): Use
13177         symbols stack frame offsets.
13178         (__sigsetjmp): Likewise.
13179         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
13180         * sysdeps/powerpc/powerpc64/ppc-mcount.S (_mcount): Likewise.
13181         * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Likewise.
13182         * sysdeps/powerpc/powerpc64/crtn.S (_init, _fini): Likewise.
13184         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.sym
13185         (FRAME_BACKCHAIN): Remove.
13186         (FRAME_CR_SAVE): Likewise.
13187         (FRAME_LR_SAVE): Likewise.
13188         (FRAME_COMPILER_DW): Likewise.
13189         (FRAME_LINKER_DW): Likewise.
13190         (FRAME_TOC_SAVE): Likewise.
13191         (FRAME_PARM_SAVE): Likewise.
13192         (FRAME_PARM1_SAVE, FRAME_PARM2_SAVE, FRAME_PARM3_SAVE)
13193         (FRAME_PARM4_SAVE, FRAME_PARM5_SAVE, FRAME_PARM6_SAVE)
13194         (FRAME_PARM7_SAVE, FRAME_PARM8_SAVE, FRAME_PARM9_SAVE): Likewise.
13195         * sysdeps/unix/sysv/linux/powerpc/powerpc64/____longjmp_chk.S
13196         (CHECK_SP): Use symbolic stack frame offsets.
13197         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S (__brk): Use "red
13198         zone" instead of caller's parameter save area for temp storage.
13199         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
13200         Likewise.  Also, use symbolic stack frame offsets.
13201         * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S (FRAMESIZE,
13202         stackblock): Redefine for _CALL_ELF == 2 to save parameters into
13203         our own stack frame instead of the caller's.
13204         (__socket): Use symbolic stack frame offsets.
13206 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
13207             Alan Modra  <amodra@gmail.com>
13209         * elf/elf.h (DT_PPC64_OPT, PPC64_OPT_TLS, PPC64_OPT_MULTI_TOC):
13210         Define.
13211         (STO_PPC64_LOCAL_BIT, STO_PPC64_LOCAL_MASK)
13212         (PPC64_LOCAL_ENTRY_OFFSET): Define.
13213         * sysdeps/powerpc/powerpc64/dl-machine.h (ppc64_local_entry_offset):
13214         New function.
13215         (elf_machine_fixup_plt): Call it.
13216         (elf_machine_plt_conflict): Likewise.  Add map, sym_map, and
13217         reloc arguments.
13218         (elf_machine_rela): Update call to elf_machine_plt_conflict.
13219         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve)
13220         (_dl_profile_resolve) [_CALL_ELF == 2]: Restore caller's TOC into
13221         r2 before calling target.
13223 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
13224             Alan Modra  <amodra@gmail.com>
13226         * sysdeps/powerpc/powerpc64/sysdep.h [_CALL_ELF == 2]
13227         (PPC64_LOAD_FUNCPTR, DOT_LABEL, BODY_LABEL, ENTRY_2, END_2): New
13228         versions of macros to support ELFv2 ABI.
13229         (LOCALENTRY): New macro.
13230         (ENTRY, EALIGN): Use it.
13231         * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Use LOCALENTRY.
13232         * sysdeps/powerpc/powerpc64/setjmp-common.S (__GI__setjmp): Do not
13233         fall through into ENTRY entry point.
13234         * libc/sysdeps/powerpc/powerpc64/dl-machine.h (Elf64_FuncDesc):
13235         Only define if _CALL_ELF != 2.
13237         (elf_machine_matches_host): Verify ABI version matches.
13238         (RTLD_START): Use LOCALENTRY.
13239         (elf_machine_type_class): Use SHN_UNDEF PLT handling for ELFv2 ABI.
13240         (PLT_INITIAL_ENTRY_WORDS): New version for _CALL_ELF != 2.
13241         (PLT_ENTRY_WORDS): New macro.
13242         (GLINK_INITIAL_ENTRY_WORDS, GLINK_ENTRY_WORDS): Likewise.
13243         (elf_machine_runtime_setup): Support ELFv2 ABI.
13244         (elf_machine_fixup_plt): Likewise.
13245         (elf_machine_plt_conflict): Likewise.
13246         (resolve_ifunc): Likewise.
13247         * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irela): Likewise.
13248         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
13249         Likewise.
13250         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
13251         (DL_ADDR_SYM_MATCH): Only define if _CALL_ELF != 2.
13252         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
13253         (makecontext): Support ELFv2 ABI.
13254         * elf/elf.h (EF_PPC64_ABI): Define.
13256 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
13258         * sysdeps/powerpc/powerpc64/sysdep.h
13259         (PPC64_LOAD_FUNCPTR) [ASSEMBLER]: New assembler macro.
13260         (ENTRY_1) [ASSEMBLER]: Do not switch to .text section here ...
13261         (ENTRY) [ASSEMBLER]: ... but instead here ...
13262         (EALIGN) [ASSEMBLER]: ... and here.
13263         (PPC64_LOAD_FUNCPTR) [!ASSEMBLER]: New macro.
13264         (ENTRY_1) [!ASSEMBLER]: New macro; set up .opd entry.
13265         (ENTRY_2) [!ASSEMBLER]: Use it.
13266         * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Update for
13267         ENTRY_2 changes.  Use PPC64_LOAD_FUNCPTR.
13268         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve)
13269         (_dl_profile_resolve): Use PPC64_LOAD_FUNCPTR.
13270         * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Use ENTRY_2.
13271         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (clone):
13272         Use PPC64_LOAD_FUNCPTR.
13274         * sysdeps/powerpc/tls.h (tcbhead_t): Add __private_ss field.
13276 2013-12-04  Alan Modra  <amodra@gmail.com>
13278         * elf/elf.h (R_PPC64_TLSGD, R_PPC64_TLSLD, R_PPC64_TOCSAVE): Define.
13279         (R_PPC64_ADDR16_HIGH, R_PPC64_ADDR16_HIGHA): Likewise.
13280         (R_PPC64_TPREL16_HIGH, R_PPC64_TPREL16_HIGHA): Likewise.
13281         (R_PPC64_DTPREL16_HIGH, R_PPC64_DTPREL16_HIGHA): Likewise.
13283         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Add
13284         overflow checking for R_PPC64_ADDR16_HI, R_PPC64_ADDR16_HA,
13285         R_PPC64_TPREL16_HI, and R_PPC64_TPREL16_HA.
13286         Support new R_PPC64_ADDR16_HIGH, R_PPC64_ADDR16_HIGHA,
13287         R_PPC64_TPREL16_HIGH, and R_PPC64_TPREL16_HIGHA relocations.
13288         Fix overflow checking for R_PPC64_ADDR30 and R_PPC64_ADDR32.
13290 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
13292         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
13293         (__makecontext): Fix incorrect CFI when backtracing out of
13294         context created via makecontext.
13295         * sysdeps/unix/sysv/linux/powerpc/powerpc64/secontext.S
13296         (__setcontext): Fix incorrect CFI during switch to new context.
13297         (__novec_setcontext): Likewise.
13299 2013-12-04  Ondřej Bílka  <neleai@seznam.cz>
13301         [BZ #4772]
13302         * time/strptime_l.c (__strptime_internal): Allow modifiers
13303         in strptime.
13304         * time/tst-strptime.c (day_tests): Add testcase.
13306 2013-12-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
13308         * scripts/bench.pl: Skip over blank lines.
13310 2013-12-04  Paul Eggert  <eggert@cs.ucla.edu>
13312         [BZ #926]
13313         * manual/time.texi (Calendar Time): Clarify what timezone functions
13314         use.
13316 2013-12-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13318         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
13320 2013-12-04  Ondřej Bílka  <neleai@seznam.cz>
13322         * debug/memcpy_chk.c (__memcpy_chk): Use call instead of custom
13323         implementation.
13324         * debug/memmove_chk.c (MEMMOVE_CHK): Likewise.
13325         * debug/mempcpy_chk.c (__mempcpy_chk): Likewise.
13326         * debug/memset_chk.c (__memset_chk): Likewise.
13327         * debug/stpncpy_chk.c (__stpncpy_chk): Likewise.
13328         * debug/strncpy_chk.c: Likewise.
13330 2013-12-03  Joseph Myers  <joseph@codesourcery.com>
13332         [BZ #15268]
13333         [BZ #15425]
13334         * sysdeps/ieee754/dbl-64/e_exp.c: Include <float.h>.
13335         (__ieee754_exp): For possibly underflowing results, check size of
13336         result and force underflow exception if required.
13337         * math/auto-libm-test-in: Add more tests of exp.
13338         * math/auto-libm-test-out: Regenerated.
13339         * sysdeps/i386/fpu/libm-test-ulps: Update.
13340         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
13342         [BZ #16283]
13343         * math/w_exp2.c (__exp2): Handle a zero result as underflow.
13344         * math/w_exp2f.c (__exp2f): Likewise.
13345         * math/w_exp2l.c (__exp2l): Likewise.
13346         * math/auto-libm-test-in: Do not allow missing errno on exp2
13347         underflow.
13348         * math/auto-libm-test-out: Regenerated.
13350 2013-12-03  Ondřej Bílka  <neleai@seznam.cz>
13352         [BZ #16274]
13353         * sysdeps/unix/sysv/linux/shm_open.c (shm_open): Correctly
13354         handle filename validation.
13355         * rt/tst-shm.c (do_test): Do not skip a test when shm_open fails.
13356         (do_open): Delete.
13358 2013-12-03  Joseph Myers  <joseph@codesourcery.com>
13360         [BZ #6786]
13361         * sysdeps/ieee754/dbl-64/s_erf.c: Include <errno.h> and <float.h>.
13362         (__erfc): Set errno to ERANGE when returning 0 or tiny * tiny.
13363         * sysdeps/ieee754/flt-32/s_erff.c: Include <errno.h> and
13364         <float.h>.
13365         (__erfcf): Set errno to ERANGE when returning 0 or tiny * tiny.
13366         * sysdeps/ieee754/ldbl-128/s_erfl.c: Include <errno.h>.
13367         (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
13368         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Include <errno.h>.
13369         (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
13370         * sysdeps/ieee754/ldbl-96/s_erfl.c: Include <errno.h>.
13371         (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
13372         * math/auto-libm-test-in: Don't allow missing errno from erfc.
13373         Add more erfc tests.
13374         * math/auto-libm-test-out: Regenerated.
13375         * sysdeps/i386/fpu/libm-test-ulps: Update.
13376         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
13378         * math/auto-libm-test-in: Add tests of erf, erfc, exp, exp10,
13379         exp2, expm1, j0 and j1.
13380         * math/auto-libm-test-out: Regenerated.
13381         * math/libm-test.inc (erf_test_data): Use AUTO_TESTS_f_f.
13382         (erfc_test_data): Likewise.
13383         (exp_test_data): Likewise.
13384         (exp_tonearest_test_data): Likewise.
13385         (exp_towardzero_test_data): Likewise.
13386         (exp_downward_test_data): Likewise.
13387         (exp_upward_test_data): Likewise.
13388         (exp10_test_data): Likewise.
13389         (exp2_test_data): Likewise.
13390         (expm1_test_data): Likewise.
13391         (j0_test_data): Likewise.
13392         (j1_test_data): Likewise.
13393         * math/gen-auto-libm-tests.c: Mention "xfail-rounding" in comment.
13394         (input_flag_type): Add flag_xfail_rounding.
13395         (input_flags): Add xfail-rounding.
13396         (adjust_real): Assert mpfr_number_p not mpfr_regular_p.
13397         (output_for_one_input_case): Handle flag_xfail_rounding.
13398         * sysdeps/i386/fpu/libm-test-ulps: Update.
13399         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
13401 2013-12-03  Aurelien Jarno  <aurelien@aurel32.net>
13403         [BZ #16289]
13404         * locale/loadarchive.c (_nl_load_locale_from_archive): Avoid
13405         division by 0.
13407 2013-12-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
13409         [BZ #16195]
13410         * include/stap-probe.h [!USE_STAP_PROBE && !__ASSEMBLER__]
13411         (LIBC_PROBE): Change definition to call STAP_PROBE* macros.
13412         (STAP_PROBE0): New macro.
13413         (STAP_PROBE1): Likewise.
13414         (STAP_PROBE2): Likewise.
13415         (STAP_PROBE3): Likewise.
13416         (STAP_PROBE4): Likewise.
13418 2013-12-02  Ondřej Bílka  <neleai@seznam.cz>
13420         * manual/llio.texi (Memory-mapped I/O): Add shm_open and shm_close.
13422 2013-12-02  Steve Ellcey  <sellcey@mips.com>
13424         * benchtests/Makefile (bench): Add sqrt.
13425         (LDLIBS-bench-sqrt): New.
13426         * benchtests/sqrt-input: New.
13428 2013-12-02  Pavel Simerda  <psimerda@redhat.com>
13430         * sysdeps/posix/getaddrinfo.c (GAIH_OKIFUNSPEC): Remove macro.
13431         (GAIH_EAI): Likewise.
13432         (gaih_inet_serv): Don't use GAIH_OKIFUNSPEC.
13433         (gaih_inet): Likewise.
13434         (getaddrinfo): Don't use GAIH_EAI.
13436         * sysdeps/posix/getaddrinfo.c (UNIX_PATH_MAX): Remove macro.
13437         (struct gaih): Remove definition.
13439 2013-12-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
13441         * nss/nss_files/files-hosts.c (_nss_files_gethostbyname4_r):
13442         Use HERRNOP directly.
13444 2013-12-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13446         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
13448 2013-11-30  Joseph Myers  <joseph@codesourcery.com>
13450         * math/gen-auto-libm-tests.c (test_functions): Add more
13451         single-argument functions.
13452         (special_fill_pi_2): New function.
13453         (special_fill_minus_pi_2): Likewise.
13454         (special_fill_pi_6): Likewise.
13455         (special_fill_minus_pi_6): Likewise.
13456         (special_fill_pi_3): Likewise.
13457         (special_fill_2pi_3): Likewise.
13458         (special_fill_e): Likewise.
13459         (special_fill_1_e): Likewise.
13460         (special_fill_e_minus_1): Likewise.
13461         (special_real_inputs): Add more special inputs.
13462         (output_for_one_input_case): Do not require ERANGE on underflow to
13463         zero if round-to-nearest result does not underflow to zero, unless
13464         exact results required.
13465         * math/auto-libm-test-in: Add tests of acos, acosh, asin, asinh,
13466         atan, atanh, cbrt, cos and cosh.
13467         * math/auto-libm-test-out: Regenerated.
13468         * math/libm-test.inc (acos_test_data): Use AUTO_TESTS_f_f.
13469         (acos_tonearest_test_data): Likewise.
13470         (acos_towardzero_test_data): Likewise.
13471         (acos_downward_test_data): Likewise.
13472         (acos_upward_test_data): Likewise.
13473         (acosh_test_data): Likewise.
13474         (asin_test_data): Likewise.
13475         (asin_tonearest_test_data): Likewise.
13476         (asin_towardzero_test_data): Likewise.
13477         (asin_upward_test_data): Likewise.
13478         (asinh_test_data): Likewise.
13479         (atan_test_data): Likewise.
13480         (atanh_test_data): Likewise.
13481         (cbrt_test_data): Likewise.
13482         (cos_test_data): Likewise.
13483         (cos_tonearest_test_data): Likewise.
13484         (cos_towardzero_test_data): Likewise.
13485         (cos_downward_test_data): Likewise.
13486         (cos_upward_test_data): Likewise.
13487         (cosh_test_data): Likewise.
13488         (cosh_tonearest_test_data): Likewise.
13489         (cosh_towardzero_test_data): Likewise.
13490         (cosh_downward_test_data): Likewise.
13491         (cosh_upward_test_data): Likewise.
13492         * sysdeps/i386/fpu/libm-test-ulps: Update.
13493         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
13495 2013-11-29  Joseph Myers  <joseph@codesourcery.com>
13497         [BZ #6787]
13498         * math/w_exp10.c (__exp10): Handle a zero result as underflow.
13499         * math/w_exp10f.c (__exp10f): Likewise.
13500         * math/w_exp10l.c (__exp10l): Likewise.
13501         * math/libm-test.inc (exp10_test_data): Add more tests and expect
13502         errno settings in existing tests.
13504         [BZ #14032]
13505         * sysdeps/i386/fpu/e_sqrt.S (__ieee754_sqrt): Do fsqrt with
13506         precision control set to double precision.
13507         * sysdeps/i386/fpu/w_sqrt.c: New file.
13508         * math/auto-libm-test-in: Add more tests.
13509         * math/auto-libm-test-out: Update.
13511         * math/libm-test.inc (sqrt_tonearest_test_data): New variable.
13512         (sqrt_test_tonearest): New function.
13513         (sqrt_towardzero_test_data): New variable.
13514         (sqrt_test_towardzero): New function.
13515         (sqrt_downward_test_data): New variable.
13516         (sqrt_test_downward): New function.
13517         (sqrt_upward_test_data): New variable.
13518         (sqrt_test_upward): New function.
13519         (main): Call the new functions.
13521         * math/gen-auto-libm-tests.c: New file.
13522         * math/auto-libm-test-in: Likewise.
13523         * math/auto-libm-test-out: New generated file.
13524         * math/gen-libm-test.pl ($auto_input, %auto_tests): New global
13525         variables.
13526         (%beautify): Add generated representations of zero.
13527         (top level): Set $auto_input and call parse_auto_input.
13528         (beautify): Remove trailing "f" from hex float constants.
13529         (parse_args): Handle XFAIL_TEST.
13530         (convert_condition): New function.
13531         (or_value): Likewise.
13532         (or_cond_value): Likewise.
13533         (generate_testfile): Handle AUTO_TESTS_* lines.
13534         (parse_auto_input): New function.
13535         * math/libm-test.inc (XFAIL_TEST): New macro.
13536         (ERRNO_UNCHANGED): Update value.
13537         (ERRNO_EDOM): Likewise.
13538         (ERRNO_ERANGE): Likewise.
13539         (IGNORE_RESULT): Likewise.
13540         (TEST_COND_flt_32): New macro.
13541         (TEST_COND_dbl_64): Likewise.
13542         (TEST_COND_ldbl_96_intel): Likewise.
13543         (TEST_COND_ldbl_96_m68k): Likewise.
13544         (TEST_COND_ldbl_128): Likewise.
13545         (TEST_COND_ldbl_128ibm): Likewise.
13546         (TEST_COND_long32): Likewise.
13547         (TEST_COND_long64): Likewise.
13548         (TEST_COND_before_rounding): Likewise.
13549         (TEST_COND_after_rounding): Likewise.
13550         (enable_test): Handle XFAIL_TEST flag.
13551         (sqrt_test_data): Use AUTO_TESTS_f_f for tests of finite inputs
13552         with finite results.
13553         * math/Makefile ($(objpfx)libm-test.stmp): Depend on
13554         auto-libm-test-out.
13556 2013-11-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
13557             Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
13559         [BZ #16214]
13560         * sysdeps/s390/dl-tls.h (__TLS_GET_ADDR): Invoke
13561         __tls_get_addr_internal instead of __tls_get_offset in order to
13562         avoid GOT pointer dependency.  Make rtld export
13563         __tls_get_addr_internal@@GLIBC_PRIVATE while still hiding
13564         __tls_get_addr since we are a __tls_get_offset platform.
13565         * sysdeps/s390/s390-64/tls-macros.h (TLS_IE PIC): Don't rely on
13566         GOT pointer being set up before.
13567         * sysdeps/s390/s390-32/tls-macros.h (TLS_IE PIC): Likewise.
13569 2013-11-28  Joseph Myers  <joseph@codesourcery.com>
13571         * manual/math.texi (Errors in Math Functions): Document accuracy
13572         goals.
13574         [BZ #15004]
13575         * sysdeps/ieee754/ldbl-96/e_atan2l.c: Remove file.
13576         * sysdeps/ieee754/ldbl-96/e_ilogbl.c: Likewise.
13577         * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
13578         * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
13579         * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
13580         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
13581         * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
13582         * sysdeps/ieee754/ldbl-96/s_fpclassifyl.c: Likewise.
13583         * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
13584         * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
13585         * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
13586         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
13587         * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
13588         * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
13589         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
13590         * sysdeps/ieee754/ldbl-96/s_truncl.c: Likewise.
13592         * sysdeps/powerpc/nofpu/atomic-feclearexcept.c: New file.
13593         * sysdeps/powerpc/nofpu/atomic-feholdexcept.c: Likewise.
13594         * sysdeps/powerpc/nofpu/atomic-feupdateenv.c: Likewise.
13595         * sysdeps/powerpc/nofpu/flt-rounds.c: Likewise.
13596         * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feclearexcept.c:
13597         Likewise.
13598         * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feholdexcept.c:
13599         Likewise.
13600         * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feupdateenv.c:
13601         Likewise.
13602         * sysdeps/powerpc/powerpc32/e500/nofpu/flt-rounds.c: Likewise.
13603         * sysdeps/powerpc/nofpu/Makefile [$(subdir) = soft-fp]
13604         (sysdep_routines): Add atomic-feholdexcept, atomic-feclearexcept,
13605         atomic-feupdateenv and flt-rounds.
13606         * sysdeps/powerpc/nofpu/Versions (libc): Add
13607         __atomic_feholdexcept, __atomic_feclearexcept,
13608         __atomic_feupdateenv and __flt_rounds to GLIBC_2.19.
13609         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h
13610         (__feraiseexcept_soft): Declare and use libc_hidden_proto here.
13611         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c
13612         (__feraiseexcept_soft): Don't declare and use libc_hidden_proto
13613         here.
13614         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libc.abilist:
13615         Update.
13617         * manual/arith.texi (FP Exceptions): Document that exceptions may
13618         not be raised when matherr is used.
13619         (Math Error Reporting): Document overflow in directed rounding
13620         modes.  Document that errno may not be set when finite values are
13621         returned on overflow.  Document intent to set errno on underflow
13622         only for underflow to zero.
13624         [BZ #16271]
13625         * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Set
13626         round-to-nearest then adjust result for other rounding modes.
13627         * include/fenv.h (fegetround): Use libm_hidden_proto.
13628         * math/fegetround.c (fegetround): Use libm_hidden_def.
13629         * sysdeps/i386/fpu/fegetround.c (fegetround): Likewise.
13630         * sysdeps/powerpc/fpu/fegetround.c (fegetround): Likewise.
13631         * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Likewise.
13632         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c (fegetround):
13633         Likewise.
13634         * sysdeps/s390/fpu/fegetround.c (fegetround): Likewise.
13635         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
13636         * sysdeps/sparc/fpu/fegetround.c (fegetround): Likewise.
13637         * sysdeps/x86_64/fpu/fegetround.c (fegetround): Likewise.
13639 2013-11-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
13641         [BZ #16077]
13642         * nss/Versions (libnss_files): Add
13643         _nss_files_gethostbyname3_r.
13644         * nss/nss_files/files-hosts.c (_nss_files_gethostbyname3_r):
13645         New function.
13646         (HOST_DB_LOOKUP): Remove macro.
13647         (_nss_files_gethostbyname_r): Implement function without the
13648         HOST_DB_LOOKUP macro.
13649         (_nss_files_gethostbyname2_r): Likewise.
13651 2013-11-28  Ondřej Bílka  <neleai@seznam.cz>
13653         * malloc/malloc.c (__libc_calloc): Make memset a tail call.
13655 2013-11-26  Uros Bizjak  <ubizjak@gmail.com>
13657         * soft-fp/op-4.h (_FP_FRAC_ASSEMBLE_4): Check rsize against
13658         _FP_W_TYPE_SIZE to avoid "left shift count >= width of type"
13659         warning.
13661 2013-11-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13663         * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Use
13664         __fe_nomask_env_priv instead of __fe_nomask_env to avoid a PLT call.
13665         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Likewise.
13666         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Likewise.
13667         * sysdeps/powerpc/fpu/fenv_libc.h (__fe_nomask_env): Rename to
13668         __fe_nomask_env_priv and attribute_hidden.
13669         * sysdeps/powerpc/fpu/fenv_private.h (libc_fesetenv_ppc): Likewise.
13670         (libc_feupdateenv_test_ppc): Likewise.
13671         (libc_feresetround_ppc): Likewise.
13672         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
13673         (__fe_nomask_env): Rename to __fe_nomask_env_priv and adjust
13674         compat_symbol macro.
13675         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
13676         (__fe_nomask_env): Likewise.
13677         * sysdeps/powerpc/fpu/fe_nomask.c (__fe_nomask_env): Likewise.
13679 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
13681         * string/Makefile: Remove ifunc tests.
13682         * string/test-string.h: Define TEST_IFUNC.
13683         * string/test-bcopy-ifunc.c: Remove.
13684         * string/test-bzero-ifunc.c: Likewise.
13685         * string/test-memccpy-ifunc.c: Likewise.
13686         * string/test-memchr-ifunc.c: Likewise.
13687         * string/test-memcmp-ifunc.c: Likewise.
13688         * string/test-memcpy-ifunc.c: Likewise.
13689         * string/test-memmem-ifunc.c: Likewise.
13690         * string/test-memmove-ifunc.c: Likewise.
13691         * string/test-mempcpy-ifunc.c: Likewise.
13692         * string/test-memrchr-ifunc.c: Likewise.
13693         * string/test-memset-ifunc.c: Likewise.
13694         * string/test-rawmemchr-ifunc.c: Likewise.
13695         * string/test-stpcpy-ifunc.c: Likewise.
13696         * string/test-stpncpy-ifunc.c: Likewise.
13697         * string/test-strcasecmp-ifunc.c: Likewise.
13698         * string/test-strcasestr-ifunc.c: Likewise.
13699         * string/test-strcat-ifunc.c: Likewise.
13700         * string/test-strchr-ifunc.c: Likewise.
13701         * string/test-strchrnul-ifunc.c: Likewise.
13702         * string/test-strcmp-ifunc.c: Likewise.
13703         * string/test-strcpy-ifunc.c: Likewise.
13704         * string/test-strcspn-ifunc.c: Likewise.
13705         * string/test-strlen-ifunc.c: Likewise.
13706         * string/test-strncasecmp-ifunc.c: Likewise.
13707         * string/test-strncat-ifunc.c: Likewise.
13708         * string/test-strncmp-ifunc.c: Likewise.
13709         * string/test-strncpy-ifunc.c: Likewise.
13710         * string/test-strnlen-ifunc.c: Likewise.
13711         * string/test-strpbrk-ifunc.c: Likewise.
13712         * string/test-strrchr-ifunc.c: Likewise.
13713         * string/test-strspn-ifunc.c: Likewise.
13714         * string/test-strstr-ifunc.c: Likewise.
13716 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
13718         * benchtests/Makefile: Remove ifunc tests.
13719         * benchtests/bench-string.h: Define TEST_IFUNC.
13720         * benchtests/bench-bcopy-ifunc.c: Remove.
13721         * benchtests/bench-bzero-ifunc.c: Likewise.
13722         * benchtests/bench-memccpy-ifunc.c: Likewise.
13723         * benchtests/bench-memchr-ifunc.c: Likewise.
13724         * benchtests/bench-memcmp-ifunc.c: Likewise.
13725         * benchtests/bench-memcpy-ifunc.c: Likewise.
13726         * benchtests/bench-memmem-ifunc.c: Likewise.
13727         * benchtests/bench-memmove-ifunc.c: Likewise.
13728         * benchtests/bench-mempcpy-ifunc.c: Likewise.
13729         * benchtests/bench-memrchr-ifunc.c: Likewise.
13730         * benchtests/bench-memset-ifunc.c: Likewise.
13731         * benchtests/bench-rawmemchr-ifunc.c: Likewise.
13732         * benchtests/bench-stpcpy_chk-ifunc.c: Likewise.
13733         * benchtests/bench-stpcpy-ifunc.c: Likewise.
13734         * benchtests/bench-stpncpy-ifunc.c: Likewise.
13735         * benchtests/bench-strcasecmp-ifunc.c: Likewise.
13736         * benchtests/bench-strcasestr-ifunc.c: Likewise.
13737         * benchtests/bench-strcat-ifunc.c: Likewise.
13738         * benchtests/bench-strchr-ifunc.c: Likewise.
13739         * benchtests/bench-strchrnul-ifunc.c: Likewise.
13740         * benchtests/bench-strcmp-ifunc.c: Likewise.
13741         * benchtests/bench-strcpy_chk-ifunc.c: Likewise.
13742         * benchtests/bench-strcpy-ifunc.c: Likewise.
13743         * benchtests/bench-strcspn-ifunc.c: Likewise.
13744         * benchtests/bench-strlen-ifunc.c: Likewise.
13745         * benchtests/bench-strncasecmp-ifunc.c: Likewise.
13746         * benchtests/bench-strncat-ifunc.c: Likewise.
13747         * benchtests/bench-strncmp-ifunc.c: Likewise.
13748         * benchtests/bench-strncpy-ifunc.c: Likewise.
13749         * benchtests/bench-strnlen-ifunc.c: Likewise.
13750         * benchtests/bench-strpbrk-ifunc.c: Likewise.
13751         * benchtests/bench-strrchr-ifunc.c: Likewise.
13752         * benchtests/bench-strsep-ifunc.c: Likewise.
13753         * benchtests/bench-strspn-ifunc.c: Likewise.
13754         * benchtests/bench-strstr-ifunc.c: Likewise.
13756 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
13758         * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_resolve_hold): Fix typo.
13760 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
13762         * resolv/netdb.h: Use __glibc_reserved instead __unused.
13763         * rt/aio.h: Likewise.
13764         * sysdeps/gnu/bits/utmp.h: Likewise.
13765         * sysdeps/gnu/bits/utmpx.h: Likewise.
13766         * sysdeps/gnu/netinet/ip_icmp.h: Likewise.
13767         * sysdeps/unix/sysv/linux/bits/ipc.h: Likewise.
13768         * sysdeps/unix/sysv/linux/bits/msq.h: Likewise.
13769         * sysdeps/unix/sysv/linux/bits/sem.h: Likewise.
13770         * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
13771         * sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
13772         * sysdeps/unix/sysv/linux/kernel_stat.h: Likewise.
13773         * sysdeps/unix/sysv/linux/ntp_gettimex.c: Likewise.
13774         * sysdeps/unix/sysv/linux/powerpc/bits/ipc.h: Likewise.
13775         * sysdeps/unix/sysv/linux/powerpc/bits/msq.h: Likewise.
13776         * sysdeps/unix/sysv/linux/powerpc/bits/sem.h: Likewise.
13777         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
13778         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Likewise.
13779         * sysdeps/unix/sysv/linux/powerpc/powerpc32/kernel_stat.h: Likewise.
13780         * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Likewise.
13781         * sysdeps/unix/sysv/linux/s390/bits/ipc.h: Likewise.
13782         * sysdeps/unix/sysv/linux/s390/bits/msq.h: Likewise.
13783         * sysdeps/unix/sysv/linux/s390/bits/sem.h: Likewise.
13784         * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
13785         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
13786         * sysdeps/unix/sysv/linux/s390/bits/utmp.h: Likewise.
13787         * sysdeps/unix/sysv/linux/s390/bits/utmpx.h: Likewise.
13788         * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h: Likewise.
13789         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: Likewise.
13790         * sysdeps/unix/sysv/linux/sh/bits/shm.h: Likewise.
13791         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
13792         * sysdeps/unix/sysv/linux/sparc/bits/ipc.h: Likewise.
13793         * sysdeps/unix/sysv/linux/sparc/bits/msq.h: Likewise.
13794         * sysdeps/unix/sysv/linux/sparc/bits/sem.h: Likewise.
13795         * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
13796         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
13797         * sysdeps/unix/sysv/linux/sparc/sparc32/kernel_stat.h: Likewise.
13798         * sysdeps/unix/sysv/linux/sparc/sparc64/kernel_stat.h: Likewise.
13799         * sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c: Likewise.
13800         * sysdeps/unix/sysv/linux/sparc/sys/procfs.h: Likewise.
13801         * sysdeps/unix/sysv/linux/sys/timex.h: Likewise.
13802         * sysdeps/unix/sysv/linux/x86/bits/msq.h: Likewise.
13803         * sysdeps/unix/sysv/linux/x86/bits/sem.h: Likewise.
13804         * sysdeps/unix/sysv/linux/x86/bits/shm.h: Likewise.
13805         * sysdeps/unix/sysv/linux/x86/bits/stat.h: Likewise.
13806         * sysdeps/unix/sysv/linux/xstatconv.c: Likewise.
13807         * sysdeps/x86/fpu/bits/fenv.h: Likewise.
13809 2013-11-25  Carlos O'Donell  <carlos@redhat.com>
13811         [BZ #16245]
13812         * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_eventcodes):
13813         Rename PTRAVE_EVENT_SECCOMP to PTRACE_EVENT_SECCOMP.
13815 2013-11-25  Joseph Myers  <joseph@codesourcery.com>
13817         * sysdeps/powerpc/nofpu/fenv_libc.h (__fegetround): New macro.
13818         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h (__fegetround):
13819         Likewise.
13821 2013-11-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13823         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Use
13824         SET_RESTORE_ROUND instead of feholdexcept/fesetround/fesetenv.
13825         * sysdeps/powerpc/fpu/fenv_libc.h (__fegetround): Remove define.
13826         (__fesetround): Remove define.
13827         * sysdeps/powerpc/fpu/fenv_private.h: New file: Inline floating point
13828         rounding and exceptions handling.
13829         * sysdeps/powerpc/fpu/math_private.h: Include fenv_private.h.
13830         * sysdeps/powerpc/fpu/fenv_libc.h (__fe_mask_env): Define as hidden.
13831         (__fe_nomask_env): Likewise.
13832         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c (__llrintl): Use
13833         __fegetround instead of fegetround.
13834         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Likewise.
13835         * sysdeps/ieee754/ldbl-128ibm/s_rintl.c (__rintl): Likewise.
13837 2013-11-21  Roland McGrath  <roland@hack.frob.com>
13839         * malloc/malloc.c: Move #include <sys/param.h> to the top; comment why
13840         it's there.
13842         * sysdeps/generic/sys/swap.h (swapon): Add FLAGS argument to prototype.
13844 2013-11-21  Meador Inge  <meadori@codesourcery.com>
13846         [BZ #11157]
13847         * crypt/crypt.h (encrypt): Use __glibc_block instead of __block.
13848         (encrypt_r): Likewise.
13849         * malloc/obstack.h (obstack_free): Likewise.
13850         * posix/unistd.h (encrypt): Likewise.
13852 2013-11-21  Guy Martin  <gmsoft@tuxicoman.be>
13854         * sysdeps/generic/ldsodefs.h: Replace DL_DT_INIT_ADDRESS() and
13855         DL_DT_FINI_ADDRESS() macro with DL_CALL_DT_INIT() and
13856         DL_CALL_DT_FINI() that call the functions directly.
13857         * elf/dl-init.c: Use the new DL_CALL_DT_INIT() macro.
13858         * elf/dl-close.c: Use the new DL_CALL_DT_FINI() macro.
13859         * elf/dl-fini.c: Likewise.
13861 2013-11-20  Ondřej Bílka  <neleai@seznam.cz>
13863         * malloc/hooks.c (memalign_check): Add alignment rounding.
13864         * malloc/malloc.c (_mid_memalign): New function.
13865         (__libc_valloc, __libc_pvalloc, __libc_memalign, __posix_memalign):
13866         Implement by calling _mid_memalign.
13867         * manual/probes.texi (Memory Allocation Probes): Remove
13868         memory_valloc_retry and memory_pvalloc_retry.
13870 2013-11-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
13872         * locale/programs/locarchive.c (open_archive): Add const
13873         qualifier to ARCHIVEFNAME and copy default fname to
13874         DEFAULT_FNAME.
13876         [BZ #15601]
13877         * libio/tst-widetext.input: Rename Oriya to Odia.
13878         * locale/iso-639.def: Likewise.
13880         * manual/probes.texi (Mathematical Function Probes): Add
13881         documentation for sin, cos, asin and acos probes.
13882         * sysdeps/ieee754/dbl-64/sincos32.c: Include stap-probe.h.
13883         (__sin32): Add slowasin probe.
13884         (__cos32): Add slowacos probe.
13885         (__mpsin): Add slowsin probe.
13886         (__mpcos): Add slowcos probe.
13888 2013-11-19  Joseph Myers  <joseph@codesourcery.com>
13890         [BZ #15483]
13891         * sysdeps/powerpc/nofpu/sim-full.c (__sim_exceptions): Change to
13892         thread-local __sim_exceptions_thread and global
13893         __sim_exceptions_global.
13894         (__sim_disabled_exceptions): Change to thread-local
13895         __sim_disabled_exceptions_thread and global
13896         __sim_disabled_exceptions_global.
13897         (__sim_round_mode): Change to thread-local __sim_round_mode_thread
13898         and global __sim_round_mode_global.
13899         (__simulate_exceptions): Use thread-local floating-point state and
13900         set global state from it as needed.
13901         * sysdeps/powerpc/nofpu/Versions (GLIBC_PRIVATE): Add
13902         __sim_exceptions_thread, __sim_disabled_exceptions_thread and
13903         __sim_round_mode_thread.
13904         * sysdeps/powerpc/nofpu/soft-supp.h: Include <shlib-compat.h>.
13905         (__sim_exceptions): Change to thread-local __sim_exceptions_thread
13906         and global __sim_exceptions_global.
13907         (__sim_disabled_exceptions): Change to thread-local
13908         __sim_disabled_exceptions_thread and global
13909         __sim_disabled_exceptions_global.
13910         (__sim_round_mode): Change to thread-local __sim_round_mode_thread
13911         and global __sim_round_mode_global.
13912         [SIM_GLOBAL_COMPAT] (SIM_COMPAT_SYMBOL): New macro.
13913         (SIM_SET_GLOBAL): Likewise.
13914         * sysdeps/powerpc/soft-fp/sfp-machine.h
13915         [!(__NO_FPRS__ && !_SOFT_FLOAT)] (FP_ROUNDMODE): Use
13916         __sim_round_mode_thread.
13917         [!(__NO_FPRS__ && !_SOFT_FLOAT)] (FP_TRAPPING_EXCEPTIONS): Use
13918         __sim_disabled_exceptions_thread.
13919         (__sim_exceptions): Change to __sim_exceptions_thread.
13920         (__sim_disabled_exceptions): Change to
13921         __sim_disabled_exceptions_thread.
13922         (__sim_round_mode): Change to __sim_round_mode_thread.
13923         * sysdeps/powerpc/nofpu/fclrexcpt.c (__feclearexcept): Use
13924         thread-local floating-point state and set global state from it as
13925         needed.
13926         * sysdeps/powerpc/nofpu/fedisblxcpt.c (fedisableexcept): Likewise.
13927         * sysdeps/powerpc/nofpu/feenablxcpt.c: Include "soft-supp.h".
13928         (__sim_disabled_exceptions): Remove extern declaration.
13929         (feenableexcept): Use thread-local floating-point state and set
13930         global state from it as needed.
13931         * sysdeps/powerpc/nofpu/fegetenv.c (__sim_exceptions): Remove
13932         extern declaration.
13933         (__sim_disabled_exceptions): Likewise.
13934         (__sim_round_mode): Likewise.
13935         (__fegetenv): Use thread-local floating-point state.
13936         * sysdeps/powerpc/nofpu/fegetexcept.c (fegetexcept): Likewise.
13937         * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Likewise.
13938         * sysdeps/powerpc/nofpu/fesetenv.c (__fesetenv): Use thread-local
13939         floating-point state and set global state from it as needed.
13940         * sysdeps/powerpc/nofpu/fesetround.c (fesetround): Likewise.
13941         * sysdeps/powerpc/nofpu/feupdateenv.c (__feupdateenv): Likewise.
13942         * sysdeps/powerpc/nofpu/fgetexcptflg.c (__fegetexceptflag):
13943         Likewise.
13944         * sysdeps/powerpc/nofpu/fraiseexcpt.c (__feraiseexcept): Likewise.
13945         * sysdeps/powerpc/nofpu/fsetexcptflg.c (__fesetexceptflag):
13946         Likewise.
13947         sysdeps/powerpc/nofpu/ftestexcept.c (fetestexcept): Likewise.
13948         * sysdeps/powerpc/nofpu/get-rounding-mode.h (get_rounding_mode):
13949         Use __sim_round_mode_thread.
13950         * math/test-fenv-tls.c: New file.
13951         * math/Makefile (tests): Add test-fenv-tls.
13952         ($(objpfx)test-fenv-tls): Depend on
13953         $(common-objpfx)nptl/libpthread.so.
13955 2013-11-19  Andreas Schwab  <schwab@suse.de>
13957         * locale/programs/locale.c (show_info): Decode wordarray elements.
13958         * locale/categories.def (LC_MONETARY): Add element for
13959         _NL_MONETARY_CRNCYSTR.
13960         * locale/C-monetary.c (conversion_rate): New variable.
13961         (_nl_C_LC_MONETARY): Use it for _NL_MONETARY_CONVERSION_RATE
13962         element.
13964 2013-11-18  Chris Metcalf  <cmetcalf@tilera.com>
13966         * math/test-fpucw-ieee.c [!defined _FPU_IEEE] (FPU_CONTROL):
13967         Omit definition of FPU_CONTROL and use default if no _FPU_IEEE.
13969 2013-11-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
13971         * elf/Makefile (tst-auxv): New test.
13972         * elf/tst-auxv.c: New
13973         * elf/rtld.c (dl_main): Adjust AT_EXECFN
13975 2013-11-18  Joseph Myers  <joseph@codesourcery.com>
13977         * include/libc-symbols.h (__hidden_proto): Add argument "thread".
13978         (hidden_proto): Caller changed.
13979         (hidden_tls_proto): New macro.
13980         (libc_hidden_tls_proto): Likewise.
13981         (rtld_hidden_tls_proto): Likewise.
13982         (libm_hidden_tls_proto): Likewise.
13983         (libresolv_hidden_tls_proto): Likewise.
13984         (librt_hidden_tls_proto): Likewise.
13985         (libdl_hidden_tls_proto): Likewise.
13986         (libnss_files_hidden_tls_proto): Likewise.
13987         (libnsl_hidden_tls_proto): Likewise.
13988         (libnss_nisplus_hidden_tls_proto): Likewise.
13989         (libutil_hidden_tls_proto): Likewise.
13991 2013-11-18  Ondřej Bílka  <neleai@seznam.cz>
13993         [BZ #10253]
13994         * elf/dl-load.c (fillin_rpath): Add linkmap parameter and expand path.
13995         (decompose_rpath): Defer expansion to fillin_rpath.
13996         (_dl_init_paths): Pass linkmap to fillin_rpath.
13998 2013-11-18  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
14000         * benchtests/Makefile: Add strsep.
14001         * benchtests/bench-strsep.c: New file: strsep benchtest.
14002         * benchtests/bench-strsep-ifunc.c: New file: strsep benchtest.
14004 2013-11-18  Andreas Schwab  <schwab@suse.de>
14006         * locale/programs/locale.c (show_info) [case byte]: Check for
14007         '\377' instead of '\177'.
14008         * locale/C-monetary.c (not_available): Always use "\377".
14009         * stdlib/strfmon_l.c (__vstrfmon_l): Use -2 as marker for
14010         unspecified p_sign_posn and n_sign_posn.  Check for '\377' to
14011         detect unavailable sign_posn locale elements.
14012         * locale/localeconv.c (__localeconv): For grouping and
14013         mon_grouping handle "\177" and "\377" like no grouping.
14014         (INT_ELEM): New macro.  Use it to set all numeric members.
14015         * locale/programs/ld-monetary.c (monetary_read)
14016         <tok_mon_grouping>: Normalize single -1 to the empty string.
14017         * locale/programs/ld-numeric.c (numeric_read) <tok_grouping>:
14018         Likewise.
14020 2013-11-07  Ondřej Bílka  <neleai@seznam.cz>
14022         [BZ #16055]
14023         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Limit width
14024         when we match (nil).
14025         * stdio-common/tst-sscanf.c (struct test): Add testcase.
14027 2013-11-16  Joseph Myers  <joseph@codesourcery.com>
14029         * math/libm-test.inc (TEST_NAN_SIGN): New macro.
14030         (NO_TEST_INLINE): Update value.
14031         (ERRNO_UNCHANGED): Likewise.
14032         (ERRNO_EDOM): Likewise.
14033         (ERRNO_ERANGE): Likewise.
14034         (IGNORE_RESULT): Likewise.
14035         (check_float_internal): Check signs of NaN results if
14036         TEST_NAN_SIGN used.
14037         (check_complex): Pass TEST_NAN_SIGN flag through to second
14038         check_float_internal call.
14039         (copysign_test_data): Add tests with quiet NaNs as second
14040         argument.  Use TEST_NAN_SIGN.
14041         (fabs_test_data): Add test of negative quiet NaN argument.  Use
14042         TEST_NAN_SIGN.
14043         (signbit_test_data): Add tests of quiet NaN argument.
14044         * math/gen-libm-test.pl (parse_args): Handle TEST_NAN_SIGN.
14046         * math/gen-libm-test.pl (show_exceptions): Take extra argument
14047         $ignore_result.
14048         (parse_args): Handle function results specified as IGNORE.
14049         * math/libm-test.inc (IGNORE_RESULT): New macro.
14050         (check_float_internal): Do not check numerical result if flag
14051         IGNORE_RESULT set.
14052         (check_complex): Pass through IGNORE_RESULT to second
14053         check_float_internal call.
14054         (check_int): Do not check numerical result if flag IGNORE_RESULT
14055         set.
14056         (check_long): Likewise.
14057         (check_bool): Likewise.
14058         (check_longlong): Likewise.
14059         (lrint_test_data): Add tests of infinite and NaN arguments.
14060         (lrint_tonearest_test_data): Likewise.
14061         (lrint_towardzero_test_data): Likewise.
14062         (lrint_downward_test_data): Likewise.
14063         (lrint_upward_test_data): Likewise.
14064         (llrint_test_data): Likewise.
14065         (llrint_tonearest_test_data): Likewise.
14066         (llrint_towardzero_test_data): Likewise.
14067         (llrint_downward_test_data): Likewise.
14068         (llrint_upward_test_data): Likewise.
14069         (lround_test_data): Likewise.
14070         (llround_test_data): Likewise.
14072         * math/libm-test.inc (NO_TEST_INLINE): New macro.
14073         (ERRNO_UNCHANGED): Update value.
14074         (ERRNO_EDOM): Likewise.
14075         (ERRNO_ERANGE): Likewise.
14076         (NO_TEST_INLINE_FLOAT): New macro.
14077         (NO_TEST_INLINE_DOUBLE): Likewise.
14078         (enable_test): New function.
14079         (RUN_TEST_f_f): Check enable_test before running test.
14080         (RUN_TEST_2_f): Likewise.
14081         (RUN_TEST_fff_f): Likewise.
14082         (RUN_TEST_c_f): Likewise.
14083         (RUN_TEST_f_f1): Likewise.
14084         (RUN_TEST_fF_f1): Likewise.
14085         (RUN_TEST_fI_f1): Likewise.
14086         (RUN_TEST_ffI_f1): Likewise.
14087         (RUN_TEST_c_c): Likewise.
14088         (RUN_TEST_cc_c): Likewise.
14089         (RUN_TEST_f_i): Likewise.
14090         (RUN_TEST_f_i_tg): Likewise.
14091         (RUN_TEST_ff_i_tg): Likewise.
14092         (RUN_TEST_f_b): Likewise.
14093         (RUN_TEST_f_b_tg): Likewise.
14094         (RUN_TEST_f_l): Likewise.
14095         (RUN_TEST_f_L): Likewise.
14096         (RUN_TEST_fFF_11): Likewise.
14097         (asinh_test_data): Use NO_TEST_INLINE instead of [!TEST_INLINE]
14098         conditionals.
14099         (cosh_test_data): Likewise.
14100         (exp_test_data): Likewise.
14101         (expm1_test_data): Likewise.
14102         (hypot_test_data): Likewise.
14103         (pow_test_data): Likewise.
14104         (sinh_test_data): Likewise.
14105         (tanh_test_data): Likewise.
14106         * math/gen-libm-test.pl (parse_args): Allow NO_TEST_INLINE as
14107         flags argument.
14109         * libm-test.inc (acos_test_data): Disallow inexact exceptions for
14110         tests with quiet NaN input and output.
14111         (acosh_test_data): Likewise.
14112         (asin_test_data): Likewise.
14113         (asinh_test_data): Likewise.
14114         (atan_test_data): Likewise.
14115         (atanh_test_data): Likewise.
14116         (atan2_test_data): Likewise.
14117         (cbrt_test_data): Likewise.
14118         (cos_test_data): Likewise.
14119         (cosh_test_data): Likewise.
14120         (erf_test_data): Likewise.
14121         (erfc_test_data): Likewise.
14122         (exp_test_data): Likewise.
14123         (exp10_test_data): Likewise.
14124         (exp2_test_data): Likewise.
14125         (expm1_test_data): Likewise.
14126         (hypot_test_data): Likewise.
14127         (j0_test_data): Likewise.
14128         (j1_test_data): Likewise.
14129         (jn_test_data): Likewise.
14130         (lgamma_test_data): Likewise.
14131         (log_test_data): Likewise.
14132         (log10_test_data): Likewise.
14133         (log1p_test_data): Likewise.
14134         (log2_test_data): Likewise.
14135         (pow_test_data): Likewise.
14136         (scalb_test_data): Likewise.
14137         (sin_test_data): Likewise.
14138         (sincos_test_data): Likewise.
14139         (sinh_test_data): Likewise.
14140         (tan_test_data): Likewise.
14141         (tanh_test_data): Likewise.
14142         (tgamma_test_data): Likewise.
14143         (y0_test_data): Likewise.
14144         (y1_test_data): Likewise.
14145         (yn_test_data): Likewise.
14147         [BZ #16167]
14148         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Check for first
14149         argument being NaN and avoid computations with second argument in
14150         that case.
14151         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
14152         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
14153         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
14155 2013-11-15  Arun Kumar Pyasi <arun@chitwanix.com>
14157         * locale/iso-639.def: Add Chitwani Tharu (the).
14159 2013-11-14  Andreas Schwab  <schwab@suse.de>
14161         * locale/C-address.c (_nl_C_LC_ADDRESS): Set country_num to zero
14162         word instead of empty string.
14164 2013-11-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14166         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
14167         (__fe_nomask_env): Fir compat symbol to be remove for GLIBC_2.19.
14168         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
14169         (__fe_nomask_env): Likewise.
14171 2013-11-13  Steve Ellcey  <sellcey@mips.com>
14173         * benchtests/bench-timing.h: Include time.h.
14175 2013-11-13  H.J. Lu  <hongjiu.lu@intel.com>
14177         [BZ #15997]
14178         * sysdeps/unix/sysv/linux/configure.ac (arch_minimum_kernel): Set
14179         to 3.4.0 for x32.
14180         * sysdeps/unix/sysv/linux/configure: Regenerated.
14182 2013-11-13  Joseph Myers  <joseph@codesourcery.com>
14184         [BZ #16151]
14185         * stdlib/strtod_l.c (round_and_return): Do not consider
14186         retval[RETURN_LIBM_SIZE - 1] when determining more_bits for an
14187         exponent one less than half the least subnormal exponent.
14188         * stdlib/test-strtod-round-data: Add more tests.
14189         * stdlib/tst-strtod-round.c (tests): Regenerated.
14191 2013-11-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14193         [BZ #14143]
14194         * sysdeps/powerpc/bits/fenv.h (__fe_nomask_env): Remove declaration.
14195         (__fe_mask_env): Likewise.
14196         * sysdeps/powerpc/fpu/fenv_libc.h (__fe_nomask_env): Remove
14197         libm_hidden_proto and add function prototype.
14198         (__fe_mask_env): Add function prototype.
14199         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
14200         (__fe_nomask_env): Add compat symbol for GLIBC_2.1.
14201         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c
14202         (__fe_mask_env): Remove compiler warnings regarding ununsed variables.
14203         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
14204         (__fe_nomask_env): Add compat symbol for GLIBC_2.3.
14206 2013-11-13  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
14208         * elf/dl-lookup.c (_dl_lookup_symbol_x): If UNDEF_MAP is false
14209         set reference_name to "" to avoid passing NULL to DSO_FILENAME.
14211 2013-11-13  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
14213         * elf/tlsdeschtab.h (_dl_make_tlsdesc_dynamic): Handle failure
14214         of htab_find_slot().
14216 2013-11-11  David S. Miller  <davem@davemloft.net>
14218         [BZ #16150]
14219         * sysdeps/sparc/sparc64/multiarch/add_n.S: Resolve to the correct generic
14220         symbol in the non-vis3 case in static builds.
14221         * sysdeps/sparc/sparc64/multiarch/addmul_1.S: Likewise.
14222         * sysdeps/sparc/sparc64/multiarch/mul_1.S: Likewise.
14223         * sysdeps/sparc/sparc64/multiarch/sub_n.S: Likewise.
14224         * sysdeps/sparc/sparc64/multiarch/submul_1.S: Likewise.
14226 2013-11-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
14228         [BZ #387]
14229         * elf/dl-object.c (_dl_new_object): Initialize L_NAME from NEWNAME if
14230         it is empty.
14232 2013-11-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14234         * benchtests/Makefile: Add bench-strtod.
14235         * benchtests/bench-strtod.c: New file: strtod benchtest
14237 2013-11-11  Andreas Schwab  <schwab@suse.de>
14239         [BZ #16153]
14240         * nscd/nscd_getserv_r.c (__nscd_getservbyport_r): Don't include
14241         terminating NUL in key length.
14243 2013-11-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14245         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
14246         Add artificial ODP entry for vDSO symbol for PPC64.
14247         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Adjust includes.
14248         * sysdeps/unix/sysv/linux/powerpc/time.c: Likewise.
14250 2013-11-07  Ondřej Bílka  <neleai@seznam.cz>
14252         [BZ #15374]
14253         * nss/getent.c (services_keys): Recognize services starting with digit.
14255 2013-11-06  David S. Miller  <davem@davemloft.net>
14257         [BZ #15985]
14258         * sysdeps/sparc/sparc32/fpu/s_fdim.S (__fdim): Do not use fnegd
14259         on pre-v9 cpus, use a fnegs+fmovs sequence instead.
14261 2013-11-06  Will Newton  <will.newton@linaro.org>
14263         * manual/memory.texi (Malloc Examples): Remove register
14264         keyword from examples.
14266 2013-11-04  Chris Leonard  <cjl@sugarlabs.org>
14268         * locale/iso-639.def: Correct Walaita (wal) and add Unami Delaware (unm).
14270 2013-11-04  Joseph Myers  <joseph@codesourcery.com>
14272         [BZ #6981]
14273         * include/stdc-predef.h [__GCC_IEC_559] (__STDC_IEC_559__): Define
14274         depending on [__GCC_IEC_559 > 0].
14275         [__GCC_IEC_559_COMPLEX] (__STDC_IEC_559_COMPLEX__): Define
14276         depending on [__GCC_IEC_559_COMPLEX > 0].
14278 2013-11-03  Chris Leonard  <cjl@sugarlabs.org>
14280         * locale/iso-639.def: Add Quechua, Southern (quz) and Silesian (szl)
14281         to iso-639.def.
14283 2013-11-03  Ondřej Bílka  <neleai@seznam.cz>
14285         * elf/rtld.c: Remove unused NONTLS_INIT_TP.
14287 2013-11-01  Ondřej Bílka  <neleai@seznam.cz>
14289         [BZ #16112]
14290         * malloc/malloc (malloc_info): Do not handle first bin as
14291         special case.
14293 2013-11-01  Chris Leonard  <cjl@sugarlabs.org>
14295         * locale/iso-639.def: Add Central Nahuatl (nhn).
14297 2013-11-01  Bruno Haible  <bruno@clisp.org>
14299         [BZ #7003]
14300         * manual/math.texi (BSD Random): Specify range upper bound as
14301         in POSIX.
14303 2013-10-31  Chris Leonard  <cjl@sugarlabs.org>
14305         * locale/iso-639.def: Add Meadow Mari (mhr).
14307 2013-10-31  Ondřej Bílka  <neleai@seznam.cz>
14309         [BZ #14752], [BZ #15763]
14310         * sysdeps/unix/sysv/linux/shm_open.c (shm_open, shm_unlink):
14311         Validate name.
14312         * rt/tst_shm.c: Add test for escaping directory.
14314 2013-10-31  Andreas Schwab  <schwab@suse.de>
14316         [BZ #15917]
14317         * stdio-common/vfscanf.c (_IO_vfwscanf): Handle leading '0' not
14318         followed by 'x' as part of digit sequence.
14319         * stdio-common/tst-sscanf.c (double_tests2): New tests.
14321 2013-10-31  Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
14323         [BZ #16037]
14324         * configure.ac: allow GNU Make 4.0 and greater.
14325         * configure: Regenerated.
14327 2013-10-30  Will Newton  <will.newton@linaro.org>
14329         [BZ #16038]
14330         * malloc/hooks.c (memalign_check): Limit alignment to the
14331         maximum representable power of two.
14332         * malloc/malloc.c (__libc_memalign): Likewise.
14333         * malloc/tst-memalign.c (do_test): Add test for very
14334         large alignment values.
14335         * malloc/tst-posix_memalign.c (do_test): Likewise.
14337 2013-10-30  Ondřej Bílka  <neleai@seznam.cz>
14339         [BZ #11087]
14340         * malloc/malloc.c (sysmalloc): Compute statistics atomically.
14341         (munmap_chunk): Likewise.
14342         (mremap_chunk): Likewise.
14344 2013-10-30  Ondřej Bílka  <neleai@seznam.cz>
14346         [BZ #15799]
14347         * stdlib/div.c (div): Remove obsolete code.
14348         * stdlib/ldiv.c (ldiv): Likewise.
14349         * stdlib/lldiv.c (lldiv): Likewise.
14351 2013-10-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
14353         [BZ #16071]
14354         * nss/nss_files/files-XXX.c (get_contents_ret): New
14355         enumerator.
14356         (get_contents): New function.
14357         (internal_getent): Use it.  Expand size of LINEBUFLEN.
14359 2013-10-30  Mike Frysinger  <vapier@gentoo.org>
14361         * configure.in: Moved to ...
14362         * configure.ac: ... here. Change reference to configure.in
14363         to configure.ac.
14364         * sysdeps/arm/preconfigure.ac: ... here.
14365         configure.in to configure.ac.
14366         * sysdeps/gnu/configure.in: Moved to ...
14367         * sysdeps/gnu/configure.ac: ... here.
14368         * sysdeps/i386/configure.in: Moved to ...
14369         * sysdeps/i386/configure.ac: ... here.
14370         * sysdeps/ieee754/ldbl-opt/configure.in: Moved to ...
14371         * sysdeps/ieee754/ldbl-opt/configure.ac: ... here.
14372         * sysdeps/mach/configure.in: Moved to ...
14373         * sysdeps/mach/configure.ac: ... here.
14374         * sysdeps/mach/hurd/configure.in: Moved to ...
14375         * sysdeps/mach/hurd/configure.ac: ... here.
14376         * sysdeps/powerpc/configure.in: Moved to ...
14377         * sysdeps/powerpc/configure.ac: ... here.
14378         * sysdeps/powerpc/powerpc32/configure.in: Moved to ...
14379         * sysdeps/powerpc/powerpc32/configure.ac: ... here.
14380         * sysdeps/powerpc/powerpc64/configure.in: Moved to ...
14381         * sysdeps/powerpc/powerpc64/configure.ac: ... here.
14382         * sysdeps/s390/s390-32/configure.in: Moved to ...
14383         * sysdeps/s390/s390-32/configure.ac: ... here.
14384         * sysdeps/s390/s390-64/configure.in: Moved to ...
14385         * sysdeps/s390/s390-64/configure.ac: ... here.
14386         * sysdeps/sh/configure.in: Moved to ...
14387         * sysdeps/sh/configure.ac: ... here.
14388         * sysdeps/sparc/configure.in: Moved to ...
14389         * sysdeps/sparc/configure.ac: ... here.
14390         * sysdeps/unix/sysv/linux/configure.in: Moved to ...
14391         * sysdeps/unix/sysv/linux/configure.ac: ... here.
14392         * sysdeps/unix/sysv/linux/powerpc/configure.in: Moved to ...
14393         * sysdeps/unix/sysv/linux/powerpc/configure.ac: ... here.
14394         * sysdeps/x86_64/configure.in: Moved to ...
14395         * sysdeps/x86_64/configure.ac: ... here.
14396         * sysdeps/x86_64/preconfigure.in: Moved to ...
14397         * sysdeps/x86_64/preconfigure.ac: ... here.
14398         * aclocal.m4: Change reference to configure.in to configure.ac.
14399         * config.h.in: Likewise.
14400         * manual/install.texi: Likewise.
14401         * manual/maint.texi: Likewise.
14402         * Makefile: Likewise.
14403         * malloc/Makefile: Likewise.
14404         * nscd/Makefile: Likewise.
14405         * Makeconfig: Change reference to configure.in and
14406         preconfigure.in to configure.ac and preconfigure.ac
14407         respectively.
14408         * INSTALL: Regenerated.
14409         * configure: Likewise.
14410         * sysdeps/gnu/configure: Likewise.
14411         * sysdeps/i386/configure: Likewise.
14412         * sysdeps/ieee754/ldbl-opt/configure: Likewise.
14413         * sysdeps/mach/configure: Likewise.
14414         * sysdeps/mach/hurd/configure: Likewise.
14415         * sysdeps/powerpc/configure: Likewise.
14416         * sysdeps/powerpc/powerpc32/configure: Likewise.
14417         * sysdeps/powerpc/powerpc64/configure: Likewise.
14418         * sysdeps/s390/s390-32/configure: Likewise.
14419         * sysdeps/s390/s390-64/configure: Likewise.
14420         * sysdeps/sh/configure: Likewise.
14421         * sysdeps/sparc/configure: Likewise.
14422         * sysdeps/unix/sysv/linux/configure: Likewise.
14423         * sysdeps/unix/sysv/linux/powerpc/configure: Likewise.
14424         * sysdeps/x86_64/configure: Likewise.
14425         * sysdeps/x86_64/preconfigure: Likewise.
14427 2013-10-29  Andreas Schwab  <schwab@suse.de>
14429         * stdio-common/Makefile (tst-swscanf-ENV): Define.
14431 2013-10-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
14433         * benchtests/pow-inputs: Add new inputs.
14435         * benchtests/exp-inputs: Add new inputs.
14437         * sysdeps/ieee754/dbl-64/sincos32.c (__sin32): Consolidate
14438         conditional check for return value.
14439         (__cos32): Likewise.
14441 2013-10-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14443         * sysdeps/powerpc/powerpc64/strcpy.S (strcpy): Add word load/store
14444         to provide a boost for large inputs with word alignment.
14445         * sysdeps/powerpc/powerpc64/stpcpy.S (__stpcpy): Rewrite
14446         implementation based on optimized PPC64 strcpy.
14447         * sysdeps/powerpc/powerpc64/power7/strcpy.S: New file: optimized
14448         strcpy for PPC64/POWER7 based on both doubleword and word load/store.
14449         * sysdeps/powerpc/powerpc64/power7/stpcpy.S: New file: optimized
14450         stpcpy for PPC64/POWER7 based on PPC64/POWER7 strcpy.
14452 2013-10-25   Ondřej Bílka  <neleai@seznam.cz>
14454         [BZ #2801]
14455         * manual/socket.texi (Host Names): Fix gethostbyname_r example.
14457 2013-10-25   Ondřej Bílka  <neleai@seznam.cz>
14459         [BZ #14876]
14460         * time/strptime_l.c (__strptime_internal): 14876 Read timezone entry.
14461         * time/tst-strptime.c (day_tests): Add testcase.
14463 2013-10-25   Ondřej Bílka  <neleai@seznam.cz>
14465         [BZ #14029]
14466         * manual/pattern.texi: Acknowledge that fnmatch can fail.
14468 2013-10-25  Fabrice Bauzac  <fbauzac@debian71.nce.amadeus.net>
14470         [BZ #16074]
14471         * manual/llio.texi (Memory-mapped I/O): Indicate that mmap returns
14472         MAP_FAILED on error.
14474 2013-10-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
14476         [BZ #16072]
14477         * sysdeps/posix/getaddrinfo.c (gethosts): Allocate tmpbuf on
14478         heap for large requests.
14480 2013-10-25  Aurelien Jarno  <aurelien@aurel32.net>
14482         [BZ #9954]
14483         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): do not assign native
14484         result if the result has no associated interface.
14485         * sysdeps/posix/getaddrinfo.c (getaddrinfo): correctly detect
14486         interface for all 127.X.Y.Z addresses.
14488 2013-10-24  Chris Leonard  <cjl@sugarlabs.org>
14490         * locale/iso-639.def: Add Ligurian (lij)
14492 2013-10-21  Ondřej Bílka  <neleai@seznam.cz>
14494         [BZ #15825]
14495         * sunrpc/rpc_main.c: Document rpcgen -5.
14497 2013-10-19  Michael Stahl  <mstahl@redhat.com>
14499         * elf/rtld.c (do_preload): Print the reason why preloading failed.
14501 2013-10-19  Ondřej Bílka  <neleai@seznam.cz>
14503         [BZ #10278]
14504         * posix/glob.c: Match only directories when trailing slash is present.
14505         * posix/tst-gnuglob.c (my_opendir): Do not open files.
14506         (main): Add testcase.
14508 2013-10-19  Ondřej Bílka  <neleai@seznam.cz>
14510         [BZ #15670]
14511         * time/tzfile.c (__tzfile_read): Replace alloca with malloc.
14513 2013-10-18  Carlos O'Donell  <carlos@redhat.com>
14515         * manual/crypt.texi (Cryptographic Functions): Using SunRPC and
14516         AUTH_DES will prevent FIPS 140-2 compliance. Add vindex for
14517         AUTH_DES and cindex for FIPS 140-2.
14518         (DES Encryption): Add cindex FIPS 46-3.
14520         * locale/locarchive.h (struct locarhandle): Add fname.
14521         * locale/programs/localedef.c (main): Pass ARGV[remaining]
14522         if an optional argument was specified to --list-archive,
14523         otherwise NULL.
14524         * locale/programs/locarchive.c (show_archive_content): Take new
14525         argument fname and pass it via ah.fname to open_archive.
14526         * locale/programs/localedef.h: Update decl.
14527         (open_archive): If AH->fname is non-null, open that file
14528         rather than the default file name, and don't ignore ENOENT.
14529         (create_archive): Set AH.fname to NULL.
14530         (delete_locales_from_archive): Likewise.
14531         (add_locales_to_archive): Likewise.
14532         * locale/programs/locfile.c (write_all_categories): Likewise.
14534 2013-10-18  Joseph Myers  <joseph@codesourcery.com>
14535             Aldy Hernandez  <aldyh@redhat.com>
14537         * sysdeps/powerpc/powerpc32/e500/nofpu/Makefile: New file.
14538         * sysdeps/powerpc/powerpc32/e500/nofpu/fclrexcpt.c: Likewise.
14539         * sysdeps/powerpc/powerpc32/e500/nofpu/fe_note_change.c: Likewise.
14540         * sysdeps/powerpc/powerpc32/e500/nofpu/fedisblxcpt.c: Likewise.
14541         * sysdeps/powerpc/powerpc32/e500/nofpu/feenablxcpt.c: Likewise.
14542         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c: Likewise.
14543         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetexcept.c: Likewise.
14544         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c: Likewise.
14545         * sysdeps/powerpc/powerpc32/e500/nofpu/feholdexcpt.c: Likewise.
14546         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_const.c: Likewise.
14547         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h: Likewise.
14548         * sysdeps/powerpc/powerpc32/e500/nofpu/fesetenv.c: Likewise.
14549         * sysdeps/powerpc/powerpc32/e500/nofpu/fesetround.c: Likewise.
14550         * sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c: Likewise.
14551         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_prctl.c:
14552         Likewise.
14553         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_spe.c:
14554         Likewise.
14555         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_prctl.c:
14556         Likewise.
14557         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_spe.c:
14558         Likewise.
14559         * sysdeps/powerpc/powerpc32/e500/nofpu/fgetexcptflg.c: Likewise.
14560         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c:
14561         Likewise.
14562         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcpt.c: Likewise.
14563         * sysdeps/powerpc/powerpc32/e500/nofpu/fsetexcptflg.c: Likewise.
14564         * sysdeps/powerpc/powerpc32/e500/nofpu/ftestexcept.c: Likewise.
14565         * sysdeps/powerpc/powerpc32/e500/nofpu/get-rounding-mode.h:
14566         Likewise.
14567         * sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S: Likewise.
14568         * sysdeps/powerpc/powerpc32/e500/nofpu/spe-raise.c: Likewise.
14569         * sysdeps/powerpc/preconfigure: Likewise.
14570         * sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nofpu/Implies:
14571         Likewise.
14572         * sysdeps/powerpc/nofpu/soft-supp.h [__NO_FPRS__ && !_SOFT_FLOAT]:
14573         Replace contents of file by #include of <fenv_libc.h>.
14574         * sysdeps/powerpc/soft-fp/sfp-machine.h
14575         [__NO_FPRS__ && !_SOFT_FLOAT]: Include <fenv_libc.h>, <sysdep.h>
14576         and <sys/prctl.h>.
14577         [__NO_FPRS__ && !_SOFT_FLOAT] (__feraiseexcept_soft): Declare.
14578         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_INEXACT): Define macro.
14579         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_INVALID): Likewise.
14580         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_DIVZERO): Likewise.
14581         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_UNDERFLOW): Likewise.
14582         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_OVERFLOW): Likewise.
14583         [__NO_FPRS__ && !_SOFT_FLOAT] (_FP_DECL_EX): Likewise.
14584         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_INIT_ROUNDMODE): Likewise.
14585         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_INIT_EXCEPTIONS): Likewise.
14586         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_HANDLE_EXCEPTIONS): Likewise.
14587         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_ROUNDMODE): Likewise.
14588         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_TRAPPING_EXCEPTIONS): Likewise.
14589         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
14590         Allow copysignl PLT reference to be missing.
14592 2013-10-18  Richard Sandiford  <richard@codesourcery.com>
14593             Joseph Myers  <joseph@codesourcery.com
14595         [BZ #15948]
14596         * locale/programs/ld-collate.c (new_element): Handle <U0000> as a
14597         single character.
14598         (add_to_tablewc): Assert sequence of wide characters is nonempty.
14600 2013-10-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
14602         * elf/tst-tls-dlinfo.c: Don't include tls.h.
14603         * elf/tst-tls1.c: Likewise.
14604         * elf/tst-tls10.h: Likewise.
14605         * elf/tst-tls14.c: Likewise.
14606         * elf/tst-tls2.c: Likewise.
14607         * elf/tst-tls3.c: Likewise.
14608         * elf/tst-tls4.c: Likewise.
14609         * elf/tst-tls5.c: Likewise.
14610         * elf/tst-tls6.c: Likewise.
14611         * elf/tst-tls7.c: Likewise.
14612         * elf/tst-tls8.c: Likewise.
14613         * elf/tst-tls9.c: Likewise.
14614         * elf/tst-tlsmod1.c: Likewise.
14615         * elf/tst-tlsmod13.c: Likewise.
14616         * elf/tst-tlsmod13a.c: Likewise.
14617         * elf/tst-tlsmod14a.c: Likewise.
14618         * elf/tst-tlsmod16a.c: Likewise.
14619         * elf/tst-tlsmod16b.c: Likewise.
14620         * elf/tst-tlsmod2.c: Likewise.
14621         * elf/tst-tlsmod3.c: Likewise.
14622         * elf/tst-tlsmod4.c: Likewise.
14623         * elf/tst-tlsmod5.c: Likewise.
14624         * elf/tst-tlsmod6.c: Likewise.
14626 2013-10-18  Ondřej Bílka  <neleai@seznam.cz>
14628         [BZ #12486]
14629         * malloc/malloc.c: remove checks for statistics.
14631 2013-10-17  Ondřej Bílka  <neleai@seznam.cz>
14633         [BZ #15277]
14634         * inet/inet_net.c (inet_network): Detect additional invalid strings.
14635         * inet/tst-network.c: Add testcase.
14637 2013-10-17  Andreas Schwab  <schwab@suse.de>
14639         [BZ #15218]
14640         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't use gethostbyaddr
14641         to determine canonical name.
14643 2013-10-17  Ondřej Bílka  <neleai@seznam.cz>
14645         * sysdeps/ieee754/dbl-64/dbl2mpn.c: Fix formatting.
14646         * sysdeps/ieee754/dbl-64/dla.h: Likewise.
14647         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
14648         * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
14649         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
14650         * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
14651         * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
14652         * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
14653         * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
14654         * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
14655         * sysdeps/ieee754/dbl-64/e_ilogb.c: Likewise.
14656         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
14657         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
14658         * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
14659         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
14660         * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
14661         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
14662         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
14663         * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
14664         * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
14665         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
14666         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
14667         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
14668         * sysdeps/ieee754/dbl-64/MathLib.h: Likewise.
14669         * sysdeps/ieee754/dbl-64/mpa-arch.h: Likewise.
14670         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
14671         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
14672         * sysdeps/ieee754/dbl-64/mpn2dbl.c: Likewise.
14673         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
14674         * sysdeps/ieee754/dbl-64/mydefs.h: Likewise.
14675         * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
14676         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
14677         * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
14678         * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
14679         * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
14680         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
14681         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
14682         * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
14683         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
14684         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
14685         * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
14686         * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
14687         * sysdeps/ieee754/dbl-64/s_isinf_ns.c: Likewise.
14688         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
14689         * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
14690         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
14691         * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
14692         * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
14693         * sysdeps/ieee754/dbl-64/s_modf.c: Likewise.
14694         * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
14695         * sysdeps/ieee754/dbl-64/s_remquo.c: Likewise.
14696         * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
14697         * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
14698         * sysdeps/ieee754/dbl-64/s_scalbn.c: Likewise.
14699         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
14700         * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
14701         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
14702         * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
14704 2013-10-17  Joseph Myers  <joseph@codesourcery.com>
14706         [BZ #16041]
14707         * soft-fp/op-common.h (FP_EXTEND): When input is a signaling NaN,
14708         make result into a quiet NaN.
14710 2013-10-16  Joseph Myers  <joseph@codesourcery.com>
14712         * soft-fp/adddf3.c: Fix horizontal whitespace.
14713         * soft-fp/addsf3.c: Likewise.
14714         * soft-fp/addtf3.c: Likewise.
14715         * soft-fp/divdf3.c: Likewise.
14716         * soft-fp/divsf3.c: Likewise.
14717         * soft-fp/divtf3.c: Likewise.
14718         * soft-fp/double.h: Likewise.
14719         * soft-fp/eqdf2.c: Likewise.
14720         * soft-fp/eqsf2.c: Likewise.
14721         * soft-fp/eqtf2.c: Likewise.
14722         * soft-fp/extenddftf2.c: Likewise.
14723         * soft-fp/extended.h: Likewise.
14724         * soft-fp/extendsfdf2.c: Likewise.
14725         * soft-fp/extendsftf2.c: Likewise.
14726         * soft-fp/extendxftf2.c: Likewise.
14727         * soft-fp/fixdfdi.c: Likewise.
14728         * soft-fp/fixdfsi.c: Likewise.
14729         * soft-fp/fixdfti.c: Likewise.
14730         * soft-fp/fixsfdi.c: Likewise.
14731         * soft-fp/fixsfsi.c: Likewise.
14732         * soft-fp/fixsfti.c: Likewise.
14733         * soft-fp/fixtfdi.c: Likewise.
14734         * soft-fp/fixtfsi.c: Likewise.
14735         * soft-fp/fixtfti.c: Likewise.
14736         * soft-fp/fixunsdfdi.c: Likewise.
14737         * soft-fp/fixunsdfsi.c: Likewise.
14738         * soft-fp/fixunsdfti.c: Likewise.
14739         * soft-fp/fixunssfdi.c: Likewise.
14740         * soft-fp/fixunssfsi.c: Likewise.
14741         * soft-fp/fixunssfti.c: Likewise.
14742         * soft-fp/fixunstfdi.c: Likewise.
14743         * soft-fp/fixunstfsi.c: Likewise.
14744         * soft-fp/fixunstfti.c: Likewise.
14745         * soft-fp/floatdidf.c: Likewise.
14746         * soft-fp/floatdisf.c: Likewise.
14747         * soft-fp/floatditf.c: Likewise.
14748         * soft-fp/floatsidf.c: Likewise.
14749         * soft-fp/floatsisf.c: Likewise.
14750         * soft-fp/floatsitf.c: Likewise.
14751         * soft-fp/floattidf.c: Likewise.
14752         * soft-fp/floattisf.c: Likewise.
14753         * soft-fp/floattitf.c: Likewise.
14754         * soft-fp/floatundidf.c: Likewise.
14755         * soft-fp/floatundisf.c: Likewise.
14756         * soft-fp/floatunditf.c: Likewise.
14757         * soft-fp/floatunsidf.c: Likewise.
14758         * soft-fp/floatunsisf.c: Likewise.
14759         * soft-fp/floatunsitf.c: Likewise.
14760         * soft-fp/floatuntidf.c: Likewise.
14761         * soft-fp/floatuntisf.c: Likewise.
14762         * soft-fp/floatuntitf.c: Likewise.
14763         * soft-fp/fmadf4.c: Likewise.
14764         * soft-fp/fmasf4.c: Likewise.
14765         * soft-fp/fmatf4.c: Likewise.
14766         * soft-fp/gedf2.c: Likewise.
14767         * soft-fp/gesf2.c: Likewise.
14768         * soft-fp/getf2.c: Likewise.
14769         * soft-fp/ledf2.c: Likewise.
14770         * soft-fp/lesf2.c: Likewise.
14771         * soft-fp/letf2.c: Likewise.
14772         * soft-fp/muldf3.c: Likewise.
14773         * soft-fp/mulsf3.c: Likewise.
14774         * soft-fp/multf3.c: Likewise.
14775         * soft-fp/negdf2.c: Likewise.
14776         * soft-fp/negsf2.c: Likewise.
14777         * soft-fp/negtf2.c: Likewise.
14778         * soft-fp/op-1.h: Likewise.
14779         * soft-fp/op-2.h: Likewise.
14780         * soft-fp/op-4.h: Likewise.
14781         * soft-fp/op-8.h: Likewise.
14782         * soft-fp/op-common.h: Likewise.
14783         * soft-fp/quad.h: Likewise.
14784         * soft-fp/single.h: Likewise.
14785         * soft-fp/soft-fp.h: Likewise.
14786         * soft-fp/sqrtdf2.c: Likewise.
14787         * soft-fp/sqrtsf2.c: Likewise.
14788         * soft-fp/sqrttf2.c: Likewise.
14789         * soft-fp/subdf3.c: Likewise.
14790         * soft-fp/subsf3.c: Likewise.
14791         * soft-fp/subtf3.c: Likewise.
14792         * soft-fp/truncdfsf2.c: Likewise.
14793         * soft-fp/trunctfdf2.c: Likewise.
14794         * soft-fp/trunctfsf2.c: Likewise.
14795         * soft-fp/trunctfxf2.c: Likewise.
14796         * soft-fp/unorddf2.c: Likewise.
14797         * soft-fp/unordsf2.c: Likewise.
14798         * soft-fp/unordtf2.c: Likewise.
14800 2013-10-15  Joseph Myers  <joseph@codesourcery.com>
14802         * soft-fp/op-2.h (_FP_DIV_MEAT_2_gmp): Remove macro.
14803         * soft-fp/soft-fp.h (FP_UNSET_EXCEPTION): Likewise.
14805 2013-10-15   Ondřej Bílka  <neleai@seznam.cz>
14807         * elf/dl-libc.c: Clear initfini list after freeing.
14809 2013-10-14  Joseph Myers  <joseph@codesourcery.com>
14811         * soft-fp/adddf3.c: Fix vertical whitespace and indentation.
14812         * soft-fp/addsf3.c: Likewise.
14813         * soft-fp/addtf3.c: Likewise.
14814         * soft-fp/divdf3.c: Likewise.
14815         * soft-fp/divsf3.c: Likewise.
14816         * soft-fp/divtf3.c: Likewise.
14817         * soft-fp/double.h: Likewise.
14818         * soft-fp/eqdf2.c: Likewise.
14819         * soft-fp/eqsf2.c: Likewise.
14820         * soft-fp/eqtf2.c: Likewise.
14821         * soft-fp/extenddftf2.c: Likewise.
14822         * soft-fp/extended.h: Likewise.
14823         * soft-fp/extendsfdf2.c: Likewise.
14824         * soft-fp/extendsftf2.c: Likewise.
14825         * soft-fp/extendxftf2.c: Likewise.
14826         * soft-fp/fixdfdi.c: Likewise.
14827         * soft-fp/fixdfsi.c: Likewise.
14828         * soft-fp/fixdfti.c: Likewise.
14829         * soft-fp/fixsfdi.c: Likewise.
14830         * soft-fp/fixsfsi.c: Likewise.
14831         * soft-fp/fixsfti.c: Likewise.
14832         * soft-fp/fixtfdi.c: Likewise.
14833         * soft-fp/fixtfsi.c: Likewise.
14834         * soft-fp/fixtfti.c: Likewise.
14835         * soft-fp/fixunsdfdi.c: Likewise.
14836         * soft-fp/fixunsdfsi.c: Likewise.
14837         * soft-fp/fixunsdfti.c: Likewise.
14838         * soft-fp/fixunssfdi.c: Likewise.
14839         * soft-fp/fixunssfsi.c: Likewise.
14840         * soft-fp/fixunssfti.c: Likewise.
14841         * soft-fp/fixunstfdi.c: Likewise.
14842         * soft-fp/fixunstfsi.c: Likewise.
14843         * soft-fp/fixunstfti.c: Likewise.
14844         * soft-fp/floatdidf.c: Likewise.
14845         * soft-fp/floatdisf.c: Likewise.
14846         * soft-fp/floatditf.c: Likewise.
14847         * soft-fp/floatsidf.c: Likewise.
14848         * soft-fp/floatsisf.c: Likewise.
14849         * soft-fp/floatsitf.c: Likewise.
14850         * soft-fp/floattidf.c: Likewise.
14851         * soft-fp/floattisf.c: Likewise.
14852         * soft-fp/floattitf.c: Likewise.
14853         * soft-fp/floatundidf.c: Likewise.
14854         * soft-fp/floatundisf.c: Likewise.
14855         * soft-fp/floatunsidf.c: Likewise.
14856         * soft-fp/floatunsisf.c: Likewise.
14857         * soft-fp/floatuntidf.c: Likewise.
14858         * soft-fp/floatuntisf.c: Likewise.
14859         * soft-fp/floatuntitf.c: Likewise.
14860         * soft-fp/fmadf4.c: Likewise.
14861         * soft-fp/fmasf4.c: Likewise.
14862         * soft-fp/fmatf4.c: Likewise.
14863         * soft-fp/gedf2.c: Likewise.
14864         * soft-fp/gesf2.c: Likewise.
14865         * soft-fp/getf2.c: Likewise.
14866         * soft-fp/ledf2.c: Likewise.
14867         * soft-fp/lesf2.c: Likewise.
14868         * soft-fp/letf2.c: Likewise.
14869         * soft-fp/muldf3.c: Likewise.
14870         * soft-fp/mulsf3.c: Likewise.
14871         * soft-fp/multf3.c: Likewise.
14872         * soft-fp/negdf2.c: Likewise.
14873         * soft-fp/negsf2.c: Likewise.
14874         * soft-fp/negtf2.c: Likewise.
14875         * soft-fp/op-1.h: Likewise.
14876         * soft-fp/op-2.h: Likewise.
14877         * soft-fp/op-4.h: Likewise.
14878         * soft-fp/op-8.h: Likewise.
14879         * soft-fp/op-common.h: Likewise.
14880         * soft-fp/quad.h: Likewise.
14881         * soft-fp/single.h: Likewise.
14882         * soft-fp/soft-fp.h: Likewise.
14883         * soft-fp/sqrtdf2.c: Likewise.
14884         * soft-fp/sqrtsf2.c: Likewise.
14885         * soft-fp/sqrttf2.c: Likewise.
14886         * soft-fp/subdf3.c: Likewise.
14887         * soft-fp/subsf3.c: Likewise.
14888         * soft-fp/subtf3.c: Likewise.
14889         * soft-fp/truncdfsf2.c: Likewise.
14890         * soft-fp/trunctfdf2.c: Likewise.
14891         * soft-fp/trunctfsf2.c: Likewise.
14892         * soft-fp/trunctfxf2.c: Likewise.
14893         * soft-fp/unorddf2.c: Likewise.
14894         * soft-fp/unordsf2.c: Likewise.
14895         * soft-fp/unordtf2.c: Likewise.
14897 2013-10-14   Ondřej Bílka  <neleai@seznam.cz>
14899         [BZ #15672]
14900         * misc/error.c (error_tail): Fix possible buffer overflow.
14902 2013-10-14  Aurelien Jarno  <aurelien@aurel32.net>
14904         [BZ #13028]
14905         * res_send.c(__libc_res_nsend): Correctly copy the nameserver
14906         address.
14908 2013-10-14  P. J. McDermott  <pj@pehjota.net>
14910         [BZ #832]
14911         * elf/ldd.bash.in (try_trace): New function.  Delete previous code
14912         testing pipefail option.
14914 2013-10-12  Joseph Myers  <joseph@codesourcery.com>
14916         * soft-fp/double.h: Indent preprocessor directives inside #if.
14917         * soft-fp/extended.h: Likewise.
14918         * soft-fp/op-2.h: Likewise.
14919         * soft-fp/op-4.h: Likewise.
14920         * soft-fp/op-common.h: Likewise.
14921         * soft-fp/quad.h: Likewise.
14922         * soft-fp/single.h: Likewise.
14923         * soft-fp/soft-fp.h: Likewise.
14925 2013-10-12   Yuri Chornoivan <yurchor@ukr.net>
14927         * iconv/iconv_prog.c: Fix typos.
14928         * stdio-common/psiginfo-data.h: Likewise.
14930 2013-10-12   Reuben Thomas <rrt@sc3d.org>
14932         [BZ #15764]
14933         * locale/setlocale.c: Fix typo.
14935 2013-10-12  Joseph Myers  <joseph@codesourcery.com>
14937         [BZ #16036]
14938         * soft-fp/unorddf2.c (__unorddf2): Raise "invalid" exception for
14939         signaling NaN arguments.
14940         * soft-fp/unordsf2.c (__unordsf2): Likewise.
14941         * soft-fp/unordtf2.c (__unordtf2): Likewise.
14943         [BZ #14910]
14944         * soft-fp/gedf2.c (__gedf2): Raise "invalid" exception for all
14945         unordered operands.
14946         * soft-fp/gesf2.c (__gesf2): Likewise.
14947         * soft-fp/getf2.c (__getf2): Likewise.
14948         * soft-fp/ledf2.c (__ledf2): Likewise.
14949         * soft-fp/lesf2.c (__lesf2): Likewise.
14950         * soft-fp/letf2.c (__letf2): Likewise.
14952         * soft-fp/eqdf2.c (__eqdf2): Use FP_INIT_EXCEPTIONS.
14953         * soft-fp/eqsf2.c (__eqsf2): Likewise.
14954         * soft-fp/eqtf2.c (__eqtf2): Likewise.
14955         * soft-fp/fixdfdi.c (__fixdfdi): Likewise.
14956         * soft-fp/fixdfsi.c (__fixdfsi): Likewise.
14957         * soft-fp/fixdfti.c (__fixdfti): Likewise.
14958         * soft-fp/fixsfdi.c (__fixsfdi): Likewise.
14959         * soft-fp/fixsfsi.c (__fixsfsi): Likewise.
14960         * soft-fp/fixsfti.c (__fixsfti): Likewise.
14961         * soft-fp/fixtfdi.c (__fixtfdi): Likewise.
14962         * soft-fp/fixtfsi.c (__fixtfsi): Likewise.
14963         * soft-fp/fixtfti.c (__fixtfti): Likewise.
14964         * soft-fp/fixunsdfdi.c (__fixunsdfdi): Likewise.
14965         * soft-fp/fixunsdfsi.c (__fixunsdfsi): Likewise.
14966         * soft-fp/fixunsdfti.c (__fixunsdfti): Likewise.
14967         * soft-fp/fixunssfdi.c (__fixunssfdi): Likewise.
14968         * soft-fp/fixunssfsi.c (__fixunssfsi): Likewise.
14969         * soft-fp/fixunssfti.c (__fixunssfti): Likewise.
14970         * soft-fp/fixunstfdi.c (__fixunstfdi): Likewise.
14971         * soft-fp/fixunstfsi.c (__fixunstfsi): Likewise.
14972         * soft-fp/fixunstfti.c (__fixunstfti): Likewise.
14973         * soft-fp/floatdidf.c (__floatdidf): Use FP_INIT_ROUNDMODE.
14974         * soft-fp/floatdisf.c (__floatdisf): Likewise.
14975         * soft-fp/floatsisf.c (__floatsisf): Likewise.
14976         * soft-fp/floattidf.c (__floattidf): Likewise.
14977         * soft-fp/floattisf.c (__floattisf): Likewise.
14978         * soft-fp/floattitf.c (__floattitf): Likewise.
14979         * soft-fp/floatundidf.c (__floatundidf): Likewise.
14980         * soft-fp/floatundisf.c (__floatundisf): Likewise.
14981         * soft-fp/floatunsisf.c (__floatunsisf): Likewise.
14982         * soft-fp/floatuntidf.c (__floatuntidf): Likewise.
14983         * soft-fp/floatuntisf.c (__floatuntisf): Likewise.
14984         * soft-fp/floatuntitf.c (__floatuntitf): Likewise.
14985         * soft-fp/gedf2.c (__gedf2): Use FP_INIT_EXCEPTIONS.
14986         * soft-fp/gesf2.c (__gesf2): Likewise.
14987         * soft-fp/getf2.c (__getf2): Likewise.
14988         * soft-fp/ledf2.c (__ledf2): Likewise.
14989         * soft-fp/lesf2.c (__lesf2): Likewise.
14990         * soft-fp/letf2.c (__letf2): Likewise.
14992         * soft-fp/soft-fp.h [FP_NO_EXCEPTIONS] (FP_SET_EXCEPTION):
14993         Undefine and redefine.
14994         [FP_NO_EXCEPTIONS] (FP_CUR_EXCEPTIONS): Likewise.
14995         [FP_NO_EXCEPTIONS] (FP_TRAPPING_EXCEPTIONS): Likewise.
14996         [FP_NO_EXCEPTIONS] (FP_ROUNDMODE): Likewise.
14997         * soft-fp/floatditf.c (FP_NO_EXCEPTIONS): Define macro.
14998         (__floatditf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
14999         * soft-fp/floatsidf.c (FP_NO_EXCEPTIONS): Define macro.
15000         (__floatsidf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
15001         * soft-fp/floatsitf.c (FP_NO_EXCEPTIONS): Define macro.
15002         (__floatsitf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
15003         * soft-fp/floatunditf.c (FP_NO_EXCEPTIONS): Define macro.
15004         (__floatunditf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
15005         * soft-fp/floatunsidf.c (FP_NO_EXCEPTIONS): Define macro.
15006         (__floatunsidf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
15007         * soft-fp/floatunsitf.c (FP_NO_EXCEPTIONS): Define macro.
15008         (__floatunsitf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
15010         [BZ #16032]
15011         * soft-fp/op-2.h (_FP_DIV_MEAT_2_udiv): Shift numerator right
15012         without decrementing exponent if mantissa >= that for the
15013         denominator, not >.
15014         (_FP_DIV_MEAT_2_gmp): Test numerator mantissa >= that for the
15015         denominator, not >.  Decrement exponent in < case instead of
15016         incrementing in >= case.
15017         * soft-fp/op-4.h (_FP_DIV_MEAT_4_udiv): Shift numerator right
15018         without decrementing exponent if mantissa >= that for the
15019         denominator, not >.
15021         * soft-fp/op-common.h (_FP_TO_INT): Reverse test of sign for
15022         computing saturated result for unsigned overflow.
15024 2013-10-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
15025             Jeff Law  <law@redhat.com>
15027         * sysdeps/ieee754/dbl-64/e_atan2.c: Include stap-probe.h.
15028         (atan2Mp): Add systemtap probe marker.
15029         * sysdeps/ieee754/dbl-64/e_log.c: include stap-probe.h.
15030         (__ieee754_log): Add systemtap probe marker.
15031         * sysdeps/ieee754/dbl-64/s_atan.c: Include stap-probe.h.
15032         (atanMp): Add systemtap probe marker.
15033         * sysdeps/ieee754/dbl-64/s_tan.c: Include stap-probe.h.
15034         (tanMp): Add systemtap probe marker.
15035         * sysdeps/ieee754/dbl-64/slowexp.c: Include stap-probe.h.
15036         (__slowexp): Add systemtap probe marker.
15037         * sysdeps/ieee754/dbl-64/slowpow.c: Include stap-probe.h.
15038         (__slowpow): Add systemtap probe marker.
15039         * manual/probes.texi: Document probes.
15041 2013-10-11  Eric Biggers  <ebiggers3@gmail.com>
15043         [BZ #15362]
15044         * libio/fileops.c (_IO_new_file_write): Return count of bytes
15045         written.
15046         (_IO_new_file_xsputn): Don't return EOF if nothing has been
15047         written.
15048         * libio/iofwrite.c (_IO_fwrite): Return count if bytes were
15049         written to buffer but not flushed.
15050         * libio/iofwrite_u.c:  Likewise.
15051         * libio/iopadn.c:  Return bytes returned even if EOF was
15052         encountered.
15053         * libio/iowpadn.c:  Likewise.
15054         * stdio-common/vfprintf.c [COMPILE_WPRINTF] (PAD): Return error
15055         if _IO_padn does not write the whole buffer.
15056         [!COMPILE_WPRINTF] (PAD): Likewise.
15058 2013-10-10  David S. Miller  <davem@davemloft.net>
15060         * sysdeps/posix/dirstream.h (struct __dirstream): Fix alignment of
15061         directory block.
15063 2013-10-10  Joseph Myers  <joseph@codesourcery.com>
15065         * soft-fp/extendxftf2.c: Use copyright year range.  Use URL
15066         instead of FSF address.
15067         * soft-fp/fixdfti.c: Likewise.
15068         * soft-fp/fixsfti.c: Likewise.
15069         * soft-fp/fixtfti.c: Likewise.
15070         * soft-fp/fixunsdfti.c: Likewise.
15071         * soft-fp/fixunssfti.c: Likewise.
15072         * soft-fp/fixunstfti.c: Likewise.
15073         * soft-fp/floattidf.c: Likewise.
15074         * soft-fp/floattisf.c: Likewise.
15075         * soft-fp/floattitf.c: Likewise.
15076         * soft-fp/floatuntidf.c: Likewise.
15077         * soft-fp/floatuntisf.c: Likewise.
15078         * soft-fp/floatuntitf.c: Likewise.
15079         * soft-fp/trunctfxf2.c: Likewise.
15081         * soft-fp/extendxftf2.c: New file.  Copied from libgcc.
15082         * soft-fp/fixdfti.c: Likewise.
15083         * soft-fp/fixsfti.c: Likewise.
15084         * soft-fp/fixtfti.c: Likewise.
15085         * soft-fp/fixunsdfti.c: Likewise.
15086         * soft-fp/fixunssfti.c: Likewise.
15087         * soft-fp/fixunstfti.c: Likewise.
15088         * soft-fp/floattidf.c: Likewise.
15089         * soft-fp/floattisf.c: Likewise.
15090         * soft-fp/floattitf.c: Likewise.
15091         * soft-fp/floatuntidf.c: Likewise.
15092         * soft-fp/floatuntisf.c: Likewise.
15093         * soft-fp/floatuntitf.c: Likewise.
15094         * soft-fp/trunctfxf2.c: Likewise.
15096 2013-10-10  David S. Miller  <davem@davemloft.net>
15098         * sysdeps/sparc/fpu/libm-test-ulps: Update.
15100 2013-10-10  Joseph Myers  <joseph@codsourcery.com>
15102         * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
15103         (CFLAGS-e_hypotl.c): Add -fno-builtin-fabsl.
15104         [$(subdir) = math] (CFLAGS-w_acosl.c): Likewise.
15105         [$(subdir) = math] (CFLAGS-w_asinl.c): Likewise.
15106         [$(subdir) = math] (CFLAGS-w_atanhl.c): Likewise.
15107         [$(subdir) = math] (CFLAGS-w_j0l.c): Likewise.
15108         [$(subdir) = math] (CFLAGS-w_j1l.c): Likewise.
15110         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Check
15111         for NaNs before doing comparisons on argument.
15112         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl):
15113         Likewise.
15115 2013-10-10  Will Newton  <will.newton@linaro.org>
15117         * malloc/hooks.c (memalign_check): Ensure the value of bytes
15118         passed to _int_memalign does not overflow.
15120 2013-10-10  Torvald Riegel  <triegel@redhat.com>
15122         * scripts/bench.pl: Add include-sources directive.
15123         * benchtests/README: Update documentation.
15125 2013-10-10  Joseph Myers  <joseph@codesourcery.com>
15127         * soft-fp/soft-fp.h (FP_INIT_EXCEPTIONS): New macro.
15128         * soft-fp/extenddftf2.c (__extenddftf2): Use FP_INIT_EXCEPTIONS
15129         instead of FP_INIT_ROUNDMODE.
15130         * soft-fp/extendsfdf2.c (__extendsfdf2): Likewise.
15131         * soft-fp/extendsftf2.c (__extendsftf2): Likewise.
15133         [BZ #16034]
15134         * soft-fp/op-common.h (_FP_NEG): Document input as raw.  Do not
15135         copy class of input value.
15136         * soft-fp/negdf2.c (__negdf2): Use raw unpacking and packing.  Do
15137         not handle exceptions.
15138         * soft-fp/negsf2.c (__negsf2): Likewise.
15139         * soft-fp/negtf2.c (__negtf2): Likewise.
15140         * sysdeps/sparc/sparc32/soft-fp/q_neg.c (_Q_neg): Likewise.
15142 2013-10-09  Joseph Myers  <joseph@codesourcery.com>
15144         * soft-fp/op-4.h (_FP_FRAC_DISASSEMBLE_4): Remove trailing
15145         semicolon.  From Linux kernel.
15147 2013-10-09  Adam Buchbinder  <adam.buchbinder@gmail.com>
15149         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Fix typo in comment.
15151 2013-10-08  Yogesh Chaudhari  <mr.yogesh@gmail.com>
15153         [BZ #156]
15154         * manual/socket.texi: Added statement about buffer
15155         for gethostbyname2_r.
15157 2013-10-08  Ondřej Bílka  <neleai@seznam.cz>
15159         * sysdeps/x86_64/memset.S (ALIGN): Macro removed.
15160         Use .p2align directive instead, throughout.
15161         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
15162         * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
15163         * sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: Likewise.
15164         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
15165         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
15166         * sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S: Likewise.
15167         * sysdeps/x86_64/strchr.S: Likewise.
15168         * sysdeps/x86_64/strrchr.S: Likewise.
15170 2013-10-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
15172         * sysdeps/ieee754/dbl-64/e_pow.c: Fix code formatting.
15174         * sysdeps/ieee754/dbl-64/e_exp.c: Fix code formatting.
15176         * sysdeps/generic/math_private.h (__mpsin1): Remove
15177         declaration.
15178         (__mpcos1): Likewise.
15179         (__mpsin): New argument __range_reduce.
15180         (__mpcos): Likewise.
15181         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
15182         (slow): Use __mpsin and __mpcos.
15183         (slow1): Likewise.
15184         (slow2): Likewise.
15185         (sloww): Likewise.
15186         (sloww1): Likewise.
15187         (sloww2): Likewise.
15188         (bsloww): Likewise.
15189         (bsloww1): Likewise.
15190         (bsloww2): Likewise.
15191         (cslow2): Likewise.
15192         (csloww): Likewise.
15193         (csloww1): Likewise.
15194         (csloww2): Likewise.
15195         * sysdeps/ieee754/dbl-64/sincos32.c (__mpsin): Add argument
15196         range_reduce.  Merge in __mpsin1.
15197         (__mpcos): Likewise.
15198         (__mpsin1): Remove.
15199         (__mpcos1): Likewise.
15201 2013-10-07  Joseph Myers  <joseph@codesourcery.com>
15203         * locale/loadlocale.c (_nl_intern_locale_data): Use
15204         LOCFILE_ALIGNED_P.
15205         * locale/programs/3level.h (CONCAT(add_locale_,TABLE)): Use
15206         LOCFILE_ALIGN_UP and LOCFILE_ALIGN.
15207         * locale/programs/ld-collate.c (obstack_int32_grow): Assert that
15208         obstack data is appropriately aligned.
15209         (obstack_int32_grow_fast): Likewise.
15210         * locale/programs/ld-ctype.c (ctype_output): Use LOCFILE_ALIGN.
15211         * locale/programs/locfile.c (add_locale_uint32): Likewise.
15212         (add_locale_uint32_array): Likewise.
15214 2013-10-07  Siddhesh Poyarekar  <siddhesh@redhat.com>
15216         * benchtests/Makefile: Remove ARGLIST and RET variables.
15217         ($(objpfx)bench-%.c): Pass only function name to the script.
15218         * benchtests/README: Update documentation.
15219         * benchtests/acos-inputs: Add new directives.
15220         * benchtests/acosh-inputs: Likewise.
15221         * benchtests/asin-inputs: Likewise.
15222         * benchtests/asinh-inputs: Likewise.
15223         * benchtests/atan-inputs: Likewise.
15224         * benchtests/atanh-inputs: Likewise.
15225         * benchtests/cos-inputs: Likewise.
15226         * benchtests/cosh-inputs: Likewise.
15227         * benchtests/exp-inputs: Likewise.
15228         * benchtests/log-inputs: Likewise.
15229         * benchtests/pow-inputs: Likewise.
15230         * benchtests/rint-inputs: Likewise.
15231         * benchtests/sin-inputs: Likewise.
15232         * benchtests/sinh-inputs: Likewise.
15233         * benchtests/tan-inputs: Likewise.
15234         * benchtests/tanh-inputs: Likewise.
15235         * scripts/bench.pl: Add support for new directives.
15237 2013-10-07  Alan Modra  <amodra@gmail.com>
15239         * README: Fix careless merge.
15241 2013-10-05  Alan Modra  <amodra@gmail.com>
15243         * NEWS: Mention powerpc64le support and bugs fixed.
15244         * README: Both big-endian and little-endian powerpc64 supported.
15246 2013-10-04  Samuel Thibault  <samuel.thibault@ens-lyon.org>
15248         * sysdeps/mach/hurd/fork.c (_hurd_atfork_prepare_hook)
15249         (_hurd_atfork_child_hook, _hurd_atfork_parent_hook): New hooks.
15250         (__fork): Call _hurd_atfork_prepare_hook hooks before all locking, call
15251         _hurd_atfork_parent_hook or _hurd_atfork_child_hook after all unlocking.
15253 2013-10-04  Ryan S. Arnold  <ryan.arnold@linaro.org>
15255         * misc/swapon.c (swapon): Update definition, adding FLAGS parameter to
15256         match prototype.
15258 2013-10-04  Joseph Myers  <joseph@codesourcery.com>
15260         * sysdeps/powerpc/powerpc32/Makefile [$(with-fp) = yes] (+cflags):
15261         Move -mhard-float appending from
15262         ports/sysdeps/powerpc/powerpc32/Makefile.
15263         [$(with-fp) = yes] (ASFLAGS): Likewise.
15264         [$(with-fp) = yes] (sysdep-LDFLAGS): Likewise.
15265         * sysdeps/powerpc/nofpu: Move directory from
15266         ports/sysdeps/powerpc/nofpu.
15267         * sysdeps/powerpc/soft-fp: Move directory from
15268         ports/sysdeps/powerpc/soft-fp.
15269         * sysdeps/powerpc/powerpc32/405: Move directory from
15270         ports/sysdeps/powerpc/powerpc32/405.
15271         * sysdeps/powerpc/powerpc32/440: Move directory from
15272         ports/sysdeps/powerpc/powerpc32/440.
15273         * sysdeps/powerpc/powerpc32/464: Move directory from
15274         ports/sysdeps/powerpc/powerpc32/464.
15275         * sysdeps/powerpc/powerpc32/476: Move directory from
15276         ports/sysdeps/powerpc/powerpc32/476.
15277         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu: Move directory
15278         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu.
15279         * sysdeps/unix/sysv/linux/powerpc/powerpc32/405: Move directory
15280         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/405.
15281         * sysdeps/unix/sysv/linux/powerpc/powerpc32/440: Move directory
15282         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/440.
15283         * sysdeps/unix/sysv/linux/powerpc/powerpc32/464: Move directory
15284         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/464.
15285         * sysdeps/unix/sysv/linux/powerpc/powerpc32/476: Move directory
15286         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/476.
15287         * README: Update for powerpc-*-linux-gnu software floating point
15288         support in libc.
15290         * sysdeps/unix/sysv/linux/configure.in (powerpc/powerpc32): Change
15291         case to powerpc/powerpc32*.
15292         * sysdeps/unix/sysv/linux/configure: Regenerated.
15294         * sysdeps/powerpc/fpu_control.h [__NO_FPRS__ && !_SOFT_FLOAT]
15295         (_FPU_MASK_OM): Define as 0x04.
15296         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_UM): Define as 0x08.
15297         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RESERVED): Define as
15298         0x00c10080.
15299         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_DEFAULT): Define as
15300         0x0000003c.
15301         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_IEEE): Define as _FPU_DEFAULT.
15303         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S
15304         (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use
15305         getcontext_e500.
15306         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
15307         (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use
15308         setcontext_e500.
15309         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
15310         (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use getcontext_e500
15311         and setcontext_e500.
15313 2013-10-04  Chris Leonard  <cjl@sugarlabs,.org>
15315         * locale/iso-3166.def: Update iso-1366.def and related occurrences
15317 2013-10-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
15319         * manual/threads.texi (Default Thread Attributes): Fix typo.
15321 2013-10-04  Will Newton  <will.newton@linaro.org>
15323         * malloc/Makefile: Add tst-memalign.
15324         * malloc/tst-memalign.c: New file.
15326         * malloc/tst-posix_memalign.c: Add comments.
15327         (do_test): Add comments and call free on all potentially
15328         allocated pointers. Add space after cast.
15330         * malloc/tst-pvalloc.c: Add comments.
15331         (do_test): Add comments and call free on all potentially
15332         allocated pointers. Remove duplicate check for NULL pointer.
15333         Add space after cast.
15335         * malloc/tst-valloc.c: Add comments.
15336         (do_test): Add comments and call free on all potentially
15337         allocated pointers. Remove duplicate check for NULL pointer.
15338         Add space after cast.
15340 2013-10-04  Alan Modra  <amodra@gmail.com>
15342         * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
15343         Use stdint types in rather than __attribute__((mode())).
15344         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
15346 2013-10-04  Alan Modra  <amodra@gmail.com>
15348         * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
15349         Correct handling of unaligned relocs for little-endian.
15350         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
15352 2013-10-04  Alan Modra  <amodra@gmail.com>
15354         * configure.in: Map powerpc64le and powerpcle to base_machine/machine.
15355         * configure: Regenerate.
15356         * nptl/shlib-versions: Powerpc*le starts at 2.18.
15357         * shlib-versions: Likewise.
15359 2013-10-04  Alan Modra  <amodra@gmail.com>
15361         * string/tester.c (test_memrchr): Increment reported test cycle.
15363 2013-10-04  Alan Modra  <amodra@gmail.com>
15365         * string/test-memcpy.c (do_one_test): When reporting errors, print
15366         string address and don't overrun end of string.
15368 2013-10-04  Alan Modra  <amodra@gmail.com>
15370         * sysdeps/powerpc/powerpc64/power7/memchr.S: Replace rlwimi with
15371         insrdi.  Make better use of reg selection to speed exit slightly.
15372         Schedule entry path a little better.  Remove useless "are we done"
15373         checks on entry to main loop.  Handle wrapping around zero address.
15374         Correct main loop count.  Handle single left-over word from main
15375         loop inline rather than by using loop_small.  Remove extra word
15376         case in loop_small caused by wrong loop count.  Add little-endian
15377         support.
15378         * sysdeps/powerpc/powerpc32/power7/memchr.S: Likewise.
15379         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.  Use proper
15380         cache hint.
15381         * sysdeps/powerpc/powerpc32/power7/memrchr.S: Likewise.
15382         * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: Add little-endian
15383         support.  Avoid rlwimi.
15384         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: Likewise.
15386 2013-10-04  Alan Modra  <amodra@gmail.com>
15388         * sysdeps/powerpc/powerpc64/memset.S: Replace rlwimi with
15389         insrdi.  Formatting.
15390         * sysdeps/powerpc/powerpc64/power4/memset.S: Likewise.
15391         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
15392         * sysdeps/powerpc/powerpc64/power7/memset.S: Likewise.
15393         * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise.
15394         * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
15395         * sysdeps/powerpc/powerpc32/power7/memset.S: Likewise.
15397 2013-10-04  Alan Modra  <amodra@gmail.com>
15399         * sysdeps/powerpc/powerpc32/power4/memcpy.S: Add little endian support.
15400         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
15401         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Likewise.
15402         * sysdeps/powerpc/powerpc32/power7/mempcpy.S: Likewise.
15403         * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
15404         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
15405         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
15406         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Likewise.
15407         * sysdeps/powerpc/powerpc64/power7/mempcpy.S: Likewise.  Make better
15408         use of regs.  Use power7 mtocrf.  Tidy function tails.
15410 2013-10-04  Alan Modra  <amodra@gmail.com>
15412         * sysdeps/powerpc/powerpc64/power7/memcmp.S: Add little-endian support.
15413         Formatting.  Consistently use rXXX register defines or rN defines.
15414         Use early exit labels that avoid restoring unused non-volatile regs.
15415         Make cr field use more consistent with rWORDn compares.  Rename
15416         regs used as shift registers for unaligned loop, using rN defines
15417         for short lifetime/multiple use regs.
15418         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
15419         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.  Exit with
15420         addi 1,1,64 to pop stack frame.  Simplify return value code.
15421         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
15423 2013-10-04  Alan Modra  <amodra@gmail.com>
15425         * sysdeps/powerpc/powerpc64/power7/strchr.S (strchr): Add little-endian
15426         support.  Correct typos, formatting.  Optimize tail.  Use insrdi
15427         rather than rlwimi.
15428         * sysdeps/powerpc/powerpc32/power7/strchr.S: Likewise.
15429         * sysdeps/powerpc/powerpc64/power7/strchrnul.S (__strchrnul): Add
15430         little-endian support.  Correct typos.
15431         * sysdeps/powerpc/powerpc32/power7/strchrnul.S: Likewise.  Use insrdi
15432         rather than rlwimi.
15433         * sysdeps/powerpc/powerpc64/strchr.S (rTMP4, rTMP5): Define.  Use
15434         in loop and entry code to keep "and." results.
15435         (strchr): Add little-endian support.  Comment.  Move cntlzd
15436         earlier in tail.
15437         * sysdeps/powerpc/powerpc32/strchr.S: Likewise.
15439 2013-10-04  Alan Modra  <amodra@gmail.com>
15441         * sysdeps/powerpc/powerpc64/strcpy.S: Add little-endian support:
15442         * sysdeps/powerpc/powerpc32/strcpy.S: Likewise.
15443         * sysdeps/powerpc/powerpc64/stpcpy.S: Likewise.
15444         * sysdeps/powerpc/powerpc32/stpcpy.S: Likewise.
15446 2013-10-04  Alan Modra  <amodra@gmail.com>
15448         * sysdeps/powerpc/powerpc64/strcmp.S (rTMP2): Define as r0.
15449         (rTMP): Define as r11.
15450         (strcmp): Add little-endian support.  Optimise tail.
15451         * sysdeps/powerpc/powerpc32/strcmp.S: Similarly.
15452         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
15453         * sysdeps/powerpc/powerpc32/strncmp.S: Likewise.
15454         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
15455         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Likewise.
15456         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
15457         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
15459 2013-10-04  Alan Modra  <amodra@gmail.com>
15461         * sysdeps/powerpc/powerpc64/power7/strnlen.S (strnlen): Add
15462         little-endian support.  Remove unnecessary "are we done" tests.
15463         Handle "s" wrapping around zero and extremely large "size".
15464         Correct main loop count.  Handle single left-over word from main
15465         loop inline rather than by using small_loop.  Correct comments.
15466         Delete "zero" tail, use "end_max" instead.
15467         * sysdeps/powerpc/powerpc32/power7/strnlen.S: Likewise.
15469 2013-10-04  Alan Modra  <amodra@gmail.com>
15471         * sysdeps/powerpc/powerpc64/power7/strlen.S (strlen): Add little-endian
15472         support.  Don't branch over align.
15473         * sysdeps/powerpc/powerpc32/power7/strlen.S: Likewise.
15474         * sysdeps/powerpc/powerpc64/strlen.S (strlen): Add little-endian
15475         support.  Rearrange tmp reg use to suit.  Comment.
15476         * sysdeps/powerpc/powerpc32/strlen.S: Likewise.
15478 2013-10-04  Alan Modra  <amodra@gmail.com>
15480         * sysdeps/unix/sysv/linux/powerpc/bits/sigstack.h: New file.
15482 2013-10-04  Alan Modra  <amodra@gmail.com>
15484         * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S: Use
15485         conditional form of branch and link when obtaining pc.
15486         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
15488 2013-10-04  Alan Modra  <amodra@gmail.com>
15490         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Use
15491         HIWORD/LOWORD.
15492         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Ditto.
15493         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Ditto.
15495 2013-10-04  Alan Modra  <amodra@gmail.com>
15497         * sysdeps/powerpc/longjmp.c: Use proper symbol versioning macros.
15498         * sysdeps/powerpc/novmx-longjmp.c: Likewise.
15499         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Likewise.
15500         * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Likewise.
15501         * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
15502         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
15503         * sysdeps/powerpc/powerpc32/mcount.c: Likewise.
15504         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
15505         * sysdeps/powerpc/powerpc64/setjmp.S: Likewise.
15506         * nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Likewise.
15508 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
15509             Alistair Popple <alistair@ozlabs.au.ibm.com>
15510             Alan Modra <amodra@gmail.com>
15512         [BZ #15723]
15513         * sysdeps/powerpc/jmpbuf-offsets.h: Comment fix.
15514         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Correct
15515         _dl_hwcap access for little-endian.
15516         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.  Don't
15517         destroy vmx regs when saving unaligned.
15518         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Correct CR load.
15519         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise CR save.  Don't
15520         destroy vmx regs when saving unaligned.
15522 2013-10-04  Alan Modra  <amodra@gmail.com>
15524         * sysdeps/powerpc/powerpc32/power4/hp-timing.h (HP_TIMING_NOW):
15525         Don't use a union to pack hi/low value.
15527 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
15529         * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Correct float constants
15530         for little-endian.
15531         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
15532         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: Likewise.
15533         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
15534         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
15535         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
15537 2013-10-04  Alan Modra  <amodra@gmail.com>
15539         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Increase alignment of
15540         constants to usual value for .cst8 section, and remove redundant
15541         high address load.
15542         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Use float
15543         constant for 0x1p52.  Load little-endian words of double from
15544         correct stack offsets.
15546 2013-10-04  Alan Modra  <amodra@gmail.com>
15548         * sysdeps/powerpc/sysdep.h (LOWORD, HIWORD, HISHORT): Define.
15549         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Load little-endian
15550         words of double from correct stack offsets.
15551         * sysdeps/powerpc/powerpc32/fpu/s_copysignl.S: Likewise.
15552         * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: Likewise.
15553         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.
15554         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Likewise.
15555         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Likewise.
15556         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Likewise.
15557         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Likewise.
15558         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: Likewise.
15559         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: Likewise.
15560         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Likewise.
15561         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Likewise.
15562         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Likewise.
15563         * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
15564         * sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
15565         * sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
15566         * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Use HISHORT.
15567         * sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S: Likewise.
15569 2013-10-04  Alan Modra  <amodra@gmail.com>
15571         * sysdeps/powerpc/fpu_control.h (_FPU_GETCW): Rewrite using
15572         64-bit int/double union.
15573         (_FPU_SETCW): Likewise.
15574         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_GET_DI_FPSCR): Likewise.
15575         (_SET_DI_FPSCR, _GET_SI_FPSCR, _SET_SI_FPSCR): Likewise.
15577 2013-10-04  Alan Modra  <amodra@gmail.com>
15579         * sysdeps/powerpc/fpu/s_llround.c (__llround): Rewrite.
15580         * sysdeps/powerpc/fpu/s_llroundf.c (__llroundf): Rewrite.
15582 2013-10-04  Alan Modra  <amodra@gmail.com>
15584         * sysdeps/powerpc/fpu/s_float_bitwise.h (__float_and_test28): Don't
15585         use vector int constants.
15586         (__float_and_test24, __float_and8, __float_get_exp): Likewise.
15588 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
15590         * sysdeps/powerpc/fpu/fenv_libc.h (fenv_union_t): Replace int
15591         array with long long.
15592         * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Adjust.
15593         * sysdeps/powerpc/fpu/e_sqrtf.c (__slow_ieee754_sqrtf): Adjust.
15594         * sysdeps/powerpc/fpu/fclrexcpt.c (__feclearexcept): Adjust.
15595         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept): Adjust.
15596         * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Adjust.
15597         * sysdeps/powerpc/fpu/fegetexcept.c (__fegetexcept): Adjust.
15598         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Adjust.
15599         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Adjust.
15600         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Adjust.
15601         * sysdeps/powerpc/fpu/fgetexcptflg.c (__fegetexceptflag): Adjust.
15602         * sysdeps/powerpc/fpu/fraiseexcpt.c (__feraiseexcept): Adjust.
15603         * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Adjust.
15604         * sysdeps/powerpc/fpu/ftestexcept.c (fetestexcept): Adjust.
15606 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
15608         * sysdeps/powerpc/bits/mathinline.h (__signbitf): Use builtin.
15609         (__signbit): Likewise.  Correct for little-endian.
15610         (__signbitl): Call __signbit.
15611         (lrint): Correct for little-endian.
15612         (lrintf): Call lrint.
15614 2013-10-04  Alan Modra  <amodra@gmail.com>
15616         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c (mynumber): Replace
15617         union 32-bit int array member with 64-bit int array.
15618         (t515, tm256): Double rather than long double.
15619         (__ieee754_sqrtl): Rewrite using 64-bit arithmetic.
15621 2013-10-04  Alan Modra  <amodra@gmail.com>
15623         * sysdeps/ieee754/ldbl-128ibm/ieee754.h (union ieee854_long_double):
15624         Delete.
15625         (IEEE854_LONG_DOUBLE_BIAS): Delete.
15626         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Don't include ieee854
15627         version of math_ldbl.h.
15629 2013-10-04  Alan Modra  <amodra@gmail.com>
15631         [BZ #15734], [BZ #15735]
15632         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Rewrite
15633         all uses of ieee875 long double macros and unions.  Simplify test
15634         for 0.0L.  Correct |x|<|y| and |x|=|y| test.  Use
15635         ldbl_extract_mantissa value for ix,iy exponents.  Properly
15636         normalize after ldbl_extract_mantissa, and don't add hidden bit
15637         already handled.  Don't treat low word of ieee854 mantissa like
15638         low word of IBM long double and mask off bit when testing for
15639         zero.
15640         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Rewrite
15641         all uses of ieee875 long double macros and unions.  Simplify tests
15642         for 0.0L and inf.  Correct double adjustment of k.  Delete dead code
15643         adjusting ha,hb.  Simplify code setting kld.  Delete two600 and
15644         two1022, instead use their values.  Recognise that tests for large
15645         "a" and small "b" are mutually exclusive.  Rename vars.  Comment.
15646         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c (__ieee754_remainderl):
15647         Rewrite all uses of ieee875 long double macros and unions.  Simplify
15648         test for 0.0L and nan.  Correct negation.
15649         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c (__erfl): Rewrite all uses of
15650         ieee875 long double macros and unions.  Correct output for large
15651         magnitude x.  Correct absolute value calculation.
15652         (__erfcl): Likewise.
15653         * math/libm-test.inc: Add tests for errors discovered in IBM long
15654         double versions of fmodl, remainderl, erfl and erfcl.
15656 2013-10-04  Alan Modra  <amodra@gmail.com>
15658         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c (__ieee754_atan2l): Rewrite
15659         all uses of ieee854 long double macros and unions.  Simplify tests
15660         for long doubles that are fully specified by the high double.
15661         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
15662         Likewise.
15663         * sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c (__ieee754_ilogbl): Likewise.
15664         Remove dead code too.
15665         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
15666         (__ieee754_ynl): Likewise.
15667         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l): Likewise.
15668         * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Likewise.
15669         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
15670         Remove dead code too.
15671         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c (__kernel_tanl): Likewise.
15672         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Likewise.
15673         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Likewise.
15674         * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c (__isinf_nsl): Likewise.
15675         Simplify.
15676         * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c (___isinfl): Likewise.
15677         Simplify.
15678         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Likewise.
15679         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c (__modfl): Likewise.
15680         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Likewise.
15681         Comment on variable precision.
15682         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward): Likewise.
15683         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
15684         Likewise.
15685         * sysdeps/ieee754/ldbl-128ibm/s_remquol.c (__remquol): Likewise.
15686         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
15687         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
15688         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c (__tanhl): Likewise.
15689         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust tan_towardzero ulps.
15691 2013-10-04  Alan Modra  <amodra@gmail.com>
15693         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_high): Define.
15694         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Rewrite
15695         all uses of ieee854 long double macros and unions.
15696         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Likewise.
15697         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
15698         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Likewise.
15699         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl): Likewise.
15700         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l): Likewise.
15701         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
15702         Likewise.
15703         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c (__ieee754_sinhl): Likewise.
15704         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
15705         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c (__kernel_sincosl): Likewise.
15706         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
15707         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Likewise.
15708         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c (__atanl): Likewise.
15709         Simplify sign and nan test too.
15710         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c (__cosl): Likewise.
15711         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Likewise.
15712         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c (___finitel): Likewise.
15713         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c (___fpclassifyl):
15714         Likewise.
15715         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (___isnanl): Likewise.
15716         * sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c (__issignalingl):
15717         Likewise.
15718         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
15719         * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c (___signbitl): Likewise.
15720         * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c (__sincosl): Likewise.
15721         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c (__sinl): Likewise.
15722         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c (__tanl): Likewise.
15723         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c (__logbl): Likewise.
15725 2013-10-04  Alan Modra  <amodra@gmail.com>
15727         * stdio-common/printf_size.c (__printf_size): Don't use
15728         union ieee854_long_double in fpnum union.
15729         * stdio-common/printf_fphex.c (__printf_fphex): Likewise.  Use
15730         signbit macro to retrieve sign from long double.
15731         * stdio-common/printf_fp.c (___printf_fp): Use signbit macro to
15732         retrieve sign from long double.
15733         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Adjust for fpnum change.
15734         * sysdeps/ieee754/ldbl-128/printf_fphex.c: Likewise.
15735         * sysdeps/ieee754/ldbl-96/printf_fphex.c: Likewise.
15736         * sysdeps/x86_64/fpu/printf_fphex.c: Likewise.
15737         * math/test-misc.c (main): Don't use union ieee854_long_double.
15739 2013-10-04  Alan Modra  <amodra@gmail.com>
15741         [BZ #15680]
15742         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c: Comment fix.
15743         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c
15744         (PRINT_FPHEX_LONG_DOUBLE): Tidy code by moving -53 into ediff
15745         calculation.  Remove unnecessary test for denormal exponent.
15746         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c (__mpn_extract_long_double):
15747         Correct handling of denormals.  Avoid undefined shift behaviour.
15748         Correct normalisation of low mantissa when low double is denormal.
15749         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h
15750         (ldbl_extract_mantissa): Likewise.  Comment.  Use uint64_t* for hi64.
15751         (ldbl_insert_mantissa): Make both hi64 and lo64 parms uint64_t.
15752         Correct normalisation of low mantissa.  Test for overflow of high
15753         mantissa and normalise.
15754         (ldbl_nearbyint): Use more readable constant for two52.
15755         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c
15756         (__mpn_construct_long_double): Fix test for overflow of high
15757         mantissa and correct normalisation.  Avoid undefined shift.
15759 2013-10-04  Alan Modra  <amodra@gmail.com>
15761         * sysdeps/ieee754/ldbl-128ibm/ieee754.h
15762         (union ibm_extended_long_double): Define as an array of ieee754_double.
15763         (IBM_EXTENDED_LONG_DOUBLE_BIAS): Delete.
15764         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Update all references
15765         to ibm_extended_long_double and IBM_EXTENDED_LONG_DOUBLE_BIAS.
15766         * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise.
15767         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
15768         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c: Likewise.
15769         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
15770         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: Likewise.
15771         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Likewise.
15772         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: Likewise.
15773         * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
15775 2013-10-03  Joseph Myers  <joseph@codesourcery.com>
15777         * locale/programs/locarchive.c (add_locale): Use constant 4096 for
15778         page size instead of calling getpagesize.
15780         * locale/localeinfo.h (LOCFILE_ALIGN): New macro.
15781         (LOCFILE_ALIGN_MASK): Likewise.
15782         (LOCFILE_ALIGN_UP): Likewise.
15783         (LOCFILE_ALIGNED_P): Likewise.
15784         * locale/programs/ld-collate.c (collate_output): Use the new
15785         macros instead of __alignof__ (int32_t).
15786         * locale/weight.h (findidx): Likewise.
15788 2013-10-03  Ondřej Bílka  <neleai@seznam.cz>
15790         [BZ #431]
15791         * manual/string.texi: Fix strncat and wcsncat.
15793 2013-10-03  Brooks Moses  <bmoses@google.com>
15795         [BZ #15915]
15796         * Makefile (linkobj/libc_pic.a, linkobj/libc.so): Move rules to...
15797         * Makerules: ...here, and adjust associated comments.
15799 2013-10-02  Will Newton  <will.newton@linaro.org>
15801         * malloc/Makefile: Add tst-pvalloc.
15802         * malloc/tst-pvalloc.c: New file.
15804 2013-10-02  Will Newton  <will.newton@linaro.org>
15806         * malloc/tst-valloc.c: Rewrite to use test-skeleton.c and
15807         improve test coverage.
15809 2013-10-02  Will Newton  <will.newton@linaro.org>
15811         * malloc/Makefile: Add tst-posix_memalign.
15812         * malloc/tst-posix_memalign.c: New file.
15814 2013-10-01  Eric Blake  <eblake@redhat.com>
15816         * posix/glob.c (next_brace_sub, prefix_array, collated_compare):
15817         Use __THROWNL rather than __THROW on static functions.
15819 2013-09-30  Petr Machata  <pmachata@redhat.com>
15821         * elf/elf.h (R_AARCH64_ABS16): New macro.
15822         (R_AARCH64_PREL64, R_AARCH64_PREL32): Likewise.
15823         (R_AARCH64_PREL16, R_AARCH64_MOVW_UABS_G0): Likewise.
15824         (R_AARCH64_MOVW_UABS_G0_NC, R_AARCH64_MOVW_UABS_G1): Likewise.
15825         (R_AARCH64_MOVW_UABS_G1_NC, R_AARCH64_MOVW_UABS_G2): Likewise.
15826         (R_AARCH64_MOVW_UABS_G2_NC, R_AARCH64_MOVW_UABS_G3): Likewise.
15827         (R_AARCH64_MOVW_SABS_G0, R_AARCH64_MOVW_SABS_G1): Likewise.
15828         (R_AARCH64_MOVW_SABS_G2, R_AARCH64_LD_PREL_LO19): Likewise.
15829         (R_AARCH64_ADR_PREL_LO21, R_AARCH64_ADR_PREL_PG_HI21): Likewise.
15830         (R_AARCH64_ADR_PREL_PG_HI21_NC, R_AARCH64_ADD_ABS_LO12_NC): Likewise.
15831         (R_AARCH64_LDST8_ABS_LO12_NC, R_AARCH64_LDST16_ABS_LO12_NC): Likewise.
15832         (R_AARCH64_LDST32_ABS_LO12_NC, R_AARCH64_LDST64_ABS_LO12_NC): Likewise.
15833         (R_AARCH64_LDST128_ABS_LO12_NC, R_AARCH64_TSTBR14): Likewise.
15834         (R_AARCH64_CONDBR19, R_AARCH64_JUMP26, R_AARCH64_CALL26): Likewise.
15835         (R_AARCH64_MOVW_PREL_G0, R_AARCH64_MOVW_PREL_G0_NC): Likewise.
15836         (R_AARCH64_MOVW_PREL_G1, R_AARCH64_MOVW_PREL_G1_NC): Likewise.
15837         (R_AARCH64_MOVW_PREL_G2, R_AARCH64_MOVW_PREL_G2_NC): Likewise.
15838         (R_AARCH64_MOVW_PREL_G3, R_AARCH64_MOVW_GOTOFF_G0): Likewise.
15839         (R_AARCH64_MOVW_GOTOFF_G0_NC, R_AARCH64_MOVW_GOTOFF_G1): Likewise.
15840         (R_AARCH64_MOVW_GOTOFF_G1_NC, R_AARCH64_MOVW_GOTOFF_G2): Likewise.
15841         (R_AARCH64_MOVW_GOTOFF_G2_NC, R_AARCH64_MOVW_GOTOFF_G3): Likewise.
15842         (R_AARCH64_GOTREL64, R_AARCH64_GOTREL32): Likewise.
15843         (R_AARCH64_GOT_LD_PREL19, R_AARCH64_LD64_GOTOFF_LO15): Likewise.
15844         (R_AARCH64_ADR_GOT_PAGE, R_AARCH64_LD64_GOT_LO12_NC): Likewise.
15845         (R_AARCH64_LD64_GOTPAGE_LO15, R_AARCH64_TLSGD_ADR_PREL21): Likewise.
15846         (R_AARCH64_TLSGD_ADR_PAGE21, R_AARCH64_TLSGD_ADD_LO12_NC): Likewise.
15847         (R_AARCH64_TLSGD_MOVW_G1, R_AARCH64_TLSGD_MOVW_G0_NC): Likewise.
15848         (R_AARCH64_TLSLD_ADR_PREL21, R_AARCH64_TLSLD_ADR_PAGE21): Likewise.
15849         (R_AARCH64_TLSLD_ADD_LO12_NC, R_AARCH64_TLSLD_MOVW_G1): Likewise.
15850         (R_AARCH64_TLSLD_MOVW_G0_NC, R_AARCH64_TLSLD_LD_PREL19): Likewise.
15851         (R_AARCH64_TLSLD_MOVW_DTPREL_G2): Likewise.
15852         (R_AARCH64_TLSLD_MOVW_DTPREL_G1): Likewise.
15853         (R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC): Likewise.
15854         (R_AARCH64_TLSLD_MOVW_DTPREL_G0): Likewise.
15855         (R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC): Likewise.
15856         (R_AARCH64_TLSLD_ADD_DTPREL_HI12): Likewise.
15857         (R_AARCH64_TLSLD_ADD_DTPREL_LO12): Likewise.
15858         (R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC): Likewise.
15859         (R_AARCH64_TLSLD_LDST8_DTPREL_LO12): Likewise.
15860         (R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC): Likewise.
15861         (R_AARCH64_TLSLD_LDST16_DTPREL_LO12): Likewise.
15862         (R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC): Likewise.
15863         (R_AARCH64_TLSLD_LDST32_DTPREL_LO12): Likewise.
15864         (R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC): Likewise.
15865         (R_AARCH64_TLSLD_LDST64_DTPREL_LO12): Likewise.
15866         (R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC): Likewise.
15867         (R_AARCH64_TLSLD_LDST128_DTPREL_LO12): Likewise.
15868         (R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC): Likewise.
15869         (R_AARCH64_TLSIE_MOVW_GOTTPREL_G1): Likewise.
15870         (R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC): Likewise.
15871         (R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21): Likewise.
15872         (R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC): Likewise.
15873         (R_AARCH64_TLSIE_LD_GOTTPREL_PREL19): Likewise.
15874         (R_AARCH64_TLSLE_MOVW_TPREL_G2): Likewise.
15875         (R_AARCH64_TLSLE_MOVW_TPREL_G1): Likewise.
15876         (R_AARCH64_TLSLE_MOVW_TPREL_G1_NC): Likewise.
15877         (R_AARCH64_TLSLE_MOVW_TPREL_G0): Likewise.
15878         (R_AARCH64_TLSLE_MOVW_TPREL_G0_NC): Likewise.
15879         (R_AARCH64_TLSLE_ADD_TPREL_HI12): Likewise.
15880         (R_AARCH64_TLSLE_ADD_TPREL_LO12): Likewise.
15881         (R_AARCH64_TLSLE_ADD_TPREL_LO12_NC): Likewise.
15882         (R_AARCH64_TLSLE_LDST8_TPREL_LO12): Likewise.
15883         (R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC): Likewise.
15884         (R_AARCH64_TLSLE_LDST16_TPREL_LO12): Likewise.
15885         (R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC): Likewise.
15886         (R_AARCH64_TLSLE_LDST32_TPREL_LO12): Likewise.
15887         (R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC): Likewise.
15888         (R_AARCH64_TLSLE_LDST64_TPREL_LO12): Likewise.
15889         (R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC): Likewise.
15890         (R_AARCH64_TLSLE_LDST128_TPREL_LO12): Likewise.
15891         (R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC): Likewise.
15892         (R_AARCH64_TLSDESC_LD_PREL19): Likewise.
15893         (R_AARCH64_TLSDESC_ADR_PREL21): Likewise.
15894         (R_AARCH64_TLSDESC_ADR_PAGE21): Likewise.
15895         (R_AARCH64_TLSDESC_LD64_LO12): Likewise.
15896         (R_AARCH64_TLSDESC_ADD_LO12): Likewise.
15897         (R_AARCH64_TLSDESC_OFF_G1): Likewise.
15898         (R_AARCH64_TLSDESC_OFF_G0_NC): Likewise.
15899         (R_AARCH64_TLSDESC_LDR): Likewise.
15900         (R_AARCH64_TLSDESC_ADD): Likewise.
15901         (R_AARCH64_TLSDESC_CALL): Likewise.
15903 2013-09-30  Andreas Schwab  <schwab@suse.de>
15905         [BZ #15048]
15906         * nscd/aicache.c (addhstaiX): Properly use the cache variable for
15907         the nss database lookup.
15908         * nscd/initgrcache.c (addinitgroupsX): Likewise.
15909         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
15911 2013-09-28  Mike Frysinger  <vapier@gentoo.org>
15913         * sysdeps/unix/sysv/linux/tst-fanotify.c (do_test): Fix style.
15915 2013-09-28  P. J. McDermott  <pj@pehjota.net>
15917         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Don't use
15918         ${Bash-specific parameter/pattern/string} parameter expansion.
15919         * sysdeps/unix/make-syscalls.sh: Likewise.
15921 2013-09-27  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
15923         * sysdeps/sh/stackguard-macros.h: New file.
15925 2013-09-26  Ondřej Bílka  <neleai@seznam.cz>
15927         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Update.
15928         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Remove strrchr ifunc.
15929         * sysdeps/x86_64/multiarch/strend-sse4.S Remove.
15930         * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S Likewise.
15931         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
15932         * sysdeps/x86_64/strrchr.S (strrchr): Use optimized implementation.
15934 2013-09-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
15936         * sysdeps/powerpc/powerpc64/stackguard-macros.h (POINTER_CHK_GUARD:
15937         Fix thread ID register.
15939 2013-09-25  Joseph Myers  <joseph@codesourcery.com>
15941         * conform/data/sched.h-data [XPG3 || XPG4]: Disable whole file.
15942         [POSIX || UNIX98]: Require rather than permitting all symbols from
15943         <time.h>.
15944         [POSIX || UNIX98] (sched_ss_low_priority): Do not specify optional
15945         element of struct sched_param.
15946         [POSIX || UNIX98] (sched_ss_repl_period): Likewise.
15947         [POSIX || UNIX98] (sched_ss_init_budget): Likewise.
15948         [POSIX || UNIX98] (sched_ss_max_repl): Likewise.
15949         [POSIX || UNIX98] (SCHED_SPORADIC): Do not specify optional
15950         constant.
15952 2013-09-24  Olivier Langlois  <olivier@olivierlanglois.net>
15954         * stdio-common/tst-long-dbl-fphex.c (do_test): Fix swprintf length
15955         argument calculation.
15957 2013-09-24  Joseph Myers  <joseph@codesourcery.com>
15959         * conform/data/pthread.h-data [POSIX] (PTHREAD_MUTEX_INITIALIZER):
15960         Expect macro.
15961         [POSIX] (pthread_attr_t): Do not require type.
15962         [POSIX] (pthread_cond_t): Likewise.
15963         [POSIX] (pthread_condattr_t): Likewise.
15964         [POSIX] (pthread_key_t): Likewise.
15965         [POSIX] (pthread_mutex_t): Likewise.
15966         [POSIX] (pthread_mutexattr_t): Likewise.
15967         [POSIX] (pthread_once_t): Likewise.
15968         [POSIX] (pthread_t): Likewise.
15969         [POSIX-based standards] (pthread_atfork): Expect function.
15971 2013-09-24  Joseph Myers  <joseph@codesourcery.com>
15972             Richard Sandiford  <richard@codesourcery.com>
15974         * locale/programs/locfile.h: Include <byteswap.h> and <stdbool.h>.
15975         (swap_endianness_p): New extern variable.
15976         (set_big_endian): New inline function.
15977         (maybe_swap_uint32): Likewise.
15978         (maybe_swap_uint32_array): Likewise.
15979         (maybe_swap_uint32_obstack): Likewise.
15980         * locale/programs/locfile.c: Include <stdbool.h>.
15981         (swap_endianness_p): New variable.
15982         (add_locale_uint32): Call maybe_swap_uint32.
15983         (add_locale_uint32_array): Call maybe_swap_uint32_obstack.
15984         (write_locale_data): Call maybe_swap_uint32_array.
15985         * locale/programs/ld-collate.c (obstack_int32_grow): Call
15986         maybe_swap_uint32.
15987         (obstack_int32_grow_fast): Likewise.
15988         (output_weightwc): Call maybe_swap_uint32_obstack.
15989         (collate_output): Likewise.
15990         * locale/programs/localedef.c (OPT_LITTLE_ENDIAN): New macro.
15991         (OPT_LITTLE_ENDIAN): Likewise.
15992         (options): Add --little-endian and --big-endian options.
15993         (parse_opt): Handle OPT_LITTLE_ENDIAN and OPT_BIG_ENDIAN.
15994         * locale/programs/locarchive.c: Include "locfile.h".
15995         (GET): New macro.
15996         (SET): Likewise.
15997         (INC): Likewise.
15998         (create_archive): Use the new macros to access fields of
15999         structures directly mapped from or written to locale archives.
16000         (oldlocrecentcmp): Likewise.
16001         (enlarge_archive): Likewise.
16002         (insert_name): Likewise.
16003         (add_alias): Likewise.
16004         (add_locale): Likewise.
16005         (delete_locales_from_archive): Likewise.
16006         (show_archive_content): Likewise.
16007         (add_locale_to_archive): Likewise.  Use maybe_swap_uint32 on
16008         locale data.
16010 2013-09-24  Roland McGrath  <roland@hack.frob.com>
16012         * manual/freemanuals.texi: Updated from (newly) canonical copy at
16013         http://www.gnu.org/doc/freemanuals.texi.
16014         * manual/libc.texinfo (Free Manuals): Put the @appendix line here.
16016 2013-09-24  Will Newton  <will.newton@linaro.org>
16018         * sysdeps/mach/hurd/i386/tls.h (TLS_INIT_TP_EXPENSIVE): Remove
16019         macro.
16021 2013-09-23  Joseph Myers  <joseph@codesourcery.com>
16023         * locale/hashval.h (compute_hashval): Interpret bytes of key as
16024         unsigned char.
16026 2013-09-23  Maciej W. Rozycki  <macro@codesourcery.com>
16028         * manual/threads.texi (POSIX Threads): Fix a typo.
16030 2013-09-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
16032         [BZ #14547]
16033         * string/tst-strcoll-overflow.c: New test case.
16034         * string/Makefile (xtests): Add tst-strcoll-overflow.
16035         * string/strcoll_l.c (STRCOLL): Skip allocating memory for
16036         cache if string sizes may cause integer overflow.
16038         [BZ #14547]
16039         * string/strcoll_l.c (coll_seq): New members rule, idx,
16040         save_idx and back_us.
16041         (get_next_seq_nocache): New function.
16042         (do_compare_nocache): New function.
16043         (STRCOLL): Use get_next_seq_nocache and do_compare_nocache
16044         when malloc fails.
16046 2013-09-23  Carlos O'Donell  <carlos@redhat.com>
16048         [BZ #15754]
16049         * sysdeps/generic/stackguard-macros.h: If PTRGUARD_LOCAL use
16050         __pointer_chk_guard_local, otherwise __pointer_chk_guard.
16051         * elf/Makefile: Define CFLAGS-tst-ptrguard1-static.c.
16053         [BZ #15754]
16054         * elf/Makefile (tests): Add tst-ptrguard1.
16055         (tests-static): Add tst-ptrguard1-static.
16056         (tst-ptrguard1-ARGS): Define.
16057         (tst-ptrguard1-static-ARGS): Define.
16058         * elf/tst-ptrguard1.c: New file.
16059         * elf/tst-ptrguard1-static.c: New file.
16060         * sysdeps/x86_64/stackguard-macros.h: Define POINTER_CHK_GUARD.
16061         * sysdeps/i386/stackguard-macros.h: Likewise.
16062         * sysdeps/powerpc/powerpc32/stackguard-macros.h: Likewise.
16063         * sysdeps/powerpc/powerpc64/stackguard-macros.h: Likewise.
16064         * sysdeps/s390/s390-32/stackguard-macros.h: Likewise.
16065         * sysdeps/s390/s390-64/stackguard-macros.h: Likewise.
16066         * sysdeps/sparc/sparc32/stackguard-macros.h: Likewise.
16067         * sysdeps/sparc/sparc64/stackguard-macros.h: Likewise.
16069 2013-09-23  Hector Marco  <hecmargi@upv.es>
16070             Ismael Ripoll  <iripoll@disca.upv.es>
16071             Carlos O'Donell  <carlos@redhat.com>
16073         [BZ #15754]
16074         * sysdeps/generic/stackguard-macros.h: Define
16075         __pointer_chk_guard_local and POINTER_CHK_GUARD.
16076         * csu/libc-start.c [!SHARED && !THREAD_SET_POINTER_GUARD]:
16077         Define __pointer_chk_guard_local.
16078         (LIBC_START_MAIN) [!SHARED]: Call _dl_setup_pointer_guard.
16079         Use THREAD_SET_POINTER_GUARD or set __pointer_chk_guard_local.
16081 2013-09-15  Vinitha Vijayan <vinitha.vijayann@gmail.com>
16083         [BZ #15859]
16084         * elf/dl-deps.c (_dl_map_object_deps): Remove duplicate declaration.
16086 2013-09-20  Andreas Schwab  <schwab@linux-m68k.org>
16088         * include/string.h (__ffs): Declare as hidden.
16089         * string/ffs.c (__ffs): Define as hidden.
16090         * sysdeps/i386/ffs.c (__ffs): Likewise.
16091         * sysdeps/i386/i686/ffs.c (__ffs): Likewise.
16092         * sysdeps/powerpc/ffs.c (__ffs): Likewise.
16093         * sysdeps/s390/ffs.c (__ffs): Likewise.
16094         * sysdeps/x86_64/ffs.c (__ffs): Likewise.
16096 2013-09-20  Alexandre Oliva <aoliva@redhat.com>
16098         * NEWS: Mention malloc probes.
16100         * malloc/arena.c (new_heap): New memory_heap_new probe.
16101         (grow_heap): New memory_heap_more probe.
16102         (shrink_heap): New memory_heap_less probe.
16103         (heap_trim): New memory_heap_free probe.
16104         * malloc/malloc.c (sysmalloc): New memory_sbrk_more probe.
16105         (systrim): New memory_sbrk_less probe.
16106         * manual/probes.texi: Document them.
16108         * malloc/arena.c (arena_get_retry): Add memory_arena_retry probe.
16109         * manual/probes.texi: Document it.
16111         * malloc/malloc.c (__libc_malloc): Add memory_malloc_retry probe.
16112         (__libc_realloc): Add memory_realloc_retry probe.
16113         (__libc_memalign): Add memory_memalign_retry probe.
16114         (__libc_valloc): Add memory_valloc_retry probe.
16115         (__libc_pvalloc): Add memory_pvalloc_retry probe.
16116         (__libc_calloc): Add memory_calloc_retry probe.
16117         * manual/probes.texi: Document them.
16119         * malloc/arena.c (get_free_list): Add probe
16120         memory_arena_reuse_free_list.
16121         (reused_arena) [PER_THREAD]: Add probes memory_arena_reuse_wait
16122         and memory_arena_reuse.
16123         (arena_get2) [!PER_THREAD]: Likewise.
16124         * malloc/malloc.c (__libc_realloc) [!PER_THREAD]: Add probe
16125         memory_arena_reuse_realloc.
16126         * manual/probes.texi: Document them.
16128         * malloc/malloc.c (__libc_free): Add
16129         memory_mallopt_free_dyn_thresholds probe.
16130         (__libc_mallopt): Add multiple memory_mallopt probes.
16131         * manual/probes.texi: Document them.
16133         * malloc/malloc.c: Include stap-probe.h.
16134         (__libc_mallopt): Add memory_mallopt probe.
16135         * malloc/arena.c (_int_new_arena): Add memory_arena_new probe.
16136         * manual/probes.texi: New.
16137         * manual/Makefile (chapters): Add probes.
16138         * manual/threads.texi: Set next node.
16140 2013-09-19  Wei-Lun Chao  <bluebat@member.fsf.org>
16142         [BZ #15963, #13985]
16143         * locale/iso-639.def: Add Chiga (cgg) and Chinese (gan, hak,
16144         czh, cjy, lzh, cmn, mnp, cdo, czo, cpx, wuu, hsn, yue).
16145         Add `Chinese' to `nan' entry name.
16147 2013-09-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
16149         * sysdeps/ieee754/dbl-64/s_sin.c (POLYNOMIAL2): New macro.
16150         (POLYNOMIAL): Likewise.
16151         (TAYLOR_SINCOS): Likewise.
16152         (TAYLOR_SLOW): Likewise.
16153         (__sin): Use TAYLOR_SINCOS.
16154         (__cos): Likewise.
16155         (slow): Use TAYLOR_SLOW.
16156         (sloww): Likewise.
16157         (bsloww): Likewise.
16158         (csloww): Likewise.
16160 2013-09-19  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
16162         * stdlib/strtod_l.c: Fix buffer overrun.
16164 2013-09-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
16166         * benchtests/Makefile (bench): Add sincos.
16167         * benchtests/bench-sincos.c: New file.
16169         * math/libm-test.inc (cos_test_data): New test inputs.
16170         (sin_test_data): Likewise.
16172         * sysdeps/ieee754/dbl-64/s_sin.c (SINCOS_TABLE_LOOKUP): New
16173         macro.
16174         (__sin): Use it.
16175         (__cos): Likewise.
16176         (slow1): Likewise.
16177         (slow2): Likewise.
16178         (sloww1): Likewise.
16179         (sloww2): Likewise.
16180         (bsloww1): Likewise.
16181         (bsloww2): Likewise.
16182         (cslow2): Likewise.
16183         (csloww1): Likewise.
16184         (csloww2): Likewise.
16186         * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): New
16187         function.
16188         (__sin): Use it.
16189         (__cos): Likewise.
16191         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Remove redundant
16192         gotos.
16193         (__cos): Likewise.
16195 2013-09-18  Maciej W. Rozycki  <macro@codesourcery.com>
16197         * config.h.in (HAVE_MIPS_NAN2008): New macro.
16198         * elf/elf.h (EF_MIPS_NAN2008): Likewise.
16199         * sysdeps/generic/ldconfig.h (FLAG_MIPS_LIB32_NAN2008): Likewise.
16200         (FLAG_MIPS64_LIBN32_NAN2008): Likewise.
16201         (FLAG_MIPS64_LIBN64_NAN2008): Likewise.
16202         * elf/cache.c (print_entry): Handle the new cache flags.
16204 2013-09-18  Joseph Myers  <joseph@codesourcery.com>
16205             Aldy Hernandez  <aldyh@redhat.com>
16207         * sysdeps/powerpc/fpu_control.h [_SOFT_FLOAT || __NO_FPRS__]:
16208         Change condition to [_SOFT_FLOAT].
16209         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_NEAREST): New macro.
16210         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_DOWN): Likewise.
16211         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_UP): Likewise.
16212         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_ZERO): Likewise.
16213         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_ZM): Likewise.
16214         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_OM): Likewise.
16215         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_UM): Likewise.
16216         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_XM): Likewise.
16217         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_IM): Likewise.
16218         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RESERVED): Likewise.
16219         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_DEFAULT): Likewise.
16220         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_IEEE): Likewise.
16221         [__NO_FPRS__ && !_SOFT_FLOAT] (fpu_control_t): New typedef.
16222         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_GETCW): New macro.
16223         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_SETCW): Likewise.
16224         [__NO_FPRS__ && !_SOFT_FLOAT] (__fpu_control): New variable
16225         declaration.
16227 2013-09-18  Joseph Myers  <joseph@codesourcery.com>
16229         * sysdeps/powerpc/powerpc32/__longjmp-common.S (LOAD_GP): Define
16230         macro conditional on [__SPE__ || (__NO_FPRS__ && !_SOFT_FLOAT)].
16231         (__longjmp): Use LOAD_GP to load saved GPRs.
16232         * sysdeps/powerpc/powerpc32/setjmp-common.S (SAVE_GP): Define
16233         macro conditional on [__SPE__ || (__NO_FPRS__ && !_SOFT_FLOAT)].
16234         (__sigsetjmp): Use SAVE_GP to save GPRs.
16236         * sysdeps/powerpc/powerpc32/Makefile [$(with-fp) = no] (+cflags):
16237         Do not append -msoft-float.
16238         [$(with-fp) = no] (sysdep-LDFLAGS): Likewise.
16240 2013-09-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
16242         * sysdeps/ieee754/dbl-64/sincos32.c: Fix code formatting.
16244 2013-09-17  Joseph Myers  <joseph@codesourcery.com>
16246         [BZ #15966]
16247         * sysdeps/powerpc/fpu_control.h [!_SOFT_FLOAT && !__NO_FPRS__]
16248         (_FPU_GETCW): Use initial "__" on variable and field names but not
16249         on macro parameter name.
16250         [!_SOFT_FLOAT && !__NO_FPRS__] (_FPU_SETCW): Likewise.  Use
16251         parentheses around reference to macro parameter.
16253 2013-09-13  Richard Sandiford  <richard@codesourcery.com>
16255         * locale/programs/ld-ctype.c (find_idx): Use uint32_t in
16256         prototype.
16257         (ctype_startup): Use uint32_t in cast and sizeof for
16258         ctype->charnames.
16260 2013-09-11  Jia Liu  <proljc@gmail.com>
16262         * sunrpc/rpc/types.h [__APPLE_CC__]: Define __u_char_defined and
16263         __daddr_t_defined.
16264         [__FreeBSD__]: Likewise.
16266 2013-09-11  Ondřej Bílka  <neleai@seznam.cz>
16268         * sysdeps/x86_64/multiarch/ifunc-impl-list.c
16269         (__libc_ifunc_impl_list): Remove: __strchr_sse42.
16270         * sysdeps/x86_64/multiarch/strchr.S (__strchr_sse42): Remove.
16271         (strchr): Remove __strchr_sse42 ifunc selection.
16272         * sysdeps/x86_64/strchr.S (strchr): Use optimized implementation.
16273         * sysdeps/x86_64/strchrnul.S: Include sysdeps/x86_64/strchr.S.
16275 2013-09-11  Will Newton  <will.newton@linaro.org>
16277         * benchtests/bench-timing.h (TIMING_INIT): Rename ITERS
16278         parameter to RES. Remove hardcoded 1000 value.
16279         * benchtests/bench-skeleton.c (main): Pass RES parameter
16280         to TIMING_INIT and multiply result by 1000.
16282 2013-09-10  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16284         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
16286 2013-09-11  Andreas Schwab  <schwab@suse.de>
16288         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (__O_TMPFILE): Define
16289         if not defined.
16290         (O_TMPFILE) [__USE_GNU]: Define.
16291         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (__O_TMPFILE):
16292         Define.
16294 2013-09-11  Will Newton  <will.newton@linaro.org>
16296         [BZ #15857]
16297         * malloc/malloc.c (__libc_memalign): Check the value of bytes
16298         does not overflow.
16300 2013-09-11  Will Newton  <will.newton@linaro.org>
16302         [BZ #15856]
16303         * malloc/malloc.c (__libc_valloc): Check the value of bytes
16304         does not overflow.
16306 2013-09-11  Will Newton  <will.newton@linaro.org>
16308         [BZ #15855]
16309         * malloc/malloc.c (__libc_pvalloc): Check the value of bytes
16310         does not overflow.
16312 2013-09-10  Ondřej Bílka  <neleai@seznam.cz>
16314         * sysdeps/ieee754/dbl-64/e_j0.c: Remove DO_NOT_USE_THIS conditionals.
16315         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
16316         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
16317         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
16318         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
16320 2013-09-10  Allan McRae  <allan@archlinux.org>
16322         [BZ #15748]
16323         * manual/arith.texi (Parsing of Floats): Clarify
16324         cross-reference.
16326         [BZ #15849]
16327         * manual/install.texi (Running make install): Mention
16328         --enable-pt-chown.
16329         * INSTALL: Regenerated.
16331 2013-09-09  Maciej W. Rozycki  <macro@codesourcery.com>
16333         * csu/init-first.c (_init): Remove the !SHARED condition around
16334         FPU control word initialization.
16335         * elf/dl-support.c (_dl_fpu_control): New variable.
16336         (_dl_aux_init) <AT_FPUCW>: Initialize it.
16337         * math/test-fpucw.c [!FPU_CONTROL] (FPU_CONTROL): New macro.
16338         (main): Replace _FPU_DEFAULT with FPU_CONTROL throughout.
16339         * math/test-fpucw-static.c: New file.
16340         * math/test-fpucw-ieee.c: New file.
16341         * math/test-fpucw-ieee-static.c: New file.
16342         * math/Makefile (tests): Add `test-fpucw-ieee' and
16343         `$(tests-static)'.
16344         (tests-static): New variable.
16345         [($(build-shared),yes)] ($(addprefix $(objpfx),$(tests))): Move
16346         dependency to...
16347         [($(build-shared),yes)]
16348         ($(addprefix $(objpfx),$(filter-out $(tests-static),$(tests)))):
16349         ... this.
16350         [($(build-shared),yes)] ($(addprefix $(objpfx),$(tests-static))):
16351         New dependency.
16353 2013-09-09  Allan McRae  <allan@archlinux.org>
16355         [BZ #15939]
16356         * manual/string.texi (Collation Functions): Fix typo in
16357         strcoll example.
16358         Reported by Suren Karapetyan <me@suren.karapetyan.name>.
16360         [BZ #15893]
16361         * stdlib/isomac.c (get_null_defines): Fix memory leak.
16363         [BZ #15892]
16364         * libio/memstream.c (open_memstream): Fix memory leak.
16365         * libio/wmemstream.c (open_wmemstream): Likewise.
16367         [BZ #15895]
16368         * nscd/netgroupcache.c: Fix nesting of ifdefs.
16370 2013-09-09  Will Newton  <will.newton@linaro.org>
16372         * malloc/Makefile: Add tst-realloc to tests.
16373         * malloc/tst-realloc.c: New file.
16375 2013-09-09  Allan McRae  <allan@archlinux.org>
16377         [BZ #15844]
16378         * COPYING: Update from GNU website to fix FSF address.
16379         * COPYING.LIB: Likewise.
16381 2013-09-06  David S. Miller  <davem@davemloft.net>
16383         * po/zh_TW.po: Update Chinese (traditional) translation from
16384         translation project.
16386 2013-09-06  Richard Sandiford  <richard@codesourcery.com>
16387             Joseph Myers  <joseph@codesourcery.com>
16389         * locale/programs/locfile.c: Include <assert.h>, <wchar.h> and
16390         "localeinfo.h".
16391         (obstack_chunk_alloc): New macro.
16392         (obstack_chunk_free): Likewise.
16393         (record_offset): New function.
16394         (init_locale_data): Likewise.
16395         (align_locale_data): Likewise.
16396         (add_locale_empty): Likewise.
16397         (add_locale_raw_data): Likewise.
16398         (add_locale_raw_obstack): Likewise.
16399         (add_locale_string): Likewise.
16400         (add_locale_wstring): Likewise.
16401         (add_locale_uint32): Likewise.
16402         (add_locale_uint32_array): Likewise.
16403         (add_locale_char): Likewise.
16404         (start_locale_structure): Likewise.
16405         (end_locale_structure): Likewise.
16406         (start_locale_prelude): Likewise.
16407         (end_locale_prelude): Likewise.
16408         (write_locale_data): Take locale_file structure rather than an
16409         iovec.
16410         * locale/programs/locfile.h: Include "obstack.h".
16411         (struct locale_file): Change to store locale file contents instead
16412         of header.
16413         (init_locale_data): New prototype.
16414         (align_locale_data): Likewise.
16415         (add_locale_empty): Likewise.
16416         (add_locale_raw_data): Likewise.
16417         (add_locale_raw_obstack): Likewise.
16418         (add_locale_string): Likewise.
16419         (add_locale_wstring): Likewise.
16420         (add_locale_uint32): Likewise.
16421         (add_locale_uint32_array): Likewise.
16422         (add_locale_char): Likewise.
16423         (start_locale_structure): Likewise.
16424         (end_locale_structure): Likewise.
16425         (start_locale_prelude): Likewise.
16426         (end_locale_prelude): Likewise.
16427         (write_locale_data): Update prototype.
16428         * locale/programs/3level.h (struct TABLE): Remove result field.
16429         (CONCAT(TABLE,_finalize)): Change to CONCAT(add_locale_,TABLE).
16430         Use new locale_file interface.
16431         [!NO_FINALIZE]: Change condition to [!NO_ADD_LOCALE].
16432         (NO_FINALIZE): Change #undef to #undef of NO_ADD_LOCALE.
16433         * locale/programs/ld-address.c (address_output): Use new
16434         locale_file interface.
16435         * locale/programs/ld-collate.c (NO_FINALIZE): Change to
16436         NO_ADD_LOCALE.
16437         (collate_finish): Don't call collseq_table_finalize.
16438         (collate_output): Use new locale_file interface.
16439         * locale/programs/ld-ctype.c: Move includes of "3level.h" earlier
16440         in file.
16441         (NO_FINALIZE): Change to NO_ADD_LOCALE.
16442         (TABLE): Move defines earlier in file.
16443         (ELEMENT): Likewise.
16444         (DEFAULT): Likewise.
16445         (wctrans_table_add): Move macro and inline function earlier in
16446         file.
16447         (struct wctype_table): Move type earlier in file.
16448         (add_locale_wctype_table): New static prototype.
16449         (struct locale_ctype_t): Use logical types instead of struct iovec
16450         pointers for members.
16451         (ctype_output): Use new locale_file interface.
16452         (wctype_table_finalize): Change to add_locale_wctype_table.  Use
16453         new locale_file interface.
16454         (allocate_arrays): Update for use of new locale_file interface.
16455         * locale/programs/ld-identification.c (identification_output): Use
16456         new locale_file interface.
16457         * locale/programs/ld-measurement.c (measurement_output): Likewise.
16458         * locale/programs/ld-messages.c (messages_output): Likewise.
16459         * locale/programs/ld-monetary.c (monetary_output): Likewise.
16460         * locale/programs/ld-name.c (name_output): Likewise.
16461         * locale/programs/ld-numeric.c (numeric_output): Likewise.
16462         * locale/programs/ld-paper.c (paper_output): Likewise.
16463         * locale/programs/ld-telephone.c (telephone_output): Likewise.
16464         * locale/programs/ld-time.c (time_output): Likewise.
16466 2013-09-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16468         * benchtests/Makefile: Add memrchr benchmark.
16469         * benchtests/bench-memchr.c (USE_AS_MEMRCHR): Add define to use
16470         benchmark as memrchr.
16471         * benchtests/bench-memrchr-ifunc.c: New file.
16472         * benchtests/bench-memrchr.c: New file.
16474 2013-09-06   Will Newton  <will.newton@linaro.org>
16476         * benchtests/Makefile (string-bench): Add memcpy.
16478 2013-09-05  Carlos O'Donell  <carlos@redhat.com>
16479             Cong Wang  <amwang@redhat.com>
16481         [BZ #15850]
16482         * sysdeps/unix/sysv/linux/bits/in.h
16483         [_UAPI_LINUX_IN6_H]: Define __USE_KERNEL_IPV6_DEFS.
16484         * inet/netinet/in.h: Move in_addr definition and bits/in.h inclusion
16485         before __USE_KERNEL_IPV6_DEFS uses.
16486         * inet/netinet/in.h [!__USE_KERNEL_IPV6_DEFS]: Define IPPROTO_MH, and
16487         IPPROTO_BEETPH.
16488         [__USE_KERNEL_IPV6_DEFS]: Don't define any of IPPROTO_*, in6_addr,
16489         sockaddr_in6, or ipv6_mreq.
16491 2013-09-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16493         * sysdeps/powerpc/powerpc32/power7/memrchr.S (__memrchr): Fix invalid
16494         memory access for final bytes in some large inputs.
16495         * sysdeps/powerpc/powerpc64/power7/memrchr.S (__memrchr): Likewise.
16497 2013-09-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16499         * string/test-memrchr.c: New file.
16500         * string/test-memrchr-ifunc.c: New file.
16501         * string/Makefile: Add new memrchr testcase.
16503 2013-09-05  Mike Frysinger  <vapier@gentoo.org>
16505         * sysdeps/unix/sysv/linux/tst-fanotify.c (do_test): Skip test when
16506         fanotify_init returns EPERM.
16508 2013-09-04  Joseph Myers  <joseph@codesourcery.com>
16510         * conform/conformtest.pl (newtoken): Treat tokens not allowed as
16511         errors.
16512         (top level): Treat second token from macro or constant entries for
16513         allowed headers as allowed.
16514         * include/complex.h: Condition internal declarations on
16515         [!_ISOMAC].
16516         * include/fenv.h: Condition include of <stdbool.h> and internal
16517         declarations on [!_ISOMAC].
16519 2013-09-04  Chris Leonard  <cjl@sugarlabs,.org>
16521         [BZ #15923]
16522         * locale/iso-4217.def: Update iso-1427.def and related occurrences.
16524 2013-09-04  Joseph Myers  <joseph@codesourcery.com>
16526         * configure.in (--enable-versioning): Remove configure option.
16527         (libc_cv_asm_symver_directive): Remove configure test.
16528         (libc_cv_ld_version_script_option): Likewise.
16529         (VERSIONING): Remove variable and AC_SUBST.
16530         (DO_VERSIONING): Remove AC_DEFINE.
16531         * configure: Regenerated.
16532         * config.h.in (DO_VERSIONING): Remove macro.
16533         * Makerules [$(versioning) = yes]: Change conditionals to
16534         [$(build-shared) = yes].
16535         * config.make.in (versioning): Remove variable.
16536         * dlfcn/Makefile [$(versioning) = yes]: Change conditionals to
16537         [$(build-shared) = yes].
16538         * dlfcn/modstatic2.c (test) [DO_VERSIONING]: Remove conditional.
16539         * dlfcn/tststatic2.c (main) [DO_VERSIONING]: Likewise.
16540         * elf/Makefile [$(versioning) = yes]: Change conditionals to
16541         [$(build-shared) = yes].
16542         * extra-lib.mk [$(versioning) = yes]: Likewise.
16543         * hurd/Makefile [$(versioning) = yes]: Likewise.
16544         * hurd/geteuids.c [SHARED && DO_VERSIONING]: Change conditional to
16545         [SHARED].
16546         * include/libc-symbols.h [DO_VERSIONING]: Change conditional to
16547         [SHARED].
16548         [SHARED && DO_VERSIONING && !NO_HIDDEN]: Change conditional to
16549         [SHARED && !NO_HIDDEN].
16550         * include/shlib-compat.h [DO_VERSIONING]: Change conditional to
16551         [SHARED].
16552         [SHARED && DO_VERSIONING]: Likewise..
16553         * libio/Makefile [$(versioning) = yes]: Change conditionals to
16554         [$(build-shared) = yes].
16555         * manual/install.texi (--disable-versioning): Remove
16556         documentation.
16557         * INSTALL: Regenerated.
16558         * resolv/res_libc.c [SHARED && DO_VERSIONING]: Change conditional
16559         to [SHARED].
16560         * sunrpc/Makefile [$(versioning) = yes]: Change conditional to
16561         [$(build-shared) = yes].
16562         * sysdeps/gnu/Makefile [$(versioning) = yes]: Likewise.
16563         * sysdeps/i386/i686/multiarch/strstr-c.c
16564         [SHARED && DO_VERSIONING && !NO_HIDDEN]: Change conditional to
16565         [SHARED && !NO_HIDDEN].
16566         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h
16567         [SHARED && DO_VERSIONING]: Change conditional to [SHARED].
16568         * sysdeps/powerpc/powerpc32/dl-machine.c
16569         [SHARED && !(DO_VERSIONING - 0)]: Remove conditional error.
16570         * sysdeps/powerpc/powerpc32/sysdep.h
16571         [SHARED && DO_VERSIONING && PIC && !NO_HIDDEN]: Change conditional
16572         to [SHARED && PIC && !NO_HIDDEN].
16573         * sysdeps/wordsize-32/divdi3.c [SHARED && DO_VERSIONING]: Change
16574         conditional to [SHARED].
16576 2013-09-04   Will Newton  <will.newton@linaro.org>
16578         * benchtests/bench-timing.h (TIMING_PRINT_MEAN): New macro.
16579         * benchtests/bench-string.h: Include bench-timing.h instead
16580         of including hp-timing.h directly. (INNER_LOOP_ITERS): New
16581         define. (HP_TIMING_BEST): Delete macro. (test_init): Remove
16582         call to HP_TIMING_DIFF_INIT.
16583         * benchtests/bench-memccpy.c: Use bench-timing.h macros
16584         instead of hp-timing.h macros.
16585         * benchtests/bench-memchr.c: Likewise.
16586         * benchtests/bench-memcmp.c: Likewise.
16587         * benchtests/bench-memcpy.c: Likewise.
16588         * benchtests/bench-memmem.c: Likewise.
16589         * benchtests/bench-memmove.c: Likewise.
16590         * benchtests/bench-memset.c: Likewise.
16591         * benchtests/bench-rawmemchr.c: Likewise.
16592         * benchtests/bench-strcasecmp.c: Likewise.
16593         * benchtests/bench-strcasestr.c: Likewise.
16594         * benchtests/bench-strcat.c: Likewise.
16595         * benchtests/bench-strchr.c: Likewise.
16596         * benchtests/bench-strcmp.c: Likewise.
16597         * benchtests/bench-strcpy.c: Likewise.
16598         * benchtests/bench-strcpy_chk.c: Likewise.
16599         * benchtests/bench-strlen.c: Likewise.
16600         * benchtests/bench-strncasecmp.c: Likewise.
16601         * benchtests/bench-strncat.c: Likewise.
16602         * benchtests/bench-strncmp.c: Likewise.
16603         * benchtests/bench-strncpy.c: Likewise.
16604         * benchtests/bench-strnlen.c: Likewise.
16605         * benchtests/bench-strpbrk.c: Likewise.
16606         * benchtests/bench-strrchr.c: Likewise.
16607         * benchtests/bench-strspn.c: Likewise.
16608         * benchtests/bench-strstr.c: Likewise.
16610 2013-09-04  Will Newton  <will.newton@linaro.org>
16612         * benchtests/Makefile: Use LDLIBS instead of LDFLAGS.
16614 2013-09-03  Joseph Myers  <joseph@codesourcery.com>
16616         [BZ #15427]
16617         * sysdeps/ieee754/flt-32/e_lgammaf_r.c (__ieee754_lgammaf_r): Use
16618         2**-30 instead of 2**-70 as threshold for returning -log(|x|).
16619         * math/libm-test.inc (lgamma_test_data): Add more tests.
16620         * sysdeps/i386/fpu/libm-test-ulps: Update.
16621         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16623 2013-09-03   Ondřej Bílka  <neleai@seznam.cz>
16625         * sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S: New file.
16626         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
16627         Add ifunc.
16628         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
16629         Add strcmp-sse2-unaligned
16630         * sysdeps/x86_64/multiarch/strcmp.S (strcmp): Add ifunc.
16632 2013-09-02  Mike Frysinger  <vapier@gentoo.org>
16634         * Versions.def (libc): Add GLIBC_2.19.
16636 2013-09-02  Mike Frysinger  <vapier@gentoo.org>
16638         * sysdeps/unix/sysv/linux/tst-fanotify.c: New test.
16639         * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-fanotify.
16641 2013-09-02  Joseph Myers  <joseph@codesourcery.com>
16643         [BZ #14155]
16644         * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_jnf): Use double for
16645         intermediate calculations in recurrence.
16646         (__ieee754_ynf): Likewise.
16647         * math/libm-test.inc (jn_test_data): Do not allow spurious
16648         underflow exception.  Add more tests.
16649         (yn_test_data): Add more tests.
16650         * sysdeps/i386/fpu/libm-test-ulps: Update.
16651         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16653 2013-09-02   Ondřej Bílka  <neleai@seznam.cz>
16655         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Fix typo.
16657 2013-08-30   Ondřej Bílka  <neleai@seznam.cz>
16659         * csu/init-first.c: Fix then/than typos.
16660         * locale/programs/ld-collate.c: Likewise.
16661         * locale/programs/linereader.h: Likewise.
16662         * manual/charset.texi: Likewise.
16663         * manual/filesys.texi: Likewise.
16664         * manual/stdio.texi: Likewise.
16665         * manual/string.texi: Likewise.
16666         * stdlib/fmtmsg.c: Likewise.
16667         * sysdeps/i386/stpncpy.S: Likewise.
16668         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
16669         * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
16670         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
16671         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
16673 2013-08-30   Ondřej Bílka  <neleai@seznam.cz>
16675         * elf/dl-open.c: Fix typos.
16676         * iconvdata/gbbig5.c: Likewise.
16677         * iconvdata/iso-2022-jp.c: Likewise.
16678         * iconv/gconv_int.h: Likewise.
16679         * iconv/loop.c: Likewise.
16680         * nis/rpcsvc/nis.h: Likewise.
16681         * resolv/ns_name.c: Likewise.
16682         * stdio-common/vfscanf.c: Likewise.
16683         * streams/stropts.h: Likewise.
16684         * sunrpc/rpc_thread.c: Likewise.
16685         * sysdeps/i386/strpbrk.S: Likewise.
16686         * sysdeps/ieee754/k_standard.c: Likewise.
16687         * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
16688         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
16689         * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
16690         * sysdeps/mach/hurd/profil.c: Likewise.
16691         * sysdeps/s390/dl-procinfo.h: Likewise.
16692         * sysdeps/unix/sysv/linux/i386/chown.c: Likewise.
16693         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
16694         * sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c: Likewise.
16695         * sysdeps/x86_64/dl-trampoline.S: Likewise.
16696         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
16698 2013-08-30  Ondřej Bílka  <neleai@seznam.cz>
16700         * sysdeps/x86_64/multiarch/rawmemchr.S: Delete.
16701         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Remove rawmemchr ifunc.
16703 2013-08-29  Ondřej Bílka  <neleai@seznam.cz>
16705         * sysdeps/unix/sysv/linux/powerpc/aix/aix-dirent.h: Remove
16706         aix specific files.
16707         * sysdeps/unix/sysv/linux/powerpc/aix/aix-errno.h: Likewise.
16708         * sysdeps/unix/sysv/linux/powerpc/aix/aix-stat.h: Likewise.
16709         * sysdeps/unix/sysv/linux/powerpc/aix/aix-termios.h: Likewise.
16710         * sysdeps/unix/sysv/linux/powerpc/aix/direntconv.c: Likewise.
16711         * sysdeps/unix/sysv/linux/powerpc/aix/errnoconv.c: Likewise.
16712         * sysdeps/unix/sysv/linux/powerpc/aix/statconv.c: Likewise.
16713         * sysdeps/unix/sysv/linux/powerpc/aix/tcgetattr.c: Likewise.
16714         * sysdeps/unix/sysv/linux/powerpc/aix/tcsetattr.c: Likewise.
16716 2013-08-29  Thomas Schwinge  <thomas@codesourcery.com>
16717             Roland McGrath  <roland@hack.frob.com>
16719         * sysdeps/mach/hurd/errnos.awk (BEGIN): Emit ESUCCESS.
16720         * sysdeps/mach/hurd/bits/errno.h: Regenerate.
16722 2013-08-29  Samuel Thibault  <samuel.thibault@ens-lyon.org>
16724         * sysdeps/mach/hurd/i386/init-first.c (init1): Use
16725         __executable_start symbol instead of _start.
16727 2013-08-29  Thomas Schwinge  <thomas@codesourcery.com>
16729         * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_HEADER)
16730         (VALID_ELF_OSABI, VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA):
16731         Move macros to...
16732         * sysdeps/gnu/ldsodefs.h: ... this new file.
16734         * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_OSABI)
16735         (VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA): Use ELFOSABI_GNU
16736         instead of ELFOSABI_LINUX.
16738         [BZ #15522] strtod ("nan(N)") returning a sNaN in some cases
16739         * stdlib/strtof_l.c (SET_MANTISSA): Rewrite.
16740         * stdlib/strtod_l.c (SET_MANTISSA): Likewise.
16741         * sysdeps/ieee754/ldbl-64-128/strtold_l.c (SET_MANTISSA):
16742         Likewise.
16743         * sysdeps/ieee754/ldbl-96/strtold_l.c (SET_MANTISSA): Likewise.
16744         * sysdeps/ieee754/ldbl-128/strtold_l.c (SET_MANTISSA): Likewise.
16745         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c (SET_MANTISSA):
16746         Likewise.
16747         * sysdeps/ieee754/ldbl-128ibm/ieee754.h
16748         (ibm_extended_long_double): Add ieee_nan member.
16749         * stdlib/tst-strtod6.c (test): New function, renamed from do_test.
16750         (do_test): New function.
16752         * math/basic-test.c (TEST_CONVERT): New macro, renamed from
16753         TEST_TRUNC.
16754         (convert_dfsf_test, convert_tfsf_test, convert_tfdf_test): New
16755         functions, renamed from truncdfsf_test, trunctfsf_test,
16756         trunctfdf_test.
16757         (convert_sfdf_test, convert_sftf_test, convert_dftf_test): New
16758         functions.
16759         (do_test): Run all these.
16761 2013-08-29   Ondřej Bílka  <neleai@seznam.cz>
16763         * argp/argp-help.c: Fix typos.
16764         * argp/argp-parse.c: Likewise.
16765         * debug/backtracesyms.c: Likewise.
16766         * elf/elf.h: Likewise.
16767         * malloc/malloc.c: Likewise.
16768         * nis/nis_print.c: Likewise.
16769         * resolv/res_comp.c: Likewise.
16770         * stdlib/stdlib.h: Likewise.
16771         * sunrpc/clnt_tcp.c: Likewise.
16772         * sunrpc/clnt_udp.c: Likewise.
16773         * sunrpc/clnt_unix.c: Likewise.
16774         * sysdeps/unix/bsd/ptsname.c: Likewise.
16775         * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
16776         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Likewise.
16777         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S:
16778         Likewise.
16779         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S:
16780         Likewise.
16781         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S:
16782         Likewise.
16783         * sysdeps/unix/sysv/linux/ptsname.c: Likewise.
16785 2013-08-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
16787         * nscd/aicache.c (addhstaiX): Use __glibc_unlikely.
16788         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
16790 2013-08-27  Mike Frysinger  <vapier@gentoo.org>
16792         [BZ #15897]
16793         * dlfcn/Makefile (tests): Add bug-dl-leaf.
16794         (modules-names): Add bug-dl-leaf-lib and bug-dl-leaf-lib-cb.
16795         ($(objpfx)bug-dl-leaf): New rule.
16796         ($(objpfx)bug-dl-leaf.so): Likewise.
16797         ($(objpfx)bug-dl-leaf.out): Likewise.
16798         ($(objpfx)bug-dl-leaf-lib.so): Likewise.
16799         ($(objpfx)bug-dl-leaf-lib-cb.so): Likewise.
16800         * dlfcn/bug-dl-leaf.c: New test.
16801         * dlfcn/bug-dl-leaf-lib.c: Likewise.
16802         * dlfcn/bug-dl-leaf-lib-cb.c: Likewise.
16803         * dlfcn/dlfcn.h (dlopen): Change __THROW to __THROWNL.
16804         (dlclose): Likewise.
16805         (dlmopen): Likewise.
16807 2013-08-27  Roland McGrath  <roland@hack.frob.com>
16809         * include/netdb.h [!_ISOMAC]:
16810         Don't include <tls.h>.
16811         (h_errno, __libc_h_errno): Move declaration and macros out of
16812         [_LIBC_REENTRANT].
16814         * include/resolv.h [_RESOLV_H_]:
16815         Don't include <tls.h>.
16816         (__resp, _res): Move declaration and macro out of [_LIBC_REENTRANT].
16817         * resolv/res_libc.c: Don't include <tls.h>.
16818         (_res): Use __attribute__ ((nocommon)) in place of
16819         __attribute__ ((section (".bss"))).
16821         * Makefile ($(common-objpfx)linkobj/libc_pic.a):
16822         If [sunrpc not in $(subdirs)], define to use libc_pic.a directly.
16824         * resolv/res_send.c (send_dg): Don't try to use ioctl unless [FIONREAD].
16826         * resolv/res_hconf.c [!NOT_IN_libc] (ifaddrs): Declare
16827         only under [SIOCGIFCONF && SIOCGIFNETMASK].
16829         * resolv/res_mkquery.c: Include <sys/time.h>.
16831         * inet/ifreq.c: Moved to ...
16832         * sysdeps/unix/ifreq.c: ... here.
16833         * inet/ifreq.c: New file, true stub version.
16835         * socket/sa_len.c: New file.
16836         * socket/Makefile (aux): Add it.
16837         * sysdeps/unix/sysv/linux/Makefile
16838         [$(subdir) = socket] (sysdep_routines): Don't add sa_len here.
16839         * sysdeps/unix/sysv/linux/sa_len.c: Just #define HAVE_NET*_H
16840         and #include <socket/sa_len.c>.
16841         * sysdeps/unix/sysv/linux/s390/sa_len.c: Just #define
16842         HAVE_NETIUCV_IUCV_H and #include <sysdeps/unix/sysv/linux/sa_len.c>.
16844         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Moved to ...
16845         * bits/socket.h: ... here.
16847         * sysdeps/unix/bsd/bsd4.4/bits/socket.h (enum __socket_type):
16848         Add SOCK_CLOEXEC, SOCK_NONBLOCK with values from FreeBSD.
16849         (SOCK_MAX, SOCK_TYPE_MASK): New macros.
16851 2013-08-27  Andreas Schwab  <schwab@suse.de>
16853         [BZ #15736]
16854         * locale/categories.def (LC_CTYPE): Add "nonascii-case" element.
16855         * string/Makefile (test-strcasecmp-ENV, test-strncasecmp-ENV)
16856         (test-strcasecmp-ifunc-ENV, test-strncasecmp-ifunc-ENV): Define.
16857         * string/test-strcasecmp.c (test_main): Run tests in several
16858         locales.
16859         * string/test-strncasecmp.c (test_main): Likewise.
16861         * sysdeps/i386/i686/multiarch/strcmp-sse4.S (__strcasecmp_sse4_2)
16862         (__strncasecmp_sse4_2) [PIC]: Restore %ebx before falling through
16863         to __strcasecmp_nonascii and __strncasecmp_nonascii.
16864         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S (__strcasecmp_ssse3)
16865         (__strncasecmp_ssse3) [PIC]: Likewise.
16867 2013-08-26  Roland McGrath  <roland@hack.frob.com>
16869         * io/lxstat64.c: Just call __xstat64, for parity with stub __lxstat.
16871         * nss/nss_files/files-key.c: Include <rpc/des_crypt.h>
16872         instead of explicitly declaring xdecrypt.
16873         * nis/nss_nis/nis-publickey.c: Likewise.
16875 2013-08-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
16877         [BZ #15890]
16878         * nscd/aicache.c: Include res_hconf.h.
16879         (addhstaiX): Initialize res_hconf.
16881 2013-08-26  Andreas Schwab  <schwab@suse.de>
16883         * stdlib/Makefile (LDFLAGS-tst-tls-atexit): Remove.
16884         ($(objpfx)tst-tls-atexit): Add dependencies here instead.
16886 2013-08-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
16888         * nscd/aicache.c (addhstaiX): Fix indentation.
16890 2013-08-25  Mike Frysinger  <vapier@gentoo.org>
16892         * configure.ac: Quote $build_pt_chown test.
16893         * configure: Regenerated.
16895 2013-08-23  Joseph Myers  <joseph@codesourcery.com>
16897         [BZ #15532]
16898         * math/s_cexp.c (__cexp): Return NaN + i0 for NaN + i0 argument.
16899         * math/s_cexpf.c (__cexpf): Likewise.
16900         * math/s_cexpl.c (__cexpl): Likewise.
16901         * math/libm-test.inc (cexp_test_data): Correct expected return
16902         value for NaN + i0.  Add another test.
16904 2013-08-22  David S. Miller  <davem@davemloft.net>
16906         * po/ca.po: Update Catalan translation from translation project.
16907         * po/uk.po: Add Ukrainian translations from translation project.
16909 2013-08-21  Joseph Myers  <joseph@codesourcery.com>
16911         [BZ #15797]
16912         * math/s_fdim.c (__fdim): Check for infinite arguments if result
16913         is infinite, not alongside NaN test.
16914         * math/s_fdimf.c (__fdimf): Likewise.
16915         * math/s_fdiml.c (__fdiml): Likewise.
16916         * math/libm-test.inc (fdim_test_data): Add more tests.  Test that
16917         errno is unchanged.
16919 2013-08-21   Ondřej Bílka  <neleai@seznam.cz>
16921         * argp/argp-help.c: Fix typos.
16922         * crypt/speeds.c: Likewise.
16923         * csu/check_fds.c: Likewise.
16924         * elf/dl-load.c: Likewise.
16925         * elf/dl-open.c: Likewise.
16926         * elf/reldep3.c: Likewise.
16927         * elf/reldep.c: Likewise.
16928         * elf/sprof.c: Likewise.
16929         * iconv/iconv_charmap.c: Likewise.
16930         * iconv/skeleton.c: Likewise.
16931         * iconv/strtab.c: Likewise.
16932         * io/lockf64.c: Likewise.
16933         * libio/libioP.h: Likewise.
16934         * resolv/gai_notify.c: Likewise.
16935         * resolv/ns_name.c: Likewise.
16936         * resolv/ns_samedomain.c: Likewise.
16937         * resolv/res_send.c: Likewise.
16938         * stdlib/random.c: Likewise.
16939         * sunrpc/rpc/xdr.h: Likewise.
16940         * sysdeps/i386/fpu/fraiseexcpt.c: Likewise.
16941         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
16942         * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
16943         * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
16944         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
16945         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
16946         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
16947         * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
16948         * sysdeps/mach/hurd/check_fds.c: Likewise.
16949         * sysdeps/powerpc/powerpc32/cell/memcpy.S: Likewise.
16950         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
16951         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
16952         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.
16953         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
16954         * sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise.
16955         * sysdeps/pthread/aio_notify.c: Likewise.
16956         * sysdeps/sparc/fpu/fraiseexcpt.c: Likewise.
16957         * sysdeps/unix/sysv/linux/socketcall.h: Likewise.
16958         * sysdeps/x86_64/fpu/fraiseexcpt.c: Likewise.
16959         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
16960         * sysdeps/x86/fpu/bits/fenv.h: Likewise.
16962 2013-08-21  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
16964         * sysdeps/i386/i686/multiarch/strcmp.S: Skip SSE4_2
16965         version if bit_Slow_SSE4_2 is set.
16966         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
16967         * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
16969 2013-07-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16971         [BZ #15867]
16972         * sysdeps/powerpc/powerpc32/backtrace.c (__backtrace): Handle signal
16973         trampoline stack frame information.
16974         * sysdeps/powerpc/powerpc64/backtrace.c (__backtrace): Likewise.
16975         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h
16976         (__vdso_sigtramp_rt64): New variable: PPC64 signal trampoline.
16977         (__vdso_sigtramp32): New variable: PPC32 signal trampoline.
16978         (__vdso_sigtramp_rt32): New variable: PPC32 signal trampoline.
16979         * sysdeps/unix/sysv/linux/powerpc/init-first.c
16980         (_libc_vdso_platform_setup): Initialize the signal trampolines.
16981         * debug/tst-backtrace5.c (fn): Add an option set modify sigaction
16982         sa_flags value.
16983         * debug/tst-backtrace6.c: New file: check backtrace for signal frames,
16984         interrupting a syscall and set with option SA_SIGINFO.
16986 2013-08-20  Joseph Myers  <joseph@codesourcery.com>
16988         [BZ #15531]
16989         * math/s_cproj.c (__cproj): Only return an infinity if one part of
16990         argument is infinite.
16991         * math/s_cprojf.c (__cprojf): Likewise.
16992         * math/s_cprojl.c (__cprojl): Likewise.
16993         * sysdeps/ieee754/ldbl-128ibm/s_cprojl.c (__cprojl): Likewise.
16994         * math/libm-test.inc (cproj_test_data): Add more tests.
16996         * sysdeps/unix/sysv/linux/mmap64.c: Include <string.h>.
16998         * sysdeps/unix/sysv/linux/mmap64.c (__mmap64)
16999         [MMAP2_PAGE_SHIFT == -1]: Use __getpagesize to determine page
17000         size.  Use __ffs to determine corresponding shift.
17002 2013-08-20  Joseph Myers  <joseph@codesourcery.com>
17003             Roland McGrath  <roland@hack.frob.com>
17005         * Makefile (INSTALL): Remove trailing blank lines from output of
17006         makeinfo.
17008 2013-08-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
17010         * sysdeps/unix/sysv/linux/s390/sys/procfs.h (struct elf_prstatus):
17011         Align 32 bit compat elf_greg to 8 bytes.
17013 2013-08-20  Andreas Arnez  <arnez@linux.vnet.ibm.com>
17015         * elf/setup-vdso.h (setup_vdso): Fix missing string termination.
17017 2013-08-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
17019         * string/strcoll_l.c (coll_seq): New structure.
17020         (get_next_seq_cached): New function.
17021         (get_next_seq): New function.
17022         (do_compare): New function.
17023         (STRCOLL): Use GNU style definition.  Simplify implementation
17024         by using get_next_seq, get_next_seq_cached and do_compare.
17026 2013-08-16  Florian Weimer  <fweimer@redhat.com>
17028         [BZ #14699]
17029         CVE-2013-4237
17030         * sysdeps/posix/dirstream.h (struct __dirstream): Add errcode
17031         member.
17032         * sysdeps/posix/opendir.c (__alloc_dir): Initialize errcode
17033         member.
17034         * sysdeps/posix/rewinddir.c (rewinddir): Reset errcode member.
17035         * sysdeps/posix/readdir_r.c (__READDIR_R): Enforce NAME_MAX limit.
17036         Return delayed error code.  Remove GETDENTS_64BIT_ALIGNED
17037         conditional.
17038         * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Do not define
17039         GETDENTS_64BIT_ALIGNED.
17040         * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
17041         * manual/filesys.texi (Reading/Closing Directory): Document
17042         ENAMETOOLONG return value of readdir_r.  Recommend readdir more
17043         strongly.
17044         * manual/conf.texi (Limits for Files): Add portability note to
17045         NAME_MAX, PATH_MAX.
17046         (Pathconf): Add portability note for _PC_NAME_MAX, _PC_PATH_MAX.
17048 2013-08-13  Andreas Schwab  <schwab@suse.de>
17050         [BZ #15749]
17051         * sysdeps/ieee754/ldbl-96/s_cbrtl.c (__cbrtl): Use fabsl instead
17052         of fabs.
17053         * math/libm-test.inc (cbrt_test_data) [TEST_LDOUBLE &&
17054         LDBL_MAX_EXP >= 16384]: Add tests for it.
17056 2013-08-12  David S. Miller  <davem@davemloft.net>
17058         * version.h (RELEASE): Set to "development".
17059         (VERSION): Set to "2.18.90".
17060         * NEWS: Add 2.19 section.
17062 2013-08-03  David S. Miller  <davem@davemloft.net>
17064         * po/ko.po: Update Korean translation from translation project.
17066 2013-08-01  David S. Miller  <davem@davemloft.net>
17068         * manual/contrib.texi: Update entry for Siddhesh Poyarekar.  Add
17069         entries for Will Newton, Andi Kleen, David Holsgrove, and Ondrej
17070         Bilka.
17072 2013-07-30  David S. Miller  <davem@davemloft.net>
17074         * po/fr.po: Update French translation from translation project.
17076 2013-07-28  David S. Miller  <davem@davemloft.net>
17078         * po/cs.po: Update Czech translation from translation project.
17080         * po/sv.po: Update Swedish translation from translation project.
17082 2013-07-27  David S. Miller  <davem@davemloft.net>
17084         * po/eo.po: Update Esperanto translation from translation project.
17086         * po/vi.po: Update Vietnamese translation from translation project.
17088         * po/de.po: Update German translation from translation project.
17090 2013-07-26  David S. Miller  <davem@davemloft.net>
17092         * po/bg.po: Update Bulgarian translation from translation project.
17094         * po/nl.po: Update Dutch translation from translation project.
17095         * po/pl.po: Update Polish translation from translation project.
17096         * po/ru.po: Update Russian translation from translation project.
17098 2013-07-24  David S. Miller  <davem@davemloft.net>
17100         * po/libc.pot: Update.
17102 2013-07-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17104         * sysdeps/unix/sysv/linux/powerpc/dl-static.c: New file to support
17105         variable page size.
17106         * sysdeps/unix/sysv/linux/powerpc/ldsodefs.h: Likewise.
17107         * sysdeps/unix/sysv/linux/powerpc/Makefile: Build dl-static in elf.
17108         * sysdeps/unix/sysv/linux/powerpc/Versions: Add _dl_var_init.
17110 2013-07-22  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
17112         * sysdeps/s390/fpu/libm-test-ulps: Refresh.
17114 2013-07-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
17115             Andreas Schwab  <schwab@suse.de>
17116             Roland McGrath  <roland@hack.frob.com>
17117             Joseph Myers  <joseph@codesourcery.com>
17118             Carlos O'Donell  <carlos@redhat.com>
17120         [BZ #15755]
17121         * config.h.in: Define HAVE_PT_CHOWN.
17122         * config.make.in (build-pt-chown): New variable.
17123         * configure.in (--enable-pt_chown): New configure option.
17124         * configure: Regenerate.
17125         * login/Makefile: Include Makeconfig.  Build pt_chown only if
17126         build-pt-chown is enabled.
17127         * sysdeps/unix/grantpt.c (grantpt) [HAVE_PT_CHOWN]: Spawn
17128         pt_chown to fix pty ownership.
17129         * sysdeps/unix/sysv/linux/grantpt.c [HAVE_PT_CHOWN]: Define
17130         CLOSE_ALL_FDS.
17131         * manual/install.texi (Configuring and compiling): Mention
17132         --enable-pt_chown. Add @findex for grantpt.
17133         * INSTALL: Regenerate.
17135 2013-07-20  David S. Miller  <davem@davemloft.net>
17137         * sysdeps/sparc/fpu/libm-test-ulps: Update ULPs to handle minor
17138         difference between 32-bit and 64-bit.
17140 2013-07-15  Carlos O'Donell  <carlos@redhat.com>
17142         [BZ #15711]
17143         * sysdeps/unix/sysv/linux/Makefile ($(objpfx)bits/syscall%h):
17144         Avoid system header dependency with -ffreestanding.
17145         ($(objpfx)bits/syscall%d): Likewise.
17147 2013-07-13  David S. Miller  <davem@davemloft.net>
17149         * math/libm-test.inc (casin_test_data): Annotate more cases of missing
17150         underflows from atanl/atan2l due to bug 15319.
17151         (casinh_test_data): Likewise.
17153 2013-07-07  David S. Miller  <davem@davemloft.net>
17155         * sysdeps/sparc/fpu/libm-test-ulps: Regenerate from scratch.
17157 2013-07-05  Jeroen Albers  <_jeroen_@yahoo.com>
17159         * sysdeps/i386/fpu/libm-test-ulps: Update.
17160         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17162 2013-07-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
17164         * configure.in (--enable-lock-elision): Fix message text.
17165         * INSTALL: Regenerate.
17166         * configure: Regenerate.
17168 2013-07-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17170         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
17172 2013-07-03  Andreas Jaeger  <aj@suse.de>
17174         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_LISTEN): Add
17175         define.
17176         (PTRACE_PEEKSIGINFO): Add new value from Linux 3.10.
17177         (ptrace_peeksiginfo_args): Add.
17178         (__ptrace_peeksiginfo_flags): Add.
17179         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
17180         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
17181         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
17183 2013-07-03  Allan McRae  <allan@archlinux.org>
17185         * sysdeps/i386/fpu/libm-test-ulps: Update.
17187 2013-07-02  David S. Miller  <davem@davemloft.net>
17189         * sysdeps/sparc/fpu/libm-test-ulps: Update.
17191 2013-07-02  Markus Trippelsdorf  <markus@trippelsdorf.de>
17193         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
17195 2013-07-02  Joseph Myers  <joseph@codesourcery.com>
17197         * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
17198         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17200 2013-07-02  Andi Kleen <ak@linux.intel.com>
17202         * config.h.in (ENABLE_LOCK_ELISION): Add.
17203         * configure.in (--enable-lock-elision): Add option.
17204         * manual/install.texi: Document --enable lock elision.
17205         * configure: Regenerate
17206         * INSTALL: Regenerate.
17208 2013-07-02  H.J. Lu  <hongjiu.lu@intel.com>
17210         * sysdeps/i386/i686/multiarch/strcasecmp.S (__strcasecmp): Enable
17211         SSE4.2 strcasecmp for libc.a.
17212         * sysdeps/i386/i686/multiarch/strncase.S (__strncasecmp): Likewise.
17214 2013-07-02  Joseph Myers  <joseph@codesourcery.com>
17216         [BZ #13304]
17217         * soft-fp/op-common.h (_FP_FMA): New macro.
17218         * soft-fp/op-1.h (_FP_FRAC_HIGHBIT_DW_1): New macro.
17219         (_FP_MUL_MEAT_DW_1_imm): Likewise.  Split out of ...
17220         (_FP_MUL_MEAT_1_imm): ... here.
17221         (_FP_MUL_MEAT_DW_1_wide): New macro.  Split out of ...
17222         (_FP_MUL_MEAT_1_wide): ... here.
17223         (_FP_MUL_MEAT_DW_1_hard): Likewise.  Split out of ...
17224         (_FP_MUL_MEAT_1_hard): ... here.
17225         * soft-fp/op-2.h (_FP_FRAC_HIGHBIT_DW_2): New macro.
17226         (_FP_MUL_MEAT_DW_2_wide): Likewise.  Split out of ...
17227         (_FP_MUL_MEAT_2_wide): ... here.
17228         (_FP_MUL_MEAT_DW_2_wide_3mul): New macro.  Split out of ...
17229         (_FP_MUL_MEAT_2_wide_3mul): ... here.
17230         (_FP_MUL_MEAT_DW_2_gmp): New macro.  Split out of ...
17231         (_FP_MUL_MEAT_2_gmp): ... here.
17232         * soft-fp/op-4.h (_FP_FRAC_HIGHBIT_DW_4): New macro.
17233         (_FP_MUL_MEAT_DW_4_wide): Likewise.  Split out of ...
17234         (_FP_MUL_MEAT_4_wide): ... here.
17235         (_FP_MUL_MEAT_DW_4_gmp): New macro.  Split out of ...
17236         (_FP_MUL_MEAT_4_gmp): ... here.
17237         * soft-fp/single.h (_FP_FRACTBITS_DW_S): New macro.
17238         (_FP_WFRACBITS_DW_S): Likewise.
17239         (_FP_WFRACXBITS_DW_S): Likewise.
17240         (_FP_HIGHBIT_DW_S): Likewise.
17241         (FP_FMA_S): Likewise.
17242         (_FP_FRAC_HIGH_DW_S): Likewise.
17243         * soft-fp/double.h (_FP_FRACTBITS_DW_D): New macro.
17244         (_FP_WFRACBITS_DW_D): Likewise.
17245         (_FP_WFRACXBITS_DW_D): Likewise.
17246         (_FP_HIGHBIT_DW_D): Likewise.
17247         (FP_FMA_D): Likewise.
17248         (_FP_FRAC_HIGH_DW_D): Likewise.
17249         * soft-fp/extended.h (_FP_FRACTBITS_DW_E): New macro.
17250         (_FP_WFRACBITS_DW_E): Likewise.
17251         (_FP_WFRACXBITS_DW_E): Likewise.
17252         (_FP_HIGHBIT_DW_E): Likewise.
17253         (FP_FMA_E): Likewise.
17254         (_FP_FRAC_HIGH_DW_E): Likewise.
17255         * soft-fp/quad.h (_FP_FRACTBITS_DW_Q): New macro.
17256         (_FP_WFRACBITS_DW_Q): Likewise.
17257         (_FP_WFRACXBITS_DW_Q): Likewise.
17258         (_FP_HIGHBIT_DW_Q): Likewise.
17259         (FP_FMA_Q): Likewise.
17260         (_FP_FRAC_HIGH_DW_Q): Likewise.
17261         * soft-fp/fmasf4.c: New file.
17262         * soft-fp/fmadf4.c: Likewise.
17263         * soft-fp/fmatf4.c: Likewise.
17265 2013-06-28  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
17267         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Set
17268         bit_Slow_SSE4_2 and bit_Prefer_PMINUB_for_stringop for Intel
17269         Silvermont.
17270         * sysdeps/x86_64/multiarch/init-arch.h (bit_Slow_SSE4_2): New
17271         macro.
17272         (index_Slow_SSE4_2): Likewise.
17273         (index_Prefer_PMINUB_for_stringop): Likewise.
17274         * sysdeps/x86_64/multiarch/strchr.S: Skip SSE4.2 version if
17275         bit_Slow_SSE4_2 is set.
17276         * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
17277         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
17279 2013-06-28  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
17281         * sysdeps/powerpc/Makefile: Add comment about generating an offset to
17282         rtld_global._dl_hwcap2.
17283         * sysdeps/powerpc/bits/hwcap.h: Added PPC_FEATURE2_* definitions for
17284         POWER8.
17285         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Extend for
17286         POWER8 feature descriptions defined in _dl_hwcap2.
17287         * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Implement AT_HWCAP2
17288         string handling for POWER8 feature bits.
17289         (_DL_HWCAP_COUNT): Increment to 64 to cover AT_HWCAP2 bits.
17290         (_DL_HWCAP_LAST): New definition for position of last AT_HWCAP bit in
17291         _dl_powerpc_cap_flags.
17292         (_DL_HWCAP2_LAST): New definition for last usable bit of AT_HWCAP2.
17293         * sysdeps/powerpc/rtld-global-offsets.sym
17294         (RTLD_GLOBAL_RO_DL_HWCAP2_OFFSET): New offset macro to locate
17295         _dl_hwcap2 in the rtld_global_ro structure.
17297 2013-06-28  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
17299         * elf/dl-support.c (_dl_hwcap2): Add a new hwcap field for more
17300         hardware capabilities in support of AT_HWCAP2.
17301         (_dl_aux_init): Read AT_HWCAP2 into GLRO(dl_hwcap2).
17302         * elf/dl-sysdep.c (_dl_sysdep_start): Read AT_HWCAP2 into
17303         GLRO(dl_hwcap2).
17304         (_dl_show_auxv): Add support for calling _dl_procinfo to display
17305         AT_HWCAP2.  If a platform doesn't chose to handle displaying AT_HWCAP2
17306         explicitly the unknown a_type display mechanism is used.
17307         * misc/getauxval.c (__getauxval): Return GLRO(dl_hwcap2) on AT_HWCAP2.
17308         * sysdeps/generic/ldsodefs.h (rtld_global_ro): Add _dl_hwcap2 as a new
17309         struct member.
17310         * sysdeps/generic/dl-procinfo.h (_dl_procinfo): Add TYPE parameter
17311         to macro prototype for AT_HWCAP2 support.
17312         * sysdeps/i386/dl-procinfo.h: Likewise.
17313         * sysdeps/s390/dl-procinfo.h: Likewise.
17314         * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Add TYPE parameter to
17315         macro prototype for AT_HWCAP2 support.  Make WORD unsigned long int
17316         rather than signed int.  Stub in handler for TYPE == AT_HWCAP2 to
17317         return -1 for unknown a_type display fallback.
17318         * sysdeps/sparc/dl-procinfo.h: Likewise.
17319         * sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Likewise.
17320         * sysdeps/unix/sysv/linux/s390/dl-procinfo.h: Likewise.
17322 2013-06-28  Joseph Myers  <joseph@codesourcery.com>
17324         * sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Shift by page_shift
17325         instead of MMAP2_PAGE_SHIFT in call to INLINE_SYSCALL.
17327 2013-06-28  Pierre Ynard  <linkfanel@yahoo.fr>
17329         [BZ #12492]
17330         * elf/dl-load.c (_dl_map_object_from_fd): Test for failure of
17331         mprotect making __stack_prot writable.
17333 2013-06-28  Nathan Froyd  <froydnj@codesourcery.com>
17334             Joseph Myers  <joseph@codesourcery.com>
17336         * elf/dl-profile.c (struct here_cg_arc_record): Declare 'count'
17337         as being properly aligned.
17339 2013-06-28  Maciej W. Rozycki  <macro@codesourcery.com>
17341         * dlfcn/modstatic5.c: New file.
17342         * dlfcn/tststatic5.c: New file.
17343         * dlfcn/Makefile (tests): Add tststatic5.
17344         (tests-static): Likewise.
17345         (modules-names): Add modstatic5.
17346         (tststatic5-ENV): New variable.
17347         ($(objpfx)tststatic5, $(objpfx)tststatic5.out): New dependencies.
17349         [BZ #15022]
17350         * elf/dl-support.c (_dl_main_map): New variable.
17351         (_dl_ns): Use it to initialize [LM_ID_BASE] element.
17352         (_dl_nns, _dl_load_adds): Set to 1.
17353         (_dl_initial_searchlist): Refer to _dl_main_map.
17354         (_dl_non_dynamic_init): Initialize _dl_main_map.l_origin.
17355         * elf/dl-load.c (_dl_dst_substitute) [!SHARED]: Remove fallback
17356         call to _dl_get_origin.
17357         * elf/dl-open.c (dl_open_worker): Remove !SHARED special casing
17358         around call_map.
17359         (_dl_open) [!SHARED]: Remove code to initialize GL(dl_nns).
17360         * dlfcn/modstatic3.c: New file.
17361         * dlfcn/tststatic3.c: New file.
17362         * dlfcn/tststatic4.c: New file.
17363         * dlfcn/Makefile (tests): Add tststatic3 and tststatic4.
17364         (tests-static): Likewise.
17365         (modules-names): Add modstatic3.
17366         (tststatic3-ENV, tststatic4-ENV): New variables.
17367         ($(objpfx)tststatic3, $(objpfx)tststatic3.out): New dependencies.
17368         ($(objpfx)tststatic4, $(objpfx)tststatic4.out): Likewise.
17370 2013-06-26  Joseph Myers  <joseph@codesourcery.com>
17372         * configure.in (CC): Require GCC version 4.4 or later.
17373         * configure: Regenerated.
17374         * manual/install.texi (Tools for Compilation): Update GCC version
17375         requirement.
17376         * INSTALL: Regenerated.
17378 2013-06-26  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
17380         [BZ #15674]
17381         * string/test-memcmp.c (check2): New.
17382         (main): Call check2.
17384         * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Fix buffers overrun.
17386 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
17388         [BZ #15022]
17389         * elf/dl-open.c (_dl_open) [!SHARED]: Move call to DL_STATIC_INIT
17390         over to...
17391         (dl_open_worker) [!SHARED]: ... here.
17393 2013-06-26  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
17395         * elf/elf.h (AT_HWCAP2): Add a new a_type entry.
17397 2013-06-25  Richard Henderson  <rth@redhat.com>
17399         * locale/programs/locarchive.c: Include <libc-internal.h>
17401 2013-06-25  Joseph Myers  <joseph@codesourcery.com>
17403         * manual/texinfo.tex: Update to version 2013-06-21.17, with
17404         trailing whitespace removed.
17406 2013-06-24  Mike Frysinger  <vapier@gentoo.org>
17408         [BZ #10283]
17409         * locale/locarchive.h (struct locarhandle): Add mmap_base and mmap_len.
17410         * locale/programs/locarchive.c: Include libc-mmap.h.
17411         (prepare_address_space): Take two new outputs (the mmap base and len).
17412         Align p to MAP_FIXED_ALIGNMENT.  Set mmap base and len to the right
17413         values.
17414         (create_archive): Declare new mmap base and len values for
17415         prepare_address_space, and store the result in ah.
17416         (file_data_available_p): Replace pagesz with MAP_FIXED_ALIGNMENT.
17417         (enlarge_archive): If ah->mmap_base is not NULL, use that and
17418         ah->mmap_len to unmap rather than ah->addr and ah->reserved.
17419         Declare new mmap base and len values for
17420         prepare_address_space, and store the result in new_ah.
17421         (open_archive): Declare new mmap base and len values for
17422         prepare_address_space, and store the result in ah.
17423         (close_archive): If ah->mmap_base is not NULL, use that and
17424         ah->mmap_len to unmap rather than ah->addr and ah->reserved.
17425         * sysdeps/generic/libc-mmap.h: New file.
17427 2013-06-24  Mike Frysinger  <vapier@gentoo.org>
17429         * include/libc-internal.h (ALIGN_DOWN): New helper macro.
17430         (ALIGN_UP): Likewise.
17431         (PTR_ALIGN_DOWN): Likewise.
17432         (PTR_ALIGN_UP): Likewise.
17434 2013-06-24  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
17436         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platforms): Add "power8"
17437         entry mapped to PPC_PLATFORM_POWER8.
17438         * sysdeps/powerpc/dl-procinfo.h (_DL_PLATFORMS_COUNT): Increment for
17439         POWER8.
17440         (PPC_PLATFORM_POWER8): Add new platform bit for POWER8 processor.
17441         (_dl_string_platform): Add case for exporting platform position for
17442         POWER8.
17443         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power8/Implies: Chain
17444         search path to sysdeps/powerpc/powerpc32/power8 directory.
17445         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power8/Implies: Chain
17446         search path to sysdeps/powerpc/powerpc64/power8 directory.
17447         * sysdeps/powerpc/powerpc32/power8/Implies: Chain search path to
17448         power7 directories.
17449         * sysdeps/powerpc/powerpc64/power8/Implies: Chain search path to
17450         power7 directories.
17452 2013-06-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
17454         * INSTALL: Regenerate.
17456         * nscd/connections.c (nscd_init): Fix comment.
17458 2013-06-22  Joseph Myers  <joseph@codesourcery.com>
17460         * sysdeps/unix/sysv/linux/libc_fatal.c: Include <string.h>.
17462         [BZ #15667]
17463         * soft-fp/op-4.h (__FP_FRAC_ADD_3): Rename variables _c1 and _c2
17464         to __FP_FRAC_ADD_3_c1 and __FP_FRAC_ADD_3_c2.
17466 2013-06-21  Maciej W. Rozycki  <macro@codesourcery.com>
17468         * elf/dl-dst.h (DL_DST_REQUIRED): Remove call to
17469         DL_DST_REQ_STATIC.
17470         (DL_DST_REQ_STATIC): Remove macro.
17472 2013-06-21  Joseph Myers  <joseph@codesourcery.com>
17474         [BZ #7006]
17475         * soft-fp/op-common.h (_FP_FROM_INT): Do not call _FP_FRAC_SLL
17476         with a shift of 0 bits.
17478 2013-06-21  Maciej W. Rozycki  <macro@codesourcery.com>
17480         * dlfcn/Makefile (tststatic2-ENV): Redefine in terms of
17481         $(tststatic-ENV).
17483 2013-06-21  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
17485         [BZ #15655]
17486         * sysdeps/sh/sh4/fpu/fgetexcptflg.c: New file.
17488 2013-06-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17490         * config.h.in (HAVE_CC_INHIBIT_LOOP_TO_LIBCALL): New define.
17491         * configure.in (libc_cv_cc_loop_to_function): Check if compiler
17492         accepts -fno-tree-loop-distribute-patterns.
17493         * include/libc-symbols.h (inhibit_loop_to_libcall): New macro.
17494         * string/memmove.c (MEMMOVE): Disable loop transformation to avoid
17495         recursive call.
17496         * string/memset.c (memset): Likewise.
17497         * string/test-memmove.c (simple_memmove): Disable loop transformation
17498         to library calls.
17499         * string/test-memset.c (simple_memset): Likewise.
17500         * benchtests/bench-memmove.c (simple_memmove): Likewise.
17501         * benchtests/bench-memset.c (simple_memset): Likewise.
17502         * configure: Regenerated.
17504 2013-06-20  Joseph Myers  <joseph@codesourcery.com>
17506         * math/test-misc.c (main): Ignore fesetround failure when failures
17507         of subsequent rounding tests would be ignored.
17509         [BZ #15654]
17510         * math/fedisblxcpt.c (fedisableexcept): Return 0.
17511         * math/feenablxcpt.c (feenableexcept): Return 0 for argument 0.
17512         * math/fegetenv.c (__fegetenv): Return 0.
17513         * math/fegetexcept.c (fegetexcept): Return 0.
17514         * math/fegetround.c (fegetround) [FE_TONEAREST]: Return
17515         FE_TONEAREST.
17516         * math/feholdexcpt.c (feholdexcept): Return 0.
17517         * math/fesetenv.c (__fesetenv): Return 0.
17518         * math/fesetround.c (fesetround) [FE_TONEAREST]: Return 0 for
17519         argument FE_TONEAREST.
17520         * math/feupdateenv.c (__feupdateenv): Return 0.
17521         * math/fgetexcptflg.c (__fegetexceptflag): Return 0.
17523 2013-06-18  Roland McGrath  <roland@hack.frob.com>
17525         * elf/rtld-Rules (rtld-compile-command.S): New variable.
17526         (rtld-compile-command.s, rtld-compile-command.c): New variables.
17527         ($(objpfx)rtld-%.os rules): Use them.
17529 2013-06-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17531         * nptl/sysdeps/powerpc/tls.h (tcbhead_t): Add Event-Based Branch
17532         fields.
17534 2013-06-17  Roland McGrath  <roland@hack.frob.com>
17536         * scripts/sysd-rules.awk: Sort sysd_rules_patterns by descending
17537         length of target pattern, then descending length of dependency pattern.
17538         * configure.in (AWK): Require gawk 3.1.2 or newer.
17539         * manual/install.texi (Tools for Compilation): Say that we do.
17540         * configure: Regenerated.
17542         * Makerules [inhibit-sysdep-asm] (check-inhibit-asm): Variable removed.
17543         ($(common-objpfx)sysd-rules): Replace shell logic with running ...
17544         * scripts/sysd-rules.awk: ... this new script.
17545         * sysdeps/mach/hurd/Makefile (inhibit-sysdep-asm): Use a regexp rather
17546         than a glob-style pattern.
17548 2013-06-17  Joseph Myers  <joseph@codesourcery.com>
17550         * math/test-misc.c (main): Do not treat incorrectly rounded
17551         conversions as failure unless ROUNDING_TESTS passes.
17553 2013-06-15  Joseph Myers  <joseph@codesourcery.com>
17555         [BZ #15631]
17556         * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Save and
17557         restore exception state around main square root computation, then
17558         check for inexactness explicitly.
17560         * math/libm-test.inc (fma_test_data): Add another test.
17562 2013-06-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
17564         * manual/threads.texi (Non-POSIX Extensions): New document
17565         node.  Document pthread_getattr_default_np and
17566         pthread_setattr_default_np.
17568         * Versions.def (libpthread): Add GLIBC_2.18.
17569         * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: Update.
17570         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
17571         Likewise.
17572         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
17573         Likewise.
17574         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
17575         Likewise.
17576         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
17577         Likewise.
17578         * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist:
17579         Likewise.
17580         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
17581         Likewise.
17582         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
17583         Likewise.
17584         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist:
17585         Likewise.
17586         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist:
17587         Likewise.
17589 2013-06-14  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
17591         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
17592         Set bit_Fast_Unaligned_Load for Intel Silvermont architecture.
17594 2013-06-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
17595             H.J. Lu  <hjl.tools@gmail.com>
17597         [BZ #15627]
17598         * sysdeps/x86_64/rtld-memset.c: Remove file.
17599         * sysdeps/x86_64/rtld-memset.S: New file.
17601 2013-06-14  Joseph Myers  <joseph@codesourcery.com>
17603         * stdlib/tst-strtod-round.c: Include <math-tests.h>.
17604         (test_in_one_mode): Take arguments for whether the rounding mode
17605         is supported for each floating-point type.
17606         (do_test): Pass new arguments to test_in_one_mode using
17607         ROUNDING_TESTS.
17609 2013-06-13  Roland McGrath  <roland@hack.frob.com>
17611         * posix/tst-waitid.c (do_test): Distinguish different instances of
17612         stopped/continued in CHECK_SIGCHLD uses.  Insert a delay between
17613         sending SIGSTOP and calling waitpid to ensure SIGCHLD gets delivered
17614         before entering the kernel for waitpid.
17616 2013-06-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
17618         * NEWS: Fix note on clock function precision.  Text by Roland
17619         McGrath.
17621 2013-06-13  Roland McGrath  <roland@hack.frob.com>
17623         * elf/Makefile ($(objpfx)ld.so): Link into a temporary file and move
17624         it into place only when and if the sanity check passes.
17626 2013-06-13  Joseph Myers  <joseph@codesourcery.com>
17628         * stdlib/gen-tst-strtod-round.c (round_str): Always generate
17629         output for whether conversion result is exact.  Take argument
17630         indicating whether type is IBM long double.
17631         (round_for_all): Change need_exact field to ibm_ld.
17632         * stdlib/tst-strtod-round.c (struct exactness): New type.
17633         (struct test): Change bool ld_ok field to struct exactness exact.
17634         (TEST): Update all definitions for change to field.
17635         (tests): Regenerate array contents.
17636         (test_in_one_mode): Take pointer to new field instead of old ld_ok
17637         field value.  Check for IBM long double here.
17638         (do_test): Update calls to test_in_one_mode.
17640 2013-06-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
17642         [BZ #12515]
17643         * sysdeps/unix/sysv/linux/clock.c (clock): Use result from
17644         CLOCK_PROCESS_CPUTIME_ID clock instead of __times.
17646 2013-06-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17648         [BZ #15605]
17649         * sysdeps/generic/symbol-hacks.h: Add workaround for memset/memmove calls
17650         generated by the compiler on loop optimizations.
17651         * sysdeps/wordsize-32/symbol-hacks.h: Include next symbol-hacks.h for
17652         general definitions.
17654 2013-06-12  Joseph Myers  <joseph@codesourcery.com>
17656         * math/bug-nextafter.c: Include <math-tests.h>.
17657         (main): Only test for exceptions if EXCEPTION_TESTS is true for
17658         the relevant type.
17659         * math/bug-nexttoward.c: Include <math-tests.h>.
17660         (main): Only test for exceptions if EXCEPTION_TESTS is true for
17661         the relevant type.
17662         * math/test-misc.c: Include <math-tests.h>.
17663         (main): Only test for exceptions if EXCEPTION_TESTS is true for
17664         the relevant type.
17666 2013-06-12  Andreas Jaeger  <aj@suse.de>
17668         * po/ia.po: Update Interlingua translation from translation
17669         project.
17671 2013-06-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
17673         * include/fenv.h: Include stdbool.h.
17674         (struct rm_ctx): New structure.
17675         * sysdeps/generic/math_private.h (SET_RESTORE_ROUND_GENERIC):
17676         Define macro.
17677         (SET_RESTORE_ROUND): Define using SET_RESTORE_ROUND_GENERIC.
17678         (SET_RESTORE_ROUNDF): Likewise.
17679         (SET_RESTORE_ROUNDL): Likewise.
17680         (SET_RESTORE_ROUND_NOEX): Likewise.
17681         (SET_RESTORE_ROUND_NOEXF): Likewise.
17682         (SET_RESTORE_ROUND_NOEXL): Likewise.
17683         (SET_RESTORE_ROUND_53BIT): Likewise.
17684         [HAVE_RM_CTX] (libc_feresetround_noex_ctx): Define macro.
17685         (libc_feresetround_noexf_ctx): Likewise.
17686         (libc_feresetround_noexl_ctx): Likewise.
17687         (libc_feholdsetround_53bit_ctx): Likewise.
17688         (libc_feresetround_53bit_ctx): Likewise.
17689         * sysdeps/i386/fpu/fenv_private.h (HAVE_RM_CTX): Define macro.
17690         (libc_feholdexcept_setround_sse_ctx): New function.
17691         (libc_fesetenv_sse_ctx): Likewise.
17692         (libc_feupdateenv_sse_ctx): Likewise.
17693         (libc_feholdexcept_setround_387_prec_ctx): Likewise.
17694         (libc_feholdexcept_setround_387_ctx): Likewise.
17695         (libc_feholdexcept_setround_387_53bit_ctx): Likewise.
17696         (libc_feholdsetround_387_prec_ctx): Likewise.
17697         (libc_feholdsetround_387_ctx): Likewise.
17698         (libc_feholdsetround_387_53bit_ctx): Likewise.
17699         (libc_feholdsetround_sse_ctx): Likewise.
17700         (libc_feresetround_sse_ctx): Likewise.
17701         (libc_feresetround_387_ctx): Likewise.
17702         (libc_feupdateenv_387_ctx): Likewise.
17703         (libc_feholdexcept_setroundf_ctx): Define macro.
17704         (libc_fesetenvf_ctx): Likewise.
17705         (libc_feupdateenvf_ctx): Likewise.
17706         (libc_feholdsetroundf_ctx): Likewise.
17707         (libc_feresetroundf_ctx): Likewise.
17708         (libc_feholdexcept_setround_ctx): Likewise.
17709         (libc_fesetenv_ctx): Likewise.
17710         (libc_feupdateenv_ctx): Likewise.
17711         (libc_feholdsetround_ctx): Likewise.
17712         (libc_feresetround_ctx): Likewise.
17713         (libc_feholdexcept_setroundl_ctx): Likewise.
17714         (libc_feupdateenvl_ctx): Likewise.
17715         (libc_feholdsetroundl_ctx): Likewise.
17716         (libc_feresetroundl_ctx): Likewise.
17717         [!__SSE2_MATH__] (libc_feholdsetround_53bit_ctx): Likewise.
17718         (libc_feresetround_53bit_ctx): Likewise.
17720 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
17722         * locale/iso-639.def: Convert to UTF-8.
17724 2013-06-11  Joseph Myers  <joseph@codesourcery.com>
17726         * sysdeps/generic/math-tests.h (EXCEPTION_TESTS_float): New macro.
17727         (EXCEPTION_TESTS_double): Likewise.
17728         (EXCEPTION_TESTS_long_double): Likewise.
17729         (EXCEPTION_TESTS): Likewise.
17730         * math/libm-test.inc (test_exceptions): Only test exceptions if
17731         EXCEPTION_TESTS (FLOAT).
17733 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
17735         * benchtests/Makefile (string-bench): Add strcpy_chk and
17736         stpcpy_chk.
17737         * benchtests/bench-stpcpy_chk-ifunc.c: New file.
17738         * benchtests/bench-stpcpy_chk.c: New file.
17739         * benchtests/bench-strcpy_chk-ifunc.c: New file.
17740         * benchtests/bench-strcpy_chk.c: New file.
17741         * debug/test-strcpy_chk.c (do_one_test): Remove HP_TIMING
17742         code.
17743         (do_test): Likewise.
17745 2013-06-11  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
17747         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platforms): Add ppc405,
17748         ppc440, ppc464, and ppc476, merging from ports/ dl-procinfo.c.
17749         * sysdeps/powerpc/dl-procinfo.h: Fix whitespace by correcting spaces
17750         with tabs where appropriate.
17751         [PPC_PLATFORM_PPC405]: Define new platform merging from ports/
17752         dl-procinfo.h.
17753         [PPC_PLATFORM_PPC440]: Likewise.
17754         [PPC_PLATFORM_PPC464]: Likewise.
17755         [PPC_PLATFORM_PPC476]: Likewise.
17756         (_dl_string_platform): Add support for detecting ppc405, ppc440,
17757         ppc464, and ppc476 platform strings merging from ports/
17758         dl-procinfo.h.
17760 2013-06-11  Andreas Schwab  <schwab@suse.de>
17762         [BZ #14991]
17763         * iconvdata/big5hkscs.c (big5hkscs_to_ucs, from_ucs4)
17764         (from_ucs4_idx): Regenerate.
17765         (MIN_NEEDED_FROM, MAX_NEEDED_FROM, MIN_NEEDED_TO): Remove macros.
17766         (FROM_LOOP_MIN_NEEDED_FROM, FROM_LOOP_MAX_NEEDED_FROM)
17767         (FROM_LOOP_MIN_NEEDED_TO, FROM_LOOP_MAX_NEEDED_TO)
17768         (TO_LOOP_MIN_NEEDED_FROM, TO_LOOP_MAX_NEEDED_FROM)
17769         (TO_LOOP_MIN_NEEDED_TO, TO_LOOP_MAX_NEEDED_TO, PREPARE_LOOP)
17770         (EXTRA_LOOP_ARGS, SAVE_RESET_STATE, EMIT_SHIFT_TO_INIT)
17771         (EXTRA_LOOP_DECLS, MAX_NEEDED_OUTPUT): New macros.
17772         (MIN_NEEDED_INPUT, MAX_NEEDED_INPUT, MIN_NEEDED_OUTPUT): Define
17773         from FROM_LOOP and TO_LOOP specific macros.
17774         (BODY): Handle combining characters.
17775         * iconvdata/BIG5HKSCS.irreversible: Update.
17776         * iconvdata/BIG5HKSCS.precomposed: New file.
17777         * iconvdata/testdata/BIG5HKSCS: Regenerate to cover all assigned
17778         characters.
17779         * iconvdata/testdata/BIG5HKSCS..UTF8: Update.
17781 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
17783         * include/sys/time.h: Fix indentation and add copyright header.
17785         * string/test-memccpy.c (do_one_test): Remove HP_TIMING code.
17786         (do_test): Likewise.
17787         * string/test-memchr.c (do_one_test): Likewise.
17788         (do_test): Likewise.
17789         * string/test-memcmp.c (do_one_test): Likewise.
17790         (do_test): Likewise.
17791         * string/test-memcpy.c (do_one_test): Likewise.
17792         (do_test): Likewise.
17793         * string/test-memmem.c (do_one_test): Likewise.
17794         (do_test): Likewise.
17795         (do_random_tests): Likewise.
17796         * string/test-memmove.c (do_one_test): Likewise.
17797         (do_test): Likewise.
17798         * string/test-memset.c (do_one_test): Likewise.
17799         (do_test): Likewise.
17800         * string/test-rawmemchr.c (do_one_test): Likewise.
17801         (do_test): Likewise.
17802         * string/test-strcasecmp.c (do_one_test): Likewise.
17803         (do_test): Likewise.
17804         * string/test-strcasestr.c (do_one_test): Likewise.
17805         (do_test): Likewise.
17806         * string/test-strcat.c (do_one_test): Likewise.
17807         (do_test): Likewise.
17808         * string/test-strchr.c (do_one_test): Likewise.
17809         (do_test): Likewise.
17810         * string/test-strcmp.c (do_one_test): Likewise.
17811         (do_test): Likewise.
17812         * string/test-strcpy.c (do_one_test): Likewise.
17813         (do_test): Likewise.
17814         * string/test-string.h: Likewise.
17815         (test_init): Likewise.
17816         * string/test-strlen.c (do_one_test): Likewise.
17817         (do_test): Likewise.
17818         * string/test-strncasecmp.c (do_one_test): Likewise.
17819         (do_test): Likewise.
17820         * string/test-strncat.c (do_one_test): Likewise.
17821         (do_test): Likewise.
17822         * string/test-strncmp.c (do_one_test): Likewise.
17823         (do_test_limit): Likewise.
17824         (do_test): Likewise.
17825         * string/test-strncpy.c (do_one_test): Likewise.
17826         (do_test): Likewise.
17827         * string/test-strnlen.c (do_one_test): Likewise.
17828         (do_test): Likewise.
17829         * string/test-strpbrk.c (do_one_test): Likewise.
17830         (do_test): Likewise.
17831         * string/test-strrchr.c (do_one_test): Likewise.
17832         (do_test): Likewise.
17833         * string/test-strspn.c (do_one_test): Likewise.
17834         (do_test): Likewise.
17835         * string/test-strstr.c (do_one_test): Likewise.
17836         (do_test): Likewise.
17838         * benchtests/Makefile (string-bench): Add string benchmarks.
17839         * benchtests/bench-bcopy-ifunc.c: New file.
17840         * benchtests/bench-bcopy.c: New file.
17841         * benchtests/bench-bzero-ifunc.c: New file.
17842         * benchtests/bench-bzero.c: New file.
17843         * benchtests/bench-memccpy-ifunc.c: New file.
17844         * benchtests/bench-memccpy.c: New file.
17845         * benchtests/bench-memchr-ifunc.c: New file.
17846         * benchtests/bench-memchr.c: New file.
17847         * benchtests/bench-memcmp-ifunc.c: New file.
17848         * benchtests/bench-memcmp.c: New file.
17849         * benchtests/bench-memmem-ifunc.c: New file.
17850         * benchtests/bench-memmem.c: New file.
17851         * benchtests/bench-memmove-ifunc.c: New file.
17852         * benchtests/bench-memmove.c: New file.
17853         * benchtests/bench-mempcpy-ifunc.c: New file.
17854         * benchtests/bench-mempcpy.c: New file.
17855         * benchtests/bench-memset-ifunc.c: New file.
17856         * benchtests/bench-memset.c: New file.
17857         * benchtests/bench-rawmemchr-ifunc.c: New file.
17858         * benchtests/bench-rawmemchr.c: New file.
17859         * benchtests/bench-stpcpy-ifunc.c: New file.
17860         * benchtests/bench-stpcpy.c: New file.
17861         * benchtests/bench-stpncpy-ifunc.c: New file.
17862         * benchtests/bench-stpncpy.c: New file.
17863         * benchtests/bench-strcasecmp-ifunc.c: New file.
17864         * benchtests/bench-strcasecmp.c: New file.
17865         * benchtests/bench-strcasestr-ifunc.c: New file.
17866         * benchtests/bench-strcasestr.c: New file.
17867         * benchtests/bench-strcat-ifunc.c: New file.
17868         * benchtests/bench-strcat.c: New file.
17869         * benchtests/bench-strchr-ifunc.c: New file.
17870         * benchtests/bench-strchr.c: New file.
17871         * benchtests/bench-strchrnul-ifunc.c: New file.
17872         * benchtests/bench-strchrnul.c: New file.
17873         * benchtests/bench-strcmp-ifunc.c: New file.
17874         * benchtests/bench-strcmp.c: New file.
17875         * benchtests/bench-strcpy-ifunc.c: New file.
17876         * benchtests/bench-strcpy.c: New file.
17877         * benchtests/bench-strcspn-ifunc.c: New file.
17878         * benchtests/bench-strcspn.c: New file.
17879         * benchtests/bench-strlen-ifunc.c: New file.
17880         * benchtests/bench-strlen.c: New file.
17881         * benchtests/bench-strncasecmp-ifunc.c: New file.
17882         * benchtests/bench-strncasecmp.c: New file.
17883         * benchtests/bench-strncat-ifunc.c: New file.
17884         * benchtests/bench-strncat.c: New file.
17885         * benchtests/bench-strncmp-ifunc.c: New file.
17886         * benchtests/bench-strncmp.c: New file.
17887         * benchtests/bench-strncpy-ifunc.c: New file.
17888         * benchtests/bench-strncpy.c: New file.
17889         * benchtests/bench-strnlen-ifunc.c: New file.
17890         * benchtests/bench-strnlen.c: New file.
17891         * benchtests/bench-strpbrk-ifunc.c: New file.
17892         * benchtests/bench-strpbrk.c: New file.
17893         * benchtests/bench-strrchr-ifunc.c: New file.
17894         * benchtests/bench-strrchr.c: New file.
17895         * benchtests/bench-strspn-ifunc.c: New file.
17896         * benchtests/bench-strspn.c: New file.
17897         * benchtests/bench-strstr-ifunc.c: New file.
17898         * benchtests/bench-strstr.c: New file.
17900         * benchtests/Makefile: Disable parallel execution of targets.
17901         (string-bench): Add memcpy.
17902         (benchset): New variable to store a list of benchmark sets.
17903         (bench-func): Renamed from bench.
17904         (bench-set): New target.
17905         (bench): Depend on bench-func and bench-set.
17906         * benchtests/README: Add section on benchmark sets.
17907         * benchtests/bench-memcpy-ifunc.c: New file.
17908         * benchtests/bench-memcpy.c: New file.
17909         * benchtests/bench-string.h: New file.
17911 2013-06-11  Andreas Schwab  <schwab@suse.de>
17913         [BZ #15577]
17914         * nscd/connections.c (nscd_run_worker): Always zero-terminate key.
17915         * nscd/netgroupcache.c (addgetnetgrentX): Properly handle absent
17916         values in the triple.
17917         * nscd/nscd_netgroup.c (__nscd_setnetgrent): Include zero
17918         terminator in the group key.
17920 2013-06-11  Andreas Jaeger  <aj@suse.de>
17922         * po/zh_TW.po: Update Chinese (traditional) translation from
17923         translation project.
17925 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
17927         * include/time.h (__clock_gettime): Add libc_hidden_proto.
17928         * rt/clock_getcpuclockid.c (clock_getcpuclockid): Rename to
17929         __clock_getcpuclockid.  Add weak_alias and libc_hidden_def.
17930         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
17931         (clock_getcpuclockid): Likewise.
17932         * rt/clock_getres.c (clock_getres): Rename to __clock_getres.
17933         Add weak_alias and libc_hidden_def.
17934         * sysdeps/posix/clock_getres.c (clock_getres): Likewise.
17935         * rt/clock_gettime.c (clock_gettime): Rename to
17936         __clock_gettime.  Add weak_alias and libc_hidden_def.
17937         * sysdeps/unix/clock_gettime.c (clock_gettime): Likewise.
17938         * rt/clock_nanosleep.c (clock_nanosleep): Rename to
17939         __clock_nanosleep.  Add weak_alias and libc_hidden_def.
17940         * sysdeps/unix/clock_nanosleep.c (clock_nanosleep): Likewise.
17941         * sysdeps/unix/sysv/linux/clock_nanosleep.c (clock_nanosleep):
17942         Likewise.
17943         * rt/clock_settime.c (clock_settime): Rename to
17944         __clock_settime.  Add weak_alias and libc_hidden_def.
17945         * sysdeps/unix/clock_settime.c (clock_settime): Likewise.
17947 2013-06-10  Joseph Myers  <joseph@codesourcery.com>
17949         * mach/err_boot.sub: Remove trailing whitespace.
17950         * mach/err_ipc.sub: Likewise.
17951         * mach/err_mach.sub: Likewise.
17953         * sysdeps/generic/math-tests.h (ROUNDING_TESTS_float): New macro.
17954         (ROUNDING_TESTS_double): Likewise.
17955         (ROUNDING_TESTS_long_double): Likewise.
17956         (ROUNDING_TESTS): Likewise.
17957         * math/libm-test.inc: Include <math-tests.h>.
17958         (IF_ROUND_INIT_FE_DOWNWARD): Use ROUNDING_TESTS.
17959         (IF_ROUND_INIT_FE_TONEAREST): Likewise.
17960         (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
17961         (IF_ROUND_INIT_FE_UPWARD): Likewise.
17963 2013-06-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
17965         * benchtests/Makefile (CPPFLAGS-nonlib): Append values instead
17966         of assigning.
17968 2013-06-08  Joseph Myers  <joseph@codesourcery.com>
17970         * sysdeps/gnu/errlist.awk: Do not generate space at end of
17971         otherwise empty TRANS lines.
17972         * sysdeps/gnu/errlist.c: Regenerated.
17974         * catgets/gencat.c (error_print): Use (void) in function
17975         definition.
17976         * crypt/crypt_util.c (__init_des): Likewise.
17977         * crypt/speeds.c (Stop): Likewise.
17978         (main): Likewise.
17979         * hurd/hurdmalloc.c (print_malloc_free_list): Likewise.
17980         * inet/ruserpass.c (token): Likewise.
17981         * intl/finddomain.c (_nl_finddomain_subfreeres): Likewise.
17982         * intl/localealias.c (extend_alias_table): Likewise.
17983         * intl/plural-exp.c (init_germanic_plural): Likewise.
17984         * libio/fcloseall.c (__fcloseall): Likewise.
17985         * libio/genops.c (_IO_flush_all): Likewise.
17986         (_IO_flush_all_linebuffered): Likewise.
17987         (_IO_cleanup): Likewise.
17988         (_IO_iter_begin): Likewise.
17989         (_IO_iter_end): Likewise.
17990         (_IO_list_lock): Likewise.
17991         (_IO_list_unlock): Likewise.
17992         (_IO_list_resetlock): Likewise.
17993         * libio/getchar.c (getchar): Likewise.
17994         * libio/getchar_u.c (getchar_unlocked): Likewise.
17995         * libio/getwchar.c (getwchar): Likewise.
17996         * libio/getwchar_u.c (getwchar_unlocked): Likewise.
17997         * libio/oldstdfiles.c (_IO_check_libio): Likewise.
17998         * login/getpt.c (__getpt): Likewise.
17999         * login/tst-utmp.c (main): Likewise.
18000         * malloc/hooks.c (__malloc_check_init): Likewise.
18001         * malloc/malloc.c (__malloc_stats): Likewise.
18002         * malloc/mtrace.c (tr_break): Likewise.
18003         (mtrace): Likewise.
18004         (muntrace): Likewise.
18005         * misc/fstab.c (endfsent): Likewise.
18006         * misc/getclktck.c (__getclktck): Likewise.
18007         * misc/getdtsz.c (__getdtablesize): Likewise.
18008         * misc/gethostid.c (gethostid): Likewise.
18009         * misc/getpagesize.c (__getpagesize): Likewise.
18010         * misc/getsysstats.c (__get_nprocs_conf): Likewise.
18011         (__get_nprocs): Likewise.
18012         (__get_phys_pages): Likewise.
18013         (__get_avphys_pages): Likewise.
18014         * misc/getttyent.c (getttyent): Likewise.
18015         (setttyent): Likewise.
18016         (endttyent): Likewise.
18017         * misc/getusershell.c (getusershell): Likewise.
18018         (endusershell): Likewise.
18019         (setusershell): Likewise.
18020         (initshells): Likewise.
18021         * misc/hsearch.c (__hdestroy): Likewise.
18022         * misc/sync.c (sync): Likewise.
18023         * misc/syslog.c (closelog_internal): Likewise.
18024         (closelog): Likewise.
18025         * misc/ttyslot.c (ttyslot): Likewise.
18026         * misc/vhangup.c (vhangup): Likewise.
18027         * posix/fork.c (__fork): Likewise.
18028         * posix/getegid.c (__getegid): Likewise.
18029         * posix/geteuid.c (__geteuid): Likewise.
18030         * posix/getgid.c (__getgid): Likewise.
18031         * posix/getpid.c (__getpid): Likewise.
18032         * posix/getppid.c (__getppid): Likewise.
18033         * posix/getuid.c (__getuid): Likewise.
18034         * posix/pause.c (pause): Likewise.
18035         * posix/setpgrp.c (setpgrp): Likewise.
18036         * posix/setsid.c (__setsid): Likewise.
18037         * posix/test-vfork.c (noop): Likewise.
18038         * resolv/gethnamaddr.c (_endhtent): Likewise.
18039         (_gethtent): Likewise.
18040         (ht_endhostent): Likewise.
18041         (gethostent): Likewise.
18042         (dns_service): Likewise.
18043         * stdlib/drand48.c (drand48): Likewise.
18044         * stdlib/lrand48.c (lrand48): Likewise.
18045         * stdlib/mrand48.c (mrand48): Likewise.
18046         * stdlib/rand.c (rand): Likewise.
18047         * stdlib/random.c (__random): Likewise.
18048         * stdlib/setenv.c (clearenv): Likewise.
18049         * sunrpc/clnt_tcp.c (clnttcp_abort): Likewise.
18050         * sunrpc/clnt_unix.c (clntunix_abort): Likewise.
18051         * sysdeps/mach/getpagesize.c (__getpagesize): Likewise.
18052         * sysdeps/mach/getsysstats.c (__get_nprocs_conf): Likewise.
18053         (__get_nprocs): Likewise.
18054         (__get_phys_pages): Likewise.
18055         (__get_avphys_pages): Likewise.
18056         * sysdeps/mach/hurd/dl-sysdep.c (__getpid): Likewise.
18057         * sysdeps/mach/hurd/getclktck.c (__getclktck): Likewise.
18058         * sysdeps/mach/hurd/getdtsz.c (__getdtablesize): Likewise.
18059         * sysdeps/mach/hurd/getegid.c (__getegid): Likewise.
18060         * sysdeps/mach/hurd/geteuid.c (__geteuid): Likewise.
18061         * sysdeps/mach/hurd/getgid.c (__getgid): Likewise.
18062         * sysdeps/mach/hurd/gethostid.c (gethostid): Likewise.
18063         * sysdeps/mach/hurd/getlogin.c (getlogin): Likewise.
18064         * sysdeps/mach/hurd/getpid.c (__getpid): Likewise.
18065         * sysdeps/mach/hurd/getppid.c (__getppid): Likewise.
18066         * sysdeps/mach/hurd/getuid.c (__getuid): Likewise.
18067         * sysdeps/mach/hurd/sync.c (sync): Likewise.
18068         * sysdeps/posix/clock.c (clock): Likewise.
18069         * sysdeps/unix/bsd/setsid.c (__setsid): Likewise.
18070         * sysdeps/unix/getpagesize.c (__getpagesize): Likewise.
18071         * sysdeps/unix/sysv/linux/getclktck.c (__getclktck): Likewise.
18072         * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Likewise.
18073         * sysdeps/unix/sysv/linux/getpagesize.c (__getpagesize): Likewise.
18074         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Likewise.
18075         (__get_nprocs_conf): Likewise.
18076         (__get_phys_pages): Likewise.
18077         (__get_avphys_pages): Likewise.
18078         * time/clock.c (clock): Likewise.
18079         * time/tzset.c (__tzname_max): Likewise.
18081 2013-06-07  Joseph Myers  <joseph@codesourcery.com>
18083         * bits/byteswap.h [__GNUC__ && !__GNUC_PREREQ (4, 3)]
18084         (__bswap_32): Do not use "register".
18085         * crypt/crypt.c (_ufc_doit_r): Likewise.
18086         * debug/stpcpy_chk.c (__stpcpy_chk): Likewise.
18087         * debug/wcscat_chk.c (__wcscat_chk): Likewise.
18088         * gmon/gmon.c (__monstartup): Likewise.
18089         * gmon/mcount.c (_MCOUNT_DECL(frompc, selfpc)): Likewise.
18090         * hurd/hurdmalloc.c (more_memory): Likewise.
18091         (malloc): Likewise.
18092         (free): Likewise.
18093         (realloc): Likewise.
18094         (malloc_fork_prepare): Likewise.
18095         (malloc_fork_parent): Likewise.
18096         (malloc_fork_child): Likewise.
18097         * include/rpc/auth_des.h (xdr_authdes_verf): Likewise.
18098         (_svcauth_des): Likewise.
18099         * inet/inet_lnaof.c (inet_lnaof): Likewise.
18100         * inet/inet_net.c (inet_network): Likewise.
18101         * inet/inet_netof.c (inet_netof): Likewise.
18102         * inet/rcmd.c (__validuser2_sa): Likewise.
18103         * io/fts.c (fts_open): Likewise.
18104         (fts_load): Likewise.
18105         (fts_close): Likewise.
18106         (fts_read): Likewise.
18107         (fts_children): Likewise.
18108         (fts_build): Likewise.
18109         (fts_stat): Likewise.
18110         (fts_sort): Likewise.
18111         (fts_alloc): Likewise.
18112         (fts_lfree): Likewise.
18113         * libio/fileops.c (_IO_new_file_xsputn): Likewise.
18114         (_IO_file_xsgetn): Likewise.
18115         (_IO_file_xsgetn_mmap): Likewise.
18116         * libio/iofopncook.c (_IO_cookie_read): Likewise.
18117         (_IO_cookie_write): Likewise.
18118         * libio/oldfileops.c (_IO_old_file_xsputn): Likewise.
18119         * libio/wfileops.c (_IO_wfile_xsputn): Likewise.
18120         * mach/msgserver.c (__mach_msg_server_timeout): Likewise.
18121         * malloc/obstack.c (_obstack_begin): Likewise.
18122         (_obstack_begin_1): Likewise.
18123         (_obstack_newchunk): Likewise.
18124         (_obstack_allocated_p): Likewise.
18125         (obstack_free): Likewise.
18126         (_obstack_memory_used): Likewise.
18127         * misc/getttyent.c (getttynam): Likewise.
18128         (getttyent): Likewise.
18129         (skip): Likewise.
18130         (value): Likewise.
18131         * misc/getusershell.c (initshells): Likewise.
18132         * misc/syslog.c (__vsyslog_chk): Likewise.
18133         * misc/ttyslot.c (ttyslot): Likewise.
18134         * nis/nis_hash.c (__nis_hash): Likewise.
18135         * posix/fnmatch_loop.c (FCT): Likewise.
18136         * posix/getconf.c (print_all): Likewise.
18137         (main): Likewise.
18138         * posix/getopt.c (exchange): Likewise.
18139         * posix/glob.c (globfree): Likewise.
18140         (prefix_array): Likewise.
18141         (__glob_pattern_type): Likewise.
18142         * resolv/arpa/nameser.h (NS_GET16): Likewise.
18143         (NS_GET32): Likewise.
18144         (NS_PUT16): Likewise.
18145         (NS_PUT32): Likewise.
18146         * resolv/gethnamaddr.c (getanswer): Likewise.
18147         (gethostbyname2): Likewise.
18148         (gethostbyaddr): Likewise.
18149         (_gethtent): Likewise.
18150         (_gethtbyname2): Likewise.
18151         (_gethtbyaddr): Likewise.
18152         * resolv/ns_print.c (dst_s_get_int16): Likewise.
18153         * resolv/nss_dns/dns-host.c (getanswer_r): Likewise.
18154         * resolv/res_init.c (__res_vinit): Likewise.
18155         (net_mask): Likewise.
18156         * resolv/res_mkquery.c (outchar): Likewise.
18157         (PRINT): Likewise.
18158         * stdio-common/printf_fp.c (outchar): Likewise.
18159         (PRINT): Likewise.
18160         * stdio-common/printf_fphex.c (outchar): Likewise.
18161         (PRINT): Likewise.
18162         * stdio-common/printf_size.c (outchar): Likewise.
18163         (PRINT): Likewise.
18164         * stdio-common/test_rdwr.c (main): Likewise.
18165         * stdio-common/tfformat.c (matches): Likewise.
18166         * stdio-common/vfprintf.c (outchar): Likewise.
18167         (printf_unknown): Likewise.
18168         (buffered_vfprintf): Likewise.
18169         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Likewise.
18170         * stdio-common/xbug.c (AppendToBuffer): Likewise.
18171         (ReadFile): Likewise.
18172         * stdlib/qsort.c (SWAP): Likewise.
18173         (_quicksort): Likewise.
18174         * stdlib/setenv.c (__add_to_environ): Likewise.
18175         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Likewise.
18176         * stdlib/strtol_l.c (__strtol_l): Likewise.
18177         * stdlib/tst-strtod.c (main): Likewise.
18178         * stdlib/tst-strtol.c (main): Likewise.
18179         * stdlib/tst-strtoll.c (main): Likewise.
18180         * string/bits/string2.h (__strcmp_cc): Likewise.
18181         (__strcmp_cg): Likewise.
18182         (__strcspn_c1): Likewise.
18183         (__strcspn_c2): Likewise.
18184         (__strcspn_c3): Likewise.
18185         (__strspn_c1): Likewise.
18186         (__strspn_c2): Likewise.
18187         (__strspn_c3): Likewise.
18188         (__strsep_1c): Likewise.
18189         (__strsep_2c): Likewise.
18190         (__strsep_3c): Likewise.
18191         * string/memccpy.c (__memccpy): Likewise.
18192         * string/stpcpy.c (__stpcpy): Likewise.
18193         * string/strcmp.c (strcmp): Likewise.
18194         * string/strrchr.c (strrchr): Likewise.
18195         * sysdeps/generic/sigset-cvt-mask.h (sigset_get_old_mask):
18196         Likewise.
18197         * sysdeps/mach/hurd/getcwd.c
18198         (_hurd_canonicalize_directory_name_internal): Likewise.
18199         * sysdeps/mach/i386/sysdep.h (SNARF_ARGS): Likewise.
18200         * sysdeps/powerpc/powerpc32/power6/wcschr.c (wcschr): Likewise.
18201         * sysdeps/powerpc/powerpc32/power6/wcsrchr.c (wcsrchr): Likewise.
18202         * sysdeps/x86/bits/byteswap-16.h [__GNUC__] (__bswap_16):
18203         Likewise, in both definitions.
18204         * sysdeps/x86/bits/byteswap.h (__bswap_32): Likewise, in multiple
18205         definitions.
18206         [__GNUC_PREREQ (2, 0) && !__GNUC_PREREQ (4, 3) && __WORDSIZE ==
18207         64] (__bswap_64): Likewise.
18208         * time/test_time.c (main): Likewise.
18209         * time/tzfile.c (__tzfile_read): Likewise.
18210         (__tzfile_compute): Likewise.
18211         * time/tzset.c (__tzset_parse_tz): Likewise.
18212         (tzset_internal): Likewise.
18213         (compute_change): Likewise.
18214         * wcsmbs/wcscat.c (__wcscat): Likewise.
18215         * wcsmbs/wcschr.c (wcschr): Likewise.
18216         * wcsmbs/wcschrnul.c (__wcschrnul): Likewise.
18217         * wcsmbs/wcscspn.c (wcscspn): Likewise.
18218         * wcsmbs/wcspbrk.c (wcspbrk): Likewise.
18219         * wcsmbs/wcsrchr.c (wcsrchr): Likewise.
18220         * wcsmbs/wcsspn.c (wcsspn): Likewise.
18221         * wcsmbs/wcsstr.c (wcsstr): Likewise.
18222         * wcsmbs/wmemchr.c (wmemchr): Likewise.
18223         * wcsmbs/wmemcmp.c (WMEMCMP): Likewise.
18224         * wcsmbs/wmemset.c (wmemset): Likewise.
18226 2013-06-06  Joseph Myers  <joseph@codesourcery.com>
18228         * scripts/config.guess: Update to version 2013-05-16.
18229         * scripts/config.sub: Update to version 2013-04-24.
18230         * scripts/install-sh: Update to version 2011-11-20.07.
18231         * scripts/mkinstalldirs: Update to version 2009-04-28.21.
18232         * scripts/move-if-change: Update to version 2012-01-06 07:23.
18234 2013-06-06   Ondřej Bílka  <neleai@seznam.cz>
18236         * debug/fgetws_u_chk.c: Fix leading whitespaces.
18237         * elf/sln.c: Likewise.
18238         * hurd/hurd/ioctl.h: Likewise.
18239         * hurd/hurdmalloc.c: Likewise.
18240         * hurd/xattr.c: Likewise.
18241         * include/shlib-compat.h: Likewise.
18242         * inet/ruserpass.c: Likewise.
18243         * libio/iofgets_u.c: Likewise.
18244         * libio/iofgetws_u.c: Likewise.
18245         * locale/programs/ld-identification.c: Likewise.
18246         * locale/programs/ld-time.c: Likewise.
18247         * mach/msg-destroy.c: Likewise.
18248         * nss/nss_files/files-netgrp.c: Likewise.
18249         * resolv/res_data.c: Likewise.
18250         * soft-fp/op-1.h: Likewise.
18251         * soft-fp/op-2.h: Likewise.
18252         * soft-fp/op-4.h: Likewise.
18253         * soft-fp/op-common.h: Likewise.
18254         * stdio-common/printf_fphex.c: Likewise.
18255         * stdlib/strtod_l.c: Likewise.
18256         * sunrpc/rpc/clnt.h: Likewise.
18257         * sysdeps/generic/framestate.c: Likewise.
18258         * sysdeps/i386/bsd-_setjmp.S: Likewise.
18259         * sysdeps/i386/bsd-setjmp.S: Likewise.
18260         * sysdeps/i386/__longjmp.S: Likewise.
18261         * sysdeps/i386/setjmp.S: Likewise.
18262         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
18263         * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
18264         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
18265         * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
18266         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
18267         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Likewise.
18268         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
18269         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
18270         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
18271         * sysdeps/ieee754/ldbl-128/ldbl2mpn.c: Likewise.
18272         * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c: Likewise.
18273         * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
18274         * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
18275         * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
18276         * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
18277         * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
18278         * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
18279         * sysdeps/ieee754/ldbl-96/ldbl2mpn.c: Likewise.
18280         * sysdeps/ieee754/support.c: Likewise.
18281         * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
18282         * sysdeps/powerpc/powerpc32/lshift.S: Likewise.
18283         * sysdeps/sparc/sparc32/__longjmp.S: Likewise.
18284         * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c: Likewise.
18285         * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c: Likewise.
18286         * sysdeps/sparc/sparc64/soft-fp/qp_feq.c: Likewise.
18287         * sysdeps/sparc/sparc64/soft-fp/qp_fge.c: Likewise.
18288         * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c: Likewise.
18289         * sysdeps/sparc/sparc64/soft-fp/qp_fle.c: Likewise.
18290         * sysdeps/sparc/sparc64/soft-fp/qp_flt.c: Likewise.
18291         * sysdeps/sparc/sparc64/soft-fp/qp_fne.c: Likewise.
18292         * sysdeps/sparc/sparc64/soft-fp/qp_mul.c: Likewise.
18293         * sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
18294         * sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Likewise.
18295         * sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Likewise.
18296         * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
18297         * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
18298         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
18300 2013-06-05  Ondřej Bílka  <neleai@seznam.cz>
18302         * posix/transbug.c: Remove executable mode.
18304 2013-06-05  Joseph Myers  <joseph@codesourcery.com>
18306         * crypt/speeds.c: Remove trailing whitespace.
18307         * dlfcn/default.c: Likewise.
18308         * elf/ifuncdep2.c: Likewise.
18309         * elf/ifuncmain1.c: Likewise.
18310         * elf/ifuncmain1vis.c: Likewise.
18311         * elf/testobj.h: Likewise.
18312         * elf/tst-stackguard1.c: Likewise.
18313         * gmon/sys/gmon.h: Likewise.
18314         * hurd/hurdmsg.c: Likewise.
18315         * hurd/new-fd.c: Likewise.
18316         * hurd/ports-get.c: Likewise.
18317         * iconvdata/ibm1008_420.c: Likewise.
18318         * inet/tst-getni1.c: Likewise.
18319         * inet/tst-getni2.c: Likewise.
18320         * libio/ioungetc.c: Likewise.
18321         * libio/wfiledoalloc.c: Likewise.
18322         * manual/libm-err-tab.pl: Likewise.
18323         * math/w_dremf.c: Likewise.
18324         * misc/ftruncate.c: Likewise.
18325         * posix/bug-glob2.c: Likewise.
18326         * posix/tst-pcre.c: Likewise.
18327         * posix/wait4.c: Likewise.
18328         * resolv/README: Likewise.
18329         * resolv/res_debug.h: Likewise.
18330         * resolv/tst-inet_ntop.c: Likewise.
18331         * setjmp/bug269-setjmp.c: Likewise.
18332         * soft-fp/extended.h: Likewise.
18333         * soft-fp/op-1.h: Likewise.
18334         * soft-fp/op-2.h: Likewise.
18335         * soft-fp/op-4.h: Likewise.
18336         * soft-fp/op-8.h: Likewise.
18337         * soft-fp/testit.c: Likewise.
18338         * stdio-common/bug16.c: Likewise.
18339         * stdlib/random.c: Likewise.
18340         * sunrpc/rpcsvc/rquota.x: Likewise.
18341         * sysdeps/ieee754/dbl-64/powtwo.tbl: Likewise.
18342         * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
18343         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
18344         * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
18345         * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
18346         * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
18347         * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
18348         * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
18349         * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
18350         * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
18351         * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
18352         * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: Likewise.
18353         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
18354         * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
18355         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
18356         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
18357         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
18358         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
18359         * sysdeps/ieee754/ldbl-128/s_remquol.c: Likewise.
18360         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
18361         * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
18362         * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
18363         * sysdeps/ieee754/ldbl-128/t_sincosl.c: Likewise.
18364         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c: Likewise.
18365         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
18366         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
18367         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
18368         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
18369         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
18370         * sysdeps/ieee754/s_lib_version.c: Likewise.
18371         * sysdeps/mach/hurd/check_fds.c: Likewise.
18372         * sysdeps/mach/hurd/getsockname.c: Likewise.
18373         * sysdeps/mach/hurd/net/if_ppp.h: Likewise.
18374         * sysdeps/mach/hurd/recvfrom.c: Likewise.
18375         * sysdeps/powerpc/bits/link.h: Likewise.
18376         * sysdeps/powerpc/dl-procinfo.c: Likewise.
18377         * sysdeps/powerpc/fpu/feholdexcpt.c: Likewise.
18378         * sysdeps/powerpc/fpu/fenv_const.c: Likewise.
18379         * sysdeps/powerpc/fpu/fesetenv.c: Likewise.
18380         * sysdeps/powerpc/fpu/feupdateenv.c: Likewise.
18381         * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
18382         * sysdeps/powerpc/fpu/t_sqrt.c: Likewise.
18383         * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
18384         * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Likewise.
18385         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: Likewise.
18386         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: Likewise.
18387         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.
18388         * sysdeps/powerpc/powerpc32/fpu/s_round.S: Likewise.
18389         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Likewise.
18390         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Likewise.
18391         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Likewise.
18392         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Likewise.
18393         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Likewise.
18394         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Likewise.
18395         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
18396         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
18397         * sysdeps/powerpc/powerpc32/power4/hp-timing.c: Likewise.
18398         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
18399         * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise.
18400         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Likewise.
18401         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Likewise.
18402         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Likewise.
18403         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
18404         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
18405         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Likewise.
18406         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Likewise.
18407         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Likewise.
18408         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
18409         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
18410         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: Likewise.
18411         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Likewise.
18412         * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Likewise.
18413         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
18414         * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: Likewise.
18415         * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Likewise.
18416         * sysdeps/powerpc/powerpc64/fpu/s_llrintf.S: Likewise.
18417         * sysdeps/powerpc/powerpc64/fpu/s_llround.S: Likewise.
18418         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: Likewise.
18419         * sysdeps/powerpc/powerpc64/fpu/s_round.S: Likewise.
18420         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
18421         * sysdeps/powerpc/powerpc64/fpu/s_roundl.S: Likewise.
18422         * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Likewise.
18423         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
18424         * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: Likewise.
18425         * sysdeps/powerpc/powerpc64/hp-timing.c: Likewise.
18426         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
18427         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
18428         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
18429         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
18430         * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: Likewise.
18431         * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: Likewise.
18432         * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: Likewise.
18433         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
18434         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Likewise.
18435         * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: Likewise.
18436         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: Likewise.
18437         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: Likewise.
18438         * sysdeps/powerpc/powerpc64/strlen.S: Likewise.
18439         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
18440         * sysdeps/powerpc/sysdep.h: Likewise.
18441         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
18442         * sysdeps/s390/s390-64/sub_n.S: Likewise.
18443         * sysdeps/sh/dl-trampoline.S: Likewise.
18444         * sysdeps/sh/memset.S: Likewise.
18445         * sysdeps/sh/sh4/fpu/fclrexcpt.c: Likewise.
18446         * sysdeps/sh/strlen.S: Likewise.
18447         * sysdeps/sparc/sparc32/dl-trampoline.S: Likewise.
18448         * sysdeps/sparc/sparc32/dotmul.S: Likewise.
18449         * sysdeps/sparc/sparc32/memcpy.S: Likewise.
18450         * sysdeps/sparc/sparc32/rem.S: Likewise.
18451         * sysdeps/sparc/sparc32/sdiv.S: Likewise.
18452         * sysdeps/sparc/sparc32/soft-fp/q_neg.c: Likewise.
18453         * sysdeps/sparc/sparc32/strchr.S: Likewise.
18454         * sysdeps/sparc/sparc32/udiv.S: Likewise.
18455         * sysdeps/sparc/sparc32/urem.S: Likewise.
18456         * sysdeps/sparc/sparc64/add_n.S: Likewise.
18457         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
18458         * sysdeps/sparc/sparc64/rawmemchr.S: Likewise.
18459         * sysdeps/sparc/sparc64/soft-fp/s_frexpl.c: Likewise.
18460         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h: Likewise.
18461         * sysdeps/sparc/sparc64/stpncpy.S: Likewise.
18462         * sysdeps/sparc/sparc64/strncmp.S: Likewise.
18463         * sysdeps/sparc/sparc64/strncpy.S: Likewise.
18464         * sysdeps/unix/bsd/times.c: Likewise.
18465         * sysdeps/unix/sysv/linux/a.out.h: Likewise.
18466         * sysdeps/unix/sysv/linux/net/if_ppp.h: Likewise.
18467         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
18468         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
18469         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Likewise.
18470         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: Likewise.
18471         * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Likewise.
18472         * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Likewise.
18473         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Likewise.
18474         * sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c: Likewise.
18475         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Likewise.
18476         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
18477         * sysdeps/unix/sysv/linux/s390/s390-64/mmap.S: Likewise.
18478         * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h: Likewise.
18479         * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
18480         * sysdeps/unix/sysv/linux/s390/s390-64/socket.S: Likewise.
18481         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
18482         * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
18483         * sysdeps/unix/sysv/linux/scsi/scsi_ioctl.h: Likewise.
18484         * sysdeps/unix/sysv/linux/sh/brk.c: Likewise.
18485         * sysdeps/unix/sysv/linux/sh/clone.S: Likewise.
18486         * sysdeps/unix/sysv/linux/sh/sh3/getcontext.S: Likewise.
18487         * sysdeps/unix/sysv/linux/sh/sh3/register-dump.h: Likewise.
18488         * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S: Likewise.
18489         * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S: Likewise.
18490         * sysdeps/unix/sysv/linux/sh/vfork.S: Likewise.
18491         * sysdeps/unix/sysv/linux/sparc/a.out.h: Likewise.
18492         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
18493         * sysdeps/unix/sysv/linux/sys/personality.h: Likewise.
18494         * sysdeps/x86_64/fpu/s_ceill.S: Likewise.
18495         * sysdeps/x86_64/fpu/s_llrintl.S: Likewise.
18496         * sysdeps/x86_64/strcspn.S: Likewise.
18498 2013-06-05  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
18500         * locale/C-translit.h: Revert #include <stdint.h> because this is a
18501         generated file.  Regenerate properly from gen-translit.pl.
18502         * locale/gen-translit.pl: Add #include <stdint.h>.  This generates
18503         locale/C-translit.h.
18505 2013-06-05  Andreas Schwab  <schwab@suse.de>
18507         [BZ #15100]
18508         * time/strptime_l.c (__strptime_internal): Count Sunday in a %W
18509         week as 6 instead of -1.
18510         * time/tst-strptime.c (day_tests): Add test case.
18512 2013-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
18514         * sysdeps/generic/math_private.h
18515         (libc_feholdexcept_setround_53bit): Replace with
18516         libc_feholdsetround_53bit.
18517         (libc_feupdateenv_53bit): Replace with
18518         libc_feresetround_53bit.
18519         (SET_RESTORE_ROUND_53BIT): Adjust.
18521 2013-06-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
18523         * string/test-strchrnul.c: Add copyright header.
18525         * posix/tst-getaddrinfo4.c: Increase test timeout.
18527 2013-06-03  Carlos O'Donell  <carlos@redhat.com>
18529         [BZ #15536]
18530         * math/libm-test.inc (MAX_EXP): Remove
18531         (MIN_EXP): Define.
18532         (ulp): Use MIN_EXP - MANT_DIG.
18533         (check_ulp): Verify subnormal ulps. Only allow a range of +/- 1 ulp.
18535 2013-05-31  Carlos O'Donell  <carlos@redhat.com>
18537         * po/be.po: Revert last change.
18538         * po/zh_CN.po: Likewise.
18539         * po/header.pot: Likewise.
18541 2013-05-31  Joseph Myers  <joseph@codesourcery.com>
18543         * Makefile ($(common-objpfx)linkobj/libc.so): Define
18544         link-libc-deps to empty as target-specific variable.
18545         * Makerules (link-libc-args): New variable.
18546         (libc-for-link): Likewise.
18547         (link-libc-deps): Likewise.
18548         (lib%.so): Depend on $(link-libc-deps).  Link with
18549         $(link-libc-args).
18550         (build-module): Link with $(link-libc-args).
18551         (build-module-asneeded): Likewise.
18552         (build-module-helper-objlist): Filter out $(link-libc-deps) from
18553         list of objects.
18554         ($(common-objpfx)libc.so): Define link-libc-deps to empty as
18555         target-specific variable.
18556         ($(extra-modules-build:%=$(objpfx)%.so)): Depend on
18557         $(link-libc-deps) instead of libc.so and libc_nonshared.a.
18558         * crypt/Makefile ($(objpfx)libcrypt.so): Remove dependencies on
18559         libc.
18560         * debug/Makefile ($(objpfx)libSegFault.so): Remove dependencies on
18561         libc and ld.so.
18562         ($(objpfx)libpcprofile.so): Likewise.
18563         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Remove ld.so and
18564         libc_nonshared.a.
18565         ($(objpfx)libdl.so): Remove dependencies on libc and ld.so.
18566         * hesiod/Makefile ($(objpfx)libnss_hesiod.so): Likewise.
18567         * iconvdata/extra-module.mk ($(objpfx)$(mod).so): Depend on
18568         $(link-libc-deps).
18569         ($(objpfx)$(mod).so): Remove dependencies on libc and ld.so.
18570         * locale/Makefile ($(objpfx)libBrokenLocale.so): Likewise.
18571         * login/Makefile ($(objpfx)libutil.so): Likewise.
18572         * malloc/Makefile ($(objpfx)libmemusage.so): Likewise.
18573         * math/Makefile ($(objpfx)libm.so): Likewise.
18574         * nis/Makefile ($(services:%=$(objpfx)libnss_%.so)
18575         $(objpfx)libnsl.so): Define libc-for-link as target-specific
18576         variable instead of depending directly on libc.
18577         * nss/Makefile ($(services:%=$(objpfx)libnss_%.so)): Likewise.
18578         ($(objpfx)/libnss_test1.so): Change dependencies on libc to
18579         $(link-libc-deps).
18580         * resolv/Makefile ($(objpfx)libresolv.so): Remove dependencies on
18581         libc.
18582         [$(have-ssp) = yes] (LDLIBS-resolv.so): Remove variable.
18583         ($(objpfx)libnss_dns.so): Remove dependencies on libc.
18584         ($(objpfx)libanl.so): Likewise.
18585         * rt/Makefile ($(objpfx)librt.so): Remove dependencies on libc and
18586         ld.so.
18587         * stdlib/Makefile ($(objpfx)tst-putenvmod.so): Depend on
18588         $(link-libc-deps).
18589         * sysdeps/i386/fpu/Makefile: Remove file.
18590         * sysdeps/powerpc/fpu/Makefile [$(subdir) = math]
18591         ($(objpfx)libm.so): Remove dependency on ld.so.
18593 2013-05-30  Patsy Franklin  <pfrankli@redhat.com>
18595         [BZ # 15553]
18596         * nis/yp_xdr.c (XDRMAXNAME): Define.
18597         (XDRMAXRECORD): Define.
18598         (xdr_domainname): Use XDRMAXNAME.
18599         (xdr_mapname): Likewise.
18600         (xdr_peername): Likewise.
18601         (xdr_keydat): Use XDRMAXRECORD.
18602         (xdr_valdat): Likewise.
18604 2013-05-30  Jeff Law  <law@redhat.com>
18606         [BZ #14256]
18607         * manual/errno.texi (ESTALE): Update to account for more than
18608         just NFS file systems.
18609         * sysdeps/gnu/errlist.c: Regenerated.
18611 2013-05-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
18613         [BZ #15465]
18614         * elf/Makefile (tests): Add tst-null-argv.
18615         (modules-names):  Add tst-null-argv-lib.
18616         ($(objpfx)tst-null-argv): Depend on tst-null-argv-lib.so.
18617         (tst-null-argv-ENV): Set environment for tst-null-argv.
18618         * sysdeps/generic/ldsodefs.h (DSO_FILENAME): New macro.
18619         (RTLD_PROGNAME): New macro.
18620         * elf/tst-null-argv.c: New test case.
18621         * elf/tst-null-argv-lib.c: Library for test case.
18622         * elf/dl-conflict.c (_dl_resolve_conflicts): Use DSO_FILENAME.
18623         * elf/dl-deps.c (_dl_map_object_deps): Likewise.
18624         * elf/dl-error.c (_dl_signal_error): Use RTLD_PROGNAME.
18625         * elf/dl-fini.c (_dl_fini): Use DSO_FILENAME.
18626         * elf/dl-init.c (call_init): Likewise.
18627         (_dl_init): Likewise.
18628         * elf/dl-load.c (print_search_path): Likewise.
18629         (_dl_map_object): Likewise.
18630         * elf/dl-lookup.c (do_lookup_x): Likewise.
18631         (add_dependency): Likewise.
18632         (_dl_lookup_symbol_x): Likewise.
18633         (_dl_debug_bindings): Likewise.
18634         * elf/dl-open.c (_dl_show_scope): Likewise.
18635         * elf/dl-reloc.c (_dl_relocate_object): Likewise.
18636         * elf/dl-version.c (match_symbol): Likewise.
18637         (_dl_check_map_versions): Likewise.
18638         * elf/rtld.c (dl_main): Likewise.
18639         (print_unresolved): Use RTLD_PROGNAME.
18640         (print_missing_version): Likewise.
18641         * sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
18642         (elf_machine_rela): Likewise.
18643         * sysdeps/powerpc/powerpc32/dl-machine.c
18644         (__process_machine_rela): Likewise.
18645         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
18646         Likewise.
18647         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
18648         Likewise.
18649         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
18650         Likewise.
18651         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
18652         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela):
18653         Likewise.
18654         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
18655         Likewise.
18656         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
18658 2013-05-28  Carlos O'Donell  <carlos@redhat.com>
18660         * po/be.po: Add descriptive title.
18661         * po/zh_CN.po: Likewise.
18662         * po/header.pot: Likewise.
18664 2013-05-28  Mike Frysinger  <vapier@gentoo.org>
18666         * locale/programs/locarchive.c (create_archive): Inlucde fname in
18667         error message.
18668         (enlarge_archive): Likewise.
18670 2013-05-28  Ben North  <ben@redfrontdoor.org>
18672         * manual/arith.texi (frexp): It is the magnitude of the return
18673         value which lies in [0.5, 1), not the return value itself.
18675 2013-05-28  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18677         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18679 2013-05-26  Thomas Schwinge  <thomas@codesourcery.com>
18681         * stdio-common/bug26.c (main): Correct fscanf template.
18683         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start:go): Don't
18684         declare _dl_skip_args.
18686         * sysdeps/mach/hurd/i386/init-first.c (_dl_non_dynamic_init):
18687         Don't declare.
18689         * manual/platform.texi: Add missing @end deftypefun.
18691 2013-05-24  Joseph Myers  <joseph@codesourcery.com>
18693         [BZ #15529]
18694         * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Set high
18695         bit of mantissa of 2^16382.
18696         * math/libm-test.inc (hypot_test_data): Add more tests.
18698         * math/libm-test.inc: Add drem and pow10 to list of tested
18699         functions.
18700         (pow10_test): New function.
18701         (drem_test): Likewise.
18702         (drem_test_tonearest): Likewise.
18703         (drem_test_towardzero): Likewise.
18704         (drem_test_downward): Likewise.
18705         (drem_test_upward): Likewise.
18706         (main): Call the new functions.
18708         * math/libm-test.inc (finite_test_data): Remove.
18709         (finite_test): Run tests from isfinite_test_data.
18710         (gamma_test_data): Remove.
18711         (gamma_test): Run tests from lgamma_test_data.
18712         * sysdeps/i386/fpu/libm-test-ulps: Update.
18713         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18715 2013-05-24  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18717         * manual/platform.texi: Add PowerPC PPR function set documentation.
18718         * sysdeps/powerpc/sys/platform/ppc.h: Add PowerPC PPR set function
18719         implementation.
18721 2013-05-24  Carlos O'Donell  <carlos@redhat.com>
18723         * math/libm-test.inc (MAX_EXP): Define.
18724         (ULPDIFF): Define.
18725         (ulp): New function.
18726         (check_float_internal): Use ULPDIFF.
18727         (cpow_test): Disable failing test.
18728         (check_ulp): Test ulp() implemetnation.
18729         (main): Call check_ulp before starting tests.
18731 2013-05-24  Joseph Myers  <joseph@codesourcery.com>
18733         * math/gen-libm-test.pl (generate_testfile): Do not handle
18734         START_DATA and END_DATA.
18735         * math/libm-test.inc (acos_test_data): Do not use START_DATA and
18736         END_DATA.
18737         (acos_tonearest_test_data): Likewise.
18738         (acos_towardzero_test_data): Likewise.
18739         (acos_downward_test_data): Likewise.
18740         (acos_upward_test_data): Likewise.
18741         (acosh_test_data): Likewise.
18742         (asin_test_data): Likewise.
18743         (asin_tonearest_test_data): Likewise.
18744         (asin_towardzero_test_data): Likewise.
18745         (asin_downward_test_data): Likewise.
18746         (asin_upward_test_data): Likewise.
18747         (asinh_test_data): Likewise.
18748         (atan_test_data): Likewise.
18749         (atanh_test_data): Likewise.
18750         (atan2_test_data): Likewise.
18751         (cabs_test_data): Likewise.
18752         (cacos_test_data): Likewise.
18753         (cacosh_test_data): Likewise.
18754         (carg_test_data): Likewise.
18755         (casin_test_data): Likewise.
18756         (casinh_test_data): Likewise.
18757         (catan_test_data): Likewise.
18758         (catanh_test_data): Likewise.
18759         (cbrt_test_data): Likewise.
18760         (ccos_test_data): Likewise.
18761         (ccosh_test_data): Likewise.
18762         (ceil_test_data): Likewise.
18763         (cexp_test_data): Likewise.
18764         (cimag_test_data): Likewise.
18765         (clog_test_data): Likewise.
18766         (clog10_test_data): Likewise.
18767         (conj_test_data): Likewise.
18768         (copysign_test_data): Likewise.
18769         (cos_test_data): Likewise.
18770         (cos_tonearest_test_data): Likewise.
18771         (cos_towardzero_test_data): Likewise.
18772         (cos_downward_test_data): Likewise.
18773         (cos_upward_test_data): Likewise.
18774         (cosh_test_data): Likewise.
18775         (cosh_tonearest_test_data): Likewise.
18776         (cosh_towardzero_test_data): Likewise.
18777         (cosh_downward_test_data): Likewise.
18778         (cosh_upward_test_data): Likewise.
18779         (cpow_test_data): Likewise.
18780         (cproj_test_data): Likewise.
18781         (creal_test_data): Likewise.
18782         (csin_test_data): Likewise.
18783         (csinh_test_data): Likewise.
18784         (csqrt_test_data): Likewise.
18785         (ctan_test_data): Likewise.
18786         (ctan_tonearest_test_data): Likewise.
18787         (ctan_towardzero_test_data): Likewise.
18788         (ctan_downward_test_data): Likewise.
18789         (ctan_upward_test_data): Likewise.
18790         (ctanh_test_data): Likewise.
18791         (ctanh_tonearest_test_data): Likewise.
18792         (ctanh_towardzero_test_data): Likewise.
18793         (ctanh_downward_test_data): Likewise.
18794         (ctanh_upward_test_data): Likewise.
18795         (erf_test_data): Likewise.
18796         (erfc_test_data): Likewise.
18797         (exp_test_data): Likewise.
18798         (exp_tonearest_test_data): Likewise.
18799         (exp_towardzero_test_data): Likewise.
18800         (exp_downward_test_data): Likewise.
18801         (exp_upward_test_data): Likewise.
18802         (exp10_test_data): Likewise.
18803         (exp2_test_data): Likewise.
18804         (expm1_test_data): Likewise.
18805         (fabs_test_data): Likewise.
18806         (fdim_test_data): Likewise.
18807         (finite_test_data): Likewise.
18808         (floor_test_data): Likewise.
18809         (fma_test_data): Likewise.
18810         (fma_towardzero_test_data): Likewise.
18811         (fma_downward_test_data): Likewise.
18812         (fma_upward_test_data): Likewise.
18813         (fmax_test_data): Likewise.
18814         (fmin_test_data): Likewise.
18815         (fmod_test_data): Likewise.
18816         (fpclassify_test_data): Likewise.
18817         (frexp_test_data): Likewise.
18818         (gamma_test_data): Likewise.
18819         (hypot_test_data): Likewise.
18820         (ilogb_test_data): Likewise.
18821         (isfinite_test_data): Likewise.
18822         (isgreater_test_data): Likewise.
18823         (isgreaterequal_test_data): Likewise.
18824         (isinf_test_data): Likewise.
18825         (isless_test_data): Likewise.
18826         (islessequal_test_data): Likewise.
18827         (islessgreater_test_data): Likewise.
18828         (isnan_test_data): Likewise.
18829         (isnormal_test_data): Likewise.
18830         (issignaling_test_data): Likewise.
18831         (isunordered_test_data): Likewise.
18832         (j0_test_data): Likewise.
18833         (j1_test_data): Likewise.
18834         (jn_test_data): Likewise.
18835         (ldexp_test_data): Likewise.
18836         (lgamma_test_data): Likewise.
18837         (lrint_test_data): Likewise.
18838         (lrint_tonearest_test_data): Likewise.
18839         (lrint_towardzero_test_data): Likewise.
18840         (lrint_downward_test_data): Likewise.
18841         (lrint_upward_test_data): Likewise.
18842         (llrint_test_data): Likewise.
18843         (llrint_tonearest_test_data): Likewise.
18844         (llrint_towardzero_test_data): Likewise.
18845         (llrint_downward_test_data): Likewise.
18846         (llrint_upward_test_data): Likewise.
18847         (log_test_data): Likewise.
18848         (log10_test_data): Likewise.
18849         (log1p_test_data): Likewise.
18850         (log2_test_data): Likewise.
18851         (logb_test_data): Likewise.
18852         (logb_downward_test_data): Likewise.
18853         (lround_test_data): Likewise.
18854         (llround_test_data): Likewise.
18855         (modf_test_data): Likewise.
18856         (nearbyint_test_data): Likewise.
18857         (nextafter_test_data): Likewise.
18858         (nexttoward_test_data): Likewise.
18859         (pow_test_data): Likewise.
18860         (pow_tonearest_test_data): Likewise.
18861         (pow_towardzero_test_data): Likewise.
18862         (pow_downward_test_data): Likewise.
18863         (pow_upward_test_data): Likewise.
18864         (remainder_test_data): Likewise.
18865         (remainder_tonearest_test_data): Likewise.
18866         (remainder_towardzero_test_data): Likewise.
18867         (remainder_downward_test_data): Likewise.
18868         (remainder_upward_test_data): Likewise.
18869         (remquo_test_data): Likewise.
18870         (rint_test_data): Likewise.
18871         (rint_tonearest_test_data): Likewise.
18872         (rint_towardzero_test_data): Likewise.
18873         (rint_downward_test_data): Likewise.
18874         (rint_upward_test_data): Likewise.
18875         (round_test_data): Likewise.
18876         (scalb_test_data): Likewise.
18877         (scalbn_test_data): Likewise.
18878         (scalbln_test_data): Likewise.
18879         (signbit_test_data): Likewise.
18880         (sin_test_data): Likewise.
18881         (sin_tonearest_test_data): Likewise.
18882         (sin_towardzero_test_data): Likewise.
18883         (sin_downward_test_data): Likewise.
18884         (sin_upward_test_data): Likewise.
18885         (sincos_test_data): Likewise.
18886         (sinh_test_data): Likewise.
18887         (sinh_tonearest_test_data): Likewise.
18888         (sinh_towardzero_test_data): Likewise.
18889         (sinh_downward_test_data): Likewise.
18890         (sinh_upward_test_data): Likewise.
18891         (sqrt_test_data): Likewise.
18892         (tan_test_data): Likewise.
18893         (tan_tonearest_test_data): Likewise.
18894         (tan_towardzero_test_data): Likewise.
18895         (tan_downward_test_data): Likewise.
18896         (tan_upward_test_data): Likewise.
18897         (tanh_test_data): Likewise.
18898         (tgamma_test_data): Likewise.
18899         (trunc_test_data): Likewise.
18900         (y0_test_data): Likewise.
18901         (y1_test_data): Likewise.
18902         (yn_test_data): Likewise.
18903         (significand_test_data): Likewise.
18905         * math/gen-libm-test.pl (@functions): Remove variable.
18906         (generate_testfile): Don't handle START and END lines.
18907         * math/libm-test.inc (START): New macro.
18908         (END): Likewise.
18909         (END_COMPLEX): Likewise.
18910         (acos_test): Use END macro without arguments.
18911         (acos_test_tonearest): Likewise.
18912         (acos_test_towardzero): Likewise.
18913         (acos_test_downward): Likewise.
18914         (acos_test_upward): Likewise.
18915         (acosh_test): Likewise.
18916         (asin_test): Likewise.
18917         (asin_test_tonearest): Likewise.
18918         (asin_test_towardzero): Likewise.
18919         (asin_test_downward): Likewise.
18920         (asin_test_upward): Likewise.
18921         (asinh_test): Likewise.
18922         (atan_test): Likewise.
18923         (atanh_test): Likewise.
18924         (atan2_test): Likewise.
18925         (cabs_test): Likewise.
18926         (cacos_test): Use END_COMPLEX macro without arguments.
18927         (cacosh_test): Likewise.
18928         (carg_test): Use END macro without arguments.
18929         (casin_test): Use END_COMPLEX macro without arguments.
18930         (casinh_test): Likewise.
18931         (catan_test): Likewise.
18932         (catanh_test): Likewise.
18933         (cbrt_test): Use END macro without arguments.
18934         (ccos_test): Use END_COMPLEX macro without arguments.
18935         (ccosh_test): Likewise.
18936         (ceil_test): Use END macro without arguments.
18937         (cexp_test): Use END_COMPLEX macro without arguments.
18938         (cimag_test): Use END macro without arguments.
18939         (clog_test): Use END_COMPLEX macro without arguments.
18940         (clog10_test): Likewise.
18941         (conj_test): Likewise.
18942         (copysign_test): Use END macro without arguments.
18943         (cos_test): Likewise.
18944         (cos_test_tonearest): Likewise.
18945         (cos_test_towardzero): Likewise.
18946         (cos_test_downward): Likewise.
18947         (cos_test_upward): Likewise.
18948         (cosh_test): Likewise.
18949         (cosh_test_tonearest): Likewise.
18950         (cosh_test_towardzero): Likewise.
18951         (cosh_test_downward): Likewise.
18952         (cosh_test_upward): Likewise.
18953         (cpow_test): Use END_COMPLEX macro without arguments.
18954         (cproj_test): Likewise.
18955         (creal_test): Use END macro without arguments.
18956         (csin_test): Use END_COMPLEX macro without arguments.
18957         (csinh_test): Likewise.
18958         (csqrt_test): Likewise.
18959         (ctan_test): Likewise.
18960         (ctan_test_tonearest): Likewise.
18961         (ctan_test_towardzero): Likewise.
18962         (ctan_test_downward): Likewise.
18963         (ctan_test_upward): Likewise.
18964         (ctanh_test): Likewise.
18965         (ctanh_test_tonearest): Likewise.
18966         (ctanh_test_towardzero): Likewise.
18967         (ctanh_test_downward): Likewise.
18968         (ctanh_test_upward): Likewise.
18969         (erf_test): Use END macro without arguments.
18970         (erfc_test): Likewise.
18971         (exp_test): Likewise.
18972         (exp_test_tonearest): Likewise.
18973         (exp_test_towardzero): Likewise.
18974         (exp_test_downward): Likewise.
18975         (exp_test_upward): Likewise.
18976         (exp10_test): Likewise.
18977         (exp2_test): Likewise.
18978         (expm1_test): Likewise.
18979         (fabs_test): Likewise.
18980         (fdim_test): Likewise.
18981         (finite_test): Likewise.
18982         (floor_test): Likewise.
18983         (fma_test): Likewise.
18984         (fma_test_towardzero): Likewise.
18985         (fma_test_downward): Likewise.
18986         (fma_test_upward): Likewise.
18987         (fmax_test): Likewise.
18988         (fmin_test): Likewise.
18989         (fmod_test): Likewise.
18990         (fpclassify_test): Likewise.
18991         (frexp_test): Likewise.
18992         (gamma_test): Likewise.
18993         (hypot_test): Likewise.
18994         (ilogb_test): Likewise.
18995         (isfinite_test): Likewise.
18996         (isgreater_test): Likewise.
18997         (isgreaterequal_test): Likewise.
18998         (isinf_test): Likewise.
18999         (isless_test): Likewise.
19000         (islessequal_test): Likewise.
19001         (islessgreater_test): Likewise.
19002         (isnan_test): Likewise.
19003         (isnormal_test): Likewise.
19004         (issignaling_test): Likewise.
19005         (isunordered_test): Likewise.
19006         (j0_test): Likewise.
19007         (j1_test): Likewise.
19008         (jn_test): Likewise.
19009         (ldexp_test): Likewise.
19010         (lgamma_test): Likewise.
19011         (lrint_test): Likewise.
19012         (lrint_test_tonearest): Likewise.
19013         (lrint_test_towardzero): Likewise.
19014         (lrint_test_downward): Likewise.
19015         (lrint_test_upward): Likewise.
19016         (llrint_test): Likewise.
19017         (llrint_test_tonearest): Likewise.
19018         (llrint_test_towardzero): Likewise.
19019         (llrint_test_downward): Likewise.
19020         (llrint_test_upward): Likewise.
19021         (log_test): Likewise.
19022         (log10_test): Likewise.
19023         (log1p_test): Likewise.
19024         (log2_test): Likewise.
19025         (logb_test): Likewise.
19026         (logb_test_downward): Likewise.
19027         (lround_test): Likewise.
19028         (llround_test): Likewise.
19029         (modf_test): Likewise.
19030         (nearbyint_test): Likewise.
19031         (nextafter_test): Likewise.
19032         (nexttoward_test): Likewise.
19033         (pow_test): Likewise.
19034         (pow_test_tonearest): Likewise.
19035         (pow_test_towardzero): Likewise.
19036         (pow_test_downward): Likewise.
19037         (pow_test_upward): Likewise.
19038         (remainder_test): Likewise.
19039         (remainder_test_tonearest): Likewise.
19040         (remainder_test_towardzero): Likewise.
19041         (remainder_test_downward): Likewise.
19042         (remainder_test_upward): Likewise.
19043         (remquo_test): Likewise.
19044         (rint_test): Likewise.
19045         (rint_test_tonearest): Likewise.
19046         (rint_test_towardzero): Likewise.
19047         (rint_test_downward): Likewise.
19048         (rint_test_upward): Likewise.
19049         (round_test): Likewise.
19050         (scalb_test): Likewise.
19051         (scalbn_test): Likewise.
19052         (scalbln_test): Likewise.
19053         (signbit_test): Likewise.
19054         (sin_test): Likewise.
19055         (sin_test_tonearest): Likewise.
19056         (sin_test_towardzero): Likewise.
19057         (sin_test_downward): Likewise.
19058         (sin_test_upward): Likewise.
19059         (sincos_test): Likewise.
19060         (sinh_test): Likewise.
19061         (sinh_test_tonearest): Likewise.
19062         (sinh_test_towardzero): Likewise.
19063         (sinh_test_downward): Likewise.
19064         (sinh_test_upward): Likewise.
19065         (sqrt_test): Likewise.
19066         (tan_test): Likewise.
19067         (tan_test_tonearest): Likewise.
19068         (tan_test_towardzero): Likewise.
19069         (tan_test_downward): Likewise.
19070         (tan_test_upward): Likewise.
19071         (tanh_test): Likewise.
19072         (tgamma_test): Likewise.
19073         (trunc_test): Likewise.
19074         (y0_test): Likewise.
19075         (y1_test): Likewise.
19076         (yn_test): Likewise.
19077         (significand_test): Likewise.
19079 2013-05-24  Ondřej Bílka  <neleai@seznam.cz>
19081         [BZ #15381]
19082         * libio/genops.c (_IO_no_init): Initialize wide struct info.
19084 2013-05-23  Edjunior Machado  <emachado@linux.vnet.ibm.com>
19086         [BZ #14894]
19087         * sysdeps/powerpc/sys/platform/ppc.h: Add __ppc_yield,
19088         __ppc_mdoio and __ppc_mdoom.
19089         * manual/platform.texi: Document new functions __ppc_yield,
19090         __ppc_mdoio and __ppc_mdoom.
19092 2013-05-22  Carlos O'Donell  <carlos@redhat.com>
19094         * elf/ldconfig.c (is_hwcap_platform): Make comments full setences.
19095         (main): Mention "tls" pseudo-hwcap is legacy.
19096         * elf/dl-hwcaps.c (_dl_important_hwcaps): Correct rounding comment.
19098 2013-05-22  Joseph Myers  <joseph@codesourcery.com>
19100         * math/gen-libm-test.pl (parse_args): Output only string of
19101         arguments as text for test name, not full call or descriptions of
19102         tests for extra outputs.
19103         (generate_testfile): Do not pass function name to parse_args.
19104         Generate this_func variable from START.
19105         * math/libm-test.inc (struct test_f_f_data): Rename test_name
19106         field to arg_str.
19107         (struct test_ff_f_data): Likewise.
19108         (test_ff_f_data_nexttoward): Likewise.
19109         (struct test_fi_f_data): Likewise.
19110         (struct test_fl_f_data): Likewise.
19111         (struct test_if_f_data): Likewise.
19112         (struct test_fff_f_data): Likewise.
19113         (struct test_c_f_data): Likewise.
19114         (struct test_f_f1_data): Likewise.  Remove field extra_name.
19115         (struct test_fF_f1_data): Likewise.
19116         (struct test_ffI_f1_data): Likewise.
19117         (struct test_c_c_data): Rename test_name field to arg_str.
19118         (struct test_cc_c_data): Likewise.
19119         (struct test_f_i_data): Likewise.
19120         (struct test_ff_i_data): Likewise.
19121         (struct test_f_l_data): Likewise.
19122         (struct test_f_L_data): Likewise.
19123         (struct test_fFF_11_data): Likewise.  Remove fields extra1_name
19124         and extra2_name.
19125         (COMMON_TEST_SETUP): New macro.
19126         (EXTRA_OUTPUT_TEST_SETUP): Likewise.
19127         (COMMON_TEST_CLEANUP): Likewise.
19128         (EXTRA_OUTPUT_TEST_CLEANUP): Likewise.
19129         (RUN_TEST_f_f): Take argument string.  Call new setup and cleanup
19130         macros.
19131         (RUN_TEST_LOOP_f_f): Update call to RUN_TEST_f_f.
19132         (RUN_TEST_2_f): Take argument string.  Call new setup and cleanup
19133         macros.
19134         (RUN_TEST_LOOP_2_f): Update call to RUN_TEST_2_f.
19135         (RUN_TEST_fff_f): Take argument string.  Call new setup and
19136         cleanup macros.
19137         (RUN_TEST_LOOP_fff_f): Update call to RUN_TEST_fff_f.
19138         (RUN_TEST_c_f): Take argument string.  Call new setup and cleanup
19139         macros.
19140         (RUN_TEST_LOOP_c_f): Update call to RUN_TEST_c_f.
19141         (RUN_TEST_f_f1): Take argument string.  Call new setup and cleanup
19142         macros.
19143         (RUN_TEST_LOOP_f_f1): Update call to RUN_TEST_f_f1.
19144         (RUN_TEST_fF_f1): Take argument string.  Call new setup and
19145         cleanup macros.
19146         (RUN_TEST_LOOP_fF_f1): Update call to RUN_TEST_fF_f1.
19147         (RUN_TEST_fI_f1): Take argument string.  Call new setup and
19148         cleanup macros.
19149         (RUN_TEST_LOOP_fI_f1): Update call to RUN_TEST_fI_f1.
19150         (RUN_TEST_ffI_f1): Take argument string.  Call new setup and
19151         cleanup macros.
19152         (RUN_TEST_LOOP_ffI_f1): Update call to RUN_TEST_ffI_f1.
19153         (RUN_TEST_c_c): Take argument string.  Call new setup and cleanup
19154         macros.
19155         (RUN_TEST_LOOP_c_c): Update call to RUN_TEST_c_c.
19156         (RUN_TEST_cc_c): Take argument string.  Call new setup and cleanup
19157         macros.
19158         (RUN_TEST_LOOP_cc_c): Update call to RUN_TEST_cc_c.
19159         (RUN_TEST_f_i): Take argument string.  Call new setup and cleanup
19160         macros.
19161         (RUN_TEST_LOOP_f_i): Update call to RUN_TEST_f_i.
19162         (RUN_TEST_f_i_tg): Take argument string.  Call new setup and
19163         cleanup macros.
19164         (RUN_TEST_LOOP_f_i_tg): Update call to RUN_TEST_f_i_tg.
19165         (RUN_TEST_ff_i_tg): Take argument string.  Call new setup and
19166         cleanup macros.
19167         (RUN_TEST_LOOP_ff_i_tg): Update call to RUN_TEST_ff_i_tg.
19168         (RUN_TEST_f_b): Take argument string.  Call new setup and cleanup
19169         macros.
19170         (RUN_TEST_LOOP_f_b): Update call to RUN_TEST_f_b.
19171         (RUN_TEST_f_b_tg): Take argument string.  Call new setup and
19172         cleanup macros.
19173         (RUN_TEST_LOOP_f_b_tg): Update call to RUN_TEST_f_b_tg.
19174         (RUN_TEST_f_l): Take argument string.  Call new setup and cleanup
19175         macros.
19176         (RUN_TEST_LOOP_f_l): Update call to RUN_TEST_f_l.
19177         (RUN_TEST_f_L): Take argument string.  Call new setup and cleanup
19178         macros.
19179         (RUN_TEST_LOOP_f_L): Update call to RUN_TEST_f_L.
19180         (RUN_TEST_fFF_11): Take argument string.  Call new setup and
19181         cleanup macros.
19182         (RUN_TEST_LOOP_fFF_11): Update call to RUN_TEST_fFF_11.
19184 2013-05-22  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
19186         * sysdeps/unix/sysv/linux/bits/siginfo.h (siginfo_t): Add si_addr_lsb
19187         to _sifields.sigfault.
19188         (si_addr_lsb): Define new macro.
19189         (BUS_MCEERR_AR, BUS_MCEERR_AO): Define new values.
19190         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
19191         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h: Likewise.
19193 2013-05-03  Carlos O'Donell  <carlos at redhat.com>
19195         [BZ #15441]
19196         * intl/dcigettext.c (DCIGETTEXT): Skip translating if _nl_find_msg
19197         returns -1.
19198         (_nl_find_msg): Return -1 if recursive call returned -1. If newmem is
19199         null return -1.
19200         * intl/loadmsgcat.c (_nl_load_domain): If _nl_find_msg returns -1 abort
19201         loading the domain.
19203 2013-05-22  Joseph Myers  <joseph@codesourcery.com>
19205         * math/gen-libm-test.pl (parse_args): Do not include expected
19206         result in test name.
19207         * sysdeps/i386/fpu/libm-test-ulps: Update test names.
19208         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
19209         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
19210         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
19211         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
19212         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
19214 2013-05-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
19216         * benchtests/Makefile: Sort function entries.
19218         * benchtests/Makefile (bench): Add asin, acos, sinh, cosh,
19219         tanh, asinh, acosh, atanh.
19220         * benchtests/acos-inputs: New file.
19221         * benchtests/acosh-inputs: New file.
19222         * benchtests/asin-inputs: New file.
19223         * benchtests/asinh-inputs: New file.
19224         * benchtests/atanh-inputs: New file.
19225         * benchtests/cosh-inputs: New file.
19226         * benchtests/log-inputs: New file.
19227         * benchtests/sinh-inputs: New file.
19228         * benchtests/tanh-inputs: New file.
19230 2013-05-21  Dmitry V. Levin  <ldv@altlinux.org>
19232         [BZ #15339]
19233         * posix/tst-getaddrinfo4.c: New test.
19234         * posix/Makefile (tests): Add it.
19236 2013-05-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
19238         [BZ #15339]
19239         * nss/getXXbyYY_r.c (REENTRANT_NAME): Set NETDB_INTERNAL only
19240         when no services were used.
19241         * sysdeps/posix/getaddrinfo.c (gaih_inet): Set h_errno.
19242         Return EAI_SYSTEM if h_errno is NETDB_INTERNAL.
19244 2013-05-21  Andreas Schwab  <schwab@suse.de>
19246         [BZ #15014]
19247         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME))
19248         [HANDLE_DIGITS_DOTS]: Set any_service when digits-dots parsing was
19249         successful.
19250         * nss/digits_dots.c (__nss_hostname_digits_dots): Remove
19251         redundant variable declarations and reallocation of buffer when
19252         parsing as IPv6 address.  Always set NSS status when called from
19253         reentrant functions.  Use NETDB_INTERNAL instead of TRY_AGAIN when
19254         buffer too small.  Correct computation of needed size.
19255         * nss/Makefile (tests): Add test-digits-dots.
19256         * nss/test-digits-dots.c: New test.
19258 2013-05-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
19260         * benchtests/Makefile: Remove instructions for adding
19261         benchmark tests.
19262         * benchtests/README: New file to explain how to execute and
19263         enhance the benchmark tests.
19265 2013-05-21  Andreas Schwab  <schwab@suse.de>
19267         [BZ #15493]
19268         * setjmp/Makefile (tests): Add tst-sigsetjmp.
19269         * setjmp/tst-sigsetjmp.c: New test.
19271 2013-05-20  Ondřej Bílka  <neleai@seznam.cz>
19273         * sysdeps/x86_64/memset.S (memset): New implementation.
19274         (__bzero): Likewise.
19275         (__memset_tail): New function.
19277 2013-05-20  Ondřej Bílka  <neleai@seznam.cz>
19279         * sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: New file.
19280         * sysdeps/x86_64/multiarch/memcpy.S (__new_memcpy): Add
19281         __memcpy_sse2_unaligned ifunc selection.
19282         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
19283         Add memcpy-sse2-unaligned.S.
19284         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
19285         Add: __memcpy_sse2_unaligned.
19287 2013-05-19  Joseph Myers  <joseph@codesourcery.com>
19289         [BZ #15490]
19290         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
19291         math_force_eval before restoring floating-point envrionment.
19292         * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Likewise.
19293         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl):
19294         Likewise.
19295         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Include
19296         <math_private.h>.
19297         (__nearbyintl): Use math_force_eval before restoring
19298         floating-point environment.
19299         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c (__nearbyintl): Likewise.
19301         * math/gen-libm-test.pl (special_functions): Remove.
19302         (parse_args): Don't handle TEST_extra.  Handle functions with no
19303         return value.
19304         * math/libm-test.inc (struct test_sincos_data): Replace with
19305         struct test_fFF_11_data.
19306         (RUN_TEST_sincos): Replace with RUN_TEST_fFF_11.
19307         (RUN_TEST_LOOP_sincos): Replace with RUN_TEST_LOOP_fFF_11.
19308         (sincos_test_data): Change element type to struct
19309         test_fFF_11_data.  Use TEST_fFF_11 instead of TEST_extra.
19310         (sincos_test): Use RUN_TEST_LOOP_fFF_11 instead of
19311         RUN_TEST_LOOP_sincos.
19312         * math/README.libm-test: Don't mention special handling of
19313         individual functions.
19314         * sysdeps/i386/fpu/libm-test-ulps: Update names of sincos tests.
19315         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
19316         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
19317         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
19318         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
19319         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
19321         * math/gen-libm-test.pl (get_variable): Remove function.
19322         (parse_args): Don't show pointer parameters to call in test
19323         names.  Use "extra output N" in test names for extra outputs
19324         rather than naming variables.
19326 2013-05-18  Joseph Myers  <joseph@codesourcery.com>
19328         [BZ #15488]
19329         * math/complex.h [__USE_ISOC11 && __GNUC_PREREQ (4, 7) &&
19330         __NO_LONG_DOUBLE_MATH] (CMPLXL): Define macro.
19331         * math/tst-CMPLX.c (do_test) [NO_LONG_DOUBLE]: Do not disable long
19332         double tests.
19333         * make/tst-CMPLX2.c [NO_LONG_DOUBLE] (check_long_double): Do not
19334         disable.
19335         (do_test) [NO_LONG_DOUBLE]: Do not disable call to
19336         check_long_double.
19338         * math/gen-libm-test.pl (@tests): Remove variable.
19339         ($count): Likewise.
19340         (new_test): Remove function.
19341         (show_exceptions): New function.
19342         (special_functions): Use show_exceptions instead of new_test.
19343         (parse_args): Likewise.
19344         (generate_testfile): Pass only function name in generated call to
19345         print_max_error or print_complex_max_error.
19346         (get_ulps): Do not handle complex tests specially.
19347         (output_test): Rename to ...
19348         (get_all_ulps_for_test): ... this.  Return a string rather than
19349         printing to a file.  Require ulps to be present.
19350         (output_ulps): Generate arrays rather than #defines.
19351         * math/libm-test.inc: Move down #include of "libm-test-ulps.h".
19352         (struct ulp_data): New type.
19353         (BUILD_COMPLEX_ULP): Remove macro.
19354         (compare_ulp_data): New function.
19355         (find_ulps): Likewise.
19356         (find_test_ulps): Likewise.
19357         (find_function_ulps): Likewise.
19358         (find_complex_function_ulps): Likewise.
19359         (print_max_error): Determine allowed ulps using
19360         find_function_ulps.
19361         (print_complex_max_error): Determine allowed ulps using
19362         find_complex_function_ulps.
19363         (check_float_internal): Determine max ulps using find_test_ulps.
19364         (check_float): Do not take max_ulp parameter.  Update call to
19365         check_float_internal.
19366         (check_complex): Likewise.
19367         (check_int): Do not take max_ulp parameter.
19368         (check_long): Likewise.
19369         (check_bool): Likewise.
19370         (check_longlong): Likewise.
19371         (struct test_f_f_data): Remove max_ulp field.
19372         (struct test_ff_f_data): Likewise.
19373         (struct test_ff_f_data_nexttoward): Likewise.
19374         (struct test_fi_f_data): Likewise.
19375         (struct test_fl_f_data): Likewise.
19376         (struct test_if_f_data): Likewise.
19377         (struct test_fff_f_data): Likewise.
19378         (struct test_c_f_data): Likewise.
19379         (struct test_f_f1_data): Remove max_ulp and extra_ulp fields.
19380         (struct test_fF_f1_data): Likewise.
19381         (struct test_ffI_f1_data): Likewise.
19382         (struct test_c_c_data): Remove max_ulp field.
19383         (struct test_cc_c_data): Likewise.
19384         (struct test_f_i_data): Likewise.
19385         (struct test_ff_i_data): Likewise.
19386         (struct test_f_l_data): Likewise.
19387         (struct test_f_L_data): Likewise.
19388         (struct test_sincos_data): Likewise.
19389         (RUN_TEST_f_f): Do not handle ulps.
19390         (RUN_TEST_LOOP_f_f): Likewise.
19391         (RUN_TEST_2_f): Likewise.
19392         (RUN_TEST_LOOP_2_f): Likewise.
19393         (RUN_TEST_fff_f): Likewise.
19394         (RUN_TEST_LOOP_fff_f): Likewise.
19395         (RUN_TEST_c_f): Likewise.
19396         (RUN_TEST_LOOP_c_f): Likewise.
19397         (RUN_TEST_f_f1): Likewise.
19398         (RUN_TEST_LOOP_f_f1): Likewise.
19399         (RUN_TEST_fF_f1): Likewise.
19400         (RUN_TEST_LOOP_fF_f1): Likewise.
19401         (RUN_TEST_fI_f1): Likewise.
19402         (RUN_TEST_LOOP_fI_f1): Likewise.
19403         (RUN_TEST_ffI_f1): Likewise.
19404         (RUN_TEST_LOOP_ffI_f1): Likewise.
19405         (RUN_TEST_c_c): Likewise.
19406         (RUN_TEST_LOOP_c_c): Likewise.
19407         (RUN_TEST_cc_c): Likewise.
19408         (RUN_TEST_LOOP_cc_c): Likewise.
19409         (RUN_TEST_f_i): Likewise.
19410         (RUN_TEST_LOOP_f_i): Likewise.
19411         (RUN_TEST_f_i_tg): Likewise.
19412         (RUN_TEST_LOOP_f_i_tg): Likewise.
19413         (RUN_TEST_ff_i_tg): Likewise.
19414         (RUN_TEST_LOOP_ff_i_tg): Likewise.
19415         (RUN_TEST_f_b): Likewise.
19416         (RUN_TEST_LOOP_f_b): Likewise.
19417         (RUN_TEST_f_b_tg): Likewise.
19418         (RUN_TEST_LOOP_f_b_tg): Likewise.
19419         (RUN_TEST_f_l): Likewise.
19420         (RUN_TEST_LOOP_f_l): Likewise.
19421         (RUN_TEST_f_L): Likewise.
19422         (RUN_TEST_LOOP_f_L): Likewise.
19423         (RUN_TEST_sincos): Likewise.
19424         (RUN_TEST_LOOP_sincos): Likewise.
19426 2013-05-17  Joseph Myers  <joseph@codesourcery.com>
19428         [BZ #15480]
19429         [BZ #15485]
19430         * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder): For
19431         main case of finite arguments, set rounding mode to FE_TONEAREST
19432         and discard exceptions.
19433         * math/libm-test.inc (remainder_test_data): Disallow "inexact"
19434         exceptions.
19435         (remainder_tonearest_test_data): New variable.
19436         (remainder_test_tonearest): New function.
19437         (remainder_towardzero_test_data): New variable.
19438         (remainder_test_towardzero): New function.
19439         (remainder_downward_test_data): New variable.
19440         (remainder_test_downward): New function.
19441         (remainder_upward_test_data): New variable.
19442         (remainder_test_upward): New function.
19443         (main): Call the new test functions.
19445         * math/libm-test.inc (struct test_f_f1_data): Remove field
19446         extra_init.
19447         (struct test_fF_f1_data): Likewise.
19448         (struct test_ffI_f1_data): Likewise.
19449         (RUN_TEST_f_f1): Remove argument EXTRA_INIT.  Initialize EXTRA_VAR
19450         based on value of EXTRA_EXPECTED.
19451         (RUN_TEST_LOOP_f_f1): Update call to RUN_TEST_f_f1.
19452         (RUN_TEST_fF_f1): Remove argument EXTRA_INIT.  Initialize
19453         EXTRA_VAR based on value of EXTRA_EXPECTED.
19454         (RUN_TEST_LOOP_fF_f1): Update call to RUN_TEST_fF_f1.
19455         (RUN_TEST_fI_f1): Remove argument EXTRA_INIT.  Initialize
19456         EXTRA_VAR based on value of EXTRA_EXPECTED.
19457         (RUN_TEST_LOOP_fI_f1): Update call to RUN_TEST_fI_f1.
19458         (RUN_TEST_ffI_f1): Remove argument EXTRA_INIT.  Initialize
19459         EXTRA_VAR based on value of EXTRA_EXPECTED.
19460         (RUN_TEST_LOOP_ffI_f1): Update call to RUN_TEST_ffI_f1.
19461         * math/gen-libm-test.pl (parse_args): Don't output initializers
19462         for extra output values.
19464         * math/libm-test.inc (check_int): Expect result to be exactly
19465         equal to expected value and do not handle ulps.
19466         (check_long): Likewise.
19467         (check_longlong): Likewise.
19469         * math/libm-test.inc (ceil_test_data): Test for "inexact"
19470         exceptions.
19471         (cimag_test_data): Likewise.
19472         (conj_test_data): Likewise.
19473         (copysign_test_data): Likewise.
19474         (cproj_test_data): Likewise.
19475         (creal_test_data): Likewise.
19476         (fabs_test_data): Likewise.
19477         (fdim_test_data): Likewise.
19478         (finite_test_data): Likewise.
19479         (floor_test_data): Likewise.
19480         (fmax_test_data): Likewise.
19481         (fmin_test_data): Likewise.
19482         (fmod_test_data): Likewise.
19483         (fpclassify_test_data): Likewise.
19484         (frexp_test_data): Likewise.
19485         (ilogb_test_data): Likewise.
19486         (isfinite_test_data): Likewise.
19487         (isgreater_test_data): Likewise.
19488         (isgreaterequal_test_data): Likewise.
19489         (isinf_test_data): Likewise.
19490         (isless_test_data): Likewise.
19491         (islessequal_test_data): Likewise.
19492         (islessgreater_test_data): Likewise.
19493         (isnan_test_data): Likewise.
19494         (isnormal_test_data): Likewise.
19495         (issignaling_test_data): Likewise.
19496         (isunordered_test_data): Likewise.
19497         (ldexp_test_data): Likewise.
19498         (lrint_test_data): Likewise.
19499         (lrint_test_data) [TEST_FLOAT]: Disable one test.
19500         (lrint_test_data) [!TEST_LDOUBLE]: Likewise.
19501         (lrint_tonearest_test_data): Test for "inexact" exceptions.
19502         (lrint_tonearest_test_data) [TEST_FLOAT]: Disable one test.
19503         (lrint_tonearest_test_data) [!TEST_LDOUBLE]: Likewise.
19504         (lrint_tonearest_test_data) [TEST_LDOUBLE]: Use "L" suffix on that
19505         test input.
19506         (lrint_towardzero_test_data): Test for "inexact" exceptions.
19507         (lrint_towardzero_test_data) [TEST_FLOAT]: Disable one test.
19508         (lrint_towardzero_test_data) [!TEST_LDOUBLE]: Likewise.
19509         (lrint_towardzero_test_data) [TEST_LDOUBLE]: Use "L" suffix on
19510         that test input.
19511         (lrint_downward_test_data): Test for "inexact" exceptions.
19512         (lrint_downward_test_data) [TEST_FLOAT]: Disable one test.
19513         (lrint_downward_test_data) [!TEST_LDOUBLE]: Likewise.
19514         (lrint_downward_test_data) [TEST_LDOUBLE]: Use "L" suffix on that
19515         test input.
19516         (lrint_upward_test_data): Test for "inexact" exceptions.
19517         (lrint_upward_test_data) [TEST_LDOUBLE]: Use "L" suffix on one
19518         test input.
19519         (llrint_test_data): Test for "inexact" exceptions.
19520         (llrint_test_data) [TEST_FLOAT]: Disable one test.
19521         (llrint_tonearest_test_data): Test for "inexact" exceptions.
19522         (llrint_tonearest_test_data) [TEST_FLOAT]: Disable one test.
19523         (llrint_towardzero_test_data): Test for "inexact" exceptions.
19524         (llrint_towardzero_test_data) [TEST_FLOAT]: Disable one test.
19525         (llrint_downward_test_data): Test for "inexact" exceptions.
19526         (llrint_downward_test_data) [TEST_FLOAT]: Disable one test.
19527         (llrint_upward_test_data): Test for "inexact" exceptions.
19528         (logb_test_data): Likewise.
19529         (logb_downward_test_data): Likewise.
19530         (nextafter_test_data): Likewise.
19531         (nexttoward_test_data): Likewise.
19532         (remainder_test_data): Likewise.
19533         (remquo_test_data): Likewise.
19534         (scalbn_test_data): Likewise.
19535         (scalbln_test_data): Likewise.
19536         (signbit_test_data): Likewise.
19537         (sqrt_test_data): Likewise.
19538         (significand_test_data): Likewise.
19540 2013-05-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
19542         [BZ #15424]
19543         * benchtests/bench-modf.c (struct args): Mark arg0 as
19544         volatile.
19545         * scripts/bench.pl: Mark members of struct args as volatile.
19547 2013-05-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19549         [BZ # 15497]
19550         * sysdeps/powerpc/fpu/e_hypot.c (GET_TWO_FLOAT_WORD): Fix test for
19551         negative infinity on POWER6 or lower.
19552         * sysdeps/powerpc/fpu/e_hypotf.c (GET_TWO_FLOAT_WORD): Likewise.
19554 2013-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
19556         [BZ #15442]
19557         * soft-fp/op-common.h (_FP_FRAC_SNANP): New macro.
19558         (_FP_FRAC_SNANP_SEMIRAW): Likewise.
19559         (_FP_UNPACK_CANONICAL): Use _FP_FRAC_SNANP.
19560         (_FP_CHECK_SIGNAN_SEMIRAW): Use _FP_FRAC_SNANP_SEMIRAW.
19561         (_FP_SETQNAN): New macro.
19562         (_FP_SETQNAN_SEMIRAW): Likewise.
19563         (_FP_PACK_SEMIRAW): Use _FP_SETQNAN.
19564         (_FP_PACK_CANONICAL): Use _FP_SETQNAN.
19565         (_FP_ISSIGNAN): Use _FP_FRAC_SNANP.
19566         (FP_EXTEND): Use _FP_FRAC_SNANP.
19567         (FP_TRUNC): Use _FP_SETQNAN_SEMIRAW.
19568         * soft-fp/testit.c (gen_special_double): Take _FP_QNANNEGATEDP
19569         into account.
19570         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h (_FP_QNANNEGATEDP):
19571         New macro.
19572         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h (_FP_QNANNEGATEDP):
19573         Likewise.
19575 2013-05-16  Joseph Myers  <joseph@codesourcery.com>
19577         * math/libm-test.inc (atanh_test_data): Use ERRNO_ERANGE together
19578         with DIVIDE_BY_ZERO_EXCEPTION.
19579         (gamma_test_data): Likewise.
19580         (lgamma_test_data): Likewise.
19581         (log_test_data): Likewise.
19582         (log10_test_data): Likewise.
19583         (log2_test_data): Likewise.
19584         (tgamma_test_data): Likewise.
19586         * math/libm-test.inc (acos_test): Don't test for ENOSYS error.
19587         (acos_test_tonearest): Likewise.
19588         (acos_test_towardzero): Likewise.
19589         (acos_test_downward): Likewise.
19590         (acos_test_upward): Likewise.
19591         (acosh_test): Likewise.
19592         (asin_test): Likewise.
19593         (asin_test_tonearest): Likewise.
19594         (asin_test_towardzero): Likewise.
19595         (asin_test_downward): Likewise.
19596         (asin_test_upward): Likewise.
19597         (asinh_test): Likewise.
19598         (atan_test): Likewise.
19599         (atanh_test): Likewise.
19600         (atan2_test): Likewise.
19601         (cabs_test): Likewise.
19602         (cacos_test): Likewise.
19603         (cacosh_test): Likewise.
19604         (casin_test): Likewise.
19605         (casinh_test): Likewise.
19606         (catan_test): Likewise.
19607         (catanh_test): Likewise.
19608         (cbrt_test): Likewise.
19609         (ccos_test): Likewise.
19610         (ccosh_test): Likewise.
19611         (cexp_test): Likewise.
19612         (clog_test): Likewise.
19613         (clog10_test): Likewise.
19614         (cos_test): Likewise.
19615         (cos_test_tonearest): Likewise.
19616         (cos_test_towardzero): Likewise.
19617         (cos_test_downward): Likewise.
19618         (cos_test_upward): Likewise.
19619         (cosh_test): Likewise.
19620         (cosh_test_tonearest): Likewise.
19621         (cosh_test_towardzero): Likewise.
19622         (cosh_test_downward): Likewise.
19623         (cosh_test_upward): Likewise.
19624         (cpow_test): Likewise.
19625         (csin_test): Likewise.
19626         (csinh_test): Likewise.
19627         (csqrt_test): Likewise.
19628         (ctan_test): Likewise.
19629         (ctan_test_tonearest): Likewise.
19630         (ctan_test_towardzero): Likewise.
19631         (ctan_test_downward): Likewise.
19632         (ctan_test_upward): Likewise.
19633         (ctanh_test): Likewise.
19634         (ctanh_test_tonearest): Likewise.
19635         (ctanh_test_towardzero): Likewise.
19636         (ctanh_test_downward): Likewise.
19637         (ctanh_test_upward): Likewise.
19638         (erf_test): Likewise.
19639         (erfc_test): Likewise.
19640         (exp_test): Likewise.
19641         (exp_test_tonearest): Likewise.
19642         (exp_test_towardzero): Likewise.
19643         (exp_test_downward): Likewise.
19644         (exp_test_upward): Likewise.
19645         (exp10_test): Likewise.
19646         (exp2_test): Likewise.
19647         (expm1_test): Likewise.
19648         (fmod_test): Likewise.
19649         (gamma_test): Likewise.
19650         (hypot_test): Likewise.
19651         (j0_test): Likewise.
19652         (j1_test): Likewise.
19653         (jn_test): Likewise.
19654         (lgamma_test): Likewise.
19655         (log_test): Likewise.
19656         (log10_test): Likewise.
19657         (log1p_test): Likewise.
19658         (log2_test): Likewise.
19659         (logb_test_downward): Likewise.
19660         (pow_test): Likewise.
19661         (pow_test_tonearest): Likewise.
19662         (pow_test_towardzero): Likewise.
19663         (pow_test_downward): Likewise.
19664         (pow_test_upward): Likewise.
19665         (remainder_test): Likewise.
19666         (remquo_test): Likewise.
19667         (sin_test): Likewise.
19668         (sin_test_tonearest): Likewise.
19669         (sin_test_towardzero): Likewise.
19670         (sin_test_downward): Likewise.
19671         (sin_test_upward): Likewise.
19672         (sincos_test): Likewise.
19673         (sinh_test): Likewise.
19674         (sinh_test_tonearest): Likewise.
19675         (sinh_test_towardzero): Likewise.
19676         (sinh_test_downward): Likewise.
19677         (sinh_test_upward): Likewise.
19678         (sqrt_test): Likewise.
19679         (tan_test): Likewise.
19680         (tan_test_tonearest): Likewise.
19681         (tan_test_towardzero): Likewise.
19682         (tan_test_downward): Likewise.
19683         (tan_test_upward): Likewise.
19684         (tanh_test): Likewise.
19685         (tgamma_test): Likewise.
19686         (y0_test): Likewise.
19687         (y1_test): Likewise.
19688         (yn_test): Likewise.
19690         * math/gen-libm-test.pl (adjust_arg): Remove function.
19691         (special_function): Remove argument $in_func.  Only handle
19692         generating output for tables of tests, not inside functions.
19693         (parse_args): Likewise.
19694         (generate_testfile): Remove variable $in_func.  Update call to
19695         parse_args.
19696         * math/libm-test.inc (PLUS_ZERO_INIT): Rename macro to plus_zero.
19697         (MINUS_ZERO_INIT): Rename macro to minus_zero.
19698         (PLUS_INFTY_INIT): Rename macro to plus_infty.
19699         (MINUS_INFTY_INIT): Rename macro to minus_infty.
19700         (QNAN_VALUE_INIT): Rename macro to qnan_value.
19701         (MAX_VALUE_INIT): Rename macro to max_value.
19702         (MIN_VALUE_INIT): Rename macro to min_value.
19703         (MIN_SUBNORM_VALUE_INIT): Rename macro to min_subnorm_value.
19704         (plus_zero): Remove variable.
19705         (minus_zero): Likewise.
19706         (plus_infty): Likewise.
19707         (minus_infty): Likewise.
19708         (qnan_value): Likewise.
19709         (max_value): Likewise.
19710         (min_value): Likewise.
19711         (min_subnorm_value): Likewise.
19713 2013-05-16  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
19715         * crypt/sha512-block.c: Add missing #include <stdint.h> due to
19716         uint64_t or uint32_t usage.
19717         * crypt/sha256-block.c: Likewise.
19718         * crypt/sha256-crypt.c: Likewise.
19719         * crypt/sha256.c: Likewise.
19720         * crypt/sha512-block.c: Likewise.
19721         * crypt/sha512-crypt.c: Likewise.
19722         * crypt/sha512.c: Likewise.
19723         * debug/backtrace-tst.c: Likewise.
19724         * debug/pcprofiledump.c: Likewise.
19725         * elf/cache.c: Likewise.
19726         * elf/dl-cache.c: Likewise.
19727         * elf/dl-misc.c: Likewise.
19728         * elf/dl-profile.c: Likewise.
19729         * elf/dl-support.c: Likewise.
19730         * elf/ldconfig.c: Likewise.
19731         * elf/sprof.c: Likewise.
19732         * iconv/dummy-repertoire.c: Likewise.
19733         * iconv/iconv_charmap.c: Likewise.
19734         * iconv/skeleton.c: Likewise.
19735         * iconvdata/8bit-generic.c: Likewise.
19736         * iconvdata/cp737.h: Likewise.
19737         * iconvdata/cp775.h: Likewise.
19738         * iconvdata/ibm1008.h: Likewise.
19739         * iconvdata/ibm1025.h: Likewise.
19740         * iconvdata/ibm1046.h: Likewise.
19741         * iconvdata/ibm1097.h: Likewise.
19742         * iconvdata/ibm1112.h: Likewise.
19743         * iconvdata/ibm1122.h: Likewise.
19744         * iconvdata/ibm1123.h: Likewise.
19745         * iconvdata/ibm1124.h: Likewise.
19746         * iconvdata/ibm1129.h: Likewise.
19747         * iconvdata/ibm1130.h: Likewise.
19748         * iconvdata/ibm1132.h: Likewise.
19749         * iconvdata/ibm1133.h: Likewise.
19750         * iconvdata/ibm1137.h: Likewise.
19751         * iconvdata/ibm1140.h: Likewise.
19752         * iconvdata/ibm1141.h: Likewise.
19753         * iconvdata/ibm1142.h: Likewise.
19754         * iconvdata/ibm1143.h: Likewise.
19755         * iconvdata/ibm1144.h: Likewise.
19756         * iconvdata/ibm1145.h: Likewise.
19757         * iconvdata/ibm1146.h: Likewise.
19758         * iconvdata/ibm1147.h: Likewise.
19759         * iconvdata/ibm1148.h: Likewise.
19760         * iconvdata/ibm1149.h: Likewise.
19761         * iconvdata/ibm1153.h: Likewise.
19762         * iconvdata/ibm1154.h: Likewise.
19763         * iconvdata/ibm1155.h: Likewise.
19764         * iconvdata/ibm1156.h: Likewise.
19765         * iconvdata/ibm1157.h: Likewise.
19766         * iconvdata/ibm1158.h: Likewise.
19767         * iconvdata/ibm1160.h: Likewise.
19768         * iconvdata/ibm1161.h: Likewise.
19769         * iconvdata/ibm1162.h: Likewise.
19770         * iconvdata/ibm1163.h: Likewise.
19771         * iconvdata/ibm1164.h: Likewise.
19772         * iconvdata/ibm1166.h: Likewise.
19773         * iconvdata/ibm1167.h: Likewise.
19774         * iconvdata/ibm12712.h: Likewise.
19775         * iconvdata/ibm1390.h: Likewise.
19776         * iconvdata/ibm1399.h: Likewise.
19777         * iconvdata/ibm16804.h: Likewise.
19778         * iconvdata/ibm4517.h: Likewise.
19779         * iconvdata/ibm4899.h: Likewise.
19780         * iconvdata/ibm4909.h: Likewise.
19781         * iconvdata/ibm4971.h: Likewise.
19782         * iconvdata/ibm5347.h: Likewise.
19783         * iconvdata/ibm803.h: Likewise.
19784         * iconvdata/ibm856.h: Likewise.
19785         * iconvdata/ibm901.h: Likewise.
19786         * iconvdata/ibm902.h: Likewise.
19787         * iconvdata/ibm9030.h: Likewise.
19788         * iconvdata/ibm9066.h: Likewise.
19789         * iconvdata/ibm921.h: Likewise.
19790         * iconvdata/ibm922.h: Likewise.
19791         * iconvdata/ibm9448.h: Likewise.
19792         * iconvdata/isiri-3342.h: Likewise.
19793         * iconvdata/jis0201.h: Likewise.
19794         * include/link.h: Likewise.
19795         * include/netdb.h: Likewise.
19796         * inet/check_native.c: Likewise.
19797         * inet/check_pf.c: Likewise.
19798         * inet/getipv4sourcefilter.c: Likewise.
19799         * inet/getnameinfo.c: Likewise.
19800         * inet/getsourcefilter.c: Likewise.
19801         * inet/htonl.c: Likewise.
19802         * inet/setipv4sourcefilter.c: Likewise.
19803         * inet/setsourcefilter.c: Likewise.
19804         * inet/test-inet6_opt.c: Likewise.
19805         * inet/tst-network.c: Likewise.
19806         * locale/C-collate.c: Likewise.
19807         * locale/C-ctype.c: Likewise.
19808         * locale/C-time.c: Likewise.
19809         * locale/C-translit.h: Likewise.
19810         * locale/loadarchive.c: Likewise.
19811         * locale/programs/3level.h: Likewise.
19812         * locale/programs/charmap.c: Likewise.
19813         * locale/programs/charmap.h: Likewise.
19814         * locale/programs/ld-address.c: Likewise.
19815         * locale/programs/ld-collate.c: Likewise.
19816         * locale/programs/ld-ctype.c: Likewise.
19817         * locale/programs/ld-identification.c: Likewise.
19818         * locale/programs/ld-measurement.c: Likewise.
19819         * locale/programs/ld-messages.c: Likewise.
19820         * locale/programs/ld-monetary.c: Likewise.
19821         * locale/programs/ld-name.c: Likewise.
19822         * locale/programs/ld-numeric.c: Likewise.
19823         * locale/programs/ld-paper.c: Likewise.
19824         * locale/programs/ld-telephone.c: Likewise.
19825         * locale/programs/ld-time.c: Likewise.
19826         * locale/programs/linereader.c: Likewise.
19827         * locale/programs/locale.c: Likewise.
19828         * locale/programs/locarchive.c: Likewise.
19829         * locale/programs/locfile.h: Likewise.
19830         * locale/programs/repertoire.c: Likewise.
19831         * locale/programs/simple-hash.c: Likewise.
19832         * locale/programs/simple-hash.h: Likewise.
19833         * malloc/memusage.c: Likewise.
19834         * malloc/memusagestat.c: Likewise.
19835         * nis/nis_defaults.c: Likewise.
19836         * nis/nis_hash.c: Likewise.
19837         * nis/nis_print.c: Likewise.
19838         * nis/nis_xdr.c: Likewise.
19839         * nscd/connections.c: Likewise.
19840         * nscd/hstcache.c: Likewise.
19841         * nscd/nscd_gethst_r.c: Likewise.
19842         * nscd/nscd_getserv_r.c: Likewise.
19843         * nscd/nscd_helper.c: Likewise.
19844         * nscd/servicescache.c: Likewise.
19845         * nss/makedb.c: Likewise.
19846         * nss/nss_db/db-XXX.c: Likewise.
19847         * nss/nss_db/db-initgroups.c: Likewise.
19848         * nss/nss_db/db-netgrp.c: Likewise.
19849         * nss/nss_files/files-network.c: Likewise.
19850         * nss/nss_files/files-parse.c: Likewise.
19851         * posix/bug-regex5.c: Likewise.
19852         * posix/fnmatch_loop.c: Likewise.
19853         * posix/regcomp.c: Likewise.
19854         * posix/regexec.c: Likewise.
19855         * posix/tst-rfc3484-2.c: Likewise.
19856         * posix/tst-rfc3484-3.c: Likewise.
19857         * posix/tst-rfc3484.c: Likewise.
19858         * resolv/nss_dns/dns-canon.c: Likewise.
19859         * resolv/nss_dns/dns-network.c: Likewise.
19860         * resolv/res_init.c: Likewise.
19861         * resolv/res_mkquery.c: Likewise.
19862         * resolv/tst-aton.c: Likewise.
19863         * stdlib/cxa_atexit.c: Likewise.
19864         * stdlib/cxa_finalize.c: Likewise.
19865         * stdlib/gen-fpioconst.c: Likewise.
19866         * stdlib/strtol_l.c: Likewise.
19867         * string/tst-endian.c: Likewise.
19868         * sunrpc/auth_des.c: Likewise.
19869         * sunrpc/clnt_udp.c: Likewise.
19870         * sunrpc/rtime.c: Likewise.
19871         * sunrpc/svcauth_des.c: Likewise.
19872         * sunrpc/xdr.c: Likewise.
19873         * sunrpc/xdr_intXX_t.c: Likewise.
19874         * sunrpc/xdr_rec.c: Likewise.
19875         * sysdeps/generic/ldconfig.h: Likewise.
19876         * sysdeps/generic/ldsodefs.h: Likewise.
19877         * sysdeps/generic/memusage.h: Likewise.
19878         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: Likewise.
19879         * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c: Likewise.
19880         * sysdeps/ieee754/dbl-64/wordsize-64/math_private.h: Likewise.
19881         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Likewise.
19882         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
19883         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
19884         * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Likewise.
19885         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Likewise.
19886         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
19887         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
19888         * sysdeps/posix/getaddrinfo.c: Likewise.
19889         * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
19890         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
19891         * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
19892         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
19893         * sysdeps/powerpc/test-gettimebase.c: Likewise.
19894         * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
19895         * sysdeps/unix/sysv/linux/getipv4sourcefilter.c: Likewise.
19896         * sysdeps/unix/sysv/linux/getsourcefilter.c: Likewise.
19897         * sysdeps/unix/sysv/linux/netlinkaccess.h: Likewise.
19898         * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c: Likewise.
19899         * sysdeps/unix/sysv/linux/preadv.c: Likewise.
19900         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
19901         * sysdeps/unix/sysv/linux/setipv4sourcefilter.c: Likewise.
19902         * sysdeps/unix/sysv/linux/setsourcefilter.c: Likewise.
19903         * sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c: Likewise.
19904         * sysdeps/x86_64/dl-tls.h: Likewise.
19905         * sysdeps/x86_64/dl-tlsdesc.h: Likewise.
19906         * time/alt_digit.c: Likewise.
19907         * time/era.c: Likewise.
19908         * wcsmbs/tst-c16c32-1.c: Likewise.
19910 2013-05-16  Joseph Myers  <joseph@codesourcery.com>
19912         * math/libm-test.inc (struct test_sincos_data): New type.
19913         (RUN_TEST_LOOP_sincos): New macro.
19914         (sincos_test_data): New variable.
19915         (sincos_test): Run tests with RUN_TEST_LOOP_sincos.
19917 2013-05-16  Richard Henderson  <rth@redhat.com>
19919         * math/atest-exp2.c (LIMB64): New macro.
19920         (CONSTSZ): New macro.
19921         (mp_exp1, mp_exp_m1, mp_log2): New variables.
19922         (hexdig): Move ...
19923         (print_mpn_fp): ... to function scope.
19924         (read_mpn_hex): Remove.
19925         (get_log2): Remove.
19926         (exp2_mpn): Use mp_log2.
19927         (main): Use mp_exp1.
19929 2013-05-16  Joseph Myers  <joseph@codesourcery.com>
19931         * math/libm-test.inc: Remove comment about not testing "inexact"
19932         exceptions.
19933         (INEXACT_EXCEPTION): New macro.
19934         (NO_INEXACT_EXCEPTION): Likewise.
19935         (INVALID_EXCEPTION_OK): Update value.
19936         (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
19937         (OVERFLOW_EXCEPTION_OK): Likewise.
19938         (UNDERFLOW_EXCEPTION_OK): Likewise.
19939         (IGNORE_ZERO_INF_SIGN): Likewise.
19940         (ERRNO_UNCHANGED): Likewise.
19941         (ERRNO_EDOM): Likewise.
19942         (ERRNO_ERANGE): Likewise.
19943         (test_exceptions): Handle testing "inexact" exceptions.
19944         (nearbyint_test_data): Use NO_INEXACT_EXCEPTION on all tests.
19945         (rint_test_data): Use NO_INEXACT_EXCEPTION and INEXACT_EXCEPTION.
19946         (rint_test_data) [LDBL_MANT_DIG <= 100]: Disable some tests.
19947         (rint_tonearest_test_data): Use NO_INEXACT_EXCEPTION and
19948         INEXACT_EXCEPTION.
19949         (rint_towardzero_test_data): Likewise.
19950         (rint_downward_test_data): Likewise.
19951         (rint_upward_test_data): Likewise.
19953         * math/libm-test.inc (exp_test_data): Use ERRNO_ERANGE together
19954         with OVERFLOW_EXCEPTION.
19955         (exp10_test_data): Likewise.
19956         (exp2_test_data): Likewise.
19957         (expm1_test_data): Likewise.
19958         (lgamma_test_data): Likewise.
19959         (pow_test_data): Likewise.
19960         (tgamma_test_data): Likewise.
19961         (yn_test_data): Remove duplicate test of overflow.
19963         * math/libm-test.inc (struct test_cc_c_data): New type.
19964         (RUN_TEST_LOOP_cc_c): New macro.
19965         (cpow_test_data): New variable.
19966         (cpow_test): Run tests with RUN_TEST_LOOP_cc_c.
19968         * math/libm-test.inc (struct test_f_L_data): New type.
19969         (RUN_TEST_LOOP_f_L): New macro.
19970         (llrint_test_data): New variable.
19971         (llrint_test): Run tests with RUN_TEST_LOOP_f_L.
19972         (llrint_tonearest_test_data): New variable.
19973         (llrint_test_tonearest): Run tests with RUN_TEST_LOOP_f_L.
19974         (llrint_towardzero_test_data): New variable.
19975         (llrint_test_towardzero): Run tests with RUN_TEST_LOOP_f_L.
19976         (llrint_downward_test_data): New variable.
19977         (llrint_test_downward): Run tests with RUN_TEST_LOOP_f_L.
19978         (llrint_upward_test_data): New variable.
19979         (llrint_test_upward): Run tests with RUN_TEST_LOOP_f_L.
19980         (llround_test_data): New variable.
19981         (llround_test): Run tests with RUN_TEST_LOOP_f_L.
19983 2013-05-13  Peter Collingbourne  <pcc@google.com>
19985         * math/atest-exp2.c (get_log2): Remove const attribute.
19987 2013-05-15  Joseph Myers  <joseph@codesourcery.com>
19989         * math/libm-test.inc (struct test_f_l_data): New type.
19990         (RUN_TEST_LOOP_f_l): New macro.
19991         (lrint_test_data): New variable.
19992         (lrint_test): Run tests with RUN_TEST_LOOP_f_l.
19993         (lrint_tonearest_test_data): New variable.
19994         (lrint_test_tonearest): Run tests with RUN_TEST_LOOP_f_l.
19995         (lrint_towardzero_test_data): New variable.
19996         (lrint_test_towardzero): Run tests with RUN_TEST_LOOP_f_l.
19997         (lrint_downward_test_data): New variable.
19998         (lrint_test_downward): Run tests with RUN_TEST_LOOP_f_l.
19999         (lrint_upward_test_data): New variable.
20000         (lrint_test_upward): Run tests with RUN_TEST_LOOP_f_l.
20001         (lround_test_data): New variable.
20002         (lround_test): Run tests with RUN_TEST_LOOP_f_l.
20004 2013-05-15  Peter Collingbourne  <pcc@google.com>
20006         * sysdeps/x86_64/fpu/math_private.h (MOVQ): New macro.
20007         (EXTRACT_WORDS64) Use where appropriate.
20008         (INSERT_WORDS64) Likewise.
20010         * sysdeps/x86_64/fpu/multiarch/s_fma.c (__fma_fma4): Replace xm
20011         constraints with x constraints.
20012         * sysdeps/x86_64/fpu/multiarch/s_fmaf.c (__fmaf_fma4): Likewise.
20014         * malloc/obstack.c (_obstack_compat): Add initializer.
20016 2013-05-15  Edjunior Machado  <emachado@linux.vnet.ibm.com>
20018         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (siginfo_t): Remove
20019         si_trapno and add si_addr_lsb to _sifields.sigfault.
20020         (si_trapno): Remove macro.
20021         (si_addr_lsb): Define new macro.
20022         (BUS_MCEERR_AR, BUS_MCEERR_AO): Define new values.
20024 2013-05-15  Joseph Myers  <joseph@codesourcery.com>
20026         * math/libm-test.inc (llrint_test): Consistently use TEST_f_L
20027         instead of TEST_f_l.
20028         (llrint_test_tonearest): Likewise.
20029         (llrint_test_towardzero): Likewise.
20030         (llrint_test_downward): Likewise.
20031         (llrint_test_upward): Likewise.
20032         (llround_test): Likewise.
20034         * math/libm-test.inc (struct test_f_i_data): Add comment.
20035         (RUN_TEST_LOOP_f_b): New macro.
20036         (RUN_TEST_LOOP_f_b_tg): Likewise.
20037         (finite_test_data): New variable.
20038         (finite_test): Run tests with RUN_TEST_LOOP_f_b.
20039         (isfinite_test_data): New variable.
20040         (isfinite_test): Run tests with RUN_TEST_LOOP_f_b_tg.
20041         (isinf_test_data): New variable.
20042         (isinf_test): Run tests with RUN_TEST_LOOP_f_b_tg.
20043         (isnan_test_data): New variable.
20044         (isnan_test): Run tests with RUN_TEST_LOOP_f_b_tg.
20045         (isnormal_test_data): New variable.
20046         (isnormal_test): Run tests with RUN_TEST_LOOP_f_b_tg.
20047         (issignaling_test_data): New variable.
20048         (issignaling_test): Run tests with RUN_TEST_LOOP_f_b_tg.
20049         (signbit_test_data): New variable.
20050         (signbit_test): Run tests with RUN_TEST_LOOP_f_b_tg.
20052         * math/libm-test.inc (acos_test_data): Use ERRNO_EDOM together
20053         with INVALID_EXCEPTION.
20054         (acosh_test_data): Likewise.
20055         (asin_test_data): Likewise.
20056         (atanh_test_data): Likewise.
20057         (fmod_test_data): Likewise.
20058         (log_test_data): Likewise.
20059         (log10_test_data): Likewise.
20060         (log2_test_data): Likewise.
20061         (pow_test_data): Likewise.
20062         (sqrt_test_data): Likewise.
20063         (y0_test_data): Likewise.
20064         (y1_test_data): Likewise.
20065         (yn_test_data): Likewise.
20067         * math/libm-test.inc (test_single_errno) [TEST_INLINE]: Disable
20068         function contents.
20070         * math/libm-test.inc (struct test_ff_i_data): New type.
20071         (RUN_TEST_LOOP_ff_i_tg): New macro.
20072         (isgreater_test_data): New variable.
20073         (isgreater_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
20074         (isgreaterequal_test_data): New variable.
20075         (isgreaterequal_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
20076         (isless_test_data): New variable.
20077         (isless_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
20078         (islessequal_test_data): New variable.
20079         (islessequal_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
20080         (islessgreater_test_data): New variable.
20081         (islessgreater_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
20082         (isunordered_test_data): New variable.
20083         (isunordered_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
20085 2013-05-14  David S. Miller  <davem@davemloft.net>
20087         * sysdeps/sparc/fpu/libm-test-ulps: Update.
20089 2013-05-14  Joseph Myers  <joseph@codesourcery.com>
20091         * math/libm-test.inc (RUN_TEST_LOOP_2_f): Fix whitespace.
20093         * math/libm-test.inc (struct test_fF_f1_data): Change type of
20094         extra_test to int.
20095         (struct test_f_i_data): Change type of max_ulp to int.
20097         * math/libm-test.inc (test_ffI_f1_data): New type.
20098         (RUN_TEST_LOOP_ffI_f1): New macro.
20099         (remquo_test_data): New variable.
20100         (remquo_test): Run tests with RUN_TEST_LOOP_ffI_f1.
20102         * setjmp/tst-setjmp-fp.c: New file.
20103         * setjmp/Makefile (tests): Add tst-setjmp-fp.
20104         (link-libm): New variable.
20105         ($(objpfx)tst-setjmp-fp): Depend on $(link-libm).
20107         * math/libm-test.inc (struct test_f_i_data): New type.
20108         (RUN_TEST_LOOP_f_i): New macro.
20109         (RUN_TEST_LOOP_f_i_tg): Likewise.
20110         (fpclassify_test_data): New variable.
20111         (fpclassify_test): Run tests with RUN_TEST_LOOP_f_i_tg.
20112         (ilogb_test_data): New variable.
20113         (ilogb_test): Run tests with RUN_TEST_LOOP_f_i.
20115         * math/libm-test.inc (scalbln_test): Correct function name in END
20116         call.
20118         * math/libm-test.inc (struct test_f_f1_data): Add comment.
20119         (RUN_TEST_LOOP_fI_f1): New macro.
20120         (frexp_test_data): New variable.
20121         (frexp_test): Run tests with RUN_TEST_LOOP_fI_f1.
20123         * math/libm-test.inc (struct test_fF_f1_data): New type.
20124         (RUN_TEST_LOOP_fF_f1): New macro.
20125         (modf_test_data): New variable.
20126         (modf_test): Run tests with RUN_TEST_LOOP_fF_f1.
20128         * math/libm-test.inc (struct test_f_f1_data): New type.
20129         (RUN_TEST_LOOP_f_f1): New macro.
20130         (gamma_test_data): New variable.
20131         (gamma_test): Run tests with RUN_TEST_LOOP_f_f1.
20132         (lgamma_test_data): New variable.
20133         (lgamma_test): Run tests with RUN_TEST_LOOP_f_f1.
20135 2013-05-13  Carlos O'Donell  <carlos@redhat.com>
20137         * elf/dl-hwcaps.c (_dl_important_hwcaps): Comment vDSO hwcap loading.
20138         * elf/ldconfig.c (is_hwcap_platform): Comment each hwcap check.
20139         (main): Comment "tls" pseudo-hwcap.
20141 2013-05-13  Joseph Myers  <joseph@codesourcery.com>
20143         * math/libm-test.inc (struct test_fl_f_data): New type.
20144         (RUN_TEST_LOOP_fl_f): New variable.
20145         (scalbln_test_data): New variable.
20146         (scalbln_test): Run tests with RUN_TEST_LOOP_fl_f.
20148         * math/libm-test.inc (struct test_fi_f_data): New type.
20149         (RUN_TEST_LOOP_fi_f): New macro.
20150         (ldexp_test_data): New variable.
20151         (ldexp_test): Run tests with RUN_TEST_LOOP_fi_f.
20152         (scalbn_test_data): New variable.
20153         (scalbn_test): Run tests with RUN_TEST_LOOP_fi_f.
20155         * math/libm-test.inc (struct test_c_f_data): New type.
20156         (RUN_TEST_LOOP_c_f): New macro.
20157         (cabs_test_data): New variable.
20158         (cabs_test): Run tests with RUN_TEST_LOOP_c_f.
20159         (carg_test_data): New variable.
20160         (carg_test): Run tests with RUN_TEST_LOOP_c_f.
20161         (cimag_test_data): New variable.
20162         (cimag_test): Run tests with RUN_TEST_LOOP_c_f.
20163         (creal_test_data): New variable.
20164         (creal_test): Run tests with RUN_TEST_LOOP_c_f.
20166         * math/libm-test.inc (struct test_if_f_data): New type.
20167         (RUN_TEST_LOOP_if_f): New macro.
20168         (jn_test_data): New variable.
20169         (jn_test): Run tests with RUN_TEST_LOOP_if_f.
20170         (yn_test_data): New variable.
20171         (yn_test): Run tests with RUN_TEST_LOOP_if_f.
20173         * math/libm-test.inc (scalbln_test): Consistently use TEST_fl_f.
20175 2013-05-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20177         * math/libm-test.inc (M_1_DIV_El): Define using decimal constant.
20178         (log_test_data): Use M_1_DIV_El instead of 1.0 / M_El.
20180 2013-05-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
20182         * benchtests/Makefile (CPPFLAGS-nonlib): Add
20183         -DUSE_CLOCK_GETTIME if USE_CLOCK_GETTIME is defined.
20184         (bench-deps): Add bench-timing.h.
20185         * benchtests-bench-skeleton.c: Include bench-timing.h.
20186         (main): Use TIMING_* macros instead of clock_gettime.
20187         * benchtests/bench-timing.h: New file.
20189         [BZ #14582]
20190         * sysdeps/ieee754/s_lib_version.c (_LIB_VERSION_INTERNAL):
20191         Renamed from _LIB_VERSION.
20192         (_LIB_VERSION): Set as weak alias of _LIB_VERSION_INTERNAL.
20194 2013-05-12  Joseph Myers  <joseph@codesourcery.com>
20196         * math/libm-test.inc (struct test_fff_f_data): New type.
20197         (RUN_TEST_LOOP_fff_f): New macro.
20198         (fma_test_data): New variable.
20199         (fma_test): Run tests with RUN_TEST_LOOP_fff_f.
20200         (fma_towardzero_test_data): New variable.
20201         (fma_test_towardzero): Run tests with RUN_TEST_LOOP_fff_f.
20202         (fma_downward_test_data): New variable.
20203         (fma_test_downward): Run tests with RUN_TEST_LOOP_fff_f.
20204         (fma_upward_test_data): New variable.
20205         (fma_test_upward): Run tests with RUN_TEST_LOOP_fff_f.
20207         * math/libm-test.inc (BUILD_COMPLEX_ULP): New macro.
20208         (struct test_c_c_data): New type.
20209         (RUN_TEST_LOOP_c_c): New macro.
20210         (cacos_test_data): New variable.
20211         (cacos_test): Run tests with RUN_TEST_LOOP_c_c.
20212         (cacosh_test_data): New variable.
20213         (cacosh_test): Run tests with RUN_TEST_LOOP_c_c.
20214         (casin_test_data): New variable.
20215         (casin_test): Run tests with RUN_TEST_LOOP_c_c.
20216         (casinh_test_data): New variable.
20217         (casinh_test): Run tests with RUN_TEST_LOOP_c_c.
20218         (catan_test_data): New variable.
20219         (catan_test): Run tests with RUN_TEST_LOOP_c_c.
20220         (catanh_test_data): New variable.
20221         (catanh_test): Run tests with RUN_TEST_LOOP_c_c.
20222         (ccos_test_data): New variable.
20223         (ccos_test): Run tests with RUN_TEST_LOOP_c_c.
20224         (ccosh_test_data): New variable.
20225         (ccosh_test): Run tests with RUN_TEST_LOOP_c_c.
20226         (cexp_test_data): New variable.
20227         (cexp_test): Run tests with RUN_TEST_LOOP_c_c.
20228         (clog_test_data): New variable.
20229         (clog_test): Run tests with RUN_TEST_LOOP_c_c.
20230         (clog10_test_data): New variable.
20231         (clog10_test): Run tests with RUN_TEST_LOOP_c_c.
20232         (conj_test_data): New variable.
20233         (conj_test): Run tests with RUN_TEST_LOOP_c_c.
20234         (cproj_test_data): New variable.
20235         (cproj_test): Run tests with RUN_TEST_LOOP_c_c.
20236         (csin_test_data): New variable.
20237         (csin_test): Run tests with RUN_TEST_LOOP_c_c.
20238         (csinh_test_data): New variable.
20239         (csinh_test): Run tests with RUN_TEST_LOOP_c_c.
20240         (csqrt_test_data): New variable.
20241         (csqrt_test): Run tests with RUN_TEST_LOOP_c_c.
20242         (ctan_test_data): New variable.
20243         (ctan_test): Run tests with RUN_TEST_LOOP_c_c.
20244         (ctan_tonearest_test_data): New variable.
20245         (ctan_test_tonearest): Run tests with RUN_TEST_LOOP_c_c.
20246         (ctan_towardzero_test_data): New variable.
20247         (ctan_test_towardzero): Run tests with RUN_TEST_LOOP_c_c.
20248         (ctan_downward_test_data): New variable.
20249         (ctan_test_downward): Run tests with RUN_TEST_LOOP_c_c.
20250         (ctan_upward_test_data): New variable.
20251         (ctan_test_upward): Run tests with RUN_TEST_LOOP_c_c.
20252         (ctanh_test_data): New variable.
20253         (ctanh_test): Run tests with RUN_TEST_LOOP_c_c.
20254         (ctanh_tonearest_test_data): New variable.
20255         (ctanh_test_tonearest): Run tests with RUN_TEST_LOOP_c_c.
20256         (ctanh_towardzero_test_data): New variable.
20257         (ctanh_test_towardzero): Run tests with RUN_TEST_LOOP_c_c.
20258         (ctanh_downward_test_data): New variable.
20259         (ctanh_test_downward): Run tests with RUN_TEST_LOOP_c_c.
20260         (ctanh_upward_test_data): New variable.
20261         (ctanh_test_upward): Run tests with RUN_TEST_LOOP_c_c.
20262         * math/gen-libm-test.pl (get_ulps): Use BUILD_COMPLEX_ULP instead
20263         of BUILD_COMPLEX.
20265         * math/libm-test.inc (struct test_ff_f_data): New type.
20266         (struct test_ff_f_data_nexttoward): Likewise.
20267         (RUN_TEST_LOOP_2_f): New macro.
20268         (RUN_TEST_LOOP_ff_f): Likewise.
20269         (atan2_test_data): New variable.
20270         (atan2_test): Run tests with RUN_TEST_LOOP_ff_f.
20271         (copysign_test_data): New variable.
20272         (copysign_test): Run tests with RUN_TEST_LOOP_ff_f.
20273         (fdim_test_data): New variable.
20274         (fdim_test): Run tests with RUN_TEST_LOOP_ff_f.
20275         (fmax_test_data): New variable.
20276         (fmax_test): Run tests with RUN_TEST_LOOP_ff_f.
20277         (fmin_test_data): New variable.
20278         (fmin_test): Run tests with RUN_TEST_LOOP_ff_f.
20279         (fmod_test_data): New variable.
20280         (fmod_test): Run tests with RUN_TEST_LOOP_ff_f.
20281         (hypot_test_data): New variable.
20282         (hypot_test): Run tests with RUN_TEST_LOOP_ff_f.
20283         (nextafter_test_data): New variable.
20284         (nextafter_test): Run tests with RUN_TEST_LOOP_ff_f.
20285         (nexttoward_test_data): New variable.
20286         (nexttoward_test): Run tests with RUN_TEST_LOOP_ff_f.
20287         (pow_test_data): New variable.
20288         (pow_test): Run tests with RUN_TEST_LOOP_ff_f.
20289         (pow_tonearest_test_data): New variable.
20290         (pow_test_tonearest): Run tests with RUN_TEST_LOOP_ff_f.
20291         (pow_towardzero_test_data): New variable.
20292         (pow_test_towardzero): Run tests with RUN_TEST_LOOP_ff_f.
20293         (pow_downward_test_data): New variable.
20294         (pow_test_downward): Run tests with RUN_TEST_LOOP_ff_f.
20295         (pow_upward_test_data): New variable.
20296         (pow_test_upward): Run tests with RUN_TEST_LOOP_ff_f.
20297         (remainder_test_data): New variable.
20298         (remainder_test): Run tests with RUN_TEST_LOOP_ff_f.
20299         (scalb_test_data): New variable.
20300         (scalb_test): Run tests with RUN_TEST_LOOP_ff_f.
20301         * sysdeps/i386/fpu/libm-test-ulps: Update.
20303 2013-05-11  Joseph Myers  <joseph@codesourcery.com>
20305         * math/libm-test.inc (fma_test): Use max_value instead of local
20306         variable fltmax.
20307         (nextafter_test): Likewise.
20309         * math/libm-test.inc (acos_towardzero_test_data): New variable.
20310         (acos_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
20311         (acos_downward_test_data): New variable.
20312         (acos_test_downward): Run tests with RUN_TEST_LOOP_f_f.
20313         (acos_upward_test_data): New variable.
20314         (acos_test_upward): Run tests with RUN_TEST_LOOP_f_f.
20315         (acosh_test_data): New variable.
20316         (acosh_test): Run tests with RUN_TEST_LOOP_f_f.
20317         (asin_test_data): New variable.
20318         (asin_test): Run tests with RUN_TEST_LOOP_f_f.
20319         (asin_tonearest_test_data): New variable.
20320         (asin_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
20321         (asin_towardzero_test_data): New variable.
20322         (asin_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
20323         (asin_downward_test_data): New variable.
20324         (asin_test_downward): Run tests with RUN_TEST_LOOP_f_f.
20325         (asin_upward_test_data): New variable.
20326         (asin_test_upward): Run tests with RUN_TEST_LOOP_f_f.
20327         (asinh_test_data): New variable.
20328         (asinh_test): Run tests with RUN_TEST_LOOP_f_f.
20329         (atan_test_data): New variable.
20330         (atan_test): Run tests with RUN_TEST_LOOP_f_f.
20331         (atanh_test_data): New variable.
20332         (atanh_test): Run tests with RUN_TEST_LOOP_f_f.
20333         (cbrt_test_data): New variable.
20334         (cbrt_test): Run tests with RUN_TEST_LOOP_f_f.
20335         (ceil_test_data): New variable.
20336         (ceil_test): Run tests with RUN_TEST_LOOP_f_f.
20337         (cos_test_data): New variable.
20338         (cos_test): Run tests with RUN_TEST_LOOP_f_f.
20339         (cos_tonearest_test_data): New variable.
20340         (cos_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
20341         (cos_towardzero_test_data): New variable.
20342         (cos_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
20343         (cos_downward_test_data): New variable.
20344         (cos_test_downward): Run tests with RUN_TEST_LOOP_f_f.
20345         (cos_upward_test_data): New variable.
20346         (cos_test_upward): Run tests with RUN_TEST_LOOP_f_f.
20347         (cosh_test_data): New variable.
20348         (cosh_test): Run tests with RUN_TEST_LOOP_f_f.
20349         (cosh_tonearest_test_data): New variable.
20350         (cosh_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
20351         (cosh_towardzero_test_data): New variable.
20352         (cosh_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
20353         (cosh_downward_test_data): New variable.
20354         (cosh_test_downward): Run tests with RUN_TEST_LOOP_f_f.
20355         (cosh_upward_test_data): New variable.
20356         (cosh_test_upward): Run tests with RUN_TEST_LOOP_f_f.
20357         (erf_test_data): New variable.
20358         (erf_test): Run tests with RUN_TEST_LOOP_f_f.
20359         (erfc_test_data): New variable.
20360         (erfc_test): Run tests with RUN_TEST_LOOP_f_f.
20361         (exp_test_data): New variable.
20362         (exp_test): Run tests with RUN_TEST_LOOP_f_f.
20363         (exp_tonearest_test_data): New variable.
20364         (exp_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
20365         (exp_towardzero_test_data): New variable.
20366         (exp_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
20367         (exp_downward_test_data): New variable.
20368         (exp_test_downward): Run tests with RUN_TEST_LOOP_f_f.
20369         (exp_upward_test_data): New variable.
20370         (exp_test_upward): Run tests with RUN_TEST_LOOP_f_f.
20371         (exp10_test_data): New variable.
20372         (exp10_test): Run tests with RUN_TEST_LOOP_f_f.
20373         (exp2_test_data): New variable.
20374         (exp2_test): Run tests with RUN_TEST_LOOP_f_f.
20375         (expm1_test_data): New variable.
20376         (expm1_test): Run tests with RUN_TEST_LOOP_f_f.
20377         (fabs_test_data): New variable.
20378         (fabs_test): Run tests with RUN_TEST_LOOP_f_f.
20379         (floor_test_data): New variable.
20380         (floor_test): Run tests with RUN_TEST_LOOP_f_f.
20381         (j0_test_data): New variable.
20382         (j0_test): Run tests with RUN_TEST_LOOP_f_f.
20383         (j1_test_data): New variable.
20384         (j1_test): Run tests with RUN_TEST_LOOP_f_f.
20385         (log_test_data): New variable.
20386         (log_test): Run tests with RUN_TEST_LOOP_f_f.
20387         (log10_test_data): New variable.
20388         (log10_test): Run tests with RUN_TEST_LOOP_f_f.
20389         (log1p_test_data): New variable.
20390         (log1p_test): Run tests with RUN_TEST_LOOP_f_f.
20391         (log2_test_data): New variable.
20392         (log2_test): Run tests with RUN_TEST_LOOP_f_f.
20393         (logb_test_data): New variable.
20394         (logb_test): Run tests with RUN_TEST_LOOP_f_f.
20395         (logb_downward_test_data): New variable.
20396         (logb_test_downward): Run tests with RUN_TEST_LOOP_f_f.
20397         (nearbyint_test_data): New variable.
20398         (nearbyint_test): Run tests with RUN_TEST_LOOP_f_f.
20399         (rint_test_data): New variable.
20400         (rint_test): Run tests with RUN_TEST_LOOP_f_f.
20401         (rint_tonearest_test_data): New variable.
20402         (rint_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
20403         (rint_towardzero_test_data): New variable.
20404         (rint_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
20405         (rint_downward_test_data): New variable.
20406         (rint_test_downward): Run tests with RUN_TEST_LOOP_f_f.
20407         (rint_upward_test_data): New variable.
20408         (rint_test_upward): Run tests with RUN_TEST_LOOP_f_f.
20409         (round_test_data): New variable.
20410         (round_test): Run tests with RUN_TEST_LOOP_f_f.
20411         (sin_test_data): New variable.
20412         (sin_test): Run tests with RUN_TEST_LOOP_f_f.
20413         (sin_tonearest_test_data): New variable.
20414         (sin_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
20415         (sin_towardzero_test_data): New variable.
20416         (sin_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
20417         (sin_downward_test_data): New variable.
20418         (sin_test_downward): Run tests with RUN_TEST_LOOP_f_f.
20419         (sin_upward_test_data): New variable.
20420         (sin_test_upward): Run tests with RUN_TEST_LOOP_f_f.
20421         (sinh_test_data): New variable.
20422         (sinh_test): Run tests with RUN_TEST_LOOP_f_f.
20423         (sinh_tonearest_test_data): New variable.
20424         (sinh_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
20425         (sinh_towardzero_test_data): New variable.
20426         (sinh_towardzero): Run tests with RUN_TEST_LOOP_f_f.
20427         (sinh_downward_test_data): New variable.
20428         (sinh_test_downward): Run tests with RUN_TEST_LOOP_f_f.
20429         (sinh_upward_test_data): New variable.
20430         (sinh_test_upward): Run tests with RUN_TEST_LOOP_f_f.
20431         (sqrt_test_data): New variable.
20432         (sqrt_test): Run tests with RUN_TEST_LOOP_f_f.
20433         (tan_test_data): New variable.
20434         (tan_test): Run tests with RUN_TEST_LOOP_f_f.
20435         (tan_tonearest_test_data): New variable.
20436         (tan_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
20437         (tan_towardzero_test_data): New variable.
20438         (tan_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
20439         (tan_downward_test_data): New variable.
20440         (tan_test_downward): Run tests with RUN_TEST_LOOP_f_f.
20441         (tan_upward_test_data): New variable.
20442         (tan_test_upward): Run tests with RUN_TEST_LOOP_f_f.
20443         (tanh_test_data): New variable.
20444         (tanh_test): Run tests with RUN_TEST_LOOP_f_f.
20445         (tgamma_test_data): New variable.
20446         (tgamma_test): Run tests with RUN_TEST_LOOP_f_f.
20447         (trunc_test_data): New variable.
20448         (trunc_test): Run tests with RUN_TEST_LOOP_f_f.
20449         (y0_test_data): New variable.
20450         (y0_test): Run tests with RUN_TEST_LOOP_f_f.
20451         (y1_test_data): New variable.
20452         (y1_test): Run tests with RUN_TEST_LOOP_f_f.
20453         (significand_test_data): New variable.
20454         (significand_test): Run tests with RUN_TEST_LOOP_f_f.
20456 2013-05-10  Christian Grönke  <cgr_bugs@sysgo.com>
20458         [BZ #12387]
20459         * sysdeps/unix/sysv/linux/sh/getgid.c: New file.
20461 2013-05-10  Pino Toscano  <toscano.pino@tiscali.it>
20463         * sysdeps/mach/hurd/bits/statvfs.h: Add ST_NOATIME.
20465 2013-05-10  Andreas Jaeger  <aj@suse.de>
20467         [BZ #15448]
20468         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_SET_S)
20469         (__CPU_CLR_S, __CPU_ISSET_S): Avoid integer overflow.
20471 2013-05-10  Joseph Myers  <joseph@codesourcery.com>
20473         * math/gen-libm-test.pl (adjust_arg): New function.
20474         (special_functions): Handle generating output in both functions
20475         and arrays.
20476         (parse_args): Likewise.
20477         (generate_testfile): Handle START_DATA and END_DATA.  Pass extra
20478         $in_func argument to parse_args.
20479         * math/libm-test.inc (struct test_f_f_data): New type.
20480         (IF_ROUND_INIT_): New macro.
20481         (IF_ROUND_INIT_FE_DOWNWARD): Likewise.
20482         (IF_ROUND_INIT_FE_TONEAREST): Likewise.
20483         (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
20484         (IF_ROUND_INIT_FE_UPWARD): Likewise.
20485         (ROUND_RESTORE_): Likewise.
20486         (ROUND_RESTORE_FE_DOWNWARD): Likewise.
20487         (ROUND_RESTORE_FE_TONEAREST): Likewise.
20488         (ROUND_RESTORE_FE_TOWARDZERO): Likewise.
20489         (ROUND_RESTORE_FE_UPWARD): Likewise.
20490         (RUN_TEST_LOOP_f_f): New macro.
20491         (acos_test_data): New variable.
20492         (acos_test): Run tests with RUN_TEST_LOOP_f_f.
20493         (acos_tonearest_test_data): New variable.
20494         (acos_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
20496 2013-05-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
20498         * benchtests/bench-skeleton.c (startup): Fix coding style.
20500 2013-05-10  Joseph Myers  <joseph@codesourcery.com>
20502         [BZ #6809]
20503         * math/w_tgamma.c (__tgamma): Also call __kernel_standard for
20504         negative infinity argument.
20505         * math/w_tgammaf.c (__tgammaf): Also call __kernel_standard_f for
20506         negative infinity argument.
20507         * math/w_tgammal.c (__tgammal): Also call __kernel_standard_l for
20508         negative infinity argument.
20509         * math/libm-test.inc (tgamma_test): Expect errno to be set for
20510         domain errors.
20512 2013-05-10  Florian Weimer  <fweimer@redhat.com>
20514         * elf/sprof.c (load_profdata): Use fstat64 instead of fstat.
20515         * iconv/iconv_charmap.c (charmap_conversion): Likewise.
20516         * iconv/iconv_prog.c (main): Likewise.
20517         * locale/programs/charmap-dir.c (charmap_readdir)
20518         (fopen_uncompressed): Likewise.
20519         * locale/programs/locfile.c (siblings_uncached)
20520         (write_locale_data): Use lstat64 instead of lstat.
20521         * sunrpc/rpc_main.c (find_cpp, checkfiles): Use stat64 instead of
20522         stat.
20524 2013-05-10  Andreas Jaeger  <aj@suse.de>
20526         [BZ #15395]
20527         * sunrpc/rpc_main.c (main): Invoke setlocale and textdomain for
20528         localization.
20529         Include <locale.h>.
20531 2013-05-09  Carlos O'Donell  <carlos@redhat.com>
20533         * elf/dl-close.c (_dl_close_worker): Add comments.
20535 2013-05-09  Joseph Myers  <joseph@codesourcery.com>
20537         [BZ #15359]
20538         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (c): Use 106 bits for
20539         high part of pi/2.
20540         (__ieee754_rem_pio2l): Update comments.
20542         [BZ #15429]
20543         * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c (c): Use 113 bits for
20544         high part of pi/2.
20545         (__ieee754_rem_pio2l): Update comments.
20547         * math/libm-test.inc (M_SQRT_2_2): Remove macro.
20548         (csqrt_test): Use M_SQRT1_2l instead of M_SQRT_2_2.
20550         * math/libm-test.inc (carg_test): Use M_PI_34l instead of 3 *
20551         M_PI_4l.
20553         * math/libm-test.inc (M_PI_34l): Define using decimal constant.
20554         (M_PI_34_LOG10El): Likewise.
20555         (M_PI2_LOG10El): Likewise.
20556         (M_PI4_LOG10El): Likewise.
20557         (M_PI_LOG10El): Likewise.
20559 2013-05-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20561         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
20563 2013-05-08  Joseph Myers  <joseph@codesourcery.com>
20565         * math/libm-test.inc (PLUS_ZERO_INIT): New macro.
20566         (MINUS_ZERO_INIT): Likewise.
20567         (PLUS_INFTY_INIT): Likewise.
20568         (MINUS_INFTY_INIT): Likewise.
20569         (QNAN_VALUE_INIT): Likewise.
20570         (MAX_VALUE_INIT): Likewise.
20571         (MIN_VALUE_INIT): Likewise.
20572         (MIN_SUBNORM_VALUE_INIT): Likewise.
20573         (plus_zero): Initialize with PLUS_ZERO_INIT.
20574         (minus_zero): Initialize with MINUS_ZERO_INIT.
20575         (plus_infty): Initialize with PLUS_INFTY_INIT.
20576         (minus_infty): Initialize with MINUS_INFTY_INIT.
20577         (qnan_value): Initialize with QNAN_VALUE_INIT.
20578         (max_value): Initialize with MAX_VALUE_INIT.
20579         (min_value): Initialize with MIN_VALUE_INIT.
20580         (min_subnorm_value): Initialize with MIN_SUBNORM_VALUE_INIT.
20582         * math/libm-test.inc (RUN_TEST_if_f): New macro.
20583         (jn_test): Use TEST_if_f instead of TEST_ff_f.
20584         (ldexp_text): Use TEST_fi_i instead of TEST_ff_f.
20585         (yn_test): Use TEST_if_f instead of TEST_ff_f.
20587         * math/libm-test.inc (RUN_TEST_f_f): New macro.
20588         (RUN_TEST_2_f): Likewise.
20589         (RUN_TEST_ff_f): Likewise.
20590         (RUN_TEST_fi_f): Likewise.
20591         (RUN_TEST_fl_f): Likewise.
20592         (RUN_TEST_fff_f): Likewise.
20593         (RUN_TEST_c_f): Likewise.
20594         (RUN_TEST_f_f1): Likewise.
20595         (RUN_TEST_fF_f1): Likewise.
20596         (RUN_TEST_fI_f1): Likewise.
20597         (RUN_TEST_ffI_f1): Likewise.
20598         (RUN_TEST_c_c): Likewise.
20599         (RUN_TEST_cc_c): Likewise.
20600         (RUN_TEST_f_i): Likewise.
20601         (RUN_TEST_f_i_tg): Likewise.
20602         (RUN_TEST_ff_i_tg): Likewise.
20603         (RUN_TEST_f_b): Likewise.
20604         (RUN_TEST_f_b_tg): Likewise.
20605         (RUN_TEST_f_l): Likewise.
20606         (RUN_TEST_f_L): Likewise.
20607         (RUN_TEST_sincos): Likewise.
20608         * math/gen-libm-test.pl (new_test): Take new argument to indicate
20609         whether to show exceptions.  Do not include ");\n" in return
20610         value.
20611         (special_functions): Output call to RUN_TEST_sincos instead of
20612         check_float calls.  Update calls to new_test.
20613         (parse_args): Output call to single RUN_TEST_* macro instead of
20614         check_* calls and other assignments.  Update calls to new_test.
20616         [BZ #2546]
20617         [BZ #2560]
20618         [BZ #5159]
20619         [BZ #15426]
20620         * sysdeps/ieee754/k_standard.c (__kernel_standard): Copy sign of
20621         input to result for tgamma overflow.
20622         * sysdeps/ieee754/dbl-64/e_gamma_r.c: Include <float.h>.
20623         (gamma_coeff): New variable.
20624         (NCOEFF): New macro.
20625         (gamma_positive): New function.
20626         (__ieee754_gamma_r): Handle positive infinity, NaN, overflow and
20627         underflow here.  Use gamma_positive instead of exp (lgamma) for
20628         other arguments.
20629         * sysdeps/ieee754/flt-32/e_gammaf_r.c: Include <float.h>.
20630         (gamma_coeff): New variable.
20631         (NCOEFF): New macro.
20632         (gammaf_positive): New function.
20633         (__ieee754_gammaf_r): Handle positive infinity, NaN, overflow and
20634         underflow here.  Use gamma_positive instead of exp (lgamma) for
20635         other arguments.
20636         * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Include <float.h>.
20637         (gamma_coeff): New variable.
20638         (NCOEFF): New macro.
20639         (gammal_positive): New function.
20640         (__ieee754_gammal_r): Handle positive infinity, NaN, overflow and
20641         underflow here.  Use gamma_positive instead of exp (lgamma) for
20642         other arguments.
20643         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Include <float.h>.
20644         (gamma_coeff): New variable.
20645         (NCOEFF): New macro.
20646         (gammal_positive): New function.
20647         (__ieee754_gammal_r): Handle positive infinity, overflow and
20648         underflow here.  Handle NaN the same as positive infinity.  Remove
20649         check x < 0xffffffff for negative integers.  Use gamma_positive
20650         instead of exp (lgamma) for other arguments.
20651         * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Include <float.h>.
20652         (gamma_coeff): New variable.
20653         (NCOEFF): New macro.
20654         (gammal_positive): New function.
20655         * sysdeps/ieee754/dbl-64/gamma_product.c: New file.
20656         * sysdeps/ieee754/dbl-64/gamma_productf.c: Likewise.
20657         * sysdeps/ieee754/ldbl-128/gamma_productl.c: Likewise.
20658         * sysdeps/ieee754/ldbl-128ibm/gamma_productl.c: Likewise.
20659         * sysdeps/ieee754/ldbl-96/gamma_product.c: Likewise.
20660         * sysdeps/ieee754/ldbl-96/gamma_productl.c: Likewise.
20661         * sysdeps/generic/math_private.h (__gamma_productf): New
20662         prototype.
20663         (__gamma_product): Likewise.
20664         (__gamma_productl): Likewise.
20665         * math/Makefile (libm-calls): Add gamma_product.
20666         * math/libm-test.inc (tgamma_test): Add more tests.
20667         * sysdeps/i386/fpu/libm-test-ulps: Update.
20668         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20670 2013-05-08  Ondřej Bílka  <neleai@seznam.cz>
20672         * benchtests/bench-skeleton.c (main): Preheat CPU.
20674 2013-05-07  Aurelien Jarno <aurelien@aurel32.net>
20676         * misc/sys/param.h (DEV_BSIZE): Define only if not already defined.
20678 2013-05-07  Roland McGrath  <roland@hack.frob.com>
20680         * sysdeps/generic/ldsodefs.h [IS_IN_rtld]: Declare _dl_skip_args
20681         and _dl_skip_args_internal.
20683 2013-05-07  Carlos O'Donell  <carlos@redhat.com>
20685         * manual/message.texi (Message Translation): Talk about users.
20686         Message to key mapping impacts design.
20688 2013-05-06  Roland McGrath  <roland@hack.frob.com>
20690         * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: New file.
20692         * elf/dl-open.c: Remove declaration of _dl_sysdep_start.
20694         * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: Moved to ...
20695         * sysdeps/wordsize-64/glob64.c: ... here.
20697         * sysdeps/generic/not-cancel.h (NO_CANCELLATION): New macro.
20698         (pause_not_cancel, nanosleep_not_cancel, sigsuspend_not_cancel):
20699         New macros.
20701         * debug/getlogin_r_chk.c: Moved to ...
20702         * login/getlogin_r_chk.c: ... here.
20703         * debug/Makefile (routines): Move getlogin_r_chk to ...
20704         * login/Makefile (routines): ... here.
20705         * debug/Versions (libc: GLIBC_2.4): Move getlogin_r_chk to ...
20706         * login/Versions (libc: GLIBC_2.4): ... here.
20708         * io/poll.c (__poll): Renamed from poll.
20709         Add libc_hidden_def.
20710         (poll): Define as weak alias.
20712         * debug/ptsname_r_chk.c: Moved to ...
20713         * login/ptsname_r_chk.c: ... here.
20714         * debug/Makefile (routines): Move ptsname_r_chk to ...
20715         * login/Makefile (routines): ... here.
20716         * debug/Versions (libc: GLIBC_2.4): Move __ptsname_r_chk to ...
20717         * login/Versions (libc: GLIBC_2.4): ... here.
20719         * posix/getlogin.c: Moved to ...
20720         * login/getlogin.c: ... here.
20721         * posix/getlogin_r.c: Moved to ...
20722         * login/getlogin_r.c: ... here.
20723         * posix/getlogin_r.c: Moved to ...
20724         * login/getlogin_r.c: ... here.
20725         * posix/Makefile (routines): Move getlogin, getlogin_r, setlogin to ...
20726         * login/Makefile (routines): ... here.
20727         * posix/Versions (libc: GLIBC_2.0): Move setlogin to ...
20728         * login/Versions (libc: GLIBC_2.0): ... here.
20730         * resource/setrlimit.c (__setrlimit): Renamed from setrlimit.
20731         (setrlimit): Define as weak alias.
20733         * sysdeps/posix/truncate.c (__truncate): Renamed from truncate.
20734         Call __ names for open, ftruncate, and close.
20735         For LENGTH==0 case, just use O_TRUNC rather than calling ftruncate.
20736         (truncate): Define as weak alias.
20738 2013-05-06  Joseph Myers  <joseph@codesourcery.com>
20740         * math/gen-libm-test.pl (parse_args): Initialize x before each
20741         test of frexp, modf and remquo.
20743         * math/libm-test.inc (gamma_test): Consistently use TEST_f_f1 to
20744         test signgam value.
20746 2013-05-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20748         [BZ #15418]
20749         [BZ #15419]
20750         * sysdeps/powerpc/fpu/e_hypot.c: Fix spurious FP exception generated by
20751         internal tests.
20752         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
20754 2013-05-06  Roland McGrath  <roland@hack.frob.com>
20756         * elf/dl-writev.h: New file.
20757         * elf/dl-misc.c: Include it.
20758         (_dl_debug_vdprintf): Call _dl_writev instead of __writev et al.
20759         * sysdeps/unix/sysv/linux/dl-writev.h: New file.
20761 2013-05-04  Joseph Myers  <joseph@codesourcery.com>
20763         * math/libm-test.inc (noXFails): Remove variable.
20764         (noXPasses): Likewise.
20765         (BUILD_COMPLEX_INT): Remove macro.
20766         (print_screen): Remove xfail argument.
20767         (print_screen_max_error): Likewise.
20768         (update_stats): Likewise.
20769         (print_max_error): Likewise.  Update calls to other affected
20770         functions.
20771         (print_complex_max_error): Likewise.
20772         (test_single_exception): Update calls to print_screen.
20773         (test_single_errno): Likewise.
20774         (check_float_internal): Remove xfail argument.  Update calls to
20775         other affected functions.
20776         (check_float): Likewise.
20777         (check_complex): Likewise.
20778         (check_int): Likewise.
20779         (check_long): Likewise.
20780         (check_bool): Likewise.
20781         (check_longlong): Likewise.
20782         (main): Don't print noXFails and noXPasses.
20783         * math/gen-libm-test.pl (top level): Don't mention expected
20784         failure handling in comment.
20785         (new_test): Don't handle expected failures.
20786         (parse_args): Don't mention expected failure handling in comment.
20787         (generate_testfile): Don't handle expected failures.
20788         (parse_ulps): Likewise.
20789         (print_ulps_file): Likewise.
20790         (get_failure): Remove function.
20791         (output_test): Don't handle expected failures.
20792         * make/README.libm-test: Don't mention expected failure handling.
20794         * math/libm-test.inc (plus_zero): Make const.  Add initializer.
20795         (minus_zero): Likewise.
20796         (plus_infty): Likewise.
20797         (minus_infty): Likewise.
20798         (qnan_value): Likewise.
20799         (max_value): Likewise.
20800         (min_value): Likewise.
20801         (min_subnorm_value): Likewise.
20802         (initialize): Do not initialize those variables dynamically.
20804 2013-05-03  Roland McGrath  <roland@hack.frob.com>
20806         * io/open.c (__open_2): Moved to ...
20807         * io/open_2.c: ... this new file.
20808         * io/open64.c (__open64_2): Moved to ...
20809         * io/open64_2.c: ... this new file.
20810         * io/openat.c (__openat_2): Moved to ...
20811         * io/openat_2.c: ... this new file.
20812         * io/openat64.c (__openat64_2): Moved to ...
20813         * io/openat64_2.c: ... this new file.
20814         * io/Makefile (routines): Add them.
20815         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Remove them.
20816         * sysdeps/unix/sysv/linux/open_2.c: File removed.
20817         * sysdeps/unix/sysv/linux/open64_2.c: File removed.
20818         * sysdeps/unix/sysv/linux/openat.c (__OPENAT_2): Removed.
20819         * sysdeps/unix/sysv/linux/openat64.c (__OPENAT_2): Removed.
20820         * sysdeps/unix/sysv/linux/wordsize-64/openat.c (__openat_2): Removed.
20821         (__openat64): Add hidden_ver.
20822         * sysdeps/mach/hurd/open.c (__open_2, __open64_2): Removed.
20823         * sysdeps/mach/hurd/openat.c (__openat_2): Removed.
20825         * elf/dl-sysdep.c (_dl_sysdep_start) [NEED_DL_SYSINFO]:
20826         Separately conditionalize setting of GLRO(dl_sysinfo) so
20827         that the GLRO(dl_sysinfo_dso) test is under [NEED_DL_SYSINFO_DSO]
20828         as well, but the actual setting is only under [NEED_DL_SYSINFO].
20830 2013-04-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20832         * sysdeps/unix/sysv/linux/powerpc/Versions: Add __vdso_time symbol.
20833         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Add __vdso_time
20834         definition.
20835         (VDSO_IFUNC_RET): Cast to void * to silence compiler warning.
20836         * sysdeps/unix/sysv/linux/powerpc/init-first.c
20837         (_libc_vdso_platform_setup): Add __vdso_time initialization.
20838         * sysdeps/unix/sysv/linux/powerpc/time.c: New file: time implementation
20839         for PowerPC using vDSO where is avaliable or gettimeofday as a fallback.
20841 2013-05-03  Joseph Myers  <joseph@codesourcery.com>
20843         * math/libm-test.inc (lgamma_test): Consistently use TEST_f_f1 to
20844         test signgam value.
20846         * math/libm-test.inc (hypot_test): Do not use
20847         IGNORE_ZERO_INF_SIGN.
20849 2013-05-03  Andreas Jaeger  <aj@suse.de>
20851         * sysdeps/gnu/netinet/tcp.h (TCP_TIMESTAMP): New value, from
20852         Linux 3.9.
20853         * sysdeps/unix/sysv/linux/bits/socket.h (PF_VSOCK, AF_VSOCK): Add.
20854         (PF_MAX): Adjust for VSOCK change.
20856 2013-05-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20858         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
20860 2013-05-02  Carlos O'Donell  <carlos@redhat.com>
20862         [BZ #15264]
20863         * localedata/locales/en_CA (LC_MESSAGES): Define yesstr and nostr.
20864         * localedata/locales/es_AR (LC_MESSAGES): Copy es_ES.
20865         * localedata/locales/es_ES (LC_MESSAGES): Define yesstr and nostr.
20867 2013-05-02  David S. Miller  <davem@davemloft.net>
20869         * sysdeps/sparc/fpu/libm-test-ulps: Update.
20871 2013-05-01  Ondřej Bílka  <neleai@seznam.cz>
20873         * string/bits/string2.h (__strcmp_cg): Call __strcmp_gc.
20875 2013-05-01  Roland McGrath  <roland@hack.frob.com>
20877         * sysdeps/posix/opendir.c: Include <sys/param.h> to get MIN/MAX macros.
20879 2013-05-01  Richard Smith  <richard@metafoo.co.uk>
20881         [BZ #14952]
20882         * misc/sys/cdefs.h (__extern_inline, __extern_always_inline)
20883         [__GNUC__ && (__GNUC_STDC_INLINE__ || __GNUC_GNU_INLINE__)]:
20884         Use __attribute__ ((__gnu_inline__)).
20885         [__GNUC__ && !(__GNUC_STDC_INLINE__ || __GNUC_GNU_INLINE__)]:
20886         Don't use __attribute__ ((__gnu_inline__)).
20888 2013-05-01  Joseph Myers  <joseph@codesourcery.com>
20890         [BZ #15423]
20891         * math/s_catan.c (__catan): Handle small real or imaginary part of
20892         input specially to avoid spurious underflow.
20893         * math/s_catanf.c (__catanf): Likewise.
20894         * math/s_catanh.c (__catanh): Likewise.
20895         * math/s_catanhf.c (__catanhf): Likewise.
20896         * math/s_catanhl.c (__catanhl): Likewise.
20897         * math/s_catanl.c (__catanl): Likewise.
20898         * math/libm-test.inc (catan_test): Add more tests.
20899         (catanh_test): Likewise.
20900         * sysdeps/i386/fpu/libm-test-ulps: Update.
20901         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20903 2013-04-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
20905         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
20907 2013-04-30  Joseph Myers  <joseph@codesourcery.com>
20909         [BZ #15416]
20910         * math/s_catan.c (__catan): Compute expressions 1 - x^2 - y^2 more
20911         accurately for denominator in atan2.
20912         * math/s_catanf.c (__catanf): Likewise.
20913         * math/s_catanh.c (__catanh): Likewise.
20914         * math/s_catanhf.c (__catanhf): Likewise.
20915         * math/s_catanhl.c (__catanhl): Likewise.
20916         * math/s_catanl.c (__catanl): Likewise.
20917         * math/libm-test.inc (catan_test): Add more tests.
20918         (catanh_test): Likewise.
20919         * sysdeps/i386/fpu/libm-test-ulps: Update.
20920         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20922 2013-04-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
20924         * sysdeps/ieee754/dbl-64/s_sin.c: Format code.
20926         * benchtests/Makefile (bench): Remove slow benchmarks.
20927         * benchtests/atan-inputs: Add slow benchmark inputs.
20928         * benchtests/bench-modf.c (NUM_VARIANTS): Define.
20929         (BENCH_FUNC): Accept variant offset.
20930         (VARIANT): Define.
20931         * benchtests/bench-skeleton.c (main): Run benchmark for each
20932         variant.
20933         * benchtests/cos-inputs: Add slow benchmark inputs.
20934         * benchtests/exp-inputs: Likewise.
20935         * benchtests/pow-inputs: Likewise.
20936         * benchtests/sin-inputs: Likewise.
20937         * benchtests/slowatan-inputs: Remove.
20938         * benchtests/slowatan.c: Remove.
20939         * benchtests/slowcos-inputs: Remove.
20940         * benchtests/slowcos.c: Remove.
20941         * benchtests/slowexp-inputs: Remove.
20942         * benchtests/slowexp.c: Remove.
20943         * benchtests/slowpow-inputs: Remove.
20944         * benchtests/slowpow.c: Remove.
20945         * benchtests/slowsin-inputs: Remove.
20946         * benchtests/slowsin.c: Remove.
20947         * benchtests/slowtan-inputs: Remove.
20948         * benchtests/slowtan.c: Remove.
20949         * benchtests/tan-inputs: Add slow benchmark inputs.
20950         * scripts/bench.pl: Parse comments and directives.
20952         * benchtests/Makefile: Remove *-ITER.  Define BENCH_DURATION
20953         in CPPFLAGS.
20954         ($(objpfx)bench-%.c): Remove *-ITER.
20955         * benchtests/bench-modf.c: Remove definition of ITER.
20956         * benchtests/bench-skeleton.c (TIMESPEC_AFTER): New macro.
20957         (main): Loop for DURATION seconds instead of fixed number of
20958         iterations.
20959         * scripts/bench.pl: Don't expect iterations in parameters.
20961 2013-04-29  Roland McGrath  <roland@hack.frob.com>
20963         * io/fchdir.c (__fchdir): Renamed from fchdir.
20964         (fchdir): Define as weak alias.
20966 2013-04-29  Joseph Myers  <joseph@codesourcery.com>
20968         * math/libm-test.inc (ERRNO_UNCHANGED): New macro.
20969         (ERRNO_EDOM): Likewise.
20970         (ERRNO_ERANGE): Likewise.
20971         (noErrnoTests): New variable.
20972         (init_max_error): Set errno to 0.
20973         (test_single_errno): New function.
20974         (test_errno): Likewise.
20975         (check_float_internal): Call test_errno.  Set errno to 0.
20976         (check_complex): Refer to errno tests in comment.
20977         (check_int): Call test_errno.  Set errno to 0.
20978         (check_long): Likewise.
20979         (check_bool): Likewise.
20980         (check_longlong): Likewise.
20981         (cos_test): Use ERRNO_* flags for errno tests instead of
20982         check_int.
20983         (expm1_test): Likewise.
20984         (fmod_test): Likewise.
20985         (ilogb_test): Likewise.
20986         (lgamma_test): Likewise.
20987         (pow_test): Likewise.
20988         (remainder_test): Likewise.
20989         (sin_test): Likewise.
20990         (tan_test): Likewise.
20991         (yn_test): Likewise.
20992         (initialize): Set errno to 0.
20993         (main): Print number of errno tests.
20994         * math/gen-libm-test.pl (parse_args): Allow ERRNO flags on tests.
20996 2013-04-29  Andreas Jaeger  <aj@suse.de>
20998         [BZ #15084]
20999         * resolv/res_debug.c (p_option): Fix strings for RES_USEBSTRING
21000         and RES_USEVC.
21002         [BZ #15085]
21003         * resolv/resolv.h (RES_NOCHECKNAME): Mark as unimplemented.
21004         * resolv/res_debug.c (p_option): Mark RES_NOCHECKNAME as
21005         unimplemented.
21007         [BZ #15380]
21008         * stdlib/random.c (__initstate): Return NULL if
21009         __initstate fails.
21011         [BZ #15086]
21012         * resolv/res_debug.c (p_option): Handle RES_NOALIASES,
21013         RES_KEEPTSIG, RES_BLAST, RES_NOIP6DOTINT, RES_SNGLKUP,
21014         RES_SNGLKUPREOP.
21016 2013-04-29  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21018         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
21020 2013-04-29  Joseph Myers  <joseph@codesourcery.com>
21022         * math/libm-test.inc (cacos_test): Add missing semicolons at ends
21023         of individual tests.
21024         (casin_test): Likewise.
21025         (casinh_test): Likewise.
21027 2013-04-27  Joseph Myers  <joseph@codesourcery.com>
21029         [BZ #15409]
21030         * math/s_catan.c (__catan): Handle arguments with large real or
21031         imaginary part separately without squaring.
21032         * math/s_catanf.c (__catanf): Likewise.
21033         * math/s_catanh.c (__catanh): Likewise.
21034         * math/s_catanhf.c (__catanhf): Likewise.
21035         * math/s_catanhl.c [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine
21036         and redefine.
21037         (__catanhl): Handle arguments with large real or imaginary part
21038         separately without squaring.
21039         * math/s_catanl.c [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine
21040         and redefine.
21041         (__catanl): Handle arguments with large real or imaginary part
21042         separately without squaring.
21043         * math/libm-test.inc (catan_test): Add more tests.
21044         (catanh_test): Likewise.
21045         * sysdeps/i386/fpu/libm-test-ulps: Update.
21046         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21048 2013-04-27  Andreas Jaeger  <aj@suse.de>
21050         [BZ #15007]
21051         * stdlib/stdlib.h: Update guards for qecvt.
21052         * stdlib/bits/stdlib-ldbl.h: Sync guards for qecvt etc with
21053         <stdlib.h>.
21055 2013-04-27  Allan McRae  <allan@archlinux.org>
21057         * sysdeps/i386/fpu/libm-test-ulps: Update.
21059 2013-04-26  Joseph Myers  <joseph@codesourcery.com>
21061         [BZ #15406]
21062         * math/s_catan.c: Include <float.h>.
21063         (__catan): Ensure underflow exception occurs for underflowed
21064         result.
21065         * math/s_catanf.c: Include <float.h>.
21066         (__catanf): Ensure underflow exception occurs for underflowed
21067         result.
21068         * math/s_catanh.c: Include <float.h>.
21069         (__catanh): Ensure underflow exception occurs for underflowed
21070         result.
21071         * math/s_catanhf.c: Include <float.h>.
21072         (__catanhf): Ensure underflow exception occurs for underflowed
21073         result.
21074         * math/s_catanhl.c: Include <float.h>.
21075         (__catanhl): Ensure underflow exception occurs for underflowed
21076         result.
21077         * math/s_catanl.c: Include <float.h>.
21078         (__catanl): Ensure underflow exception occurs for underflowed
21079         result.
21080         * math/libm-test.inc (catan_test): Add more tests.
21081         (catanh_test): Likewise.
21083         [BZ #15405]
21084         * math/s_ccosh.c (__ccosh): Ensure underflow exception occurs for
21085         underflowed result.
21086         * math/s_ccoshf.c (__ccoshf): Likewise.
21087         * math/s_ccoshl.c (__ccoshl): Likewise.
21088         * math/s_csin.c (__csin): Likewise.
21089         * math/s_csinf.c (__csinf): Likewise.
21090         * math/s_csinh.c (__csinh): Likewise.
21091         * math/s_csinhf.c (__csinhf): Likewise.
21092         * math/s_csinhl.c (__csinhl): Likewise.
21093         * math/s_csinl.c (__csinl): Likewise.
21094         * math/libm-test.inc (ccos_test): Add more tests.
21095         (ccosh_test): Likewise.
21096         (csin_test): Likewise.
21097         (csinh_test): Likewise.
21099 2013-04-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21101         * sysdeps/powerpc/power5/fpu/s_modf.c: Moved to ...
21102         * sysdeps/powerpc/power5+/fpu/s_modf.c: ... this.
21103         * sysdeps/powerpc/power5/fpu/s_modff.c: Moved to ...
21104         * sysdeps/powerpc/power5+/fpu/s_modff.c: ... this.
21105         * sysdeps/powerpc/powerpc32/power5+/Implies: Add powerpc/power5+ and
21106         powerpc/power5+/fpu folders.
21107         * sysdeps/powerpc/powerpc64/power5+/Implies: Likewise.
21110 2013-04-26  Markus Trippelsdorf  <markus@trippelsdorf.de>
21112         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
21114 2013-04-25  Joseph Myers  <joseph@codesourcery.com>
21116         * elf/Makefile [$(config-machine) = x86_64] (tests): Remove
21117         additions to variable.
21118         [$(config-machine) = x86_64] (modules-names): Likewise.
21119         ($(objpfx)tst-audit3): Remove dependency.
21120         ($(objpfx)tst-audit3.out): Likewise.
21121         ($(objpfx)tst-audit4): Likewise.
21122         ($(objpfx)tst-audit4.out): Likewise.
21123         ($(objpfx)tst-audit5): Likewise.
21124         ($(objpfx)tst-audit5.out): Likewise.
21125         ($(objpfx)tst-audit6): Likewise.
21126         ($(objpfx)tst-audit6.out): Likewise.
21127         ($(objpfx)tst-audit7): Likewise.
21128         ($(objpfx)tst-audit7.out): Likewise.
21129         (tst-audit3-ENV): Remove variable.
21130         (tst-audit4-ENV): Likewise.
21131         (tst-audit5-ENV): Likewise.
21132         (tst-audit6-ENV): Likewise.
21133         (tst-audit7-ENV): Likewise.
21134         [$(config-cflags-avx) = yes] (AVX-CFLAGS): Likewise.
21135         [$(config-cflags-avx) = yes] (CFLAGS-tst-audit4.c): Remove
21136         addition to variable.
21137         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod4a.c): Likewise.
21138         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod4b.c): Likewise.
21139         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod6b.c): Likewise.
21140         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod6c.c): Likewise.
21141         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod7b.c): Likewise.
21142         * sysdeps/x86_64/Makefile [$(subdir) = elf] (tests): Add
21143         tst-audit3, tst-audit4 and tst-audit5.
21144         [$(subdir) = elf && $(config-cflags-avx) = yes] (tests): Add
21145         tst-audit6 and tst-audit7.
21146         [$(subdir) = elf] (modules-names): Add audit modules for those
21147         tests.
21148         [$(subdir) = elf] ($(objpfx)tst-audit3): New dependency.
21149         [$(subdir) = elf] ($(objpfx)tst-audit3.out): Likewise.
21150         [$(subdir) = elf] ($(objpfx)tst-audit4): Likewise.
21151         [$(subdir) = elf] ($(objpfx)tst-audit4.out): Likewise.
21152         [$(subdir) = elf] ($(objpfx)tst-audit5): Likewise.
21153         [$(subdir) = elf] ($(objpfx)tst-audit5.out): Likewise.
21154         [$(subdir) = elf] ($(objpfx)tst-audit6): Likewise.
21155         [$(subdir) = elf] ($(objpfx)tst-audit6.out): Likewise.
21156         [$(subdir) = elf] ($(objpfx)tst-audit7): Likewise.
21157         [$(subdir) = elf] ($(objpfx)tst-audit7.out): Likewise.
21158         [$(subdir) = elf] (tst-audit3-ENV): New variable.
21159         [$(subdir) = elf] (tst-audit4-ENV): Likewise.
21160         [$(subdir) = elf] (tst-audit5-ENV): Likewise.
21161         [$(subdir) = elf] (tst-audit6-ENV): Likewise.
21162         [$(subdir) = elf] (tst-audit7-ENV): Likewise.
21163         [$(subdir) = elf && $(config-cflags-avx) = yes] (AVX-CFLAGS):
21164         Likewise.
21165         [$(subdir) = elf && $(config-cflags-avx) = yes]
21166         (CFLAGS-tst-audit4.c): Append $(AVX-CFLAGS).
21167         [$(subdir) = elf && $(config-cflags-avx) = yes]
21168         (CFLAGS-tst-auditmod4a.c): Likewise.
21169         [$(subdir) = elf && $(config-cflags-avx) = yes]
21170         (CFLAGS-tst-auditmod4b.c): Likewise.
21171         [$(subdir) = elf && $(config-cflags-avx) = yes]
21172         (CFLAGS-tst-auditmod6b.c): Likewise.
21173         [$(subdir) = elf && $(config-cflags-avx) = yes]
21174         (CFLAGS-tst-auditmod6c.c): Likewise.
21175         [$(subdir) = elf && $(config-cflags-avx) = yes]
21176         (CFLAGS-tst-auditmod7b.c): Likewise.
21177         * elf/tst-audit3.c: Move to ...
21178         * sysdeps/x86_64/tst-audit3.c: ... here.
21179         * elf/tst-audit4.c: Move to ...
21180         * sysdeps/x86_64/tst-audit4.c: ... here.
21181         * elf/tst-audit5.c: Move to ...
21182         * sysdeps/x86_64/tst-audit5.c: ... here.
21183         * elf/tst-audit6.c: Move to ...
21184         * sysdeps/x86_64/tst-audit6.c: ... here.
21185         * elf/tst-audit7.c: Move to ...
21186         * sysdeps/x86_64/tst-audit7.c: ... here.
21187         * elf/tst-auditmod3a.c: Move to ...
21188         * sysdeps/x86_64/tst-auditmod3a.c: ... here.
21189         * elf/tst-auditmod3b.c: Move to ...
21190         * sysdeps/x86_64/tst-auditmod3b.c: ... here.
21191         * elf/tst-auditmod4a.c: Move to ...
21192         * sysdeps/x86_64/tst-auditmod4a.c: ... here.
21193         * elf/tst-auditmod4b.c: Move to ...
21194         * sysdeps/x86_64/tst-auditmod4b.c: ... here.
21195         * elf/tst-auditmod5a.c: Move to ...
21196         * sysdeps/x86_64/tst-auditmod5a.c: ... here.
21197         * elf/tst-auditmod5b.c: Move to ...
21198         * sysdeps/x86_64/tst-auditmod5b.c: ... here.
21199         * elf/tst-auditmod6a.c: Move to ...
21200         * sysdeps/x86_64/tst-auditmod6a.c: ... here.
21201         * elf/tst-auditmod6b.c: Move to ...
21202         * sysdeps/x86_64/tst-auditmod6b.c: ... here.
21203         * elf/tst-auditmod6c.c: Move to ...
21204         * sysdeps/x86_64/tst-auditmod6c.c: ... here.
21205         * elf/tst-auditmod7a.c: Move to ...
21206         * sysdeps/x86_64/tst-auditmod7a.c: ... here.
21207         * elf/tst-auditmod7b.c: Move to ...
21208         * sysdeps/x86_64/tst-auditmod7b.c: ... here.
21210 2013-04-25  Paul Pluzhnikov  <ppluzhnikov@google.com>
21212         [BZ #15366]
21213         * sysdeps/generic/inttypes.h (PRId8, PRId16, etc.):
21214         define unconditionally.
21215         * sysdeps/generic/stdint.h (INT8_MIN, INT16_MIN, etc.):
21216         define unconditionally.
21217         (INT8_C, INT16_C, etc.): Likewise.
21219 2013-04-25  Maciej W. Rozycki  <macro@codesourcery.com>
21221         * csu/libc-start.c (__libc_start_main) [!SHARED]: Declare
21222         __ehdr_start with hidden visibility.
21224         * soft-fp/op-common.h (_FP_SQRT): s/sNAN/NAN/ in a comment.
21226 2013-04-24  Carlos O'Donell  <carlos@redhat.com>
21228         * math/libm-test.inc (cos_test): Use accurate hex constants.
21229         (sincost_test): Likewise.
21231 2013-04-24  Joseph Myers  <joseph@codesourcery.com>
21233         * math/libm-test.inc (catan_test): Add more tests.
21234         (catanh_test): Likewise.
21236         * math/s_catanf.c (__catanf): Use suffixed floating-point
21237         constants.
21238         * math/s_catanhf.c (__catanhf): Likewise.
21239         * math/s_catanhl.c (__catanhl): Likewise.
21240         * math/s_catanl.c (__catanl): Likewise.
21242         [BZ #15394]
21243         * math/s_catan.c (__catan): Calculate imaginary part of result
21244         with log1p not log unless computing log of number close to 0.
21245         * math/s_catanf.c (__catanf): Likewise.
21246         * math/s_catanl.c (__catanl): Likewise.
21247         * math/s_catanh.c (__catanh): Calculate real part of result with
21248         log1p not log unless computing log of number close to 0.
21249         * math/s_catanhf.c (__catanhf): Likewise.
21250         * math/s_catanhl.c (__catanhl): Likewise.
21251         * math/libm-test.inc (catan_test): Add more tests.
21252         (catanh_test): Likewise.
21253         * sysdeps/i386/fpu/libm-test-ulps: Update.
21254         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21256 2013-04-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
21258         * benchtests/Makefile: Mention files in which fast and slow
21259         paths of math functions are implemented.
21261 2013-04-23  Roland McGrath  <roland@hack.frob.com>
21263         * sysdeps/posix/timespec_get.c: New file.
21265 2013-04-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21267         * sysdeps/powerpc/power5/fpu/s_modf.c: New file: modf optimization for
21268         POWER.
21269         * sysdeps/powerpc/power5/fpu/s_modff.c: New file: modff optimization
21270         for POWER.
21271         * sysdeps/powerpc/powerpc64/power5/Implies: Add powerpc/power5 and
21272         powerpc/power5/fpu folders.
21273         * sysdeps/powerpc/powerpc32/power5/Implies: Likewise.
21274         * benchtests/Makefile: Add modf testcase.
21275         * benchtests/bench-modf.c: New file: Benchmark test for mo
21277 2013-04-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
21279         [BZ #14888]
21280         * time/Makefile (tests): Add tst-strptime-whitespace.
21281         * time/strptime_l.c (get_number): Use ISSPACE.
21282         (__strptime_internal): Likewise.
21283         * time/tst-strptime-whitespace.c: New test case.
21285 2013-04-23  Andreas Schwab  <schwab@linux-m68k.org>
21287         * nss/nss_files/files-init.c (TF): Don't initialize flexible array
21288         member.
21289         (_nss_files_init): Set it here.
21291 2013-04-23  Heiko Carstens  <heiko.carstens@de.ibm.com>
21293         * sysdeps/unix/sysv/linux/s390/bits/statfs.h: Change types of
21294         f_type, f_bsize, f_namelen, f_frsize, f_flags,and f_spare to
21295         unsigned.
21297 2013-04-22  Jan-Benedict Glaw  <jbglaw@getslash.de>
21299         * nss/getent.c (shadow_keys): Call endspent, not endpwent.
21301 2013-04-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
21303         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Compute results
21304         size just once.
21306 2013-04-21  David S. Miller  <davem@davemloft.net>
21308         * po/ru.po: Update Russion translation from translation project.
21310 2013-04-17  Adam Conrad  <adconrad@0c3.net>
21312         * sysdeps/unix/sysv/linux/sys/fsuid.h: Remove __wur from setfsuid
21313         and setfsgid.
21315 2013-04-17  Carlos O'Donell  <carlos@redhat.com>
21317         * configure.in: Remove i386 configure warning. Remove i386 case.
21318         * configure: Regenerate.
21319         * sysdeps/i386/configure.in: Raise error if config_machine is i386.
21320         Add example to error message.
21321         * sysdeps/i386/configure: Regenerate.
21323 2013-04-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
21325         * benchtests/Makefile (bench): Add cos, tan, slowcos and
21326         slowtan.
21327         * benchtests/cos-inputs: New file.
21328         * benchtests/slowcos-inputs: New file.
21329         * benchtests/slowcos.c: New file.
21330         * benchtests/slowtan-inputs: New file.
21331         * benchtests/slowtan.c: New file.
21332         * benchtests/tan-inputs: New file.
21334 2013-04-16  Roland McGrath  <roland@hack.frob.com>
21336         * rt/tst-aio7.c (do_test): Don't test O_RDONLY fd case, which is now
21337         considered kosher.
21339 2013-04-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
21341         * benchtests/Makefile: Include cppflags-iterator.mk to add
21342         -DNOT_IN_libc=1 to CPPFLAGS of all benchmark programs.
21344         * Makefile.in (bench-clean): New target.
21345         * benchtests/Makefile (bench-clean): Likewise.
21347 2013-04-16  David Holsgrove  <david.holsgrove@xilinx.com>
21349         * elf/elf.h: Add EM_MICROBLAZE and MicroBlaze relocations.
21351 2013-04-15  Thomas Schwinge  <thomas@codesourcery.com>
21353         * stdio-common/tstdiomisc.c: Fix coding-style violation.
21355 2013-04-15  Andreas Schwab  <schwab@suse.de>
21357         * nscd/grpcache.c (cache_addgr): Properly check for short write.
21358         * nscd/initgrcache.c (addinitgroupsX): Likewise.
21359         * nscd/pwdcache.c (cache_addpw): Likewise.
21360         * nscd/servicescache.c (cache_addserv): Likewise.  Don't write
21361         more than recsize.
21363 2013-04-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
21365         * benchtests/Makefile (bench): Write all output to
21366         bench-out.tmp together.
21368 2013-04-15  Andreas Schwab  <schwab@suse.de>
21370         * nscd/nscd.c (main): Don't fork again after closing files.
21372 2013-04-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
21374         * libio/tst-fwrite-error.c (do_test): Fix BUF array definition.
21376         * benchtests/Rules (bench-deps): Collect dependencies into a
21377         single variable.  Add Makefile to dependencies.
21378         ($(objpfx)bench-%.c): Depend on bench-deps.
21380 2013-04-12  Roland McGrath  <roland@hack.frob.com>
21381             Xavier Roche  <roche+kml2@exalead.com>
21383         [BZ #15361]
21384         * sysdeps/pthread/aio_fsync.c (aio_fsync): Don't check open modes,
21385         just that it's a file descriptor.
21386         * manual/llio.texi (Synchronizing AIO Operations): Update description
21387         for EBADF error from aio_fsync.
21389 2013-04-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
21391         * Rules (bench): Move target definition...
21392         * benchtests/Makefile: ... here.
21394 2013-04-11  Carlos O'Donell  <carlos@redhat.com>
21396         * math/libm-test.inc (cos_test): Fix PI/2 test.
21397         (sincos_test): Likewise.
21398         * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate.
21399         * sysdeps/i386/fpu/libm-test-ulps: Regenerate.
21401 2013-04-11  Andreas Schwab  <schwab@suse.de>
21403         [BZ #13988]
21404         * stdio-common/vfscanf.c (_IO_vfwscanf): When parsing a float
21405         accept exponent character only when digits were seen.
21406         * stdio-common/Makefile (tests): Add bug26.
21407         * stdio-common/bug26.c: New file.
21409         [BZ #14293]
21410         * elf/dl-load.c (_dl_init_paths): Mark decomposed RUNPATH as
21411         non-freeable.
21413 2013-04-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
21415         * Makeconfig (rtld-prefix): Define built linker prefix.
21416         * Rules (run-bench): Use it.
21417         * math/Makefile (run-regen-ulps): Likewise.
21419         * Rules (bench): Remove eval.
21421 2013-04-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
21422             Roland McGrath  <roland@hack.frob.com>
21423             Ondrej Bilka  <neleai@seznam.cz>
21425         [BZ #15346]
21426         * time/getdate.c: Include ctype.h and alloca.h.
21427         (__getdate_r): Trim leading and trailing spaces of input.
21428         * time/tst-getdate.c (tests): Add tests with leading and
21429         trailing spaces.
21431 2013-04-08  Roland McGrath  <roland@hack.frob.com>
21433         [BZ #14280]
21434         * sysdeps/mach/hurd/bits/ioctls.h (_IOTS): Cast to enum __ioctl_datum
21435         when computing value.
21437 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
21439         * math/README.libm-test (How can I generate "libm-test-ulps"?):
21440         Use testrun.sh to run libm tests.
21442         [BZ #15309]
21443         * elf/dl-open.c (dl_open_worker): memset all of seen array.
21445 2013-04-06  Marko Myllynen  <myllynen@redhat.com>
21447         [BZ #15264]
21448         * locales/fi_FI (LC_MESSAGES): Define yesstr and nostr.
21450 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
21452         * Makefile.in (regen-ulps): New target.
21453         * math/Makefile [ifneq (no,$(PERL)]: Declare regen-ulps with .PHONY.
21454         [ifneq (no,$(PERL)] (run-regen-ulps): New variable.
21455         [ifneq (no,$(PERL)] (regen-ulps): New target.
21456         [ifeq (no,$(PERL)] (regen-ulps): New target.
21457         * math/libm-test.inc (ulps_file_name): Define.
21458         (output_dir): New variable.
21459         (options): Add "output-dir" option.
21460         (parse_opt): Handle 'o' case.
21461         (main): If output_dir is non-NULL use it as a prefix
21462         otherwise use "".
21463         * math/README.libm-test: Update `How can I generate "libm-test-ulps"?'
21465 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
21467         [BZ #10060, #10062]
21468         * aclocal.m4 (LIBC_COMPILER_BUILTIN_INLINED): New macro.
21469         * sysdeps/i386/configure.in: Use LIBC_COMPILER_BUILTIN_INLINED and
21470         fail configure if __sync_val_compare_and_swap is not inlined.
21471         * sysdeps/i386/configure: Regenerate.
21472         * configure.in: Build for i686 when configured for i386.
21473         * configure: Regenerate.
21474         * README: Remove i386 reference.
21476 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
21478         * sysdeps/s390/s390-32/sysdep.h: Undefine PSEUDO before redefinition.
21479         * sysdeps/s390/s390-64/sysdep.h: Likewise.
21481 2013-04-05  Thomas Schwinge  <thomas@codesourcery.com>
21483         * stdio-common/tstdiomisc.c (snanval, msnanval, lsnanval)
21484         (lmsnanval): New variables.
21485         (F): Add conversion tests.
21486         * stdlib/tst-strtod6.c (do_test): Add issignaling tests.
21487         * stdlib/Makefile ($(objpfx)tst-strtod6): Depend on $(link-libm).
21489         * stdio-common/tstdiomisc.c (F): Properly collect individual
21490         tests' results.
21492         [BZ #14686, #15336]
21493         * sysdeps/ieee754/dbl-64/urem.h (nNAN, NAN): Remove definitions.
21494         * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder):
21495         Instead, use input NaN values or generate a qNaN by arithmetic
21496         operation.  Also fix bugs to comply with the standard.
21497         * math/libm-test.inc (remainder_test): Add more tests.
21499         [BZ #15335, #15342]
21500         * sysdeps/ieee754/dbl-64/upow.h (NaNQ): Remove definitions.
21501         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Instead, use
21502         input NaN values or generate a qNaN by arithmetic operation.
21504         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Remove
21505         unreachable code.
21507         * sysdeps/ieee754/dbl-64/usncs.h (NAN): Removed unused
21508         definitions.
21510 2013-04-03  Joseph Myers  <joseph@codesourcery.com>
21512         [BZ #14478]
21513         * math/s_cexp.c (__cexp): Ensure underflow exception occurs for
21514         underflowed result.
21515         * math/s_cexpf.c (__cexpf): Likewise.
21516         * math/s_cexpl.c (__cexpl): Likewise.
21517         * math/libm-test.inc (cexp_test): Add more tests.
21519 2013-04-03  Andreas Schwab  <schwab@suse.de>
21521         [BZ #15330]
21522         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Allocate results and
21523         order arrays from heap if bigger than alloca cutoff.
21525 2013-04-03  Thomas Schwinge  <thomas@codesourcery.com>
21527         * sysdeps/i386/fpu/math-tests.h (SNAN_TESTS_float)
21528         (SNAN_TESTS_double): Refer to GCC PR56831.
21529         * sysdeps/powerpc/math-tests.h (SNAN_TESTS_TYPE_CAST): Refer to
21530         GCC PR56828.
21532 2013-04-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
21534         * Rules (bench): Move bench.out after the run is complete.
21536         * Rules (bench): Echo currently running benchmark.
21538         * benchtests/Makefile (bench): Add atan and slowatan.
21539         * benchtests/atan-inputs: New file.
21540         * benchtests/slowatan-inputs: New file.
21541         * benchtests/slowatan.c: New file.
21543         * sysdeps/ieee754/dbl-64/mpa.h (TWO): Remove definition.
21544         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Replace TWO with
21545         its value.
21547         [BZ #15305]
21548         * sysdeps/unix/sysv/linux/kernel-features.h
21549         [__LINUX_KERNEL_VERSION >= 0x02061d]: Define
21550         __ASSUME_XFS_RESTRICTED_CHOWN.
21551         * sysdeps/unix/sysv/linux/pathconf.c
21552         (__statfs_chown_restricted) [!__ASSUME_XFS_RESTRICTED_CHOWN]:
21553         Save and restore errno.
21555 2013-04-02  Joseph Myers  <joseph@codesourcery.com>
21557         [BZ #15327]
21558         * math/s_cacosh.c (__cacosh): Implement for finite nonzero
21559         arguments using __kernel_casinh.
21560         * math/s_cacoshf.c (__cacoshf): Implement for finite nonzero
21561         arguments using __kernel_casinhf.
21562         * math/s_cacoshl.c (__cacoshl): Implement for finite nonzero
21563         arguments using __kernel_casinhl.
21564         * math/libm-test.inc (cacosh_test): Add more tests.
21565         * sysdeps/i386/fpu/libm-test-ulps: Update.
21566         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21568 2013-04-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
21570         * sysdeps/ieee754/dbl-64/mpa.h (HALFRAD): Define as TWO23.
21571         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Use mantissa_t.
21573         * bench/Makefile (bench): Add sin and slowsin.
21574         * benchtests/sin-inputs: New file.
21575         * benchtests/slowsin-inputs: New file.
21576         * benchtests/slowsin.c: New file.
21578         * benchtests/Makefile: Add benchmarks for slowpow and slowexp.
21579         (bench): Add slowexp and slowpow.
21580         (exp-ITER): Increase iterations.
21581         (pow-ITER): Likewise.
21582         * benchtests/exp-inputs: Change input.
21583         * benchtests/pow-inputs: Likewise.
21584         * benchtests/slowexp-inputs: New file.
21585         * benchtests/slowexp.c: New file.
21586         * benchtests/slowpow-inputs: New file.
21587         * benchtests/slowpow.c: New file.
21589 2013-04-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21591         * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Remove branch prediction
21592         instructions.
21593         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: Likewise.
21594         * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Likewise.
21595         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
21596         * benchtests/Makefile: Add rint benchtest.
21597         * benchtests/rint-inputs: Input for rint benchtest.
21599 2013-04-02  Thomas Schwinge  <thomas@codesourcery.com>
21601         * Versions.def (libm): Add GLIBC_2.18.
21602         * include/math.h [!_ISOMAC] (__issignaling, __issignalingf): Add
21603         hidden libm prototypes.
21604         [!_ISOMAC && !__NO_LONG_DOUBLE_MATH] (__issignalingl): Likewise.
21605         * math/Makefile (libm-calls): Add s_issignaling.
21606         * math/Versions (libm: GLIBC_2.18): Add __issignaling,
21607         __issignalingf, __issignalingl.  Adjust all libm.abilist files.
21608         * math/bits/mathcalls.h [__USE_GNU] (__issignaling): New prototype
21609         declaration.
21610         * math/math.h [__USE_GNU] (issignaling): New macro.
21611         * sysdeps/ieee754/flt-32/s_issignalingf.c: New file.
21612         * sysdeps/ieee754/dbl-64/s_issignaling.c: Likewise.
21613         * sysdeps/ieee754/dbl-64/wordsize-64/s_issignaling.c: Likewise.
21614         * sysdeps/ieee754/ldbl-96/s_issignalingl.c: Likewise.
21615         * sysdeps/ieee754/ldbl-128/s_issignalingl.c: Likewise.
21616         * sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c: Likewise.
21617         * manual/arith.texi (issignaling): New section.
21618         * manual/libm-err-tab.pl (@all_functions): Update comment.
21619         * math/gen-libm-test.pl (parse_args): Apply special handling for
21620         issignaling.
21621         * math/libm-test.inc (print_float, issignaling_test): New
21622         functions.
21623         (check_float_internal): Add issignaling checks.
21624         * sysdeps/generic/math-tests.h (SNAN_TESTS_TYPE_CAST): Provide
21625         default definition.
21626         * sysdeps/powerpc/math-tests.h: New file.
21627         * math/basic-test.c (TEST_FUNC, TEST_TRUNC): Add issignaling
21628         tests.
21629         * math/test-snan.c (TEST_FUNC): Likewise.
21631 2013-03-30  David S. Miller  <davem@davemloft.net>
21633         * po/de.po: Update from translation team.
21635 2013-03-30  Joseph Myers  <joseph@codesourcery.com>
21637         [BZ #10357]
21638         * math/k_casinh.c (__kernel_casinh): Handle arguments with
21639         imaginary part less than 1.0 and real part less than 0.5
21640         specially.
21641         * math/k_casinhf.c (__kernel_casinhf): Likewise.
21642         * math/k_casinhl.c (__kernel_casinhl): Likewise.
21643         * math/libm-test.inc (UNDERFLOW_EXCEPTION_OK_DOUBLE): New macro.
21644         (cacos_test): Add more tests.
21645         (casin_test): Likewise.
21646         (casinh_test): Likewise.
21647         * sysdeps/i386/fpu/libm-test-ulps: Update.
21648         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21650 2013-03-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
21652         * sysdeps/powerpc/power4/fpu/mpa-arch.h (INTEGER_OF): Replace
21653         ONE with its value.
21655         * sysdeps/ieee754/dbl-64/mpa.h (ONE, MONE): Remove defines.
21656         (__pow_mp): Replace ONE and MONE with their values.
21657         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
21658         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Likewise.
21659         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
21660         * sysdeps/ieee754/dbl-64/mptan.c (__mptan): Likewise.
21661         * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
21662         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
21664         * sysdeps/ieee754/dbl-64/s_tan.c: Fix formatting.
21666         * sysdeps/ieee754/dbl-64/mpa.h (ZERO, MZERO): Remove defines.
21667         (__pow_mp): Replace ZERO and MZERO with their values.
21668         * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Likewise.
21669         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
21670         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
21671         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
21672         * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
21673         * sysdeps/powerpc/power4/fpu/mpa.c (__mul): Likewise.
21674         (__sqr): Likewise.
21676         * sysdeps/ieee754/dbl-64/s_atan.c: Fix formatting.
21678         * sysdeps/ieee754/dbl-64/e_log.c: Fix formatting.
21680 2013-03-28  Roland McGrath  <roland@hack.frob.com>
21682         * include/stdlib.h [!SHARED] (__call_tls_dtors):
21683         Declare with __attribute__ ((weak)).
21684         * stdlib/exit.c (__libc_atexit) [!SHARED]:
21685         Call __call_tls_dtors only if it's not NULL.
21687 2013-03-28  Roland McGrath  <roland@hack.frob.com>
21689         * csu/libc-start.c (__libc_start_main) [!SHARED]: If _dl_aux_init
21690         didn't do it already, then set _dl_phdr and _dl_phnum based on the
21691         magic __ehdr_start linker symbol if it's defined.
21692         * sysdeps/mach/hurd/i386/init-first.c (init1) [!SHARED]: Don't set
21693         them up here if it was already done.
21695         * elf/dl-support.c (_dl_phdr): Make pointer to const.
21696         (_dl_aux_init): Use const in cast when setting it.
21697         * sysdeps/mach/hurd/i386/init-first.c (init1): Remove superfluous cast.
21698         * sysdeps/generic/ldsodefs.h [!SHARED] (_dl_phdr): Update decl.
21699         * csu/libc-tls.c (__libc_setup_tls): Make PHDR pointer to const.
21701         * sysdeps/generic/ldsodefs.h [!SHARED] (_dl_phdr, _dl_phnum):
21702         Declare them here.
21703         * elf/dl-iteratephdr.c [!SHARED] (_dl_phdr, _dl_phnum): Not here.
21704         * csu/libc-tls.c: Nor here.
21705         * sysdeps/mach/hurd/i386/init-first.c (init1): Nor here.
21707         * sysdeps/posix/libc_fatal.c: Don't include <sys/syslog.h>.
21708         (__libc_message): Never call vsyslog.
21710 2013-03-28  Alan Modra  <amodra@gmail.com>
21712         * sysdeps/powerpc/powerpc32/start.S (cfi_startproc, cfi_endproc):
21713         Define as empty.
21714         * sysdeps/powerpc/powerpc64/start.S (cfi_startproc, cfi_endproc):
21715         Likewise.
21717 2013-03-28  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21719         [BZ #15214]
21720         * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Fix spurious
21721         underflow.
21722         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
21724 2013-03-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
21726         [BZ #15304]
21727         * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_initgroups_dyn):
21728         Don't add gid passed as argument.
21730         * sysdeps/ieee-754/dbl-64/e_atan2.c: Reformat.
21732 2013-03-27  Joseph Myers  <joseph@codesourcery.com>
21734         [BZ #15307]
21735         * math/k_casinh.c (__kernel_casinh): Handle arguments with
21736         imaginary part between 1.0 and 1.5 and real part less than 0.5
21737         specially.
21738         * math/k_casinhf.c (__kernel_casinhf): Likewise.
21739         * math/k_casinhl.c (__kernel_casinhl): Likewise.
21740         * math/libm-test.inc (cacos_test): Add more tests.
21741         (casin_test): Likewise.
21742         (casinh_test): Likewise.
21743         * sysdeps/i386/fpu/libm-test-ulps: Update.
21744         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21746 2013-03-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
21748         * sysdeps/ieee754/dbl-64/mpa.c (__acr): Use integral
21749         constants.
21750         (norm): Likewise.
21751         (denorm): Likewise.
21752         (__dbl_mp): Likewise.
21753         (add_magnitudes): Likewise.
21754         (sub_magnitudes): Likewise.
21755         (__add): Likewise.
21756         (__sub): Likewise.
21757         (__mul): Likewise.
21758         (__sqr): Likewise.
21759         (__inv): Likewise.
21760         (__dvd): Likewise.
21762         * sysdeps/ieee754/dbl-64/branred.c (__branred): Remove
21763         commented code.
21764         * sysdeps/ieee754/dbl-64/dosincos.c (__dubsin): Likewise.
21765         (__dubcos): Likewise.
21766         * sysdeps/ieee754/dbl-64/e_asin.c (__ieee754_asin): Likewise.
21767         (__ieee754_acos): Likewise.
21768         * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Likewise.
21769         * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Likewise.
21770         (__exp1): Likewise.
21771         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
21772         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Likewise.
21773         (log1): Likewise.
21774         (my_log2): Likewise.
21775         (checkint): Likewise.
21776         * sysdeps/ieee754/dbl-64/e_remainder.c
21777         (__ieee754_remainder): Likewise.
21778         * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
21779         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Likewise.
21780         (bsloww): Likewise.
21781         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
21783         * sysdeps/ieee754/dbl-64/mpa-arch.h: New file.
21784         * sysdeps/ieee754/dbl-64/mpa.c (norm): Use MANTISSA_T and
21785         MANTISSA_STORE_T to store computations on mantissa.  Use
21786         macros for rounding and division.
21787         (denorm): Likewise.
21788         (__dbl_mp): Likewise.
21789         (add_magnitudes): Likewise.
21790         (sub_magnitudes): Likewise.
21791         (__mul): Likewise.
21792         (__sqr): Likewise.
21793         * sysdeps/ieee754/dbl-64/mpa.h: Include mpa-arch.h.  Define
21794         powers of two in terms of TWOPOW macro.
21795         (mp_no): Make type of mantissa as MANTISSA_T.
21796         [!RADIXI]: Define RADIXI.
21797         [!TWO52]: Define TWO52.
21798         * sysdeps/powerpc/power4/fpu/mpa-arch.h: New file.
21800 2013-03-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21802         * sysdeps/powerpc/fpu/s_llround.c: Fix libm ABI issue with missing
21803         llroundl symbol when building for PPC32.
21805 2013-03-24  Mark H Weaver  <mhw@netris.org>
21807         * manual/arith.texi (Normalization Functions): Fix prototypes for
21808         scalbn, scalbnf, scalbnl, scalbln, scalblnf, and scalblnl.
21810 2013-03-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21812         [BZ #13889]
21813         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Increase the
21814         high value to check if expl overflow.
21815         * sysdeps/ieee754/ldbl-128ibm/w_expl.c (__expl): Fix threshold constants
21816         to check for underflow and overflow.
21817         * math/libm-test.inc: Add exp test.
21819 2013-03-21  Dmitry V. Levin  <ldv@altlinux.org>
21821         [BZ #11120]
21822         * sysdeps/x86_64/strcmp.S: Replace all occurrences of NOT_IN_lib
21823         with NOT_IN_libc.
21825 2013-03-21  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21827         * sysdeps/powerpc/fpu/w_sqrt.c (compat_symbol): Add sqrtl compat
21828         symbol.
21830 2013-03-21  Thomas Schwinge  <thomas@codesourcery.com>
21832         * math/gen-libm-test.pl (parse_args, special_functions): Properly
21833         wrap blocks consisting of several statements.
21835         * sysdeps/generic/math-tests.h: New file.
21836         * sysdeps/i386/fpu/math-tests.h: Likewise.
21837         * math/test-snan.c: Include it.
21838         (TEST_FUNC): Use SNAN_TESTS to short-circuit certain tests.
21840 2013-03-21  Joseph Myers  <joseph@codesourcery.com>
21842         [BZ #15285]
21843         * sysdeps/ieee754/ldbl-128/e_j0l.c: Include <float.h>.
21844         (__ieee754_j0l): Do not improve calculations using cos of twice
21845         input for inputs above LDBL_MAX / 2.0L.
21846         (__ieee754_y0l): Likewise.
21847         * sysdeps/ieee754/ldbl-128/e_j1l.c: Include <float.h>.
21848         (__ieee754_j1l): Do not improve calculations using cos of twice
21849         input for inputs above LDBL_MAX / 2.0L.
21850         (__ieee754_y1l): Likewise.
21851         * math/libm-test.inc (j0_test): Add another test.
21852         (j1_test): Likewise.
21853         (y0_test): Likewise.
21854         (y1_test): Likewise.
21855         * sysdeps/i386/fpu/libm-test-ulps: Update.
21857 2013-03-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
21859         * Rules ($(objpfx)bench-%.c): Include code from a C source
21860         file.
21862 2013-03-21  Joseph Myers  <joseph@codesourcery.com>
21864         [BZ #15287]
21865         * math/k_casinh.c (__kernel_casinh): Handle arguments with
21866         imaginary part 1.0 and real part less than 0.5 specially.
21867         * math/k_casinhf.c (__kernel_casinhf): Likewise.
21868         * math/k_casinhl.c (__kernel_casinhl): Likewise.
21869         * math/libm-test.inc (cacos_test): Add more tests.
21870         (casin_test): Likewise.
21871         (casinh_test): Likewise.
21872         * sysdeps/i386/fpu/libm-test-ulps: Update.
21873         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21875 2013-03-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
21877         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Use HALFRAD.
21878         * sysdeps/ieee754/dbl-64/sincos32.c (__mpranred): Likewise.
21880 2013-03-20  Joseph Myers  <joseph@codesourcery.com>
21882         * aclocal.m4 (LIBC_CONFIG_VAR): New autoconf macro.
21883         * config.make.in (config-cflags-sse4): Remove variable.
21884         (config-cflags-avx): Likewise.
21885         (config-cflags-sse2avx): Likewise.
21886         (config-cflags-novzeroupper): Likewise.
21887         (config-asflags-i686): Likewise.
21888         (have-mfma4): Likewise.
21889         (have-as-vis3): Likewise.
21890         (MIG): Likewise.
21891         * configure.in (MIG): Do not AC_SUBST.
21892         (libc_cv_cc_nofma): Move AC_SUBST next to configure test.
21893         (libc_cv_cc_sse4): Do not AC_SUBST.
21894         (libc_cv_cc_avx): Likewise.
21895         (libc_cv_cc_sse2avx): Likewise.
21896         (libc_cv_cc_novzeroupper): Likewise.
21897         (libc_cv_cc_fma4): Likewise.
21898         (libc_cv_as_i686): Likewise.
21899         (libc_cv_sparc_as_vis3): Likewise.
21900         * sysdeps/i386/configure.in (config-cflags-sse4): Set using
21901         LIBC_CONFIG_VAR.
21902         (config-asflags-i686): Likewise.
21903         (config-cflags-avx): Likewise.
21904         (config-cflags-sse2avx): Likewise.
21905         (have-mfma4): Likewise.
21906         (config-cflags-novzeroupper): Likewise.
21907         * sysdeps/mach/configure.in (MIG): Likewise.
21908         * sysdeps/sparc/configure.in (have-as-vis3): Likewise.
21909         * sysdeps/x86_64/configure.in (config-cflags-sse4): Set using
21910         LIBC_CONFIG_VAR.
21911         (config-cflags-avx): Likewise.
21912         (config-cflags-sse2avx): Likewise.
21913         (have-mfma4): Likewise.
21914         (config-cflags-novzeroupper): Likewise.
21915         * configure: Regenerated.
21916         * sysdeps/i386/configure: Likewise.
21917         * sysdeps/mach/configure: Likewise.
21918         * sysdeps/sparc/configure: Likewise.
21919         * sysdeps/x86_64/configure: Likewise.
21921 2013-03-20  Roland McGrath  <roland@hack.frob.com>
21923         [BZ #14812]
21924         * locale/programs/localedef.c (options): Put N_ translation marker
21925         on argument names, not just descriptions.
21927 2013-03-20  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
21929         * Makerules ($(inst_libdir)/libc.so): Use $(rtlddir).
21931 2013-03-20  Ondřej Bílka  <neleai@seznam.cz>
21933         [BZ #14176]
21934         * stdlib/stdlib.h (mblen, mbtowc, wctomb): Remove __wur.
21936 2013-03-19  Roland McGrath  <roland@hack.frob.com>
21938         * sysdeps/posix/libc_fatal.c: Include <sys/mman.h>.
21939         [!WRITEV_FOR_FATAL] (writev_for_fatal): New function.
21940         [!WRITEV_FOR_FATAL] (WRITEV_FOR_FATAL): New macro; call that.
21941         [!BEFORE_ABORT] (before_abort): New function.
21942         [!BEFORE_ABORT] (BEFORE_ABORT): New macro; call that.
21943         * sysdeps/unix/sysv/linux/libc_fatal.c: Trim includes.
21944         (writev_for_fatal): New function.
21945         (WRITEV_FOR_FATAL): New macro; call that.
21946         (backtrace_and_maps): New function.
21947         (BEFORE_ABORT): New macro; call that.
21948         (struct str_list): Type removed.
21949         (__libc_message, __libc_fatal): Functions removed.
21950         Include <sysdeps/posix/libc_fatal.c> instead.
21952 2013-03-19  Joseph Myers  <joseph@codesourcery.com>
21954         * math/k_casinhf.c (__kernel_casinhf): Consistently use float
21955         constants.
21956         * math/k_casinhl.c (__kernel_casinhl): Consistently use long
21957         double constants.
21959 2013-03-19  Andreas Schwab  <schwab@suse.de>
21961         * sysdeps/gnu/configure.in: Set libc_cv_rtldir for s390x.
21962         * sysdeps/gnu/configure: Regenerate.
21964         * configure.in: Substitute libc_cv_rtlddir.
21965         * configure: Regenerate.
21966         * config.make.in (rtlddir): Set from libc_cv_rtlddir.
21967         * Makeconfig (rtlddir, inst_rtlddir): New variables.
21968         (rtld-LDFLAGS): Use them with $(rtld-installed-name).
21969         * elf/Makefile (install-others, CFLAGS-interp.c)
21970         (ldso_install, common-ldd-rewrite): Likewise.
21971         ($(inst_rtlddir)/$(rtld-installed-name)): Renamed from
21972         $(inst_slibdir)/$(rtld-installed-name).
21973         * scripts/rellns-sh: Add -p option.
21974         * Makerules (make-shlib-link): Use rellns-sh to get relative name
21975         for source.
21977 2013-03-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
21979         * manual/nptl.texi: Renamed to ...
21980         * manual/threads.texi: ... this.
21981         * manual/Makefile (chapters): Update.
21983 2013-03-18  Roland McGrath  <roland@hack.frob.com>
21985         [BZ #14812]
21986         * argp/argp-parse.c (argp_default_options): Put N_ translation marker
21987         on argument names, not just descriptions.
21988         * malloc/memusagestat.c (options): Likewise.
21989         * nss/getent.c (options): Likewise.
21991 2013-03-18  Benno Schulenberg  <bensberg@justemail.net>
21993         [BZ #14812]
21994         * iconv/iconv_prog.c (options): Put N_ translation marker
21995         on argument names, not just descriptions.
21996         * iconv/iconvconfig.c (options): Likewise.
21998 2013-03-18  Ondrej Bilka  <neleai@seznam.cz>
22000         * sysdeps/x86_64/strlen.S: Replace with new SSE2 based
22001         implementation which is faster on all x86_64 architectures.
22002         Tested on AMD, Intel Nehalem, SNB, IVB.
22003         * sysdeps/x86_64/strnlen.S: Likewise.
22005         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
22006         Remove all multiarch strlen and strnlen versions.
22007         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update.
22008         Remove strlen and strnlen related parts.
22010         * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: Update.
22011         Inline strlen part.
22012         * sysdeps/x86_64/multiarch/strcat-ssse3.S: Likewise.
22014         * sysdeps/x86_64/multiarch/strlen.S: Remove.
22015         * sysdeps/x86_64/multiarch/strlen-sse2-no-bsf.S: Likewise.
22016         * sysdeps/x86_64/multiarch/strlen-sse2-pminub.S: Likewise.
22017         * sysdeps/x86_64/multiarch/strlen-sse4.S: Likewise.
22018         * sysdeps/x86_64/multiarch/strnlen.S: Likewise.
22019         * sysdeps/x86_64/multiarch/strnlen-sse2-no-bsf.S: Likewise.
22021 2013-03-17  Carlos O'Donell  <carlos@redhat.com>
22023         * manual/memory.texi (Malloc Tunable Parameters):
22024         Sort parameters alphabetically. Add comments for missing entries.
22026 2013-03-17  David S. Miller  <davem@davemloft.net>
22028         * sysdeps/sparc/fpu/libm-test-ulps: Update.
22030 2013-03-16  Joseph Myers  <joseph@codesourcery.com>
22032         [BZ #15283]
22033         * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_y1l): Correct test
22034         for arguments at most half maximum finite value.
22035         * math/libm-test.inc (j0_test): Add more tests.
22036         (j1_test): Likewise.
22037         (y0_test): Likewise.
22038         (y1_test): Likewise.
22039         * sysdeps/i386/fpu/libm-test-ulps: Update.
22040         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
22042         [BZ #14155]
22043         * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee754_j0l): Do not compute
22044         1 / x and functions P and Q for arguments above 0x1p256L.
22045         (__ieee754_y0l): Likewise.
22046         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
22047         (__ieee754_y1l): Likewise.
22048         * math/libm-test.inc (j0_test): Do not allow spurious underflows.
22049         (j1_test): Likewise.
22050         (y0_test): Likewise.
22051         (y1_test): Likewise.
22053 2013-03-16  Thomas Schwinge  <thomas@codesourcery.com>
22055         * math/test-snan.c (TEST_FUNC): Add and use minus_sNaN_var
22056         variable.
22058 2013-03-15  Roland McGrath  <roland@hack.frob.com>
22060         * elf/dl-support.c (_dl_aux_init): Ignore zero value for AT_PAGESZ.
22061         (_dl_non_dynamic_init): Don't set _dl_pagesize; it will never be
22062         zero since it's initialized to EXEC_PAGESIZE.
22064         * sysdeps/unix/sysv/linux/ldsodefs.h
22065         (_dl_non_dynamic_init, _dl_aux_init): Move declarations to ...
22066         * sysdeps/generic/ldsodefs.h: ... here.
22068 2013-03-15  Thomas Schwinge  <thomas@codesourcery.com>
22070         * math/libm-test.inc (ldexp_test): Add missing START/END markers.
22072         * sysdeps/powerpc/fpu/test-powerpc-snan.c: Rename to
22073         math/test-snan.c.
22074         * math/test-snan.c: Renamed from
22075         sysdeps/powerpc/fpu/test-powerpc-snan.c.
22076         * math/Makefile (tests): Add test-snan.
22077         * sysdeps/powerpc/fpu/Makefile (libm-tests): Don't add
22078         test-powerpc-snan.
22080         * math/basic-test.c (TEST_FUNC): Replace NANFUNC argument with
22081         SUFFIX.  Initialize qNaN_var with __builtin_nan family of
22082         functions.
22083         (TEST_TRUNC): Add SUFFIX argument.  Initialize qNaN_var with
22084         __builtin_nan family of functions.
22085         * math/libm-test.inc (initialize): Initialize qnan_value with
22086         __builtin_nan family of functions.
22087         * sysdeps/powerpc/fpu/test-powerpc-snan.c (SNANf, SNAN, SNANl):
22088         Remove variables.
22089         (init_signaling_nan, snan_float, snan_double, snan_ldouble):
22090         Remove functions.
22091         (TEST_FUNC): Add SUFFIX argument.  Move sNaN_var into static
22092         storage class.  Initialize qNaN_var and sNaN_var with
22093         __builtin_nan and __builtin_nans families of functions,
22094         respectively.
22096         * math/libm-test.inc (acosh_test): Also test with qNaN input.
22097         (sqrt_test): Remove duplicate test with qNaN input.
22098         (lrint_test, llrint_test, lround_test, llround_test, rint_test)
22099         (round_test, signbit_test, significand_test): Note missing +/-Inf
22100         as well as qNaN tests.
22102         * math/basic-test.c (TEST_FUNC, TEST_TRUNC): Rename NaN_var to
22103         qNaN_var.  Fix a few strings, too.
22104         * math/libm-test.inc (nan_value): Rename to qnan_value.
22105         * math/gen-libm-test.pl (%beautify): Adjust to that.
22106         * math/bits/mathcalls.h (nan): Refer to qNaN instead of NaN.
22107         * math/test-misc.c (main): Likewise.
22108         * sysdeps/ieee754/bits/nan.h (__nan_bytes, __nan_union): Rename
22109         to __qnan_bytes, and __qnan_union, respectively.
22110         * ports/sysdeps/mips/bits/nan.h (__nan_bytes, __nan_union):
22111         Likewise.
22112         * stdio-common/tstdiomisc.c (nanval, lnanval): Rename to qnanval,
22113         and lqnanval, respectively.
22114         * sysdeps/powerpc/bits/fenv.h: Fix usage of NaN/qNaN/sNaN.
22115         * sysdeps/powerpc/fpu/fenv_libc.h: Likewise.
22116         * sysdeps/powerpc/fpu/test-powerpc-snan.c (TEST_FUNC): Likewise,
22117         and rename NaN_var to qNaN_var, and SNaN_var to sNaN_var.
22119         * math/libm-test.inc (fpstack_test) [__x86_64__]: Enable test.
22120         * math/test-misc.c (main) [__x86_64__]: Enable test for long
22121         doubles.
22123         * math/test-misc.c (main): Fix copy'n'pastos.
22124         * misc/tst-efgcvt.c (special): Likewise.
22126         * stdio-common/printf_fp.c (__isinfl_internal, __isnanl_internal):
22127         Remove declarations.
22129 2013-03-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
22131         * sysdeps/ieee754/dbl-64/mpa-arch.h: Remove.
22132         * sysdeps/ieee754/dbl-64/mpa.c: Revert last change.
22133         * sysdeps/ieee754/dbl-64/mpa.h: Revert last change.
22134         * sysdeps/powerpc/power4/fpu/mpa-arch.h: Remove.
22136 2013-03-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22138         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET): Add
22139         macro to return vdso values correctly in IFUNC implementations.
22140         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c (__gettimeofday):
22141         Optimization by using IFUNC.
22143 2013-03-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
22144             Richard Henderson  <rth@redhat.com>
22145             Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
22147         * Makefile.in (bench): New target.
22148         * NEWS: Mention the benchmark framework.
22149         * Rules (bench): Likewise.
22150         (binaries-bench): Generate binaries for functions to
22151         benchmark.
22152         * benchtests/Makefile: New makefile for benchmark tests.
22153         * benchtests/bench-skeleton.c: New skeleton file for benchmark
22154         programs.
22155         * benchtests/exp-inputs: New input file for EXP function.
22156         * benchtests/pow-inputs: New input file for POW function.
22157         * scripts/bench.pl: New script to generate source files for
22158         benchmark programs.
22160 2013-03-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
22162         * sysdeps/ieee754/dbl-64/mpa-arch.h: New file.
22163         * sysdeps/ieee754/dbl-64/mpa.c (norm): Use MANTISSA_T to store
22164         computations on mantissa.  Use macros for rounding and
22165         division.
22166         (denorm): Likewise.
22167         (__dbl_mp): Likewise.
22168         (add_magnitudes): Likewise.
22169         (sub_magnitudes): Likewise.
22170         (__mul): Likewise.
22171         (__sqr): Likewise.
22172         * sysdeps/ieee754/dbl-64/mpa.h: Include mpa-arch.h.  Define
22173         powers of two in terms of TWOPOW macro.
22174         (mp_no): Make type of mantissa as MANTISSA_T.
22175         [!RADIXI]: Define RADIXI.
22176         [!TWO52]: Define TWO52.
22177         * sysdeps/powerpc/power4/fpu/mpa-arch.h: New file.
22179         * manual/nptl.texi (cindex): Modify threads to pthreads.
22181 2013-03-15  Joseph Myers  <joseph@codesourcery.com>
22183         * sysdeps/x86_64/preconfigure: Regenerated.
22185 2013-03-14  Joseph Myers  <joseph@codesourcery.com>
22187         [BZ #14155]
22188         * sysdeps/ieee754/dbl-64/e_j0.c (pzero): Return 1.0 for arguments
22189         0x1p28 and above.
22190         (qzero): Return -0.125 / x for arguments 0x1p28 and above.
22191         * sysdeps/ieee754/dbl-64/e_j1.c (pzero): Return 1.0 for arguments
22192         0x1p28 and above.
22193         (qzero): Return 0.375 / x for arguments 0x1p28 and above.
22194         * math/libm-test.inc (j0_test): Do not allow one spurious
22195         underflow exception.
22196         (y1_test): Likewise.
22198 2013-03-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
22200         * manual/Makefile (chapters): Add nptl.
22201         * manual/debug.texi (Debugging Support): Add link to Threads
22202         chapter.
22203         * manual/nptl.texi: New file.
22205         * sysdeps/unix/sysv/linux/times.c (__times): Fix formatting.
22207 2013-03-14  Petr Baudis  <pasky@ucw.cz>
22209         * sysdeps/unix/sysv/linux/times.c (__times): On EFAULT, test
22210         for non-NULL pointer before the memory validity test. Pointed
22211         out by Holger Brunck <holger.brunck@keymile.com>.
22213 2013-03-13  Andreas Schwab  <schwab@suse.de>
22215         * extra-lib.mk (extra-objs): Add static-only-routines as .oS
22216         instead of .os.
22218 2013-03-13  Joseph Myers  <joseph@codesourcery.com>
22220         * timezone/zic.c: Update from tzcode 2013b.
22222 2013-03-12  Carlos O'Donell  <carlos@redhat.com>
22224         * manual/install.texi (Configuring and compiling):
22225         Mention i686 and i586.
22226         * INSTALL: Regenerate.
22228 2013-03-12  Roland McGrath  <roland@hack.frob.com>
22230         * sysdeps/init_array/elf-init.c: New file.
22231         * csu/elf-init.c
22232         (__libc_csu_init) [!NO_INITFINI]: Conditionalize _init call on this.
22233         (__libc_csu_fini) [!NO_INITFINI]: Conditionalize _fini call on this.
22235         * csu/gmon-start.c [GMON_START_ARRAY_SECTION]: Don't define
22236         __gmon_start__ as global, but as static with a .preinit_array pointer.
22237         * sysdeps/init_array/gmon-start.c: New file.  Use that.
22238         * sysdeps/init_array/crti.S: New file, empty except for comments.
22239         * sysdeps/init_array/crtn.S: Likewise.
22241 2013-03-11  Ondřej Bílka  <neleai@seznam.cz>
22243         * sysdeps/x86_64/memset.S: Remove USE_MULTIARCH conditional for
22244         definining bcopy.
22245         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
22246         Remove Prefer_SSE_for_memop.
22247         * sysdeps/x86_64/multiarch/init-arch.h: Remove
22248         bit_Prefer_SSE_for_memop, index_Prefer_SSE_for_memop,
22249         HAS_PREFER_SSE_FOR_MEMOP.
22250         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Remove
22251         memset-x86-64.
22252         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
22253         Remove bzero, memset ifunc support.
22254         * sysdeps/x86_64/multiarch/bzero.S: Remove file.
22255         * sysdeps/x86_64/multiarch/memset-x86-64.S: Likewise.
22256         * sysdeps/x86_64/multiarch/memset.S: Likewise.
22257         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
22259 2013-03-11  Andreas Schwab  <schwab@suse.de>
22261         [BZ #15234]
22262         * Versions.def (libpthread): Add GLIBC_2.3, so that it can be used
22263         by SHLIB_COMPAT.
22264         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist
22265         (GLIBC_2.16): Remove pthread_atfork.
22267 2013-03-08  Paul Pluzhnikov  <ppluzhnikov@google.com>
22269         * posix/Makefile (testcases.h): Set LC_ALL=C before sed.
22270         (ptestcases.h): Likewise.
22272 2013-03-08  Roland McGrath  <roland@hack.frob.com>
22274         * Makeconfig ($(common-objpfx)config.status): Depend on
22275         sysdeps/*/preconfigure{,.in} too.
22277 2013-03-08  Joseph Myers  <joseph@codesourcery.com>
22279         * malloc/malloc.h (__malloc_ptr_t): Remove macro.
22280         (__free_hook): Use void * instead of __malloc_ptr_t.
22281         (__malloc_hook): Likewise.
22282         (__realloc_hook): Likewise.
22283         (__memalign_hook): Likewise.
22284         (__after_morecore_hook): Likewise.
22285         * malloc/arena.c (save_malloc_hook): Likewise.
22286         (save_free_hook): Likewise.
22287         * malloc/hooks.c (malloc_hook_ini): Likewise.
22288         (realloc_hook_ini): Likewise.
22289         (memalign_hook_ini): Likewise.
22290         * malloc/malloc.c (malloc_hook_ini): Likewise.
22291         (realloc_hook_ini): Likewise.
22292         (memalign_hook_ini): Likewise.
22293         (__free_hook): Likewise.
22294         (__malloc_hook): Likewise.
22295         (__realloc_hook): Likewise.
22296         (__memalign_hook): Likewise.
22297         (__libc_malloc): Likewise.
22298         (__libc_free): Likewise.
22299         (__libc_realloc): Likewise.
22300         (__libc_memalign): Likewise.
22301         (__libc_valloc): Likewise.
22302         (__libc_pvalloc): Likewise.
22303         (__libc_calloc): Likewise.
22304         (__posix_memalign): Likewise.
22305         * malloc/morecore.c (__sbrk): Likewise.
22306         (__default_morecore): Likewise.
22308         * malloc/morecore.c (__default_morecore): Use ISO C prototype.
22310         * malloc/malloc.h (__malloc_ptrdiff_t): Remove macro.
22311         * malloc/morecore.c (__default_morecore): Use ptrdiff_t instead of
22312         __malloc_ptrdiff_t.
22314         * malloc/malloc.h (__malloc_size_t): Remove macro.
22315         * malloc/mcheck.c (old_malloc_hook): Use size_t instead of
22316         __malloc_size_t.
22317         (old_memalign_hook): Likewise.
22318         (old_realloc_hook): Likewise.
22319         (struct hdr): Likewise.
22320         (flood): Likewise.
22321         (mallochook): Likewise.
22322         (memalignhook): Likewise.
22323         (reallochook): Likewise.
22324         * malloc/mtrace.c (tr_old_malloc_hook): Likewise.
22325         (tr_old_realloc_hook): Likewise.
22326         (tr_old_memalign_hook): Likewise.
22327         (tr_mallochook): Likewise.
22328         (tr_reallochook): Likewise.
22329         (tr_memalignhook): Likewise.
22331 2013-03-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22333         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_pack): Rename to
22334         default_ldbl_pack and using as default implementation.
22335         (ldbl_unpack): Rename to default_ldbl_unpack and using as default
22336         implementation.
22337         * sysdeps/powerpc/fpu/math_ldbl.h (ldbl_extract_mantissa): Remove
22338         redundant definition.
22339         (ldbl_insert_mantissa): Likewise.
22340         (ldbl_canonicalize): Likewise.
22341         (ldbl_nearbyint): Likewise.
22342         (ldbl_pack): Rename to ldbl_pack_ppc.
22343         (ldbl_unpack): Rename to ldbl_unpack_ppc.
22344         * sysdeps/unix/sysv/linux/powerpc/Implies: Remove file.
22345         * sysdeps/powerpc/Implies: Add ieee754/ldbl-opt after ieee754/ldbl-128ibm.
22347 2013-03-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
22349         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Move file...
22350         * sysdeps/powerpc/power4/fpu/mpa.c: ... here.
22351         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile: Move file...
22352         * sysdeps/powerpc/power4/fpu/Makefile: ... here.
22353         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Remove file.
22354         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile: Remove file.
22355         * sysdeps/powerpc/powerpc32/power4/Implies: New file.
22356         * sysdeps/powerpc/powerpc64/power4/Implies: New file.
22358 2013-03-07  Andreas Jaeger  <aj@suse.de>
22360         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
22361         bits/mman-linux.h.
22363 2013-03-07  Siddhesh Poyarekar  <siddhesh@redhat.com>
22365         * sysdeps/ieee754/dbl-64/slowexp.c [!USE_LONG_DOUBLE_FOR_MP]:
22366         Include mpa.h and declare __MPEXP.
22367         [USE_LONG_DOUBLE_FOR_MP] (__slowexp): Call __IEEE754_EXPL.
22368         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile
22369         (CPPFLAGS-slowexp.c): Define USE_LONG_DOUBLE_FOR_MP.
22370         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Remove.
22371         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile
22372         (CPPFLAGS-slowexp.c): Define USE_LONG_DOUBLE_FOR_MP.
22373         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Remove.
22375         * sysdeps/ieee754/dbl-64/slowpow.c [USE_LONG_DOUBLE_FOR_MP]
22376         (__slowpow): Use long double EXPL and LOGL functions to
22377         compute POW.
22378         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile
22379         (CPPFLAGS-slowpow.c): Define USE_LONG_DOUBLE_FOR_MP.
22380         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Remove.
22381         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile
22382         (CPPFLAGS-slowpow.c): Define USE_LONG_DOUBLE_FOR_MP.
22383         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Remove.
22385         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Use
22386         intermediate variable to calculate exponent.
22387         (__sqr): Likewise.
22388         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul):
22389         Likewise.
22390         (__sqr): Likewise.
22392         * sysdeps/ieee754/dbl-64/mpa.c [!NO__MUL]: Define __mul.
22393         [!NO__SQR]: Define __sqr.
22394         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: define NO__MUL
22395         and NO__SQR.  Remove all code except __mul and __sqr.  Include
22396         sysdeps/ieee754/dbl-64/mpa.c.
22397         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
22399         [BZ #12723]
22400         * posix/Makefile (tests): Add tst-pathconf.
22401         * posix/tst-pathconf.c: New test case.
22402         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Remove
22403         _PC_PIPE_BUF.
22404         * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Likewise.
22406 2013-03-06  Patsy Franklin  <pfrankli@redhat.com>
22408         * io/fcntl.h: Added a comment about AT_EACCESS and AT_REMOVEDIR.
22410 2013-03-06  Andreas Jaeger  <aj@suse.de>
22412         * sysdeps/unix/sysv/linux/bits/mman-linux.h (MAP_ANONYMOUS): Allow
22413         definition via __MAP_ANONYMOUS.
22415         * sysdeps/unix/sysv/linux/s390/bits/mman.h (MAP_GROWSUP): Remove,
22416         it's not part of Linux headers.
22418         * sysdeps/unix/sysv/linux/bits/mman-linux.h (MAP_HUGE_SHIFT): Define.
22419         (MAP_HUGE_MASK): Define.
22421         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_O_EXIT_KILL):
22422         Define.
22423         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
22424         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_O_EXIT_KILL):
22425         Define.
22426         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
22427         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_O_EXIT_KILL):
22428         Define.
22429         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
22430         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_O_EXITKILL):
22431         Define.
22432         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
22434         * sysdeps/unix/sysv/linux/x86/bits/msq.h (MSG_COPY): Likewise.
22435         * sysdeps/unix/sysv/linux/generic/bits/msq.h (MSG_COPY): Define.
22436         * sysdeps/unix/sysv/linux/powerpc/bits/msq.h (MSG_COPY): Likewise.
22437         * sysdeps/unix/sysv/linux/bits/msq.h (MSG_COPY): Likewise.
22438         * sysdeps/unix/sysv/linux/s390/bits/msq.h (MSG_COPY): Likewise.
22439         * sysdeps/unix/sysv/linux/sparc/bits/msq.h (MSG_COPY): Define.
22441         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
22442         Handle f2fs.
22444         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
22445         Handle f2fs and efivarfs.
22447         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_link_max): Handle
22448         f2fs.
22450         * sysdeps/unix/sysv/linux/linux_fsinfo.h (F2FS_SUPER_MAGIC): Add.
22451         (EFIVARFS_MAGIC): Add.
22452         (F2FS_LINK_MAX): Add.
22454 2013-03-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
22456         * stdio-common/vfprintf.c: Replace __builtin_expect with
22457         __glibc_unlikely.
22459 2013-03-06  Joseph Myers  <joseph@codesourcery.com>
22461         [BZ #13550]
22462         * sysdeps/generic/bp-sym.h: Remove file.
22463         * sysdeps/powerpc/powerpc64/bp-asm.h: Likewise.
22464         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Don't include
22465         <bp-sym.h> and <bp-asm.h>.
22466         (__longjmp): Don't use BP_SYM.
22467         * sysdeps/powerpc/powerpc64/a2/memcpy.S: Don't include <bp-sym.h>
22468         and <bp-asm.h>.
22469         (memcpy): Don't use BP_SYM.
22470         * sysdeps/powerpc/powerpc64/cell/memcpy.S: Don't include
22471         <bp-sym.h> and <bp-asm.h>.
22472         (memcpy): Don't use BP_SYM.
22473         * sysdeps/powerpc/powerpc64/memcpy.S: Don't include <bp-sym.h> and
22474         <bp-asm.h>.
22475         (memcpy): Don't use BP_SYM.
22476         * sysdeps/powerpc/powerpc64/memset.S: Don't include <bp-sym.h> and
22477         <bp-asm.h>.
22478         (memset): Don't use BP_SYM.
22479         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
22480         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
22481         (__bzero): Don't use BP_SYM.
22482         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
22483         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
22484         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Don't include
22485         <bp-sym.h> and <bp-asm.h>.
22486         (memcmp): Don't use BP_SYM.  Remove comment about bounded
22487         pointers.
22488         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Don't include
22489         <bp-sym.h> and <bp-asm.h>.
22490         (memcpy): Don't use BP_SYM.
22491         * sysdeps/powerpc/powerpc64/power4/memset.S: Don't include
22492         <bp-sym.h> and <bp-asm.h>.
22493         (memset): Don't use BP_SYM.
22494         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
22495         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
22496         (__bzero): Don't use BP_SYM.
22497         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
22498         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
22499         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Don't include
22500         <bp-sym.h> and <bp-asm.h>.
22501         (strncmp): Don't use BP_SYM.  Remove comment about bounded
22502         pointers.
22503         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Don't include
22504         <bp-sym.h> and <bp-asm.h>.
22505         (memcpy): Don't use BP_SYM.
22506         * sysdeps/powerpc/powerpc64/power6/memset.S: Don't include
22507         <bp-sym.h> and <bp-asm.h>.
22508         (memset): Don't use BP_SYM.
22509         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
22510         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
22511         (__bzero): Don't use BP_SYM.
22512         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
22513         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
22514         * sysdeps/powerpc/powerpc64/power7/memchr.S: Don't include
22515         <bp-sym.h> and <bp-asm.h>.
22516         (__memchr): Don't use BP_SYM.
22517         * sysdeps/powerpc/powerpc64/power7/memcmp.S: Don't include
22518         <bp-sym.h> and <bp-asm.h>.
22519         (memcmp): Don't use BP_SYM.  Remove comment about bounded
22520         pointers.
22521         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Don't include
22522         <bp-sym.h> and <bp-asm.h>.
22523         (memcpy): Don't use BP_SYM.
22524         * sysdeps/powerpc/powerpc64/power7/mempcpy.S: Don't include
22525         <bp-sym.h> and <bp-asm.h>.
22526         (__mempcpy): Don't use BP_SYM.
22527         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Don't include
22528         <bp-sym.h> and <bp-asm.h>.
22529         (__memrchr): Don't use BP_SYM.
22530         * sysdeps/powerpc/powerpc64/power7/memset.S: Don't include
22531         <bp-sym.h> and <bp-asm.h>.
22532         (memset): Don't use BP_SYM.
22533         (__bzero): Likewise.
22534         * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: Don't include
22535         <bp-sym.h> and <bp-asm.h>.
22536         (__rawmemchr): Don't use BP_SYM.
22537         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: Don't include
22538         <bp-sym.h> and <bp-asm.h>.
22539         (__STRCMP): Don't use BP_SYM.
22540         * sysdeps/powerpc/powerpc64/power7/strchr.S: Don't include
22541         <bp-sym.h> and <bp-asm.h>.
22542         (strchr): Don't use BP_SYM.
22543         * sysdeps/powerpc/powerpc64/power7/strchrnul.S: Don't include
22544         <bp-sym.h> and <bp-asm.h>.
22545         (__strchrnul): Don't use BP_SYM.
22546         * sysdeps/powerpc/powerpc64/power7/strlen.S: Don't include
22547         <bp-sym.h> and <bp-asm.h>.
22548         (strlen): Don't use BP_SYM.
22549         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Don't include
22550         <bp-sym.h> and <bp-asm.h>.
22551         (strncmp): Don't use BP_SYM.  Remove comment about bounded
22552         pointers.
22553         * sysdeps/powerpc/powerpc64/power7/strnlen.S: Don't include
22554         <bp-sym.h> and <bp-asm.h>.
22555         (__strnlen): Don't use BP_SYM.
22556         * sysdeps/powerpc/powerpc64/setjmp-common.S: Don't include
22557         <bp-sym.h> and <bp-asm.h>.
22558         (__GI__setjmp): Don't use BP_SYM.
22559         (_setjmp): Likewise.
22560         (__sigsetjmp): Likewise.
22561         * sysdeps/powerpc/powerpc64/start.S: Don't include "bp-sym.h".
22562         (L(start_addresses)): Don't use BP_SYM.
22563         (_start): Likewise.
22564         * sysdeps/powerpc/powerpc64/stpcpy.S: Don't include <bp-sym.h> and
22565         <bp-asm.h>.
22566         (__stpcpy): Don't use BP_SYM, CHECK_BOUNDS_LOW,
22567         STORE_RETURN_BOUNDS, CHECK_BOUNDS_HIGH and STORE_RETURN_VALUE.
22568         (__stpcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
22569         (__stpcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
22570         * sysdeps/powerpc/powerpc64/strchr.S: Don't include <bp-sym.h> and
22571         <bp-asm.h>.
22572         (strchr): Don't use BP_SYM, CHECK_BOUNDS_LOW, STORE_RETURN_BOUNDS,
22573         CHECK_BOUNDS_HIGH_RTN and STORE_RETURN_VALUE.  Remove comment
22574         about bounded pointers.
22575         (strchr) [__BOUNDED_POINTERS__]: Remove conditional code.
22576         (strchr) [!__BOUNDED_POINTERS__]: Make code unconditional.
22577         * sysdeps/powerpc/powerpc64/strcmp.S: Don't include <bp-sym.h> and
22578         <bp-asm.h>.
22579         (strcmp): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove comment
22580         about bounded pointers.  Remove GKM FIXME comments.
22581         (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
22582         * sysdeps/powerpc/powerpc64/strcpy.S: Don't include <bp-sym.h> and
22583         <bp-asm.h>.
22584         (strcpy): Don't use BP_SYM, CHECK_BOUNDS_LOW and
22585         STORE_RETURN_BOUNDS.  Remove comment about bounded pointers.
22586         Remove GKM FIXME comments.
22587         (strcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
22588         (strcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
22589         * sysdeps/powerpc/powerpc64/strlen.S: Don't include <bp-sym.h> and
22590         <bp-asm.h>.
22591         (strlen): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove comment
22592         about bounded pointers.  Remove GKM FIXME comment.
22593         * sysdeps/powerpc/powerpc64/strncmp.S: Don't include <bp-sym.h>
22594         and <bp-asm.h>.
22595         (strncmp): Don't use BP_SYM.  Remove comment about bounded
22596         pointers.
22597         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S: Don't include
22598         <bp-sym.h> and <bp-asm.h>.
22599         (__brk): Don't use BP_SYM and DISCARD_BOUNDS.
22600         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Don't include
22601         <bp-sym.h> and <bp-asm.h>.
22602         (__clone): Don't use BP_SYM and DISCARD_BOUNDS.  Remove GKM FIXME
22603         comment.
22605 2013-03-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
22607         * stdio-common/vfprintf.c (vfprintf): Check malloc return; don't
22608         call free(NULL).
22610 2013-03-05  David S. Miller  <davem@davemloft.net>
22612         * po/es.po: Update from translation team.
22614 2013-03-05  Andreas Jaeger  <aj@suse.de>
22616         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Include
22617         <bits/mman-linux.h>.
22618         (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
22619         is fine.
22620         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Move include of
22621         <bits/mman-linux.h> to end of file.
22622         (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
22623         is fine.
22624         * sysdeps/unix/sysv/linux/x86/bits/mman.h: Move include of
22625         <bits/mman-linux.h> to end of file.
22626         (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
22627         is fine.
22628         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Move include of
22629         <bits/mman-linux.h> to end of file.
22631         * sysdeps/unix/sysv/linux/bits/mman-linux.h [!MCL_CURRENT]
22632         (MCL_CURRENT, MCL_FUTURE): Define here.
22634 2013-03-05  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
22636         [BZ #15232]
22637         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Use
22638         attribute_hidden.
22639         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
22641 2013-03-05  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
22643         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Set the
22644         fourth parameter needed for rt_sigprocmask syscall.
22645         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S:
22646         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
22647         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
22648         * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
22649         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
22650         * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: Define _NSIG8.
22652 2013-03-04  Joseph Myers  <joseph@codesourcery.com>
22654         [BZ #13550]
22655         * sysdeps/powerpc/powerpc32/power4/strncmp.S (strncmp): Remove
22656         comment about bounded pointers.
22657         * sysdeps/powerpc/powerpc32/power7/strncmp.S (strncmp): Likewise.
22658         * sysdeps/powerpc/powerpc32/strncmp.S (strncmp): Likewise.
22660 2013-03-04  Andreas Jaeger  <aj@suse.de>
22662         * sysdeps/unix/sysv/linux/bits/mman-linux.h: New file, with Linux
22663         common definitions.
22665         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Remove all defines
22666         provided by bits/mman-linux.h and include <bits/mman-linux.h>.
22667         * sysdeps/unix/sysv/linux/x86/bits/mman.h: Likewise.
22668         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
22669         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
22670         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
22672 2013-03-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22674         [BZ #15055]
22675         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Use
22676         __ieee754_sqrl instead of __sqrl.
22678 2013-03-01  Joseph Myers  <joseph@codesourcery.com>
22680         * sysdeps/powerpc/fpu/fpu_control.h: Move to ...
22681         * sysdeps/powerpc/fpu_control.h: ... here.
22682         * sysdeps/powerpc/fpu/bits/fenvinline.h: Move to ...
22683         * sysdeps/powerpc/bits/fenvinline.h: ... here.
22684         * sysdeps/powerpc/fpu/bits/mathinline.h: Move to ...
22685         * sysdeps/powerpc/bits/mathinline.h: ... here.
22687 2013-03-01  Roland McGrath  <roland@hack.frob.com>
22689         * elf/dl-hwcaps.c (_dl_important_hwcaps):
22690         Change [NEED_DL_SYSINFO || NEED_DL_SYSINFO_DSO] conditionals
22691         to just [NEED_DL_SYSINFO_DSO].
22692         * elf/dl-support.c: Likewise.
22693         * elf/dl-sysdep.c (_dl_sysdep_start): Likewise.
22694         * elf/rtld.c (dl_main): Likewise.
22695         * elf/setup-vdso.h (setup_vdso): Likewise.
22696         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Likewise.
22697         * sysdeps/unix/sysv/linux/dl-sysdep.c
22698         (_dl_discover_osversion): Likewise.
22700 2013-03-01  Carlos O'Donell  <carlos@redhat.com>
22702         * csu/libc-start.c (__pthread_initialize_minimal): Revert last change.
22703         * csu/libc-tls.c (__pthread_initialize_minimal): Likewise.
22705 2013-03-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
22707         * NEWS: Mention libm performance improvements and non-x86 PI
22708         futex support.
22710         * csu/libc-start.c (__pthread_initialize_minimal): Change
22711         function arguments.
22712         * csu/libc-tls.c (__pthread_initialize_minimal): Likewise.
22714 2013-02-28  Joseph Myers  <joseph@codesourcery.com>
22716         [BZ #13550]
22717         * sysdeps/powerpc/powerpc32/bp-asm.h: Remove file.
22718         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Don't include
22719         <bp-sym.h> and <bp-asm.h>.
22720         (__longjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
22721         * sysdeps/powerpc/powerpc32/a2/memcpy.S: Don't include <bp-sym.h>
22722         and <bp-asm.h>.
22723         (memcpy): Don't use BP_SYM.
22724         * sysdeps/powerpc/powerpc32/add_n.S: Don't include <bp-sym.h> and
22725         <bp-asm.h>.
22726         (__mpn_add_n): Don't use BP_SYM.
22727         (__mpn_add_n) [__BOUNDED_POINTERS_]: Remove conditional code.
22728         * sysdeps/powerpc/powerpc32/addmul_1.S: Don't include <bp-sym.h>
22729         and <bp-asm.h>.
22730         (__mpn_addmul_1): Don't use BP_SYM.
22731         (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
22732         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Don't include
22733         <bp-sym.h>.
22734         (_setjmp): Don't use BP_SYM.
22735         (__novmx_setjmp): Likewise.
22736         (__GI__setjmp): Likewise.
22737         (__vmx_setjmp): Likewise.
22738         * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Don't include
22739         <bp-sym.h>.
22740         * sysdeps/powerpc/powerpc32/bzero.S: Don't include <bp-sym.h>.
22741         (__bzero): Don't use BP_SYM.
22742         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
22743         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
22744         * sysdeps/powerpc/powerpc32/cell/memcpy.S: Don't include
22745         <bp-sym.h> and <bp-asm.h>.
22746         (memcpy): Don't use BP_SYM.
22747         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Don't include
22748         <bp-sym.h> and <bp-asm.h>.
22749         (__longjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
22750         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Don't include
22751         <bp-sym.h> and <bp-asm.h>.
22752         (__sigsetjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
22753         * sysdeps/powerpc/powerpc32/lshift.S: Don't include <bp-sym.h> and
22754         <bp-asm.h>.
22755         (__mpn_lshift): Don't use BP_SYM.
22756         (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
22757         * sysdeps/powerpc/powerpc32/memset.S: Don't include <bp-sym.h> and
22758         <bp-asm.h>.
22759         (memset): Don't use BP_SYM.
22760         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
22761         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
22762         * sysdeps/powerpc/powerpc32/mul_1.S: Don't include <bp-sym.h> and
22763         <bp-asm.h>.
22764         (__mpn_mul_1): Don't use BP_SYM.
22765         (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
22766         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Don't include
22767         <bp-sym.h> and <bp-asm.h>.
22768         (memcmp): Don't use BP_SYM.
22769         * sysdeps/powerpc/powerpc32/power4/memcpy.S: Don't include
22770         <bp-sym.h> and <bp-asm.h>.
22771         (memcpy): Don't use BP_SYM.
22772         * sysdeps/powerpc/powerpc32/power4/memset.S: Don't include
22773         <bp-sym.h> and <bp-asm.h>.
22774         (memset): Don't use BP_SYM.
22775         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Don't include
22776         <bp-sym.h> and <bp-asm.h>.
22777         (strncmp): Don't use BP_SYM.
22778         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Don't include
22779         <bp-sym.h> and <bp-asm.h>.
22780         (memcpy): Don't use BP_SYM.
22781         * sysdeps/powerpc/powerpc32/power6/memset.S: Don't include
22782         <bp-sym.h> and <bp-asm.h>.
22783         (memset): Don't use BP_SYM.
22784         * sysdeps/powerpc/powerpc32/power7/memchr.S: Don't include
22785         <bp-sym.h> and <bp-asm.h>.
22786         (__memchr): Don't use BP_SYM.
22787         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Don't include
22788         <bp-sym.h> and <bp-asm.h>.
22789         (memcmp): Don't use BP_SYM.
22790         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Don't include
22791         <bp-sym.h> and <bp-asm.h>.
22792         (memcpy): Don't use BP_SYM.
22793         * sysdeps/powerpc/powerpc32/power7/mempcpy.S: Don't include
22794         <bp-sym.h> and <bp-asm.h>.
22795         (__mempcpy): Don't use BP_SYM.
22796         * sysdeps/powerpc/powerpc32/power7/memrchr.S: Don't include
22797         <bp-sym.h> and <bp-asm.h>.
22798         (__memrchr): Don't use BP_SYM.
22799         * sysdeps/powerpc/powerpc32/power7/memset.S: Don't include
22800         <bp-sym.h> and <bp-asm.h>.
22801         (memset): Don't use BP_SYM.
22802         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: Don't include
22803         <bp-sym.h> and <bp-asm.h>.
22804         (__rawmemchr): Don't use BP_SYM.
22805         * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: Don't include
22806         <bp-sym.h> and <bp-asm.h>.
22807         (__STRCMP): Don't use BP_SYM.
22808         * sysdeps/powerpc/powerpc32/power7/strchr.S: Don't include
22809         <bp-sym.h> and <bp-asm.h>.
22810         (strchr): Don't use BP_SYM.
22811         * sysdeps/powerpc/powerpc32/power7/strchrnul.S: Don't include
22812         <bp-sym.h> and <bp-asm.h>.
22813         (__strchrnul): Don't use BP_SYM.
22814         * sysdeps/powerpc/powerpc32/power7/strlen.S: Don't include
22815         <bp-sym.h> and <bp-asm.h>.
22816         (strlen): Don't use BP_SYM.
22817         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Don't include
22818         <bp-sym.h> and <bp-asm.h>.
22819         (strncmp): Don't use BP_SYM.
22820         * sysdeps/powerpc/powerpc32/power7/strnlen.S: Don't include
22821         <bp-sym.h> and <bp-asm.h>.
22822         (__strnlen): Don't use BP_SYM.
22823         * sysdeps/powerpc/powerpc32/rshift.S: Don't include <bp-sym.h> and
22824         <bp-asm.h>.
22825         (__mpn_rshift): Don't use BP_SYM.
22826         (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
22827         * sysdeps/powerpc/powerpc32/setjmp-common.S: Don't include
22828         <bp-sym.h> and <bp-asm.h>.
22829         (__sigsetjmp): Don't use BP_SYM.
22830         * sysdeps/powerpc/powerpc32/start.S: Don't include "bp-sym.h".
22831         (L(start_addresses)): Don't use BP_SYM.
22832         (_start): Likewise.
22833         * sysdeps/powerpc/powerpc32/stpcpy.S: Don't include <bp-sym.h> and
22834         <bp-asm.h>.
22835         (__stpcpy): Don't use BP_SYM and macros from bp-asm.h.
22836         (__stpcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
22837         (__stpcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
22838         * sysdeps/powerpc/powerpc32/strchr.S: Don't include <bp-sym.h> and
22839         <bp-asm.h>.
22840         (strchr): Don't use BP_SYM.h and macros from bp-asm.h.
22841         (strchr) [__BOUNDED_POINTERS__]: Remove conditional code.
22842         (strchr) [!__BOUNDED_POINTERS__]: Make code unconditional.
22843         * sysdeps/powerpc/powerpc32/strcmp.S: Don't include <bp-sym.h> and
22844         <bp-asm.h>.
22845         (strcmp): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove GKM FIXME
22846         comments.
22847         (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
22848         * sysdeps/powerpc/powerpc32/strcpy.S: Don't include <bp-sym.h> and
22849         <bp-asm.h>.
22850         (strcpy): Don't use BP_SYM and macros from bp-asm.h.  Remove GKM
22851         FIXME comments.
22852         (strcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
22853         (strcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
22854         * sysdeps/powerpc/powerpc32/strlen.S: Don't include <bp-sym.h> and
22855         <bp-asm.h>.
22856         (strlen): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove GKM FIXME
22857         comment.
22858         * sysdeps/powerpc/powerpc32/strncmp.S: Don't include <bp-sym.h>
22859         and <bp-asm.h>.
22860         (strncmp): Don't use BP_SYM,
22861         * sysdeps/powerpc/powerpc32/sub_n.S: Don't include <bp-sym.h> and
22862         <bp-asm.h>.
22863         (__mpn_sub_n): Don't use BP_SYM.
22864         (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
22865         * sysdeps/powerpc/powerpc32/submul_1.S: Don't include <bp-sym.h>
22866         and <bp-asm.h>.
22867         (__mpn_submul_1): Don't use BP_SYM.
22868         (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
22869         * sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S: Don't include
22870         <bp-sym.h> and <bp-asm.h>.
22871         (__brk): Don't use BP_SYM and DISCARD_BOUNDS.
22872         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Don't include
22873         <bp-sym.h> and <bp-asm.h>.
22874         (__clone): Don't use BP_SYM and DISCARD_BOUNDS.  Remove GKM FIXME
22875         comment.
22877 2013-02-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
22879         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (add_magnitudes):
22880         Use ZK to minimize writes to Z.
22881         (sub_magnitudes): Simplify code a bit.
22882         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (add_magnitudes):
22883         Use ZK to minimize writes to Z.
22884         (sub_magnitudes): Simplify code a bit.
22886 2013-02-27  Roland McGrath  <roland@hack.frob.com>
22888         * csu/gmon-start.c: Add special exception to license text.
22890 2013-02-27  Richard Henderson  <rth@redhat.com>
22892         * scripts/config.guess: Update from config.git.
22893         * scripts/config.sub: Likewise.
22895 2013-02-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
22897         * sysdeps/ieee754/dbl-64/mpsqrt.c: Reformat.
22899         * sysdeps/ieee754/dbl-64/mpatan2.c: Reformat.
22901         * sysdeps/ieee754/dbl-64/mpatan.c: Reformat.
22903         * sysdeps/ieee754/dbl-64/mptan.c: Reformat.
22905         * sysdeps/ieee754/dbl-64/mplog.c: Reformat.
22907 2013-02-26  Roland McGrath  <roland@hack.frob.com>
22909         * Makeconfig (%.v.i, %.v): Move these pattern rules outside of
22910         [$(build-shared = yes].
22912 2013-02-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
22914         * sysdeps/ieee754/dbl-64/mpa.c: Include alloca.h.
22915         (__mul): Reduce iterations for calculating mantissa.
22917         * sysdeps/ieee754/dbl-64/sincos32.c (__c32): Use MPONE and
22918         MPTWO.
22919         (__mpranred): Likewise.
22921         [BZ #15160]
22922         * malloc/memusagestat.c (main): Draw graphs for heap and stack
22923         only if MAXSIZE_HEAP and MAXSIZE_STACK are non-zero.
22925 2013-02-26  Paul Eggert  <eggert@cs.ucla.edu>
22927         * posix/regex_internal.h [__GNUC__ < 3 + (__GNUC_MINOR__ < 1]:
22928         Define __attribute__.
22930 2013-02-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
22932         * locale/elem-hash.h (elem_hash): Mark as pure and possibly
22933         unused.
22934         * posix/regex_internal.h (__attribute): Remove.
22935         [!_LIBC && __i386__]: Use __attribute__ instead of __attribute.
22936         (re_string_context_at): Likewise.
22937         (bitset_not): Use __attribute__ and mark function as possibly
22938         unused.
22939         (bitset_merge): Likewise.
22940         (bitset_mask): Likewise.
22941         (re_string_char_size_at): Likewise.
22942         (re_string_wchar_at): Likewise.
22943         (re_string_elem_size_at): Likewise.
22945 2013-02-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
22947         * sysdeps/ieee754/dbl-64/sincos32.c (ss32): Remove commented
22948         code.
22949         (cc32): Likewise.
22951         * sysdeps/ieee754/dbl-64/mpa.c (mcr): Use long instead of int.
22952         (__acr): Likewise.
22953         (__cpy): Likewise.
22954         (norm): Likewise.
22955         (denorm): Likewise.
22956         (__dbl_mp): Likewise.
22957         (add_magnitudes): Likewise.
22958         (sub_magnitudes): Likewise.
22959         (__mul): Likewise.
22960         (__inv): Likewise.
22962         * sysdeps/ieee754/dbl-64/slowexp.c: Reformat in GNU coding
22963         style.
22965         * sysdeps/ieee754/dbl-64/slowpow.c: Reformat in GNU coding
22966         style.
22968         * sysdeps/ieee754/dbl-64/slowexp.c (__slowexp): Remove commented
22969         code.
22971         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mp_dbl): Sync
22972         up changes with default code.
22973         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mp_dbl):
22974         Likewise.
22976 2013-02-24  Allan McRae  <allan@archlinux.org>
22978         * manual/socket.texi (The Internet Namespace): Order menu items
22979         to match that in the file.
22981         * manual/libc-texinfo.sh: Use @detailmenu around the detailed
22982         node listing of the info page menu.
22984 2013-02-21  Joseph Myers  <joseph@codesourcery.com>
22986         [BZ #13550]
22987         * sysdeps/i386/bp-asm.h: Remove file.
22988         * sysdeps/i386/add_n.S: Do not include "bp-sym.h" and "bp-asm.h".
22989         (PARMS): Do not use macros from bp-asm.h.
22990         (S1): Likewise.
22991         (S2): Likewise.
22992         (SIZE): Likewise.
22993         (__mpn_add_n): Do not use BP_SYM
22994         * sysdeps/i386/addmul_1.S: Do not include "bp-sym.h" and
22995         "bp-asm.h".
22996         (PARMS): Do not use macros from bp-asm.h.
22997         (S1): Likewise.
22998         (SIZE): Likewise.
22999         (__mpn_addmul_1): Do not use BP_SYM
23000         * sysdeps/i386/bsd-_setjmp.S: Do not include "bp-sym.h" and
23001         "bp-asm.h".
23002         (PARMS): Do not use macros from bp-asm.h.
23003         (SIGMSK): Likewise.
23004         (_setjmp): Likewise.  Do not use BP_SYM.
23005         * sysdeps/i386/bsd-setjmp.S: Do not include "bp-sym.h" and
23006         "bp-asm.h".
23007         (PARMS): Do not use macros from bp-asm.h.
23008         (SIGMSK): Likewise.
23009         (setjmp): Likewise.  Do not use BP_SYM.
23010         * sysdeps/i386/fpu/s_frexp.S: Do not include "bp-sym.h" and
23011         "bp-asm.h".
23012         (PARMS): Do not use macros from bp-asm.h.
23013         (__frexp): Do not use BP_SYM.
23014         (frexp): Likewise.
23015         * sysdeps/i386/fpu/s_frexpf.S: Do not include "bp-sym.h" and
23016         "bp-asm.h".
23017         (PARMS): Do not use macros from bp-asm.h.
23018         (__frexpf): Do not use BP_SYM.
23019         (frexpf): Likewise.
23020         * sysdeps/i386/fpu/s_frexpl.S: Do not include "bp-sym.h" and
23021         "bp-asm.h".
23022         (PARMS): Do not use macros from bp-asm.h.
23023         (__frexpl): Do not use BP_SYM.
23024         (frexpl): Likewise.
23025         * sysdeps/i386/fpu/s_remquo.S: Do not include "bp-sym.h" and
23026         "bp-asm.h".
23027         (PARMS): Do not use macros from bp-asm.h.
23028         (__remquo): Do not use BP_SYM.
23029         (remquo): Likewise.
23030         * sysdeps/i386/fpu/s_remquof.S: Do not include "bp-sym.h" and
23031         "bp-asm.h".
23032         (PARMS): Do not use macros from bp-asm.h.
23033         (__remquof): Do not use BP_SYM.
23034         (remquof): Likewise.
23035         * sysdeps/i386/fpu/s_remquol.S: Do not include "bp-sym.h" and
23036         "bp-asm.h".
23037         (PARMS): Do not use macros from bp-asm.h.
23038         (__remquol): Do not use BP_SYM.
23039         (remquol): Likewise.
23040         * sysdeps/i386/i486/strcat.S: Do not include "bp-sym.h" and
23041         "bp-asm.h".
23042         (PARMS): Do not use macros from bp-asm.h.
23043         (DEST): Likewise.
23044         (SRC): Likewise.
23045         (strcat): Remove GKM FIXME comment.  Do not use BP_SYM.
23046         * sysdeps/i386/i486/strlen.S: Do not include "bp-sym.h" and
23047         "bp-asm.h".
23048         (PARMS): Do not use macros from bp-asm.h.
23049         (strlen): Do not use BP_SYM.
23050         * sysdeps/i386/i586/add_n.S: Do not include "bp-sym.h" and
23051         "bp-asm.h".
23052         (PARMS): Do not use macros from bp-asm.h.
23053         (S1): Likewise.
23054         (S2): Likewise.
23055         (SIZE): Likewise.
23056         (__mpn_add_n): Do not use BP_SYM.
23057         * sysdeps/i386/i586/addmul_1.S: Do not include "bp-sym.h" and
23058         "bp-asm.h".
23059         (PARMS): Do not use macros from bp-asm.h.
23060         (S1): Likewise.
23061         (SIZE): Likewise.
23062         (__mpn_addmul_1): Do not use BP_SYM.
23063         * sysdeps/i386/i586/bzero.S (__bzero): Do not use BP_SYM in
23064         weak_alias.
23065         (bzero): Likewise.
23066         * sysdeps/i386/i586/lshift.S: Do not include "bp-sym.h" and
23067         "bp-asm.h".
23068         (PARMS): Do not use macros from bp-asm.h.
23069         (S): Likewise.
23070         (SIZE): Likewise.
23071         (__mpn_lshift): Do not use BP_SYM.
23072         * sysdeps/i386/i586/memcpy.S: Do not include "bp-sym.h" and
23073         "bp-asm.h".
23074         (PARMS): Do not use macros from bp-asm.h.
23075         (DEST): Likewise.
23076         (SRC): Likewise.
23077         (LEN): Likewise.
23078         (memcpy): Likewise.  Do not use BP_SYM.
23079         * sysdeps/i386/i586/mempcpy.S (__mempcpy): Do not use BP_SYM in
23080         libc_hidden_def and weak_alias.
23081         (mempcpy): Do not use BP_SYM in weak_alias.
23082         * sysdeps/i386/i586/memset.S: Do not include "bp-sym.h" and
23083         "bp-asm.h".
23084         (PARMS): Do not use macros from bp-asm.h.
23085         (DEST): Likewise.
23086         (LEN): Likewise.
23087         [!BZERO_P] (CHR): Likewise.
23088         (memset): Likewise.  Do not use BP_SYM.
23089         * sysdeps/i386/i586/mul_1.S: Do not include "bp-sym.h" and
23090         "bp-asm.h".
23091         (PARMS): Do not use macros from bp-asm.h.
23092         (S1): Likewise.
23093         (SIZE): Likewise.
23094         (__mpn_mul_1): Do not use BP_SYM.
23095         * sysdeps/i386/i586/rshift.S: Do not include "bp-sym.h" and
23096         "bp-asm.h".
23097         (PARMS): Do not use macros from bp-asm.h.
23098         (S): Likewise.
23099         (SIZE): Likewise.
23100         (__mpn_rshift): Do not use BP_SYM.
23101         * sysdeps/i386/i586/strchr.S: Do not include "bp-sym.h" and
23102         "bp-asm.h".
23103         (PARMS): Do not use macros from bp-asm.h.
23104         (STR): Likewise.
23105         (CHR): Likewise.
23106         (strchr): Likewise.  Do not use BP_SYM.
23107         (index): Do not use BP_SYM in weak_alias.
23108         * sysdeps/i386/i586/strcpy.S: Do not include "bp-sym.h" and
23109         "bp-asm.h".
23110         (PARMS): Do not use macros from bp-asm.h.
23111         (DEST): Likewise.
23112         (SRC): Likewise.
23113         (STRCPY): Likewise.  Remove GKM FIXME comment.  Do not use BP_SYM.
23114         * sysdeps/i386/i586/strlen.S: Do not include "bp-sym.h" and
23115         "bp-asm.h".
23116         (PARMS): Do not use macros from bp-asm.h.
23117         (strlen): Do not use BP_SYM.
23118         * sysdeps/i386/i586/sub_n.S: Do not include "bp-sym.h" and
23119         "bp-asm.h".
23120         (PARMS): Do not use macros from bp-asm.h.
23121         (S1): Likewise.
23122         (S2): Likewise.
23123         (SIZE): Likewise.
23124         (__mpn_sub_n): Do not use BP_SYM.
23125         * sysdeps/i386/i586/submul_1.S: Do not include "bp-sym.h" and
23126         "bp-asm.h".
23127         (PARMS): Do not use macros from bp-asm.h.
23128         (S1): Likewise.
23129         (SIZE): Likewise.
23130         (__mpn_submul_1): Do not use BP_SYM.
23131         * sysdeps/i386/i686/add_n.S: Do not include "bp-sym.h" and
23132         "bp-asm.h".
23133         (PARMS): Do not use macros from bp-asm.h.
23134         (S1): Likewise.
23135         (S2): Likewise.
23136         (SIZE): Likewise.
23137         (__mpn_add_n): Do not use BP_SYM.
23138         * sysdeps/i386/i686/bzero.S (__bzero): Do not use BP_SYM in
23139         weak_alias.
23140         (bzero): Likewise.
23141         * sysdeps/i386/i686/memcmp.S: Do not include "bp-sym.h" and
23142         "bp-asm.h".
23143         (PARMS): Do not use macros from bp-asm.h.
23144         (BLK2): Likewise.
23145         (LEN): Likewise.
23146         (memcmp): Do not use BP_SYM.
23147         (bcmp): Do not use BP_SYM in weak_alias.
23148         * sysdeps/i386/i686/memcpy.S: Do not include "bp-sym.h" and
23149         "bp-asm.h".
23150         (PARMS): Do not use macros from bp-asm.h.
23151         (DEST): Likewise.
23152         (SRC): Likewise.
23153         (LEN): Likewise.
23154         (memcpy): Likewise.  Do not use BP_SYM.
23155         * sysdeps/i386/i686/memmove.S: Do not include "bp-sym.h" and
23156         "bp-asm.h".
23157         (PARMS): Do not use macros from bp-asm.h.
23158         (DEST): Likewise.
23159         (SRC): Likewise.
23160         (LEN): Likewise.
23161         (memmove): Likewise.  Do not use BP_SYM.
23162         * sysdeps/i386/i686/mempcpy.S: Do not include "bp-sym.h" and
23163         "bp-asm.h".
23164         (PARMS): Do not use macros from bp-asm.h.
23165         (DEST): Likewise.
23166         (SRC): Likewise.
23167         (LEN): Likewise.
23168         (__mempcpy): Likewise.  Do not use BP_SYM.
23169         (mempcpy): Do not use BP_SYM in weak_alias.
23170         * sysdeps/i386/i686/memset.S: Do not include "bp-sym.h" and
23171         "bp-asm.h".
23172         (PARMS): Do not use macros from bp-asm.h.
23173         (DEST): Likewise.
23174         (LEN): Likewise.
23175         [!BZERO_P] (CHR): Likewise.
23176         (memset): Likewise.  Do not use BP_SYM.
23177         * sysdeps/i386/i686/strcmp.S: Do not include "bp-sym.h" and
23178         "bp-asm.h".
23179         (PARMS): Do not use macros from bp-asm.h.
23180         (STR2): Likewise.
23181         (strcmp): Do not use BP_SYM.
23182         * sysdeps/i386/i686/strtok.S: Do not include "bp-sym.h" and
23183         "bp-asm.h".
23184         (PARMS): Do not use macros from bp-asm.h.
23185         (STR): Likewise.
23186         (DELIM): Likewise.
23187         [USE_AS_STRTOK_R] (SAVE): Likewise.
23188         (FUNCTION): Likewise.  Do not use BP_SYM.
23189         * sysdeps/i386/i686/strtok_r.S (__strtok_r): Do not use BP_SYM in
23190         aliases.
23191         (strtok_r): Likewise.
23192         (__GI___strtok_r): Likewise.
23193         * sysdeps/i386/lshift.S: Do not include "bp-sym.h" and "bp-asm.h".
23194         (PARMS): Do not use macros from bp-asm.h.
23195         (S): Likewise.
23196         (SIZE): Likewise.
23197         (__mpn_lshift): Do not use BP_SYM.
23198         * sysdeps/i386/memchr.S: Do not include "bp-sym.h" and "bp-asm.h".
23199         (PARMS): Do not use macros from bp-asm.h.
23200         (STR): Likewise.
23201         (CHR): Likewise.
23202         (__memchr): Do not use BP_SYM.
23203         (memchr): Do not use BP_SYM in weak_alias.
23204         * sysdeps/i386/memcmp.S: Do not include "bp-sym.h" and "bp-asm.h".
23205         (PARMS): Do not use macros from bp-asm.h.
23206         (BLK2): Likewise.
23207         (LEN): Likewise.
23208         (memcmp): Do not use BP_SYM.
23209         (bcmp): Do not use BP_SYM in weak_alias.
23210         * sysdeps/i386/mul_1.S: Do not include "bp-sym.h" and "bp-asm.h".
23211         (PARMS): Do not use macros from bp-asm.h.
23212         (S1): Likewise.
23213         (SIZE): Likewise.
23214         (__mpn_mul_1): Do not use BP_SYM.
23215         * sysdeps/i386/rawmemchr.S: Do not include "bp-sym.h" and
23216         "bp-asm.h".
23217         (PARMS): Do not use macros from bp-asm.h.
23218         (STR): Likewise.
23219         (CHR): Likewise.
23220         (__rawmemchr): Do not use BP_SYM.
23221         (rawmemchr): Do not use BP_SYM in weak_alias.
23222         * sysdeps/i386/rshift.S: Do not include "bp-sym.h" and "bp-asm.h".
23223         (PARMS): Do not use macros from bp-asm.h.
23224         (S): Likewise.
23225         (SIZE): Likewise.
23226         (__mpn_rshift): Do not use BP_SYM.
23227         * sysdeps/i386/setjmp.S: Do not include "bp-sym.h" and "bp-asm.h".
23228         (PARMS): Do not use macros from bp-asm.h.
23229         (SIGMSK): Likewise.
23230         (__sigsetjmp): Likewise.  Do not use BP_SYM.
23231         * sysdeps/i386/start.S: Do not include "bp-sym.h".
23232         (_start): Do not use BP_SYM.
23233         * sysdeps/i386/stpcpy.S: Do not include "bp-sym.h" and "bp-asm.h".
23234         (PARMS): Do not use macros from bp-asm.h.
23235         (DEST): Likewise.
23236         (SRC): Likewise.
23237         (__stpcpy): Likewise.  Do not use BP_SYM.
23238         (stpcpy): Do not use BP_SYM in weak_alias.
23239         * sysdeps/i386/stpncpy.S: Do not include "bp-sym.h" and
23240         "bp-asm.h".
23241         (PARMS): Do not use macros from bp-asm.h.
23242         (DEST): Likewise.
23243         (SRC): Likewise.
23244         (LEN): Likewise.
23245         (__stpncpy): Likewise.  Do not use BP_SYM.
23246         (stpncpy): Do not use BP_SYM in weak_alias.
23247         * sysdeps/i386/strchr.S: Do not include "bp-sym.h" and "bp-asm.h".
23248         (PARMS): Do not use macros from bp-asm.h.
23249         (STR): Likewise.
23250         (CHR): Likewise.
23251         (strchr): Likewise.  Do not use BP_SYM.
23252         * sysdeps/i386/strchrnul.S: Do not include "bp-sym.h" and
23253         "bp-asm.h".
23254         (PARMS): Do not use macros from bp-asm.h.
23255         (STR): Likewise.
23256         (CHR): Likewise.
23257         (__strchrnul): Likewise.  Do not use BP_SYM.
23258         (strchrnul): Do not use BP_SYM in weak_alias.
23259         * sysdeps/i386/strcspn.S: Do not include "bp-sym.h" and
23260         "bp-asm.h".
23261         (PARMS): Do not use macros from bp-asm.h.
23262         (STOP): Likewise.
23263         (strcspn): Do not use BP_SYM.
23264         * sysdeps/i386/strpbrk.S: Do not include "bp-sym.h" and
23265         "bp-asm.h".
23266         (PARMS): Do not use macros from bp-asm.h.
23267         (STR): Likewise.
23268         (STOP): Likewise.
23269         (strpbrk): Likewise.  Do not use BP_SYM.
23270         * sysdeps/i386/strrchr.S: Do not include "bp-sym.h" and
23271         "bp-asm.h".
23272         (PARMS): Do not use macros from bp-asm.h.
23273         (STR): Likewise.
23274         (CHR): Likewise.
23275         (strrchr): Likewise.  Do not use BP_SYM.
23276         * sysdeps/i386/strspn.S: Do not include "bp-sym.h" and "bp-asm.h".
23277         (PARMS): Do not use macros from bp-asm.h.
23278         (SKIP): Likewise.
23279         (strspn): Do not use BP_SYM.
23280         * sysdeps/i386/strtok.S: Do not include "bp-sym.h" and "bp-asm.h".
23281         (PARMS): Do not use macros from bp-asm.h.
23282         (STR): Likewise.
23283         (DELIM): Likewise.
23284         (SAVE): Likewise.
23285         (FUNCTION): Likewise.  Do not use BP_SYM.
23286         * sysdeps/i386/strtok_r.S (__strtok_r): Do not use BP_SYM in
23287         aliases.
23288         (strtok_r): Likewise.
23289         (__GI___strtok_r): Likewise.
23290         * sysdeps/i386/sub_n.S: Do not include "bp-sym.h" and "bp-asm.h".
23291         (PARMS): Do not use macros from bp-asm.h.
23292         (S1): Likewise.
23293         (S2): Likewise.
23294         (SIZE): Likewise.
23295         (__mpn_sub_n): Do not use BP_SYM.
23296         * sysdeps/i386/submul_1.S: Do not include "bp-sym.h" and
23297         "bp-asm.h".
23298         (PARMS): Do not use macros from bp-asm.h.
23299         (S1): Likewise.
23300         (SIZE): Likewise.
23301         (__mpn_submul_1): Do not use BP_SYM.
23302         * sysdeps/unix/i386/sysdep.S: Do not include <bp-asm.h> and
23303         <bp-sym.h>.
23304         * sysdeps/unix/sysv/linux/i386/clone.S: Do not include <bp-sym.h>
23305         and <bp-asm.h>.
23306         (PARMS): Do not use macros from bp-asm.h.
23307         (FLAGS): Likewise.
23308         (PTID): Likewise.
23309         (TLS): Likewise.
23310         (CTID): Likewise.
23311         (__clone): Do not use BP_SYM.
23312         (clone): Do not use BP_SYM in weak_alias.
23313         * sysdeps/unix/sysv/linux/i386/mmap64.S: Do not include <bp-sym.h>
23314         and <bp-asm.h>.
23315         (PARMS): Do not use macros from bp-asm.h.
23316         (LEN): Likewise.
23317         (__mmap64): Do not use BP_SYM.
23318         (mmap64): Do not use BP_SYM in weak_alias.
23319         * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Do not include
23320         <bp-sym.h> and <bp-asm.h>.
23321         (PARMS): Do not use macros from bp-asm.h.
23322         (__posix_fadvise64_l64): Do not use BP_SYM.
23323         * sysdeps/unix/sysv/linux/i386/semtimedop.S
23324         (PARMS): Do not use macros from bp-asm.h.
23325         (NSOPS): Likewise.
23326         (semtimedop): Do not use BP_SYM.
23327         * sysdeps/unix/sysv/linux/i386/sysdep.h: Do not include <bp-sym.h>
23328         and <bp-asm.h>.
23330 2013-02-21  Allan McRae  <allan@archlinux.org>
23332         * manual/message.texi (Charset conversion in gettext):
23333         Move @end statement to beginning of line.
23335 2013-02-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
23337         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__inv): Mark as
23338         static.
23339         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__inv):
23340         Likewise.
23342         * sysdeps/ieee754/dbl-64/mpa.c (norm): Fix whitespace.
23343         (denorm): Likewise.
23344         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (norm): Likewise.
23345         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (norm): Likewise.
23347 2013-02-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
23349         * sysdeps/s390/s390-32/dl-trampoline.S (_dl_runtime_profile): Do a
23350         tail-call to the resolved function if pltexit isn't needed.
23352 2013-02-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
23354         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Mark X
23355         or Y being zero as being unlikely.
23356         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul):
23357         Likewise.
23359 2013-02-20  Carlos O'Donell  <carlos@redhat.com>
23361         * manual/nss.texi (System Databases and Name Service Switch):
23362         Remove frobnicate @pxref.
23364 2013-02-20  Thomas Schwinge  <thomas@codesourcery.com>
23366         * sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
23367         __attribute__ ((unused)) to __attribute__ ((__unused__)).
23369 2013-02-20  Petr Machata  <pmachata@redhat.com>
23371         * elf/elf.h (R_ARM_TARGET1): New macro.
23372         (R_ARM_SBREL31, R_ARM_V4BX, R_ARM_TARGET2): Likewise.
23373         (R_ARM_PREL31, R_ARM_MOVW_ABS_NC, R_ARM_MOVT_ABS): Likewise.
23374         (R_ARM_MOVW_PREL_NC, R_ARM_MOVT_PREL): Likewise.
23375         (R_ARM_THM_MOVW_ABS_NC, R_ARM_THM_MOVT_ABS): Likewise.
23376         (R_ARM_THM_MOVW_PREL_NC, R_ARM_THM_MOVT_PREL): Likewise.
23377         (R_ARM_THM_JUMP19, R_ARM_THM_JUMP6): Likewise.
23378         (R_ARM_THM_ALU_PREL_11_0, R_ARM_THM_PC12): Likewise.
23379         (R_ARM_ABS32_NOI, R_ARM_REL32_NOI): Likewise.
23380         (R_ARM_ALU_PC_G0_NC, R_ARM_ALU_PC_G0): Likewise.
23381         (R_ARM_ALU_PC_G1_NC, R_ARM_ALU_PC_G1): Likewise.
23382         (R_ARM_ALU_PC_G2, R_ARM_LDR_PC_G1, R_ARM_LDR_PC_G2): Likewise.
23383         (R_ARM_LDRS_PC_G0, R_ARM_LDRS_PC_G1): Likewise.
23384         (R_ARM_LDRS_PC_G2, R_ARM_LDC_PC_G0): Likewise.
23385         (R_ARM_LDC_PC_G1, R_ARM_LDC_PC_G2): Likewise.
23386         (R_ARM_ALU_SB_G0_NC, R_ARM_ALU_SB_G0): Likewise.
23387         (R_ARM_ALU_SB_G1_NC, R_ARM_ALU_SB_G1): Likewise.
23388         (R_ARM_ALU_SB_G2, R_ARM_LDR_SB_G0, R_ARM_LDR_SB_G1): Likewise.
23389         (R_ARM_LDR_SB_G2, R_ARM_LDRS_SB_G0): Likewise.
23390         (R_ARM_LDRS_SB_G1, R_ARM_LDRS_SB_G2): Likewise.
23391         (R_ARM_LDC_SB_G0, R_ARM_LDC_SB_G1, R_ARM_LDC_SB_G2): Likewise.
23392         (R_ARM_MOVW_BREL_NC, R_ARM_MOVT_BREL): Likewise.
23393         (R_ARM_MOVW_BREL, R_ARM_THM_MOVW_BREL_NC): Likewise.
23394         (R_ARM_THM_MOVT_BREL, R_ARM_THM_MOVW_BREL): Likewise.
23395         (R_ARM_PLT32_ABS, R_ARM_GOT_ABS, R_ARM_GOT_PREL): Likewise.
23396         (R_ARM_GOT_BREL12, R_ARM_GOTOFF12, R_ARM_GOTRELAX): Likewise.
23397         (R_ARM_TLS_LDO12, R_ARM_TLS_LE12, R_ARM_TLS_IE12GP): Likewise.
23398         (R_ARM_PRIVATE_0, R_ARM_PRIVATE_1, R_ARM_PRIVATE_2): Likewise.
23399         (R_ARM_PRIVATE_3, R_ARM_PRIVATE_4, R_ARM_PRIVATE_5): Likewise.
23400         (R_ARM_PRIVATE_6, R_ARM_PRIVATE_7, R_ARM_PRIVATE_8): Likewise.
23401         (R_ARM_PRIVATE_9, R_ARM_PRIVATE_10): Likewise.
23402         (R_ARM_PRIVATE_11, R_ARM_PRIVATE_12): Likewise.
23403         (R_ARM_PRIVATE_13, R_ARM_PRIVATE_14): Likewise.
23404         (R_ARM_PRIVATE_15, R_ARM_ME_TOO): Likewise.
23405         (R_ARM_THM_TLS_DESCSEQ16, R_ARM_THM_TLS_DESCSEQ32): Likewise.
23406         (R_ARM_THM_GOT_BREL12): Likewise.
23407         (R_ARM_PC24, R_ARM_PLT32): Updated a comment at this macro.
23408         (R_ARM_THM_PC11, R_ARM_THM_PC9): Likewise.
23409         (R_ARM_THM_ABS5, R_ARM_THM_PC22): Added a comment to this macro.
23410         (R_ARM_THM_PC8, R_ARM_THM_SWI8, R_ARM_XPC25): Likewise.
23411         (R_ARM_THM_XPC22, R_ARM_ALU_PCREL_7_0): Likewise.
23412         (R_ARM_ALU_PCREL_15_8, R_ARM_ALU_PCREL_23_15): Likewise.
23413         (R_ARM_LDR_SBREL_11_0, R_ARM_ALU_SBREL_19_12): Likewise.
23414         (R_ARM_ALU_SBREL_27_20, R_ARM_TLS_DESCSEQ): Likewise.
23415         (R_ARM_THM_TLS_DESCSEQ): Fixed whitespace.
23417 2013-02-20  Thomas Schwinge  <thomas@codesourcery.com>
23419         * sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
23420         __attribute_used__ to __attribute__ ((unused)).
23422 2013-02-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
23424         * sysdeps/ieee754/dbl-64/mpa.c (__sqr): Copy over comment from
23425         powerpc mpa.c.
23426         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Fix
23427         comment formatting.
23428         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul): Likewise.
23430 2013-02-19  Joseph Myers  <joseph@codesourcery.com>
23432         [BZ #13550]
23433         * sysdeps/i386/bp-asm.h [__BOUNDED_POINTERS__] (BOUNDS_VIOLATED):
23434         Remove macro.
23435         (ENTER): Remove both macro definitions.
23436         (LEAVE): Likewise.
23437         (CHECK_BOUNDS_LOW): Likewise.
23438         (CHECK_BOUNDS_HIGH): Likewise.
23439         (CHECK_BOUNDS_BOTH): Likewise.
23440         (CHECK_BOUNDS_BOTH_WIDE): Likewise.
23441         (RETURN_BOUNDED_POINTER): Likewise.
23442         (RETURN_NULL_BOUNDED_POINTER): Likewise.
23443         (PUSH_ERRNO_LOCATION_RETURN): Likewise.
23444         (POP_ERRNO_LOCATION_RETURN): Likewise.
23445         * sysdeps/i386/add_n.S (__mpn_add_n): Do not use removed macros.
23446         (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
23447         * sysdeps/i386/addmul_1.S (__mpn_addmul_1): Do not use removed
23448         macros.
23449         (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
23450         * sysdeps/i386/bsd-_setjmp.S (_setjmp): Do not use removed macros.
23451         * sysdeps/i386/bsd-setjmp.S (setjmp): Likewise.
23452         * sysdeps/i386/fpu/s_frexp.S (__frexp): Likewise.
23453         * sysdeps/i386/fpu/s_frexpf.S (__frexpf): Likewise.
23454         * sysdeps/i386/fpu/s_frexpl.S (__frexpl): Likewise.
23455         * sysdeps/i386/fpu/s_remquo.S (__remquo): Likewise.
23456         * sysdeps/i386/fpu/s_remquof.S (__remquof): Likewise.
23457         * sysdeps/i386/fpu/s_remquol.S (__remquol): Likewise.
23458         * sysdeps/i386/i486/strcat.S (strcat): Likewise.
23459         * sysdeps/i386/i486/strlen.S (strlen): Likewise.
23460         * sysdeps/i386/i586/add_n.S (__mpn_add_n): Likewise.
23461         (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
23462         * sysdeps/i386/i586/addmul_1.S (__mpn_addmul_1): Do not use
23463         removed macros.
23464         (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
23465         * sysdeps/i386/i586/lshift.S (__mpn_lshift): Do not use removed
23466         macros.
23467         (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
23468         * sysdeps/i386/i586/memcpy.S (memcpy): Do not use removed macros.
23469         * sysdeps/i386/i586/memset.S (memset): Likewise.
23470         * sysdeps/i386/i586/mul_1.S (__mpn_mul_1): Likewise.
23471         (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
23472         * sysdeps/i386/i586/rshift.S (__mpn_rshift): Do not use removed
23473         macros.
23474         (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
23475         * sysdeps/i386/i586/strchr.S (strchr): Do not use removed macros.
23476         Change uses of L(2) to L(out).
23477         * sysdeps/i386/i586/strcpy.S (STRCPY): Do not use removed macros.
23478         * sysdeps/i386/i586/strlen.S (strlen): Likewise.
23479         * sysdeps/i386/i586/sub_n.S (__mpn_sub_n): Likewise.
23480         (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
23481         * sysdeps/i386/i586/submul_1.S (__mpn_submul_1): Do not use
23482         removed macros.
23483         (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
23484         * sysdeps/i386/i686/add_n.S (__mpn_add_n): Do not use removed
23485         macros.
23486         (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
23487         * sysdeps/i386/i686/memcmp.S (ENTRANCE): Do not use macro ENTER.
23488         (RETURN): Do not use macro LEAVE.
23489         * sysdeps/i386/i686/memcpy.S (memcpy): Do not use removed macros.
23490         * sysdeps/i386/i686/memmove.S (memmove): Likewise.
23491         * sysdeps/i386/i686/mempcpy.S (mempcpy): Likewise.
23492         * sysdeps/i386/i686/memset.S (memset): Likewise.
23493         * sysdeps/i386/i686/strcmp.S (strcmp): Likewise.
23494         (strcmp) [!__BOUNDED_POINTERS__]: Make code unconditional.
23495         (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
23496         * sysdeps/i386/i686/strtok.S (save_ptr) [__BOUNDED_POINTERS__]:
23497         Likewise.
23498         (save_ptr) [!__BOUNDED_POINTERS__]: Make code unconditional.
23499         (FUNCTION): Do not use removed macros.  Combine labels L(1_1),
23500         L(1_2) and L(1_3) into L(1).
23501         (FUNCTION) [__BOUNDED_POINTERS__]: Remove conditional code.
23502         * sysdeps/i386/lshift.S (__mpn_lshift): Do not use removed macros.
23503         (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
23504         * sysdeps/i386/memchr.S (__memchr): Do not use removed macros.
23505         (__memchr) [__BOUNDED_POINTERS__]: Remove conditional code.
23506         * sysdeps/i386/memcmp.S (memcmp): Do not use removed macros.
23507         * sysdeps/i386/mul_1.S (__mpn_mul_1): Likewise.
23508         (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
23509         * sysdeps/i386/rawmemchr.S (__rawmemchr): Do not use removed
23510         macros.
23511         * sysdeps/i386/rshift.S (__mpn_rshift): Likewise.
23512         (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
23513         * sysdeps/i386/setjmp.S (__sigsetjmp): Do not use removed macros.
23514         * sysdeps/i386/stpcpy.S (__stpcpy): Likewise.
23515         * sysdeps/i386/stpncpy.S (__stpncpy): Likewise.
23516         (__stpncpy) [__BOUNDED_POINTERS__]: Remove conditional code.
23517         * sysdeps/i386/strchr.S (strchr): Do not use removed macros.
23518         * sysdeps/i386/strchrnul.S (__strchrnul): Likewise.
23519         * sysdeps/i386/strcspn.S (strcspn): Likewise.
23520         * sysdeps/i386/strpbrk.S (strpbrk): Likewise.
23521         * sysdeps/i386/strrchr.S (strrchr): Likewise.
23522         * sysdeps/i386/strspn.S (strspn): Likewise.
23523         * sysdeps/i386/strtok.S (save_ptr) [__BOUNDED_POINTERS__]: Remove
23524         conditional code.
23525         (save_ptr) [!__BOUNDED_POINTERS__]: Make code unconditional.
23526         (FUNCTION) [!__BOUNDED_POINTERS__]: Likewise.
23527         (FUNCTION) [__BOUNDED_POINTERS__]: Remove conditional code.
23528         (FUNCTION): Do not use removed macros.  Combine labels L(1_2) and
23529         L(1_3) into L(1_1).
23530         * sysdeps/i386/sub_n.S (__mpn_sub_n): Do not use removed macros.
23531         (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
23532         * sysdeps/i386/submul_1.S (__mpn_submul_1): Do not use removed
23533         macros.
23534         (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
23536 2013-02-19  Jakub Jelinek  <jakub@redhat.com>
23538         * stdlib/strtod_l.c (__mpn_lshift_1): Rewritten as function-like
23539         macro.
23541 2013-02-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
23543         * math/atest-exp.c (exp_mpn): Remove ROUND.
23544         * math/atest-exp2.c (exp_mpn): Likewise.
23545         * math/atest-sincos.c (sincosx_mpn): Remove ROUND and CHK.
23547         * stdlib/cxa_thread_atexit_impl.c: Fix Copyright year.
23548         * stdlib/tst-tls-atexit-lib.c: Likewise.
23549         * stdlib/tst-tls-atexit.c: Likewise.
23551 2013-02-18  Mike Frysinger  <vapier@gentoo.org>
23553         * stdlib/stdlib.h (aligned_alloc): Use __attribute_malloc__
23554         and __attribute_alloc_size__.
23556 2013-02-18  Mike Frysinger  <vapier@gentoo.org>
23558         * include/programs/xmalloc.h: Change __attribute_alloc_size to
23559         __attribute_alloc_size__.
23560         * include/sys/cdefs.h (__attribute_alloc_size): Macro removed.
23561         * misc/sys/cdefs.h (__attribute_alloc_size__): New macro.
23563 2013-02-18  Mike Frysinger  <vapier@gentoo.org>
23565         * include/programs/xmalloc.h: New file.
23566         * catgets/gencat.c: Include it.
23567         (xmalloc, xcalloc, xrealloc, xstrdup): Don't declare them.
23568         * elf/pldd.c: Likewise.
23569         * iconv/iconv_charmap.c: Likewise.
23570         * iconv/iconvconfig.c: Likewise.
23571         * iconv/strtab.c: Likewise.
23572         * locale/programs/locale.c: Likewise.
23573         * locale/programs/localedef.h: Likewise.
23574         * locale/programs/simple-hash.c: Likewise.
23575         * nscd/nscd.h: Likewise.
23576         * nss/makedb.c: Likewise.
23577         * sysdeps/generic/ldconfig.h: Likewise.
23579 2013-02-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
23581         * Versions.def: Add GLIBC_2.18.
23582         * include/link.h (struct link_map): New member l_tls_dtor_count.
23583         * include/stdlib.h (__cxa_thread_atexit_impl): Declare.
23584         (__call_tls_dtors): Likewise.
23585         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Add
23586         __cxa_thread_atexit_impl.
23587         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
23588         Likewise.
23589         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
23590         Likewise.
23591         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
23592         Likewise.
23593         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
23594         Likewise.
23595         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
23596         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist:
23597         Likewise.
23598         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist:
23599         Likewise.
23600         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
23601         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist:
23602         Likewise.
23603         * stdlib/Makefile (routines): Add __cxa_thread_atexit_impl.
23604         (tests): Add test case tst-tls-atexit.
23605         (modules-names): Add shared library for tst-tls-atexit.
23606         * stdlib/Versions (GLIBC_2.18): Add __cxa_thread_atexit_impl.
23607         (GLIBC_PRIVATE): Add __call_tls_dtors.
23608         * stdlib/cxa_thread_atexit_impl.c: New file with helper function
23609         for libstdc++.
23610         * stdlib/exit.c (__run_exit_handlers): Call __call_tls_dtors.
23611         * stdlib/tst-tls-atexit.c: New test case.
23612         * stdlib/tst-tls-atexit-lib.c: New test case.
23614         * misc/tst-pselect.c: Include stdlib.h for declaration of exit.
23616         * elf/Versions (ld): Add _dl_find_dso_for_object.
23617         * elf/dl-addr.c (_dl_addr): Use _dl_find_dso_for_object.
23618         * elf/dl-open.c (_dl_find_dso_for_object): New function.
23619         (dl_open_worker): Use _dl_find_dso_for_object.
23620         * elf/dl-sym.c (do_sym): Likewise.
23621         * sysdeps/generic/ldsodefs.h: Declare _dl_find_dso_for_object.
23623 2013-02-18  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
23625         * sysdeps/s390/s390-64/dl-trampoline.S (_dl_runtime_resolve):
23626         Syntactic changes only.
23627         (_dl_runtime_profile): Do a tail-call to the resolved function.
23629 2013-02-17  Joseph Myers  <joseph@codesourcery.com>
23631         [BZ #13550]
23632         * sysdeps/x86_64/bp-asm.h: Remove file.
23633         * sysdeps/unix/sysv/linux/x86_64/clone.S: Do not include
23634         <bp-sym.h> and <bp-asm.h>.
23635         (__clone): Do not use BP_SYM.
23636         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Do not include
23637         <bp-sym.h> and <bp-asm.h>.
23638         * sysdeps/unix/x86_64/sysdep.S: Likewise.
23639         * sysdeps/x86_64/bsd-_setjmp.S: Do not include "bp-sym.h" and
23640         "bp-asm.h".
23641         (_setjmp): Do not use BP_SYM.
23642         * sysdeps/x86_64/bsd-setjmp.S: Do not include "bp-sym.h" and
23643         "bp-asm.h".
23644         (setjmp): Do not use BP_SYM.
23645         * sysdeps/x86_64/mempcpy.S (__mempcpy): Do not use BP_SYM in
23646         libc_hidden_def.
23647         (mempcpy): Do not use BP_SYM in weak_alias.
23648         * sysdeps/x86_64/rtld-strchr.S: Do not include "bp-sym.h" and
23649         "bp-asm.h".
23650         (strchr): Do not use BP_SYM.
23651         * sysdeps/x86_64/rtld-strlen.S: Do not include "bp-sym.h" and
23652         "bp-asm.h".
23653         * sysdeps/x86_64/setjmp.S (__sigsetjmp): Do not use BP_SYM.
23654         * sysdeps/x86_64/start.S: Do not include "bp-sym.h".
23655         (_start): Do not use BP_SYM.
23656         * sysdeps/x86_64/strcat.S: Do not include "bp-sym.h" and
23657         "bp-asm.h".
23658         (strcat): Do not use BP_SYM.
23659         * sysdeps/x86_64/strcmp.S: Do not include "bp-sym.h" and
23660         "bp-asm.h".
23661         (STRCMP): Do not use BP_SYM.
23662         * sysdeps/x86_64/strcpy.S: Do not include "bp-sym.h" and
23663         "bp-asm.h".
23664         (STRCPY): Do not use BP_SYM.
23665         * sysdeps/x86_64/strcpy_chk.S: Do not include "bp-sym.h" and
23666         "bp-asm.h".
23667         * sysdeps/x86_64/strtok.S: Do not include "bp-sym.h" and
23668         "bp-asm.h".
23669         (FUNCTION): Do not use BP_SYM.
23670         * sysdeps/x86_64/strtok_r.S (strtok_r): Do not use BP_SYM in
23671         weak_alias.
23672         (__GI___strtok_r): Do not use BP_SYM in strong_alias.
23674 2013-02-17  Andreas Jaeger  <aj@suse.de>
23676         * time/Versions: Sort entries.
23677         * string/Versions: Likewise.
23678         * resolv/Versions: Likewise.
23679         * posix/Versions: Likewise.
23680         * iconv/Versions: Likewise.
23681         * elf/Versions: Likewise.
23682         * wcsmbs/Versions: Likewise.
23684 2013-02-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
23686         * sysdeps/ieee754/dbl-64/mpa.c (__sqr): Avoid using LIM in
23687         loop termination condition.
23689         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Use intermediate
23690         variable to calculate EZ.
23691         (__sqr): Likewise.
23693         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Fix determination of
23694         the lower precision input.
23696 2013-02-15  Joseph Myers  <joseph@codesourcery.com>
23698         [BZ #13550]
23699         * Makeconfig [!+link-bounded] (+link-bounded): Remove variable.
23700         [!link-extra-libs] (link-extra-libs-bounded): Likewise.
23701         (run-via-rtld-prefix): Do not handle %-bp tests.
23702         (test-via-rtld-prefix): Do not mention %-bp tests in comment.
23703         (all-object-suffixes): Remove .ob.
23704         (bppfx): Remove variable.
23705         [$(build-bounded) = yes] (object-suffixes): Do not add .ob.
23706         [$(build-bounded) = yes] (CPPFLAGS-.ob): Remove variable.
23707         [$(build-bounded) = yes] (CFLAGS-.ob): Likewise.
23708         [$(build-bounded) = yes] (libtype.ob): Likewise.
23709         * Makerules (elide-routines.ob): Remove variable.
23710         (do-tests-clean): Do not handle *-bp.out.
23711         (common-mostlyclean): Do not handle *-bp and *-bp.out.
23712         * Rules [$(build-bounded) = yes] (tests-bp.out): Remove variable.
23713         [$(build-bounded) = yes] (xtests-bp.out): Likewise.
23714         (tests): Do not include $(tests-bp.out).
23715         (xtests): Do not include $(xtests-bp.out).
23716         [$(build-bounded) = yes] (binaries-bounded): Remove variable.
23717         [$(build-bounded) = yes] ($(addprefix
23718         $(objpfx),$(binaries-bounded))): Remove rule.
23719         ($(objpfx)%-bp.out): Remove rule.
23720         * config.make.in (build-bounded): Remove variable.
23721         * crypt/Makefile [$(build-bounded) = yes]
23722         ($(tests:%=$(objpfx)%-bp)): Remove dependency.
23723         * csu/Makefile [$(build-bounded) = yes] (extra-objs): Do not
23724         append to variable.
23725         [$(build-bounded) = yes] (install-lib): Likewise.
23726         [$(build-bounded) = yes] (generated): Likewise.
23727         [!start-installed-name-rule] ($(objpfx)b$(start-installed-name)):
23728         Remove rule.
23729         * intl/Makefile [$(build-bounded) = yes]
23730         ($(multithread-test-srcs:%=$(objpfx)%-bp)): Remove dependency.
23731         * math/Makefile [$(build-bounded) = yes]
23732         ($(tests:%=$(objpfx)%-bp): Likewise.
23733         * misc/Makefile [$(build-bounded) = yes]
23734         ($(objpfx)tst-tsearch-bp): Likewise.
23735         * nptl/Makeconfig (bounded-thread-library): Remove variable.
23736         * rt/Makefile [$(build-bounded) = yes] ($(tests:%=$(objpfx)%-bp)):
23737         Remove dependency.
23738         * string/Makefile (o-objects.ob): Remove variable.
23739         * sysdeps/i386/i686/Makefile [$(config-asflags-i686) = yes]
23740         (CFLAGS-.ob): Remove variable.
23741         [$(config-asflags-i686) = yes] (ASFLAGS-.ob): Likewise.
23742         * sysdeps/sparc/sparc32/sparcv9/Makefile (ASFLAGS-.ob): Remove
23743         both definitions of variable.
23744         * sysdeps/sparc/sparc64/Makefile [$(have-as-vis3) = yes]
23745         (ASFLAGS-.ob): Remove variable.
23747 2013-02-14  Joseph Myers  <joseph@codesourcery.com>
23749         [BZ #13550]
23750         * config.h.in [USE_REGPARMS && !PROF && !__BOUNDED_POINTERS__]:
23751         Remove __BOUNDED_POINTERS__ from condition.
23752         * elf/dl-runtime.c [!PROF && !__BOUNDED_POINTERS__]: Likewise.
23753         * string/bits/string2.h [!__NO_STRING_INLINES &&
23754         !__BOUNDED_POINTERS__]: Likewise.
23755         * sysdeps/i386/dl-machine.h [!PROF && !__BOUNDED_POINTERS__]:
23756         Likewise.
23757         * sysdeps/unix/sysv/linux/shmat.c (shmat) [__BOUNDED_POINTERS__]:
23758         Remove conditional code.
23759         * sysdeps/x86/bits/string.h [!__NO_STRING_INLINES &&
23760         __USE_STRING_INLINES && __GNUC__ && __GNUC__ >= 2 &&
23761         !__BOUNDED_POINTERS__]: Remove __BOUNDED_POINTERS__ from
23762         condition.
23764         [BZ #13550]
23765         * csu/libc-start.c: Do not include <bp-sym.h>.
23766         [!LIBC_START_MAIN] (LIBC_START_MAIN): Do not use BP_SYM.
23767         * elf/dl-open.c: Do not include <bp-sym.h>.
23768         (_dl_sysdep_start): Do not use BP_SYM in weak_extern.
23769         * math/fegetenv.c: Do not include <bp-sym.h>.
23770         (fegetenv): Do not use BP_SYM in versioned symbols.
23771         * nptl/sysdeps/pthread/bits/libc-lockP.h
23772         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]: Do not include
23773         <bp-sym.h>.
23774         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23775         (__pthread_mutex_init): Do not use BP_SYM in weak_extern.
23776         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23777         (__pthread_mutex_destroy): Likewise.
23778         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23779         (__pthread_mutex_lock): Likewise.
23780         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23781         (__pthread_mutex_trylock): Likewise.
23782         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23783         (__pthread_mutex_unlock): Likewise.
23784         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23785         (__pthread_mutexattr_init): Likewise.
23786         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23787         (__pthread_mutexattr_destroy): Likewise.
23788         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23789         (__pthread_mutexattr_settype): Likewise.
23790         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23791         (__pthread_rwlock_init): Likewise.
23792         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23793         (__pthread_rwlock_destroy): Likewise.
23794         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23795         (__pthread_rwlock_rdlock): Likewise.
23796         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23797         (__pthread_rwlock_tryrdlock): Likewise.
23798         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23799         (__pthread_rwlock_wrlock): Likewise.
23800         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23801         (__pthread_rwlock_trywrlock): Likewise.
23802         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23803         (__pthread_rwlock_unlock): Likewise.
23804         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23805         (__pthread_key_create): Likewise.
23806         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23807         (__pthread_setspecific): Likewise.
23808         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23809         (__pthread_getspecific): Likewise.
23810         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern] (__pthread_once):
23811         Likewise.
23812         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23813         (_pthread_cleanup_push_defer): Likewise.
23814         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23815         (_pthread_cleanup_pop_restore): Likewise.
23816         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
23817         (pthread_setcancelstate): Likewise.
23818         * string/memchr.c [HAVE_BP_SYM_H || _LIBC]: Do not include
23819         <bp-sym.h>.
23820         [!(HAVE_BP_SYM_H || _LIBC)] (BP_SYM): Remove macro definition.
23821         (memchr): Do not use BP_SYM in weak_alias.
23822         * sysdeps/i386/fpu/fegetenv.c: Do not include <bp-sym.h>.
23823         (fegetenv): Do not use BP_SYM in versioned symbols.
23824         * sysdeps/i386/fpu/fesetenv.c: Do not include <bp-sym.h>.
23825         (fesetenv): Do not use BP_SYM in versioned symbols.
23826         * sysdeps/i386/fpu/feupdateenv.c: Do not include <bp-sym.h>.
23827         (feupdateenv): Do not use BP_SYM in versioned symbols.
23828         * sysdeps/i386/fpu/fsetexcptflg.c: Do not include <bp-sym.h>.
23829         (fesetexceptflag): Do not use BP_SYM in versioned symbols.
23830         * sysdeps/posix/open64.c: Do not include <bp-sym.h>.
23831         (__open64): Do not use BP_SYM in weak_alias and libc_hidden_weak.
23832         (open64): Do not use BP_SYM in weak_alias.
23833         * sysdeps/powerpc/fpu/fegetenv.c: Do not include <bp-sym.h>.
23834         (fegetenv): Do not use BP_SYM in versioned symbols.
23835         * sysdeps/powerpc/fpu/fesetenv.c: Do not include <bp-sym.h>.
23836         (fesetenv): Do not use BP_SYM in versioned symbols.
23837         * sysdeps/powerpc/fpu/feupdateenv.c: Do not include <bp-sym.h>.
23838         (feupdateenv): Do not use BP_SYM in versioned symbols.
23839         * sysdeps/powerpc/fpu/fgetexcptflg.c: Do not include <bp-sym.h>.
23840         (fegetexceptflag): Do not use BP_SYM in versioned symbols.
23841         * sysdeps/powerpc/fpu/fraiseexcpt.c: Do not include <bp-sym.h>.
23842         (feraiseexcept): Do not use BP_SYM in versioned symbols.
23843         * sysdeps/powerpc/fpu/fsetexcptflg.c: Do not include <bp-sym.h>.
23844         (fesetexceptflag): Do not use BP_SYM in versioned symbols.
23845         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Do not include
23846         <bp-sym.h>.
23847         (__libc_start_main): Do not use BP_SYM.
23849 2013-02-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
23851         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__cpy): Remove
23852         redundant return line.
23853         (norm): Likewise.
23854         (denorm): Likewise.
23855         (dbl_mp): Likewise.
23856         (sub_magnitudes): Likewise.
23857         (__add): Likewise.
23858         (__sub): Likewise.
23859         (__mul): Likewise.
23860         (__inv): Likewise.
23861         (__dvd): Likewise.
23862         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__cpy): Likewise.
23863         (norm): Likewise.
23864         (denorm): Likewise.
23865         (dbl_mp): Likewise.
23866         (sub_magnitudes): Likewise.
23867         (__add): Likewise.
23868         (__sub): Likewise.
23869         (__mul): Likewise.
23870         (__inv): Likewise.
23871         (__dvd): Likewise.
23873         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Use __sqr
23874         instead of __mul.
23875         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Likewise.
23876         * sysdeps/ieee754/dbl-64/sincos32.c (ss32): Likewise.
23877         (cc32): Likewise.
23879         * sysdeps/ieee754/dbl-64/mpa.c (__sqr): New function.
23880         * sysdeps/ieee754/dbl-64/mpa.h (__sqr): Declare.
23881         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): use __sqr instead
23882         of __mul for squares.
23883         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__sqr): New
23884         function
23885         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__sqr):
23886         Likewise.
23887         * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: Define __sqr.
23888         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
23890 2013-02-13  Joseph Myers  <joseph@codesourcery.com>
23892         [BZ #13550]
23893         * misc/sys/cdefs.h [!__BOUNDED_POINTERS__]: Remove conditional
23894         code.
23895         * csu/libc-start.c (LIBC_START_MAIN): Do not use __unbounded in
23896         prototype or function definition.  Rename ubp_* variables and
23897         parameters.  Remove argv definitions conditional on
23898         [__BOUNDED_POINTERS__].
23899         * debug/backtrace.c (__backtrace): Do not use __unbounded.
23900         * elf/dl-runtime.c (_dl_fixup): Likewise.
23901         * include/set-hooks.h (RUN_HOOK): Likewise.
23902         * stdio-common/vfprintf.c (JUMP): Do not use __unbounded in either
23903         definition.
23904         * string/strcpy.c (strcpy): Do not use __unbounded.
23905         * sysdeps/generic/frame.h (struct layout): Likewise.
23906         * sysdeps/gnu/bits/msq.h (struct msqid_ds): Likewise.
23907         * sysdeps/i386/dl-machine.h (_dl_fixup): Likewise.
23908         * sysdeps/powerpc/powerpc32/backtrace.c (struct layout): Likewise.
23909         * sysdeps/powerpc/powerpc64/backtrace.c (struct layout): Likewise.
23910         * sysdeps/sparc/backtrace.c (struct layout): Likewise.
23911         (__backtrace): Likewise.
23912         * sysdeps/unix/sysv/linux/aio_sigqueue.c (__aio_sigqueue): Do not
23913         use __ptrvalue.
23914         * sysdeps/unix/sysv/linux/fxstat.c (__fxstat): Likewise.
23915         * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Likewise.
23916         * sysdeps/unix/sysv/linux/gai_sigqueue.c (__gai_sigqueue):
23917         Likewise.
23918         * sysdeps/unix/sysv/linux/i386/brk.c (__brk): Likewise.
23919         * sysdeps/unix/sysv/linux/i386/fxstat.c (__fxstat): Likewise.
23920         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise.
23921         * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
23922         * sysdeps/unix/sysv/linux/i386/msgctl.c (struct __old_msqid_ds):
23923         Do not use __unbounded.
23924         * sysdeps/unix/sysv/linux/i386/setrlimit.c (__new_setrlimit):
23925         Rename __unboundedrlimits parameter to rlimits in prototype.
23926         * sysdeps/unix/sysv/linux/i386/shmctl.c (struct __old_shmid_ds):
23927         Do not use __unbounded.
23928         * sysdeps/unix/sysv/linux/i386/sigaction.c (__libc_sigaction): Do
23929         not use __ptrvalue.
23930         * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
23931         * sysdeps/unix/sysv/linux/llseek.c (__llseek): Likewise.
23932         * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
23933         * sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Do not use
23934         __ptrvalue or __unbounded.
23935         (__mmap64) [__BOUNDED_POINTERS__]: Remove conditional code.
23936         * sysdeps/unix/sysv/linux/msgctl.c (struct __old_msqid_ds): Do not
23937         use __unbounded.
23938         (__new_msgctl): Do not use __ptrvalue.
23939         * sysdeps/unix/sysv/linux/msgrcv.c (struct ipc_kludge): Do not use
23940         __unbounded.
23941         (__libc_msgrcv): Do not use __ptrvalue.
23942         * sysdeps/unix/sysv/linux/powerpc/libc-start.c (struct
23943         startup_info): Do not use __unbounded.
23944         (__libc_start_main): Likewise.  Rename ubp_* variables and
23945         parameters.  Remove argv definitions conditional on
23946         [__BOUNDED_POINTERS__].
23947         * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Do not use
23948         __ptrvalue.
23949         * sysdeps/unix/sysv/linux/semctl.c (struct __old_semid_ds): Do not
23950         use __unbounded.
23951         * sysdeps/unix/sysv/linux/shmat.c (shmat): Do not use __unbounded
23952         or __ptrvalue.
23953         * sysdeps/unix/sysv/linux/shmctl.c (struct __old_shmid_ds): Do not
23954         use __unbounded.
23955         (__new_shmctl): Do not use __ptrvalue.
23956         * sysdeps/unix/sysv/linux/shmdt.c (shmdt): Likewise.
23957         * sysdeps/unix/sysv/linux/sigaction.c (__libc_sigaction):
23958         Likewise.
23959         * sysdeps/unix/sysv/linux/sigqueue.c (__sigqueue): Likewise.
23960         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c
23961         (__libc_sigaction): Likewise.
23962         * sysdeps/unix/sysv/linux/sysctl.c (__sysctl): Likewise.
23963         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (__libc_sigaction):
23964         Likewise.
23965         * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
23967 2013-02-13   Ondřej Bílka  <neleai@seznam.cz>
23969         * stdlib/Makefile (headers): Add bits/stdlib-bsearch.h.
23971         * string/mempcpy.c: Implement by calling memcpy.
23973 2013-02-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
23975         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove NFA.
23977         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Faster polynomial
23978         evaluation.
23980         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Don't bother with zero
23981         values in the mantissa.
23983         * sysdeps/ieee754/dbl-64/mpa.c (add_magnitudes): Use ZK to
23984         minimize writes to Z.
23985         (sub_magnitudes): Simplify code a bit.
23987 2013-02-12  Roland McGrath  <roland@hack.frob.com>
23989         * include/libc-symbols.h (stub_warning): Remove "warning: " prefix
23990         from the message.  The linker prefixes all warnings with that already.
23992 2013-02-12  Andreas Schwab  <schwab@suse.de>
23994         [BZ #15078]
23995         * posix/regexec.c (extend_buffers): Add parameter min_len.
23996         (check_matching): Pass minimum needed length.
23997         (clean_state_log_if_needed): Likewise.
23998         (get_subexp): Likewise.
23999         * posix/Makefile (tests): Add bug-regex34.
24000         (bug-regex34-ENV): Define.
24001         * posix/bug-regex34.c: New file.
24003         [BZ #11561]
24004         * posix/regcomp.c (parse_bracket_exp): When looking up collating
24005         elements compare against the byte sequence of it, not its name.
24006         * posix/Makefile (tests): Add bug-regex35.
24007         (bug-regex35-ENV): Define.
24008         * posix/bug-regex35.c: New file.
24010 2013-02-11  Tom de Vries  <tom@codesourcery.com>
24012         * string/str-two-way.h:  Fix typo RESULT_TYPE -> RETURN_TYPE in
24013         comment.
24014         Add RET0_IF_0 and CHECK_EOL to macro list in comment.
24015         (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J): Remove superfluous undef.
24016         (CHECK_EOL): Add undef.
24018 2013-02-11   Ondřej Bílka  <neleai@seznam.cz>
24020         * bits/stdlib-bsearch.h: New file.
24021         * stdlib/bsearch.c: Include bits/stdlib-bsearch.h.
24022         * stdlib/stdlib.h: Likewise.
24024 2013-02-11  Roland McGrath  <roland@hack.frob.com>
24026         * manual/conf.texi (General Limits): Fix SSIZE_MAX type to ssize_t.
24027         * manual/errno.texi (Error Messages): Fix typo in error_print_progname
24028         declaration.
24029         * manual/search.texi (Array Search Function): Add missing const in
24030         lfind prototype.
24031         * manual/resource.texi (Limits on Resources): Fix RLIM_INFINITY
24032         declaration to use rlim_t.
24033         (Basic Scheduling Functions): Remove erroneous const from
24034         sched_getparam prototype.  Remove erroneous * from
24035         sched_get_priority_max and sched_get_priority_min prototypes.
24036         (Resource Usage): Fix summary @comment on vtimes to refer to
24037         sys/vtimes.h rather than vtimes.h.
24038         Add missing *s in vtimes prototype.
24039         (Limits on Resources): Fix ulimit prototype to return long int.
24040         * manual/math.texi (SVID Random): Fix lrand48_r and mrand48_r
24041         prototypes to use long int rather than double.
24042         (BSD Random): Fix initstate and setstate to use char *, not void *.
24043         * manual/llio.texi (Asynchronous Reads/Writes): Fix lio_listio64
24044         prototype to make second argument 'struct aiocb64 *const[]'.
24045         Fix aio_read64 and aio_write64 prototypes to use struct aiocb64.
24046         (Status of AIO Operations): Remove erroneous const in aio_return and
24047         aio_return64 prototypes.
24048         (Synchronizing I/O): Fix sync prototype to return void.
24049         * manual/startup.texi (Suboptions): Remove an erroneous const in
24050         getsubopt prototype.
24051         * manual/getopt.texi (Using Getopt): Add a const in getopt prototype.
24052         * manual/users.texi (Lookup Netgroup): Fix getnetgrent_r prototype to
24053         use size_t rather than int.
24054         (Scanning All Users): Likewise for getpwent_r.
24055         (Setting Groups): Add missing const to setgroups prototype.
24056         * manual/sysinfo.texi (mtab): Fix typo in getmntent_r prototype.
24057         * manual/socket.texi (Host Names): Fix gethostbyaddr and
24058         gethostbyaddr_r prototypes to use socklen_t rather than size_t and
24059         'const void *' rather than 'const char *'.
24060         (Host Address Functions): Likewise for inet_ntop.
24061         (Networks Database): Fix getnetbyaddr prototype to use uint32_t.
24062         (Receiving Data): Fix recv, recvfrom, recvmsg prototypes to use
24063         ssize_t for return value.
24064         (Sending Data): Likewise for send, sendto, sendmsg.
24065         (Socket Option Functions): Add a missing const in setsockopt prototype.
24066         * manual/stdio.texi (Simple Output): Fix fputwc_unlocked prototype to
24067         use wchar_t for the argument.
24068         (Formatted Input Functions): Fix swscanf prototype to use wchar_t *.
24069         * manual/arith.texi (Control Functions): Fix fegetexcept prototype to
24070         take no arguments.
24071         (Normalization Functions): Fix scalb, scalbf, scalbl prototypes to use
24072         double/float/long double for second argument.
24073         Fix return types of significand, significandf, significandl.
24074         * manual/filesys.texi (Setting Permissions): Use mode_t for second
24075         argument in fchmod prototype.
24076         (File Owner): Use uid_t and gid_t in fchown prototype.
24077         (File Times): Add const to utimes, futimes, and lutimes prototypes.
24078         (Making Special Files): Use mode_t and dev_t in mknod prototype.
24079         (Scanning Directory Content): Fix scandir and scandir64 prototypes to
24080         use 'const struct dirent **' as argument types to CMP function pointer
24081         argument.
24082         (Symbolic Links): Fix readlink prototype with ssize_t as return value.
24083         (File Times): Fix summary magic @comment for struct utimbuf and utime
24084         to refer to utime.h, not time.h.
24085         * manual/string.texi (Argz Functions): Add missing const in
24086         argz_extract and argz_next prototypes.
24087         (Finding Tokens in a String): Likewise for basename.
24088         (String/Array Comparison): Fix typo in wcscasecmp prototype.
24089         (Copying and Concatenation): Fix typo in wmemmove prototype.
24090         * manual/signal.texi (Using Pause): Use (void) in pause prototype.
24091         (Signal Stack): Remove erroneous const in sigstack prototype.
24092         * manual/time.texi (Setting an Alarm): Add missing const in setitimer
24093         prototype.
24094         (Simple Calendar Time): Likewise for stime.
24095         * manual/terminal.texi (BSD Terminal Modes): Add missing const in stty
24096         prototype.
24097         * manual/sysinfo.texi (System Parameters): Fix mentions of sysctl.h to
24098         say sys/sysctl.h instead.
24099         * manual/syslog.texi (syslog; vsyslog): Add missing const in syslog
24100         and vsyslog prototypes.
24102 2013-02-11  Tom de Vries  <tom@codesourcery.com>
24104         * string/Makefile (CFLAGS-bug-strstr1.c, CFLAGS-bug-strcasestr1.c):
24105         Remove.
24107 2013-02-11  Roland McGrath  <roland@hack.frob.com>
24109         * misc/sys/mman.h: Fix typo in mremap comment.
24111 2013-02-08  Roland McGrath  <roland@hack.frob.com>
24113         * manual/examples/mkfsock.c (make_named_socket): Don't add one for
24114         the '\0' terminator.
24116 2013-02-08  Joseph Myers  <joseph@codesourcery.com>
24118         [BZ #13550]
24119         * debug/segfault.c: Don't include <bp-checks.h>.
24120         * sysdeps/generic/bp-checks.h: Remove file.
24121         * sysdeps/unix/sysv/linux/getdents.c: Don't include <bp-checks.h>.
24122         (__GETDENTS): Don't use CHECK_N.
24123         * sysdeps/unix/sysv/linux/i386/brk.c: Don't include <bp-checks.h>.
24124         * sysdeps/unix/sysv/linux/i386/getgroups.c: Likewise.
24125         (__getgroups): Don't use CHECK_N.
24126         * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
24127         (setgroups): Don't use CHECK_N.
24128         * sysdeps/unix/sysv/linux/mmap64.c: Don't include <bp-checks.h>.
24129         * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
24130         (__libc_msgrcv): Don't use CHECK_N.
24131         * sysdeps/unix/sysv/linux/msgsnd.c: Don't include <bp-checks.h>.
24132         (__libc_msgsnd): Don't use CHECK_N.
24133         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c: Don't include
24134         <bp-checks.h>.
24135         (__libc_pread): Don't use CHECK_N.
24136         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c: Don't
24137         include <bp-checks.h>.
24138         (__libc_pread64): Don't use CHECK_N.
24139         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c: Don't
24140         include <bp-checks.h>.
24141         (__libc_pwrite): Don't use CHECK_N.
24142         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c: Don't
24143         include <bp-checks.h>.
24144         (__libc_pwrite64): Don't use CHECK_N.
24145         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Don't include
24146         <bp-checks.h>.
24147         (__libc_pread): Don't use CHECK_N.
24148         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Don't
24149         include <bp-checks.h>.
24150         (__libc_pread64): Don't use CHECK_N.
24151         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Don't
24152         include <bp-checks.h>.
24153         (__libc_pwrite): Don't use CHECK_N.
24154         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Don't
24155         include <bp-checks.h>.
24156         (__libc_pwrite64): Don't use CHECK_N.
24157         * sysdeps/unix/sysv/linux/pread.c: Don't include <bp-checks.h>.
24158         (do_pread): Don't use CHECK_N.
24159         * sysdeps/unix/sysv/linux/pread64.c: Don't include <bp-checks.h>.
24160         (do_pread64): Don't use CHECK_N.
24161         * sysdeps/unix/sysv/linux/pwrite.c: Don't include <bp-checks.h>.
24162         (do_pwrite): Don't use CHECK_N.
24163         * sysdeps/unix/sysv/linux/pwrite64.c: Don't include <bp-checks.h>.
24164         (do_pwrite64): Don't use CHECK_N.
24165         * sysdeps/unix/sysv/linux/readv.c: Don't include <bp-checks.h>.
24166         (__libc_readv): Don't use CHECK_N.
24167         * sysdeps/unix/sysv/linux/semop.c: Don't include <bp-checks.h>.
24168         (semop): Don't use CHECK_N.
24169         * sysdeps/unix/sysv/linux/semtimedop.c: Don't include
24170         <bp-checks.h>.
24171         (semtimedop): Don't use CHECK_N.
24172         * sysdeps/unix/sysv/linux/sh/pread.c: Don't include <bp-checks.h>.
24173         (__libc_pread): Don't use CHECK_N.
24174         * sysdeps/unix/sysv/linux/sh/pread64.c: Don't include
24175         <bp-checks.h>.
24176         (__libc_pread64): Don't use CHECK_N.
24177         * sysdeps/unix/sysv/linux/sh/pwrite.c: Don't include
24178         <bp-checks.h>.
24179         (__libc_pwrite): Don't use CHECK_N.
24180         * sysdeps/unix/sysv/linux/sh/pwrite64.c: Don't include
24181         <bp-checks.h>.
24182         (__libc_pwrite64): Don't use CHECK_N.
24183         * sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c: Don't include
24184         <bp-checks.h>.
24185         (__libc_msgrcv): Don't use CHECK_N.
24186         * sysdeps/unix/sysv/linux/sysctl.c: Don't include <bp-checks.h>.
24187         (__sysctl): Don't use CHECK_N.  Remove GKM FIXME comment.
24188         * sysdeps/unix/sysv/linux/writev.c: Don't include <bp-checks.h>.
24189         (__libc_writev): Don't use CHECK_N.
24191 2013-02-08  Roland McGrath  <roland@hack.frob.com>
24193         * string/strcpy.c: Removed unused variable.
24195         * Makeconfig (+sysdep-includes): Define with := rather than =.
24196         Use an existing include/ subdir of each sysdeps dir before it.
24198 2013-02-08  Carlos O'Donell  <carlos@redhat.com>
24200         * nscd/connection.c (register_traced_file): Comment function.
24201         [HAVE_INOTIFY] (union __inev): Define.
24202         [HAVE_INOTIFY] (inotify_check_files): New function.
24203         [HAVE_INOTIFY] (clear_db_cache): Likewise.
24204         [HAVE_INOTIFY] (main_loop_poll): Call inotify_check_files and
24205         clear_db_cache.
24206         [HAVE_INOTIFY] (main_loop_epoll): Likewise.
24208 2013-02-08  Carlos O'Donell  <carlos@redhat.com>
24210         * elf/dl-cache.c (_dl_load_cache_lookup): Comment that cache is
24211         loaded if not already and that a failure is permanent.
24213 2013-02-08  Carlos O'Donell  <carlos@redhat.com>
24215         [BZ #15006]
24216         * sysdeps/generic/ldconfig.h: Define FLAG_ARM_LIBSF.
24217         * elf/cache.c (print_entry): Add FLAG_ARM_LIBSF support.
24219 2013-02-08  Joseph Myers  <joseph@codesourcery.com>
24221         [BZ #13550]
24222         * sysdeps/generic/bp-checks.h (CHECK_1): Remove all definitions.
24223         (CHECK_1_NULL_OK): Likewise.
24224         * sysdeps/unix/sysv/linux/fxstat.c: Do not include <bp-checks.h>.
24225         (__fxstat): Do not use CHECK_1.
24226         * sysdeps/unix/sysv/linux/fxstat64.c: Do not include
24227         <bp-checks.h>.
24228         (___fxstat64): Do not use CHECK_1.
24229         * sysdeps/unix/sysv/linux/fxstatat.c: Do not include
24230         <bp-checks.h>.
24231         (__fxstatat): Do not use CHECK_1.
24232         * sysdeps/unix/sysv/linux/fxstatat64.c: Do not include
24233         <bp-checks.h>.
24234         (__fxstatat64): Do not use CHECK_1.
24235         * sysdeps/unix/sysv/linux/i386/fxstat.c: Do not include
24236         <bp-checks.h>.
24237         (__fxstat): Do not use CHECK_1.
24238         * sysdeps/unix/sysv/linux/i386/fxstatat.c: Do not include
24239         <bp-checks.h>.
24240         (__fxstatat): Do not use CHECK_1.
24241         * sysdeps/unix/sysv/linux/i386/getresgid.c: Do not include
24242         <bp-checks.h>.
24243         (__getresgid): Do not use CHECK_1.
24244         * sysdeps/unix/sysv/linux/i386/getresuid.c: Do not include
24245         <bp-checks.h>.
24246         (__getresuid): Do not use CHECK_1.
24247         * sysdeps/unix/sysv/linux/i386/lxstat.c: Do not include
24248         <bp-checks.h>.
24249         (__lxstat): Do not use CHECK_1.
24250         * sysdeps/unix/sysv/linux/i386/msgctl.c: Do not include
24251         <bp-checks.h>.
24252         (__old_msgctl): Do not use CHECK_1.
24253         (__new_msgctl): Likewise.
24254         * sysdeps/unix/sysv/linux/i386/setrlimit.c: Do not include
24255         <bp-checks.h>.
24256         (__new_setrlimit): Do not use CHECK_1.
24257         * sysdeps/unix/sysv/linux/i386/shmctl.c: Do not include
24258         <bp-checks.h>.
24259         (__old_shmctl): Do not use CHECK_1.
24260         (__new_shmctl): Likewise.
24261         * sysdeps/unix/sysv/linux/i386/xstat.c: Do not include
24262         <bp-checks.h>.
24263         (__xstat): Do not use CHECK_1.
24264         * sysdeps/unix/sysv/linux/lxstat.c: Do not include <bp-checks.h>.
24265         (__lxstat): Do not use CHECK_1.
24266         * sysdeps/unix/sysv/linux/lxstat64.c: Do not include
24267         <bp-checks.h>.
24268         (___lxstat64): Do not use CHECK_1.
24269         * sysdeps/unix/sysv/linux/msgctl.c: Do not include <bp-checks.h>.
24270         (__old_msgctl): Do not use CHECK_1.
24271         (__new_msgctl): Likewise.
24272         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Do not include
24273         <bp-checks.h>.
24274         (__gettimeofday): Do not use CHECK_1.
24275         * sysdeps/unix/sysv/linux/ptrace.c: Do not include <bp-checks.h>.
24276         (ptrace) [__BOUNDED_POINTERS__]: Remove conditional code.
24277         * sysdeps/unix/sysv/linux/s390/gettimeofday.c: Do not include
24278         <bp-checks.h>.
24279         (__gettimeofday): Do not use CHECK_1.
24280         * sysdeps/unix/sysv/linux/shmctl.c: Do not include <bp-checks.h>.
24281         (__old_shmctl): Do not use CHECK_1_NULL_OK.
24282         (__new_shmctl): Do not use CHECK_1.
24283         * sysdeps/unix/sysv/linux/sigtimedwait.c: Do not include
24284         <bp-checks.h>.
24285         (do_sigtimedwait): Do not use CHECK_1.
24286         * sysdeps/unix/sysv/linux/sigwaitinfo.c: Do not include
24287         <bp-checks.h>.
24288         (do_sigwaitinfo): Do not use CHECK_1.
24289         * sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c: Do not include
24290         <bp-checks.h>.
24291         (msgctl): Do not use CHECK_1.
24292         * sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c: Do not include
24293         <bp-checks.h>.
24294         (shmctl): Do not use CHECK_1.
24295         * sysdeps/unix/sysv/linux/ustat.c: Do not include <bp-checks.h>.
24296         (ustat): Do not use CHECK_1.
24297         * sysdeps/unix/sysv/linux/wordsize-64/fxstat.c: Do not include
24298         <bp-checks.h>.
24299         (__fxstat): Do not use CHECK_1.
24300         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Do not include
24301         <bp-checks.h>.
24302         (__fxstatat): Do not use CHECK_1.
24303         * sysdeps/unix/sysv/linux/wordsize-64/lxstat.c: Do not include
24304         <bp-checks.h>.
24305         (__lxstat): Do not use CHECK_1.
24306         * sysdeps/unix/sysv/linux/wordsize-64/xstat.c: Do not include
24307         <bp-checks.h>.
24308         (__xstat): Do not use CHECK_1.
24309         * sysdeps/unix/sysv/linux/xstat.c: Do not include <bp-checks.h>.
24310         (__xstat): Do not use CHECK_1.
24311         * sysdeps/unix/sysv/linux/xstat64.c: Do not include <bp-checks.h>.
24312         (___xstat64): Do not use CHECK_1.
24314         [BZ #13550]
24315         * sysdeps/generic/bp-checks.h (CHECK_BOUNDS_LOW): Remove all
24316         definitions.
24317         (CHECK_BOUNDS_HIGH): Likewise.
24318         * string/strcpy.c: Do not include <bp-checks.h>.
24319         (strcpy): Do not use CHECK_BOUNDS_LOW and CHECK_BOUNDS_HIGH.
24321 2013-02-07  Roland McGrath  <roland@hack.frob.com>
24323         * nscd/nscd-client.h (__nscd_drop_map_ref):
24324         Add __attribute__ ((unused)).
24325         * nis/nss-nisplus.h (niserr2nss): Likewise.
24327         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu): Define it only
24328         under [!(USE_AS_STRCASESTR && STRCASESTR_NONASCII)].
24330         * csu/libc-tls.c (init_static_tls, init_slotinfo):
24331         Remove inline keyword.
24332         * include/rounding-mode.h (round_away): Likewise.
24333         * libio/wfileops.c (adjust_wide_data): Likewise.
24334         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu): Likewise.
24335         (__m128i_strloadu_tolower): Likewise.
24336         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c
24337         (__m128i_strloadu_tolower): Likewise.
24338         * time/mktime.c (ydhms_diff): Likewise.
24339         * locale/elem-hash.h (elem_hash): Likewise.
24340         * locale/setlocale.c (setdata): Likewise.
24341         * posix/regex_internal.h (re_string_char_size_at): Likewise.
24342         (re_string_wchar_at): Likewise.
24343         (bitset_not, bitset_merge, bitset_mask): Likewise.
24344         [!(__GNUC__ > 3)] (inline): Remove macro.
24345         * nscd/nscd-client.h (__nscd_drop_map_ref): Remove inline keyword.
24346         * elf/dl-deps.c (_dl_map_object_deps: preload): Likewise.
24347         * elf/tlsdeschtab.h (_dl_tlsdesc_resolve_early_return_p): Likewise.
24348         (_dl_tlsdesc_wake_up_held_fixups): Likewise.
24349         * string/memcmp.c (memcmp_bytes): Likewise.
24350         * locale/programs/locarchive.c (compute_hashval): Likewise.
24351         * sysdeps/ieee754/dbl-64/x2y2m1.c (mul_split): Likewise.
24352         * sysdeps/unix/sysv/linux/fips-private.h (fips_enabled_p): Likewise.
24353         * resolv/res_send.c (evNowTime, evCmpTime): Likewise.
24354         * nss/getent.c (print_rpc, print_protocols): Likewise.
24355         (print_passwd, print_group, print_aliases): Likewise.
24356         * nis/nss-nisplus.h (niserr2nss): Likewise.
24357         * nscd/connections.c (restart_p): Likewise.
24358         Change return type to bool.
24360 2013-02-05  Roland McGrath  <roland@hack.frob.com>
24362         * Makeconfig (all-Depend-files): Add existing
24363         $(sorted-subdirs:=/Depend) files.
24364         (all-subdirs): Remove nss.
24365         * sysdeps/unix/inet/Subdirs: Add it here instead.
24366         * hesiod/Depend: New file.
24368         * elf/dl-hwcaps.c (_dl_important_hwcaps): Use a variable-length array
24369         instead of calling alloca.
24371         * io/lseek.c (__lseek): Rename to __libc_lseek.
24372         Define __lseek as an alias.
24374         * sysdeps/generic/malloc-sysdep.h: Include <stdbool.h> and <unistd.h>.
24376 2013-02-04  Carlos O'Donell  <carlos@redhat.com>
24378         * stdlib/getenv.c (getenv): Assume __BIG_ENDIAN in the
24379         else clause and remove check for non-standard endianness.
24381 2013-02-04  David S. Miller  <davem@davemloft.net>
24383         * sysdeps/sparc/fpu/libm-test-ulps: Update.
24385 2013-02-04  Joseph Myers  <joseph@codesourcery.com>
24387         [BZ #13550]
24388         * sysdeps/generic/bp-checks.h [__BOUNDED_POINTERS__]
24389         (__ubp_memchr): Remove prototype.
24390         [__BOUNDED_POINTERS__] (_CHECK_STRING): Remove macro.
24391         [__BOUNDED_POINTERS__] (CHECK_STRING): Likewise.
24392         [__BOUNDED_POINTERS__] (CHECK_STRING_NULL_OK): Likewise.
24393         [!__BOUNDED_POINTERS__] (CHECK_STRING): Likewise.
24394         * sysdeps/i386/memchr.S [!__BOUNDED_POINTERS__] (__ubp_memchr):
24395         Remove alias.
24396         * sysdeps/sparc/sparc32/memchr.S [!__BOUNDED_POINTERS__]
24397         (__ubp_memchr): Likewise.
24398         * sysdeps/sparc/sparc64/memchr.S [!__BOUNDED_POINTERS__]
24399         (__ubp_memchr): Likewise.
24400         * sysdeps/unix/sysv/linux/execve.c: Do not include <bp-checks.h>.
24401         (__execve) [__BOUNDED_POINTERS__]: Remove conditional code.
24402         (__execve) [!__BOUNDED_POINTERS__]: Make code unconditional.
24403         * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Do not use
24404         CHECK_STRING.
24405         * sysdeps/unix/sysv/linux/fxstatat64.c (__fxstatat64): Likewise.
24406         * sysdeps/unix/sysv/linux/getcwd.c: Do not include <bp-checks.h>.
24407         (__getcwd): Do not use CHECK_STRING.
24408         * sysdeps/unix/sysv/linux/i386/chown.c: Do not include
24409         <bp-checks.h>.
24410         (__real_chown): Do not use CHECK_STRING.
24411         * sysdeps/unix/sysv/linux/i386/fchownat.c: Do not include
24412         <bp-checks.h>.
24413         (fchownat): Do not use CHECK_STRING.
24414         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Do not use
24415         CHECK_STRING.
24416         * sysdeps/unix/sysv/linux/i386/lchown.c: Do not include
24417         <bp-checks.h>.
24418         (__lchown): Do not use CHECK_STRING.
24419         * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
24420         * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
24421         * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
24422         * sysdeps/unix/sysv/linux/lxstat64.c (___lxstat64): Likewise.
24423         * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Do not
24424         include <bp-checks.h>.
24425         (truncate64): Do not use CHECK_STRING.
24426         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Do not include
24427         <bp-checks.h>.
24428         (__real_chown): Do not use CHECK_STRING.
24429         * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Do not include
24430         <bp-checks.h>.
24431         (__lchown): Do not use CHECK_STRING.
24432         * sysdeps/unix/sysv/linux/sh/chown.c: Do not include
24433         <bp-checks.h>.
24434         (__chown): Do not use CHECK_STRING.
24435         * sysdeps/unix/sysv/linux/truncate64.c: Do not include
24436         <bp-checks.h>.
24437         (truncate64): Do not use CHECK_STRING.
24438         * sysdeps/unix/sysv/linux/wordsize-64/lxstat.c (__lxstat):
24439         Likewise.
24440         * sysdeps/unix/sysv/linux/xmknod.c: Do not include <bp-checks.h>.
24441         (__xmknod): Do not use CHECK_STRING.
24442         * sysdeps/unix/sysv/linux/xmknodat.c: Do not include
24443         <bp-checks.h>.
24444         (__xmknodat): Do not use CHECK_STRING.
24445         * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
24446         * sysdeps/unix/sysv/linux/xstat64.c (___xstat64): Likewise.
24448 2013-02-04  Andreas Schwab  <schwab@suse.de>
24450         [BZ #14142]
24451         * include/errno.h: Redefine errno only if !NOT_IN_libc || IN_LIB.
24452         * include/netdb.h: Likewise for h_errno.
24453         * elf/tst-stackguard1.c: Include <tls.h>.
24455 2013-02-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
24457         * elf/link.h (struct link_map): Extend the l_addr comment.
24458         * include/link.h (struct link_map): Likewise.
24460 2013-02-01  Joseph Myers  <joseph@codesourcery.com>
24462         [BZ #13550]
24463         * sysdeps/generic/bp-checks.h (BOUNDED_N): Remove all definitions.
24464         (BOUNDED_1): Remove macro.
24465         * debug/backtrace.c: Don't include <bp-checks.h>.
24466         (ADVANCE_STACK_FRAME): Don't use BOUNDED_1.
24467         (__backtrace): Likewise.
24468         * sysdeps/powerpc/powerpc32/backtrace.c: Don't include
24469         <bp-checks.h>.
24470         (__backtrace): Don't use BOUNDED_1.
24471         * sysdeps/powerpc/powerpc64/backtrace.c: Don't include
24472         <bp-checks.h>.
24473         (__backtrace): Don't use BOUNDED_1.
24474         * sysdeps/sparc/backtrace.c: Don't include <bp-checks.h>.
24475         (__backtrace): Don't use BOUNDED_1.
24476         * sysdeps/unix/sysv/linux/shmat.c: Don't include <bp-checks.h>.
24477         (shmat): Don't use BOUNDED_N.
24479 2013-01-31  Joseph Myers  <joseph@codesourcery.com>
24481         [BZ #13550]
24482         * sysdeps/generic/bp-start.h: Remove file.
24483         * csu/libc-start.c: Don't include <bp-start.h>.
24484         (LIBC_START_MAIN): Set up __environ directly instead of using
24485         INIT_ARGV_and_ENVIRON.
24486         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Don't include
24487         <bp-start.h>.
24489         [BZ #13550]
24490         * sysdeps/generic/bp-checks.h (CHECK_IOCTL): Remove both
24491         definitions.
24492         (CHECK_FCNTL): Likewise.
24493         (CHECK_N_PAGES): Likewise.
24495         [BZ #13550]
24496         * sysdeps/generic/bp-checks.h (CHECK_SIGSET): Remove both
24497         definitions.
24498         (CHECK_SIGSET_NULL_OK): Likewise.
24499         * sysdeps/unix/sysv/linux/sigpending.c: Don't include
24500         <bp-checks.h>.
24501         (sigpending): Don't use CHECK_SIGSET.
24502         * sysdeps/unix/sysv/linux/sigprocmask.c: Don't include
24503         <bp-checks.h>.
24504         (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
24505         * sysdeps/unix/sysv/linux/sigsuspend.c: Don't include
24506         <bp-checks.h>.
24507         (do_sigsuspend): Don't use CHECK_SIGSET.
24508         * sysdeps/unix/sysv/linux/sigtimedwait.c (do_sigtimedwait): Don't
24509         use CHECK_SIGSET.
24510         * sysdeps/unix/sysv/linux/sigwait.c: Don't include <bp-checks.h>.
24511         (do_sigwait): Don't use CHECK_SIGSET.
24512         * sysdeps/unix/sysv/linux/sigwaitinfo.c (do_sigwaitinfo): Don't
24513         use CHECK_SIGSET.
24514         * sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c: Don't
24515         include <bp-checks.h>.
24516         (sigpending): Don't use CHECK_SIGSET.
24517         * sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c: Don't
24518         include <bp-checks.h>.
24519         (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
24520         * sysdeps/unix/sysv/linux/x86_64/sigpending.c: Don't include
24521         <bp-checks.h>.
24522         (sigpending): Don't use CHECK_SIGSET.
24523         * sysdeps/unix/sysv/linux/x86_64/sigprocmask.c: Don't include
24524         <bp-checks.h>.
24525         (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
24527         [BZ #13550]
24528         * sysdeps/generic/bp-semctl.h: Remove file.
24529         * sysdeps/unix/sysv/linux/i386/semctl.c: Don't include
24530         <bp-checks.h> and <bp-semctl.h>.
24531         (__old_semctl): Don't use CHECK_SEMCTL.
24532         (__new_semctl): Likewise.
24533         * sysdeps/unix/sysv/linux/semctl.c: Don't include <bp-checks.h>
24534         and <bp-semctl.h>.
24535         (__old_semctl): Don't use CHECK_SEMCTL.
24536         (__new_semctl): Likewise.
24537         * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Don't include
24538         <bp-checks.h> and <bp-semctl.h>.
24539         (__old_semctl): Don't use CHECK_SEMCTL.
24540         (__new_semctl): Likewise.
24541         * sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c: Don't include
24542         <bp-checks.h> and <bp-semctl.h>.
24543         (semctl): Don't use CHECK_SEMCTL.
24545         [BZ #13550]
24546         * Makerules (elide-bp-thunks): Remove variable.
24547         (elide-routines.oS): Don't use $(elide-bp-thunks).
24548         (elide-routines.os): Likewise.
24549         (elide-routines.o): Likewise.
24550         (elide-routines.op): Likewise.
24551         (elide-routines.og): Likewise.
24552         (objects): Don't use $(bp-thunks).
24553         * sysdeps/unix/Makefile ($(common-objpfx)s-proto-bp.d): Do not
24554         include.
24555         (common-generated): Do not add s-proto-bp.d.
24556         * sysdeps/unix/make-syscalls.sh (ptr): Remove variable.
24557         (int): Likewise.
24558         (typ): Likewise.
24559         Do not generate makefile rules for bounded-pointer thunks.
24560         * sysdeps/generic/bp-thunks.h: Remove file.
24561         * sysdeps/unix/sysv/linux/i386/bp-thunks.h: Likewise.
24562         * sysdeps/unix/s-proto-bp.S: Likewise.
24564         [BZ #15062]
24565         * math/k_casinh.c (__kernel_casinh): Compute real and imaginary
24566         parts of result separately when argument is not close to line from
24567         -i to i and one part of argument is small.
24568         * math/k_casinhf.c (__kernel_casinhf): Likewise.
24569         * math/k_casinhl.c (__kernel_casinhl): Likewise.
24570         * math/libm-test.inc (cacos_test): Add more tests.
24571         (casin_test): Likewise.
24572         (casinh_test): Likewise.
24573         * sysdeps/i386/fpu/libm-test-ulps: Update.
24574         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
24576 2013-01-31  David S. Miller  <davem@davemloft.net>
24578         * po/de.po: Update from translation team.
24580 2013-01-25  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
24582         * time/tzfile.c: Include stdint.h for SIZE_MAX.
24584 2013-01-25  Thomas Schwinge  <thomas@codesourcery.com>
24586         * configure.in (_AC_PROG_CC_C89): New definition.
24587         * configure: Regenerate.
24589         * configure.in (AC_PROG_CPP): New definition.
24590         * configure: Regenerate.
24592 2013-01-23  Joseph Myers  <joseph@codesourcery.com>
24594         * debug/tst-backtrace.h: New file.
24595         * debug/tst-backtrace2.c: Include tst-backtrace.h.
24596         (ret): Remove variable.
24597         (x): Likewise.
24598         (FAIL): Remove macro.
24599         (NO_INLINE): Likewise.
24600         (fn1): Use match function instead of strstr.
24601         * debug/tst-backtrace3.c: Include tst-backtrace.h.
24602         (ret): Remove variable.
24603         (x): Likewise.
24604         (FAIL): Remove macro.
24605         (NO_INLINE): Likewise.
24606         (fn): Use match function instead of strstr.
24607         * debug/tst-backtrace4.c: Include tst-backtrace.h.
24608         (ret): Remove variable.
24609         (x): Likewise.
24610         (FAIL): Remove macro.
24611         (NO_INLINE): Likewise.
24612         (handle_signal): Use match function instead of strstr.
24613         * debug/tst-backtrace5.c: Include tst-backtrace.h.
24614         (ret): Remove variable.
24615         (x): Likewise.
24616         (FAIL): Remove macro.
24617         (NO_INLINE): Likewise.
24618         (handle_signal): Use match function instead of strstr.
24620 2013-01-23  Roland McGrath  <roland@hack.frob.com>
24622         * misc/sys/cdefs.h (__glibc_unlikely, __glibc_likely): Fix whitespace.
24624 2013-01-23  David S. Miller  <davem@davemloft.net>
24626         * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h
24627         (__arch_compare_and_exchange_val_32_acq): Use %g0 as second
24628         argument of CAS if possible.
24629         * sysdeps/sparc/sparc64/bits/atomic.h
24630         (__arch_compare_and_exchange_val_32_acq): Likewise.
24631         (__arch_compare_and_exchange_val_64_acq): Likewise.
24633 2013-01-23  Pino Toscano  <toscano.pino@tiscali.it>
24635         * sysdeps/unix/sysv/linux/ulimit.c: Moved to ...
24636         * sysdeps/posix/ulimit.c: ... this.
24637         Include <limits.h>.
24638         * sysdeps/unix/bsd/ulimit.c: Remove file.
24640 2013-01-23  Adam Conrad  <adconrad@0c3.net>
24642         * elf/Makefile (LDFLAGS-tst-array2): Add $(no-as-needed).
24643         (LDFLAGS-tst-array5): Likewise.
24645 2013-01-23  Joseph Myers  <joseph@codesourcery.com>
24647         [BZ #15036]
24648         * bits/wchar.h (__WCHAR_MAX): Define based on __WCHAR_MAX__, or
24649         based on [L'\0' - 1 > 0] if [!__WCHAR_MAX__].
24650         (__WCHAR_MIN): Likewise, using __WCHAR_MIN__.
24651         * sysdeps/unix/sysv/linux/x86/bits/wchar.h: Remove.
24653 2013-01-21  David S. Miller  <davem@davemloft.net>
24655         * sysdeps/sparc/backtrace.c: New file.
24656         * sysdeps/sparc/sparc32/backtrace.h: New file.
24657         * sysdeps/sparc/sparc32/sparcv9/backtrace.h: New file.
24658         * sysdeps/sparc/sparc64/backtrace.h: New file.
24659         * sysdeps/sparc/sparc64/backtrace.c: Delete.
24660         * sysdeps/sparc/Makefile (CFLAGS-backtrace.c): Add
24661         -funwind-tables.
24663 2013-01-21  Andreas Schwab  <schwab@suse.de>
24665         [BZ #15020]
24666         * posix/wordexp.c (exec_comm): Avoid busy loop when command has
24667         closed its stdout.
24669 2013-01-20  Andreas Schwab  <schwab@linux-m68k.org>
24671         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Don't include
24672         "mpa2.h".
24673         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
24675 2013-01-18  Joseph Myers  <joseph@codesourcery.com>
24676             Mark Mitchell  <mark@codesourcery.com>
24677             Tom de Vries  <tom@codesourcery.com>
24678             Paul Pluzhnikov  <ppluzhnikov@google.com>
24680         * debug/tst-backtrace2.c: New file.
24681         * debug/tst-backtrace3.c: Likewise.
24682         * debug/tst-backtrace4.c: Likewise.
24683         * debug/tst-backtrace5.c: Likewise.
24684         * debug/Makefile (CFLAGS-tst-backtrace2.c): New variable.
24685         (CFLAGS-tst-backtrace3.c): Likewise.
24686         (CFLAGS-tst-backtrace4.c): Likewise.
24687         (CFLAGS-tst-backtrace5.c): Likewise.
24688         (LDFLAGS-tst-backtrace2): Likewise.
24689         (LDFLAGS-tst-backtrace3): Likewise.
24690         (LDFLAGS-tst-backtrace4): Likewise.
24691         (LDFLAGS-tst-backtrace5): Likewise.
24692         (tests): Add new tests tst-backtrace2, tst-backtrace3,
24693         tst-backtrace4 and tst-backtrace5.
24695 2013-01-18  Anton Blanchard  <anton@samba.org>
24696             Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
24698         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Rename
24699         __kernel_vdso_get_tbfreq to __kernel_get_tbfreq.
24700         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Add parameter to
24701         INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK to specify return type.
24702         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
24703         (INTERNAL_VSYSCALL_NCS): Change "=&r" in inline asm output regs list to
24704         "+r" and remove output regs list as redundant.  Add explicit inline
24705         asm to specify register of return val to work around compiler codegen
24706         bug.  Remove (int) cast on return value.  Add return type parameter to
24707         use in macro so that this macro does not truncate return value for
24708         64-bit values.
24709         (INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK): Add return type parameter and
24710         pass to INTERNAL_VSYSCALL_NCS.
24711         (INLINE_VSYSCALL): Add 'long int' as return type to
24712         INTERNAL_VSYSCALL_NCS macro invocation.
24713         (INTERNAL_VSYSCALL): Add 'long int' as return type to
24714         INTERNAL_VSYSCALL_NCS macro invocation.
24715         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
24717 2013-01-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
24719         [BZ #14496]
24720         * sysdeps/i386/fpu/fenv_private.h (libc_feupdateenv_test_sse):
24721         Fix application of SIMD FP exception mask.
24723         * sysdeps/ieee754/dbl-64/mpa.h (__pow_mp): New function to get an
24724         mp_no from a power of two.
24725         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove
24726         __mpexp_twomm1.  Use __pow_mp.
24728         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove unnecessary
24729         multiplication.
24731 2013-01-17  David S. Miller  <davem@davemloft.net>
24733         * sysdeps/sparc/fpu/libm-test-ulps: Update.
24735 2013-01-17  Joseph Myers  <joseph@codesourcery.com>
24737         [BZ #15023]
24738         * include/complex.h: Condition contents on [!_COMPLEX_H].
24739         (__kernel_casinhf): New prototype.
24740         (__kernel_casinh): Likewise.
24741         (__kernel_casinhl): Likewise.
24742         * math/Makefile (libm_calls): Add k_casinh.
24743         * math/k_casinh.c: New file.
24744         * math/k_casinhf.c: Likewise.
24745         * math/k_casinhl.c: Likewise.
24746         * math/s_cacos.c (__cacos): Implement using __kernel_casinh for
24747         finite nonzero arguments.
24748         * math/s_cacosf.c (__cacosf): Implement using __kernel_casinhf for
24749         finite nonzero arguments.
24750         * math/s_cacosl.c (__cacosl): Implement using __kernel_casinhl for
24751         finite nonzero arguments.
24752         * math/s_casinh.c: Do not include <float.h>.
24753         (__casinh): Move code for finite nonzero arguments to k_casinh.c.
24754         * math/s_casinhf.c: Do not include <float.h>.
24755         (__casinhf): Move code for finite nonzero arguments to
24756         k_casinhf.c.
24757         * math/s_casinhl.c: Do not include <float.h>.
24758         [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Do not undefine and
24759         redefine.
24760         (__casinhl): Move code for finite nonzero arguments to
24761         k_casinhl.c.
24762         * math/libm-test.inc (cacos_test): Add more tests.
24763         * sysdeps/i386/fpu/libm-test-ulps: Update.
24764         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
24766 2013-01-17  Pino Toscano  <toscano.pino@tiscali.it>
24768         * sysdeps/unix/sysv/linux/malloc-sysdep.h (HAVE_MREMAP): New define.
24769         * malloc/malloc.c: Include <unistd.h> and <malloc-sysdep.h>.
24770         [!HAVE_MREMAP]: Remove [defined linux] case.
24771         * malloc/arena.c: Do not include <malloc-sysdep.h>.
24773 2013-01-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
24775         * sysdeps/ieee754/dbl-64/mpa.c: Fix header comment.
24777 2013-01-17  H.J. Lu  <hongjiu.lu@intel.com>
24779         * elf/elf.h (R_386_SIZE32): New relocation.
24780         * sysdeps/i386/dl-machine.h (elf_machine_rel): Handle
24781         R_386_SIZE32.
24782         (elf_machine_rela): Likewise.
24783         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Handle
24784         R_X86_64_SIZE64 and R_X86_64_SIZE32.
24786 2013-01-17  Joseph Myers  <joseph@codesourcery.com>
24788         * sysdeps/powerpc/bits/mathdef.h [_SOFT_FLOAT || __NO_FPRS__]
24789         (FP_FAST_FMA): Do not define.
24790         [_SOFT_FLOAT || __NO_FPRS__] (FP_FAST_FMAF): Likewise.
24791         * sysdeps/powerpc/fpu/bits/fenvinline.h [__GNUC__ && !_SOFT_FLOAT
24792         && !__NO_MATH_INLINES]: Add [!__NO_FPRS__] condition.
24793         * sysdeps/powerpc/fpu/bits/mathinline.h [__GNUC__ &&
24794         !_SOFT_FLOAT]: Likewise.
24795         * sysdeps/powerpc/fpu/fpu_control.h [_SOFT_FLOAT || __NO_FPRS__]
24796         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_RESERVED): Define with generic
24797         value.
24798         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_DEFAULT): Likewise.
24799         [_SOFT_FLOAT || __NO_FPRS__] (fpu_control_t): Likewise.
24800         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_GETCW): Likewise.
24801         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_SETCW): Likewise.
24802         [_SOFT_FLOAT || __NO_FPRS__] (__fpu_control): Likewise.
24803         [!_SOFT_FLOAT && !__NO_FPRS__]: Condition previous contents of
24804         file.
24806 2013-01-16  Andreas Schwab  <schwab@suse.de>
24808         [BZ #14327]
24809         * include/stdlib.h (__mktemp): Add declaration.
24810         * misc/mktemp.c (__mktemp): Renamed from mktemp, add weak alias.
24811         * misc/Versions (GLIBC_PRIVATE): Add __mktemp.
24813 2013-01-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
24815         * sysdeps/ieee754/dbl-64/atnat.h: Remove constant value
24816         definitions.
24817         * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
24818         * sysdeps/ieee754/dbl-64/mpa.c: Do not include mpa2.h.
24819         * sysdeps/ieee754/dbl-64/mpa.h: Move all constant value
24820         definitions here.
24821         * sysdeps/ieee754/dbl-64/mpa2.h: Remove.
24822         * sysdeps/ieee754/dbl-64/mpatan.h: Remove constant value
24823         definitions.
24824         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Remove ZERO
24825         and ONE.
24826         * sysdeps/ieee754/dbl-64/mpexp.c: Do not include mpexp.h.
24827         * sysdeps/ieee754/dbl-64/mpexp.h: Remove.
24828         * sysdeps/ieee754/dbl-64/mpsqrt.h: Remove constant value
24829         definitions.
24830         * sysdeps/ieee754/dbl-64/mptan.c (__mptan): Remove MONE.
24831         * sysdeps/ieee754/dbl-64/ulog.h: Remove constant value
24832         definitions.
24833         * sysdeps/ieee754/dbl-64/utan.h: Likewise.
24835         * sysdeps/ieee754/dbl-64/mpa2.h: Fix the value of TWO.
24837 2013-01-15  David S. Miller  <davem@davemloft.net>
24839         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
24840         trunc{,f} to libm-sysdep_routes.
24841         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
24842         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc-vis3.S: New
24843         file.
24844         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc.S: New file.
24845         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf-vis3.S: New
24846         file.
24847         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf.S: New
24848         file.
24849         * sysdeps/sparc/sparc32/sparcv9/fpu/s_trunc.S: New file.
24850         * sysdeps/sparc/sparc32/sparcv9/fpu/s_truncf.S: New file.
24851         * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc-vis3.S: New file.
24852         * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.S: New file.
24853         * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf-vis3.S: New file.
24854         * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.S: New file.
24855         * sysdeps/sparc/sparc64/fpu/s_trunc.S: New file.
24856         * sysdeps/sparc/sparc64/fpu/s_truncf.S: New file.
24858         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
24859         nearbyint{,f} to libm-sysdep_routes.
24860         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
24861         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint-vis3.S:
24862         New file.
24863         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.S: New
24864         file.
24865         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf-vis3.S:
24866         New file.
24867         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.S: New
24868         file.
24869         * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyint.S: New file.
24870         * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyintf.S: New file.
24871         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint-vis3.S: New
24872         file.
24873         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.S: New file.
24874         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf-vis3.S: New
24875         file.
24876         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.S: New file.
24877         * sysdeps/sparc/sparc64/fpu/s_nearbyint.S: New file.
24878         * sysdeps/sparc/sparc64/fpu/s_nearbyintf.S: New file.
24880         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
24881         libc_feholdexcept and libc_fesetenv.
24883 2013-01-15  Mike Frysinger  <vapier@gentoo.org>
24885         * sysdeps/unix/sysv/linux/scsi/sg.h: Include stddef.h.
24887 2013-01-14  David S. Miller  <davem@davemloft.net>
24889         * sysdeps/sparc/sparc-ifunc.h (SPARC_ASM_IFUNC2): New macro.
24890         (SPARC_ASM_VIS2_IFUNC): Likewise.
24891         (SPARC_ASM_VIS3_VIS2_IFUNC): Likewise.
24892         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S: Make
24893         use of 'siam' instruction.
24894         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S:
24895         Likewise.
24896         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S:
24897         Likewise.
24898         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S:
24899         Likewise.
24900         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S: Likewise.
24901         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S: Likewise.
24902         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S: Likewise.
24903         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S: Likewise.
24904         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis2.S: New
24905         file.
24906         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis2.S: New
24907         file.
24908         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis2.S: New
24909         file.
24910         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis2.S: New
24911         file.
24912         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis2.S: New file.
24913         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis2.S: New file.
24914         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis2.S: New file.
24915         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis2.S: New file.
24916         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Hook in
24917         new VIS2 routines.
24918         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: Likewise.
24919         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
24920         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S:
24921         Likewise.
24922         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: Likewise.
24923         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: Likewise.
24924         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: Likewise.
24925         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: Likewise.
24926         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add new VIS2
24927         routines to libm-sysdep_routines.
24928         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
24930         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
24931         fdim/fdimf to libm-sysdep_routines.
24932         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-vis3.S: New
24933         file.
24934         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.S: New file.
24935         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf-vis3.S: New
24936         file.
24937         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf.S: New file.
24938         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fdim.S: New file.
24939         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fdimf.S: New file.
24940         * sysdeps/sparc/sparc32/fpu/s_fdim.S: New file.
24941         * sysdeps/sparc/sparc32/fpu/s_fdimf.S: New file.
24942         * sysdeps/sparc/sparc64/fpu/s_fdim.S: New file.
24943         * sysdeps/sparc/sparc64/fpu/s_fdimf.S: New file.
24945 2013-01-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
24947         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Add a local variable
24948         to optimize copies.
24950         * sysdeps/ieee754/dbl-64/mpa.c: Fix formatting.
24951         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
24952         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
24954         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__inv): Remove
24955         local variable MPTWO.
24956         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__inv):
24957         Likewise.
24959 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
24961         * manual/pattern.texi (Flags for Globbing): Move GLOB_NOSORT after
24962         GLOB_NOESCAPE.
24964 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
24966         * manual/pattern.texi (Flags for Globbing): Highlight GNU extensions.
24968 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
24970         * manual/pattern.texi (glob_t): Document gl_flags.
24971         (glob64_t): Likewise.
24973 2013-01-11  David S. Miller  <davem@davemloft.net>
24975         * math/Makefile (gmp-objs): Use $(gmp-sysdep_routines).
24976         * sysdeps/sparc/sparc64/multiarch/Makefile [$(subdir) = math]
24977         (gmp-sysdep_routines): New variable.  Add VIS3 optimized GMP routines.
24978         * sysdeps/sparc/sparc64/multiarch/add_n-vis3.S: New file.
24979         * sysdeps/sparc/sparc64/multiarch/add_n.S: New file.
24980         * sysdeps/sparc/sparc64/multiarch/addmul_1-vis3.S: New file.
24981         * sysdeps/sparc/sparc64/multiarch/addmul_1.S: New file.
24982         * sysdeps/sparc/sparc64/multiarch/mul_1-vis3.S: New file.
24983         * sysdeps/sparc/sparc64/multiarch/mul_1.S: New file.
24984         * sysdeps/sparc/sparc64/multiarch/sub_n-vis3.S: New file.
24985         * sysdeps/sparc/sparc64/multiarch/sub_n.S: New file.
24986         * sysdeps/sparc/sparc64/multiarch/submul_1-vis3.S: New file.
24987         * sysdeps/sparc/sparc64/multiarch/submul_1.S: New file.
24989         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Properly optimize for 32-bit
24990         sparc V9 rather than using V8 code.
24991         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
24992         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
24994         * sysdeps/sparc/sparc32/sparcv9/fpu/unix/sysv/linux/multiarch/Implies:
24995         Move to...
24996         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/fpu/multiarch/Implies:
24997         Here.
24999 2013-01-11  Roland McGrath  <roland@hack.frob.com>
25001         * configure.in (sysnames): Use $multi_arch_d in setting up $mach list,
25002         not in the main loop.
25003         * configure: Regenerated.
25005 2013-01-11  Joseph Myers  <joseph@codesourcery.com>
25007         * include/features.h (__GLIBC_HAVE_LONG_LONG): Remove.
25008         * bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change #elif condition
25009         to just #else.
25010         * bits/types.h [__GLIBC_HAVE_LONG_LONG]: Likewise.  Remove
25011         [!__GLIBC_HAVE_LONG_LONG] case.
25012         * posix/sys/types.h [__GLIBC_HAVE_LONG_LONG]: Change #elif
25013         condition to just #else.
25014         * stdlib/stdlib.h [__USE_ISOC99 || (__GLIBC_HAVE_LONG_LONG &&
25015         __USE_MISC)]: Change all uses to [__USE_ISOC99 || __USE_MISC].
25016         [__GLIBC_HAVE_LONG_LONG && __USE_BSD]: Change to [__USE_BSD].
25017         * string/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Make code
25018         unconditional.
25019         * string/endian.h [__GLIBC_HAVE_LONG_LONG]: Likewise.
25020         * sysdeps/s390/bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change
25021         #elif condition to just #else.
25022         * sysdeps/unix/sysv/linux/sys/sysmacros.h
25023         [__GLIBC_HAVE_LONG_LONG]: Make code unconditional.
25024         * sysdeps/x86/bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change
25025         #elif condition to just #else.
25027 2013-01-11  Steve Ellcey  <sellcey@mips.com>
25029         * elf/elf.h (EF_MIPS_ARCH_32): Fix value.
25030         (EF_MIPS_ARCH_64): Fix value.
25031         (EF_MIPS_ARCH_32R2): New.
25032         (EF_MIPS_ARCH_64R2): New.
25034 2013-01-11  H.J. Lu  <hongjiu.lu@intel.com>
25036         * Makeconfig (+link-pie-before-libc): New.
25037         (+link-pie-after-libc): Likewise.
25038         (+link-pie-tests): Likewise.
25039         (+link-pie): Rewritten.
25040         (link-before-libc): Remove $(config-LDFLAGS).
25041         (+link): Add $(rtld-LDFLAGS) after $(+link-before-libc).
25042         (+link-tests): Add $(rtld-tests-LDFLAGS) after $(+link-before-libc).
25043         (config-LDFLAGS): Renamed to ...
25044         (rtld-LDFLAGS): This.
25045         (rtld-tests-LDFLAGS): New macro.
25046         (link-libc-rpath-link): Likewise.
25047         (link-libc-tests-rpath-link): Likewise.
25048         (link-libc-before-gnulib): Remove -Wl,-rpath-link=$(rpath-link).
25049         (link-libc): Prepand $(link-libc-rpath-link).
25050         (link-libc-tests): Prepand $(link-libc-tests-rpath-link).
25051         (test-program-prefix): New macro.
25052         (test-via-rtld-prefix): Likewise.
25053         (test-program-cmd): Likewise.
25054         (host-test-program-cmd): Likewise.
25055         * Makefile ($(common-objpfx)testrun.sh): Replace
25056         $(run-program-prefix) with $(test-program-prefix).
25057         * Makerules ($(LINK.o)): Replace $(config-LDFLAGS) with
25058         $(rtld-LDFLAGS).
25059         ($(common-objpfx)shlib.lds): Likewise.
25060         (build-module-helper): Likewise.
25061         ($(common-objpfx)format.lds): Likewise.
25062         * Rules (binaries-pie-tests): New.
25063         (binaries-pie-notests): Likewise.
25064         (binaries-pie): Rewritten.
25065         ($(addprefix $(objpfx),$(binaries-pie))): Renamed to ...
25066         ($(addprefix $(objpfx),$(binaries-pie-notests))): This.
25067         ($(addprefix $(objpfx),$(binaries-pie-tests))): New.
25068         (make-test-out): Replace $(host-built-program-cmd) with
25069         $(host-test-program-cmd).
25070         * config.make.in (build-hardcoded-path-in-tests): New variable.
25071         * configure.in (--enable-hardcoded-path-in-tests): New configure
25072         option.
25073         (hardcoded_path_in_tests): New AC_SUBST.
25074         * configure: Regenerated.
25075         * catgets/Makefile ($(objpfx)test-gencat.out): Replace
25076         $(built-program-cmd) with $(test-program-cmd).
25077         * catgets/test-gencat.sh (run_program_cmd): Renamed to ...
25078         (test_program_cmd): This.
25079         * elf/Makefile ($(objpfx)order.out): Run test with
25080         $(test-program-prefix).
25081         ($(objpfx)order2.out): Likewise.
25082         ($(objpfx)tst-initorder.out): Likewise.
25083         ($(objpfx)tst-initorder2.out): Likewise.
25084         ($(objpfx)tst-array1.out): Replace $(built-program-cmd) with
25085         $(test-program-cmd).
25086         ($(objpfx)tst-array1-static.out): Likewise.
25087         ($(objpfx)tst-array2.out): Likewise.
25088         ($(objpfx)tst-array3.out): Likewise.
25089         ($(objpfx)tst-array4.out): Likewise.
25090         ($(objpfx)tst-array5.out): Likewise.
25091         ($(objpfx)tst-array5-static.out): Likewise.
25092         (tst-stackguard1-ARGS): Replace $(built-program-cmd) with
25093         $(test-program-cmd).
25094         * grp/Makefile ($(objpfx)tst_fgetgrent.out): Replace
25095         $(run-program-prefix) with $(test-program-prefix).
25096         * grp/tst_fgetgrent.sh (run_program_prefix): Renamed to ...
25097         (test_program_prefix): This.
25098         * iconvdata/Makefile ($(objpfx)tst-tables.out): Replace
25099         $(run-program-prefix) with $(test-program-prefix).
25100         * iconvdata/tst-table.sh (run_program_prefix): Renamed to ...
25101         (test_program_prefix): This.
25102         * iconvdata/tst-tables.sh: Likewise.
25103         * intl/Makefile ($(objpfx)tst-gettext.out): Replace
25104         $(run-program-prefix) with $(test-program-prefix).
25105         ($(objpfx)tst-translit.out): Likewise.
25106         ($(objpfx)tst-gettext2.out): Likewise.
25107         ($(objpfx)tst-gettext4.out): Likewise.
25108         ($(objpfx)tst-gettext6.out): Likewise.
25109         * intl/tst-gettext.sh (run_program_prefix): Renamed to ...
25110         (test_program_prefix): This.
25111         * intl/tst-gettext2.sh: Likewise.
25112         * intl/tst-gettext4.sh  Likewise.
25113         * intl/tst-gettext6.sh: Likewise.
25114         * intl/tst-translit.sh: Likewise.
25115         * io/Makefile ($(objpfx)ftwtest.out): Replace $(run-program-cmd)
25116         with $(test-program-cmd).
25117         * libio/Makefile ($(objpfx)test-freopen.out): Replace
25118         $(run-program-prefix) with $(test-program-prefix).
25119         * libio/test-freopen.sh (run_program_prefix): Renamed to ...
25120         (test_program_prefix): This.
25121         * malloc/Makefile ($(objpfx)tst-mtrace.out): Replace
25122         $(run-program-prefix) with $(test-program-prefix).
25123         * malloc/tst-mtrace.sh (run_program_prefix): Renamed to ...
25124         (test_program_prefix): This.
25125         * manual/install.texi: Document --enable-hardcoded-path-in-tests.
25126         * posix/Makefile ($(objpfx)globtest.out): Replace
25127         $(run-via-rtld-prefix) and $(test-wrapper) with
25128         $(test-program-prefix) and $(test-via-rtld-prefix).
25129         ($(objpfx)wordexp-tst.out): Replace $(run-program-prefix) with
25130         $(test-program-prefix).
25131         (tst-exec-ARGS): Replace $(host-built-program-cmd) with
25132         $(host-test-program-cmd).
25133         (tst-spawn-ARGS): Likewise.
25134         ($(objpfx)tst-rxspencer-mem): Replace $(run-program-prefix) with
25135         $(test-program-prefix).
25136         * posix/globtest.sh (un_via_rtld_prefix): Renamed to ...
25137         (test_via_rtld_prefix): This.
25138         (test_wrapper): Renamed to ...
25139         (test_program_prefix): This.
25140         (run_program_prefix): Replaced by test_program_prefix.
25141         * posix/wordexp-tst.sh (run_program_prefix): Renamed to ...
25142         (test_program_prefix): This.
25143         * rt/Makefile (tst-mqueue7-ARGS): Replace $(host-built-program-cmd)
25144         with $(host-test-program-cmd).
25145         * stdio-common/Makefile ($(objpfx)tst-unbputc.out): Replace
25146         $(run-program-prefix) with $(test-program-prefix).
25147         ($(objpfx)tst-printf.out): Likewise.
25148         ($(objpfx)tst-setvbuf1.out): Replace $(built-program-cmd) with
25149         $(test-program-cmd).
25150         * stdio-common/tst-printf.sh (run_program_prefix): Renamed to ...
25151         (test_program_prefix): This.
25152         * stdio-common/tst-unbputc.sh: Likewise.
25153         * stdlib/Makefile ($(objpfx)tst-fmtmsg.out): Replace
25154         $(run-program-prefix) with $(test-program-prefix).
25155         * stdlib/tst-fmtmsg.sh (run_program_prefix): Renamed to ...
25156         (test_program_prefix): This.
25157         * string/Makefile ($(objpfx)tst-svc.out):  Replace
25158         $(built-program-cmd) with $(test-program-cmd).
25160 2013-01-11  Andreas Jaeger  <aj@suse.de>
25162         [BZ #15003]
25163         * sysdeps/unix/sysv/linux/bits/socket.h (MSG_FASTOPEN): New
25164         value. Sync with Linux 3.7.
25166 2013-01-10  David S. Miller  <davem@davemloft.net>
25168         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Revert previous changes.
25169         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
25170         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
25172 2013-01-10  Roland McGrath  <roland@hack.frob.com>
25174         * configure.in (sysnames): Drop use of $m0sub and $msub, which are
25175         never set.
25176         * configure: Regenerated.
25178 2013-01-10  David S. Miller  <davem@davemloft.net>
25180         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Properly optimize for 32-bit
25181         sparc V9 rather than using V8 code.
25182         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
25183         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
25185 2013-01-10  Roland McGrath  <roland@hack.frob.com>
25187         * elf/elf.h (DT_SPARC_REGISTER, DT_SPARC_NUM): Fix whitespace.
25188         (EF_MIPS_NOREORDER, EF_MIPS_PIC, EF_MIPS_CPIC, EF_MIPS_XGOT): Likewise.
25189         (EF_MIPS_64BIT_WHIRL, EF_MIPS_ABI2, EF_MIPS_ABI_ON32): Likewise.
25190         (EF_MIPS_ARCH, EF_MIPS_ARCH_1, EF_MIPS_ARCH_2): Likewise.
25191         (EF_MIPS_ARCH_3, EF_MIPS_ARCH_4, EF_MIPS_ARCH_5): Likewise.
25192         (EF_MIPS_ARCH_32, EF_MIPS_ARCH_64): Likewise.
25193         (E_MIPS_ARCH_1): Define in terms of EF_MIPS_ARCH_* counterpart.
25194         (E_MIPS_ARCH_2, E_MIPS_ARCH_3, E_MIPS_ARCH_4, E_MIPS_ARCH_5): Likewise.
25195         (E_MIPS_ARCH_32, E_MIPS_ARCH_64): Likewise.
25196         (SHN_MIPS_ACOMMON, SHN_MIPS_TEXT, SHN_MIPS_DATA): Fix whitespace.
25197         (SHN_MIPS_SCOMMON, SHN_MIPS_SUNDEFINED): Likewise.
25198         (SHT_MIPS_LIBLIST, SHT_MIPS_MSYM, SHT_MIPS_CONFLICT): Likewise.
25199         (SHT_MIPS_GPTAB, SHT_MIPS_UCODE, SHT_MIPS_DEBUG): Likewise.
25200         (SHT_MIPS_REGINFO, SHT_MIPS_PACKAGE, SHT_MIPS_PACKSYM): Likewise.
25201         (SHT_MIPS_RELD, SHT_MIPS_IFACE, SHT_MIPS_CONTENT): Likewise.
25202         (SHT_MIPS_OPTIONS, SHT_MIPS_SHDR, SHT_MIPS_FDESC): Likewise.
25203         (SHT_MIPS_EXTSYM, SHT_MIPS_DENSE, SHT_MIPS_PDESC): Likewise.
25204         (SHT_MIPS_LOCSYM, SHT_MIPS_AUXSYM, SHT_MIPS_OPTSYM): Likewise.
25205         (SHT_MIPS_LOCSTR, SHT_MIPS_LINE, SHT_MIPS_RFDESC): Likewise.
25206         (SHT_MIPS_DELTASYM, SHT_MIPS_DELTAINST, SHT_MIPS_DELTACLASS): Likewise.
25207         (SHT_MIPS_DELTADECL, SHT_MIPS_SYMBOL_LIB, SHT_MIPS_EVENTS): Likewise.
25208         (SHT_MIPS_TRANSLATE, SHT_MIPS_PIXIE, SHT_MIPS_XLATE): Likewise.
25209         (SHT_MIPS_XLATE_DEBUG, SHT_MIPS_WHIRL, SHT_MIPS_EH_REGION): Likewise.
25210         (SHT_MIPS_XLATE_OLD, SHT_MIPS_PDR_EXCEPTION): Likewise.
25211         (SHF_MIPS_GPREL, SHF_MIPS_MERGE, SHF_MIPS_ADDR): Likewise.
25212         (SHF_MIPS_STRINGS, SHF_MIPS_NOSTRIP, SHF_MIPS_LOCAL): Likewise.
25213         (SHF_MIPS_NAMES, SHF_MIPS_NODUPE): Likewise.
25215 2013-01-10  David S. Miller  <davem@davemloft.net>
25217         * sysdeps/sparc/fpu/libm-test-ulps: Update.
25219 2013-01-10  H.J. Lu  <hongjiu.lu@intel.com>
25221         * posix/Makefile (tests-static): New variable.
25222         (tests): Add $(tests-static).
25223         (tst-exec-static-ARGS): New variable.
25224         (tst-spawn-static-ARGS): Likewise.
25225         * posix/tst-exec-static.c: New file.
25226         * posix/tst-spawn-static.c: Likewise.
25227         * posix/tst-exec.c: Support run directly.
25228         * posix/tst-spawn.c: Likewise.
25230 2013-01-10  Joseph Myers  <joseph@codesourcery.com>
25232         * elf/link.h (struct dl_phdr_info): Use __extension__ with long
25233         long.
25234         * math/bits/mathcalls.h (llrint): Likewise.
25235         (llround): Likewise.
25236         * stdlib/stdlib.h (struct drand48_data): Likewise.
25237         * sysdeps/generic/inttypes.h (imaxdiv_t): Likewise.
25238         * sysdeps/s390/bits/byteswap.h (__bswap_64): Likewise.
25239         * sysdeps/unix/sysv/linux/sparc/bits/ipc.h (struct ipc_perm):
25240         Likewise.
25241         * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu):
25242         Likewise.
25243         * sysdeps/unix/sysv/linux/x86/sys/procfs.h [__x86_64__]
25244         (elf_greg_t): Likewise.
25245         * sysdeps/x86/bits/setjmp.h [__x86_64__ && __WORDSIZE != 64]
25246         (__jmp_buf): Likewise.
25247         * sysdeps/x86/fpu/bits/mathinline.h (llrintf): Likewise, for all
25248         definitions.
25249         (llrint): Likewise, for all definitions.
25250         (llrintl): Likewise.
25252         * string/string.h [__USE_BSD && __USE_GNU && __GNUC__] (ffsll):
25253         Remove [__GNUC__] condition.
25254         * wcsmbs/wchar.h [__USE_ISOC99 || (__GNUC__ && __USE_GNU)]: Change
25255         condition to just [__USE_ISOC99].
25256         [__GNUC__ && __USE_GNU]: Change condition to just [__USE_GNU].
25258 2013-01-10  H.J. Lu  <hongjiu.lu@intel.com>
25260         [BZ #14200]
25261         * sysdeps/unix/sysv/linux/x86/bits/environments.h
25262         (_POSIX_V7_ILP32_OFF32): Defined as 1 only if __x86_64__ isn't
25263         defined.
25264         (_POSIX_V6_ILP32_OFF32): Likewise.
25265         (_XBS5_ILP32_OFF32): Likewise.
25266         (__ILP32_OFFBIG_CFLAGS): Defined as "-mx32" for x32.
25267         (__ILP32_OFFBIG_LDFLAGS): Likewise.
25269 2013-01-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
25271         * sysdeps/ieee754/dbl-64/mpexp.c: Fix formatting.
25273         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): New array of
25274         doubles __mpexp_twomm1.  Adjust usage.
25275         * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_twomm1):
25276         Remove.
25278 2013-01-10  Andreas Schwab  <schwab@suse.de>
25280         [BZ #14964]
25281         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (FALLOC_FL_KEEP_SIZE)
25282         (FALLOC_FL_PUNCH_HOLE) [__USE_GNU]: New macros.
25284 2013-01-09  David S. Miller  <davem@davemloft.net>
25286         [BZ #15003]
25287         * sysdeps/gnu/netinet/tcp.h (TCP_COOKIE_TRANSACTIONS)
25288         (TCP_THIN_LINEAR_TIMEOUTS, TCP_THIN_DUPACK, TCP_USER_TIMEOUT)
25289         (TCP_REPAIR, TCP_REPAIR_QUEUE, TCP_QUEUE_SEQ, TCP_REPAIR_OPTIONS)
25290         (TCP_FASTOPEN): Define.
25291         (tcp_repair_opt): New structure.
25292         (TCP_NO_QUEUE, TCP_RECV_QUEUE, TCP_SEND_QUEUE, TCP_QUEUES_NR): New
25293         enum values.
25294         (TCP_COOKIE_MIN, TCP_COOKIE_MAX, TCP_COOKIE_PAIR_SIZE)
25295         (TCP_COOKIE_IN_ALWAYS, TCP_COOKIE_OUT_NEVER, TCP_S_DATA_IN)
25296         (TCP_S_DATA_OUT, TCP_MSS_DEFAULT, TCP_MSS_DESIRED): Define.
25297         (tcp_cookie_transactions): New structure.
25299 2013-01-09  Anton Blanchard  <anton@samba.org>
25301         * sysdeps/unix/sysv/linux/powerpc/sched_getcpu.c: New file.
25302         * sysdeps/unix/sysv/linux/powerpc/Versions: Add __vdso_getcpu.
25303         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Likewise.
25304         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Likewise.
25306 2013-01-09  Joseph Myers  <joseph@codesourcery.com>
25308         * include/features.h (__USE_ANSI): Remove.
25310 2013-01-09  Roland McGrath  <roland@hack.frob.com>
25312         * posix/Makefile (others): Depend on $(objpfx)getconf.speclist.
25314         * misc/error.c (error_tail: ALLOCA_LIMIT): Remove unused macro.
25316 2013-01-09  Siddhesh Poyarekar  <siddhesh@redhat.com>
25318         * sysdeps/s390/fpu/libm-test-ulps: Update.
25320         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
25322         * sysdeps/ieee754/dbl-64/mpa.c (mcr): Reword comment.
25323         (__acr): Likewise.
25324         (__cpy): Likewise.
25325         (norm): Likewise.
25326         (denorm): Likewise.
25327         (__mp_dbl): Likewise.
25328         (__dbl_mp): Likewise.
25329         (add_magnitudes): Likewise.
25330         (sub_magnitudes): Likewise.
25331         (__add): Likewise.
25332         (__sub): Likewise.
25333         (__mul): Likewise.
25334         (__inv): Likewise.
25335         (__dvd): Likewise.
25336         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (mcr): Likewise.
25337         (__acr): Likewise.
25338         (__cpy): Likewise.
25339         (norm): Likewise.
25340         (denorm): Likewise.
25341         (__mp_dbl): Likewise.
25342         (__dbl_mp): Likewise.
25343         (add_magnitudes): Likewise.
25344         (sub_magnitudes): Likewise.
25345         (__add): Likewise.
25346         (__sub): Likewise.
25347         (__mul): Likewise.
25348         (__inv): Likewise.
25349         (__dvd): Likewise.
25350         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (mcr): Likewise.
25351         (__acr): Likewise.
25352         (__cpy): Likewise.
25353         (norm): Likewise.
25354         (denorm): Likewise.
25355         (__mp_dbl): Likewise.
25356         (__dbl_mp): Likewise.
25357         (add_magnitudes): Likewise.
25358         (sub_magnitudes): Likewise.
25359         (__add): Likewise.
25360         (__sub): Likewise.
25361         (__mul): Likewise.
25362         (__inv): Likewise.
25363         (__dvd): Likewise.
25365 2013-01-08  Joseph Myers  <joseph@codesourcery.com>
25367         * io/sys/stat.h [__GNUC__ && __GNUC__ >= 2 &&
25368         __USE_EXTERN_INLINES]: Change condition to [__USE_EXTERN_INLINES].
25369         * sysdeps/unix/sysv/linux/sys/sysmacros.h [__GNUC__ && __GNUC__ >=
25370         2 && __USE_EXTERN_INLINES]: Likewise.
25372 2013-01-08  Andreas Jaeger  <aj@suse.de>
25374         [BZ# 14985]
25375         * sysdeps/unix/sysv/linux/sparc/bits/epoll.h (EPOLL_NONBLOCK):
25376         Remove.
25377         * sysdeps/unix/sysv/linux/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
25378         * sysdeps/unix/sysv/linux/x86/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
25380 2013-01-07  Anton Blanchard  <anton@samba.org>
25382         * sysdeps/powerpc/fpu/feholdexcpt.c: Fixed spelling errors.
25383         * sysdeps/powerpc/fpu/feupdateenv.c: Likewise.
25384         * sysdeps/powerpc/fpu/math_ldbl.h: Likewise.
25385         * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
25386         * sysdeps/powerpc/powerpc32/cell/memcpy.S: Likewise.
25387         * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
25388         * sysdeps/powerpc/powerpc32/dl-start.S: Likewise.
25389         * sysdeps/powerpc/powerpc32/memset.S: Likewise.
25390         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
25391         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
25392         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
25393         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
25394         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
25395         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
25396         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Likewise.
25397         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
25398         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
25399         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
25400         * sysdeps/powerpc/powerpc32/power7/memchr.S: Likewise.
25401         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.
25402         * sysdeps/powerpc/powerpc32/power7/memrchr.S: Likewise.
25403         * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: Likewise.
25404         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
25405         * sysdeps/powerpc/powerpc32/strncmp.S: Likewise.
25406         * sysdeps/powerpc/powerpc64/bits/atomic.h: Likewise.
25407         * sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise.
25408         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
25409         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Likewise.
25410         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S: Likewise.
25411         * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
25412         * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
25413         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
25414         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
25415         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
25416         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
25417         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
25418         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
25419         * sysdeps/powerpc/powerpc64/power7/memchr.S: Likewise.
25420         * sysdeps/powerpc/powerpc64/power7/memcmp.S: Likewise.
25421         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.
25422         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: Likewise.
25423         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
25424         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
25426 2013-01-07  Joseph Myers  <joseph@codesourcery.com>
25428         * malloc/malloc.h (__MALLOC_P): Remove all definitions.
25429         (__MALLOC_PMT): Likewise.
25430         [__GNUC__] (__MALLOC_HOOK_VOLATILE): Make not conditional on
25431         [__GNUC__], only on [_LIBC].
25432         [__GNUC__] (__MALLOC_DEPRECATED): Likewise.
25433         [!__GNUC__] (__MALLOC_HOOK_VOLATILE): Remove definition.
25434         [!__GNUC__] (__MALLOC_DEPRECATED): Likewise.
25435         * malloc/malloc.c (malloc_hook_ini): Do not use __MALLOC_P in
25436         forward declaration.
25437         (realloc_hook_ini): Likewise.
25438         (memalign_hook_ini): Likewise.
25439         (__libc_memalign): Do not use __MALLOC_PMT in variable
25440         declaration.
25441         (__libc_valloc): Likewise.
25442         (__libc_pvalloc): Likewise.
25443         (__libc_calloc): Likewise.
25444         (__posix_memalign): Likewise.
25446         [BZ #14996]
25447         * math/s_casinh.c: Include <float.h>.
25448         (__casinh): Do not do computation with squaring and square root
25449         for large arguments.
25450         * math/s_casinhf.c: Include <float.h>.
25451         (__casinhf): Do not do computation with squaring and square root
25452         for large arguments.
25453         * math/s_casinhl.c: Include <float.h>.
25454         [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine and redefine.
25455         (__casinhl): Do not do computation with squaring and square root
25456         for large arguments.
25457         * math/libm-test.inc (casin_test): Add more tests.
25458         (casinh_test): Likewise.
25459         * sysdeps/i386/fpu/libm-test-ulps: Update.
25460         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
25462 2013-01-04  H.J. Lu  <hongjiu.lu@intel.com>
25464         * sysdeps/i386/i686/cacheinfo.c (__x86_64_data_cache_size): Removed.
25465         (__x86_64_raw_data_cache_size): Likewise.
25466         (__x86_64_data_cache_size_half): Likewise.
25467         (__x86_64_raw_data_cache_size_half): Likewise.
25468         (__x86_64_shared_cache_size): Likewise.
25469         (__x86_64_raw_shared_cache_size): Likewise.
25470         (__x86_64_shared_cache_size_half): Likewise.
25471         (__x86_64_raw_shared_cache_size_half): Likewise.
25472         * sysdeps/x86_64/cacheinfo.c (__x86_64_data_cache_size): Renamed
25473         to ...
25474         (__x86_data_cache_size): This.
25475         (__x86_64_raw_data_cache_size): Renamed to ...
25476         (__x86_raw_data_cache_size): This.
25477         (__x86_64_data_cache_size_half): Renamed to ...
25478         (__x86_data_cache_size_half): This.
25479         (__x86_64_raw_data_cache_size_half): Renamed to ...
25480         (__x86_raw_data_cache_size_half): This.
25481         (__x86_64_shared_cache_size): Renamed to ...
25482         (__x86_shared_cache_size): This.
25483         (__x86_64_raw_shared_cache_size): Renamed to ...
25484         (__x86_raw_shared_cache_size): This.
25485         (__x86_64_shared_cache_size_half): Renamed to ...
25486         (__x86_shared_cache_size_half): This.
25487         (__x86_64_raw_shared_cache_size_half): Renamed to ...
25488         (__x86_raw_shared_cache_size_half): This.
25489         * sysdeps/x86_64/memcpy.S: Updated.
25490         * sysdeps/x86_64/memset.S: Likewise.
25491         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
25492         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
25493         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
25495 2013-01-04  David S. Miller  <davem@davemloft.net>
25497         * sysdeps/sparc/fpu/libm-test-ulps: Update.
25499 2013-01-04  Andreas Schwab  <schwab@linux-m68k.org>
25501         * sysdeps/powerpc/fpu/test-powerpc-snan.c (_GNU_SOURCE): Define as
25502         1 to avoid redefinition warning.
25503         (__USE_GNU): Don't define.
25504         (init_signaling_nan): Protoize.
25506         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
25508 2013-01-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
25510         * sysdeps/ieee754/dbl-64/mpa.c: Remove commented code.
25511         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__cr): Remove.
25512         (__cpymn): Likewise.
25513         (norm): Remove commented code.
25514         (denorm): Likewise.
25515         (__mp_dbl): Likewise.
25516         (__inv): Likewise.
25517         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__cr): Remove.
25518         (__cpymn): Likewise.
25519         (norm): Remove commented code.
25520         (denorm): Likewise.
25521         (__mp_dbl): Likewise.
25522         (__inv): Likewise.
25524         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (mpone): Define
25525         mp_no value for 1.0 and 2.0.
25526         (norm): Use RADIXI instead of radixi.d.
25527         (denorm): Likewise.
25528         (__mul): Use 0.0 instead of zero.d.
25529         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (mpone): Define
25530         mp_no value for 1.0 and 2.0.
25531         (norm): Use RADIXI instead of radixi.d.
25532         (denorm): Likewise.
25533         (__mul): Use 0.0 instead of zero.d.
25535 2013-01-04  Joseph Myers  <joseph@codesourcery.com>
25537         [BZ #14994]
25538         * math/s_casinh.c (__casinh): Reduce finite argument to first
25539         quadrant then set signs of results at the end.
25540         * math/s_casinhf.c (__casinhf): Likewise.
25541         * math/s_casinhl.c (__casinhl): Likewise.
25542         * math/libm-test.inc (casin_test): Add more tests.
25543         (casinh_test): Likewise.
25544         * sysdeps/i386/fpu/libm-test-ulps: Update.
25545         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
25547 2013-01-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
25549         * sysdeps/ieee754/dbl-64/mpa.h: Fix code formatting.
25551         * sysdeps/ieee754/dbl-64/mpa.h: Clean up comment for MP_NO.
25553         * sysdeps/ieee754/dbl-64/mpa.c(norm): Remove commented
25554         declarations.
25555         (denorm): Likewise.
25556         (__mp_dbl): Likewise.
25557         (__inv): Likewise.
25559         * sysdeps/ieee754/dbl-64/mpa.h: Remove commented declarations
25560         and adjust the header comment.
25562         * sysdeps/ieee754/dbl-64/mpa.h (__mpexp): Remove unnecessary
25563         variable name from declaration.
25565 2013-01-03  H.J. Lu  <hongjiu.lu@intel.com>
25567         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
25568         Initialize COMMON_CPUID_INDEX_7 element.
25569         * sysdeps/x86_64/multiarch/init-arch.h (bit_RTM): New macro.
25570         (CPUID_RTM): Likewise.
25571         (HAS_RTM): Likewise.
25572         (COMMON_CPUID_INDEX_7): New enum.
25574 2013-01-03  Andreas Schwab  <schwab@linux-m68k.org>
25576         [BZ #14981]
25577         * malloc/mtrace.c (tr_reallochook): If realloc returns NULL when
25578         size is zero, record memory as freed.
25580 2013-01-03  Andreas Jaeger  <aj@suse.de>
25582         * po/ia.po: Add new Interlingua translation.
25584 2012-01-03  Allan McRae  <allan@archlinux.org>
25586         * locale/programs/localedef.c: Fix description of '--posix' flag.
25588 2013-01-02  Joseph Myers  <joseph@codesourcery.com>
25590         * NEWS: Update dates in second copyright notice.
25591         * README: Update copyright dates in example.
25592         * manual/libc.texinfo: Update copyright dates.
25593         * scripts/test-installation.pl: Update copyright date in --version
25594         output.
25596         * hurd/ctty-input.c: Fix copyright notice formatting.
25597         * hurd/ctty-output.c: Likewise.
25598         * hurd/dtable.c: Likewise.
25599         * hurd/hurd-raise.c: Likewise.
25600         * hurd/hurdprio.c: Likewise.
25601         * hurd/msgportdemux.c: Likewise.
25602         * misc/sys/file.h: Likewise.
25603         * misc/sys/ioctl.h: Likewise.
25604         * sysdeps/gnu/netinet/ip_icmp.h: Likewise.
25605         * sysdeps/mach/hurd/chdir.c: Likewise.
25606         * sysdeps/mach/hurd/fchdir.c: Likewise.
25607         * sysdeps/mach/hurd/rename.c: Likewise.
25608         * sysdeps/mach/hurd/rmdir.c: Likewise.
25609         * sysdeps/mach/hurd/seekdir.c: Likewise.
25610         * sysdeps/mach/hurd/setsid.c: Likewise.
25611         * sysdeps/posix/wait3.c: Likewise.
25613         * All files with FSF copyright notices: Update copyright dates
25614         using scripts/update-copyrights.
25615         * intl/plural.c: Regenerated.
25616         * locale/programs/charmap-kw.h: Likewise.
25617         * locale/programs/locfile-kw.h: Likewise.
25619 2013-01-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
25621         * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_twomm1): Fix first
25622         four values.
25624         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Split mantissa
25625         calculation loop and add branch prediction.
25627         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Add assert to
25628         check access beyond bounds of m1np.
25630         * sysdeps/ieee754/dbl-64/mpa.c [! NO__CONST]: New constant
25631         MPTWO.
25632         (__inv): Remove local variable MPTWO to use the global
25633         constant.
25634         * sysdeps/ieee754/dbl-64/mpa.h: Declare MPTWO.
25635         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove local
25636         variable MPTWO.
25637         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Make MPHALF and
25638         MP3HALFS static const.
25640 2013-01-01  David S. Miller  <davem@davemloft.net>
25642         * po/ca.po: Update from translation team.
25644 2013-01-01  Joseph Myers  <joseph@codesourcery.com>
25646         * scripts/update-copyrights: New file.
25647         * Makeconfig: Reformat copyright notice.
25648         * ctype/ctype.h: Likewise.
25649         * debug/swprintf_chk.c: Likewise.
25650         * elf/dl-cache.c: Likewise.
25651         * elf/dl-debug.c: Likewise.
25652         * elf/dl-object.c: Likewise.
25653         * grp/initgroups.c: Likewise.
25654         * hurd/Makefile: Likewise.
25655         * hurd/hurd/signal.h: Likewise.
25656         * hurd/hurdfault.c: Likewise.
25657         * hurd/hurdioctl.c: Likewise.
25658         * hurd/hurdlookup.c: Likewise.
25659         * hurd/intr-msg.c: Likewise.
25660         * iconv/gconv_open.c: Likewise.
25661         * libio/swprintf.c: Likewise.
25662         * locale/lc-ctype.c: Likewise.
25663         * locale/nl_langinfo.c: Likewise.
25664         * mach/Machrules: Likewise.
25665         * mach/Makefile: Likewise.
25666         * malloc/obstack.h: Likewise.
25667         * manual/Makefile: Likewise.
25668         * manual/tsort.awk: Likewise.
25669         * misc/bits/stab.def: Likewise.
25670         * nis/nis_print_group_entry.c: Likewise.
25671         * nis/nis_table.c: Likewise.
25672         * nis/nss_compat/compat-pwd.c: Likewise.
25673         * nis/nss_compat/compat-spwd.c: Likewise.
25674         * po/Makefile: Likewise.
25675         * posix/fnmatch.c: Likewise.
25676         * posix/regex.h: Likewise.
25677         * resolv/Makefile: Likewise.
25678         * resolv/nss_dns/dns-network.c: Likewise.
25679         * resolv/res_hconf.c: Likewise.
25680         * scripts/gen-sorted.awk: Likewise.
25681         * soft-fp/soft-fp.h: Likewise.
25682         * stdio-common/printf.h: Likewise.
25683         * stdlib/monetary.h: Likewise.
25684         * stdlib/random.c: Likewise.
25685         * stdlib/random_r.c: Likewise.
25686         * sysdeps/generic/Makefile: Likewise.
25687         * sysdeps/gnu/Makefile: Likewise.
25688         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
25689         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
25690         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
25691         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
25692         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
25693         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
25694         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
25695         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
25696         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
25697         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
25698         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
25699         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
25700         * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
25701         * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
25702         * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
25703         * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
25704         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
25705         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
25706         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
25707         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
25708         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
25709         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
25710         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
25711         * sysdeps/ieee754/ldbl-128/ldbl2mpn.c: Likewise.
25712         * sysdeps/ieee754/ldbl-128/mpn2ldbl.c: Likewise.
25713         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c: Likewise.
25714         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: Likewise.
25715         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Likewise.
25716         * sysdeps/mach/hurd/errnos.awk: Likewise.
25717         * sysdeps/mach/hurd/fork.c: Likewise.
25718         * sysdeps/mach/hurd/getcwd.c: Likewise.
25719         * sysdeps/mach/hurd/i386/trampoline.c: Likewise.
25720         * sysdeps/mach/hurd/mmap.c: Likewise.
25721         * sysdeps/mach/hurd/utimes.c: Likewise.
25722         * sysdeps/mach/hurd/xmknod.c: Likewise.
25723         * sysdeps/posix/profil.c: Likewise.
25724         * sysdeps/posix/readdir_r.c: Likewise.
25725         * sysdeps/powerpc/bits/mathdef.h: Likewise.
25726         * sysdeps/powerpc/bits/setjmp.h: Likewise.
25727         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Likewise.
25728         * sysdeps/powerpc/powerpc32/memset.S: Likewise.
25729         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
25730         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Likewise.
25731         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
25732         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
25733         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
25734         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Likewise.
25735         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
25736         * sysdeps/pthread/lio_listio.c: Likewise.
25737         * sysdeps/sparc/dl-procinfo.h: Likewise.
25738         * sysdeps/unix/i386/sysdep.S: Likewise.
25739         * sysdeps/unix/sysv/linux/aio_sigqueue.c: Likewise.
25740         * sysdeps/unix/sysv/linux/fstatvfs64.c: Likewise.
25741         * sysdeps/unix/sysv/linux/getdents.c: Likewise.
25742         * sysdeps/unix/sysv/linux/msgctl.c: Likewise.
25743         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
25744         * sysdeps/unix/sysv/linux/semctl.c: Likewise.
25745         * sysdeps/unix/sysv/linux/shmctl.c: Likewise.
25746         * sysdeps/unix/sysv/linux/speed.c: Likewise.
25747         * sysdeps/unix/sysv/linux/xstatconv.h: Likewise.
25748         * sysdeps/wordsize-32/divdi3.c: Likewise.
25749         * time/sys/time.h: Likewise.
25750         * wcsmbs/Makefile: Likewise.
25752 2013-01-01  David S. Miller  <davem@davemloft.net>
25754         * po/fr.po: Update from translation team.
25756         * catgets/gencat.c: Update copyright year.
25757         * csu/version.c: Likewise.
25758         * debug/catchsegv.sh: Likewise.
25759         * debug/pcprofiledump.c: Likewise.
25760         * debug/xtrace.sh: Likewise.
25761         * elf/ldconfig.c: Likewise.
25762         * elf/ldd.bash.in: Likewise.
25763         * elf/pldd.c: Likewise.
25764         * elf/sotruss.ksh: Likewise.
25765         * elf/sprof.c: Likewise.
25766         * iconv/iconv_prog.c: Likewise.
25767         * iconv/iconvconfig.c: Likewise.
25768         * locale/programs/locale.c: Likewise.
25769         * locale/programs/localedef.c: Likewise.
25770         * login/programs/pt_chown.c: Likewise.
25771         * malloc/memusage.sh: Likewise.
25772         * malloc/memusagestat.c: Likewise.
25773         * malloc/mtrace.pl: Likewise.
25774         * nscd/nscd.c: Likewise.
25775         * nss/getent.c: Likewise.
25776         * nss/makedb.c: Likewise.
25777         * posix/getconf.c: Likewise.
25779 2012-12-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
25781         * sysdeps/ieee754/dbl-64/mpa.c (__mp_dbl): Favour normal
25782         numbers.
25784 2012-12-30  Mike Frysinger  <vapier@gentoo.org>
25786         * math/bits/mathcalls.h (modf): Use __nonnull.
25788 2012-12-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
25790         * sysdeps/ieee754/dbl-64/branred.h: Include dla.h.
25791         (split): Use macro CN instead of the bare value.
25792         * sysdeps/ieee754/dbl-64/dla.h: Add comment to explain why CN
25793         could be used.
25794         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Use CN
25795         instead of the bare value.
25796         (power1): Likewise.
25798 2012-12-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
25800         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove
25801         __ATAN_TWOM.
25802         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
25804         * sysdeps/ieee754/dbl-64/atnat.h: Replaced constants with
25805         their values.
25806         * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
25807         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
25808         * sysdeps/ieee754/dbl-64/ulog.h: Likewise.
25809         * sysdeps/ieee754/dbl-64/utan.h: Likewise.
25811 2012-12-28  Andreas Jaeger  <aj@suse.de>
25813         * elf/elf.h (NT_S390_TDB, NT_FILE, NT_SIGINFO): Define.  New
25814         values are from Linux 3.7.
25816         * sysdeps/gnu/netinet/tcp.h (TCPI_OPT_SYN_DATA)
25817         (TCPI_OPT_ECN_SEEN): Define.  Sync with Linux 3.7.
25819 2012-12-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
25821         * misc/sys/cdefs.h (__glibc_likely): Wrap __builtin_expect for
25822         TRUE case.
25824         * sysdeps/ieee754/dbl-64/mpa.c (norm): Define R as RADIXI.
25825         (norm): Likewise.
25826         * sysdeps/ieee754/dbl-64/mpa2.h: Remove all static const
25827         variables with preprocessor constants.
25828         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
25829         * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
25830         * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
25832 2012-12-27  Bruno Haible  <bruno@clisp.org>
25834         [BZ #14317]
25835         * string/xpg-strerror.c (__xpg_strerror_r): Optimize, call strlen
25836         only if needed.
25838 2012-12-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
25840         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Eliminate __mpexp_nn
25841         and use variable directly.
25842         * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_nn): Remove.
25844         * sysdeps/ieee754/dbl-64/mpa.c [! NO__CONST]: New constant
25845         MPONE.
25846         * sysdeps/ieee754/dbl-64/mpa.h: Declare MPONE.
25847         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove local
25848         variable MPONE.
25849         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
25850         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
25851         * sysdeps/ieee754/dbl-64/mplog.c (__mplog): Remove mplog.h
25852         include directive.  Remove local variable MPONE.
25853         * sysdeps/ieee754/dbl-64/mplog.h: Remove.
25854         * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: Define NO__CONST.
25855         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
25857 2012-12-25  David S. Miller  <davem@davemloft.net>
25859         * version.h (RELEASE): Set to "development".
25860         (VERSION): Set to "2.17.90".
25861         * NEWS: Add 2.18 section.
25863 2012-12-21  David S. Miller  <davem@davemloft.net>
25865         * po/hr.po: Update from translation team.
25867 2012-12-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
25869         * sysdeps/s390/fpu/libm-test-ulps: Refreshed.
25871 2012-12-19  Steve Ellcey  <sellcey@mips.com>
25873         * NEWS:  Mention new memcpy for MIPS.
25875 2012-12-18  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
25877         * manual/contrib.texi (Contributors): Spelling correction.
25879 2012-12-15  David S. Miller  <davem@davemloft.net>
25881         * po/ru.po: Update from translation team.
25883 2012-12-13  David S. Miller  <davem@davemloft.net>
25885         * NEWS: Mention IFUNC testsuite enhancements.
25887         * po/pl.po: Update from translation team.
25888         * po/bg.po: Likewise.
25890         * manual/contrib.texi (Contributors): Update entries for Hongjiu
25891         Lu and Joseph S. Myers.  Add entry for Marcus Shawcroft.
25893 2012-12-11  David S. Miller  <davem@davemloft.net>
25895         * po/sv.po: Update from translation team.
25897         * po/vi.po: Update from translation team.
25899         * po/cs.po: Update from translation team.
25901         * po/de.po: Update from translation team.
25902         * po/eo.po: Likewise.
25903         * po/nl.po: Likewise.
25905 2012-12-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
25907         [BZ #14246]
25908         * manual/argp.texi (Argp Helper Functions): Move node to follow
25909         Argp Parsing State.
25911         [BZ #14872]
25912         * manual/conf.texi (Limits on File System Capacity): Mention if
25913         terminating null is included in the max size.
25915 2012-12-10  Andreas Jaeger  <aj@suse.de>
25917         * po/cs.po: Update from translation team.
25919 2012-12-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
25921         * sysdeps/s390/jmpbuf-unwind.h (_jmpbuf_sp): Declare SP as
25922         void pointer and cast to uintptr_t.
25923         * sysdeps/s390/s390-64/memcmp.S: Pick sysdep.h from include
25924         path.
25925         * sysdeps/s390/s390-64/memcpy.S: Likewise.
25926         * sysdeps/s390/s390-64/memset.S: Likewise.
25928 2012-12-08  Benno Schulenberg  <bensberg@justemail.net>
25930         [BZ #14833]
25931         * menual/message.texi (Message Translation): Fix typos.
25932         (Helper programs for gettext): Likewise.
25934 2012-12-07  Andreas Schwab  <schwab@linux-m68k.org>
25936         [BZ #14898]
25937         * include/link.h (FORCED_DYNAMIC_TLS_OFFSET) [NO_TLS_OFFSET == 0]:
25938         Change to -1.
25940 2012-12-07  David S. Miller  <davem@davemloft.net>
25942         * po/libc.pot: Update.
25944 2012-12-07  Richard Henderson  <rth@redhat.com>
25946         [BZ #10114]
25947         * soft-fp/op-common.h (_FP_MUL): Pull computation of R_e from the
25948         normal/normal case to before the switch.
25949         (_FP_DIV): Likewise.
25951 2012-12-06  Carlos O'Donell  <carlos@systemhalted.org>
25952             Mike Frysinger  <vapier@gentoo.org>
25954         * sysdeps/unix/sysv/linux/posix_fadvise.c (posix_fadvise): Also
25955         check for __NR_fadvise64_64.
25957 2012-12-06  Chris Metcalf  <cmetcalf@tilera.com>
25959         * sysdeps/generic/fpu_control.h (_FPU_GETCW): Define to set cw to
25960         0, not just to plain "0" as a statement.
25961         (_FPU_SETCW): Define to (void) (cw), rather than doing nothing
25962         with cw.
25964 2012-12-06  Joseph Myers  <joseph@codesourcery.com>
25966         * NEWS: Use sourceware.org in Bugzilla URL.
25968 2012-12-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
25970         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
25971         (INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
25973         * stdio-common/tst-put-error.c (do_test): Add newline to the
25974         padded test to ensure flush.
25976 2012-12-05  Jeff Law  <law@redhat.com>
25978         * sunrpc/etc.rpc (fedfs_admin): Add entry.
25980 2012-12-05  Joseph Myers  <joseph@codesourcery.com>
25982         * README: Don't refer to ports add-on as distributed separately.
25983         Mention AArch64 in list of systems supported in the ports add-on.
25985         * LICENSES: Add more non-FSF copyright and license notices.
25987         * soft-fp/op-common.h (_FP_DECL): Declare X##_s with __attribute__
25988         ((unused)).
25990         * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Include <stdlib.h>.
25992         * stdio-common/tst-put-error.c (do_test): Use 10000000 instead of
25993         10000 as width of padded output.
25995 2012-12-04  Joseph Myers  <joseph@codesourcery.com>
25997         * sysdeps/powerpc/sysdep.h (_SYS_AUXV_H): Define to 1 not empty.
25999         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Mark
26000         variable LX with __attribute__ ((unused)).
26001         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
26002         Likewise.
26003         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (___isnanl): Likewise.
26004         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
26005         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Mark variable LY
26006         with __attribute__ ((unused)).
26008 2012-12-04  David S. Miller  <davem@abraco.davemloft.net>
26010         * sysdeps/generic/memcopy.h: Add multiple inclusion protection.
26012 2012-12-04  Joseph Myers  <joseph@codesourcery.com>
26014         * sysdeps/ieee754/ldbl-opt/Makefile [$(subdir) = math]
26015         (CFLAGS-nldbl-acos.c): New variable.
26016         [$(subdir) = math] (CFLAGS-nldbl-acosh.c): Likewise.
26017         [$(subdir) = math] (CFLAGS-nldbl-asin.c): Likewise.
26018         [$(subdir) = math] (CFLAGS-nldbl-asinh.c): Likewise.
26019         [$(subdir) = math] (CFLAGS-nldbl-atan.c): Likewise.
26020         [$(subdir) = math] (CFLAGS-nldbl-atan2.c): Likewise.
26021         [$(subdir) = math] (CFLAGS-nldbl-atanh.c): Likewise.
26022         [$(subdir) = math] (CFLAGS-nldbl-cabs.c): Likewise.
26023         [$(subdir) = math] (CFLAGS-nldbl-cacos.c): Likewise.
26024         [$(subdir) = math] (CFLAGS-nldbl-cacosh.c): Likewise.
26025         [$(subdir) = math] (CFLAGS-nldbl-carg.c): Likewise.
26026         [$(subdir) = math] (CFLAGS-nldbl-casin.c): Likewise.
26027         [$(subdir) = math] (CFLAGS-nldbl-casinh.c): Likewise.
26028         [$(subdir) = math] (CFLAGS-nldbl-catan.c): Likewise.
26029         [$(subdir) = math] (CFLAGS-nldbl-catanh.c): Likewise.
26030         [$(subdir) = math] (CFLAGS-nldbl-cbrt.c): Likewise.
26031         [$(subdir) = math] (CFLAGS-nldbl-ccos.c): Likewise.
26032         [$(subdir) = math] (CFLAGS-nldbl-ccosh.c): Likewise.
26033         [$(subdir) = math] (CFLAGS-nldbl-ceil.c): Likewise.
26034         [$(subdir) = math] (CFLAGS-nldbl-cexp.c): Likewise.
26035         [$(subdir) = math] (CFLAGS-nldbl-cimag.c): Likewise.
26036         [$(subdir) = math] (CFLAGS-nldbl-clog.c): Likewise.
26037         [$(subdir) = math] (CFLAGS-nldbl-clog10.c): Likewise.
26038         [$(subdir) = math] (CFLAGS-nldbl-conj.c): Likewise.
26039         [$(subdir) = math] (CFLAGS-nldbl-copysign.c): Likewise.
26040         [$(subdir) = math] (CFLAGS-nldbl-cos.c): Likewise.
26041         [$(subdir) = math] (CFLAGS-nldbl-cosh.c): Likewise.
26042         [$(subdir) = math] (CFLAGS-nldbl-cpow.c): Likewise.
26043         [$(subdir) = math] (CFLAGS-nldbl-cproj.c): Likewise.
26044         [$(subdir) = math] (CFLAGS-nldbl-creal.c): Likewise.
26045         [$(subdir) = math] (CFLAGS-nldbl-csin.c): Likewise.
26046         [$(subdir) = math] (CFLAGS-nldbl-csinh.c): Likewise.
26047         [$(subdir) = math] (CFLAGS-nldbl-csqrt.c): Likewise.
26048         [$(subdir) = math] (CFLAGS-nldbl-ctan.c): Likewise.
26049         [$(subdir) = math] (CFLAGS-nldbl-ctanh.c): Likewise.
26050         [$(subdir) = math] (CFLAGS-nldbl-drem.c): Likewise.
26051         [$(subdir) = math] (CFLAGS-nldbl-erf.c): Likewise.
26052         [$(subdir) = math] (CFLAGS-nldbl-erfc.c): Likewise.
26053         [$(subdir) = math] (CFLAGS-nldbl-exp.c): Likewise.
26054         [$(subdir) = math] (CFLAGS-nldbl-exp10.c): Likewise.
26055         [$(subdir) = math] (CFLAGS-nldbl-exp2.c): Likewise.
26056         [$(subdir) = math] (CFLAGS-nldbl-expm1.c): Likewise.
26057         [$(subdir) = math] (CFLAGS-nldbl-fabs.c): Likewise.
26058         [$(subdir) = math] (CFLAGS-nldbl-fdim.c): Likewise.
26059         [$(subdir) = math] (CFLAGS-nldbl-finite.c): Likewise.
26060         [$(subdir) = math] (CFLAGS-nldbl-floor.c): Likewise.
26061         [$(subdir) = math] (CFLAGS-nldbl-fma.c): Likewise.
26062         [$(subdir) = math] (CFLAGS-nldbl-fmax.c): Likewise.
26063         [$(subdir) = math] (CFLAGS-nldbl-fmin.c): Likewise.
26064         [$(subdir) = math] (CFLAGS-nldbl-fmod.c): Likewise.
26065         [$(subdir) = math] (CFLAGS-nldbl-frexp.c): Likewise.
26066         [$(subdir) = math] (CFLAGS-nldbl-gamma.c): Likewise.
26067         [$(subdir) = math] (CFLAGS-nldbl-hypot.c): Likewise.
26068         [$(subdir) = math] (CFLAGS-nldbl-ilogb.c): Likewise.
26069         [$(subdir) = math] (CFLAGS-nldbl-isinf.c): Likewise.
26070         [$(subdir) = math] (CFLAGS-nldbl-isnan.c): Likewise.
26071         [$(subdir) = math] (CFLAGS-nldbl-j0.c): Likewise.
26072         [$(subdir) = math] (CFLAGS-nldbl-j1.c): Likewise.
26073         [$(subdir) = math] (CFLAGS-nldbl-jn.c): Likewise.
26074         [$(subdir) = math] (CFLAGS-nldbl-ldexp.c): Likewise.
26075         [$(subdir) = math] (CFLAGS-nldbl-lgamma.c): Likewise.
26076         [$(subdir) = math] (CFLAGS-nldbl-lgamma_r.c): Likewise.
26077         [$(subdir) = math] (CFLAGS-nldbl-llrint.c): Likewise.
26078         [$(subdir) = math] (CFLAGS-nldbl-llround.c): Likewise.
26079         [$(subdir) = math] (CFLAGS-nldbl-log.c): Likewise.
26080         [$(subdir) = math] (CFLAGS-nldbl-log10.c): Likewise.
26081         [$(subdir) = math] (CFLAGS-nldbl-log1p.c): Likewise.
26082         [$(subdir) = math] (CFLAGS-nldbl-log2.c): Likewise.
26083         [$(subdir) = math] (CFLAGS-nldbl-logb.c): Likewise.
26084         [$(subdir) = math] (CFLAGS-nldbl-lrint.c): Likewise.
26085         [$(subdir) = math] (CFLAGS-nldbl-lround.c): Likewise.
26086         [$(subdir) = math] (CFLAGS-nldbl-modf.c): Likewise.
26087         [$(subdir) = math] (CFLAGS-nldbl-nan.c): Likewise.
26088         [$(subdir) = math] (CFLAGS-nldbl-nearbyint.c): Likewise.
26089         [$(subdir) = math] (CFLAGS-nldbl-nextafter.c): Likewise.
26090         [$(subdir) = math] (CFLAGS-nldbl-nexttoward.c): Likewise.
26091         [$(subdir) = math] (CFLAGS-nldbl-nexttowardf.c): Likewise.
26092         [$(subdir) = math] (CFLAGS-nldbl-pow.c): Likewise.
26093         [$(subdir) = math] (CFLAGS-nldbl-pow10.c): Likewise.
26094         [$(subdir) = math] (CFLAGS-nldbl-remainder.c): Likewise.
26095         [$(subdir) = math] (CFLAGS-nldbl-remquo.c): Likewise.
26096         [$(subdir) = math] (CFLAGS-nldbl-rint.c): Likewise.
26097         [$(subdir) = math] (CFLAGS-nldbl-round.c): Likewise.
26098         [$(subdir) = math] (CFLAGS-nldbl-scalb.c): Likewise.
26099         [$(subdir) = math] (CFLAGS-nldbl-scalbln.c): Likewise.
26100         [$(subdir) = math] (CFLAGS-nldbl-scalbn.c): Likewise.
26101         [$(subdir) = math] (CFLAGS-nldbl-significand.c): Likewise.
26102         [$(subdir) = math] (CFLAGS-nldbl-sin.c): Likewise.
26103         [$(subdir) = math] (CFLAGS-nldbl-sincos.c): Likewise.
26104         [$(subdir) = math] (CFLAGS-nldbl-sinh.c): Likewise.
26105         [$(subdir) = math] (CFLAGS-nldbl-sqrt.c): Likewise.
26106         [$(subdir) = math] (CFLAGS-nldbl-tan.c): Likewise.
26107         [$(subdir) = math] (CFLAGS-nldbl-tanh.c): Likewise.
26108         [$(subdir) = math] (CFLAGS-nldbl-tgamma.c): Likewise.
26109         [$(subdir) = math] (CFLAGS-nldbl-trunc.c): Likewise.
26110         [$(subdir) = math] (CFLAGS-nldbl-y0.c): Likewise.
26111         [$(subdir) = math] (CFLAGS-nldbl-y1.c): Likewise.
26112         [$(subdir) = math] (CFLAGS-nldbl-yn.c): Likewise.
26114         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
26115         (INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
26117         [BZ #14914]
26118         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Clear
26119         whole low double instead of just low 47 bits when splitting values
26120         into two parts.
26122 2012-12-03  Allan McRae  <allan@archlinux.org>
26124         * manual/stdio.texi (Predefined Printf Handlers): Remove
26125         @hsep and @vsep usage.
26127 2012-12-03  Mike Frysinger  <vapier@gentoo.org>
26129         * bits/byteswap.h [__GNUC__]: Change __GNUC_PREREQ from 4.2 to 4.3.
26130         * sysdeps/x86/bits/byteswap.h [__GNUC__]: Likewise.
26132 2012-12-03  Jeff Law  <law@redhat.com>
26134         * time/sys/time.h (settimeofday): Do not mark TV argument
26135         as __nonnull.
26137 2012-12-01  Mike Frysinger  <vapier@gentoo.org>
26139         * libio/fileops.c (_IO_new_file_close_it): Do not always flush
26140         when currently writing and seek to current position when not.
26141         * libio/Makefile (tests): Remove bug-fclose1.
26142         * libio/bug-fclose1.c: Delete.
26144 2012-12-01  Joseph Myers  <joseph@codesourcery.com>
26146         * manual/arith.texi (feenableexcept): Fix typo.
26147         (fedisableexcept): Likewise.
26149 2012-11-30  Roland McGrath  <roland@hack.frob.com>
26151         * sysdeps/powerpc/powerpc64/entry.h (TEXT_START): Define using a
26152         second, differently-typed declaration, rather than a cast.
26154 2012-11-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
26156         * sunrpc/rpc/svc.h (__svc_accept_failed): Move declaration...
26157         * include/rpc/svc.h: ... here.
26159 2012-11-30  Aurelien Jarno  <aurel32@debian.org>
26161         [BZ #13013]
26162         * resolv/res_query.c(__libc_res_nquery): Assign hp and hp2
26163         depending n and resplen2 to catch cases where answer
26164         equals answerp2.
26166 2012-11-29  Carlos O'Donell  <carlos@systemhalted.org>
26168         * elf/get-dynamic-info.h (elf_get_dynamic_info): Warn
26169         for unsupported DF_1_* bits when DL_DEBUG_FILES is set.
26171 2012-11-29  Mike Frysinger  <vapier@gentoo.org>
26173         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c (HAS_CPUCLOCK): Delete.
26175 2012-11-29  Roland McGrath  <roland@hack.frob.com>
26177         * inet/tst-inet6_rth.c (do_test): Use a union rather than type punning.
26179 2012-11-28  Jeff Law  <law@redhat.com>
26181         [BZ #13761]
26182         * nscd/grpcache.c (cache_addgr): Rename alloca_used to
26183         dataset_temporary.  Track alloca usage into alloca_used.
26184         If dataset is large allocate and release it via malloc/free.
26186 2012-06-04  Florian Weimer  <fweimer@redhat.com>
26188         [BZ #14197]
26189         * debug/test-strcpy_chk.c: Mention __chk_fail ABI test.
26191 2012-11-28  David S. Miller  <davem@davemloft.net>
26193         * sysdeps/sparc/fpu/libm-test-ulps: Update.
26195 2012-11-28  Joseph Myers  <joseph@codesourcery.com>
26197         [BZ #14803]
26198         * sysdeps/ieee754/ldbl-96/e_asinl.c (pio2_hi): Use hex float value
26199         of pi/2 rounded to nearest to 64 bits.
26200         (pio2_lo): Use hex float value of pi/2 - pio2_hi rounded to
26201         nearest to 64 bits.
26202         (pio4_hi): Use hex float value of pi/4 rounded to nearest to 64
26203         bits.
26205 2012-11-28  Jeff Law <law@redhat.com>
26206             Martin Osvald <mosvald@redhat.com>
26208         [BZ #14889]
26209         * sunrpc/rpc/svc.h (__svc_accept_failed): New prototype.
26210         * sunrpc/svc.c: Include time.h.
26211         (__svc_accept_failed): New function.
26212         * sunrpc/svc_tcp.c (rendezvous_request): If the accept fails for
26213         any reason other than EINTR, call __svc_accept_failed.
26214         * sunrpc/svc_udp.c (svcudp_recv): Similarly.
26215         * sunrpc/svc_unix.c (rendezvous_request): Similarly.
26217 2012-11-28  Andreas Schwab  <schwab@suse.de>
26219         * scripts/abilist.awk: Also handle indirect functions in .opd
26220         section.
26222 2012-11-28  Joseph Myers  <joseph@codesourcery.com>
26224         [BZ #13881]
26225         * sysdeps/x86/fpu/powl_helper.c: New file.
26226         * sysdeps/x86/fpu/Makefile: Likewise.
26227         * sysdeps/i386/fpu/e_powl.S (limit): Remove object.
26228         (p3): New object.
26229         (__ieee754_powl): Use __powl_helper for finite arguments except
26230         integer exponents below 8.
26231         * sysdeps/x86_64/fpu/e_powl.S (limit): Remove object.
26232         (p3): New object.
26233         (__ieee754_powl): Use __powl_helper for finite arguments except
26234         integer exponents below 8.
26235         * math/libm-test.inc (pow_test): Add more tests and enable some
26236         previously disabled tests.
26237         * sysdeps/i386/fpu/libm-test-ulps: Update.
26238         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26240 2012-11-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
26241             Carlos O'Donell  <carlos_odonell@mentor.com>
26243         * nss/makedb.c (is_prime): Assert that input is odd and greater
26244         than 4.  Note that fact in a comment too.
26245         (next_prime): Add 4 to input.
26247 2012-11-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
26249         [BZ #11741]
26250         * libio/Makefile (tests): Add test case tst-fwrite-error.
26251         * libio/iofwrite.c (_IO_fwrite): Return 0 on EOF.
26252         * libio/iofwrite_u.c (fwrite_unlocked): Likewise.
26253         * libio/tst-fwrite-error.c: New test case.
26255 2012-11-26  H.J. Lu  <hongjiu.lu@intel.com>
26257         * elf/dl-load.c (_dl_map_object_from_fd): Cast to uintptr_t
26258         before casting to void *.
26259         * include/libc-internal.h (__pointer_type): New macro.
26260         (__integer_if_pointer_type_sub): Likewise.
26261         (__integer_if_pointer_type): Likewise.
26262         (cast_to_integer): Likewise.
26263         * sysdeps/x86_64/bits/atomic.h: Include <libc-internal.h>.
26264         (__arch_c_compare_and_exchange_val_64_acq): Use cast_to_integer
26265         before casting to atomic64_t.
26266         (atomic_exchange_acq): Likewise.
26267         (__arch_exchange_and_add_body): Likewise.
26268         (__arch_add_body): Likewise.
26269         (atomic_add_negative): Likewise.
26270         (atomic_add_zero): Likewise.
26272 2012-11-26  Joseph Myers  <joseph@codesourcery.com>
26274         * sysdeps/generic/unwind-dw2-fde.c (get_pc_begin): New function.
26275         (fde_unencoded_compare): Use get_pc_begin instead of type-punning.
26276         (add_fdes): Likewise.
26277         (linear_search_fdes): Likewise.
26278         (binary_search_unencoded_fdes): Likewise.
26280 2012-11-26  Andreas Schwab  <schwab@linux-m68k.org>
26282         * elf/sotruss.ksh: Correctly locate argument of -F and -T options.
26284 2012-11-24  Adam Conrad  <adconrad@0c3.net>
26286         * configure.in: Autodetect C++ header directories.
26287         * configure: Regenerated.
26289 2012-11-23  Mike Frysinger  <vapier@gentoo.org>
26291         * elf/Makefile ($(objpfx)ld.so): Change readelf to $(READELF).
26293 2012-11-23  Andreas Schwab  <schwab@linux-m68k.org>
26295         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
26297 2012-11-22  Joseph Myers  <joseph@codesourcery.com>
26299         * math/libm-test.inc (fma_test_towardzero) [TEST_LDOUBLE &&
26300         LDBL_MANT_DIG == 106]: Disable some tests.
26301         (fma_test_downward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
26302         Likewise.
26303         (fma_test_upward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
26304         Likewise.
26306         [BZ #14871]
26307         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c (__atanl): Return the
26308         input for small inputs.  Return +/- pi/2 for large inputs.
26309         * math/libm-test.inc (atan_test): Add more tests.
26311         * sysdeps/generic/unwind-dw2-fde-glibc.c
26312         (_Unwind_IteratePhdrCallback): Declare P_DYNAMIC with
26313         __attribute__ ((unused)).
26315         [BZ #14645]
26316         * sysdeps/ieee754/ldbl-128ibm/s_fmal.c (__fmal): Compute result as
26317         x * y if x and y are nonzero and z is zero.
26319         [BZ #14811]
26320         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Saturate
26321         nonzero exponents with absolute value below 0x1p-117 to +/-
26322         0x1p-117.
26324         [BZ #14869]
26325         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Scale
26326         up arguments below 2**-450, not just those below 2**-500.
26327         * math/libm-test.inc (hypot_test): Add another test.
26329         [BZ #14868]
26330         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl):
26331         Return a+b for ratio over 2**120, not 2**60.
26332         * math/libm-test.inc (hypot_test): Add another test.
26334         * math/libm-test.inc (clog_test): Use
26335         UNDERFLOW_EXCEPTION_LDOUBLE_IBM on two tests.
26336         (clog10_test): Likewise.
26338         [BZ #6778]
26339         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (big): Change to 1e290L.
26341 2012-11-22  Andreas Schwab  <schwab@suse.de>
26343         * sysdeps/i386/fpu/libm-test-ulps: Update.
26345 2012-11-22  Pino Toscano  <toscano.pino@tiscali.it>
26347         * sysdeps/x86_64/multiarch/test-multiarch.c (get_cpuinfo): Terminate
26348         printf output with newline.
26350 2012-11-21  H.J. Lu  <hongjiu.lu@intel.com>
26352         [BZ #14865]
26353         * aclocal.m4 (LIBC_LINKER_FEATURE): New macro.
26354         * configure.in: Use LIBC_LINKER_FEATURE to check -z nodelete,
26355         -z nodlopen, -z initfirst and -z execstack support.
26356         * configure: Regenerated.
26358         * elf/elf.h (DF_1_NODIRECT): New macro.
26359         (DF_1_IGNMULDEF): Likewise.
26360         (DF_1_NOKSYMS): Likewise.
26361         (DF_1_NOHDR): Likewise.
26362         (DF_1_EDITED): Likewise.
26363         (DF_1_NORELOC): Likewise.
26364         (DF_1_SYMINTPOSE): Likewise.
26365         (DF_1_GLOBAUDIT): Likewise.
26366         (DF_1_SINGLETON): Likewise.
26367         * elf/get-dynamic-info.h (elf_get_dynamic_info): Assert
26368         DT_1_SUPPORTED_MASK bits.
26369         * include/elf.h (DT_1_SUPPORTED_MASK): New macro.
26371 2012-11-20  Carlos O'Donell  <carlos_odonell@mentor.com>
26373         * sysdeps/unix/make-syscalls.sh: Document prefixes.
26375 2012-11-20  Thomas Schwinge  <thomas@codesourcery.com>
26377         * sysdeps/sh/dl-machine.h (ELF_MACHINE_RUNTIME_FIXUP_PARAMS): New
26378         macro.
26380         * sysdeps/unix/sysv/linux/bits/socket.h (struct mmsghdr, recvmmsg)
26381         (sendmmsg): Move declarations...
26382         * socket/sys/socket.h: ... here.
26383         * sysdeps/unix/sysv/linux/recvmmsg.c [!defined __NR_recvmmsg &&
26384         !defined __NR_socketcall] (recvmmsg): Move ENOSYS stub into and
26385         include it from...
26386         * socket/recvmmsg.c: ... this new file.
26387         * sysdeps/unix/sysv/linux/internal_sendmmsg.S [__ASSUME_SENDMMSG]
26388         (sendmmsg): Rename to __sendmmsg, create weak alias and make
26389         definition of __sendmmsg hidden.
26390         * sysdeps/unix/sysv/linux/sendmmsg.c (sendmmsg): Likewise.
26391         [!defined __NR_sendmmsg && !defined __NR_socketcall] (sendmmsg):
26392         Move ENOSYS stub into and include it from...
26393         * socket/sendmmsg.c: ... this new file.
26394         * sysdeps/unix/sysv/linux/Makefile [subdir=socket]
26395         (sysdep_routines): Move recvmmsg and sendmmsg...
26396         * socket/Makefile (routines): ... here.
26397         * socket/Versions (GLIBC_2.17): Add recvmmsg and sendmmsg.
26398         (GLIBC_PRIVATE): Add __sendmmsg.
26399         * include/sys/socket.h (__sendmmsg): Add declarations.
26400         * resolv/res_send.c (send_dg): Invoke __sendmmsg instead of
26401         sendmmsg.
26403 2012-11-20  Joseph Myers  <joseph@codesourcery.com>
26405         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Mark
26406         variable I1 with __attribute__ ((unused)).
26407         * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
26409 2012-11-19  Joseph Myers  <joseph@codesourcery.com>
26411         * stdio-common/_itowa.c (_itowa) [BITS_PER_MP_LIMB == 64]: Declare
26412         DUMMY variables with __attribute__ ((unused)).
26414         * bits/byteswap.h: Include <bits/types.h>.
26415         (__bswap_64): Use __uint64_t instead of unsigned long long int.
26417 2012-11-19  Pino Toscano  <toscano.pino@tiscali.it>
26419         * sysdeps/mach/hurd/ptsname.c (ptsname): Change the type of PEERNAME to
26420         string_t.  Do not manually set errno.
26421         (__ptsname_r): Change the type of PEERNAME to string_t, and check its
26422         length with __strnlen.  Make sure to both set errno and return it on
26423         failure.
26425 2012-11-19  David S. Miller  <davem@davemloft.net>
26427         With help from Joseph Myers.
26428         * sysdeps/ieee754/ldbl-128/s_atanl.c (__atanl): Handle tiny and
26429         very large arguments properly.
26430         * math/libm-test.inc (atan_test): New tests.
26431         (atan2_test): New tests.
26432         * sysdeps/sparc/fpu/libm-test-ulps: Update.
26433         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
26435 2012-11-19  Joseph Myers  <joseph@codesourcery.com>
26437         [BZ #14856]
26438         * posix/bits/posix1_lim.h [!__USE_XOPEN2K] (_POSIX_TZNAME_MAX):
26439         Define to 3.
26441         * conform/data/errno.h-data [POSIX] (EADDRINUSE): Do not expect.
26442         [POSIX] (EADDRNOTAVAIL): Likewise.
26443         [POSIX] (EAFNOSUPPORT): Likewise.
26444         [POSIX] (EALREADY): Likewise.
26445         [POSIX] (ECONNABORTED): Likewise.
26446         [POSIX] (ECONNREFUSED): Likewise.
26447         [POSIX] (ECONNRESET): Likewise.
26448         [POSIX] (EDESTADDRREQ): Likewise.
26449         [POSIX] (EDQUOT): Likewise.
26450         [POSIX] (EHOSTUNREACH): Likewise.
26451         [POSIX] (EIDRM): Likewise.
26452         [POSIX] (EISCONN): Likewise.
26453         [POSIX] (ELOOP): Likewise.
26454         [POSIX] (EMULTIHOP): Likewise.
26455         [POSIX] (ENETDOWN): Likewise.
26456         [POSIX] (ENETUNREACH): Likewise.
26457         [POSIX] (ENOBUFS): Likewise.
26458         [POSIX] (ENODATA): Likewise.
26459         [POSIX] (ENOLINK): Likewise.
26460         [POSIX] (ENOMSG): Likewise.
26461         [POSIX] (ENOPROTOOPT): Likewise.
26462         [POSIX] (ENOSR): Likewise.
26463         [POSIX] (ENOSTR): Likewise.
26464         [POSIX] (ENOTCONN): Likewise.
26465         [POSIX] (ENOTSOCK): Likewise.
26466         [POSIX] (EOPNOTSUPP): Likewise.
26467         [POSIX] (EOVERFLOW): Likewise.
26468         [POSIX] (EPROTO): Likewise.
26469         [POSIX] (EPROTONOSUPPORT): Likewise.
26470         [POSIX] (EPROTOTYPE): Likewise.
26471         [POSIX] (ESTALE): Likewise.
26472         [POSIX] (ETIME): Likewise.
26473         [POSIX] (ETXTBSY): Likewise.
26474         [POSIX] (EWOULDBLOCK): Likewise.
26475         [!ISO && !ISO99 && !ISO11] (E*): Do not allow.
26476         * conform/data/fcntl.h-data [POSIX] (SEEK_SET): Allow.
26477         [POSIX] (SEEK_CUR): Likewise.
26478         [POSIX] (SEEK_END): Likewise.
26479         [POSIX || UNIX98] (mode_t): Do not require.
26480         [POSIX] (off_t): Likewise.
26481         [POSIX] (pid_t): Likewise.
26482         [POSIX] (sys/stat.h): Do not allow header.
26483         [POSIX] (unistd.h): Likewise.
26484         [!ISO && !ISO99 && !ISO11] (timespec): Do not allow.
26485         [!ISO && !ISO99 && !ISO11] (tv_nsec): Likewise.
26486         [!ISO && !ISO99 && !ISO11] (tv_sec): Likewise.
26487         * conform/data/locale.h-data [POSIX] (LC_MESSAGES): Do not
26488         require.
26489         * conform/data/mqueue.h-data [!ISO && !ISO99 && !ISO11] (struct
26490         sigevent): Specify elements.
26491         [XOPEN2K8 || POSIX2008] (struct sigevent): Remove duplicate type
26492         entry.
26493         [!ISO && !ISO99 && !ISO11] (mq_*): Allow.
26494         [!ISO && !ISO99 && !ISO11] (MQ_*): Likewise.
26496         * conform/data/cpio.h-data [POSIX]: Disable whole file.
26497         * conform/data/glob.h-data [POSIX] (GLOB_NOSYS): Do not expect.
26498         * conform/data/limits.h-data [!ISO && !ISO99 && !ISO11]
26499         (AIO_LIST_MAX): Change to AIO_LISTIO_MAX.
26500         [!ISO && !ISO99 && !ISO11] (ATEXT_MAX): Remove.
26501         [!ISO && !ISO99 && !ISO11 && !POSIX && !XPG3] (ATEXIT_MAX): Allow.
26502         [POSIX || POSIX2008 || XPG3] (IOV_MAX): Do not allow.
26503         [POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Likewise.
26504         [!ISO && !ISO99 && !ISO11] (MQ_PRIO_MAX): Allow.
26505         [!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Remove duplicate entry.
26506         [POSIX || XPG3 || XPG4 || UNIX98] (SS_REPL_MAX): Do not allow.
26507         [POSIX || XPG3 || XPG4 || UNIX98] (SYMLOOP_MAX): Likewise.
26508         [POSIX || XPG3 || XPG4] (FILESIZEBITS): Likewise.
26509         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_ALLOC_SIZE_MIN):
26510         Likewise.
26511         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_INCR_XFER_SIZE):
26512         Likewise.
26513         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_MAX_XFER_SIZE):
26514         Likewise.
26515         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_XFER_ALIGN):
26516         Likewise.
26517         [POSIX || XPG3 || XPG4 || UNIX98] (SYMLINK_MAX): Likewise.
26518         [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SS_REPL_MAX): Likewise.
26519         [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLINK_MAX): Likewise.
26520         [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLOOP_MAX): Likewise.
26521         [!ISO && !ISO99 && !ISO11] (BC_BASE_MAX): Use macro-constant.
26522         Specify lower bound on value.
26523         [!ISO && !ISO99 && !ISO11] (BC_DIM_MAX): Likewise.
26524         [!ISO && !ISO99 && !ISO11] (BC_SCALE_MAX): Likewise.
26525         [!ISO && !ISO99 && !ISO11] (BC_STRING_MAX): Likewise.
26526         [!ISO && !ISO99 && !ISO11] (COLL_WEIGHTS_MAX): Likewise.
26527         [!ISO && !ISO99 && !ISO11] (EXPR_NEST_MAX): Likewise.
26528         [!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Likewise
26529         [POSIX || XPG3 || XPG4] (CHARCLASS_NAME_MAX): Do not allow.
26530         [!ISO && !ISO99 && !ISO11] (_POSIX_CLOCKRES_MIN): Specify exact
26531         value.
26532         [!ISO && !ISO99 && !ISO11] (_POSIX_AIO_LISTIO_MAX): Do not specify
26533         as optional.
26534         [!ISO && !ISO99 && !ISO11] (_POSIX_AIO_MAX): Likewise.
26535         [!ISO && !ISO99 && !ISO11] (_POSIX_ARG_MAX): Likewise.
26536         [!ISO && !ISO99 && !ISO11] (_POSIX_CHILD_MAX): Likewise.
26537         [!ISO && !ISO99 && !ISO11] (_POSIX_DELAYTIMER_MAX): Likewise.
26538         [!ISO && !ISO99 && !ISO11] (_POSIX_LINK_MAX): Likewise.
26539         [!ISO && !ISO99 && !ISO11] (_POSIX_LOGIN_NAME_MAX): Likewise.
26540         [!ISO && !ISO99 && !ISO11] (_POSIX_MAX_CANON): Likewise.
26541         [!ISO && !ISO99 && !ISO11] (_POSIX_MAX_INPUT): Likewise.
26542         [!ISO && !ISO99 && !ISO11] (_POSIX_MQ_OPEN_MAX): Likewise.
26543         [!ISO && !ISO99 && !ISO11] (_POSIX_MQ_PRIO_MAX): Likewise.
26544         [!ISO && !ISO99 && !ISO11] (_POSIX_NAME_MAX): Likewise.
26545         [!ISO && !ISO99 && !ISO11] (_POSIX_NGROUPS_MAX): Likewise.
26546         [!ISO && !ISO99 && !ISO11] (_POSIX_OPEN_MAX): Likewise.
26547         [!ISO && !ISO99 && !ISO11] (_POSIX_PATH_MAX): Likewise.
26548         [!ISO && !ISO99 && !ISO11] (_POSIX_PIPE_BUF): Likewise.
26549         [!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Remove duplicate
26550         entry.
26551         [!ISO && !ISO99 && !ISO11] (_POSIX_RTSIG_MAX): Do not specify as
26552         optional.
26553         [!ISO && !ISO99 && !ISO11] (_POSIX_SEM_NSEMS_MAX): Likewise.
26554         [!ISO && !ISO99 && !ISO11] (_POSIX_SEM_VALUE_MAX): Likewise.
26555         [!ISO && !ISO99 && !ISO11] (_POSIX_SIGQUEUE_MAX): Likewise.
26556         [!ISO && !ISO99 && !ISO11] (_POSIX_SSIZE_MAX): Likewise.
26557         [!ISO && !ISO99 && !ISO11] (_POSIX_STREAM_MAX): Likewise.
26558         [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_DESTRUCTOR_ITERATIONS):
26559         Likewise.
26560         [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_KEYS_MAX): Likewise.
26561         [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_THREADS_MAX): Likewise.
26562         [!ISO && !ISO99 && !ISO11] (_POSIX_TIMER_MAX): Likewise.
26563         [!ISO && !ISO99 && !ISO11] (_POSIX_TTY_NAME_MAX): Likewise.
26564         [!ISO && !ISO99 && !ISO11] (_POSIX_TZNAME_MAX): Likewise.  Give
26565         value as 3 for [POSIX || XPG3 || XPG4 || UNIX98].
26566         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_BASE_MAX): Do not specify
26567         as optional.
26568         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_DIM_MAX): Likewise.
26569         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_SCALE_MAX): Likewise.
26570         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_STRING_MAX): Likewise.
26571         [!ISO && !ISO99 && !ISO11] (_POSIX2_CHARCLASS_NAME_MAX):
26572         Likewise.  Do not allow for [POSIX || XPG3 || XPG4 || UNIX98].
26573         [!ISO && !ISO99 && !ISO11] (_POSIX2_COLL_WEIGHTS_MAX): Do not
26574         specify as optional.
26575         [!ISO && !ISO99 && !ISO11] (_POSIX2_EXPR_NEST_MAX): Likewise.
26576         [!ISO && !ISO99 && !ISO11] (_POSIX2_LINE_MAX): Likewise.
26577         [!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Likewise.
26578         [POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Do not allow.
26579         [POSIX || XPG3] (NL_ARGMAX): Do not allow.
26580         [XPG3] (NL_LANGMAX): Likewise.
26581         [POSIX || XPG3] (NL_MSGMAX): Likewise.
26582         [POSIX || XPG3] (NL_NMAX): Likewise.
26583         [POSIX || XPG3] (NL_SETMAX): Likewise.
26584         [POSIX || XPG3] (NL_TEXTMAX): Likewise.
26585         [XPG3] (NZERO): Likewise.
26586         [XPG4 || UNIX98] (TMP_MAX): Only enable for these conditions.
26587         [POSIX || XPG3 || XPG4 || UNIX98] (*_MIN): Do not allow.
26588         [!ISO && !ISO99 && !ISO11] (*_t): Allow.
26589         * conform/data/regex.h-data [!ISO && !ISO99 && !ISO11]
26590         (REG_ERANGE): Expect.
26591         * conform/data/stdio.h-data [POSIX] (L_cuserid): Use
26592         optional-constant.
26593         [POSIX || XOPEN2K || XOPEN2K8 || POSIX2008] (getchar_unlocked):
26594         Use (void) in prototype.
26595         [POSIX] (*_t): Allow.
26596         * conform/data/sys/times.h-data [POSIX]: Enable whole file.
26597         * conform/data/wordexp.h-data [!ISO && !ISO99 && !ISO11]
26598         (WRDE_BADVAL): Expect.
26600         * conform/data/fcntl.h-data [XPG3 || XPG4] (O_DSYNC): Do not
26601         expect.
26602         [XPG3 || XPG4] (O_RSYNC): Likewise.
26603         * conform/data/signal.h-data [XPG3 || XPG4] (pthread_kill):
26604         Likewise.
26605         [XPG3 || XPG4] (pthread_sigmask): Likewise.
26606         [XPG3 || XPG4] (sigqueue): Likewise.
26607         [XPG3 || XPG4] (sigtimedwait): Likewise.
26608         [XPG3 || XPG4] (sigwaitinfo): Likewise.
26609         * conform/data/stdio.h-data [XPG3 || XPG4] (snprintf): Likewise.
26610         [XPG3 || XPG4] (vsnprintf): Likewise.
26611         * conform/data/sys/stat.h-data [XPG3 || XPG4] (blkcnt_t):
26612         Likewise.
26613         [XPG3 || XPG4] (blksize_t): Likewise.
26614         * conform/data/time.h-data [XPG3 || XPG4] (struct timespec):
26615         Likewise.
26616         [XPG3 || XPG4] (CLOCK_PROCESS_CPUTIME_ID): Likewise.
26617         [XPG3 || XPG4] (CLOCK_THREAD_CPUTIME_ID): Likewise.
26618         [XPG3 || XPG4] (struct itimerspec): Likewise.
26619         [XPG3 || XPG4] (CLOCK_REALTIME): Likewise.
26620         [XPG3 || XPG4] (TIMER_ABSTIME): Likewise.
26621         [XPG3 || XPG4] (CLOCK_MONOTONIC): Likewise.
26622         [XPG3 || XPG4] (clockid_t): Likewise.
26623         [XPG3 || XPG4] (timer_t): Likewise.
26624         [XPG3 || XPG4] (clock_getres): Likewise.
26625         [XPG3 || XPG4] (clock_gettime): Likewise.
26626         [XPG3 || XPG4] (clock_settime): Likewise.
26627         [XPG3 || XPG4] (nanosleep): Likewise.
26628         [XPG3 || XPG4] (timer_create): Likewise.
26629         [XPG3 || XPG4] (timer_delete): Likewise.
26630         [XPG3 || XPG4] (timer_gettime): Likewise.
26631         [XPG3 || XPG4] (timer_getoverrun): Likewise.
26632         [XPG3 || XPG4] (timer_settime): Likewise.
26633         * conform/data/unistd.h-data [XPG3 || XPG4] (fdatasync): Likewise.
26634         [XPG3 || XPG4] (getlogin_r): Likewise.
26635         [XPG3 || XPG4] (pread): Likewise.
26636         [XPG3 || XPG4] (pthread_atfork): Likewise.
26637         [XPG3 || XPG4] (pwrite): Likewise.
26639         [BZ #14835]
26640         * signal/signal.h [__USE_XOPEN_EXTENDED]: Include
26641         <bits/siginfo.h>.
26643 2012-11-19  Pino Toscano  <toscano.pino@tiscali.it>
26645         * malloc/mtrace.c (muntrace): Reset MALLSTREAM and the hooks before
26646         finalizing MALLSTREAM.
26648         * sysdeps/mach/hurd/syncfs.c: New file.
26650 2012-11-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
26652         [BZ #14719]
26653         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Set h_errno to
26654         NETDB_INTERNAL when NSS_STATUS_UNAVAIL.
26655         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Set
26656         h_errno to NETDB_INTERNAL when errno is EMFILE or ENFILE.
26657         (_nss_dns_gethostbyname4_r): Likewise.
26658         * sysdeps/posix/getaddrinfo.c (gaih_inet): Set result to
26659         EAI_SYSTEM if NSS_STATUS_UNAVAIL.
26661 2012-11-19  Peng Haitao  <penght@cn.fujitsu.com>
26663         [BZ #13763]
26664         * sunrpc/bindrsvprt.c: Add lock to protect static variable.
26666 2012-11-19  Steve McIntyre  <steve.mcintyre@linaro.org>
26668         * sysdeps/generic/ldconfig.h (FLAG_AARCH64_LIB64): New macro.
26669         * elf/cache.c (print_entry): Print ",AArch64" for
26670         FLAG_AARCH64_LIB64
26672         * sysdeps/generic/ldconfig.h (FLAG_ARM_LIBHF): New macro.
26673         * elf/cache.c (print_entry): Print ",hard-float" for
26674         FLAG_ARM_LIBHF.
26676 2012-11-18  David S. Miller  <davem@davemloft.net>
26678         With help from Joseph Myers.
26679         * sysdeps/ieee754/flt-32/e_j0f.c (__ieee754_y0f): Adjust tinyness
26680         cutoff to 2**-13.
26681         * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_y1f): Adjust tinyness
26682         cutoff to 2**-25.
26683         * sysdeps/ieee754/ldbl-128/e_j0l.c (U0): New constant.
26684         ( __ieee754_y0l): Avoid arithmetic underflow when 'x' is very
26685         small.
26686         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_y1l): Likewise.
26687         * math/libm-test.inc (y0_test): New tests.
26688         (y1_test): New tests.
26689         * sysdeps/i386/fpu/libm-test-ulps: Update.
26690         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
26691         * sysdeps/sparc/fpu/libm-test-ulps: Update.
26693 2012-11-18  Andreas Schwab  <schwab@linux-m68k.org>
26695         * configure.in (libc_cv_ld_gnu_indirect_function): Use .quad on
26696         64-bit targets.
26697         * configure: Regenerated.
26699 2012-11-17  David S. Miller  <davem@davemloft.net>
26701         [BZ #14811]
26702         * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Saturate
26703         nonzero exponents with absolute value below 0x1p-128 to +/-
26704         0x1p-128.
26706 2012-11-17  Joseph Myers  <joseph@codesourcery.com>
26708         * sysdeps/unix/sysv/linux/fxstatat.c: Include <string.h>.
26710         * elf/dl-runtime.c [!ELF_MACHINE_NO_PLT]: Make code unconditional.
26712         * posix/getconf-speclist.c: New file.
26713         * posix/posix-envs.def: Likewise.
26714         * posix/confstr.c (START_ENV_GROUP): New macro.
26715         (END_ENV_GROUP): Likewise.
26716         (KNOWN_ABSENT_ENVIRONMENT): Likewise.
26717         (KNOWN_PRESENT_ENV_STRING): Likewise.
26718         (KNOWN_PRESENT_ENVIRONMENT): Likewise.
26719         (UNKNOWN_ENVIRONMENT): Likewise.
26720         (confstr): Include posix-envs.def instead of handling
26721         _CS_V7_WIDTH_RESTRICTED_ENVS, _CS_V6_WIDTH_RESTRICTED_ENVS and
26722         _CS_V5_WIDTH_RESTRICTED_ENVS directly here.
26723         * sysdeps/posix/sysconf.c (START_ENV_GROUP): New macro.
26724         (END_ENV_GROUP): Likewise.
26725         (KNOWN_ABSENT_ENVIRONMENT): Likewise.
26726         (KNOWN_PRESENT_ENVIRONMENT): Likewise.
26727         (UNKNOWN_ENVIRONMENT): Likewise.
26728         (__sysconf): Include posix-envs.def instead of handling associated
26729         cases directly here.
26730         * posix/Makefile ($(objpfx)getconf.speclist): Generate by
26731         preprocessing getconf-speclist.c rather than running getconf or
26732         generating empty file.
26734 2012-11-16  Pino Toscano  <toscano.pino@tiscali.it>
26736         * scripts/check-local-headers.sh: Ignore 'mach' headers.
26738 2012-11-16  Andrej Lajovic  <natrij@gmail.com>
26740         [BZ #14672]
26741         * iconv/iconv_prog.c (main): Fix -c handling of '/'.
26743 2012-11-16  David S. Miller  <davem@davemloft.net>
26745         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): If xm1 is
26746         smaller than LDBL_EPSILON/2.0L, just return xm1.
26748 2012-11-16  H.J. Lu  <hongjiu.lu@intel.com>
26750         * elf/tst-array1.c (init): Set constructor priority to 1000.
26751         (fini): Set destructor priority to 1000.
26752         * elf/tst-array2dep.c: Likewise.
26754 2012-11-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
26756         [BZ #11741]
26757         * libio/fileops.c (_IO_new_file_write): Correctly return error.
26758         (_IO_new_file_xsputn): Also return EOF if none of the input
26759         data was written when overflow failed.
26760         * libio/iopadn.c (_IO_padn): Likewise.
26761         * libio/iowpadn.c (_IO_wpadn): Likewise.
26762         * stdio-common/tst-put-error.c: Add copyright notice.
26763         (do_test): Add case for printing padded string.
26764         * stdio-common/vfprintf [!COMPILE_WPRINTF] (PAD): Flag error if
26765         _IO_padn returned error.
26766         [COMPILE_WPRINTF] (PAD): Flag error if _IO_wpadn returned error.
26767         * libio/libioP.h (_IO_xsputn_t): Note in comment that xsputn can
26768         return EOF.
26770 2012-11-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
26772         * libio/libioP.h: Add comment note that the references to C++
26773         bits are now obsolete.
26775 2012-11-15  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
26777         * math/libm-test.inc (check_complex): Use asprintf.
26779 2012-11-14  Joseph Myers  <joseph@codesourcery.com>
26781         * debug/pcprofiledump.c (print_version): Update copyright year.
26782         * malloc/memusagestat.c (print_version): Likewise.
26784 2012-11-14  H.J. Lu  <hongjiu.lu@intel.com>
26786         [BZ #14831]
26787         * elf/Makefile (tests): Add tst-audit8.
26788         ($(objpfx)tst-audit8): Also depend on $(common-objpfx)math/libm.so.
26789         ($(objpfx)tst-audit8.out): New target.
26790         (tst-audit8-ENV): New variable.
26791         * elf/dl-runtime.c (_dl_profile_fixup): Call _dl_fixup to skip
26792         audit if l_reloc_result is NULL.
26793         (ELF_MACHINE_RUNTIME_FIXUP_PARAMS): Issue an error if it isn't
26794         defined and ELF_MACHINE_RUNTIME_FIXUP_ARGS is defined.
26795         * elf/tst-audit8.c: New file.
26797 2012-11-14  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
26799         * io/Makefile (CFLAGS-open.c, CFLAGS-open64.c): Define.
26800         * misc/Makefile (CFLAGS-select.c): Define.
26801         * posix/Makefile (CFLAGS-pause.c): Define.
26803 2012-11-13  David S. Miller  <davem@davemloft.net>
26805         * crypt/Makefile: Move test targets after toplevel Rules
26806         inclusion.  Grab any necessary sysdep routines when linking.
26807         * crypt/md5.c (md5_process_block): Remove define, we will always
26808         name it __md5_process_block.
26809         (md5_finish_ctx): Update md5_process_block call.
26810         (md5_stream): Likewise.
26811         (md5_process_bytes): Likewise.
26812         (md5_process_block): Rename to __md5_process_block and move to ...
26813         * crypt/md5-block.c: ... here.
26814         * crypt/sha256.c (sha256_process_block): Move to ...
26815         * crypt/sha256-block.c: ... here.
26816         * crypt/sha512.c (sha512_process_block): Move to ...
26817         * crypt/sha512-block.c: ... here.
26818         * locale/Makefile (CFLAGS-md5.c): Define to add crypt/ to include
26819         path.
26820         * sysdeps/sparc/sparc-ifunc.c (sparc_libc_ifunc): Define.
26821         * sysdeps/sparc/sparc64/multiarch/Makefile
26822         (libcrypt-sysdep_routines): Add crypto assembler sysdeps when in
26823         crypt subdir.
26824         (localedef-aux): Add md5 crypto assembler when in locale subdir.
26825         * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Mirror sparc64
26826         multiarch changes.
26827         * sysdeps/sparc/sparc64/multiarch/md5-block.c: New file.
26828         * sysdeps/sparc/sparc64/multiarch/md5-crop.S: New file.
26829         * sysdeps/sparc/sparc64/multiarch/sha256-block.c: New file.
26830         * sysdeps/sparc/sparc64/multiarch/sha256-crop.S: New file.
26831         * sysdeps/sparc/sparc64/multiarch/sha512-block.c: New file.
26832         * sysdeps/sparc/sparc64/multiarch/sha512-crop.S: New file.
26833         * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-block.c: New file.
26834         * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-crop.S: New file.
26835         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-block.c: New
26836         file.
26837         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-crop.S: New file.
26838         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-block.c: New
26839         file.
26840         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-crop.S: New file.
26842 2012-11-13  Joseph Myers  <joseph@codesourcery.com>
26844         * timezone/tzselect.ksh: Update from tzcode git revision
26845         a435f9f0ecafa56d9e0263835836bd0c64cd7307.
26846         * timezone/zdump.c: Likewise.
26847         * timezone/zic.c: Likewise.
26848         * timezone/Makefile ($(objpfx)version.h): Only include $(version)
26849         in TZVERSION setting, not $(PKGVERSION).
26850         ($(objpfx)tzselect): Likewise.  Also substitute PKGVERSION and
26851         REPORT_BUGS_TO settings.
26853         [BZ #14838]
26854         * resolv/netdb.h [__USE_XOPEN_EXTENDED] (IPPORT_RESERVED): Define
26855         macro.
26857 2012-11-13  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
26859         * soft-fp/op-common.h (_FP_PACK_SEMIRAW): Move underflow
26860         detection to immediately after _FP_ROUND().
26861         * soft-fp/soft-fp.h (_FP_ROUND): Don't round if working
26862         bits are 0.
26864 2012-11-11  David S. Miller  <davem@davemloft.net>
26866         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Include
26867         inttypes.h
26868         (__get_clockfreq_via_proc_openprom): Use __open, __read, and
26869         __close rather than their public counterparts.
26871 2012-11-10  Joseph Myers  <joseph@codesourcery.com>
26873         * conform/data/semaphore.h-data [XPG3 || XPG4]: Disable whole
26874         file.
26875         [UNIX98] (sem_timedwait): Do not expect.
26876         * conform/data/sys/socket.h-data [XPG3]: Disable whole file.
26877         [XPG4 || UNIX98] (sockatmark): Do not expect.
26878         * conform/data/time.h-data [XPG3 || XPG4 || UNIX98]
26879         (clock_getcpuclockid): Do not expect.
26880         [XPG3 || XPG4 || UNIX98] (clock_nanosleep): Do not expect.
26881         * conform/data/unistd.h-data [XPG3 || XPG4 || UNIX98] (setegid):
26882         Do not expect.
26883         [XPG3 || XPG4 || UNIX98] (seteuid): Likewise.
26884         * conform/data/wchar.h-data [UNIX98] (vfwscanf): Do not expect.
26885         [UNIX98] (vwscanf): Likewise.
26886         [UNIX98] (vswscanf): Likewise.
26888 2012-11-09  Joseph Myers  <joseph@codesourcery.com>
26890         * timezone/version.h: Remove file.
26891         * timezone/README: Do not refer to version.h.
26892         * timezone/Makefile ($(objpfx)zic.o): New dependency on
26893         $(objpfx)version.h.
26894         ($(objpfx)zdump.o): Likewise.
26895         ($(objpfx)version.h): New target.
26897         * timezone/tzselect.ksh: Change to verbatim copy from tzcode
26898         2012i.
26899         * timezone/README: Don't mention modification to tzselect.ksh.
26900         * timezone/Makefile ($(objpfx)tzselect): Update substitutions to
26901         work on unmodified tzselect.ksh.  Substitute version numbers in
26902         tzselect.ksh.
26904         * Makefile (format-me): Remove.
26905         (INSTALL): Adjust indentation.  Use commands directly instead of
26906         using $(format-me).
26908         * aclocal.m4 (ACX_PKGVERSION): New macro.
26909         (ACX_BUGURL): Likewise.
26910         * configure.in: Use ACX_PKGVERSION and ACX_BUGURL.
26911         (PKGVERSION): New AC_DEFINE_UNQUOTED.
26912         (REPORT_BUGS_TO): Likewise.
26913         * configure: Regenerated.
26914         * config.h.in (PKGVERSION): New macro.
26915         (REPORT_BUGS_TO): Likewise.
26916         * config.make.in (PKGVERSION): New variable.
26917         (PKGVERSION_TEXI): Likewise.
26918         (REPORT_BUGS_TO): Likewise.
26919         (REPORT_BUGS_TEXI): Likewise.
26920         * Makefile (format-me): Use -I$(common-objpfx)manual.
26921         (INSTALL): Depend on $(common-objpfx)manual/pkgvers.texi.
26922         ($(common-objpfx)manual/%): New target.
26923         (manual/%): Remove target.
26924         * catgets/gencat.c (more_help): Use REPORT_BUGS_TO.
26925         (print_version): Use PKGVERSION.
26926         * csu/version.c (banner): Use PKGVERSION and REPORT_BUGS_TO.
26927         * debug/Makefile ($(objpfx)catchsegv): Also substitute PKGVERSION
26928         and REPORT_BUGS_TO.
26929         ($(objpfx)xtrace): Likewise.
26930         * debug/catchsegv.sh: Use PKGVERSION and REPORT_BUGS_TO.
26931         * debug/pcprofiledump.c (more_help): Use REPORT_BUGS_TO.
26932         (print_version): Use PKGVERSION.
26933         * debug/xtrace.sh (do_help): Use REPORT_BUGS_TO.
26934         (do_version): Use PKGVERSION.
26935         * elf/Makefile ($(objpfx)sotruss): Also substitute PKGVERSION and
26936         REPORT_BUGS_TO.
26937         (common-ldd-rewrite): Likewise.
26938         * elf/dl-close.c (_dl_close_worker): Use REPORT_BUGS_TO.
26939         * elf/ldconfig.c (more_help): Use REPORT_BUGS_TO.
26940         (print_version): Use PKGVERSION.
26941         * elf/ldd.bash.in: Use PKGVERSION and REPORT_BUGS_TO.
26942         * elf/pldd.c (argp_program_bug_address): Remove variable.
26943         (more_help): New function.
26944         (argp): Use more_help.
26945         (print_version): Use PKGVERSION.
26946         * elf/sln.c (main): Use PKGVERSION.
26947         (usage): Use REPORT_BUGS_TO.
26948         * elf/sotruss.ksh (do_help): Use REPORT_BUGS_TO.
26949         (top level): Use PKGVERSION.
26950         * elf/sprof.c (more_help): Use REPORT_BUGS_TO.
26951         (print_version): Use PKGVERSION.
26952         * iconv/iconv_prog.c (more_help): Use REPORT_BUGS_TO.
26953         (print_version): Use PKGVERSION.
26954         * iconv/iconvconfig.c (more_help): Use REPORT_BUGS_TO.
26955         (print_version): Use PKGVERSION.
26956         * locale/programs/locale.c (more_help): Use REPORT_BUGS_TO.
26957         (print_version): Use PKGVERSION.
26958         * locale/programs/localedef.c (more_help): Use REPORT_BUGS_TO.
26959         (print_version): Use PKGVERSION.
26960         * login/programs/pt_chown.c (more_help): Use REPORT_BUGS_TO.
26961         (print_version): Use PKGVERSION.
26962         * malloc/Makefile ($(objpfx)mtrace): Also substitute PKGVERSION
26963         and BUGURL.
26964         ($(objpfx)memusage): Likewise.
26965         * malloc/memusage.sh (do_help): Use REPORT_BUGS_TO.
26966         (do_version): Use PKGVERSION.
26967         * malloc/memusagestat.c (more_help): Use REPORT_BUGS_TO.
26968         (print_version): Use PKGVERSION.
26969         * malloc/mtrace.pl ($PACKAGE): Remove variable.
26970         ($PKGVERSION): New variable.
26971         ($REPORT_BUGS_TO): Likewise.
26972         (usage): Use $REPORT_BUGS_TO.
26973         (top level): Use $PKGVERSION.
26974         * manual/Makefile (libc-texi-generated): Add pkgvers.texi.
26975         ($(objpfx)pkgvers.texi): New rule.
26976         ($(objpfx)stamp-pkgvers): Likewise.
26977         * manual/install.texi: Include pkgvers.texi.
26978         (--with-pkgversion): Document new configure option.
26979         (--with-bugurl): Likewise.
26980         (Reporting Bugs): Describe Bugzilla as upstream tracker rather
26981         than necessarily for this particular distribution.  Use
26982         REPORT_BUGS_TO for where to report bugs.
26983         * INSTALL: Regenerated.
26984         * manual/libc.texinfo: Include pkgvers.texi.
26985         [!PKGVERSION_DEFAULT]: Include PKGVERSION in version information.
26986         * nscd/nscd.c (more_help): Use REPORT_BUGS_TO.
26987         (print_version): Use PKGVERSION.
26988         * nss/getent.c (more_help): Use REPORT_BUGS_TO.
26989         (print_version): Use PKGVERSION.
26990         * nss/makedb.c (more_help): Use REPORT_BUGS_TO.
26991         (print_version): Use PKGVERSION.
26992         * posix/getconf.c (main): Use PKGVERSION and REPORT_BUGS_TO.
26993         * sunrpc/proto.h [IS_IN_build] (_libc_intl_domainname): Remove
26994         macro.
26995         * sunrpc/rpc_main.c (options_usage): Use REPORT_BUGS_TO.
26996         (print_version): Use PKGVERSION.
26997         * sunrpc/rpcinfo.c (usage): Use REPORT_BUGS_TO.
26998         (print_version): Use PKGVERSION.
26999         * sysdeps/unix/sysv/linux/lddlibc4.c (main): Use REPORT_BUGS_TO
27000         and PKGVERSION.
27002         * timezone/checktab.awk: Update from tzcode 2012i.
27003         * timezone/ialloc.c: Likewise.
27004         * timezone/private.h: Likewise.
27005         * timezone/scheck.c: Likewise.
27006         * timezone/tzfile.h: Likewise.
27007         * timezone/tzselect.ksh: Merge in changes from tzcode 2012i.
27008         (TZVERSION): Hardcode tzcode version number.
27009         * timezone/zdump.c: Update from tzcode 2012i.
27010         * timezone/zic.c: Likewise.
27011         * timezone/version.h: New file.
27012         * timezone/README: Describe version.h.  Update upstream location.
27014         [BZ #14824]
27015         * stdlib/stdlib.h [__USE_XOPEN_EXTENDED && __USE_XOPEN2K]
27016         (mktemp): Enable declaration.
27017         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (ecvt): Likewise.
27018         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (fcvt): Likewise.
27019         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (gcvt): Likewise.
27020         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qecvt):
27021         Likewise.
27022         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qfcvt):
27023         Likewise.
27024         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qgcvt):
27025         Likewise.
27026         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (ecvt_r):
27027         Likewise.
27028         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (fcvt_r):
27029         Likewise.
27030         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (gcvt_r):
27031         Likewise.
27033         [BZ #14821]
27034         * sunrpc/clnt_tcp.c (clnttcp_control): Access values at fixed
27035         offset in buffer as u_int32_t not u_long.  Consistently use memcpy
27036         for copies of such integer values.
27037         * sunrpc/clnt_udp.c (clntudp_control): Likewise.
27038         * sunrpc/clnt_unix.c (clntunix_control): Likewise.
27040 2012-11-09  Andreas Jaeger  <aj@suse.de>
27042         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Remove all
27043         definitions and declarations that are provided by
27044         <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
27046 2012-11-08  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
27048         * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Add "te".
27049         * sysdeps/s390/dl-procinfo.h (HWCAP_S390_TE): Add enum value.
27050         * sysdeps/unix/sysv/linux/s390/hwcap.h (HWCAP_S390_TE): Add macro
27051         definition.
27053 2012-11-08  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
27055         * elf/elf.h: Update comment before AArch64 relocations.
27057 2012-11-07  David S. Miller  <davem@davemloft.net>
27059         * sysdeps/unix/sysv/linux/sparc/sparc64/__start_context.S: New file.
27060         * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c
27061         (__start_context): Declare.
27062         (__makecontext_ret): Delete.
27063         (__makecontext): Hook up __start_context instead of
27064         __makecontext_ret.
27065         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile
27066         (sysdep_routines): Add __start_context when in stdlib.
27068 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
27070         * sysdeps/x86/Makefile ($(objpfx)tst-xmmymm.out): Pass $(NM),
27071         $(OBJDUMP) and $(READELF) to tst-xmmymm.sh.
27072         * sysdeps/x86/tst-xmmymm.sh (NM): New variable.  Use it instead of
27073         hardcoded "nm".
27074         (OBJDUMP): New variable.  Use it instead of hardcoded "objdump".
27075         (READELF): New variable.  Use it instead of hardcoded "readelf".
27077 2012-11-07  H.J. Lu  <hongjiu.lu@intel.com>
27079         * sysdeps/x86_64/Makefile ($(objpfx)tst-xmmymm.out): Moved to ...
27080         * sysdeps/x86/Makefile: Here.
27081         * sysdeps/x86_64/tst-xmmymm.sh: Renamed to ...
27082         * sysdeps/x86/tst-xmmymm.sh: This.
27084 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
27086         * conform/data/pthread.h-data [XPG3 || XPG4]: Disable all
27087         expectations.
27088         [UNIX98] (pthread_barrier_t): Do not expect.
27089         [UNIX98] (pthread_barrierattr_t): Likewise.
27090         [UNIX98] (pthread_spinlock_t): Likewise.
27091         [UNIX98] (pthread_barrier_destroy): Likewise.
27092         [UNIX98] (pthread_barrier_init): Likewise.
27093         [UNIX98] (pthread_barrier_wait): Likewise.
27094         [UNIX98] (pthread_barrierattr_destroy): Likewise.
27095         [UNIX98] (pthread_barrierattr_getpshared): Likewise.
27096         [UNIX98] (pthread_barrierattr_init): Likewise.
27097         [UNIX98] (pthread_barrierattr_setpshared): Likewise.
27098         [UNIX98] (pthread_getcpuclockid): Likewise.
27099         [UNIX98] (pthread_mutex_timedlock): Likewise.
27100         [UNIX98] (pthread_rwlock_timedrdlock): Likewise.
27101         [UNIX98] (pthread_rwlock_timedwrlock): Likewise.
27102         [UNIX98] (pthread_sigmask): Likewise.
27103         [UNIX98] (pthread_spin_destroy): Likewise.
27104         [UNIX98] (pthread_spin_init): Likewise.
27105         [UNIX98] (pthread_spin_lock): Likewise.
27106         [UNIX98] (pthread_spin_trylock): Likewise.
27107         [UNIX98] (pthread_spin_unlock): Likewise.
27108         * conform/data/sys/types.h-data [XPG3 || XPG4] (pthread_attr_t):
27109         Do not expect.
27110         [XPG3 || XPG4 || UNIX98] (pthread_barrier_t): Likewise.
27111         [XPG3 || XPG4 || UNIX98] (pthread_barrierattr_t): Likewise.
27112         [XPG3 || XPG4] (pthread_cond_t): Likewise.
27113         [XPG3 || XPG4] (pthread_condattr_t): Likewise.
27114         [XPG3 || XPG4] (pthread_key_t): Likewise.
27115         [XPG3 || XPG4] (pthread_mutex_t): Likewise.
27116         [XPG3 || XPG4] (pthread_mutexattr_t): Likewise.
27117         [XPG3 || XPG4] (pthread_once_t): Likewise.
27118         [XPG3 || XPG4] (pthread_rwlock_t): Likewise.
27119         [XPG3 || XPG4] (pthread_rwlockattr_t): Likewise.
27120         [XPG3 || XPG4 || UNIX98] (pthread_spinlock_t): Likewise.
27121         [XPG3 || XPG4] (pthread_t): Likewise.
27123         * conform/data/stdlib.h-data [XPG3 || XPG4 || UNIX98] (setenv): Do
27124         not expect.
27125         [XPG3 || XPG4 || UNIX98] (unsetenv): Likewise.
27127         * conform/data/math.h-data [XPG3 || XPG4 || UNIX98] (isnan):
27128         Change function return type to int.
27130         * conform/data/sys/mman.h-data [!POSIX] (POSIX_MADV_NORMAL):
27131         Change condition to [!POSIX && !XPG3 && !XPG4 && !UNIX98].
27132         [!POSIX] (POSIX_MADV_SEQUENTIAL): Likewise.
27133         [!POSIX] (POSIX_MADV_RANDOM): Likewise.
27134         [!POSIX] (POSIX_MADV_WILLNEED): Likewise.
27135         [!POSIX] (POSIX_MADV_DONTNEED): Likewise.
27136         [!POSIX] (posix_madvise): Likewise.
27137         (POSIX_TYPED_MEM_ALLOCATE): Condition on [!POSIX && !XPG3 && !XPG4
27138         && !UNIX98].
27139         (POSIX_TYPED_MEM_ALLOCATE_CONTIG): Likewise.
27140         (POSIX_TYPED_MEM_MAP_ALLOCATABLE): Likewise.
27141         (mode_t): Likewise.
27142         (posix_mem_offset): Likewise.
27143         (posix_typed_mem_get_info): Likewise.
27144         (posix_typed_mem_open): Likewise.
27146         * conform/data/sys/stat.h-data [!POSIX && !POSIX2008] (mknodat):
27147         Change condition to [XOPEN2K8].
27149         * conform/conformtest.pl: Preprocess allow-header data with -x c
27150         instead of from stdin.
27151         (@headers): Add stdalign.h, stdbool.h and stdnoreturn.h.
27152         * conform/data/complex.h-data [C99-based standards] (cerf): Allow.
27153         [C99-based standards] (cerfc): Likewise.
27154         [C99-based standards] (cexp2): Likewise.
27155         [C99-based standards] (cexpm1): Likewise.
27156         [C99-based standards] (clog10): Likewise.
27157         [C99-based standards] (clog1p): Likewise.
27158         [C99-based standards] (clog2): Likewise.
27159         [C99-based standards] (clgamma): Likewise.
27160         [C99-based standards] (ctgamma): Likewise.
27161         [C99-based standards] (cerff): Likewise.
27162         [C99-based standards] (cerfcf): Likewise.
27163         [C99-based standards] (cexp2f): Likewise.
27164         [C99-based standards] (cexpm1f): Likewise.
27165         [C99-based standards] (clog10f): Likewise.
27166         [C99-based standards] (clog1pf): Likewise.
27167         [C99-based standards] (clog2f): Likewise.
27168         [C99-based standards] (clgammaf): Likewise.
27169         [C99-based standards] (ctgammaf): Likewise.
27170         [C99-based standards] (cerfl): Likewise.
27171         [C99-based standards] (cerfcl): Likewise.
27172         [C99-based standards] (cexp2l): Likewise.
27173         [C99-based standards] (cexpm1l): Likewise.
27174         [C99-based standards] (clog10l): Likewise.
27175         [C99-based standards] (clog1pl): Likewise.
27176         [C99-based standards] (clog2l): Likewise.
27177         [C99-based standards] (clgammal): Likewise.
27178         [C99-based standards] (ctgammal): Likewise.
27179         * conform/data/inttypes.h-data [C99-based standards]: Include
27180         stdint.h-data.  Remove all expectations for stdint.h contents.
27181         [C99-based standards] (PRI*): Do not allow.
27182         [C99-based standards] (SCN*): Likewise.
27183         [C99-based standards] (*_t): Likewise.
27184         [C99-based-standards] (PRId8): Expect macro.
27185         [C99-based-standards] (PRIi8): Likewise.
27186         [C99-based-standards] (PRIo8): Likewise.
27187         [C99-based-standards] (PRIu8): Likewise.
27188         [C99-based-standards] (PRIx8): Likewise.
27189         [C99-based-standards] (PRIX8): Likewise.
27190         [C99-based-standards] (SCNd8): Likewise.
27191         [C99-based-standards] (SCNi8): Likewise.
27192         [C99-based-standards] (SCNo8): Likewise.
27193         [C99-based-standards] (SCNu8): Likewise.
27194         [C99-based-standards] (SCNx8): Likewise.
27195         [C99-based-standards] (PRIdLEAST8): Likewise.
27196         [C99-based-standards] (PRIiLEAST8): Likewise.
27197         [C99-based-standards] (PRIoLEAST8): Likewise.
27198         [C99-based-standards] (PRIuLEAST8): Likewise.
27199         [C99-based-standards] (PRIxLEAST8): Likewise.
27200         [C99-based-standards] (PRIXLEAST8): Likewise.
27201         [C99-based-standards] (SCNdLEAST8): Likewise.
27202         [C99-based-standards] (SCNiLEAST8): Likewise.
27203         [C99-based-standards] (SCNoLEAST8): Likewise.
27204         [C99-based-standards] (SCNuLEAST8): Likewise.
27205         [C99-based-standards] (SCNxLEAST8): Likewise.
27206         [C99-based-standards] (PRIdFAST8): Likewise.
27207         [C99-based-standards] (PRIiFAST8): Likewise.
27208         [C99-based-standards] (PRIoFAST8): Likewise.
27209         [C99-based-standards] (PRIuFAST8): Likewise.
27210         [C99-based-standards] (PRIxFAST8): Likewise.
27211         [C99-based-standards] (PRIXFAST8): Likewise.
27212         [C99-based-standards] (SCNdFAST8): Likewise.
27213         [C99-based-standards] (SCNiFAST8): Likewise.
27214         [C99-based-standards] (SCNoFAST8): Likewise.
27215         [C99-based-standards] (SCNuFAST8): Likewise.
27216         [C99-based-standards] (SCNxFAST8): Likewise.
27217         [C99-based-standards] (PRId16): Likewise.
27218         [C99-based-standards] (PRIi16): Likewise.
27219         [C99-based-standards] (PRIo16): Likewise.
27220         [C99-based-standards] (PRIu16): Likewise.
27221         [C99-based-standards] (PRIx16): Likewise.
27222         [C99-based-standards] (PRIX16): Likewise.
27223         [C99-based-standards] (SCNd16): Likewise.
27224         [C99-based-standards] (SCNi16): Likewise.
27225         [C99-based-standards] (SCNo16): Likewise.
27226         [C99-based-standards] (SCNu16): Likewise.
27227         [C99-based-standards] (SCNx16): Likewise.
27228         [C99-based-standards] (PRIdLEAST16): Likewise.
27229         [C99-based-standards] (PRIiLEAST16): Likewise.
27230         [C99-based-standards] (PRIoLEAST16): Likewise.
27231         [C99-based-standards] (PRIuLEAST16): Likewise.
27232         [C99-based-standards] (PRIxLEAST16): Likewise.
27233         [C99-based-standards] (PRIXLEAST16): Likewise.
27234         [C99-based-standards] (SCNdLEAST16): Likewise.
27235         [C99-based-standards] (SCNiLEAST16): Likewise.
27236         [C99-based-standards] (SCNoLEAST16): Likewise.
27237         [C99-based-standards] (SCNuLEAST16): Likewise.
27238         [C99-based-standards] (SCNxLEAST16): Likewise.
27239         [C99-based-standards] (PRIdFAST16): Likewise.
27240         [C99-based-standards] (PRIiFAST16): Likewise.
27241         [C99-based-standards] (PRIoFAST16): Likewise.
27242         [C99-based-standards] (PRIuFAST16): Likewise.
27243         [C99-based-standards] (PRIxFAST16): Likewise.
27244         [C99-based-standards] (PRIXFAST16): Likewise.
27245         [C99-based-standards] (SCNdFAST16): Likewise.
27246         [C99-based-standards] (SCNiFAST16): Likewise.
27247         [C99-based-standards] (SCNoFAST16): Likewise.
27248         [C99-based-standards] (SCNuFAST16): Likewise.
27249         [C99-based-standards] (SCNxFAST16): Likewise.
27250         [C99-based-standards] (PRId32): Likewise.
27251         [C99-based-standards] (PRIi32): Likewise.
27252         [C99-based-standards] (PRIo32): Likewise.
27253         [C99-based-standards] (PRIu32): Likewise.
27254         [C99-based-standards] (PRIx32): Likewise.
27255         [C99-based-standards] (PRIX32): Likewise.
27256         [C99-based-standards] (SCNd32): Likewise.
27257         [C99-based-standards] (SCNi32): Likewise.
27258         [C99-based-standards] (SCNo32): Likewise.
27259         [C99-based-standards] (SCNu32): Likewise.
27260         [C99-based-standards] (SCNx32): Likewise.
27261         [C99-based-standards] (PRIdLEAST32): Likewise.
27262         [C99-based-standards] (PRIiLEAST32): Likewise.
27263         [C99-based-standards] (PRIoLEAST32): Likewise.
27264         [C99-based-standards] (PRIuLEAST32): Likewise.
27265         [C99-based-standards] (PRIxLEAST32): Likewise.
27266         [C99-based-standards] (PRIXLEAST32): Likewise.
27267         [C99-based-standards] (SCNdLEAST32): Likewise.
27268         [C99-based-standards] (SCNiLEAST32): Likewise.
27269         [C99-based-standards] (SCNoLEAST32): Likewise.
27270         [C99-based-standards] (SCNuLEAST32): Likewise.
27271         [C99-based-standards] (SCNxLEAST32): Likewise.
27272         [C99-based-standards] (PRIdFAST32): Likewise.
27273         [C99-based-standards] (PRIiFAST32): Likewise.
27274         [C99-based-standards] (PRIoFAST32): Likewise.
27275         [C99-based-standards] (PRIuFAST32): Likewise.
27276         [C99-based-standards] (PRIxFAST32): Likewise.
27277         [C99-based-standards] (PRIXFAST32): Likewise.
27278         [C99-based-standards] (SCNdFAST32): Likewise.
27279         [C99-based-standards] (SCNiFAST32): Likewise.
27280         [C99-based-standards] (SCNoFAST32): Likewise.
27281         [C99-based-standards] (SCNuFAST32): Likewise.
27282         [C99-based-standards] (SCNxFAST32): Likewise.
27283         [C99-based-standards] (PRId64): Likewise.
27284         [C99-based-standards] (PRIi64): Likewise.
27285         [C99-based-standards] (PRIo64): Likewise.
27286         [C99-based-standards] (PRIu64): Likewise.
27287         [C99-based-standards] (PRIx64): Likewise.
27288         [C99-based-standards] (PRIX64): Likewise.
27289         [C99-based-standards] (SCNd64): Likewise.
27290         [C99-based-standards] (SCNi64): Likewise.
27291         [C99-based-standards] (SCNo64): Likewise.
27292         [C99-based-standards] (SCNu64): Likewise.
27293         [C99-based-standards] (SCNx64): Likewise.
27294         [C99-based-standards] (PRIdLEAST64): Likewise.
27295         [C99-based-standards] (PRIiLEAST64): Likewise.
27296         [C99-based-standards] (PRIoLEAST64): Likewise.
27297         [C99-based-standards] (PRIuLEAST64): Likewise.
27298         [C99-based-standards] (PRIxLEAST64): Likewise.
27299         [C99-based-standards] (PRIXLEAST64): Likewise.
27300         [C99-based-standards] (SCNdLEAST64): Likewise.
27301         [C99-based-standards] (SCNiLEAST64): Likewise.
27302         [C99-based-standards] (SCNoLEAST64): Likewise.
27303         [C99-based-standards] (SCNuLEAST64): Likewise.
27304         [C99-based-standards] (SCNxLEAST64): Likewise.
27305         [C99-based-standards] (PRIdFAST64): Likewise.
27306         [C99-based-standards] (PRIiFAST64): Likewise.
27307         [C99-based-standards] (PRIoFAST64): Likewise.
27308         [C99-based-standards] (PRIuFAST64): Likewise.
27309         [C99-based-standards] (PRIxFAST64): Likewise.
27310         [C99-based-standards] (PRIXFAST64): Likewise.
27311         [C99-based-standards] (SCNdFAST64): Likewise.
27312         [C99-based-standards] (SCNiFAST64): Likewise.
27313         [C99-based-standards] (SCNoFAST64): Likewise.
27314         [C99-based-standards] (SCNuFAST64): Likewise.
27315         [C99-based-standards] (SCNxFAST64): Likewise.
27316         [C99-based-standards] (PRIdMAX): Likewise.
27317         [C99-based-standards] (PRIiMAX): Likewise.
27318         [C99-based-standards] (PRIoMAX): Likewise.
27319         [C99-based-standards] (PRIuMAX): Likewise.
27320         [C99-based-standards] (PRIxMAX): Likewise.
27321         [C99-based-standards] (PRIXMAX): Likewise.
27322         [C99-based-standards] (SCNdMAX): Likewise.
27323         [C99-based-standards] (SCNiMAX): Likewise.
27324         [C99-based-standards] (SCNoMAX): Likewise.
27325         [C99-based-standards] (SCNuMAX): Likewise.
27326         [C99-based-standards] (SCNxMAX): Likewise.
27327         [C99-based-standards] (PRIdPTR): Likewise.
27328         [C99-based-standards] (PRIiPTR): Likewise.
27329         [C99-based-standards] (PRIoPTR): Likewise.
27330         [C99-based-standards] (PRIuPTR): Likewise.
27331         [C99-based-standards] (PRIxPTR): Likewise.
27332         [C99-based-standards] (PRIXPTR): Likewise.
27333         [C99-based-standards] (SCNdPTR): Likewise.
27334         [C99-based-standards] (SCNiPTR): Likewise.
27335         [C99-based-standards] (SCNoPTR): Likewise.
27336         [C99-based-standards] (SCNuPTR): Likewise.
27337         [C99-based-standards] (SCNxPTR): Likewise.
27338         * conform/data/iso646.h-data [ISO C standards] (*_t): Do not
27339         allow.
27340         * conform/data/stdint.h-data: Update comments to clarify
27341         requirements.
27342         [C99-based standards] (INT8_MIN): Use macro-int-constant.  Specify
27343         type.
27344         [C99-based standards] (INT8_MAX): Likewise.
27345         [C99-based standards] (INT16_MIN): Likewise.
27346         [C99-based standards] (INT16_MAX): Likewise.
27347         [C99-based standards] (INT32_MIN): Likewise.
27348         [C99-based standards] (INT32_MAX): Likewise.
27349         [C99-based standards] (INT64_MIN): Likewise.
27350         [C99-based standards] (INT64_MAX): Likewise.
27351         [C99-based standards] (UINT8_MAX): Likewise.
27352         [C99-based standards] (UINT16_MAX): Likewise.
27353         [C99-based standards] (UINT32_MAX): Likewise.
27354         [C99-based standards] (UINT64_MAX): Likewise.
27355         [C99-based standards] (INT_LEAST8_MIN): Likewise.
27356         [C99-based standards] (INT_LEAST8_MAX): Likewise.
27357         [C99-based standards] (INT_LEAST16_MIN): Likewise.
27358         [C99-based standards] (INT_LEAST16_MAX): Likewise.
27359         [C99-based standards] (INT_LEAST32_MIN): Likewise.
27360         [C99-based standards] (INT_LEAST32_MAX): Likewise.
27361         [C99-based standards] (INT_LEAST64_MIN): Likewise.
27362         [C99-based standards] (INT_LEAST64_MAX): Likewise.
27363         [C99-based standards] (UINT_LEAST8_MAX): Likewise.
27364         [C99-based standards] (UINT_LEAST16_MAX): Likewise.
27365         [C99-based standards] (UINT_LEAST32_MAX): Likewise.
27366         [C99-based standards] (UINT_LEAST64_MAX): Likewise.
27367         [C99-based standards] (INT_FAST8_MIN): Likewise.
27368         [C99-based standards] (INT_FAST8_MAX): Likewise.
27369         [C99-based standards] (INT_FAST16_MIN): Likewise.
27370         [C99-based standards] (INT_FAST16_MAX): Likewise.
27371         [C99-based standards] (INT_FAST32_MIN): Likewise.
27372         [C99-based standards] (INT_FAST32_MAX): Likewise.
27373         [C99-based standards] (INT_FAST64_MIN): Likewise.
27374         [C99-based standards] (INT_FAST64_MAX): Likewise.
27375         [C99-based standards] (UINT_FAST8_MAX): Likewise.
27376         [C99-based standards] (UINT_FAST16_MAX): Likewise.
27377         [C99-based standards] (UINT_FAST32_MAX): Likewise.
27378         [C99-based standards] (UINT_FAST64_MAX): Likewise.
27379         [C99-based standards] (INTPTR_MIN): Likewise.
27380         [C99-based standards] (INTPTR_MAX): Likewise.
27381         [C99-based standards] (UINTPTR_MAX): Likewise.
27382         [C99-based standards] (INTMAX_MIN): Likewise.
27383         [C99-based standards] (INTMAX_MAX): Likewise.
27384         [C99-based standards] (UINTMAX_MAX): Likewise.
27385         [C99-based standards] (PTRDIFF_MIN): Likewise.
27386         [C99-based standards] (PTRDIFF_MAX): Likewise.
27387         [C99-based standards] (SIG_ATOMIC_MAX): Likewise.
27388         [C99-based standards] (SIZE_MAX): Likewise.
27389         [C99-based standards] (WCHAR_MAX): Likewise.
27390         [C99-based standards] (WINT_MAX): Likewise.
27391         [C99-based standards] (SIG_ATOMIC_MIN): Likewise.  Do not specify
27392         constraint on value.
27393         [C99-based standards] (WCHAR_MIN): Likewise.
27394         [C99-based standards] (WINT_MIN): Likewise.
27395         [C99-based standards] (*_t): Allow.
27396         * conform/data/tgmath.h-data [XOPEN2K || POSIX2008]: Change
27397         condition to [!ISO && !POSIX && !XPG3 && !XPG4 && !UNIX98].
27398         Include math.h-data and complex.h-data.  Remove all expectations
27399         of math.h and complex.h contents.
27400         * conform/data/uchar.h-data [ISO11] (c16rtomb): Remove stray "16"
27401         at end of line.
27402         * conform/data/wchar.h-data [!ISO && !POSIX && !XPG3 && !XPG4]
27403         (struct tm): Expect tag.
27404         [C99-based-standards] (wcstof): Expect function.
27405         [C99-based-standards] (wcstold): Likewise.
27406         [C99-based-standards] (wcstoll): Likewise.
27407         [C99-based-standards] (wcstoull): Likewise.
27408         [!ISO && !POSIX && !XPG3 && !XPG4] (WCHAR_MIN): Use
27409         macro-int-constant.  Specify type.
27410         [!ISO && !POSIX && !XPG3 && !XPG4] (WCHAR_MAX): Likewise.  Specify
27411         constraint on value.
27412         [!ISO && !POSIX && !XPG3 && !XPG4] (WEOF): Use macro-constant.
27413         Specify type.
27414         [!ISO && !POSIX && !XPG3 && !XPG4] (NULL): Use macro-constant.
27415         Specify value.
27416         [ISO C standards]: Do not allow headers.
27417         [!ISO && !POSIX && !XPG3 && !XPG4] (wcs*): Change to
27418         wcs[abcdefghijklmnopqrstuvwxyz]*.
27419         [ISO C standards] (*_t): Do not allow.
27420         * conform/data/wctype.h-data [C99-based standards] (iswblank):
27421         Expect function.
27422         [XOPEN2K8 || POSIX2008] (iswblank_l): Likewise.
27423         [!ISO && !POSIX && !XPG3 && !XPG4] (WEOF): Use macro-constant.
27424         Specify type.
27425         [ISO C standards]: Do not allow headers.
27426         [!ISO && !POSIX && !XPG3 && !XPG4] (is*): Change to
27427         is[abcdefghijklmnopqrstuvwxyz]*.
27428         [!ISO && !POSIX && !XPG3 && !XPG4] (to*): Change to
27429         to[abcdefghijklmnopqrstuvwxyz]*.
27430         [ISO C standards] (*_t): Do not allow.
27431         * conform/data/stdalign.h-data: New file.
27432         * conform/data/stdbool.h-data: Likewise.
27433         * conform/data/stdnoreturn.h-data: Likewise.
27435 2012-11-07  Roland McGrath  <roland@hack.frob.com>
27437         [BZ #14815]
27438         * manual/filesys.texi (Directory Entries): Typo fix.
27439         Reported by <h-iwamoto@kit.hi-ho.ne.jp>.
27441 2012-11-07  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
27443         * elf/elf.h (EM_AARCH64): New macro.
27444         (R_AARCH64_NONE, R_AARCH64_ABS64, R_AARCH64_ABS32): Likewise.
27445         (R_AARCH64_COPY, R_AARCH64_GLOB_DAT, R_AARCH64_JUMP_SLOT): Likewise.
27446         (R_AARCH64_RELATIVE, R_AARCH64_TLS_DTPMOD64): Likewise.
27447         (R_AARCH64_TLS_DTPREL64, R_AARCH64_TLS_TPREL64): Likewise.
27448         (R_AARCH64_TLSDESC): Likewise.
27449         (NT_ARM_TLS): Likewise.
27450         (NT_ARM_HW_BREAK): Likewise.
27451         (NT_ARM_HW_WATCH): Likewise.
27453 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
27455         [BZ #14811]
27456         * sysdeps/i386/fpu/e_powl.S (pm79): New object.
27457         (__ieee754_powl): Saturate nonzero exponents with absolute value
27458         below 0x1p-79 to +/- 0x1p-79.
27459         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Saturate nonzero
27460         exponents with absolute value below 0x1p-64 to +/- 0x1p-64.
27461         * sysdeps/ieee754/flt-32/e_powf.c (__ieee754_powf): Saturate
27462         nonzero exponents with absolute value below 0x1p-32 to +/-
27463         0x1p-32.
27464         * sysdeps/x86_64/fpu/e_powl.S (pm79): New object.
27465         (__ieee754_powl): Saturate nonzero exponents with absolute value
27466         below 0x1p-79 to +/- 0x1p-79.
27467         * math/libm-test.inc (pow_test): Add more tests.
27469 2012-11-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
27471         * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Sync
27472         _dl_s390_cap_flags with kernel. Increase string length.
27473         (_dl_s390_platforms): Add z196 and zEC12.
27475 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
27477         * conform/data/time.h-data [!XOPEN21K && !XOPEN2K8 && !POSIX2008]:
27478         Change XOPEN21K to XOPEN2K.
27480 2012-11-06  Maxim Kuvyrkov  <maxim@codesourcery.com>
27482         * string/memmove.c: Use memcpy when possible.
27484 2012-11-06  Andreas Jaeger  <aj@suse.de>
27486         * po/eo.po: Update from translation team.
27488 2012-11-06  Joseph Myers  <joseph@codesourcery.com>
27490         [BZ #14793]
27491         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): In case of large z
27492         exponent and small x and y exponents, scale x or y up.  Increase
27493         by 2 the exponent used in scaling up.
27494         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
27495         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
27496         * math/libm-test.inc (fma_test): Add more tests.
27497         (fma_test_towardzero): Likewise.
27498         (fma_test_downward): Likewise.
27499         (fma_test_upward): Likewise.
27501 2012-11-05  Joseph Myers  <joseph@codesourcery.com>
27503         [BZ #14805]
27504         * sysdeps/sh/sh4/fpu/bits/fenv.h (FE_DFL_ENV): Use cast to const
27505         fenv_t *.
27507         [BZ #14801]
27508         * sysdeps/s390/fpu/bits/fenv.h (fenv_t): Use implementation
27509         namespace for names of struct fields.
27510         * sysdeps/s390/fpu/fegetenv.c (fegetenv): Update references to
27511         fenv_t fields.
27512         * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Likewise.
27513         * sysdeps/s390/fpu/fesetenv.c (fesetenv): Likewise.
27515 2012-11-04  Samuel Thibault  <samuel.thibault@ens-lyon.org>
27517         [BZ #3665]
27518         * sysdeps/mach/hurd/bits/errno.h: Regenerated.
27520 2012-11-04  Thomas Schwinge  <thomas@codesourcery.com>
27522         * csu/libc-start.c (LIBC_START_MAIN): Conditionalize use of
27523         PTR_DEMANGLE.
27525         [BZ #5246]
27526         * sysdeps/mach/hurd/i386/____longjmp_chk.S: Conditionalize use of
27527         PTR_DEMANGLE.
27529 2012-11-04  Joseph Myers  <joseph@codesourcery.com>
27531         [BZ #14797]
27532         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Compute cases that
27533         definitely overflow as x * y not x * y + z.
27534         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
27535         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
27536         * math/libm-test.inc (fma_test): Add more tests.
27537         (fma_test_towardzero): Likewise.
27538         (fma_test_downward): Likewise.
27539         (fma_test_upward): Likewise.
27541 2012-11-04  Thomas Schwinge  <thomas@codesourcery.com>
27543         [BZ #157]
27545         * include/stub-tag.h: Remove file.
27546         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Don't emit
27547         '#include' of it.
27548         * manual/maint.texi (Porting): Don't reference it.
27549         * Makerules ($(objpfx)stubs): Likewise.
27550         * dirent/closedir.c: Don't include <stub-tag.h>.
27551         * dirent/dirfd.c: Likewise.
27552         * dirent/fdopendir.c: Likewise.
27553         * dirent/getdents.c: Likewise.
27554         * dirent/getdents64.c: Likewise.
27555         * dirent/opendir.c: Likewise.
27556         * dirent/readdir.c: Likewise.
27557         * dirent/readdir64.c: Likewise.
27558         * dirent/readdir64_r.c: Likewise.
27559         * dirent/readdir_r.c: Likewise.
27560         * dirent/rewinddir.c: Likewise.
27561         * dirent/seekdir.c: Likewise.
27562         * dirent/telldir.c: Likewise.
27563         * gmon/profil.c: Likewise.
27564         * grp/setgroups.c: Likewise.
27565         * inet/if_index.c: Likewise.
27566         * io/access.c: Likewise.
27567         * io/chdir.c: Likewise.
27568         * io/chmod.c: Likewise.
27569         * io/chown.c: Likewise.
27570         * io/close.c: Likewise.
27571         * io/dup.c: Likewise.
27572         * io/dup2.c: Likewise.
27573         * io/dup3.c: Likewise.
27574         * io/euidaccess.c: Likewise.
27575         * io/faccessat.c: Likewise.
27576         * io/fchdir.c: Likewise.
27577         * io/fchmod.c: Likewise.
27578         * io/fchmodat.c: Likewise.
27579         * io/fchown.c: Likewise.
27580         * io/fchownat.c: Likewise.
27581         * io/fcntl.c: Likewise.
27582         * io/flock.c: Likewise.
27583         * io/fstatfs.c: Likewise.
27584         * io/fstatfs64.c: Likewise.
27585         * io/fstatvfs.c: Likewise.
27586         * io/fstatvfs64.c: Likewise.
27587         * io/futimens.c: Likewise.
27588         * io/fxstat.c: Likewise.
27589         * io/fxstat64.c: Likewise.
27590         * io/fxstatat.c: Likewise.
27591         * io/fxstatat64.c: Likewise.
27592         * io/getcwd.c: Likewise.
27593         * io/isatty.c: Likewise.
27594         * io/lchmod.c: Likewise.
27595         * io/lchown.c: Likewise.
27596         * io/link.c: Likewise.
27597         * io/linkat.c: Likewise.
27598         * io/lseek.c: Likewise.
27599         * io/lseek64.c: Likewise.
27600         * io/lxstat64.c: Likewise.
27601         * io/mkdir.c: Likewise.
27602         * io/mkdirat.c: Likewise.
27603         * io/mkfifo.c: Likewise.
27604         * io/mkfifoat.c: Likewise.
27605         * io/open.c: Likewise.
27606         * io/open64.c: Likewise.
27607         * io/openat.c: Likewise.
27608         * io/openat64.c: Likewise.
27609         * io/pipe.c: Likewise.
27610         * io/pipe2.c: Likewise.
27611         * io/poll.c: Likewise.
27612         * io/posix_fadvise.c: Likewise.
27613         * io/posix_fadvise64.c: Likewise.
27614         * io/posix_fallocate.c: Likewise.
27615         * io/posix_fallocate64.c: Likewise.
27616         * io/read.c: Likewise.
27617         * io/readlink.c: Likewise.
27618         * io/readlinkat.c: Likewise.
27619         * io/rmdir.c: Likewise.
27620         * io/sendfile.c: Likewise.
27621         * io/sendfile64.c: Likewise.
27622         * io/statfs.c: Likewise.
27623         * io/statfs64.c: Likewise.
27624         * io/statvfs.c: Likewise.
27625         * io/statvfs64.c: Likewise.
27626         * io/symlink.c: Likewise.
27627         * io/symlinkat.c: Likewise.
27628         * io/ttyname.c: Likewise.
27629         * io/ttyname_r.c: Likewise.
27630         * io/umask.c: Likewise.
27631         * io/unlink.c: Likewise.
27632         * io/unlinkat.c: Likewise.
27633         * io/utime.c: Likewise.
27634         * io/utimensat.c: Likewise.
27635         * io/write.c: Likewise.
27636         * io/xmknod.c: Likewise.
27637         * io/xmknodat.c: Likewise.
27638         * io/xstat.c: Likewise.
27639         * io/xstat64.c: Likewise.
27640         * login/getpt.c: Likewise.
27641         * login/grantpt.c: Likewise.
27642         * login/unlockpt.c: Likewise.
27643         * math/e_acoshl.c: Likewise.
27644         * math/e_acosl.c: Likewise.
27645         * math/e_asinl.c: Likewise.
27646         * math/e_atan2l.c: Likewise.
27647         * math/e_atanhl.c: Likewise.
27648         * math/e_coshl.c: Likewise.
27649         * math/e_expl.c: Likewise.
27650         * math/e_fmodl.c: Likewise.
27651         * math/e_gammal_r.c: Likewise.
27652         * math/e_hypotl.c: Likewise.
27653         * math/e_j0l.c: Likewise.
27654         * math/e_j1l.c: Likewise.
27655         * math/e_jnl.c: Likewise.
27656         * math/e_lgammal_r.c: Likewise.
27657         * math/e_log10l.c: Likewise.
27658         * math/e_log2l.c: Likewise.
27659         * math/e_logl.c: Likewise.
27660         * math/e_powl.c: Likewise.
27661         * math/e_rem_pio2l.c: Likewise.
27662         * math/e_sinhl.c: Likewise.
27663         * math/e_sqrtl.c: Likewise.
27664         * math/fclrexcpt.c: Likewise.
27665         * math/fedisblxcpt.c: Likewise.
27666         * math/feenablxcpt.c: Likewise.
27667         * math/fegetenv.c: Likewise.
27668         * math/fegetexcept.c: Likewise.
27669         * math/fegetround.c: Likewise.
27670         * math/feholdexcpt.c: Likewise.
27671         * math/fesetenv.c: Likewise.
27672         * math/fesetround.c: Likewise.
27673         * math/feupdateenv.c: Likewise.
27674         * math/fgetexcptflg.c: Likewise.
27675         * math/fraiseexcpt.c: Likewise.
27676         * math/fsetexcptflg.c: Likewise.
27677         * math/ftestexcept.c: Likewise.
27678         * math/k_cosl.c: Likewise.
27679         * math/k_rem_pio2l.c: Likewise.
27680         * math/k_sinl.c: Likewise.
27681         * math/k_tanl.c: Likewise.
27682         * math/s_asinhl.c: Likewise.
27683         * math/s_atanl.c: Likewise.
27684         * math/s_cbrtl.c: Likewise.
27685         * math/s_erfl.c: Likewise.
27686         * math/s_expm1l.c: Likewise.
27687         * math/s_log1pl.c: Likewise.
27688         * math/s_tanhl.c: Likewise.
27689         * misc/acct.c: Likewise.
27690         * misc/brk.c: Likewise.
27691         * misc/chflags.c: Likewise.
27692         * misc/chroot.c: Likewise.
27693         * misc/fchflags.c: Likewise.
27694         * misc/fgetxattr.c: Likewise.
27695         * misc/flistxattr.c: Likewise.
27696         * misc/fremovexattr.c: Likewise.
27697         * misc/fsetxattr.c: Likewise.
27698         * misc/fsync.c: Likewise.
27699         * misc/ftruncate.c: Likewise.
27700         * misc/futimes.c: Likewise.
27701         * misc/futimesat.c: Likewise.
27702         * misc/getdomain.c: Likewise.
27703         * misc/getdtsz.c: Likewise.
27704         * misc/gethostid.c: Likewise.
27705         * misc/gethostname.c: Likewise.
27706         * misc/getloadavg.c: Likewise.
27707         * misc/getpagesize.c: Likewise.
27708         * misc/getsysstats.c: Likewise.
27709         * misc/getxattr.c: Likewise.
27710         * misc/gtty.c: Likewise.
27711         * misc/ioctl.c: Likewise.
27712         * misc/lgetxattr.c: Likewise.
27713         * misc/listxattr.c: Likewise.
27714         * misc/llistxattr.c: Likewise.
27715         * misc/lremovexattr.c: Likewise.
27716         * misc/lsetxattr.c: Likewise.
27717         * misc/lutimes.c: Likewise.
27718         * misc/madvise.c: Likewise.
27719         * misc/mincore.c: Likewise.
27720         * misc/mlock.c: Likewise.
27721         * misc/mlockall.c: Likewise.
27722         * misc/mmap.c: Likewise.
27723         * misc/mprotect.c: Likewise.
27724         * misc/msync.c: Likewise.
27725         * misc/munlock.c: Likewise.
27726         * misc/munlockall.c: Likewise.
27727         * misc/munmap.c: Likewise.
27728         * misc/preadv.c: Likewise.
27729         * misc/preadv64.c: Likewise.
27730         * misc/ptrace.c: Likewise.
27731         * misc/pwritev.c: Likewise.
27732         * misc/pwritev64.c: Likewise.
27733         * misc/readv.c: Likewise.
27734         * misc/reboot.c: Likewise.
27735         * misc/remap_file_pages.c: Likewise.
27736         * misc/removexattr.c: Likewise.
27737         * misc/revoke.c: Likewise.
27738         * misc/select.c: Likewise.
27739         * misc/setdomain.c: Likewise.
27740         * misc/setegid.c: Likewise.
27741         * misc/seteuid.c: Likewise.
27742         * misc/sethostid.c: Likewise.
27743         * misc/sethostname.c: Likewise.
27744         * misc/setregid.c: Likewise.
27745         * misc/setreuid.c: Likewise.
27746         * misc/setxattr.c: Likewise.
27747         * misc/sstk.c: Likewise.
27748         * misc/stty.c: Likewise.
27749         * misc/swapoff.c: Likewise.
27750         * misc/swapon.c: Likewise.
27751         * misc/sync.c: Likewise.
27752         * misc/syncfs.c: Likewise.
27753         * misc/syscall.c: Likewise.
27754         * misc/truncate.c: Likewise.
27755         * misc/ualarm.c: Likewise.
27756         * misc/usleep.c: Likewise.
27757         * misc/ustat.c: Likewise.
27758         * misc/utimes.c: Likewise.
27759         * misc/vhangup.c: Likewise.
27760         * misc/writev.c: Likewise.
27761         * posix/_exit.c: Likewise.
27762         * posix/alarm.c: Likewise.
27763         * posix/execve.c: Likewise.
27764         * posix/fexecve.c: Likewise.
27765         * posix/fork.c: Likewise.
27766         * posix/fpathconf.c: Likewise.
27767         * posix/getaddrinfo.c: Likewise.
27768         * posix/getegid.c: Likewise.
27769         * posix/geteuid.c: Likewise.
27770         * posix/getgid.c: Likewise.
27771         * posix/getgroups.c: Likewise.
27772         * posix/getlogin.c: Likewise.
27773         * posix/getlogin_r.c: Likewise.
27774         * posix/getpgid.c: Likewise.
27775         * posix/getpid.c: Likewise.
27776         * posix/getppid.c: Likewise.
27777         * posix/getresgid.c: Likewise.
27778         * posix/getresuid.c: Likewise.
27779         * posix/getsid.c: Likewise.
27780         * posix/getuid.c: Likewise.
27781         * posix/glob64.c: Likewise.
27782         * posix/nanosleep.c: Likewise.
27783         * posix/pathconf.c: Likewise.
27784         * posix/pause.c: Likewise.
27785         * posix/posix_madvise.c: Likewise.
27786         * posix/pread.c: Likewise.
27787         * posix/pread64.c: Likewise.
27788         * posix/pwrite.c: Likewise.
27789         * posix/pwrite64.c: Likewise.
27790         * posix/sched_getaffinity.c: Likewise.
27791         * posix/sched_getp.c: Likewise.
27792         * posix/sched_gets.c: Likewise.
27793         * posix/sched_primax.c: Likewise.
27794         * posix/sched_primin.c: Likewise.
27795         * posix/sched_rr_gi.c: Likewise.
27796         * posix/sched_setaffinity.c: Likewise.
27797         * posix/sched_setp.c: Likewise.
27798         * posix/sched_sets.c: Likewise.
27799         * posix/sched_yield.c: Likewise.
27800         * posix/setgid.c: Likewise.
27801         * posix/setlogin.c: Likewise.
27802         * posix/setpgid.c: Likewise.
27803         * posix/setresgid.c: Likewise.
27804         * posix/setresuid.c: Likewise.
27805         * posix/setsid.c: Likewise.
27806         * posix/setuid.c: Likewise.
27807         * posix/sleep.c: Likewise.
27808         * posix/spawni.c: Likewise.
27809         * posix/sysconf.c: Likewise.
27810         * posix/times.c: Likewise.
27811         * posix/wait.c: Likewise.
27812         * posix/wait3.c: Likewise.
27813         * posix/wait4.c: Likewise.
27814         * posix/waitpid.c: Likewise.
27815         * resolv/gai_sigqueue.c: Likewise.
27816         * resource/getpriority.c: Likewise.
27817         * resource/getrlimit.c: Likewise.
27818         * resource/getrusage.c: Likewise.
27819         * resource/nice.c: Likewise.
27820         * resource/setpriority.c: Likewise.
27821         * resource/setrlimit.c: Likewise.
27822         * resource/ulimit.c: Likewise.
27823         * rt/aio_cancel.c: Likewise.
27824         * rt/aio_fsync.c: Likewise.
27825         * rt/aio_read.c: Likewise.
27826         * rt/aio_sigqueue.c: Likewise.
27827         * rt/aio_suspend.c: Likewise.
27828         * rt/aio_write.c: Likewise.
27829         * rt/clock_getres.c: Likewise.
27830         * rt/clock_gettime.c: Likewise.
27831         * rt/clock_nanosleep.c: Likewise.
27832         * rt/clock_settime.c: Likewise.
27833         * rt/lio_listio.c: Likewise.
27834         * rt/mq_close.c: Likewise.
27835         * rt/mq_getattr.c: Likewise.
27836         * rt/mq_notify.c: Likewise.
27837         * rt/mq_open.c: Likewise.
27838         * rt/mq_receive.c: Likewise.
27839         * rt/mq_send.c: Likewise.
27840         * rt/mq_setattr.c: Likewise.
27841         * rt/mq_timedreceive.c: Likewise.
27842         * rt/mq_timedsend.c: Likewise.
27843         * rt/mq_unlink.c: Likewise.
27844         * rt/shm_open.c: Likewise.
27845         * rt/shm_unlink.c: Likewise.
27846         * rt/timer_create.c: Likewise.
27847         * rt/timer_delete.c: Likewise.
27848         * rt/timer_getoverr.c: Likewise.
27849         * rt/timer_gettime.c: Likewise.
27850         * rt/timer_settime.c: Likewise.
27851         * setjmp/__longjmp.c: Likewise.
27852         * setjmp/setjmp.c: Likewise.
27853         * signal/kill.c: Likewise.
27854         * signal/killpg.c: Likewise.
27855         * signal/raise.c: Likewise.
27856         * signal/sigaction.c: Likewise.
27857         * signal/sigaltstack.c: Likewise.
27858         * signal/sigblock.c: Likewise.
27859         * signal/sigignore.c: Likewise.
27860         * signal/sigintr.c: Likewise.
27861         * signal/signal.c: Likewise.
27862         * signal/sigpause.c: Likewise.
27863         * signal/sigpending.c: Likewise.
27864         * signal/sigqueue.c: Likewise.
27865         * signal/sigreturn.c: Likewise.
27866         * signal/sigset.c: Likewise.
27867         * signal/sigsetmask.c: Likewise.
27868         * signal/sigstack.c: Likewise.
27869         * signal/sigsuspend.c: Likewise.
27870         * signal/sigtimedwait.c: Likewise.
27871         * signal/sigvec.c: Likewise.
27872         * signal/sigwait.c: Likewise.
27873         * signal/sigwaitinfo.c: Likewise.
27874         * signal/sysv_signal.c: Likewise.
27875         * socket/accept.c: Likewise.
27876         * socket/accept4.c: Likewise.
27877         * socket/bind.c: Likewise.
27878         * socket/connect.c: Likewise.
27879         * socket/getpeername.c: Likewise.
27880         * socket/getsockname.c: Likewise.
27881         * socket/getsockopt.c: Likewise.
27882         * socket/isfdtype.c: Likewise.
27883         * socket/listen.c: Likewise.
27884         * socket/recv.c: Likewise.
27885         * socket/recvfrom.c: Likewise.
27886         * socket/recvmsg.c: Likewise.
27887         * socket/send.c: Likewise.
27888         * socket/sendmsg.c: Likewise.
27889         * socket/sendto.c: Likewise.
27890         * socket/setsockopt.c: Likewise.
27891         * socket/shutdown.c: Likewise.
27892         * socket/sockatmark.c: Likewise.
27893         * socket/socket.c: Likewise.
27894         * socket/socketpair.c: Likewise.
27895         * stdio-common/ctermid.c: Likewise.
27896         * stdio-common/cuserid.c: Likewise.
27897         * stdio-common/remove.c: Likewise.
27898         * stdio-common/rename.c: Likewise.
27899         * stdio-common/renameat.c: Likewise.
27900         * stdio-common/tempname.c: Likewise.
27901         * stdlib/getcontext.c: Likewise.
27902         * stdlib/makecontext.c: Likewise.
27903         * stdlib/setcontext.c: Likewise.
27904         * stdlib/swapcontext.c: Likewise.
27905         * stdlib/system.c: Likewise.
27906         * streams/fattach.c: Likewise.
27907         * streams/fdetach.c: Likewise.
27908         * streams/getmsg.c: Likewise.
27909         * streams/getpmsg.c: Likewise.
27910         * streams/putmsg.c: Likewise.
27911         * streams/putpmsg.c: Likewise.
27912         * sysdeps/unix/bsd/getpt.c: Likewise.
27913         * sysdeps/unix/sysv/linux/epoll_pwait.c: Likewise.
27914         * sysdeps/unix/sysv/linux/futimens.c: Likewise.
27915         * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
27916         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c:
27917         Likewise.
27918         * sysdeps/unix/sysv/linux/readahead.c: Likewise.
27919         * sysdeps/unix/sysv/linux/sync_file_range.c: Likewise.
27920         * sysdeps/unix/sysv/linux/utimensat.c: Likewise.
27921         * sysvipc/msgctl.c: Likewise.
27922         * sysvipc/msgget.c: Likewise.
27923         * sysvipc/msgrcv.c: Likewise.
27924         * sysvipc/msgsnd.c: Likewise.
27925         * sysvipc/semctl.c: Likewise.
27926         * sysvipc/semget.c: Likewise.
27927         * sysvipc/semop.c: Likewise.
27928         * sysvipc/semtimedop.c: Likewise.
27929         * sysvipc/shmat.c: Likewise.
27930         * sysvipc/shmctl.c: Likewise.
27931         * sysvipc/shmdt.c: Likewise.
27932         * sysvipc/shmget.c: Likewise.
27933         * termios/tcdrain.c: Likewise.
27934         * termios/tcflow.c: Likewise.
27935         * termios/tcflush.c: Likewise.
27936         * termios/tcgetattr.c: Likewise.
27937         * termios/tcgetpgrp.c: Likewise.
27938         * termios/tcsendbrk.c: Likewise.
27939         * termios/tcsetattr.c: Likewise.
27940         * termios/tcsetpgrp.c: Likewise.
27941         * time/adjtime.c: Likewise.
27942         * time/clock.c: Likewise.
27943         * time/getitimer.c: Likewise.
27944         * time/gettimeofday.c: Likewise.
27945         * time/setitimer.c: Likewise.
27946         * time/settimeofday.c: Likewise.
27947         * time/stime.c: Likewise.
27948         * time/time.c: Likewise.
27950 2012-11-04  Pino Toscano  <toscano.pino@tiscali.it>
27952         * sysdeps/generic/paths.h (_PATH_STDPATH): Remove /usr/contrib/bin and
27953         /usr/old/bin.
27955         * sysdeps/generic/paths.h (_PATH_MNTTAB, _PATH_MOUNTED): Use tabs
27956         instead of spaces.
27957         * sysdeps/unix/sysv/linux/paths.h (_PATH_UTMP, _PATH_WTMP): Likewise.
27959 2012-11-03  Joseph Myers  <joseph@codesourcery.com>
27961         [BZ #14796]
27962         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Set rounding mode to
27963         FE_TONEAREST before applying Dekker multiplication and Knuth
27964         addition.  Clear inexact exceptions and check for exact zero
27965         results afterwards.
27966         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
27967         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
27968         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
27969         * math/libm-test.inc (fma_test): Add more tests.
27970         (fma_test_towardzero): Likewise.
27971         (fma_test_downward): Likewise.
27972         (fma_test_upward): Likewise.
27973         * sysdeps/generic/math_private.h (default_libc_fesetround): New
27974         function.
27975         (libc_fesetround): New macro.
27976         (libc_fesetroundf): Likewise.
27977         (libc_fesetroundl): Likewise.
27978         * sysdeps/i386/fpu/fenv_private.h (libc_fesetround_sse): New
27979         function.
27980         (libc_fesetround_387): Likewise.
27981         (libc_fesetroundf): New macro.
27982         (libc_fesetround): Likewise.
27983         (libc_fesetroundl): Likewise.
27984         * sysdeps/sparc/fpu/fenv_private.h (libc_fesetround): New
27985         function.
27986         (libc_fesetroundf): New macro.
27987         (libc_fesetround): Likewise.
27988         (libc_fesetroundl): Likewise.
27989         * include/fenv.h (feclearexcept): Add libm_hidden_proto.
27990         * math/fclrexcpt.c (feclearexcept): Add libm_hidden_ver.
27991         * sysdeps/i386/fpu/fclrexcpt.c (feclearexcept): Add
27992         libm_hidden_ver.
27993         * sysdeps/powerpc/fpu/fclrexcpt.c (feclearexcept): Likewise.
27994         * sysdeps/s390/fpu/fclrexcpt.c (feclearexcept): Add
27995         libm_hidden_def.
27996         * sysdeps/sh/sh4/fpu/fclrexcpt.c (feclearexcept): Likewise.
27997         * sysdeps/sparc/fpu/fclrexcpt.c (feclearexcept): Add
27998         libm_hidden_ver.
27999         * sysdeps/x86_64/fpu/fclrexcpt.c (feclearexcept): Add
28000         libm_hidden_def.
28002         [BZ #3439]
28003         * sysdeps/powerpc/bits/fenv.h (FE_INEXACT): Define macro to
28004         integer constant usable in #if and use that to give value to enum
28005         constant.
28006         (FE_DIVBYZERO): Likewise.
28007         (FE_UNDERFLOW): Likewise.
28008         (FE_OVERFLOW): Likewise.
28009         (FE_INVALID): Likewise.
28010         (FE_INVALID_SNAN): Likewise.
28011         (FE_INVALID_ISI): Likewise.
28012         (FE_INVALID_IDI): Likewise.
28013         (FE_INVALID_ZDZ): Likewise.
28014         (FE_INVALID_IMZ): Likewise.
28015         (FE_INVALID_COMPARE): Likewise.
28016         (FE_INVALID_SOFTWARE): Likewise.
28017         (FE_INVALID_SQRT): Likewise.
28018         (FE_INVALID_INTEGER_CONVERSION): Likewise.
28019         (FE_TONEAREST): Likewise.
28020         (FE_TOWARDZERO): Likewise.
28021         (FE_UPWARD): Likewise.
28022         (FE_DOWNWARD): Likewise.
28023         * sysdeps/s390/fpu/bits/fenv.h (FE_INVALID): Likewise.
28024         (FE_DIVBYZERO): Likewise.
28025         (FE_OVERFLOW): Likewise.
28026         (FE_UNDERFLOW): Likewise.
28027         (FE_INEXACT): Likewise.
28028         (FE_TONEAREST): Likewise.
28029         (FE_DOWNWARD): Likewise.
28030         (FE_UPWARD): Likewise.
28031         (FE_TOWARDZERO): Likewise.
28032         * sysdeps/sh/sh4/fpu/bits/fenv.h (FE_INEXACT): Likewise.
28033         (FE_UNDERFLOW): Likewise.
28034         (FE_OVERFLOW): Likewise.
28035         (FE_DIVBYZERO): Likewise.
28036         (FE_INVALID): Likewise.
28037         (FE_TONEAREST): Likewise.
28038         (FE_TOWARDZERO): Likewise.
28039         * sysdeps/sparc/fpu/bits/fenv.h (FE_INVALID): Likewise.
28040         (FE_OVERFLOW): Likewise.
28041         (FE_UNDERFLOW): Likewise.
28042         (FE_DIVBYZERO): Likewise.
28043         (FE_INEXACT): Likewise.
28044         (FE_TONEAREST): Likewise.
28045         (FE_TOWARDZERO): Likewise.
28046         (FE_UPWARD): Likewise.
28047         (FE_DOWNWARD): Likewise.
28048         * sysdeps/x86/fpu/bits/fenv.h (FE_INVALID): Likewise.
28049         (FE_DIVBYZERO): Likewise.
28050         (FE_OVERFLOW): Likewise.
28051         (FE_UNDERFLOW): Likewise.
28052         (FE_INEXACT): Likewise.
28053         (FE_TONEAREST): Likewise.
28054         (FE_DOWNWARD): Likewise.
28055         (FE_UPWARD): Likewise.
28056         (FE_TOWARDZERO): Likewise.
28058 2012-11-02  Chris Metcalf  <cmetcalf@tilera.com>
28060         * elf/elf.h (R_TILEGX_IMM16_X[01]_HW[012]_(|LAST_)PLT_PCREL): Add.
28062 2012-11-03  Andreas Schwab  <schwab@linux-m68k.org>
28064         * scripts/cross-test-ssh.sh (command): Use newlines to separate
28065         commands.  Quote $PWD.
28066         (blacklist_exports): Don't use remove_newlines.  Replace "declare
28067         -x" by "export".
28068         (remove_newlines): Remove.
28070 2012-11-02  H.J. Lu  <hongjiu.lu@intel.com>
28072         * stdlib/Makefile (headers): Add bits/stdlib-float.h.
28073         * stdlib/stdlib.h (atof): Moved to ...
28074         * include/bits/stdlib-float.h: Here.  New file.
28075         * stdlib/stdlib.h: Include <bits/stdlib-float.h>.
28076         * stdlib/bits/stdlib-float.h: New file.
28077         * sysdeps/x86/Makefile (CFLAGS-.os): Compile rtld routines with
28078         -mno-sse -mno-mmx.
28079         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: Include
28080         <xmmintrin.h>.
28082 2012-11-02  Joseph Myers  <joseph@codesourcery.com>
28084         * conform/conformtest.pl (@headers): Add fenv.h.
28085         * conform/data/fenv.h-data: New file.
28086         * include/fenv.h [_ISOMAC]: Disable all contents of file except
28087         include of <math/fenv.h>.
28089         * conform/data/complex.h-data [ISO99 || ISO11 || XOPEN2K ||
28090         POSIX2008]: Change condition to [!ISO && !POSIX && !XPG3 && !XPG4
28091         && !UNIX98].  Enables tests for XOPEN2K8.
28092         * conform/data/inttypes.h-data [ISO99 || ISO11 || XOPEN2K ||
28093         POSIX2008]: Likewise.
28095         * conform/data/sys/wait.h-data [XPG3 || XOPEN2K8 || POSIX2008]
28096         (struct rusage): Do not expect type or its members.
28098         [BZ #3439]
28099         * math/math.h (FP_NAN): Define macro to integer constant usable in
28100         #if and use that to give value to enum constant.
28101         (FP_INFINITE): Likewise.
28102         (FP_ZERO): Likewise.
28103         (FP_SUBNORMAL): Likewise.
28104         (FP_NORMAL): Likewise.
28106 2012-11-02  Andreas Schwab  <schwab@linux-m68k.org>
28108         * iconvdata/bug-iconv8.c (do_test): Use %z for size_t arguments.
28109         * iconvdata/bug-iconv9.c (do_test): Use %t for ptrdiff_t
28110         arguments.
28112 2012-11-02  Roland McGrath  <roland@hack.frob.com>
28114         * aclocal.m4 (GLIBC_AUTOCONF_VERSION): New macro.
28115         Check that AC_AUTOCONF_VERSION matches it and m4_fatal at
28116         autoconf-time if not.
28117         * configure.in: Remove AC_PREREQ.
28119 2012-11-02  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
28121         * sysdeps/powerpc/sys/platform/ppc.h (__ppc_get_timebase): Use
28122         __builtin_ppc_get_timebase when building with GCC >= 4.8 instead
28123         of the internal implementation.
28125 2012-11-02  Joseph Myers  <joseph@codesourcery.com>
28127         * include/sys/syslog.h [_ISOMAC]: Disable all contents of file
28128         except include of <misc/sys/syslog.h>.
28130 2012-11-01  Andreas Schwab  <schwab@linux-m68k.org>
28132         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: If the
28133         function returns with a NULL context exit with zero.
28135 2012-11-01  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
28137         * sysdeps/powerpc/Makefile (cflags): Remove -mnew-mnemonics.
28139 2012-11-01  H.J. Lu  <hongjiu.lu@intel.com>
28141         * catgets/test-gencat.sh (run_program_prefix): Renamed to ...
28142         (run_program_cmd): This.
28143         * localedata/tst-langinfo.sh (run_program_prefix): Removed.
28144         (tst_langinfo): New variable.  Use it.
28146 2012-11-01  Sebastan Andrzej Siewior  <bigeasy@linutronix.de>
28148         * sysdeps/powerpc/powerpc32/dl-trampoline.S: Put __NO_FPRS__ around
28149         floating point opcodes.
28151 2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
28153         * sysdeps/mach/hurd/Makefile (link-libc-static-tests): New
28154         variable.
28156         * elf/dl-support.c: Unconditionally include "setup-vdso.h".
28158         * sysdeps/mach/hurd/powerpc: Remove directory.
28159         * sysdeps/mach/powerpc: Likewise.
28161 2012-11-01  Andreas Schwab  <schwab@linux-m68k.org>
28163         * scripts/check-local-headers.sh: Ignore c++ headers.
28165 2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
28167         * libio/genops.c (_IO_flush_all_lockp): Use NULL rather than 0 for
28168         __libc_cleanup_region_start argument.
28170 2012-11-01  Joseph Myers  <joseph@codesourcery.com>
28172         [BZ #14784]
28173         [BZ #14785]
28174         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Handle cases with small
28175         x * y using scaling, not as x * y + z.
28176         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
28177         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
28178         * math/libm-test.inc (fma_test): Add more tests.
28179         (fma_test_towardzero): Likewise.
28180         (fma_test_downward): Likewise.
28181         (fma_test_upward): Likewise.
28183 2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
28185         * sysdeps/mach/hurd/bits/param.h: Remove stray #endif.
28187 2012-10-31  Joseph Myers  <joseph@codesourcery.com>
28189         * sysdeps/sh/Makefile [$(subdir) = debug] (CFLAGS-backtrace.c):
28190         New variable.
28192 2012-10-31  Thomas Schwinge  <thomas@codesourcery.com>
28194         * rt/tst-shm.c (worker): Correct checking for mmap failure.
28196 2012-10-31  Andreas Schwab  <schwab@linux-m68k.org>
28198         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
28199         Fix sort order.
28200         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
28201         Likewise.
28203 2012-10-31  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
28205         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
28206         Fix the order of the list for glibc 2.17.
28207         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
28208         Likewise.
28210 2012-10-31  Andreas Schwab  <schwab@linux-m68k.org>
28212         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
28214 2012-10-31  Joseph Myers  <joseph@codesourcery.com>
28216         [BZ #14610]
28217         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c (__ieee754_atan2l): Check
28218         for low part of x being zero before using __atanl (y).
28219         * math/libm-test.inc (atan2_test): Add another test.
28221         * manual/install.texi (Configuring and compiling): Document
28222         general use of test-wrapper and test-wrapper-env.
28223         * INSTALL: Regenerated.
28225         * sysdeps/ieee754/dbl-64/s_fma.c: Include <tininess.h>.
28226         (__fma): Do not extract and scale down low bits on after-rounding
28227         systems when result rounded to normal precision would have normal
28228         exponent.
28229         * sysdeps/ieee754/ldbl-128/s_fmal.c: Include <tininess.h>.
28230         (__fmal): Do not extract and scale down low bits on after-rounding
28231         systems when result rounded to normal precision would have normal
28232         exponent.
28233         * sysdeps/ieee754/ldbl-96/s_fmal.c: Include <tininess.h>.
28234         (__fmal): Do not extract and scale down low bits on after-rounding
28235         systems when result rounded to normal precision would have normal
28236         exponent.
28237         * math/libm-test.inc (UNDERFLOW_EXCEPTION_BEFORE_ROUNDING): New
28238         macro.
28239         (fma_test): Add more tests.
28240         (fma_test_towardzero): Likewise.
28241         (fma_test_downward): Likewise.
28242         (fma_test_upward): Likewise.
28244 2012-10-30  H.J. Lu  <hongjiu.lu@intel.com>
28246         * sysdeps/i386/tininess.h: Renamed to ...
28247         * sysdeps/x86/tininess.h: This.
28248         * sysdeps/x86_64/tininess.h: Removed.
28250 2012-10-30  Joseph Myers  <joseph@codesourcery.com>
28252         * elf/Makefile ($(objpfx)tst-array1.out): Depend on comparison
28253         input.  Use $(build-program-cmd).
28254         ($(objpfx)tst-array1-static.out): Likewise.
28255         ($(objpfx)tst-array2.out): Likewise.
28256         ($(objpfx)tst-array3.out): Likewise.
28257         ($(objpfx)tst-array4.out): Likewise.
28258         ($(objpfx)tst-array5.out): Likewise.
28259         ($(objpfx)tst-array5-static.out): Likewise.
28261 2012-10-30  Chris Metcalf  <cmetcalf@tilera.com>
28263         * elf/dl-load.c (_dl_map_object_from_fd): Call DL_AFTER_LOAD
28264         if defined.
28266         * nss/nsswitch.h (nss_interface_function): Provide new
28267         macro for use with NSS functions.
28268         * grp/initgroups.c: Use new macro.
28269         * nss/getXXbyYY.c: Likewise.
28270         * nss/getXXbyYY_r.c: Likewise.
28271         * nss/getXXent.c: Likewise.
28272         * nss/getXXent_r.c: Likewise.
28273         * sysdeps/posix/getaddrinfo.c: Likewise.
28275 2012-10-30  Andreas Jaeger  <aj@suse.de>
28277         * po/ru.po: Update Russion translation from translation project.
28279 2012-10-30  Joseph Myers  <joseph@codesourcery.com>
28281         [BZ #14152]
28282         [BZ #14783]
28283         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Extract low bits of
28284         result and shift together with sticky bit instead of replicating
28285         round-to-nearest rounding.
28286         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
28287         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
28288         * math/libm-test.inc (fma_test): Add more tests.  Do not permit
28289         missing underflow exceptions.
28290         (fma_test_towardzero): Add more tests.
28291         (fma_test_downward): Likewise.
28292         (fma_test_upward): Likewise.
28294         [BZ #14047]
28295         * sysdeps/generic/tininess.h: New file.
28296         * sysdeps/i386/tininess.h: Likewise.
28297         * sysdeps/sh/tininess.h: Likewise.
28298         * sysdeps/x86_64/tininess.h: Likewise.
28299         * stdlib/tst-strtod-underflow.c: Likewise.
28300         * stdlib/tst-tininess.c: Likewise.
28301         * stdlib/strtod_l.c: Include <tininess.h>.
28302         (round_and_return): Do not set errno for exact underflow cases.
28303         Force an underflow exception when setting errno for underflow.
28304         Determine underflow based on rounding to normal precision if
28305         TININESS_AFTER_ROUNDING.
28306         * stdlib/tst-strtod.c (tests): Do not expect errno to be set to
28307         ERANGE for exact underflow cases.
28308         * stdlib/Makefile (tests): Add tst-tininess and
28309         tst-strtod-underflow.
28310         ($(objpfx)tst-tininess): Use $(link-libm).
28311         ($(objpfx)tst-strtod-underflow): Likewise.
28313 2012-10-30  Andreas Jaeger  <aj@suse.de>
28315         [BZ#14767]
28316         * elf/Makefile (tests): Remove conditional for have-initfini-array
28317         since this is now always required and the variable does not exist
28318         anymore.
28319         (tests-static): Likewise.
28320         (modules-names): Likewise.
28322         * po/eo.po: Add Esperanto translation from translation project.
28324         * elf/tst-array1.c (fini_array): Make writeable so that it can be
28325         merged with constructor/destructor.
28326         (init_array): Likewise.
28327         * elf/tst-array2dep.c (fini_array): Likewise.
28328         (init_array): Likewise.
28330 2012-10-29  Mike Frysinger  <vapier@gentoo.org>
28332         * manual/message.texi: Delete @cartouche tags.
28334 2012-10-29  Pino Toscano  <toscano.pino@tiscali.it>
28336         * sysdeps/mach/hurd/fdatasync.c: Turn ERR into EINVAL if it is
28337         EOPNOTSUPP.
28338         * sysdeps/mach/hurd/fsync.c: Likewise.
28340         * sysdeps/pthread/aio_notify.c (__aio_notify_only)
28341         [_POSIX_REALTIME_SIGNALS]: Change condition to
28342         [_POSIX_REALTIME_SIGNALS > 0].
28344 2012-10-27  Andreas Jaeger  <aj@suse.de>
28346         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h (__O_LARGEFILE)
28347         [!__x86_64]: Do not define, take value from <bits/fcntl-linux.h>.
28348         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (__O_LARGEFILE):
28349         [__WORDSIZE != 64]: Likewise.
28351 2012-10-26  H.J. Lu  <hongjiu.lu@intel.com>
28353         *  iconvdata/tst-table.sh: Remove ${SHELL}.
28354         *  iconvdata/tst-tables.sh: Likewise.
28356 2012-10-25  David S. Miller  <davem@davemloft.net>
28358         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
28359         (__get_clockfreq_via_proc_openprom): Use strtoumax instead
28360         of strtoull.
28362         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Add comments for
28363         ifunc-impl-list.c
28364         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
28365         * sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c: New file.
28366         * sysdeps/sparc/sparc32/sparcv9/multiarch/ifunc-impl-list.c: New
28367         file.
28369 2012-10-25  Roland McGrath  <roland@hack.frob.com>
28371         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
28372         (__get_clockfreq_via_proc_openprom): Use __getdents instead of
28373         __getdirentries.
28375 2012-10-25  Joseph Myers  <joseph@codesourcery.com>
28376             Jim Blandy  <jimb@codesourcery.com>
28378         * scripts/cross-test-ssh.sh: New file.
28379         * manual/install.texi (Configuring and compiling): Document use of
28380         cross-test-ssh.sh.
28381         * INSTALL: Regenerated.
28383 2012-10-25  Pino Toscano  <toscano.pino@tiscali.it>
28385         * sysdeps/mach/hurd/ptrace.c (ptrace): Use __hurd_fail to return
28386         EOPNOTSUPP.
28388 2012-10-25  Joseph Myers  <joseph@codesourcery.com>
28390         * Makeconfig (run-program-prefix): Fix comment.
28392 2012-10-24  Joseph Myers  <joseph@codesourcery.com>
28393             Jim Blandy  <jimb@codesourcery.com>
28395         * Makeconfig (test-wrapper): New variable,
28396         (test-wrapper-env): Likewise.
28397         [$(cross-compiling) = yes && $(test-wrapper) != ""]
28398         (run-built-tests): Define to yes.
28399         (run-program-prefix): Use $(test-wrapper).
28400         (built-program-cmd): Likewise.
28401         * Rules (make-test-out): Use $(test-wrapper-env) and
28402         $(host-built-program-cmd).
28403         * elf/Makefile ($(objpfx)order.out): Use $(test-wrapper).
28404         ($(objpfx)tst-pathopt.out): Pass $(test-wrapper-env) to
28405         tst-pathopt.sh.
28406         ($(objpfx)tst-rtld-load-self.out): Pass $(test-wrapper) and
28407         $(test-wrapper-env) to tst-rtld-load-self.sh.
28408         ($(objpfx)order2.out): Use $(test-wrapper).
28409         ($(objpfx)tst-initorder.out): Likewise.
28410         ($(objpfx)tst-initorder2.out): Likewise.
28411         ($(objpfx)tst-unused-dep.out): Use $(test-wrapper-env).
28412         * elf/tst-pathopt.sh (run_program_prefix): Remove unused variable.
28413         (test_wrapper_env): New variable.  Use it to run ld.so.
28414         * elf/tst-rtld-load-self.sh (test_wrapper): New variable.
28415         Use it to run ld.so.
28416         (test_wrapper_env): Likewise.
28417         * iconvdata/Makefile ($(objpfx)iconv-test.out): Pass
28418         $(test-wrapper) to run-iconv-test.sh.
28419         * iconvdata/run-iconv-test.sh (test_wrapper): New variable.
28420         (ICONV): Use $test_wrapper.
28421         * posix/Makefile ($(objpfx)globtest.out): Pass
28422         $(run-via-rtld-prefix), $(test-wrapper) and $(test-wrapper-env) to
28423         globtest.sh, not $(run-program-prefix).
28424         * posix/globtest.sh (run_via_rtld_prefix): New variable.
28425         (test_wrapper): Likewise.
28426         (test_wrapper_env): Likewise.  Use it to run globtest with HOME
28427         set together with run_via_rtld_prefix.
28428         (run_program_prefix): Define in terms of test_wrapper and
28429         run_via_rtld_prefix.
28431 2012-10-24  Roland McGrath  <roland@hack.frob.com>
28433         * nscd/Makefile ($(objpfx)nscd): Remove librt dependency.
28434         * posix/Makefile ($(objpfx)tst-regex, $(objpfx)tst-regex2):
28435         Targets removed.
28437         [BZ #14743]
28438         * include/time.h: Remove librt_hidden_proto (clock_gettime).
28439         Declare __clock_getres, __clock_gettime, __clock_settime,
28440         __clock_nanosleep, and __clock_getcpuclockid.
28441         * rt/clock_gettime.c: Define __clock_gettime as an alias.
28442         Remove librt_hidden_def (clock_gettime).
28443         * sysdeps/unix/clock_gettime.c: Likewise.
28444         * rt/clock_getcpuclockid.c: Define __clock_getcpuclockid as an alias.
28445         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: Likewise.
28446         * rt/clock_getres.c: Define __clock_getres as an alias.
28447         * sysdeps/posix/clock_getres.c: Likewise.
28448         * rt/clock_settime.c: Define __clock_settime as an alias.
28449         * sysdeps/unix/clock_settime.c: Likewise.
28450         * rt/clock_nanosleep.c: Define __clock_nanosleep as an alias.
28451         * sysdeps/unix/clock_nanosleep.c: Likewise.
28452         * sysdeps/unix/sysv/linux/clock_nanosleep.c: Likewise.
28453         * rt/clock-compat.c: New file.
28454         * rt/Makefile (librt-routines): Add clock-compat and move
28455         $(clock-routines) to ...
28456         (routines): ... here, new variable.
28457         * sysdeps/unix/sysv/linux/powerpc/Makefile (sysdep_routines):
28458         Don't add get_clockfreq here.
28459         * rt/Versions (libc: GLIBC_2.17): New version set.
28460         Add clock_* symbols here.
28461         (libc: GLIBC_PRIVATE): New version set.  Add __clock_* symbols here.
28462         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist
28463         (GLIBC_2.17): Add clock_* symbols.
28464         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Likewise.
28465         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Likewise.
28466         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
28467         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
28468         Likewise.
28469         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
28470         Likewise.
28471         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
28472         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Likewise.
28473         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Likewise.
28474         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Likewise.
28475         * NEWS: Mention the move.
28477         * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
28478         Use __open, __read, __close rather than their public counterparts.
28479         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
28480         (__get_clockfreq_via_cpuinfo): Likewise.
28481         (__get_clockfreq_via_proc_openprom): Likewise, and __getdirentries.
28482         (__get_clockfreq_via_dev_openprom): Likewise, and __ioctl.
28484         * config.h.in (HAVE_IFUNC): New #undef.
28485         * configure.in: Define it if libc_cv_ld_gnu_indirect_function
28486         was successful.
28487         * configure: Regenerated.
28489 2012-10-24  Mike Frysinger  <vapier@gentoo.org>
28491         * configure.in: Move READELF check to start of file.
28492         (libc_cv_ld_gnu_indirect_function): Change to a link test. Rename from
28493         libc_cv_asm_gnu_indirect_function in the process.
28494         * configure: Regenerated.
28496 2012-10-24  Mike Frysinger  <vapier@gentoo.org>
28498         * configure.in (libc_cv_gcc_static_libgcc): Drop -q flag to grep and
28499         send the output to /dev/null.
28500         (libc_cv_cc_with_libunwind): Likewise.
28501         (libc_cv_as_noexecstack): Likewise.
28502         * configure: Regenerate.
28504 2012-10-24  Joseph Myers  <joseph@codesourcery.com>
28506         * io/ftwtest-sh (tmp): Define to ${objpfx}io, not using `pwd`.
28508         * posix/globtest.sh (TMPDIR): Do not set.
28509         (testdir): Define using ${common_objpfx}posix not $TMPDIR.
28510         (testout): Likewise.
28512 2012-10-24  Andreas Jaeger  <aj@suse.de>
28514         * io/fcntl.h: Always define mode_t, off_t, pid_t and use these
28515         types for creat, creat64, lockf, posix_fadvise, posix_fallocate.
28516         [__USE_LARGEFILE64 && !__off64_t_defined]: Define off64_t.
28517         [__USE_LARGEFILE64]: Use off64_t in declaration of lock64,
28518         posix_fadvise64, posix_fallocate64.
28520         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h (F_GETLK, F_SETLK)
28521         (F_SETLKW) [__x86_64]: Remove, provided by <bits/fcntl-linux.h>.
28522         (F_GETLK, F_SETLK, F_SETLKW) [!__USE_FILE_OFFSET64 && !__x86_64__]:
28523         Likewise.
28524         (F_GETLK, F_SETLK, F_SETLKW) [__USE_FILE_OFFSET64 && ! __x86_64__]:
28525         Likewise.
28526         (F_GETLK64, F_SETLK64, F_SETLKW64) [!__x86_64__]: Likewise.
28528         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (F_GETLK, F_SETLK)
28529         (F_SETLKW) [__USE_FILE_OFFSET64]: Remove, provided by
28530         <bits/fcntl-linux.h>.
28531         (F_GETLK64, F_SETLK64, F_SETLKW64) [__WORDSIZE == 64]: Likewise.
28533         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (F_DUPFD, F_GETFD)
28534         (F_SETFD, F_GETFL, F_SETFL): Remove, provided by <bits/fcntl-linux.h>.
28535         (F_GETLK, F_SETLK, F_SETLKW) [__WORDSIZE == 64]: Likewise.
28536         (F_GETLK, F_SETLK, F_SETLKW, F_GETLK64, F_SETLK64, F_SETLKW64)
28537         [__WORDSIZE != 64]: Likewise.
28539 2012-10-23  Joseph Myers  <joseph@codesourcery.com>
28541         * Makeconfig (run-built-tests): New variable.
28542         * Rules [$(cross-compiling) = yes]: Change condition to
28543         [$(run-built-tests) = no].
28544         * catgets/Makefile [$(cross-compiling) != yes]: Change condition
28545         to [$(run-built-tests) = yes].
28546         * elf/Makefile [$(cross-compiling) = no]: Likewise
28547         * grp/Makefile [$(cross-compiling) = no]: Likewise.
28548         * iconv/Makefile [$(cross-compiling) != yes]: Likewise.
28549         * iconvdata/Makefile [$(cross-compiling) = no]: Likewise.
28550         * intl/Makefile [$(cross-compiling) = no]: Likewise.
28551         * io/Makefile [$(cross-compiling) = no]: Likewise.
28552         * libio/Makefile [$(cross-compiling) = no]: Likewise.
28553         * malloc/Makefile [$(cross-compiling) = no]: Likewise.
28554         * misc/Makefile [$(cross-compiling) = no]: Likewise.
28555         * posix/Makefile [$(cross-compiling) = no]: Likewise.
28556         * resolv/Makefile [$(cross-compiling) = no]: Likewise.
28557         * stdio-common/Makefile [$(cross-compiling) = no]: Likewise.
28558         * stdlib/Makefile [$(cross-compiling) = no]: Likewise.
28559         * string/Makefile [$(cross-compiling) = no]: Likewise.
28561         * posix/Makefile ($(objpfx)globtest.out): Pass
28562         $(run-program-prefix) to globtest.sh, not $(elf-objpfx) and
28563         $(rtld-installed-name).
28564         * posix/globtest.sh (elf_objpfx): Remove variable.
28565         (rtld_installed_name): Likewise.
28566         (library_path): Likewise.
28567         (run_program_prefix): New variable.  Use for running globtest
28568         binary.
28570 2012-10-23  Jim Blandy  <jimb@codesourcery.com>
28571             Joseph Myers  <joseph@codesourcery.com>
28573         * Makeconfig (host-built-program-cmd): New variable.
28574         * elf/Makefile (tst-stackguard1-ARGS): Use
28575         $(host-built-program-cmd).
28576         * posix/Makefile (tst-exec-ARGS): Use $(host-built-program-cmd).
28577         (tst-spawn-ARGS): Likewise.
28578         * rt/Makefile (tst-mqueue7-ARGS): Use $(host-built-program-cmd).
28580 2012-10-23  Joseph Myers  <joseph@codesourcery.com>
28581             Jim Blandy  <jimb@codesourcery.com>
28583         * Makeconfig (run-via-rtld-prefix): New variable.
28584         (run-program-prefix): Define in terms of $(run-via-rtld-prefix).
28585         (built-program-cmd): Likewise.
28587 2012-10-22  Andreas Jaeger  <aj@suse.de>
28589         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (O_RSYNC): Define to
28590         __O_RSYNC if it exists, otherwise to O_SYNC.
28592 2012-10-22  Jim Blandy  <jimb@codesourcery.com>
28593             Joseph Myers  <joseph@codesourcery.com>
28595         * iconvdata/run-iconv-test.sh: Redirect iconv stdin in loops from
28596         /dev/null.
28597         * iconvdata/tst-tables.sh: Redirect tst-table.sh stdin in loop
28598         from /dev/null
28599         * posix/tst-getconf.sh: Redirect getconf stdin in loop from
28600         /dev/null.
28602 2012-10-22  Andreas Jaeger  <aj@suse.de>
28604         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (__O_LARGEFILE):
28605         Define always.
28606         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (__O_LARGEFILE): Likewise.
28608         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
28609         bits/fcntl-linux.h.
28611         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (F_GETLK, F_SETLK)
28612         (F_SETLKW) [!F_GETLK]: Define values for [!__USE_FILE_OFFSET64].
28614         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (O_LARGEFILE): Rename
28615         to __O_LARGEFILE.
28616         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_LARGEFILE): Rename
28617         to __O_LARGEFILE.
28619 2012-10-21  Jim Blandy  <jimb@codesourcery.com>
28620             Joseph Myers  <joseph@codesourcery.com>
28622         * config.make.in (NM): New variable.
28624 2012-10-21  Andreas Jaeger  <aj@suse.de>
28626         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Remove all
28627         definitions and declarations that are provided by
28628         <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
28630 2012-10-20  H.J. Lu  <hongjiu.lu@intel.com>
28632         [BZ #14683]
28633         * elf/Makefile (tests-static): Add tst-leaks1-static.
28634         (tests): Also depend on $(objpfx)tst-leaks1-static-mem.
28635         ($(objpfx)tst-leaks1-static): New rule.
28636         ($(objpfx)tst-leaks1-static-mem): Likewise.
28637         (tst-leaks1-static-ENV): New macro.
28638         * elf/dl-open.c (dl_open_worker): Check the main application
28639         only if SHARED is defined.
28640         * elf/tst-leaks1-static.c: New file.
28642 2012-10-20  Andreas Jaeger  <aj@suse.de>
28644         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: New file, contains
28645         generic values for Linux.
28646         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h: Remove all definitions
28647         and declarations that are provided by <bits/fcntl-linux.h> and
28648         include <bits/fcntl-linux.h>.
28649         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
28650         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
28652 2012-10-20  Roland McGrath  <roland@hack.frob.com>
28654         * io/fcntl.h: Move include of <bits/types.h> to the top and
28655         include it unconditionally.
28657 2012-10-20  H.J. Lu  <hongjiu.lu@intel.com>
28659         * wcsmbs/Makefile (tests-ifunc): New variable.
28660         (tests): Add $(tests-ifunc).
28661         * wcsmbs/test-wcschr-ifunc.c: New file.
28662         * wcsmbs/test-wcscmp-ifunc.c: Likewise.
28663         * wcsmbs/test-wcscpy-ifunc.c: Likewise.
28664         * wcsmbs/test-wcslen-ifunc.c: Likewise.
28665         * wcsmbs/test-wcsrchr-ifunc.c: Likewise.
28666         * wcsmbs/test-wmemcmp-ifunc.c: Likewise.
28668         * string/Makefile (tests-ifunc): New variable.
28669         (tests): Add $(tests-ifunc).
28670         * string/test-memccpy.c (TEST_NAME): New macro.
28671         * string/test-memchr.c (TEST_NAME): Likewise.
28672         * string/test-memcmp.c (TEST_NAME): Likewise.
28673         * string/test-memcpy.c (TEST_NAME): Likewise.
28674         * string/test-memmem.c (TEST_NAME): Likewise.
28675         * string/test-memmove.c (TEST_NAME): Likewise.
28676         * string/test-memset.c (TEST_NAME): Likewise.
28677         * string/test-rawmemchr.c (TEST_NAME): Likewise.
28678         * string/test-stpcpy.c (TEST_NAME): Likewise.
28679         * string/test-stpncpy.c (TEST_NAME): Likewise.
28680         * string/test-strcasecmp.c (TEST_NAME): Likewise.
28681         * string/test-strcasestr.c (TEST_NAME): Likewise.
28682         * string/test-strcat.c (TEST_NAME): Likewise.
28683         * string/test-strchr.c (TEST_NAME): Likewise.
28684         * string/test-strcmp.c(TEST_NAME): Likewise.
28685         * string/test-strcpy.c (TEST_NAME): Likewise.
28686         * string/test-strcspn.c (TEST_NAME): Likewise.
28687         * string/test-strlen.c (TEST_NAME): Likewise.
28688         * string/test-strncasecmp.c (TEST_NAME): Likewise.
28689         * string/test-strncmp.c (TEST_NAME): Likewise.
28690         * string/test-strncpy.c (TEST_NAME): Likewise.
28691         * string/test-strnlen.c (TEST_NAME): Likewise.
28692         * string/test-strpbrk.c (TEST_NAME): Likewise.
28693         * string/test-strrchr.c (TEST_NAME): Likewise.
28694         * string/test-strspn.c (TEST_NAME): Likewise.
28695         * string/test-strstr.c (TEST_NAME): Likewise.
28696         * string/test-bcopy-ifunc.c: New file.
28697         * string/test-bzero-ifunc.c: Likewise.
28698         * string/test-memccpy-ifunc.c: Likewise.
28699         * string/test-memchr-ifunc.c: Likewise.
28700         * string/test-memcmp-ifunc.c: Likewise.
28701         * string/test-memcpy-ifunc.c: Likewise.
28702         * string/test-memmem-ifunc.c: Likewise.
28703         * string/test-memmove-ifunc.c: Likewise.
28704         * string/test-mempcpy-ifunc.c: Likewise.
28705         * string/test-memset-ifunc.c: Likewise.
28706         * string/test-rawmemchr-ifunc.c: Likewise.
28707         * string/test-stpcpy-ifunc.c: Likewise.
28708         * string/test-stpncpy-ifunc.c: Likewise.
28709         * string/test-strcasecmp-ifunc.c: Likewise.
28710         * string/test-strcasestr-ifunc.c: Likewise.
28711         * string/test-strcat-ifunc.c: Likewise.
28712         * string/test-strchr-ifunc.c: Likewise.
28713         * string/test-strchrnul-ifunc.c: Likewise.
28714         * string/test-strcmp-ifunc.c: Likewise.
28715         * string/test-strcpy-ifunc.c: Likewise.
28716         * string/test-strcspn-ifunc.c: Likewise.
28717         * string/test-strlen-ifunc.c: Likewise.
28718         * string/test-strncasecmp-ifunc.c: Likewise.
28719         * string/test-strncat-ifunc.c: Likewise.
28720         * string/test-strncmp-ifunc.c: Likewise.
28721         * string/test-strncpy-ifunc.c: Likewise.
28722         * string/test-strnlen-ifunc.c: Likewise.
28723         * string/test-strpbrk-ifunc.c: Likewise.
28724         * string/test-strrchr-ifunc.c: Likewise.
28725         * string/test-strspn-ifunc.c: Likewise.
28726         * string/test-strstr-ifunc.c: Likewise.
28728         * debug/Makefile (tests-ifunc): New variable.
28729         (tests): Add $(tests-ifunc).
28730         * debug/test-stpcpy_chk.c (TEST_NAME): New macro.
28731         * debug/test-strcpy_chk.c (TEST_NAME): Likewise.
28732         * debug/test-stpcpy_chk-ifunc.c: New file.
28733         * debug/test-strcpy_chk-ifunc.c: Likewise.
28735 2012-10-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
28737         [BZ #13601]
28738         * elf/dl-load.c (open_verify): Retry read if the entire ELF
28739         header is not read in.
28741 2012-10-19  Joseph Myers  <joseph@codesourcery.com>
28743         * io/Makefile ($(objpfx)ftwtest.out): Depend on ftwtest-sh.  Pass
28744         script to $(SHELL) as $<.  Pass $(common-objpfx) to script
28745         directly.  Pass built executable to script as
28746         $(built-program-cmd).
28747         * io/ftwtest-sh (ldso): Remove variable.  Run ftwtest directly as
28748         $testprogram without using LD_LIBRARY_PATH and $ldso.
28750         * grp/Makefile ($(objpfx)tst_fgetgrent.out): Pass
28751         $(run-program-prefix) to tst_fgetgrent.sh, not $(elf-objpfx) and
28752         $(rtld-installed-name).
28753         * grp/tst_fgetgrent.sh (elf_objpfx): Remove variable.
28754         (rtld_installed_name): Likewise.
28755         (library_path): Likewise.
28756         (run_program_prefix): New variable.  Use it to run tst_fgetgrent.
28757         * iconvdata/Makefile ($(objpfx)tst-tables.out): Pass
28758         $(run-program-prefix) to tst-tables.sh.
28759         * iconvdata/tst-table.sh (run_program_prefix): New variable.  Use
28760         it to run tst-table-from and tst-table-to.
28761         * iconvdata/tst-tables.sh (run_program_prefix): New variable.
28762         Pass it to tst-table.sh.
28763         * intl/Makefile ($(objpfx)tst-gettext.out): Pass
28764         $(run-program-prefix) to tst-gettext.sh.
28765         ($(objpfx)tst-translit.out): Pass $(run-program-prefix) to
28766         tst-translit.sh.
28767         ($(objpfx)tst-gettext2.out): Pass $(run-program-prefix) to
28768         tst-gettext2.sh.
28769         * intl/tst-gettext.sh (run_program_prefix): New variable.  Use it
28770         to run tst-gettext.
28771         * intl/tst-gettext2.sh (run_program_prefix): New variable.  Use it
28772         to run tst-gettext2.
28773         * intl/tst-translit.sh (run_program_prefix): New variable.  Use it
28774         to run tst-translit.
28775         * malloc/Makefile ($(objpfx)tst-mtrace.out): Pass
28776         $(run-program-prefix) to tst-mtrace.sh.
28777         * malloc/tst-mtrace.sh (run_program_prefix): New variable.  Use it
28778         to run tst-mtrace.
28779         * posix/Makefile ($(objpfx)wordexp-tst.out): Pass
28780         $(run-program-prefix) to wordexp-tst.sh, not $(elf-objpfx) and
28781         $(rtld-installed-name).
28782         * posix/wordexp-tst.sh (elf_objpfx): Remove variable.
28783         (rtld_installed_name): Likewise.
28784         (run_program_prefix): New variable.  Use it to run wordexp-test.
28786         * Makeconfig (ARCH): Remove all definitions.
28787         (machine): Likewise.
28788         [ARCH]: Remove conditional code.
28789         [!objdir]: Give error.
28790         [!objdir] (objpfx): Remove.
28791         [!objdir] (common-objpfx): Likewise.
28792         [!objdir] (common-objdir): Likewise.
28793         * configure.in (config_makefile): Remove.  Hardcode Makefile in
28794         AC_CONFIG_FILES call.
28795         * configure: Regenerated.
28797         [BZ #13888]
28798         * io/ftwtest-sh (tmp): Set to use the working directory, not /tmp
28799         or TMPDIR.
28800         (testout): Likewise.
28802         * posix/Makefile ($(objpfx)tst-getconf.out): Pass
28803         $(built-program-cmd) to tst-getconf.sh, not $(elf-objpfx) and
28804         $(rtld-installed-name).
28805         * posix/tst-getconf.sh (elf_objpfx): Remove variable.
28806         (rtld_installed_name): Likwise.
28807         (runit): Remove function.
28808         (run_getconf): New variable,  Use it for running getconf binary.
28810 2012-10-18  H.J. Lu  <hongjiu.lu@intel.com>
28812         [BZ #14716]
28813         * string/test-memmem.c (check_result): New function.
28814         (do_one_test): Use it.
28815         (check1): New function.
28816         (test_main): Use it.
28818 2012-10-18  Markus Trippelsdorf  <markus@trippelsdorf.de>
28820         * math/Makefile: Comment on slow compilation of test-tgmath2.c.
28822 2012-10-18  Joseph Myers  <joseph@codesourcery.com>
28824         * sysdeps/generic/_G_config.h (_G_OPEN64): Remove.
28825         (_G_LSEEK64): Likewise.
28826         (_G_MMAP64): Likewise.
28827         (_G_FSTAT64): Likewise.
28828         * sysdeps/unix/sysv/linux/_G_config.h (_G_OPEN64): Remove.
28829         (_G_LSEEK64): Likewise.
28830         (_G_MMAP64): Likewise.
28831         (_G_FSTAT64): Likewise.
28832         * libio/fileops.c (mmap_remap_check) [_G_MMAP64]: Make code
28833         unconditional.  Call __mmap64 directly.
28834         (mmap_remap_check) [!_G_MMAP64]: Remove conditional code.
28835         (mmap_remap_check) [_G_LSEEK64]: Make code unconditional.  Call
28836         __lseek64 directly.
28837         (mmap_remap_check) [!_G_LSEEK64]: Remove conditional code.
28838         (decide_maybe_mmap) [_G_MMAP64]: Make code unconditional.  Call
28839         __mmap64 directly.
28840         (decide_maybe_mmap) [!_G_MMAP64]: Remove conditional code.
28841         (decide_maybe_mmap) [_G_LSEEK64]: Make code unconditional.  Call
28842         __lseek64 directly.
28843         (decide_maybe_mmap) [!_G_LSEEK64]: Remove conditional code.
28844         (_IO_file_sync_mmap) [_G_LSEEK64]: Make code unconditional.  Call
28845         __lseek64 directly.
28846         (_IO_file_sync_mmap) [!_G_LSEEK64]: Remove conditional code.
28847         (_IO_file_seek) [_G_LSEEK64]: Make code unconditional.  Call
28848         __lseek64 directly.
28849         (_IO_file_seek) [!_G_LSEEK64]: Remove conditional code.
28850         (_IO_file_stat) [_G_FSTAT64]: Make code unconditional.  Call
28851         __fxstat64 directly.
28852         (_IO_file_stat) [!_G_FSTAT64]: Remove conditional code.
28853         * libio/freopen64.c (freopen64) [_G_OPEN64]: Make code
28854         unconditional.
28855         (freopen64) [!_G_OPEN64]: Remove conditional code.
28856         * libio/fseeko64.c (fseeko64) [_G_LSEEK64]: Make code
28857         unconditional.
28858         (fseeko64) [!_G_LSEEK64]: Remove conditional code.
28859         * libio/ftello64.c (ftello64) [_G_LSEEK64]: Make code
28860         unconditional.
28861         (ftello64) [!_G_LSEEK64]: Remove conditional code.
28862         * libio/iofgetpos64.c (_IO_new_fgetpos64) [_G_LSEEK64]: Make code
28863         unconditional.
28864         (_IO_new_fgetpos64) [!_G_LSEEK64]: Remove conditional code.
28865         * libio/iofopen64.c (_IO_fopen64) [_G_OPEN64]: Make code
28866         unconditional.
28867         (_IO_fopen64) [!_G_OPEN64]: Remove conditional code.
28868         * libio/iofsetpos64.c (_IO_new_fsetpos64) [_G_LSEEK64]: Make code
28869         unconditional.
28870         (_IO_new_fsetpos64) [!_G_LSEEK64]: Remove conditional code.
28871         * libio/oldiofgetpos64.c (_IO_old_fgetpos64) [_G_LSEEK64]: Make code
28872         unconditional.
28873         (_IO_old_fgetpos64) [!_G_LSEEK64]: Remove conditional code.
28874         * libio/oldiofsetpos64.c (_IO_old_fsetpos64) [_G_LSEEK64]: Make code
28875         unconditional.
28876         (_IO_old_fsetpos64) [!_G_LSEEK64]: Remove conditional code.
28878 2012-10-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
28880         [BZ #12140]
28881         * manual/memory.texi (Malloc Tunable Parameters): Add note
28882         about free list pointers overwriting some perturb bytes.
28883         Wording suggested by Roland McGrath.
28885 2012-10-17  Joseph Myers  <joseph@codesourcery.com>
28887         * math/libm-test.inc (gamma_test): Do not call feclearexcept.
28888         (lgamma_test): Likewise.
28889         (tgamma_test): Likewise.
28891 2012-10-16  Florian Weimer  <fweimer@redhat.com>
28893         [BZ #14700]
28894         * sysdeps/posix/opendir.c (MAX_DIR_BUFFER_SIZE): New constant.
28895         (__alloc_dir): Limit buffer to MAX_DIR_BUFFER_SIZE.
28897 2012-10-16  Maxim Kuvyrkov  <maxim@codesourcery.com>
28899         * NEWS: Mention BZ #14716.
28900         * string/str-two-way.h (two_way_short_needle): Fix thinko introduced
28901         when removing AVAILABLE1_USES_J macro.
28903 2012-10-12  H.J. Lu  <hongjiu.lu@intel.com>
28905         * sysdeps/x86/bits/byteswap.h: Include <bits/types.h>.
28906         (__bswap_64): __uint64_t for unsigned 64-bit int.
28908 2012-10-12  Andreas Schwab  <schwab@linux-m68k.org>
28910         * include/string.h (memmem): Declare libc hidden alias.
28911         * string/memmem.c (memmem): Define libc hidden alias.
28912         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Use __open,
28913         __read, __close instead of open, read, close.
28915 2012-10-11  H.J. Lu  <hongjiu.lu@intel.com>
28917         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: New file.
28918         * sysdeps/x86_64/multiarch/memcmp.S (__memcmp_sse2): Make it
28919         global and hidden.
28920         * sysdeps/x86_64/multiarch/memcpy.S (__memcpy_sse2): Likewise.
28921         * sysdeps/x86_64/multiarch/mempcpy.S (__mempcpy_sse2): Likewise.
28922         * sysdeps/x86_64/multiarch/rawmemchr.S (__rawmemchr_sse42):
28923         Likewise.
28924         (__rawmemchr_sse2): Likewise.
28925         * sysdeps/x86_64/multiarch/strcat.S (STRCAT_SSE2): Likewise.
28926         * sysdeps/x86_64/multiarch/strchr.S (__strchr_sse42): Likewise.
28927         (__strchr_sse2): Likewise.
28928         * sysdeps/x86_64/multiarch/strcmp-sse42.S (STRCMP_SSE42): Likewise.
28929         * sysdeps/x86_64/multiarch/strcmp.S (STRCMP_SSE2): Likewise.
28930         (__strcasecmp_sse2): Likewise.
28931         (__strncasecmp_sse2): Likewise.
28932         * sysdeps/x86_64/multiarch/strcpy.S (STRCPY_SSE2): Likewise.
28933         * sysdeps/x86_64/multiarch/strlen.S (__strlen_sse2): Likewise.
28934         * sysdeps/x86_64/multiarch/strnlen.S (__strnlen_sse2): Likewise.
28935         * sysdeps/x86_64/multiarch/strrchr.S (__strrchr_sse42): Likewise.
28936         (__strrchr_sse2): Likewise.
28937         * sysdeps/x86_64/multiarch/memcmp.S: Add comments for
28938         ifunc-impl-list.c.
28939         * sysdeps/x86_64/multiarch/memcpy.S: Likewise.
28940         * sysdeps/x86_64/multiarch/memcpy_chk.S: Likewise.
28941         * sysdeps/x86_64/multiarch/memmove.c: Likewise.
28942         * sysdeps/x86_64/multiarch/memmove_chk.c: Likewise.
28943         * sysdeps/x86_64/multiarch/mempcpy.S: Likewise.
28944         * sysdeps/x86_64/multiarch/mempcpy_chk.S: Likewise.
28945         * sysdeps/x86_64/multiarch/memset.S: Likewise.
28946         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
28947         * sysdeps/x86_64/multiarch/rawmemchr.S: Likewise.
28948         * sysdeps/x86_64/multiarch/stpcpy.S: Likewise.
28949         * sysdeps/x86_64/multiarch/stpncpy.S: Likewise.
28950         * sysdeps/x86_64/multiarch/strcasecmp_l.S: Likewise.
28951         * sysdeps/x86_64/multiarch/strcasestr-c.c: Likewise.
28952         * sysdeps/x86_64/multiarch/strcat.S: Likewise.
28953         * sysdeps/x86_64/multiarch/strchr.S: Likewise.
28954         * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
28955         * sysdeps/x86_64/multiarch/strcpy.S: Likewise.
28956         * sysdeps/x86_64/multiarch/strcspn.S: Likewise.
28957         * sysdeps/x86_64/multiarch/strlen.S: Likewise.
28958         * sysdeps/x86_64/multiarch/strncase_l.S: Likewise.
28959         * sysdeps/x86_64/multiarch/strncat.S: Likewise.
28960         * sysdeps/x86_64/multiarch/strncmp.S: Likewise.
28961         * sysdeps/x86_64/multiarch/strncpy.S: Likewise.
28962         * sysdeps/x86_64/multiarch/strnlen.S: Likewise.
28963         * sysdeps/x86_64/multiarch/strpbrk.S: Likewise.
28964         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
28965         * sysdeps/x86_64/multiarch/strspn.S: Likewise.
28966         * sysdeps/x86_64/multiarch/strstr-c.c: Likewise.
28967         * sysdeps/x86_64/multiarch/wcscpy.S: Likewise.
28968         * sysdeps/x86_64/multiarch/wmemcmp.S: Likewise.
28970         * sysdeps/i386/i686/multiarch/bcopy.S (__bcopy_ia32): Make it
28971         global and hidden.
28972         * sysdeps/i386/i686/multiarch/bzero.S (__bzero_ia32): Likewise.
28973         * sysdeps/i386/i686/multiarch/memcmp.S (__memcmp_ia32): Likewise.
28974         * sysdeps/i386/i686/multiarch/memcpy.S (__memcpy_ia32): Likewise.
28975         * sysdeps/i386/i686/multiarch/memmove.S (__memmove_ia32):
28976         Likewise.
28977         * sysdeps/i386/i686/multiarch/mempcpy.S (__mempcpy_ia32):
28978         Likewise.
28979         * sysdeps/i386/i686/multiarch/strcat.S (STRCAT_IA32): Likewise.
28980         * sysdeps/i386/i686/multiarch/strcmp.S (__STRCMP_IA32): Likewise.
28981         * sysdeps/i386/i686/multiarch/strcpy.S (STRCPY_IA32): Likewise.
28982         * sysdeps/i386/i686/multiarch/bcopy.S: Add comments for
28983         ifunc-impl-list.c.
28984         * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
28985         * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
28986         * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
28987         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
28988         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
28989         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
28990         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
28991         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
28992         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
28993         * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
28994         * sysdeps/i386/i686/multiarch/memset.S: Likewise.
28995         * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
28996         * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
28997         * sysdeps/i386/i686/multiarch/stpcpy.S: Likewise.
28998         * sysdeps/i386/i686/multiarch/stpncpy.S: Likewise.
28999         * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
29000         * sysdeps/i386/i686/multiarch/strcasecmp_l.S: Likewise.
29001         * sysdeps/i386/i686/multiarch/strcasestr-c.c: Likewise.
29002         * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
29003         * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
29004         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
29005         * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
29006         * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
29007         * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
29008         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
29009         * sysdeps/i386/i686/multiarch/strncase_l.S: Likewise.
29010         * sysdeps/i386/i686/multiarch/strncat.S: Likewise.
29011         * sysdeps/i386/i686/multiarch/strncmp.S: Likewise.
29012         * sysdeps/i386/i686/multiarch/strncpy.S: Likewise.
29013         * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
29014         * sysdeps/i386/i686/multiarch/strpbrk.S: Likewise.
29015         * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
29016         * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
29017         * sysdeps/i386/i686/multiarch/strstr-c.c: Likewise.
29018         * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
29019         * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
29020         * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
29021         * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
29022         * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
29023         * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
29024         * sysdeps/i386/i686/multiarch/ifunc-impl-list.c: New file.
29026         * Rules [$(multi-arch) = no] (tests): Filter out $(tests-ifunc).
29027         [$(multi-arch) = no] (xtests): Filter out $(xtests-ifunc).
29028         * include/ifunc-impl-list.h: New file.
29029         * misc/ifunc-impl-list.c: Likewise.
29030         * misc/Makefile (routines): Add ifunc-impl-list.
29031         * misc/Versions (GLIBC_PRIVATE): Add __libc_ifunc_impl_list.
29032         * string/test-string.h: Include <ifunc-impl-list.h>.
29033         (func_list, func_count, impl_count, impl_array) [TEST_IFUNC &&
29034         TEST_NAME]: New variables.
29035         (FOR_EACH_IMPL): Support func_list if TEST_IFUNC and TEST_NAME
29036         are defined.
29037         (test_init): Call __libc_ifunc_impl_list to initialize
29038         func_list if TEST_IFUNC and TEST_NAME are defined.
29040         * string/Makefile (strop-tests): Add bcopy and bzero.
29041         * string/test-bcopy.c: New file.
29042         * string/test-bzero.c: Likewise.
29043         * string/test-memmove.c: Support bcopy test if TEST_BCOPY is
29044         defined.
29045         * string/test-memset.c: Support bzero test if TEST_BZERO is
29046         defined.
29047         * sysdeps/x86_64/multiarch/bcopy.S (bcopy): Jump to
29048         __libc_memmove.
29049         * sysdeps/x86_64/multiarch/bzero.S (__bzero): Jump to
29050         __libc_memset.
29051         * sysdeps/x86_64/multiarch/memset.S (__libc_memset): New alias
29052         of memset.
29054 2012-10-10  Joseph Myers  <joseph@codesourcery.com>
29056         * configure.in: Run $CXX, not cc1plus, to locate C++ headers.
29057         * configure: Regenerated.
29059         * Makeconfig (+link-static-before-libc): Don't include
29060         $(link-static-libc).
29062         * libio/libio.h (_IO_pos_t): Remove.
29064 2012-10-10  Alexandre Oliva <aoliva@redhat.com>
29066         * NEWS: Add note about FIPS mode.  Wording suggested by Roland
29067         McGrath.
29069 2012-10-10  Alexandre Oliva <aoliva@redhat.com>
29071         * crypt/crypt-entry.c: Include fips-private.h.
29072         (__crypt_r, __crypt): Disable MD5 and DES if FIPS is enabled.
29073         * crypt/md5c-test.c (main): Tolerate disabled MD5.
29074         * sysdeps/unix/sysv/linux/fips-private.h: New file.
29075         * sysdeps/generic/fips-private.h: New file, dummy fallback.
29077 2012-10-10  Alexandre Oliva <aoliva@redhat.com>
29079         * crypt/crypt-private.h: Include stdbool.h.
29080         (_ufc_setup_salt_r): Return bool.
29081         * crypt/crypt-entry.c: Include errno.h.
29082         (__crypt_r): Return NULL with EINVAL for bad salt.
29083         * crypt/crypt_util.c (bad_for_salt): New.
29084         (_ufc_setup_salt_r): Check that salt is long enough and within
29085         the specified alphabet.
29086         * crypt/badsalttest.c: New file.
29087         * crypt/Makefile (tests): Add it.
29088         ($(objpfx)badsalttest): New.
29090 2012-10-09  Maxim Kuvyrkov  <maxim@codesourcery.com>
29092         * NEWS: Add entry for BZ #14602.
29094 2012-10-09  Joseph Myers  <joseph@codesourcery.com>
29096         * math/gen-libm-test.pl (parse_args): Handle comparison macros as
29097         type-generic.
29098         * math/libm-test.inc: Update comment listing what functions and
29099         macros are tested.
29100         (isgreater_test): New function.
29101         (isgreaterequal_test): Likewise.
29102         (isless_test): Likewise.
29103         (islessequal_test): Likewise.
29104         (islessgreater_test): Likewise.
29105         (isunordered_test): Likewise.
29106         (main): Call the new functions.
29108 2012-10-09  Roland McGrath  <roland@hack.frob.com>
29110         * aclocal.m4 (GLIBC_PROVIDES): Provide _AS_BASENAME_PREPARE,
29111         _AS_ME_PREPARE, _AS_VAR_ARITH_PREPARE, AS_SHELL_FN_as_fn_set_status,
29112         AS_SHELL_FN_as_fn_exit, AS_SHELL_FN_ac_fn_c_try_compile.
29113         * sysdeps/i386/configure: Regenerated.
29114         * sysdeps/ieee754/ldbl-opt/configure: Regenerated.
29115         * sysdeps/mach/configure: Regenerated.
29116         * sysdeps/mach/hurd/configure: Regenerated.
29117         * sysdeps/powerpc/configure: Regenerated.
29118         * sysdeps/powerpc/powerpc32/configure: Regenerated.
29119         * sysdeps/powerpc/powerpc64/configure: Regenerated.
29120         * sysdeps/s390/s390-32/configure: Regenerated.
29121         * sysdeps/s390/s390-64/configure: Regenerated.
29122         * sysdeps/sh/configure: Regenerated.
29123         * sysdeps/sparc/configure: Regenerated.
29124         * sysdeps/unix/sysv/linux/configure: Regenerated.
29125         * sysdeps/unix/sysv/linux/powerpc/configure: Regenerated.
29126         * sysdeps/x86_64/configure: Regenerated.
29128         * dlfcn/dlerror.c (check_free): Call _dl_addr only if SHARED is
29129         defined.  Don't check if MAP is NULL.
29131 2012-10-09  Joseph Myers  <joseph@codesourcery.com>
29133         * sysdeps/generic/_G_config.h (_G_off64_t): Remove.
29134         (_G_stat64): Likewise.
29135         * sysdeps/unix/sysv/linux/_G_config.h (_G_off64_t): Remove.
29136         (_G_stat64): Likewise.
29137         * libio/filedoalloc.c (_IO_file_doallocate): Use struct stat64
29138         instead of struct _G_stat64.
29139         * libio/fileops.c (mmap_remap_check): Likewise.
29140         (decide_maybe_mmap): Likewise.
29141         (_IO_new_file_seekoff): Likewise.
29142         (_IO_file_stat): Likewise.
29143         * libio/libio.h (_IO_off64_t): Define to __off64_t, not
29144         _G_off64_t.
29145         * libio/oldfileops.c (_IO_old_file_seekoff): Use struct stat64
29146         instead of struct _G_stat64.
29147         * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
29149 2012-10-08  Maxim Kuvyrkov  <maxim@codesourcery.com>
29151         [BZ #14602]
29152         * string/str-two-way.h (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
29153         Replace with ...
29154         (CHECK_EOL): New macro.
29155         (two_way_short_needle): Check beginning of haystack for EOL.  Use
29156         CHECK_EOL.
29157         * string/strcasestr.c (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
29158         Replace with CHECK_EOL.
29159         * string/strstr.c (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
29160         Replace with CHECK_EOL.
29162 2012-10-08  Joseph Myers  <joseph@codesourcery.com>
29164         * math/gen-libm-test.pl (parse_args): Handle isinf and isnan as
29165         type-generic.
29166         * math/libm-test.inc: Update comment listing what functions and
29167         macros are tested.
29168         (finite_test): New function.
29169         (isinf_test): Likewise.
29170         (isnan_test): Likewise.
29171         (fpclassify_test): Test subnormal input.
29172         (isfinite_test): Likewise.
29173         (isnormal_test): Likewise.
29174         (main): Call the new functions.
29176 2012-10-08  Jonathan Nieder  <jrnieder@gmail.com>
29178         [BZ #14660]
29179         * Makerules (%.dynsym): Force C locale when running
29180         $(OBJDUMP) --dynamic-syms.
29182 2012-10-08  Andreas Schwab  <schwab@linux-m68k.org>
29184         * sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c: Include
29185         <stdint.h>.
29187 2012-10-06  David S. Miller  <davem@davemloft.net>
29189         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: On 32-bit, clear
29190         upper 32-bits of the length value in %o2 since we use branch-on-register
29191         tests which consider the entire 64-bit register.
29193 2012-10-06  H.J. Lu  <hongjiu.lu@intel.com>
29195         * string/test-strstr.c (check2): Add a test for page boundary.
29197 2012-10-05  David S. Miller  <davem@davemloft.net>
29199         * sysdeps/sparc/sparc64/multiarch/memset-niagara4.S: New file.
29200         * sysdeps/sparc/sparc32/sparcv9/multiarch/memset-niagara4.S: New
29201         file.
29202         * sysdeps/sparc/sparc64/multiarch/Makefile: Add to
29203         sysdep_routines.
29204         * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Likewise.
29205         * sysdeps/sparc/sparc64/multiarch/memset.S: Use Niagara-4 memset
29206         and bzero when HWCAP_SPARC_CRYPTO is present.
29208 2012-10-05  H.J. Lu  <hongjiu.lu@intel.com>
29210         [BZ #14602]
29211         * string/test-strstr.c (check2): New function.
29212         (test_main): Call check2.
29214         * string/Makefile (tests): Remove bug-strstr1, bug-strcasestr1
29215         and bug-strchr1.
29216         * string/bug-strcasestr1.c (do_test): Moved to ...
29217         * string/test-strcasestr.c (check1): Here.  New function.
29218         (do_one_test): Break out result checking code into ...
29219         (check_result): This.  New function.
29220         (do_one_test): Call check_result.
29221         (test_main): Call check1.
29222         * string/bug-strchr1.c (do_test): Moved to ...
29223         * string/test-strchr.c (check1): Here.  New function.
29224         (do_one_test): Break out result checking code into ...
29225         (check_result): This.  New function.
29226         (do_one_test): Call check_result.
29227         (test_main): Call check1.
29228         * string/bug-strstr1.c (main): Moved to ...
29229         * string/test-strstr.c (check1): Here.  New function.
29230         (do_one_test): Break out result checking code into ...
29231         (check_result): This.  New function.
29232         (do_one_test): Call check_result.
29233         (test_main): Call check1.
29234         * string/bug-strcasestr1.c: Removed.
29235         * string/bug-strchr1.c: Likewise.
29236         * string/bug-strstr1.c: Likewise.
29238         * elf/Makefile (dl-routines): Add hwcaps.
29239         * elf/dl-support.c (_dl_important_hwcaps): Removed.
29240         * elf/dl-sysdep.c (_DL_FIRST_EXTRA): Likewise.
29241         (_dl_important_hwcaps): Moved to ...
29242         * elf/dl-hwcaps.c: Here.  New file.
29243         * sysdeps/mach/hurd/dl-sysdep.c (_dl_important_hwcaps): Removed.
29245         [BZ #14557]
29246         * elf/setup-vdso.h (setup_vdso): Set GL(dl_nns) to 1 for vDSO
29247         if IS_IN_rtld isn't defined.
29249         * elf/dl-support.c (_dl_sysinfo_map): New.
29250         Include "get-dynamic-info.h" and "setup-vdso.h".
29251         (_dl_non_dynamic_init): Call setup_vdso.
29252         * elf/dynamic-link.h: Don't include <assert.h>.
29253         (elf_get_dynamic_info): Moved to ...
29254         * elf/get-dynamic-info.h: Here.  New file.
29255         * elf/dynamic-link.h: Include "get-dynamic-info.h".
29256         * elf/rtld.c (dl_main): Break out vDSO setup code into ...
29257         * elf/setup-vdso.h: Here.  New file.
29258         * elf/rtld.c: Include "setup-vdso.h".
29259         (dl_main): Call setup_vdso.
29261 2012-10-05  Joseph Myers  <joseph@codesourcery.com>
29263         * math/libm-test.inc: List nexttoward, cimag, clog10, conf and
29264         creal in comment listing functions tested.  List finite, isinf,
29265         isnan, isless, islessequal, isgreater, isgreaterequal,
29266         islessgreater, isunordered, lgamma_r and pow10 as functions and
29267         macros not tested.  Mention which functions not tested are aliases
29268         for other functions.  Fix typo.  Note that signs of NaNs are not
29269         tested.
29271         * scripts/config.guess: Update from config.git.
29272         * scripts/config.sub: Likewise.
29274 2012-10-04  Roland McGrath  <roland@hack.frob.com>
29276         * misc/Versions (GLIBC_PRIVATE): New set, add __madvise.
29277         * misc/madvise.c (madvise): Renamed to __madvise.
29278         Make madvise a weak alias.
29279         * include/sys/mman.h: Declare __madvise.
29280         Replace libc_hidden_proto (madvise) with libc_hidden_proto (__madvise).
29281         * sysdeps/unix/syscalls.list
29282         (madvise): Make __madvise the strong name, and madvise a weak alias.
29283         * sysdeps/unix/sysv/linux/syscalls.list
29284         (madvise, mmap): Remove redundant entries.
29285         * malloc/arena.c (shrink_heap): Use __madvise, not madvise.
29286         * malloc/malloc.c (mtrim): Likewise.
29287         * sysdeps/mach/hurd/malloc-machine.h (madvise): Renamed to __madvise.
29289 2012-10-03  Roland McGrath  <roland@hack.frob.com>
29291         * sysdeps/mach/hurd/dl-cache.c: File removed.
29292         * config.h.in (USE_LDCONFIG): New #undef.
29293         * configure.in (use_ldconfig): If set, define USE_LDCONFIG.
29294         * configure: Regenerated.
29295         * elf/Makefile (dl-routines): Add dl-cache only under
29296         [$(use-ldconfig) = yes].
29297         * elf/dl-load.c (_dl_map_object): Conditionalize code consulting the
29298         cache on [USE_LDCONFIG].
29299         * elf/dl-open.c (_dl_open): Call _dl_unload_cache only under
29300         [USE_LDCONFIG].
29301         * elf/rtld.c (dl_main): Likewise.
29303 2012-10-03  Pino Toscano  <toscano.pino@tiscali.it>
29305         * sysdeps/posix/sysconf.c (__sysconf): Return 0 also for
29306         _SC_LEVEL4_CACHE_LINESIZE.
29308 2012-10-03  Roland McGrath  <roland@hack.frob.com>
29310         * sysdeps/unix/bsd/confstr.h: File removed.
29312 2012-10-02  Alexandre Oliva <aoliva@redhat.com>
29314         * scripts/check-local-headers.sh: Exclude sys/sdt.h and
29315         sys/sdt-config.h.
29317 2012-10-02  Roland McGrath  <roland@hack.frob.com>
29319         * elf/dl-load.c (_dl_map_object_from_fd: struct loadcmd):
29320         Make 'mapoff' field ElfW(Off) rather than off_t.
29322 2012-10-02  Dmitry V. Levin  <ldv@altlinux.org>
29324         * nscd/Makefile: Remove nscd-cflags and all its users.
29325         (CPPFLAGS-nonlib): Add preprocessor flags for nscd modules.
29326         (CFLAGS-nonlib): Add compiler flags for nscd modules.
29328         [BZ #10631]
29329         * malloc.c (malloc_printerr): Clarify error message.
29331 2012-10-02  H.J. Lu  <hongjiu.lu@intel.com>
29333         [BZ #14648]
29334         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
29335         Set bit_FMA_Usable if FMA is supported.
29336         * sysdeps/x86_64/multiarch/init-arch.h (bit_FMA_Usable): New
29337         macro.
29338         (bit_FMA4_Usable): Updated.
29339         (index_FMA_Usable): New macro.
29340         (CPUID_FMA): Likewise
29341         (HAS_FMA): Defined with bit_FMA_Usable.
29343 2012-10-01  Roland McGrath  <roland@hack.frob.com>
29345         * bits/types.h (__swblk_t): Type removed.
29346         * bits/typesizes.h (__SWBLK_T_TYPE): Macro removed.
29347         * sysdeps/mach/hurd/bits/typesizes.h (__SWBLK_T_TYPE): Likewise.
29348         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
29349         (__SWBLK_T_TYPE): Likewise.
29350         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
29351         (__SWBLK_T_TYPE): Likewise.
29352         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
29353         (__SWBLK_T_TYPE): Likewise.
29354         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
29355         (__SWBLK_T_TYPE): Likewise.
29357 2012-10-01  Patsy Franklin <pfrankli@redhat.com>
29358             Honza Horak <hhorak@redhat.com>
29360         * nis/yp_xdr.c (xdr_domainname): Use YPMAXDOMAIN as maxsize.
29361         (xdr_mapname): Use YPMAXMAP as maxsize.
29362         (xdr_peername): Use YPMAXPEER as maxsize.
29363         (xdr_keydat): Use YPAXRECORD as maxsize.
29364         (xdr_valdat): Use YPMAXRECORD as maxsize.
29366 2012-10-01  Roland McGrath  <roland@hack.frob.com>
29368         * io/openat.c [!__ASSUME_ATFCTS] (__have_atfcts): New global variable.
29370         * sysdeps/unix/sysv/linux/init-first.c: Moved to ...
29371         * csu/init-first.c: ... here.
29372         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Update #include.
29373         * sysdeps/unix/sysv/linux/s390/init-first.c: Likewise.
29374         * sysdeps/unix/sysv/linux/x86_64/init-first.c: Likewise.
29375         * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: Likewise.
29376         * sysdeps/i386/init-first.c: File removed.
29377         * sysdeps/sh/init-first.c: File removed.
29379 2012-10-01  Joseph Myers  <joseph@codesourcery.com>
29381         [BZ #14645]
29382         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Compute result as x * y
29383         if x * y might underflow to zero and z is zero.
29384         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
29385         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
29386         * math/libm-test.inc (min_subnorm_value): New variable.
29387         (fma_test): Add more tests.
29388         (fma_test_towardzero): Likewise.
29389         (fma_test_downward): Likewise
29390         (fma_test_upward): Likewise.
29391         (initialize): Set min_subnorm_value.
29393 2012-09-29  Joseph Myers  <joseph@codesourcery.com>
29395         [BZ #14638]
29396         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use x * y + z for exact
29397         0 + 0.
29398         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Use original rounding
29399         mode for addition resulting in exact zero.
29400         * sysdeps/ieee754/ldbl-128/s_fma.c (__fma): Likewise.
29401         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Use x * y + z for
29402         exact 0 + 0.
29403         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
29404         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
29405         * math/libm-test.inc (fma_test): Add more tests.
29406         (fma_test_towardzero): New function.
29407         (fma_test_downward): Likewise.
29408         (fma_test_upward): Likewise.
29409         (main): Call the new functions.
29411 2012-09-28  David S. Miller  <davem@davemloft.net>
29413         * sysdeps/sparc/fpu/libm-test-ulps: Fix garbage in file.
29415 2012-09-28  Roland McGrath  <roland@hack.frob.com>
29417         * sysdeps/posix/sleep.c (__sleep): Rewritten using __nanosleep
29418         instead of SIGALRM.
29420         * sysdeps/gnu/_G_config.h: Moved to ...
29421         * sysdeps/unix/sysv/linux/_G_config.h: ... here.
29422         * sysdeps/mach/hurd/_G_config.h: Moved to ...
29423         * sysdeps/generic/_G_config.h: ... here.
29425         * io/open.c (__open): Renamed to __libc_open.  Make __open an alias.
29427         * posix/Makefile ($(objpfx)config-name.h): Do $(make-target-directory).
29429         * nss/Makefile ($(objpfx)/libnss_test1.so$(libnss_test1.so-version)):
29430         Conditionalize target on [libnss_test1.so-version].
29432         * elf/dl-sysdep.c: Conditionalize whole contents on [SHARED].
29434         * Makeconfig (nssobjdir, resolvobjdir): Remove variables.
29435         (elfobjdir): Move out of conditionals.
29437         * nss/nsswitch.c (nss_new_service): Conditionalize definition and
29438         declaration on [!DO_STATIC_NSS || SHARED], matching its only caller.
29439         (__nss_lookup_function): Conditionalize label remove_from_tree on
29440         [!DO_STATIC_NSS || SHARED], matching its only use.
29442 2012-09-28  David S. Miller  <davem@davemloft.net>
29444         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: New file.
29445         * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy-niagara4.S: New
29446         file.
29447         * sysdeps/sparc/sparc64/multiarch/Makefile: Add to
29448         sysdep_routines.
29449         * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Likewise.
29450         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Use Niagara-4 memcpy
29451         when HWCAP_SPARC_CRYPTO is present.
29453 2012-09-28  Pino Toscano  <toscano.pino@tiscali.it>
29455         * io/tst-mknodat.c: Create a FIFO instead of a socket.
29457 2012-09-28  Andreas Schwab  <schwab@linux-m68k.org>
29459         [BZ #6530]
29460         * stdio-common/vfprintf.c (process_string_arg): Revert
29461         2000-07-22 change.
29463 2011-09-28  Jonathan Nieder  <jrnieder@gmail.com>
29465         * stdio-common/Makefile (tst-sprintf-ENV): Set environment
29466         for testcase.
29467         * stdio-common/tst-sprintf.c: Include <locale.h>
29468         (main): Test sprintf's handling of incomplete multibyte
29469         characters.
29471 2012-09-28  H.J. Lu  <hongjiu.lu@intel.com>
29473         * elf/dl-runtime.c (VERSYMIDX): Removed.
29474         * elf/dl-version.c (VERSYMIDX): Likewise.
29475         * elf/do-rel.h (VERSYMIDX): Likewise.
29476         (VALIDX): Likewise.
29477         * elf/dynamic-link.h (VERSYMIDX): Likewise.
29478         * elf/rtld.c (VALIDX): Likewise.
29479         (ADDRIDX): Likewise.
29480         * sysdeps/sparc/sparc32/dl-machine.h (VALIDX): Likewise.
29481         * sysdeps/sparc/sparc64/dl-machine.h (VALIDX): Likewise.
29482         * sysdeps/x86_64/dl-tlsdesc.h (ADDRIDX): Likewise.
29483         * sysdeps/generic/ldsodefs.h (VERSYMIDX): New macro.
29484         (VALIDX): Likewise.
29485         (ADDRIDX): Likewise.
29487 2012-09-28  Pino Toscano  <toscano.pino@tiscali.it>
29489         * sysdeps/pthread/aio_fsync.c: Fix the file mode checking.
29491 2012-09-28  Dmitry V. Levin  <ldv@altlinux.org>
29493         [BZ #11438]
29494         * sysdeps/posix/getaddrinfo.c (default_scopes): Map RFC 1918 addresses
29495         to global scope.
29496         * posix/tst-rfc3484.c: Verify 10/8, 172.16/12 and 196.128/16
29497         addresses are in the same scope as 192.0.2/24.
29498         * posix/gai.conf: Document new scope table defaults.
29500 2012-09-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
29502         [BZ #5298]
29503         * libio/fileops.c (_IO_new_file_seekoff): Don't flush buffer
29504         for ftell.  Compute offsets from write pointers instead.
29505         * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
29507 2012-09-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
29509         [BZ #14543]
29510         * libio/Makefile (tests): New test case tst-fseek.
29511         * libio/tst-fseek.c: New test case to verify that fseek/ftell
29512         combination works in wide mode.
29513         * libio/wfileops.c (_IO_wfile_seekoff): Adjust internal buffer
29514         state when the external buffer state changes.
29516 2012-09-27  David S. Miller  <davem@davemloft.net>
29518         [BZ #14376]
29519         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Do not
29520         pass reloc->r_addend in as the 'high' argument to
29521         sparc64_fixup_plt when handling R_SPARC_JMP_IREL relocations.
29523         * sysdeps/sparc/fpu/libm-test-ulps: Update.
29525 2012-09-28  Pino Toscano  <toscano.pino@tiscali.it>
29527         * rt/tst-aio2.c: Include <pthread.h>.
29528         * rt/tst-aio3.c: Likewise.
29530 2012-09-27  Steve Ellcey  <sellcey@mips.com>
29532         * sysdeps/ieee754/ldbl-128/bits/huge_vall.h: Remove.
29534 2012-09-27  H.J. Lu  <hongjiu.lu@intel.com>
29536         * sysdeps/x86_64/multiarch/strncmp-ssse3.S: Conditionalize
29537         contents on [SHARED].
29539 2012-09-26  Marek Polacek  <polacek@redhat.com>
29541         [BZ #14530]
29542         [BZ #13741]
29543         * misc/sys/cdefs.h: Define __extern_inline and __extern_always_inline
29544         for C++ and GCC <4.3 as well as for non GCC compilers.
29546 2012-09-26  Markus Trippelsdorf  <markus@trippelsdorf.de>
29548         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
29550 2012-09-25  Roland McGrath  <roland@hack.frob.com>
29552         * Makefile.in (all, install): Declare with .PHONY.
29553         Reported by Michael Hope <michael.hope@linaro.org>.
29555 2012-09-25  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
29557         * manual/platform.texi (PowerPC): Document __ppc_get_timebase_freq.
29558         * sysdeps/powerpc/sys/platform/ppc.h: Include the operating
29559         system header.
29560         * sysdeps/unix/sysv/linux/powerpc/Makefile (sysdep_headers):
29561         Likewise.
29562         (sydep_routines): Add the new and the internal functions.
29563         * sysdeps/unix/sysv/linux/powerpc/bits/ppc.h: New file.
29564         * sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c: Likewise.
29565         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions
29566         (GLIBC_2.17): Add the new function.
29567         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist
29568         (GLIBC_2.17): Likewise.
29569         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions
29570         (GLIBC_2.17): Likewise.
29571         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist
29572         (GLIBC_2.17): Likewise.
29573         * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c: New file.
29575 2012-09-25  Alan Modra  <amodra@gmail.com>
29577         * sysdeps/unix/sysv/linux/powerpc/pthread_once.c (__pthread_once):
29578         Add release barrier before setting once_control to say
29579         initialisation is done.  Add hints on lwarx.  Use macro in
29580         place of isync.
29581         (clear_once_control): Add release barrier.
29583 2012-09-25  Joseph Myers  <joseph@codesourcery.com>
29585         [BZ #13629]
29586         * math/s_clog.c (__clog): Handle more values close to |z| = 1
29587         specially.
29588         * math/s_clog10.c (__clog10): Likewise.
29589         * math/s_clog10f.c (__clog10f): Likewise.
29590         * math/s_clog10l.c (__clog10l): Likewise.
29591         * math/s_clogf.c (__clogf): Likewise.
29592         * math/s_clogl.c (__clogl): Likewise.
29593         * math/Makefile (libm-calls): Add x2y2m1.
29594         * sysdeps/generic/math_private.h (__x2y2m1f): Declare.
29595         (__x2y2m1): Likewise.
29596         (__x2y2m1l): Likewise.
29597         * sysdeps/ieee754/dbl-64/x2y2m1.c: New file.
29598         * sysdeps/ieee754/dbl-64/x2y2m1f.c: Likewise.
29599         * sysdeps/ieee754/ldbl-128/x2y2m1l.c: Likewise.
29600         * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
29601         * sysdeps/ieee754/ldbl-96/x2y2m1.c: Likewise.
29602         * sysdeps/ieee754/ldbl-96/x2y2m1l.c: Likewise.
29603         * math/libm-test.inc (clog_test, clog10_test): Add more tests.
29604         * sysdeps/i386/fpu/libm-test-ulps: Update.
29605         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
29607         [BZ #14621]
29608         * posix/glob.c (next_brace_sub): Use size_t instead of unsigned
29609         int as type of variable DEPTH.
29610         (glob): Use size_t instead of int as type of variables NEWCOUNT
29611         and OLD_PATHC.
29613 2012-09-25  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
29615         * sysdeps/i386/i686/fpu/multiarch/Makefile (sysdep_routines):
29616         Add s_sincosf-sse2.
29617         * sysdeps/i386/i686/fpu/multiarch/s_sincosf.c: New file.
29618         * sysdeps/i386/i686/fpu/multiarch/s_sincosf-sse2.S: New file.
29619         * sysdeps/ieee754/flt-32/s_sincosf.c (SINCOSF, SINCOSF_FUNC): Add
29620         macros for using routine as __sincosf_ia32.
29621         Use macro for function declaration and weak_alias.
29622         * sysdeps/i386/fpu/libm-test-ulps: Update.
29624         * sysdeps/x86_64/fpu/s_sincosf.S: New file.
29625         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
29627         * math/s_ccoshf.c (__ccoshf): Fix wrong usage of sincos for
29628         subnormal argument.
29629         * math/s_cexpf.c (__cexpf): Likewise.
29630         * math/s_csinf.c (__csinf): Likewise.
29631         * math/s_csinhf.c (__csinhf): Likewise.
29632         * math/s_ctanf.c (__ctanf): Likewise.
29633         * math/s_ctanhf.c (__ctanhf): Likewise.
29634         * math/s_ccosh.c (__ccoshf): Likewise.
29635         * math/s_cexp.c (__cexpl): Likewise.
29636         * math/s_csin.c (__csin): Likewise.
29637         * math/s_csinh.c (__csinh): Likewise.
29638         * math/s_ctan.c (__ctan): Likewise.
29639         * math/s_ctanh.c (ctanh): Likewise.
29640         * math/s_ccoshl.c (__ccoshl): Likewise.
29641         * math/s_cexpl.c (__cexpl): Likewise.
29642         * math/s_csinl.c (__csinl): Likewise.
29643         * math/s_csinhl.c (__csinhl): Likewise.
29644         * math/s_ctanl.c (__ctanl): Likewise.
29645         * math/s_ctanhl.c (__ctanhl): Likewise.
29647 2012-09-25  Joseph Myers  <joseph@codesourcery.com>
29649         * libio/libio.h (_IO_size_t): Define to size_t, not _G_size_t.
29650         (_IO_ssize_t): Define to __ssize_t, not _G_ssize_t.
29651         (_IO_off_t): Define to __off_t, not _G_off_t.
29652         (_IO_pid_t): Define to __pid_t, not _G_pid_t.
29653         (_IO_uid_t): Define to __uid_t, not _G_uid_t.
29654         (_IO_wint_t): Define to wint_t, not _G_wint_t.
29655         * libio/libioP.h (struct _IO_jump_t): Use size_t not _G_size_t as
29656         type of __dummy and __dummy2 fields.
29657         * sysdeps/generic/_G_config.h (_G_size_t): Remove.
29658         (_G_ssize_t): Likewise.
29659         (_G_off_t): Likewise.
29660         (_G_pid_t): Likewise.
29661         (_G_uid_t): Likewise.
29662         (_G_wchar_t): Likewise.
29663         (_G_wint_t): Likewise.
29664         * sysdeps/gnu/_G_config.h (_G_size_t): Remove.
29665         (_G_ssize_t): Likewise.
29666         (_G_off_t): Likewise.
29667         (_G_pid_t): Likewise.
29668         (_G_uid_t): Likewise.
29669         (_G_wchar_t): Likewise.
29670         (_G_wint_t): Likewise.
29671         * sysdeps/mach/hurd/_G_config.h (_G_size_t): Remove.
29672         (_G_ssize_t): Likewise.
29673         (_G_off_t): Likewise.
29674         (_G_pid_t): Likewise.
29675         (_G_uid_t): Likewise.
29676         (_G_wchar_t): Likewise.
29677         (_G_wint_t): Likewise.
29679 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
29681         * malloc/arena.c: Include malloc-sysdep.h.
29682         (shrink_heap): Use check_may_shrink_heap to decide if madvise
29683         is sufficient to shrink the heap or an unmap is needed.
29684         * sysdeps/generic/malloc-sysdep.h: New file.  Define
29685         new function check_may_shrink_heap.
29686         * sysdeps/unix/sysv/linux/malloc-sysdep.h: New file.  Define
29687         new function check_may_shrink_heap.
29689 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
29691         * libio/fileops.c (_IO_new_file_seekoff): Fix typos in
29692         comments.
29694 2012-09-24  Dmitry V. Levin  <ldv@altlinux.org>
29696         * catgets/test-gencat.sh: Add "set -e".
29697         * elf/tst-pathopt.sh: Likewise.
29698         * grp/tst_fgetgrent.sh: Likewise.
29699         * iconvdata/run-iconv-test.sh: Likewise.
29700         * intl/tst-gettext.sh: Likewise.
29701         * intl/tst-gettext2.sh: Likewise.
29702         * intl/tst-gettext4.sh: Likewise.
29703         * intl/tst-gettext6.sh: Likewise.
29704         * intl/tst-translit.sh: Likewise.
29705         * io/ftwtest-sh: Likewise.
29706         * libio/test-freopen.sh: Likewise.
29707         * malloc/tst-mtrace.sh: Likewise.
29708         * posix/globtest.sh: Likewise.
29709         * posix/tst-getconf.sh: Likewise.
29710         * posix/wordexp-tst.sh: Likewise.
29711         * stdio-common/tst-printf.sh: Likewise.
29712         * stdio-common/tst-unbputc.sh: Likewise.
29713         * stdlib/tst-fmtmsg.sh: Likewise.
29714         * sysdeps/x86_64/tst-xmmymm.sh: Likewise.
29715         * catgets/Makefile: Do not specify -e option when running
29716         testsuite shell scripts.
29717         * elf/Makefile: Likewise.
29718         * grp/Makefile: Likewise.
29719         * iconvdata/Makefile: Likewise.
29720         * intl/Makefile: Likewise.
29721         * io/Makefile: Likewise.
29722         * libio/Makefile: Likewise.
29723         * malloc/Makefile: Likewise.
29724         * posix/Makefile: Likewise.
29725         * stdio-common/Makefile: Likewise.
29726         * stdlib/Makefile: Likewise.
29727         * sysdeps/x86_64/Makefile: Likewise.
29729         * io/ftwtest-sh: Add copyright header.
29730         * posix/globtest.sh: Likewise.
29731         * posix/tst-getconf.sh: Likewise.
29732         * posix/wordexp-tst.sh: Likewise.
29733         * sysdeps/x86_64/tst-xmmymm.sh: Likewise.
29735 2012-09-24  H.J. Lu  <hongjiu.lu@intel.com>
29737         [BZ #13679]
29738         * Makeconfig (+link): Defined as $(+link-static) if
29739         $(build-shared) isn't yes.
29740         (link-tests): Defined as $(+link-static-tests) if $(build-shared)
29741         isn't yes.
29742         (static-gnulib): Add -lgcc_eh if $(build-shared) isn't yes.
29744         * Makeconfig (+postctorT): Replace crtendS.o with crtend.o.
29746         [BZ #14562]
29747         * malloc/arena.c (heap_trim): Properly get fencepost and adjust
29748         new chunk size with MALLOC_ALIGN_MASK.
29750 2012-09-24  Joseph Myers  <joseph@codesourcery.com>
29752         [BZ #5044]
29753         * stdio-common/printf_fphex.c: Include <stdbool.h> and
29754         <rounding-mode.h>.
29755         (__printf_fphex): Determine rounding using get_rounding_mode and
29756         round_away.
29757         * stdio-common/tst-printf-round.c (struct hex_test): New
29758         structure.
29759         (hex_tests): New variable.
29760         (test_hex_in_one_mode): New function.
29761         (do_test): Also run tests for hex float output.
29763 2012-09-21  Joseph Myers  <joseph@codesourcery.com>
29765         * libio/iopopen.c [_IO_HAVE_SYS_WAIT]: Make code unconditional.
29766         [!_IO_HAVE_SYS_WAIT]: Remove conditional code.
29767         * libio/libio.h (_IO_HAVE_SYS_WAIT): Remove.
29768         * libio/oldiopopen.c [_IO_HAVE_SYS_WAIT]: Make code unconditional.
29769         [!_IO_HAVE_SYS_WAIT]: Remove conditional code.
29770         * sysdeps/generic/_G_config.h (_G_HAVE_SYS_WAIT): Remove.
29771         * sysdeps/gnu/_G_config.h (_G_HAVE_SYS_WAIT): Likewise.
29772         * sysdeps/mach/hurd/_G_config.h (_G_HAVE_SYS_WAIT): Likewise.
29774 2012-09-20  Joseph Myers  <joseph@codesourcery.com>
29776         * libio/libio.h [_G_NEED_STDARG_H]: Make code unconditional.
29777         * sysdeps/generic/_G_config.h (_G_NEED_STDARG_H): Remove.
29778         * sysdeps/gnu/_G_config.h (_G_NEED_STDARG_H): Remove.
29779         * sysdeps/mach/hurd/_G_config.h (_G_NEED_STDARG_H): Remove.
29781 2012-09-19  Dmitry V. Levin  <ldv@altlinux.org>
29783         [BZ #14579]
29784         * elf/rtld.c (dl_main): Limit the check for self loading to normal
29785         mode only.
29786         * elf/tst-rtld-load-self.sh: New test.
29787         * elf/Makefile: Run it.
29789 2012-09-18  Joseph Myers  <joseph@codesourcery.com>
29791         * sysdeps/wordsize-64/Makefile [$(subdir) = misc]
29792         (tst-writev-ENV): Remove.
29793         * sysdeps/wordsize-64/tst-writev.c (TIMEOUT): Define.
29795 2012-09-17  Chris Metcalf  <cmetcalf@tilera.com>
29797         * crypt/md5test-giant.c (TIMEOUT): Increase to 8 minutes for tilegx.
29799 2012-09-17  Joseph Myers  <joseph@codesourcery.com>
29801         * libio/iogetline.c [_LIBC || !_G_HAVE_IO_GETLINE_INFO]: Make code
29802         unconditional.
29803         * libio/iogetwline.c [_LIBC || !_G_HAVE_IO_GETLINE_INFO]:
29804         Likewise.
29805         * sysdeps/generic/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Remove.
29806         * sysdeps/gnu/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Likewise.
29807         * sysdeps/mach/hurd/_G_config.h (_G_HAVE_IO_GETLINE_INFO):
29808         Likewise.
29810 2012-09-14  H.J. Lu  <hongjiu.lu@intel.com>
29812         [BZ #14587]
29813         * Makeconfig (ASFLAGS): Remove $(have-cpp-asm-debuginfo) check.
29814         * config.make.in (have-cpp-asm-debuginfo): Removed.
29815         * configure.in: Don't substitute libc_cv_cpp_asm_debuginfo.
29816         * configure: Regenerated.
29818 2012-09-14  Joseph Myers  <joseph@codesourcery.com>
29820         [BZ #5044]
29821         * stdio-common/printf_fp.c: Include <stdbool.h> and
29822         <rounding-mode.h>.
29823         (___printf_fp): Determine rounding using get_rounding_mode and
29824         round_away.
29825         * stdio-common/tst-printf-round.c: New file.
29826         * stdio-common/Makefile (tests): Add tst-printf-round.
29827         (link-libm): New variable.
29828         ($(objpfx)tst-printf-round): Depend in $(link-libm).
29830 2012-09-13  H.J. Lu  <hongjiu.lu@intel.com>
29832         [BZ #14576]
29833         * bits/libc-lock.h (__rtld_lock_init_recursive): Removed.
29834         * sysdeps/mach/bits/libc-lock.h (__rtld_lock_init_recursive):
29835         Likewise.
29836         * sysdeps/mach/hurd/bits/libc-lock.h (__rtld_lock_init_recursive):
29837         Likewise.
29839 2012-09-13  Joseph Myers  <joseph@codesourcery.com>
29841         * libio/libio.h [!_G_HAVE_PRINTF_FP] (_IO_USE_DTOA): Remove.
29842         * sysdeps/generic/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
29843         * sysdeps/gnu/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
29844         * sysdeps/mach/hurd/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
29846 2012-09-12  Joseph Myers  <joseph@codesourcery.com>
29848         [BZ #14518]
29849         * include/rounding-mode.h: New file.
29850         * sysdeps/generic/get-rounding-mode.h: Likewise.
29851         * sysdeps/s390/fpu/get-rounding-mode.h: Likewise.
29852         * stdlib/strtod_l.c: Include <rounding-mode.h>.
29853         (MAX_VALUE): New macro.
29854         (MIN_VALUE): Likewise.
29855         (overflow_value): New function.
29856         (underflow_value): Likewise.
29857         (round_and_return): Use overflow_value and underflow_value to
29858         determine return values in overflow and underflow cases.  Use
29859         round_away to determine rounding depending on rounding mode.
29860         (____STRTOF_INTERNAL): Use overflow_value and underflow_value to
29861         determine return values in overflow and underflow cases.
29862         * stdlib/tst-strtod-round.c: Include <fenv.h>.
29863         (struct test_results): New structure.
29864         (struct test): Use struct test_results to store expected results
29865         for all rounding modes.
29866         (TEST): Include expected results for all rounding modes.
29867         (test_in_one_mode): New function.
29868         (do_test): Use test_in_one_mode to compute and check results.
29869         Check results for all rounding modes.
29870         * stdlib/Makefile ($(objpfx)tst-strtod-round): Depend on
29871         $(link-libm).
29873 2012-12-09  Allan McRae  <allan@archlinux.org>
29875         * sysdeps/i386/fpu/libm-test-ulps: Update
29877 2012-09-11  Joseph Myers  <joseph@codesourcery.com>
29879         * sysdeps/generic/_G_config.h (_G_int16_t): Remove.
29880         (_G_int32_t): Likewise.
29881         (_G_uint16_t): Likewise.
29882         (_G_uint32_t): Likewise.
29883         (_G_HAVE_BOOL): Likewise.
29884         (_G_HAVE_ATEXIT): Likewise.
29885         (_G_HAVE_LONG_DOUBLE_IO): Likewise.
29886         (_G_HAVE_IO_FILE_OPEN): Likewise.
29887         * sysdeps/gnu/_G_config.h (_G_int16_t): Remove.
29888         (_G_int32_t): Likewise.
29889         (_G_uint16_t): Likewise.
29890         (_G_uint32_t): Likewise.
29891         (_G_HAVE_BOOL): Likewise.
29892         (_G_HAVE_ATEXIT): Likewise.
29893         (_G_HAVE_LONG_DOUBLE_IO): Likewise.
29894         (_G_HAVE_IO_FILE_OPEN): Likewise.
29895         * sysdeps/mach/hurd/_G_config.h (_G_int16_t): Remove.
29896         (_G_int32_t): Likewise.
29897         (_G_uint16_t): Likewise.
29898         (_G_uint32_t): Likewise.
29899         (_G_HAVE_BOOL): Likewise.
29900         (_G_HAVE_ATEXIT): Likewise.
29901         (_G_HAVE_LONG_DOUBLE_IO): Likewise.
29902         (_G_HAVE_IO_FILE_OPEN): Likewise.
29904 2012-09-11  H.J. Lu  <hongjiu.lu@intel.com>
29906         * csu/libc-tls.c: Update copyright years.
29908 2012-09-10  Joseph Myers  <joseph@codesourcery.com>
29910         * libioP.h [_G_USING_THUNKS]: Make code unconditional.
29911         [!_G_USING_THUNKS]: Remove conditional code.
29912         * sysdeps/gnu/_G_config.h (_G_USING_THUNKS): Remove.
29913         * sysdeps/mach/hurd/_G_config.h (_G_USING_THUNKS): Likewise.
29915         * libio/libioP.h [__GNUC__] (VTABLE_LABEL): Remove.
29916         [!builtinbuf_vtable && __cplusplus] (builtinbuf_vtable): Likewise.
29917         * sysdeps/generic/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
29918         (_G_VTABLE_LABEL_PREFIX): Likewise.
29919         (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
29920         * sysdeps/gnu/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
29921         (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
29922         (_G_VTABLE_LABEL_PREFIX): Likewise.
29923         (_G_VTABLE_LABEL_PREFIX_ID): Likewise.
29924         * sysdeps/mach/hurd/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
29925         (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
29926         (_G_VTABLE_LABEL_PREFIX): Likewise.
29927         (_G_VTABLE_LABEL_PREFIX_ID): Likewise.
29929 2012-09-10  H.J. Lu  <hongjiu.lu@intel.com>
29931         * libio/Makefile: Include ../Makeconfig before tests.
29932         (tests): Add tst-fopenloc and depend on $(objpfx)tst-fopenloc.check
29933         only if $(build-shared) is yes.
29935         * iconv/gconv_db.c: Update copyright years.
29937 2012-09-10  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
29939         * sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S: Fix
29940         unwind info if defined PIC. Fix special cases description.
29941         * sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S: Likewise.
29943         * sysdeps/x86_64/fpu/s_sinf.S: Fix special cases description, fix
29944         DP_HI_MASK entry.
29945         * sysdeps/x86_64/fpu/s_cosf.S: Likewise.
29947 2012-09-07  H.J. Lu  <hongjiu.lu@intel.com>
29949         * scripts/check-local-headers.sh: Add "shopt -s nullglob".
29951         * iconv/gconv_db.c (free_derivation): Check if deriv->steps
29952         is NULL.
29954         * debug/Makefile (LDFLAGS-tst-chk4): Renamed to ...
29955         (LDLIBS-tst-chk4): This.
29956         (LDFLAGS-tst-chk5): Renamed to ...
29957         (LDLIBS-tst-chk5): This.
29958         (LDFLAGS-tst-chk6): Renamed to ...
29959         (LDLIBS-tst-chk6): This.
29960         (LDFLAGS-tst-lfschk4): Renamed to ...
29961         (LDLIBS-tst-lfschk4): This.
29962         (LDFLAGS-tst-lfschk5): Renamed to ...
29963         (LDLIBS-tst-lfschk5): This.
29964         (LDFLAGS-tst-lfschk6): Renamed to ...
29965         (LDLIBS-tst-lfschk6): This.
29967         * Makefile ($(inst_includedir)/gnu/stubs.h): Remove dependency
29968         on $(common-objpfx)soversions.mk.
29970 2012-09-07  Joseph Myers  <joseph@codesourcery.com>
29972         [BZ #10014]
29973         * manual/examples/inetcli.c (SERVERHOST): Use www.gnu.org as
29974         example host name.
29976 2012-09-07  Siddhesh Poyarekar  <siddhesh@redhat.com>
29978         * malloc/arena.c (arena_get_retry): New function that gets
29979         another arena for the caller to try its request on.
29980         * malloc/malloc.c (__libc_malloc): Use get_another_arena if the
29981         current arena cannot fulfill the request.
29982         (__libc_memalign): Likewise.
29983         (__libc_memalign): Likewise.
29984         (__libc_pvalloc): Likewise.
29985         (__libc_calloc): Likewise.
29987 2012-09-05  John Tobey  <john.tobey@gmail.com>
29989         [BZ #13542]
29990         * manual/arith.texi (Operations on Complex): Fix description
29991         of carg branch cut.
29993 2012-09-06  Joseph Myers  <joseph@codesourcery.com>
29995         [BZ #10014]
29996         * manual/socket.texi (Host Addresses): Use www.gnu.org as example
29997         host name.
29999         [BZ #10038]
30000         * manual/memory.texi (Memory): Make order of menu items match
30001         order of sections.
30003 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
30005         * elf/dl-tls.c (DL_INITIAL_DTV): Removed.
30006         (_dl_initial_dtv): New.  Defined if SHARED isn't defined.
30007         (_dl_deallocate_tls): Restore GL(dl_initial_dtv).
30009 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
30011         * csu/libc-tls.c (static_dtv): Renamed to ...
30012         (_dl_static_dtv): This.  Make it global.
30013         (_dl_initial_dtv): Removed.
30014         (__libc_setup_tls): Updated.
30015         * elf/dl-tls.c (DL_INITIAL_DTV): New macro.
30016         (_dl_deallocate_tls): Replace GL(dl_initial_dtv) with
30017         DL_INITIAL_DTV.
30019 2012-09-06  Petr Machata  <pmachata@redhat.com>
30021         * elf/elf.h (NT_S390_HIGH_GPRS): New macro.
30022         (NT_S390_TIMER, NT_S390_TODCMP, NT_S390_TODPREG): Likewise.
30023         (NT_S390_CTRS, NT_S390_PREFIX, NT_S390_LAST_BREAK): Likewise.
30024         (NT_S390_SYSTEM_CALL, NT_ARM_VFP): Likewise.
30026 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
30028         [BZ #14545]
30029         * csu/libc-tls.c (_dl_initial_dtv): New variable.
30030         * elf/dl-tls.c (_dl_deallocate_tls): Always check dtv before
30031         freeing dtv[-1].
30033 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
30035         [BZ #14544]
30036         * Makeconfig (link-static-before-libc): Replace $(+prector)
30037         with $(+prectorT).
30038         (link-static-after-libc): Replace $(+postctor) with
30039         $(+postctorT).
30040         (link-bounded): Replace $(+prector)/$(+postctor) with
30041         $(+prectorT)/$(+postctorT).
30042         (+prectorT): New macro.
30043         (+postctorT): Likewise.
30045 2012-09-06  Joseph Myers  <joseph@codesourcery.com>
30047         * stdlib/gen-tst-strtod-round.c: Include <assert.h>.
30048         (round_str): Handle values above the maximum for IBM long double
30049         as inexact.
30050         * stdlib/tst-strtod-round.c (tests): Regenerated.
30052 2012-09-06  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
30054         * sysdeps/s390/s390-32/multiarch/Makefile: Remove -mzarch
30055         assembler flag.
30056         * sysdeps/s390/s390-32/multiarch/memcmp.S: Use .machinemode
30057         zarch_nohighgprs around the zarch optimized routines.
30058         * sysdeps/s390/s390-32/multiarch/memcpy.S: Likewise.
30059         * sysdeps/s390/s390-32/multiarch/memset.S: Likewise.
30060         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Explicitly check
30061         for zarch.
30063 2012-09-05  David S. Miller  <davem@davemloft.net>
30065         * sysdeps/sparc/fpu/libm-test-ulps: Update.
30067         * sysdeps/sparc/bits/hwcap.h (HWCAP_SPARC_PAUSE)
30068         (HWCAP_SPARC_CBCOND, HWCAP_SPARC_CRYPTO): Define.
30069         * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Increase to 27.
30070         * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add new
30071         entries.
30073 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
30075         * malloc/arena.c: Fold copyright years.
30076         * malloc/mcheck.c, malloc/memusage.c: Likewise.
30078 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
30080         * malloc/malloc.c (__libc_mallopt) <M_MMAP_MAX>: Fix indentation.
30082 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
30084         * manual/contrib.texi (Contributors): Fix typo.  Complete entry.
30086 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
30088         * malloc/malloc.c (__libc_mallopt) <M_MMAP_THRESHOLD>: Do not
30089         change internal state upon failure.
30091 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
30093         * malloc/mcheck.c (mcheck_check_all): Fix typo.
30094         * malloc/memusage.c (mmap): Likewise.
30095         (mmap64, mremap): Likewise.  Adjust name in comment.
30097 2012-09-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
30099         * libio/fileops.c: Fix typos in comments.
30100         * libio/oldfileops.c: Likewise.
30101         * libio/wfileops.c: Likewise.
30103 2012-09-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
30105         [BZ #1349]
30106         * malloc/Makefile (tests): Add tst-malloc-usable test case.
30107         (tst-malloc-usable-ENV): Set environment for test case.
30108         * malloc/hooks.c (malloc_check_get_size): New function to get
30109         requested size.
30110         * malloc/malloc.c (musable): Use malloc_check_get_size.
30111         * malloc/tst-malloc-usable.c: New test case.
30113 2012-09-05  Andreas Schwab  <schwab@linux-m68k.org>
30115         * stdlib/tst-strtod-overflow.c (TIMEOUT): Define.
30117 2012-09-05  Allan McRae  <allan@archlinux.org>
30119         [BZ #13966]
30120         * configure.in (CXX_SYSINCLUDES): Use compiler output to
30121         determine header location.
30122         * configure: Regenerated.
30124 2012-09-05  Andreas Schwab  <schwab@linux-m68k.org>
30126         * stdlib/gen-tst-strtod-round.c (formats): Add Motorola extended
30127         float format.
30128         * stdlib/tst-strtod-round.c (TEST) [LDBL_MANT_DIG == 64 &&
30129         LDBL_MAX_EXP == 16384]: Add case for Motorola extended float
30130         format.
30131         (test): Regenerate.
30133 2012-09-04  David S. Miller  <davem@davemloft.net>
30135         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: New file.
30136         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: New file.
30137         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: New file.
30139 2012-09-04  Florian Weimer  <fweimer@redhat.com>
30141         * stdlib/tst-secure-getenv.c (alternative_main): Only warn on SGID
30142         failures.
30144         * stdlib/tst-secure-getenv.c: Fix whitespace in comments.
30146 2012-09-04  Joseph Myers  <joseph@codesourcery.com>
30148         [BZ #9914]
30149         * libio/iogetdelim.c: Include <limits.h>.
30150         (_IO_getdelim): Avoid integer overflow in testing whether cur_len
30151         + len + 1 would overflow.
30153 2012-09-03  Andreas Jaeger  <aj@suse.de>
30155         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
30156         * sysdeps/i386/fpu/libm-test-ulps: Update.
30158 2012-09-03  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
30160         * sysdeps/i386/i686/fpu/multiarch/Makefile (sysdep_routines):
30161         Add s_sinf-sse2, s_conf-sse2.
30163         * sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S: New file.
30164         * sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S: New file.
30165         * sysdeps/i386/i686/fpu/multiarch/s_sinf.c: New file.
30166         * sysdeps/i386/i686/fpu/multiarch/s_cosf.c: New file.
30168         * sysdeps/ieee754/flt-32/s_sinf.c (SINF, SINF_FUNC): Add macros
30169         for using routine as __sinf_ia32.
30170         Use macro for function declaration and weak_alias.
30171         * sysdeps/ieee754/flt-32/s_cosf.c (COSF, COSF_FUNC): Add macros
30172         for using routine as __cosf_ia32.
30173         Use macro for function declaration and weak_alias.
30175         * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Fix Copyright.
30176         * sysdeps/i386/i686/fpu/multiarch/e_expf.c: Fix Copyright.
30178         * sysdeps/x86_64/fpu/s_sinf.S: New file.
30179         * sysdeps/x86_64/fpu/s_cosf.S: New file.
30180         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
30182         * math/libm-test.inc (cos_test): Add more test cases.
30183         (sin_test): Likewise.
30184         (sincos_test): Likewise.
30186 2012-09-03  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
30188         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c
30189         (IFUNC_RESOLVE): Make pointers to the specialized implementations
30190         hidden.
30191         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
30193 2012-09-02  H.J. Lu  <hongjiu.lu@intel.com>
30195         [BZ #14538]
30196         * sysdeps/x86_64/dl-machine.h (elf_machine_dynamic): Use the
30197         first element of the GOT.
30198         (elf_machine_load_address): Return the difference between
30199         the runtime address of _DYNAMIC and elf_machine_dynamic ().
30201 2012-09-01  Allan McRae  <allan@archlinux.org>
30203         [BZ #13412]
30204         * configure.in (AWK): Require gawk version 3.0 or later.
30205         * configure: Regenerated.
30207 2012-09-01  Joseph Myers  <joseph@codesourcery.com>
30209         * sysdeps/unix/sysv/linux/kernel-features.h
30210         (__ASSUME_POSIX_CPU_TIMERS): Remove.
30211         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
30212         [__NR_clock_getres]: Make code unconditional.
30213         [!__ASSUME_POSIX_CPU_TIMERS]: Remoce conditional code.
30214         (clock_getcpuclockid): Remove code left unreachable by removal of
30215         conditionals.
30216         * sysdeps/unix/sysv/linux/clock_getres.c [__NR_clock_getres]: Make
30217         code unconditional.
30218         [__ASSUME_POSIX_CPU_TIMERS]: Likewise.
30219         [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
30220         * sysdeps/unix/sysv/linux/clock_gettime.c [__NR_clock_gettime]:
30221         Make code unconditional.
30222         [__ASSUME_POSIX_CPU_TIMERS]: Likewise.
30223         [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
30224         * sysdeps/unix/sysv/linux/clock_settime.c
30225         [__ASSUME_POSIX_CPU_TIMERS <= 0 && __NR_clock_settime]: Remove
30226         conditional code.
30227         [__ASSUME_POSIX_CPU_TIMERS]: Make code unconditional.
30228         [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
30230 2012-08-29  H.J. Lu  <hongjiu.lu@intel.com>
30232         [BZ #14476]
30233         * Makefile (install): Also pass LD_SO=$(ld.so-version) to
30234         scripts/test-installation.pl.
30236         * scripts/test-installation.pl: Use LD_SO to get $ld_so_name
30237         and $ld_so_version if it is set.
30239 2012-08-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
30241         [BZ #14516]
30242         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Don't return
30243         failure if reading from procfs failed.
30244         * sysdeps/unix/sysv/linux/ttyname_r.c (ttyname_r): Likewise.
30246 2012-08-27  Joseph Myers  <joseph@codesourcery.com>
30248         * sysdeps/unix/sysv/linux/kernel-features.h
30249         (__ASSUME_STAT64_SYSCALL): Remove all definitions.
30250         * sysdeps/unix/sysv/linux/fxstat64.c [!__ASSUME_STAT64_SYSCALL]:
30251         Remove conditional code.
30252         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
30253         * sysdeps/unix/sysv/linux/fxstatat64.c [!__ASSUME_STAT64_SYSCALL]:
30254         Remove conditional code.
30255         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
30256         * sysdeps/unix/sysv/linux/i386/fxstat.c
30257         [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
30258         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
30259         * sysdeps/unix/sysv/linux/i386/fxstatat.c
30260         [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
30261         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
30262         * sysdeps/unix/sysv/linux/i386/lxstat.c
30263         [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
30264         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
30265         * sysdeps/unix/sysv/linux/i386/xstat.c [!__ASSUME_STAT64_SYSCALL]:
30266         Remove conditional code.
30267         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
30268         * sysdeps/unix/sysv/linux/lxstat64.c [!__ASSUME_STAT64_SYSCALL]:
30269         Remove conditional code.
30270         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
30271         * sysdeps/unix/sysv/linux/sparc/sparc64/xstat.c: Do not include
30272         <kernel-features.h>.
30273         [__NR_stat64 && !__ASSUME_STAT64_SYSCALL] (__have_no_stat64):
30274         Remove.
30275         * sysdeps/unix/sysv/linux/xstat64.c [!__ASSUME_STAT64_SYSCALL]:
30276         Remove conditional code.
30277         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
30278         * sysdeps/unix/sysv/linux/xstatconv.c [!__ASSUME_STAT64_SYSCALL]:
30279         Remove conditional.
30281 2012-08-27  Mike Frysinger  <vapier@gentoo.org>
30283         [BZ #5400]
30284         * NEWS: Add fixed bug number.
30286 2012-08-27  Joseph Myers  <joseph@codesourcery.com>
30288         [BZ #14519]
30289         * stdlib/strtod_l.c (round_and_return): Return -0.0 for
30290         underflowing exponent in case of negative sign.
30291         * stdlib/tst-strtod-round-data: Add more tests.
30292         * stdlib/tst-strtod-round.c (tests): Regenerated.
30294         [BZ #3479]
30295         * stdlib/strtod_l.c (NDIG): Remove.
30296         (HEXNDIG): Likewise.
30297         (MPNSIZE): Increase to represent 10^n where 2^-n is 1/4 ulp of the
30298         smallest representable value.
30299         (____STRTOF_INTERNAL): Use all fractional decimal digits that may
30300         lie within an exact representation of 1/2 ulp of the result.
30301         * stdlib/fpioconst.c (__tens): Include 10^2^9 and 10^2^10
30302         unconditionally.
30303         (TENS_P9_IDX): Define unconditionally.
30304         (TENS_P9_SIZE): Likewise.
30305         (TENS_P10_IDX): Likewise.
30306         (TENS_P10_SIZE): Likewise.
30307         [BITS_PER_MP_LIMB == 32]: Change condition for larger powers of 10
30308         to !defined __NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024.
30309         [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024] (__tens): Add
30310         entries for 10^2^13 and 10^2^14.
30311         [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024]
30312         (TENS_P13_IDX): Define.
30313         (TENS_P13_SIZE): Likewise.
30314         (TENS_P14_IDX): Likewise.
30315         (TENS_P14_SIZE): Likewise.
30316         (_fpioconst_pow10): Change array size to
30317         FPIOCONST_POW10_ARRAY_SIZE.  Make entries for 10^2^9 and 10^2^10
30318         unconditional.
30319         (_fpioconst_pow10) [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ >
30320         1024]: Add entries for 10^2^13 and 10^2^14.
30321         [LAST_POW10 > _LAST_POW10]: Remove #error.
30322         * stdlib/fpioconst.h (FPIOCONST_POW10_ARRAY_SIZE): Define.
30323         (_fpioconst_pow10): Change array size to
30324         FPIOCONST_POW10_ARRAY_SIZE.
30325         * stdlib/gen-fpioconst.c: New file.
30326         * stdlib/gen-tst-strtod-round.c: Likewise.
30327         * stdlib/tst-strtod-round-data: Likewise.
30328         * stdlib/tst-strtod-round.c: Likewise.
30329         * stdlib/Makefile (tests): Add tst-strtod-round.
30331         [BZ #14459]
30332         * stdlib/strtod_l.c: Include <stdint.h>.
30333         (NDEBUG): Do not define.
30334         (round_and_return): Change EXPONENT parameter to type intmax_t.
30335         Rearrange calculations to avoid internal overflow possibilities.
30336         (str_to_mpn): Change EXPONENT parameter to type intmax_t *.
30337         Rearrange calculations to avoid internal overflow possibilities.
30338         Assert that number fits inside MPNSIZE limbs.
30339         (____STRTOF_INTERNAL): Change EXPONENT variable to type intmax_t.
30340         Change DIG_NO, INT_NO and LEAD_ZERO to type size_t.  Rearrange
30341         calculations and add assertions to avoid internal overflow
30342         possibilities.  Add casts to avoid signed/unsigned operations.
30343         * stdlib/tst-strtod-overflow.c: New file.
30344         * stdlib/Makefile (tests): Add tst-strtod-overflow.
30346 2012-08-25  Marek Polacek  <polacek@redhat.com>
30348         * time/time.h: Fix some typos in comments.
30350 2012-08-23  Roland McGrath  <roland@hack.frob.com>
30352         * posix/tst-rfc3484.c: #undef USE_NSCD before including getaddrinfo.c.
30353         * posix/tst-rfc3484-2.c: Likewise.
30354         * posix/tst-rfc3484-3.c: Likewise.
30356 2012-08-23  Steve McIntyre  <steve.mcintyre@linaro.org>
30358         * elf/elf.h (EF_ARM_ABI_FLOAT_SOFT): New macro.
30359         (EF_ARM_ABI_FLOAT_HARD): Likewise.
30361 2012-08-23  Joseph Myers  <joseph@codesourcery.com>
30363         * sysdeps/unix/sysv/linux/dl-fxstatat64.c: Use <> instead of "" in
30364         #include of fxstatat64.c.
30366 2012-08-22  Roland McGrath  <roland@hack.frob.com>
30368         * shadow/getspent.c: #undef USE_NSCD before #include that gets the code.
30369         * shadow/getspent_r.c: Likewise.
30370         * shadow/getspnam.c: Likewise.
30371         * shadow/getspnam_r.c: Likewise.
30372         * gshadow/getsgent.c: Likewise.
30373         * gshadow/getsgent_r.c: Likewise.
30374         * gshadow/getsgnam.c: Likewise.
30375         * gshadow/getsgnam_r.c: Likewise.
30376         * inet/getnetbyad.c: Likewise.
30377         * inet/getnetbyad_r.c: Likewise.
30378         * inet/getnetbynm.c: Likewise.
30379         * inet/getnetbynm_r.c: Likewise.
30380         * inet/getnetent.c: Likewise.
30381         * inet/getnetent_r.c: Likewise.
30382         * inet/getproto.c: Likewise.
30383         * inet/getproto_r.c: Likewise.
30384         * inet/getprtent.c: Likewise.
30385         * inet/getprtent_r.c: Likewise.
30386         * inet/getprtname.c: Likewise.
30387         * inet/getprtname_r.c: Likewise.
30388         * inet/getrpcbyname.c: Likewise.
30389         * inet/getrpcbyname_r.c: Likewise.
30390         * inet/getrpcbynumber.c: Likewise.
30391         * inet/getrpcbynumber_r.c: Likewise.
30392         * inet/getrpcent.c: Likewise.
30393         * inet/getrpcent_r.c: Likewise.
30394         * inet/getaliasent.c: Likewise.
30395         * inet/getaliasent_r.c: Likewise.
30396         * inet/getaliasname.c: Likewise.
30397         * inet/getaliasname_r.c: Likewise.
30398         * nscd/getgrgid_r.c: Likewise.
30399         * nscd/getgrnam_r.c: Likewise.
30400         * nscd/gethstbyad_r.c: Likewise.
30401         * nscd/gethstbynm3_r.c: Likewise.
30402         * nscd/getpwnam_r.c: Likewise.
30403         * nscd/getpwuid_r.c: Likewise.
30404         * nscd/getsrvbynm_r.c: Likewise.
30405         * nscd/getsrvbypt_r.c: Likewise.
30406         * nscd/gai.c: Likewise.
30408         * configure.in (build_nscd): New substituted variable, set
30409         by --disable-build-nscd and defaults to $use_nscd.
30410         * configure: Regenerated.
30411         * config.make.in (build-nscd): New substituted variable.
30412         * nscd/Makefile (others, others-pie, install-sbin, extra-objs):
30413         Change conditional to require [$(build-nscd) = yes] as well.
30414         * NEWS: Mention --disable-build-nscd in the --disable-nscd item.
30416         [BZ# 13696]
30417         * configure.in (use_nscd): New substituted variable, set by
30418         --disable-nscd.  If enabled, define USE_NSCD.
30419         * configure: Regenerated.
30420         * config.h.in: Add USE_NSCD.
30421         * config.make.in (use-nscd): New substituted variable.
30422         * inet/Makefile (CFLAGS-gethstbyad_r.c): Likewise.
30423         (CFLAGS-gethstbynm_r.c, CFLAGS-gethstbynm2_r.c): Likewise.
30424         (CFLAGS-getsrvbynm_r.c, CFLAGS-getsrvbypt_r.c): Variables removed.
30425         * grp/Makefile (CFLAGS-getgrgid_r.c): Remove -DUSE_NSCD.
30426         (CFLAGS-getgrnam_r.c): Likewise.
30427         (CFLAGS-initgroups.c): Likewise.
30428         * posix/Makefile (CFLAGS-getaddrinfo.c): Remove -DUSE_NSCD.
30429         * pwd/Makefile (CFLAGS-getpwuid_r.c, CFLAGS-getpwnam_r.c):
30430         Variables removed.
30431         * inet/getnetgrent_r.c
30432         (nscd_setnetgrent): New function, broken out of ...
30433         (setnetgrent): ... here.  Call it.
30434         (innetgr): Conditionalize nscd bits on [USE_NSCD].
30435         (nscd_getnetgrent): Conditionalize on [USE_NSCD].
30436         (__internal_getnetgrent_r): Conditionalize its use on [USE_NSCD].
30437         * nscd/Makefile (routines, aux): Move definitions after include of
30438         Makeconfig.  Conditionalize on [$(use-nscd) != no].
30439         * nss/nsswitch.c (nss_load_all_libraries, __nss_disable_nscd):
30440         Conditionalize on [USE_NSCD].
30441         (is_nscd, nscd_init_cb): Likewise.
30442         (nss_load_library): Conditionalize init callback on [USE_NSCD].
30443         * nss/nss_files/files-init.c: Conditionalize body on [USE_NSCD].
30444         * nss/nss_db/db-init.c: Likewise.
30445         * nscd/nscd.c (main): Conditionalize __nss_disable_nscd call on
30446         [USE_NSCD].
30447         * sysdeps/unix/sysv/linux/check_pf.c (get_nl_timestamp): New function.
30448         (make_request): Use it.
30449         (cache_valid_p): New function.
30450         (__check_pf): Use it.
30451         * NEWS: Add item for --disable-nscd.
30453 2012-08-22  Dmitry V. Levin  <ldv@altlinux.org>
30455         * configure.in (SED): Update AC_CHECK_PROG_VER's version extract regexp
30456         to support sed >= 4.2.1-20-ga9bf076.
30457         * configure: Regenerated.
30459 2012-08-22  Roland McGrath  <roland@hack.frob.com>
30461         * csu/libc-start.c (apply_irel): Move extern declarations inside here.
30462         Conditionalize whole body on [IREL].
30464 2012-08-22  Jeff Law <law@redhat.com>
30466         [BZ #14505]
30467         * sysdeps/posix/getaddrinfo.c (gaih_inet): Only use gethostbyname4_r
30468         if the family is PF_UNSPEC.
30470 2012-08-22  Mike Frysinger  <vapier@gentoo.org>
30472         * Makerules (lib-version): Rename from V.
30473         (install-lib-nosubdir): Change V to lib-version.
30475 2012-08-22  Will Schmidt  <will_schmidt@vnet.ibm.com>
30477         [BZ #14252]
30478         * powerpc32/power6/wcschr.c: New file.
30479         * powerpc32/power6/wcscpy.c: New file.
30480         * powerpc32/power6/wcsrchr.c: New file.
30481         * powerpc64/power6/wcschr.c: New file.
30482         * powerpc64/power6/wcscpy.c: New file.
30483         * powerpc64/power6/wcsrchr.c: New file.
30485 2012-08-21  Maxim Kuvyrkov  <maxim@codesourcery.com>
30487         * string/str-two-way.h (AVAILABLE1_USES_J): New macro, define default.
30488         (two_way_short_needle): Use it.
30489         * string/strstr.c (AVAILABLE1_USES_J): Define.
30490         * string/strcasestr.c: Likewise.
30492         * string/str-two-way.h (two_way_short_needle): Use pointers instead of
30493         array references.
30494         * string/strcasestr.c (TOLOWER): Make side-effect safe.
30496         [BZ #11607]
30497         * NEWS: Add an entry.
30498         * string/str-two-way.h (AVAILABLE1, AVAILABLE2, RET0_IF_0): New macros,
30499         define their defaults.
30500         (two_way_short_needle): Detect end-of-string on-the-fly.
30501         * string/strcasestr.c, string/strstr.c (AVAILABLE): Update.
30502         (AVAILABLE1, AVAILABLE2, RET0_IF_0, AVAILABLE_USES_J): Define.
30503         * string/bug-strcasestr1.c: New test.
30504         * string/Makefile: Run it.
30506 2012-08-21  Maxim Kuvyrkov  <maxim@codesourcery.com>
30508         [BZ #11607]
30509         * string/str-two-way.h (two_way_short_needle): Optimize matching of
30510         the first character.
30512 2012-08-21  Roland McGrath  <roland@hack.frob.com>
30514         * csu/elf-init.c (__libc_csu_irel): Function removed.
30515         * csu/libc-start.c (apply_irel): New function.
30516         (LIBC_START_MAIN): Call it instead of __libc_csu_irel.
30518 2012-08-21  Joseph Myers  <joseph@codesourcery.com>
30520         * sysdeps/unix/sysv/linux/kernel-features.h
30521         (__ASSUME_FADVISE64_64_SYSCALL): Remove.
30522         * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Do not include
30523         <kernel-features.h>.
30524         [__NR_fadvise64_64]: Make code unconditional.
30525         [!__ASSUME_FADVISE64_64_SYSCALL]: Remove conditional code.
30526         [__NR_fadvise64 && (!__ASSUME_FADVISE64_64_SYSCALL ||
30527         !__NR_fadvise64_64)]: Likewise.
30528         [!(__NR_fadvise64 && (!__ASSUME_FADVISE64_64_SYSCALL ||
30529         !__NR_fadvise64_64))]: Likewise.
30530         [__NR_fadvise64]: Make code unconditional.
30531         [!__NR_fadvise64]: Remove conditional code.
30532         * sysdeps/unix/sysv/linux/posix_fadvise64.c: Do not include
30533         <kernel-features.h>.
30534         (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
30535         unconditional.
30536         (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
30537         conditional code.
30538         * sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise64.c: Do
30539         not include <kernel-features.h>.
30540         (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
30541         unconditional.
30542         (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
30543         conditional code.
30544         * sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c: Do not
30545         include <kernel-features.h>.
30546         (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
30547         unconditional.
30548         (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
30549         conditional code.
30551 2012-08-21  Will Schmidt  <will_schmidt@vnet.ibm.com>
30553         * sysdeps/powerpc/powerpc64/power7/memchr.S: Unrolled short loop and
30554         slight instruction rearrangements per scrollpipe analysis.
30555         * sysdeps/powerpc/powerpc64/power7/memchr.S: Likewise.
30557 2012-08-20  Roland McGrath  <roland@hack.frob.com>
30559         * manual/syslog.texi (syslog; vsyslog, closelog):
30560         Fix typo repeated twice: @file{dev/log} -> @file{/dev/log}.
30561         Reported by Ricardo Catalinas Jiménez <jimenezrick@gmail.com>.
30563         * elf/dl-sysdep.c (_dl_important_hwcaps): Fix conditional on using
30564         DSOCAPS to match condition on defining it.
30566 2012-08-20  Joseph Myers  <joseph@codesourcery.com>
30568         * sysdeps/unix/sysv/linux/kernel-features.h
30569         (__ASSUME_SWAPCONTEXT_SYSCALL): Remove.
30570         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
30571         [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
30572         [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
30573         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
30574         [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
30575         [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
30576         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
30577         [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
30578         [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
30580         * sysdeps/unix/sysv/linux/kernel-features.h [__s390__ &&
30581         __LINUX_KERNEL_VERSION >= 0x020616] (__ASSUME_UTIMES): Define.
30583         * sysdeps/unix/sysv/linux/kernel-features.h
30584         (__ASSUME_MMAP2_SYSCALL): Remove all definitions.
30585         * sysdeps/unix/sysv/linux/mmap64.c [__NR_mmap2]: Make code
30586         unconditional.
30587         [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
30588         * sysdeps/unix/sysv/linux/i386/mmap.S (__mmap)
30589         [__ASSUME_MMAP2_SYSCALL]: Make code unconditional.
30590         (__mmap) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
30591         * sysdeps/unix/sysv/linux/i386/mmap64.S (__mmap64) [__NR_mmap2]:
30592         Make code unconditional.
30593         (__mmap64) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
30594         (__mmap64) [!__NR_mmap2]: Likewise.
30595         * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S (__mmap)
30596         [__ASSUME_MMAP2_SYSCALL]: Make code unconditional.
30597         (__mmap) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
30598         * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S (__mmap64)
30599         [__NR_mmap2]: Make code unconditional.
30600         (__mmap64) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
30601         (__mmap64) [!__NR_mmap2]: Likewise.
30603 2012-08-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
30605         * sysdeps/unix/sysv/linux/s390/s390-32/getrlimit.c: Remove.
30607 2012-08-18  Andreas Jaeger  <aj@suse.de>
30609         * stdio-common/_itoa.c (_itoa): Add missing DUMMY variable.
30611 2012-08-18  Mike Frysinger  <vapier@gentoo.org>
30613         * include/sys/socket.h (__have_sock_cloexec): Add attribute_hidden.
30614         * include/unistd.h (__have_sock_cloexec): Likewise.
30615         (__have_pipe2): Likewise.
30616         (__have_dup3): Likewise.
30618 2012-08-18  Mike Frysinger  <vapier@gentoo.org>
30620         [BZ #9685]
30621         * include/unistd.h (__have_pipe2): Change define into an extern int.
30622         (__have_dup3): Likewise.
30623         * socket/have_sock_cloexec.c: Include fcntl.h.
30624         (__have_pipe2): New variable.
30625         (__have_dup3): Likewise.
30627 2012-08-17  Mike Frysinger  <vapier@gentoo.org>
30629         * sysdeps/unix/sysv/linux/nice.c: Adjust #include.
30631 2012-08-17  Marek Polacek  <polacek@redhat.com>
30633         * sysdeps/ieee754/ldbl-96/s_sincosl.c (__sincosl): Use __attribute__
30634         ((unused)) on I1, which is set by GET_LDOUBLE_WORDS but never used.
30636 2012-08-17  Roland McGrath  <roland@hack.frob.com>
30638         * configure.in: Add AC_SUBST for sysheaders.
30639         * configure: Regenerated.
30640         * config.make.in (sysheaders): New substituted variable.
30642         * sysdeps/unix/mkfifo.c: Moved ...
30643         * sysdeps/posix/mkfifo.c: ... here.
30644         * sysdeps/unix/mkfifoat.c: Moved ...
30645         * sysdeps/posix/mkfifoat.c: ... here.
30647         * sysdeps/unix/utime.c: Moved ...
30648         * sysdeps/posix/utime.c: ... here.
30650         * sysdeps/unix/time.c: Moved ...
30651         * sysdeps/posix/time.c: ... here.
30652         * sysdeps/unix/sysv/linux/time.c: Adjust #include.
30653         * sysdeps/unix/sysv/linux/sparc/sparc64/time.c: Likewise.
30655         * sysdeps/unix/nice.c: Moved ...
30656         * sysdeps/posix/nice.c: ... here.
30658         * sysdeps/unix/alarm.c: Moved ...
30659         * sysdeps/posix/alarm.c: ... here.
30661         * intl/Makefile ($(codeset_mo)): Depend on the input file.
30663 2012-08-17  Jeff Law <law@redhat.com>
30665         * intl/Makefile (codeset_mo): New variable.
30666         ($(codeset_mo)): New target.
30667         (tst-codeset.out): Depend on that.  Remove explicit rule.
30668         (tst-gettext3.out, tst-gettext5.out): Likewise.
30669         (LOCPATH-ENV, tst-codeset-ENV): New variables.
30670         (tst-gettext3-ENV, tst-gettext5-ENV): Likewise.
30671         * intl/tst-codeset.sh: Remove.
30672         * intl/tst-gettext3.sh: Likewise.
30673         * intl/tst-gettext5.sh: Likewise.
30675 2012-08-17  Roland McGrath  <roland@hack.frob.com>
30677         * sysdeps/unix/inet/syscalls.list: File removed.  Move contents into ...
30678         * sysdeps/unix/syscalls.list: ... here.
30680         * sysdeps/posix/getaddrinfo.c
30681         (save_gaiconf_mtime, check_gaiconf_mtime): New functions.
30682         (gaiconf_init, gaiconf_reload): Use them.
30683         [!_STATBUF_ST_NSEC]
30684         (gaiconf_mtime, save_gaiconf_mtime, check_gaiconf_mtime):
30685         Define using time_t rather than struct timespec.
30687         * sysdeps/generic/malloc-machine.h (MUTEX_INITIALIZER): New macro.
30688         (atomic_full_barrier, atomic_read_barrier, atomic_write_barrier):
30689         Macros removed.
30690         * malloc/arena.c (save_malloc_hook, save_free_hook): Conditionalize on
30691         [!NO_THREADS].
30692         (malloc_atfork, free_atfork, atfork_recursive_cntr): Likewise.
30693         (ptmalloc_lock_all, ptmalloc_unlock_all, ptmalloc_unlock_all2):
30694         Likewise.
30696         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Use NULL rather than 0 for
30697         __libc_cleanup_push argument.
30699         * bits/param.h: New file.
30700         * misc/sys/param.h: New file.
30701         * include/sys/param.h: New file.
30702         * misc/Makefile (headers): Add bits/param.h.
30703         * sysdeps/generic/sys/param.h: File removed.
30704         * sysdeps/unix/sysv/linux/bits/param.h: New file.
30705         * sysdeps/unix/sysv/linux/sys/param.h: File removed.
30706         * sysdeps/mach/hurd/bits/param.h: New file.
30707         * sysdeps/mach/hurd/sys/param.h: File removed.
30709         * elf/dl-close.c (_dl_close_worker): Add a cast and a comment to the
30710         last change.
30712         * libio/genops.c (_IO_unbuffer_write): Conditionalize locking code on
30713         [_IO_MTSAFE_IO].
30714         * libio/libioP.h [!_IO_MTSAFE_IO && !NOT_IN_libc]
30715         (_IO_acquire_lock, _IO_acquire_lock_clear_flags2, _IO_release_lock):
30716         New macros.
30718         * Makeconfig [$(libc-reentrant) = yes] (libio-mtsafe): New variable.
30719         * libio/Makefile (CPPFLAGS): Append $(libio-mtsafe) unconditionally
30720         rather than -D_IO_MTSAFE_IO conditionally.
30721         * stdio-common/Makefile (CPPFLAGS): Likewise.
30722         * wcsmbs/Makefile (CPPFLAGS): Likewise.
30723         * stdlib/Makefile (CFLAGS-strfmon.c, CFLAGS-strfmon_l.c):
30724         Use $(libio-mtsafe).
30725         * debug/Makefile (CFLAGS-sprintf_chk.c): Use $(libio-mtsafe) instead
30726         of -D_IO_MTSAFE_IO.
30727         (CFLAGS-snprintf_chk.c, CFLAGS-vsprintf_chk.c): Likewise.
30728         (CFLAGS-vsnprintf_chk.c, CFLAGS-asprintf_chk.c): Likewise.
30729         (CFLAGS-vasprintf_chk.c, CFLAGS-obprintf_chk.c): Likewise.
30730         (CFLAGS-dprintf_chk.c, CFLAGS-vdprintf_chk.c): Likewise.
30731         (CFLAGS-printf_chk.c, CFLAGS-fprintf_chk.c): Likewise.
30732         (CFLAGS-vprintf_chk.c, CFLAGS-vfprintf_chk.c): Likewise.
30733         (CFLAGS-gets_chk.c, CFLAGS-fgets_chk.c): Likewise.
30734         (CFLAGS-fgets_u_chk.c, CFLAGS-fread_chk.c): Likewise.
30735         (CFLAGS-fread_u_chk.c): Likewise.
30736         (CFLAGS-swprintf_chk.c, CFLAGS-vswprintf_chk.c): Likewise.
30737         (CFLAGS-wprintf_chk.c, CFLAGS-fwprintf_chk.c): Likewise.
30738         (CFLAGS-vwprintf_chk.c, CFLAGS-vfwprintf_chk.c): Likewise.
30739         (CFLAGS-fgetws_chk.c, CFLAGS-fgetws_u_chk.c): Likewise.
30740         * grp/Makefile (CFLAGS-fgetgrent_r.c, CFLAGS-putgrent.c): Likewise.
30741         * gshadow/Makefile (CFLAGS-fgetsgent_r.c, CFLAGS-putsgent.c): Likewise.
30742         * misc/Makefile (CFLAGS-mntent_r.c): Likewise.
30743         * pwd/Makefile (CFLAGS-fgetpwent_r.c): Likewise.
30744         * shadow/Makefile (CFLAGS-fgetspent_r.c, CFLAGS-putspent.c): Likewise.
30746         * libio/Makefile: Test [$(libc-reentrant) = yes]
30747         instead of [$(filter %REENTRANT, $(defines)) nonempty].
30749         * Makeconfig
30750         [$(libc-reentrant) = yes] (defines): Append -D_LIBC_REENTRANT.
30751         * sysdeps/pthread/configure: File removed.
30752         * sysdeps/pthread/Makeconfig: New file.
30753         * sysdeps/mach/hurd/Makeconfig (libc-reentrant): New variable.
30754         * sysdeps/mach/hurd/configure.in: Don't touch DEFINES here.
30756 2012-08-16  Gary Benson  <gbenson@redhat.com>
30758         * elf/dl-close.c (_dl_close_worker): Also set r->r_map when
30759         unmapping the first object in a namespace.
30761 2012-08-16  Roland McGrath  <roland@hack.frob.com>
30763         * inet/getnetgrent_r.c (internal_setnetgrent): Renamed to ...
30764         (__internal_setnetgrent): ... this.  Add internal_function to
30765         definition.  Add libc_hidden_def.
30766         (setnetgrent): Update caller.
30767         (internal_endnetgrent): Renamed to ...
30768         (__internal_endnetgrent): ... this.  Add internal_function to
30769         definition.  Add libc_hidden_def.
30770         (endnetgrent): Update caller.
30771         (internal_getnetgrent_r): Renamed to ...
30772         (__internal_getnetgrent_r): ... this.  Add internal_function to
30773         definition.  Add libc_hidden_def.
30774         (__getnetgrent_r): Update caller.
30775         * inet/netgroup.h: Update declarations.  Add libc_hidden_proto uses.
30777 2012-08-16  Joseph Myers  <joseph@codesourcery.com>
30779         * stdlib/longlong.h: Update from GCC.
30781 2012-08-16  Roland McGrath  <roland@hack.frob.com>
30783         * stdlib/gmp-impl.h (udiv_qrnnd_preinv): Use __attribute__ ((unused))
30784         on _QL, which is set by umul_ppmm but never used.
30785         * stdio-common/_itoa.c (_itoa): Use __attribute__ ((unused)) on DUMMY
30786         variables, which are set by GMP macros but never used.
30787         * stdio-common/_itowa.c (_itowa): Likewise.
30788         * stdlib/divmod_1.c (mpn_divmod_1): Likewise.
30789         * stdlib/mod_1.c (mpn_mod_1): Likewise.
30791 2012-08-16  Carlos O'Donell  <carlos_odonell@mentor.com>
30793         * sysdeps/sh/ldsodefs.h (ARCH_PLTENTER_MEMBERS) <sh_gnu_pltenter>:
30794         struct La_sh_regs is not constant.
30795         * sysdeps/sparc/ldsodefs.h (ARCH_PLTENTER_MEMBERS)
30796         <sparc32_gnu_pltenter, sparc64_gnu_pltenter>: struct La_sparc32_regs
30797         and struct La_sparc64_regs are not constant.
30799 2012-08-16  Joseph Myers  <joseph@codesourcery.com>
30801         * sysdeps/unix/sysv/linux/kernel-features.h
30802         (__ASSUME_POSIX_TIMERS): Remove.
30803         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
30804         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
30805         * sysdeps/unix/sysv/linux/clock_getres.c [__ASSUME_POSIX_TIMERS]:
30806         Make code unconditional.
30807         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
30808         * sysdeps/unix/sysv/linux/clock_gettime.c [__ASSUME_POSIX_TIMERS]:
30809         Make code unconditional.
30810         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
30811         * sysdeps/unix/sysv/linux/clock_nanosleep.c
30812         [__ASSUME_POSIX_TIMERS]: Make code unconditional.
30813         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
30814         * sysdeps/unix/sysv/linux/clock_settime.c [__ASSUME_POSIX_TIMERS]:
30815         Make code unconditional.
30816         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
30817         [__ASSUME_POSIX_CPU_TIMERS <= 0 && __NR_clock_settime]
30818         (__libc_missing_posix_timers): Remove.
30820 2012-08-15  Roland McGrath  <roland@hack.frob.com>
30822         * elf/dl-load.c (_dl_map_object_from_fd) [SHARED]: Conditionalize
30823         check of GL(dl_error_catch_tsd) on [_LIBC_REENTRANT].
30825         * bits/libc-lock.h (__rtld_lock_initialize): New macro.
30827         * elf/dl-sym.c: Include <stdlib.h>.
30829         * posix/regcomp.c (init_word_char): Use temporaries to hold the 64-bit
30830         constants, which avoids warnings in 32-bit builds.
30832         * bits/fcntl.h [__USE_POSIX199309 || __USE_UNIX98]:
30833         (O_DSYNC, O_RSYNC): New macros (with NetBSD values).
30835         * misc/lseek.c: File moved to ...
30836         * io/lseek.c: ... here.
30838         * rt/clock_nanosleep.c: Include <time.h>, not <sys/time.h>.
30840         * crypt/sha512.c (sha512_process_block) [!USE_TOTAL128]: Avoid
30841         shifting LEN more than 31 bits at once.
30843 2012-08-15  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
30845         [BZ #14195]
30846         * sysdeps/i386/i686/multiarch/strcmp-sssse3.S: Fix
30847         segmentation fault for a case of two empty input strings.
30848         * string/test-strncasecmp.c (check1): Renamed to...
30849         (bz12205): ...this.
30850         (bz14195): Add new testcase for two empty input strings and N > 0.
30851         (test_main): Call new testcase, adapt for renamed function.
30853 2012-08-15  Andreas Jaeger  <aj@suse.de>
30855         [BZ #14090]
30856         * crypt/md5test2.c: New test, based on test supplied by Serge
30857         Belyshev <belyshev@depni.sinp.msu.ru>.
30858         * crypt/Makefile (xtests): Add md5test-giant..
30859         * crypt/Makefile ($(objpfx)md5test-giant): Add.
30861 2012-08-15  Paul Eggert  <eggert@cs.ucla.edu>
30863         [BZ #14090]
30864         * crypt/md5.c (md5_process_block): Don't assume the buffer
30865         length is less than 2**32.
30866         * crypt/sha512.c (sha512_process_block): Don't assume the buffer
30867         length is less than 2**64.
30869 2012-08-15  Roland McGrath  <roland@hack.frob.com>
30871         * string/str-two-way.h: Include <sys/param.h>.
30872         (MAX): Macro removed.
30874         * sysdeps/x86_64/multiarch/strstr-c.c: Add copyright header.
30875         Move #define and #undef of memmove to just before and after
30876         including <string.h>.
30878         * sysdeps/x86_64/multiarch/memmove.c: Don't include <stddef.h>.
30879         [!NOT_IN_libc]: Move #define and #undef of memmove to just before
30880         and after including <string.h>.  Move declarations of
30881         __memmove_sse2, __memmove_ssse3, and __memmove_ssse3_back
30882         to before #include "string/memmove.c".
30884         * include/dirent.h: Declare __getdirentries.
30886         * sysdeps/posix/system.c (do_system): Cast SUB_REF () to void when not
30887         using its value, to avoid warnings in the [!_LIBC_REENTRANT] case.
30889 2012-08-14  Mike Frysinger  <vapier@gentoo.org>
30891         * config.h.in (HAVE_CPP_ASM_DEBUGINFO): Delete.
30892         * sysdeps/i386/configure.in: Remove assembler-with-cpp debug check.
30893         * sysdeps/i386/configure: Regenerated.
30894         * sysdeps/i386/sysdep.h (ENTRY): Remove calls to STABS_CURRENT_FILE1,
30895         STABS_CURRENT_FILE, and STABS_FUN.
30896         (END): Remove call to STABS_FUN_END.
30897         (STABS_CURRENT_FILE1): Delete.
30898         (STABS_CURRENT_FILE): Likewise.
30899         (STABS_FUN): Likewise.
30900         (STABS_FUN_END): Likewise.
30901         (STABS_FUN2): Likewise.
30902         * sysdeps/x86_64/configure.in: Remove assembler-with-cpp debug check.
30903         * sysdeps/x86_64/configure: Regenerated.
30905 2012-08-14  Roland McGrath  <roland@hack.frob.com>
30907         * elf/dl-open.c: Include <atomic.h>.
30908         * elf/dl-lookup.c: Likewise.
30910 2012-08-14  Joseph Myers  <joseph@codesourcery.com>
30912         * sysdeps/unix/sysv/linux/kernel-features.h
30913         (__ASSUME_CLONE_THREAD_FLAGS): Remove.
30914         * sysdeps/unix/sysv/linux/s390/system.c (FORK): Define
30915         unconditionally.
30916         * sysdeps/unix/sysv/linux/sparc/system.c (FORK): Define
30917         unconditionally.
30918         * sysdeps/unix/sysv/linux/system.c [!FORK] (FORK): Do not
30919         condition on __ASSUME_CLONE_THREAD_FLAGS.
30921 2012-08-14  Andreas Jaeger  <aj@suse.de>
30923         * sysdeps/i386/fpu/libm-test-ulps: Update.
30925 2012-08-13  Maxim Kuvyrkov  <maxim@codesourcery.com>
30927         * include/atomic.h (atomic_exchange_and_add): Split into ...
30928         (atomic_exchange_and_add_acq, atomic_exchange_and_add_rel): ... these.
30929         New atomic macros.
30931 2012-08-13  Markus Trippelsdorf  <markus@trippelsdorf.de>
30933         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
30935 2012-08-13  Jeff Law <law@redhat.com>
30937         * manual/stdio.texi (snprintf): Clarify handling of the trailing
30938         null byte in the output string.
30940 2012-08-10  Joseph Myers  <joseph@codesourcery.com>
30942         * sysdeps/unix/sysv/linux/kernel-features.h
30943         (__LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL): Define.
30944         [__LINUX_KERNEL_VERSION >= __LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL]
30945         (__ASSUME_ARG_MAX_STACK_BASED): Define.
30946         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
30947         [__LINUX_KERNEL_VERSION < 0x020617]: Change condition to
30948         !__ASSUME_ARG_MAX_STACK_BASED.  Compare version with
30949         __LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL.
30951 2012-08-09  Jeff Law <law@redhat.com>
30953         [BZ #13939]
30954         * malloc.c/arena.c (reused_arena): New parameter, avoid_arena.
30955         When avoid_arena is set, don't retry in the that arena.  Pick the
30956         next one, whatever it might be.
30957         (arena_get2): New parameter avoid_arena, pass through to reused_arena.
30958         (arena_lock): Pass in new parameter to arena_get2.
30959         * malloc/malloc.c (__libc_memalign): Pass in new parameter to
30960         arena_get2.
30961         (__libc_malloc): Unify retrying after main arena failure with
30962         __libc_memalign version.
30963         (__libc_valloc, __libc_pvalloc, __libc_calloc): Likewise.
30965 2012-08-09  H.J. Lu  <hongjiu.lu@intel.com>
30967         [BZ #14166]
30968         * sysdeps/i386/i686/multiarch/strstr-c.c (strstr): Redefined
30969         to __redirect_strstr.
30970         (__strstr_sse42): Use typeof __redirect_strstr.
30971         (__strstr_ia32): Likewise.
30972         (__libc_strstr): New prototype.
30973         (strstr): Renamed to ...
30974         (__libc_strstr): This.
30975         (strstr): New strong alias of __libc_strstr.
30976         * sysdeps/x86_64/multiarch/strstr-c.c: Likewise.
30977         * sysdeps/unix/sysv/linux/x86_64/time.c (time): Redefined to
30978         __redirect_time.
30979         Include <time.h>.
30980         (__libc_time): New prototype.
30981         (time_ifunc): Replace time with __libc_time.
30982         (time): New strong alias and hidden definition of __libc_time.
30983         (__GI_time): Remove strong alias.
30984         * sysdeps/x86_64/multiarch/memmove.c: Don't include <string.h>.
30985         Include <stddef.h>.
30986         (memmove): Redefined to __redirect_memmove.
30987         (__memmove_sse2): Use typeof __redirect_memmove.
30988         (__memmove_ssse3): Likewise.
30989         (__memmove_ssse3_back): Likewise.
30990         (__libc_memmove): New prototype.
30991         (memmove): Renamed to ...
30992         (__libc_memmove): This.
30993         (memmove): New strong alias of __libc_memmove.
30995 2012-08-08  Mark Salter  <msalter@redhat.com>
30997         * elf/elf.h
30998         (R_MN10300_TLS_GD): Define.
30999         (R_MN10300_TLS_LD): Likewise.
31000         (R_MN10300_TLS_LDO): Likewise.
31001         (R_MN10300_TLS_GOTIE): Likewise.
31002         (R_MN10300_TLS_IE): Likewise.
31003         (R_MN10300_TLS_LE): Likewise.
31004         (R_MN10300_TLS_DTPMOD): Likewise.
31005         (R_MN10300_TLS_DTPOFF): Likewise.
31006         (R_MN10300_TLS_TPOFF): Likewise.
31007         (R_MN10300_SYM_DIFF): Likewise.
31008         (R_MN10300_ALIGN): Likewise.
31009         (R_MN10300_NUM): Update.
31011 2012-08-08  Joseph Myers  <joseph@codesourcery.com>
31013         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_TGKILL):
31014         Remove.
31016 2012-08-08  Roland McGrath  <roland@hack.frob.com>
31018         * sysdeps/posix/fdopendir.c: Include <stddef.h>.
31020         * sysdeps/unix/sysv/linux/readdir64_r.c: Update #include for
31021         sysdeps/unix -> sysdeps/posix move.
31022         * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
31024 2012-08-07      Allan McRae     <allan@archlinux.org>
31026         [BZ #14303]
31027         * sunrpc/rpc_main.c (SVR4_CPP): Remove.
31028         (SUNOS_CPP): Likewise.
31029         (find_cpp): Fall back to selecting system cpp when /lib/cpp is
31030         not found.
31031         (open_input): Call CPP using execvp.
31033 2012-08-07  Joseph Myers  <joseph@codesourcery.com>
31035         * sysdeps/unix/sysv/linux/kernel-features.h
31036         (__ASSUME_PROT_GROWSUPDOWN): Remove.
31037         (__ASSUME_NO_CLONE_DETACHED): Likewise.
31038         (__ASSUME_GETDENTS32_D_TYPE): Likewise.
31039         (__ASSUME_WAITID_SYSCALL): Likewise.
31040         * sysdeps/unix/sysv/linux/dl-execstack.c
31041         (_dl_make_stack_executable) [PROT_GROWSDOWN || PROT_GROWSUP]: Make
31042         code unconditional.
31043         (_dl_make_stack_executable) [!__ASSUME_PROT_GROWSUPDOWN]: Remove
31044         conditional code.
31045         * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS)
31046         [__ASSUME_GETDENTS32_D_TYPE]: Make code unconditional.
31047         (__GETDENTS) [!__ASSUME_GETDENTS32_D_TYPE]: Remove conditional
31048         code.
31049         * sysdeps/unix/sysv/linux/waitid.c [__NR_waitid]: Make code
31050         unconditional.
31051         [__ASSUME_WAITID_SYSCALL]: Likewise.
31052         [!__ASSUME_WAITID_SYSCALL]: Remove conditional code.
31054 2012-08-07  Roland McGrath  <roland@hack.frob.com>
31056         * sysdeps/unix/closedir.c: Renamed to ...
31057         * sysdeps/posix/closedir.c: ... here.
31058         * sysdeps/unix/dirfd.c: Renamed to ...
31059         * sysdeps/posix/dirfd.c: ... here.
31060         * sysdeps/unix/dirstream.h: Renamed to ...
31061         * sysdeps/posix/dirstream.h: ... here.
31062         * sysdeps/unix/fdopendir.c: Renamed to ...
31063         * sysdeps/posix/fdopendir.c: ... here.
31064         * sysdeps/unix/opendir.c: Renamed to ...
31065         * sysdeps/posix/opendir.c: ... here.
31066         * sysdeps/unix/readdir.c: Renamed to ...
31067         * sysdeps/posix/readdir.c: ... here.
31068         * sysdeps/unix/readdir_r.c: Renamed to ...
31069         * sysdeps/posix/readdir_r.c: ... here.
31070         * sysdeps/unix/rewinddir.c: Renamed to ...
31071         * sysdeps/posix/rewinddir.c: ... here.
31072         * sysdeps/unix/seekdir.c: Renamed to ...
31073         * sysdeps/posix/seekdir.c: ... here.
31074         * sysdeps/unix/telldir.c: Renamed to ...
31075         * sysdeps/posix/telldir.c: ... here.
31076         * sysdeps/unix/sysv/linux/opendir.c: Update #include.
31077         * sysdeps/unix/sysv/linux/readdir64.c: Likewise.
31078         * sysdeps/unix/sysv/linux/i386/readdir64.c: Likewise.
31079         * sysdeps/unix/sysv/linux/wordsize-64/readdir.c: Likewise.
31081         * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h: Renamed to ...
31082         * bits/fcntl.h: ... here.
31084         * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h (O_NOCTTY): Define to 0x8000,
31085         not 0.
31086         (O_ASYNC, O_FSYNC, O_SYNC): Move outside [__USE_MISC].
31087         [__USE_XOPEN2K8] (O_DIRECTORY, O_NOFOLLOW, O_CLOEXEC): New macros.
31088         (FCREAT, FEXCL, FTRUNC, FNOCTTY, FNONBLOCK): Macros removed.
31089         (struct flock): Move l_start, l_len to the beginning.
31090         Use __pid_t for l_pid.
31091         [__USE_XOPEN2K] (POSIX_FADV_NORMAL, POSIX_FADV_RANDOM): New macros.
31092         [__USE_XOPEN2K] (POSIX_FADV_SEQUENTIAL, POSIX_FADV_WILLNEED): Likewise.
31093         [__USE_XOPEN2K] (POSIX_FADV_DONTNEED, POSIX_FADV_NOREUSE): Likewise.
31094         (F_GETLK64, F_SETLK64, F_SETLKW64): New macros.
31095         [__USE_XOPEN2K8] (F_DUPFD_CLOEXEC): New macro.
31096         [__USE_LARGEFILE64] (struct flock64): New type.
31097         (F_GETOWN, F_SETOWN): Also define for [__USE_XOPEN2K8].
31099         * sysdeps/unix/bsd/bsd4.4/bits/dirent.h: Renamed to ...
31100         * bits/dirent.h: ... here.
31102         * sysdeps/unix/bsd/bsd4.4/bits/dirent.h
31103         [__INO_T_MATCHES_INO64_T] (_DIRENT_MATCHES_DIRENT64): New macro.
31105 2012-08-07  Joseph Myers  <joseph@codesourcery.com>
31107         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
31108         Change from 2.6.0 to 2.6.16.
31109         * sysdeps/unix/sysv/linux/configure: Regenerated.
31110         * sysdeps/unix/sysv/linux/kernel-features.h
31111         (__ASSUME_POSIX_CPU_TIMERS): Define unconditionally.
31112         (__ASSUME_TGKILL): Define conditional on architectures, not kernel
31113         version.
31114         (__ASSUME_UTIMES): Likewise.
31115         (__ASSUME_CLONE_STOPPED): Remove.
31116         (__ASSUME_FADVISE64_64_SYSCALL): Define conditional on
31117         architectures, not kernel version.
31118         (__ASSUME_PROT_GROWSUPDOWN): Define unconditionally.
31119         (__ASSUME_NO_CLONE_DETACHED): Likewise.
31120         (__ASSUME_GETDENTS32_D_TYPE): Likewise.
31121         (__ASSUME_WAITID_SYSCALL): Likewise.
31122         [__sparc__ && __arch64__] (__ASSUME_STAT64_SYSCALL): Do not
31123         condition definition on __LINUX_KERNEL_VERSION >= 0x02060c.
31124         * README: State 2.6.16 as minimum Linux kernel version.  Do not
31125         refer to older versions.
31127 2012-08-06  Roland McGrath  <roland@hack.frob.com>
31129         * dirent/alphasort.c [_DIRENT_MATCHES_DIRENT64]:
31130         Define alphasort64 as an alias.
31131         * dirent/versionsort.c [_DIRENT_MATCHES_DIRENT64]:
31132         Define versionsort64 as an alias.
31133         * dirent/scandir.c [_DIRENT_MATCHES_DIRENT64]:
31134         Define scandir64 as an alias.
31135         * dirent/scandirat.c [_DIRENT_MATCHES_DIRENT64]:
31136         Define scandirat64 as an alias.
31137         * dirent/alphasort64.c (alphasort64):
31138         Conditionalize on [!_DIRENT_MATCHES_DIRENT64].
31139         * dirent/versionsort64.c: Likewise.
31140         * dirent/scandir64.c: Likewise.
31141         * dirent/scandirat64.c: Likewise.
31142         * sysdeps/wordsize-64/alphasort.c: File removed.
31143         * sysdeps/wordsize-64/alphasort64.c: File removed.
31144         * sysdeps/wordsize-64/scandir.c: File removed.
31145         * sysdeps/wordsize-64/scandir64.c: File removed.
31146         * sysdeps/wordsize-64/scandirat.c: File removed.
31147         * sysdeps/wordsize-64/scandirat64.c: File removed.
31148         * sysdeps/wordsize-64/versionsort.c: File removed.
31149         * sysdeps/wordsize-64/versionsort64.c: File removed.
31150         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort.c: File removed.
31151         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort64.c: File removed.
31152         * sysdeps/unix/sysv/linux/x86_64/x32/scandir.c: File removed.
31153         * sysdeps/unix/sysv/linux/x86_64/x32/scandir64.c: File removed.
31154         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat.c: File removed.
31155         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat64.c: File removed.
31156         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort.c: File removed.
31157         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort64.c: File removed.
31159         * bits/typesizes.h [__LP64__] (__INO_T_MATCHES_INO64_T): New macros.
31160         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h:
31161         [__s390x__] (__INO_T_MATCHES_INO64_T): New macro.
31162         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
31163         [defined __arch64__ || defined __sparcv9]
31164         (__INO_T_MATCHES_INO64_T): New macro.
31165         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
31166         [__x86_64__] (__INO_T_MATCHES_INO64_T): New macro.
31167         * bits/dirent.h (_DIRENT_MATCHES_DIRENT64): New macro.
31168         * sysdeps/unix/sysv/linux/bits/dirent.h
31169         [defined __OFF_T_MATCHES_OFF64_T && defined __INO_T_MATCHES_INO64_T]
31170         (_DIRENT_MATCHES_DIRENT64): New macro.
31172         * io/lockf.c [__OFF_T_MATCHES_OFF64_T]:
31173         Define lockf64 as an alias.
31174         * libio/fseeko.c [__OFF_T_MATCHES_OFF64_T]:
31175         Define fseeko64 as an alias.
31176         * libio/ftello.c [__OFF_T_MATCHES_OFF64_T]:
31177         Define ftello64 as an alias.
31178         * libio/iofgetpos.c [__OFF_T_MATCHES_OFF64_T]:
31179         Define _IO_fgetpos64 and fgetpos64 as aliases.
31180         * libio/iofsetpos.c [__OFF_T_MATCHES_OFF64_T]:
31181         Define _IO_fsetpos64 and fsetpos64 as aliases.
31182         * io/lockf64.c [!__OFF_T_MATCHES_OFF64_T]:
31183         Conditionalize body on this.
31184         * libio/fseeko64.c: Likewise.
31185         * libio/ftello64.c: Likewise.
31186         * libio/iofgetpos64.c: Likewise.
31187         * libio/iofsetpos64.c: Likewise.
31188         * sysdeps/wordsize-64/lockf.c: File removed.
31189         * sysdeps/wordsize-64/lockf64.c: File removed.
31190         * sysdeps/wordsize-64/fseeko.c: File removed.
31191         * sysdeps/wordsize-64/fseeko64.c: File removed.
31192         * sysdeps/wordsize-64/ftello.c: File removed.
31193         * sysdeps/wordsize-64/ftello64.c: File removed.
31194         * sysdeps/wordsize-64/iofgetpos.c: File removed.
31195         * sysdeps/wordsize-64/iofgetpos64.c: File removed.
31196         * sysdeps/wordsize-64/iofsetpos.c: File removed.
31197         * sysdeps/wordsize-64/iofsetpos64.c: File removed.
31198         * sysdeps/unix/sysv/linux/x86_64/x32/lockf.c: File removed.
31199         * sysdeps/unix/sysv/linux/x86_64/x32/lockf64.c: File removed.
31200         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko.c: File removed.
31201         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko64.c: File removed.
31202         * sysdeps/unix/sysv/linux/x86_64/x32/ftello.c: File removed.
31203         * sysdeps/unix/sysv/linux/x86_64/x32/ftello64.c: File removed.
31204         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos.c: File removed.
31205         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos64.c: File removed.
31206         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos.c: File removed.
31207         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos64.c: File removed.
31209         * bits/typesizes.h [__LP64__] (__OFF_T_MATCHES_OFF64_T): New macro.
31210         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h:
31211         [__s390x__] (__OFF_T_MATCHES_OFF64_T): New macro.
31212         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
31213         [defined __arch64__ || defined __sparcv9]
31214         (__OFF_T_MATCHES_OFF64_T): New macro.
31215         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
31216         [__x86_64__] (__OFF_T_MATCHES_OFF64_T): New macro.
31217         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
31218         (__OFF_T_MATCHES_OFF64_T): New macro.
31220 2012-08-06  H.J. Lu  <hongjiu.lu@intel.com>
31222         * stdlib/secure-getenv.c (__secure_getenv): Replace
31223         GLIBC_2_16 with GLIBC_2_17.
31225 2012-08-06  H.J. Lu  <hongjiu.lu@intel.com>
31227         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen.c: Removed.
31228         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen64.c: Likewise.
31230 2012-08-03  David S. Miller  <davem@davemloft.net>
31232         * sysdeps/sparc/fpu/libm-test-ulps: Update.
31234 2012-08-03  Joseph Myers  <joseph@codesourcery.com>
31236         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_SECURE):
31237         Remove.
31238         (__ASSUME_CORRECT_SI_PID): Likewise.
31239         (__ASSUME_BRK_PAGE_ROUNDED): Likewise.
31240         (__ASSUME_TMPFS_NAME): Likewise.
31241         * sysdeps/unix/sysv/linux/dl-sysdep.c (frob_brk)
31242         [!__ASSUME_BRK_PAGE_ROUNDED]: Remove conditional code.
31243         * sysdeps/unix/sysv/linux/ldsodefs.h [__ASSUME_AT_SECURE]
31244         (HAVE_AUX_SECURE): Make definition unconditional.
31245         * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs)
31246         [!__ASSUME_TMPFS_NAME]: Remove conditional code.
31248 2012-08-03  Roland McGrath  <roland@hack.frob.com>
31250         * sysdeps/mach/hurd/sys/param.h (MAXSYMLINKS): Macro removed.
31251         * sysdeps/mach/hurd/bits/local_lim.h (SYMLOOP_MAX): Macro removed.
31252         * sysdeps/mach/hurd/eloop-threshold.h: New file.
31253         * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use
31254         __eloop_threshold instead of SYMLOOP_MAX.
31256         * sysdeps/generic/eloop-threshold.h: New file.
31257         * stdlib/canonicalize.c (__realpath): Use __eloop_threshold instead
31258         of MAXSYMLINKS.
31259         * elf/chroot_canon.c (chroot_canon): Likewise.
31261 2012-08-03  Joseph Myers  <joseph@codesourcery.com>
31263         [BZ #13717]
31264         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
31265         Change to 2.6.0 everywhere.
31266         * sysdeps/unix/sysv/linux/configure: Regenerated.
31267         * sysdeps/unix/sysv/linux/kernel-features.h
31268         (__ASSUME_SET_THREAD_AREA_SYSCALL): Remove.
31269         (__ASSUME_CLONE_THREAD_FLAGS): Condition on architectures, not
31270         kernel versions.
31271         (__ASSUME_POSIX_TIMERS): Define unconditionally.
31272         (__ASSUME_FUTEX_REQUEUE): Remove.
31273         (__ASSUME_STATFS64): Define unconditionally.
31274         (__ASSUME_AT_SECURE): Likewise.
31275         (__ASSUME_CORRECT_SI_PID): Likewise.
31276         (__ASSUME_TGKILL): Define without depending on kernel version for
31277         i386.
31278         (__ASSUME_UTIMES): Likewise.
31279         (__ASSUME_SWAPCONTEXT_SYSCALL): Condition on architecture, not
31280         kernel version.
31281         (__ASSUME_BRK_PAGE_ROUNDED): Define unconditionally.
31282         (__ASSUME_TMPFS_NAME): Likewise.
31283         * README: Update reference to Linux kernel versions.
31285 2012-08-02  Marek Polacek  <polacek@redhat.com>
31287         [BZ# 14150]
31288         * configure.in (libc_cv_asm_type_prefix): Remove test.  Replace
31289         libc_cv_asm_type_prefix with %.
31290         * configure: Regenerated.
31291         * include/libc-symbols.h: Remove comment about
31292         ASM_TYPE_DIRECTIVE_PREFIX.  Replace ASM_TYPE_DIRECTIVE_PREFIX with %.
31293         (declare_symbol_alias_1_paste) [__ASSEMBLER__]: Do not define.
31294         (declare_symbol_alias_1_paste_1) [__ASSEMBLER__]: Likewise.
31295         (declare_symbol_alias_1_stringify) [!__ASSEMBLER__]: Likewise.
31296         (declare_symbol_alias_1_stringify_1) [!__ASSEMBLER__]: Likewise.
31297         * elf/tst-unique2mod2.c: Replace ASM_TYPE_DIRECTIVE_PREFIX with %.
31298         [HAVE_ASM_UNIQUE_OBJECT]: Do not define S.
31299         [HAVE_ASM_UNIQUE_OBJECT]: Do not define _S.
31300         * elf/tst-unique2mod1.c: Likewise.
31301         * elf/tst-unique1mod2.c: Likewise.
31302         * elf/tst-unique1mod1.c: Likewise.
31303         * config.h.in: Do not undef ASM_TYPE_DIRECTIVE_PREFIX.
31304         * sysdeps/s390/s390-32/sysdep.h: Do not define ASM_TYPE_DIRECTIVE.
31305         Replace ASM_TYPE_DIRECTIVE with .type.
31306         * sysdeps/s390/s390-64/sysdep.h: Likewise.
31307         * sysdeps/i386/sysdep.h: Likewise.
31308         * sysdeps/x86_64/sysdep.h: Likewise.
31309         * sysdeps/sh/sysdep.h: Likewise.
31310         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
31311         Do not define ASM_TYPE_DIRECTIVE.
31312         * sysdeps/powerpc/sysdep.h: Likewise.
31313         * sysdeps/powerpc/powerpc32/sysdep.h:
31314         Replace ASM_TYPE_DIRECTIVE with .type.
31315         * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
31316         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
31317         * sysdeps/i386/fpu/e_powf.S: Likewise.
31318         * sysdeps/i386/fpu/e_expl.S: Likewise.
31319         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
31320         * sysdeps/i386/fpu/e_acosh.S: Likewise.
31321         * sysdeps/i386/fpu/e_pow.S: Likewise.
31322         * sysdeps/i386/fpu/s_asinhl.S: Likewise.
31323         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
31324         * sysdeps/i386/fpu/s_expm1.S: Likewise.
31325         * sysdeps/i386/fpu/s_frexpf.S: Likewise.
31326         * sysdeps/i386/fpu/e_log2.S: Likewise.
31327         * sysdeps/i386/fpu/e_log2l.S: Likewise.
31328         * sysdeps/i386/fpu/e_scalb.S: Likewise.
31329         * sysdeps/i386/fpu/e_powl.S: Likewise.
31330         * sysdeps/i386/fpu/e_log10f.S: Likewise.
31331         * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
31332         * sysdeps/i386/fpu/e_logl.S: Likewise.
31333         * sysdeps/i386/fpu/s_cbrt.S: Likewise.
31334         * sysdeps/i386/fpu/s_frexpl.S: Likewise.
31335         * sysdeps/i386/fpu/s_expm1f.S: Likewise.
31336         * sysdeps/i386/fpu/e_log2f.S: Likewise.
31337         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
31338         * sysdeps/i386/fpu/e_log.S: Likewise.
31339         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
31340         * sysdeps/i386/fpu/e_logf.S: Likewise.
31341         * sysdeps/i386/fpu/e_log10l.S: Likewise.
31342         * sysdeps/i386/fpu/e_atanh.S: Likewise.
31343         * sysdeps/i386/fpu/s_asinhf.S: Likewise.
31344         * sysdeps/i386/fpu/e_log10.S: Likewise.
31345         * sysdeps/i386/fpu/s_frexp.S: Likewise.
31346         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
31347         * sysdeps/i386/fpu/s_asinh.S: Likewise.
31348         * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
31349         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
31350         * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Likewise.
31351         * sysdeps/i386/i686/fpu/e_logl.S: Likewise.
31352         * sysdeps/i386/i686/strtok.S: Likewise.
31353         * sysdeps/i386/i386-mcount.S: Likewise.
31354         * sysdeps/i386/strtok.S: Likewise.
31355         * sysdeps/x86_64/fpu/e_expl.S: Likewise.
31356         * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
31357         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
31358         * sysdeps/x86_64/fpu/e_logl.S: Likewise.
31359         * sysdeps/x86_64/fpu/e_expf.S: Likewise.
31360         * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
31361         * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
31362         * sysdeps/x86_64/fpu/s_copysign.S: Likewise.
31363         * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
31364         * sysdeps/x86_64/_mcount.S: Likewise.
31365         * sysdeps/x86_64/strtok.S: Likewise.
31366         * sysdeps/sh/_mcount.S: Likewise.
31368 2012-08-01  Roland McGrath  <roland@hack.frob.com>
31370         * libio/iofopen.c: Include <fcntl.h>.
31371         [_LIBC] [!defined O_LARGEFILE || O_LARGEFILE == 0]
31372         (_IO_fopen64, fopen64): Define as aliases.
31373         * libio/iofopen64.c: Include <fcntl.h>.
31374         [!defined _LIBC || (defined O_LARGEFILE && O_LARGEFILE != 0)]:
31375         Conditionalize body on this.
31376         * sysdeps/wordsize-64/iofopen.c: File removed.
31377         * sysdeps/wordsize-64/iofopen64.c: File removed.
31379 2012-08-01  Marek Polacek  <polacek@redhat.com>
31381         * libc/Makeconfig: Use elf in place of binfmt-subdir.
31382         Use dlfcn directly instead of a variable.
31383         (binfmt-subdir): Do not define.
31384         (dlfcn): Likewise.
31386 2012-08-01  Joseph Myers  <joseph@codesourcery.com>
31388         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_FCNTL64):
31389         Remove all definitions.
31390         * sysdeps/unix/sysv/linux/i386/fcntl.c: Do not include
31391         <kernel-features.h>.
31392         [!__ASSUME_FCNTL64] (__have_no_fcntl64): Remove.
31393         (miss_F_GETOWN_EX): Remove all definitions.
31394         [NO_CANCELLATION && !__ASSUME_FCNTL64] (__fcntl_nocancel): Remove
31395         macro definition.
31396         [!__ASSUME_FCNTL64]: Remove conditional code.
31397         [__ASSUME_FCNTL64]: Make code unconditional.
31398         * sysdeps/unix/sysv/linux/i386/lockf64.c: Do not include
31399         <kernel-features.h>.
31400         [__NR_fcntl64 && !__ASSUME_FCNTL64] (__have_no_fcntl64): Remove.
31401         (lockf64) [!__ASSUME_FCNTL64]: Remove conditional code.
31402         (lockf64) [__NR_fcntl64]: Make code unconditional.
31403         (lockf64) [__ASSUME_FCNTL64]: Likewise.
31405         * sysdeps/unix/sysv/linux/kernel-features.h
31406         (__ASSUME_VFORK_SYSCALL): Remove all definitions.
31407         * sysdeps/unix/sysv/linux/i386/vfork.S (__vfork) [__NR_vfork]:
31408         Make code unconditional.
31409         (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
31410         (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
31411         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S (__vfork)
31412         [__NR_vfork]: Make code unconditional.
31413         (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
31414         (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
31415         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S (__vfork)
31416         [__NR_vfork]: Make code unconditional.
31417         (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
31418         (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
31420 2012-08-01  Roland McGrath  <roland@hack.frob.com>
31422         * sysdeps/generic/sys/param.h (NGROUPS): Define only if [NGROUPS_MAX].
31423         (MAXSYMLINKS): Define only if [SYMLOOP_MAX].
31425         * misc/mkstemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
31426         Define mkstemp64 as an alias.
31427         * misc/mkstemps.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
31428         Define mkstemps64 as an alias.
31429         * misc/mkostemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
31430         Define mkostemp64 as an alias.
31431         * misc/mkostemps.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
31432         Define mkostemps64 as an alias.
31433         * misc/mkstemp64.c [defined O_LARGEFILE && O_LARGEFILE != 0]:
31434         Conditionalize body on this.
31435         * misc/mkostemp64.c: Likewise.
31436         * misc/mkostemps64.c: Likewise.
31437         * misc/mkstemps64.c: Likewise.
31438         * sysdeps/wordsize-64/mkstemp64.c: File removed.
31439         * sysdeps/wordsize-64/mkostemp64.c: File removed.
31440         * sysdeps/wordsize-64/mkostemp.c: File removed.
31441         * sysdeps/wordsize-64/mkstemp.c: File removed.
31442         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c: File removed.
31443         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c: File removed.
31444         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c: File removed.
31445         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c: File removed.
31447         [BZ #14138]
31448         * sysdeps/unix/sysv/linux/syscalls.list: Add getrlimit/ugetrlimit line.
31449         * sysdeps/unix/sysv/linux/i386/getrlimit.c: File removed.
31450         * sysdeps/unix/sysv/linux/powerpc/getrlimit.c: File removed.
31451         * sysdeps/unix/sysv/linux/sh/getrlimit.c: File removed.
31453         * sysdeps/unix/make-syscalls.sh: Emit uses of the versioned_symbol and
31454         compat_symbol macros from <shlib-compat.h> rather than the underlying
31455         default_symbol_version and symbol_version macros, so that DEFAULT
31456         lines in shlib-versions are respected.
31457         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Likewise.
31459 2012-08-01  Florian Weimer  <fweimer@redhat.com>
31461         * posix/unistd.h (setuid, setreuid, seteuid, setresuid):
31462         Declare with warn_unused_result.
31463         (setgid, setregid, setegid, setresgid): Likewise.
31464         * sysdeps/unix/sysv/linux/sys/fsuid.h (setfsuid, setfsgid):
31465         Likewise.
31466         * WUR-REPORT: Remove set*id functions.
31468 2012-07-31  Pino Toscano  <toscano.pino@tiscali.it>
31470         * sysdeps/mach/hurd/renameat.c: New file, mostly copied from rename.c.
31472 2012-07-31  Roland McGrath  <roland@hack.frob.com>
31474         [BZ #10191]
31475         * include/sys/socket.h (__libc_accept, __libc_accept4):
31476         Add attribute_hidden.
31477         * socket/accept4.c (__libc_accept4): Remove libc_hidden_def.
31479         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Conditionalize
31480         use of PTR_MANGLE.
31481         * inet/getnetgrent_r.c (setup): Likewise.
31483         * sysdeps/generic/siglist.h: Put SIGWINCH under #ifdef.
31485 2012-07-31  David S. Miller  <davem@davemloft.net>
31487         * sysdeps/sparc/fpu/libm-test-ulps: Update.
31489 2012-07-31  Joseph Myers  <joseph@codesourcery.com>
31491         [BZ #13629]
31492         * math/s_clog.c (__clog): Use __log1p if larger part has absolute
31493         value between 1.0 and 2.0 and smaller part has absolute value less
31494         than 1.0.
31495         * math/s_clog10.c (__clog10): Likewise.
31496         * math/s_clog10f.c (__clog10f): Likewise.
31497         * math/s_clog10l.c (__clog10l): Likewise.
31498         * math/s_clogf.c (__clogf): Likewise.
31499         * math/s_clogl.c (__clogl): Likewise.
31500         * math/libm-test.inc (clog_test): Add more tests.
31501         (clog10_test): Likewise.
31502         * sysdeps/i386/fpu/libm-test-ulps: Update.
31503         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31505 2012-07-31  Florian Weimer  <fweimer@redhat.com>
31507         * stdlib/tst-secure-getenv.c: Use printf for error reporting.
31508         Exit with zero in case no suitable GID is found, and write a
31509         message to standard error.
31511 2012-07-30  Roland McGrath  <roland@hack.frob.com>
31513         * sysdeps/generic/sys/param.h (MAXSYMLINKS): Define to SYMLOOP_MAX
31514         rather than to 1.
31515         (NBBY, NGROUPS, CANBSIZ, NCARGS): New macros.
31516         (MAXPATHLEN): Removed.
31517         (NOGROUP, NODEV): New macros.
31518         (setbit, clrbit, isset, isclr): New macros.
31519         (howmany, roundup, powerof2): New macros.
31520         (DEV_BSIZE): New macro.
31522         * include/unistd.h: Add attribute_hidden on __libc_pwrite64.
31523         * sysdeps/posix/pwrite64.c: Remove libc_hidden_def (__libc_pwrite64).
31525         * sysdeps/ieee754/k_standard.c (__kernel_standard_l): Conditionalize
31526         definition on [!__NO_LONG_DOUBLE_MATH].
31528         * nss/nsswitch.c (__nss_lookup_function): Conditionalize use of
31529         PTR_MANGLE and PTR_DEMANGLE.
31531         * socket/accept4.c (accept4): Rename to __libc_accept4.
31532         Define accept4 as a weak alias.
31534         * sysdeps/posix/getcwd.c (__getcwd): Conditionalize d_type field use
31535         on [_DIRENT_HAVE_D_TYPE].
31536         * io/ftw.c (ftw_dir): Likewise.
31538         * io/xmknod.c (__xmknod): Don't check PATH for being null.
31540         * libio/genops.c (flush_cleanup): Move inside [_IO_MTSAFE_IO].
31542         * bits/signum.h (SIGSTOP, SIGCONT, SIGTSTP, SIGTTIN, SIGTTOU, SIGCHLD):
31543         Use the BSD numbers rather than the arbitrary ones we had.
31544         (SIGBUS, SIGIO, SIGPOLL, SIGPROF, SIGSYS): New macros.
31545         (SIGTRAP, SIGURG, SIGUSR1, SIGUSR2, SIGVTALRM): New macros.
31546         (SIGXCPU, SIGXFSZ): New macros.
31547         (_NSIG): Now 32.
31549         * elf/rtld.c (_rtld_global): Conditionalize .dl_ns[LM_ID_BASE]
31550         initializer on [_LIBC_REENTRANT].
31552         * iconv/iconv_charmap.c (charmap_conversion): Move ST, ADDR
31553         definitions inside [_POSIX_MAPPED_FILES].
31555         * posix/regex.c: Include <sys/param.h> for MIN/MAX.
31557         * dirent/opendir.c: Include <fcntl.h>.
31559         * bits/libc-lock.h (__libc_setspecific): Evaluate arguments.
31560         (__libc_getspecific): Likewise.
31561         (__libc_key_create): Likewise.
31563         * stdio-common/tmpfile64.c: Include <fcntl.h> first.
31564         [defined O_LARGEFILE && O_LARGEFILE != 0]: Conditionalize on this.
31565         * stdio-common/tmpfile.c [!defined O_LARGEFILE || O_LARGEFILE == 0]
31566         (tmpfile64): Define as alias.
31567         * sysdeps/wordsize-64/tmpfile.c: File removed.
31568         * sysdeps/wordsize-64/tmpfile64.c: File removed.
31569         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile64.c: File removed.
31570         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile.c: File removed.
31572         * stdio-common/vfscanf.c: Include <stdbool.h>.
31573         * nss/makedb.c: Likewise.
31574         * stdio-common/_i18n_number.h: Likewise.
31575         * argp/argp-help.c: Likewise.
31576         * posix/wordexp.c: Likewise.
31577         * sysdeps/posix/spawni.c: Likewise.
31578         * nss/nss_files/files-initgroups.c: Likewise.
31579         * stdio-common/reg-modifier.c: Include <stdlib.h>.
31580         * nss/nss_files/files-initgroups.c: Likewise.
31581         * nss/nss_db/db-netgrp.c: Likewise.
31582         * nss/nss_db/db-initgroups.c: Likewise.
31583         * io/fchmodat.c: Include <sys/stat.h>.
31585         * sysdeps/generic/ldsodefs.h (struct rtld_global): Use
31586         __rtld_lock_define_recursive macro instead of __rtld_lock_recursive_t.
31588         * intl/loadmsgcat.c (_nl_load_domain): Don't use MAP_FAILED outside of
31589         [HAVE_MMAP].
31591         * bits/stat.h: Fix inclusion guard to accept _FCNTL_H too.
31592         Add multiple inclusion protection.
31594 2012-07-27  David S. Miller  <davem@davemloft.net>
31596         * sysdeps/sparc/fpu/libm-test-ulps: Update.
31598 2012-07-27  Gary Benson  <gbenson@redhat.com>
31600         [BZ #14298]
31601         * elf/rtld.c: Include <stap-probe.h>.
31602         (dl_main): Added static probes "init_start" and "init_complete".
31603         * elf/dl-load.c: Include <stap-probe.h>.
31604         (lose): Take new parameter "nsid".
31605         Added static probe "map_failed".
31606         (_dl_map_object_from_fd): Pass namespace id to lose.
31607         Added static probe "map_start".
31608         (open_verify): Pass namespace id to lose.
31609         * elf/dl-open.c: Include <stap-probe.h>.
31610         (dl_open_worker) Added static probes "map_complete", "reloc_start"
31611         and "reloc_complete".
31612         * elf/dl-close.c: Include <stap-probe.h>.
31613         (_dl_close_worker): Added static probes "unmap_start" and
31614         "unmap_complete".
31615         * elf/rtld-debugger-interface.txt: New file documenting the above.
31617 2012-07-26  Roland McGrath  <roland@hack.frob.com>
31619         * sunrpc/rpc_hout.c (pdeclaration): Call f_print with a "%s" format
31620         rather than a string variable.
31621         * sunrpc/rpc_main.c (h_output): Likewise.
31622         * sunrpc/rpc_svcout.c (write_real_program): Likewise.
31624 2012-07-26  Pino Toscano  <toscano.pino@tiscali.it>
31626         * inet/check_native.c: New file.
31628 2012-07-26  Joseph Myers  <joseph@codesourcery.com>
31630         [BZ #13629]
31631         * math/s_clog.c (__clog): Use __log1p or direct log1p calculation
31632         if larger part has absolute value 1.0.
31633         * math/s_clog10.c (__clog10): Likewise.
31634         * math/s_clog10f.c (__clog10f): Likewise.
31635         * math/s_clog10l.c (__clog10l): Likewise.
31636         * math/s_clogf.c (__clogf): Likewise.
31637         * math/s_clogl.c (__clogl): Likewise.
31638         * math/libm-test.inc (clog_test): Add more tests.
31639         (clog10_test): Likewise.
31640         * sysdeps/i386/fpu/libm-test-ulps: Update.
31641         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31643         * elf/tst-auditmod1.c (pltenter): Remove all definitions of macro.
31644         (pltexit): Likewise.
31645         (La_regs): Likewise.
31646         (La_retval): Likewise.
31647         (int_retval): Likewise.
31648         Update #error for removed macros to refer only to definitions in
31649         tst-audit.h.
31650         * elf/tst-auditmod3b.c (pltenter): Remove all definitions of
31651         macro.
31652         (pltexit): Likewise.
31653         (La_regs): Likewise.
31654         (La_retval): Likewise.
31655         (int_retval): Likewise.
31656         * elf/tst-auditmod4b.c (pltenter): Remove all definitions of
31657         macro.
31658         (pltexit): Likewise.
31659         (La_regs): Likewise.
31660         (La_retval): Likewise.
31661         (int_retval): Likewise.
31662         * elf/tst-auditmod5b.c (pltenter): Remove all definitions of
31663         macro.
31664         (pltexit): Likewise.
31665         (La_regs): Likewise.
31666         (La_retval): Likewise.
31667         (int_retval): Likewise.
31668         * elf/tst-auditmod6b.c (pltenter): Remove all definitions of
31669         macro.
31670         (pltexit): Likewise.
31671         (La_regs): Likewise.
31672         (La_retval): Likewise.
31673         (int_retval): Likewise.
31674         * elf/tst-auditmod6c.c (pltenter): Remove all definitions of
31675         macro.
31676         (pltexit): Likewise.
31677         (La_regs): Likewise.
31678         (La_retval): Likewise.
31679         (int_retval): Likewise.
31680         * elf/tst-auditmod7b.c (pltenter): Remove all definitions of
31681         macro.
31682         (pltexit): Likewise.
31683         (La_regs): Likewise.
31684         (La_retval): Likewise.
31685         (int_retval): Likewise.
31686         * sysdeps/generic/tst-audit.h: Update comment to refer only to
31687         macro definitions in tst-audit.h.
31688         * sysdeps/i386/tst-audit.h: New file.
31689         * sysdeps/powerpc/powerpc32/tst-audit.h: Likewise.
31690         * sysdeps/powerpc/powerpc64/tst-audit.h: Likewise.
31691         * sysdeps/s390/s390-32/tst-audit.h: Likewise.
31692         * sysdeps/s390/s390-64/tst-audit.h: Likewise.
31693         * sysdeps/sh/tst-audit.h: Likewise.
31694         * sysdeps/sparc/sparc32/tst-audit.h: Likewise.
31695         * sysdeps/sparc/sparc64/tst-audit.h: Likewise.
31696         * sysdeps/x86_64/tst-audit.h: Likewise.
31698 2012-07-26  Andreas Jaeger  <aj@suse.de>
31700         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Add __THROW for
31701         ptrace.
31703         * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_eventcodes): Add
31704         new value PTRACE_EVENT_SECCOMP from Linux 3.5.
31705         (__ptrace_setoptions): Add new value PTRACE_O_TRACESECCOMP, adjust
31706         PTRACE_O_MASK.
31707         * sysdeps/unix/sysv/linux/s390/bits/ptrace.h: Likewise.
31708         * sysdeps/unix/sysv/linux/sparc/bits/ptrace.h: Likewise.
31709         * sysdeps/unix/sysv/linux/powerpc/bits/ptrace.h: Likewise.
31711         * sysdeps/unix/sysv/linux/sys/epoll.h (EPOLLWAKEUP): Add new
31712         value.
31714         * sysdeps/unix/sysv/linux/bits/siginfo.h (siginfo_t): Add
31715         _sigsys.
31716         (si_call_addr, si_syscall, si_arch): Define new macro.
31717         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (siginfo_t): Add
31718         _sigsys.
31719         (si_call_addr, si_syscall, si_arch): Define new marcro.
31720         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (siginfo_t): Add
31721         _sigsys.
31722         (si_call_addr, si_syscall, si_arch): Define new macro.
31723         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h (struct): Add
31724         _sigsys.
31725         (si_call_addr, si_syscall, si_arch): Define new macro.
31727 2012-07-25  Joseph Myers  <joseph@codesourcery.com>
31729         [BZ #13717]
31730         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
31731         Change to 2.4.21 where previously 2.4.1.
31732         * sysdeps/unix/sysv/linux/configure: Regenerated.
31733         * sysdeps/unix/sysv/linux/kernel-features.h [(__powerpc__ ||
31734         __sh__) && !__powerpc64__] (__ASSUME_FCNTL64): Do not condition on
31735         Linux kernel version.
31736         (__ASSUME_STD_AUXV): Remove.
31737         [__powerpc__] (__ASSUME_VFORK_SYSCALL): Do not condition on Linux
31738         kernel version.
31739         [__powerpc__ && !__powerpc64] (__ASSUME_MMAP2_SYSCALL): Likewise.
31740         (__ASSUME_NEW_PRCTL_SYSCALL): Remove.
31741         (__ASSUME_FIXED_CLONE_SYSCALL): Likewise.
31742         (__ASSUME_NEW_RT_SIGRETURN_SYSCALL): Likewise.
31743         (__ASSUME_NETLINK_SUPPORT): Likewise.
31744         * nscd/gai.c [NEED_NETLINK && __ASSUME_NETLINK_SUPPORT == 0]
31745         (__no_netlink_support): Remove conditional definition.
31746         * sysdeps/unix/sysv/linux/check_pf.c (__no_netlink_support):
31747         Remove.
31748         (__check_pf) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional code.
31749         [__ASSUME_NETLINK_SUPPORT]: Make code unconditional.
31750         * sysdeps/unix/sysv/linux/if_index.c [!__ASSUME_NETLINK_SUPPORT]
31751         (if_nameindex_ioctl): Remove.
31752         (if_nameindex_netlink): Do not handle __no_netlink_support.
31753         (if_nameindex) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional
31754         code.
31755         * sysdeps/unix/sysv/linux/ifaddrs.c [!__ASSUME_NETLINK_SUPPORT]:
31756         Remove conditional code.
31757         (__netlink_open) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional
31758         code.
31759         (getifaddrs_internal) [__ASSUME_NETLINK_SUPPORT]: Make code
31760         unconditional.
31761         [!__ASSUME_NETLINK_SUPPORT]: Remove conditional code.
31762         [__ASSUME_NETLINK_SUPPORT] (freeifaddrs): Make code unconditional.
31763         * sysdeps/unix/sysv/linux/netlinkaccess.h (__no_netlink_support):
31764         Remove.
31765         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
31766         [!__ASSUME_STD_AUXV]: Remove conditional code.
31767         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S (__clone)
31768         [!__ASSUME_FIXED_CLONE_SYSCALL]: Remove conditional code.
31769         [__ASSUME_FIXED_CLONE_SYSCALL]: Make code unconditional.
31770         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c
31771         [!__ASSUME_NEW_PRCTL_SYSCALL] (fe_mask_handler): Remove.
31772         (__fe_mask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove conditional
31773         code.
31774         [__ASSUME_NEW_PRCTL_SYSCALL]: Make code unconditional.
31775         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
31776         [!__ASSUME_NEW_PRCTL_SYSCALL] (fe_nomask_handler): Remove.
31777         (__fe_nomask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove
31778         conditional code.
31779         [__ASSUME_NEW_PRCTL_SYSCALL]: Make code unconditional.
31780         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c
31781         (__fe_mask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove conditional
31782         code.
31783         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
31784         (__fe_nomask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove
31785         conditional code.
31786         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
31787         (__novec_getcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
31788         code unconditional.
31789         (__novec_getcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
31790         conditional code.
31791         (__getcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
31792         unconditional.
31793         (__getcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
31794         conditional code.
31795         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
31796         (__makecontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
31797         unconditional.
31798         (__makecontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
31799         conditional code.
31800         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
31801         (__novec_setcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
31802         code unconditional.
31803         (__novec_setcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
31804         conditional code.
31805         (__setcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
31806         unconditional.
31807         (__setcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
31808         conditional code.
31809         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
31810         (__novec_swapcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
31811         code unconditional.
31812         (__novec_swapcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
31813         conditional code.
31814         (__swapcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
31815         unconditional.
31816         (__swapcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
31817         conditional code.
31819 2012-07-25  Andreas Schwab  <schwab@linux-m68k.org>
31821         * sysdeps/unix/sysv/linux/i386/accept4.S: Remove pseudo_end label.
31822         * sysdeps/unix/sysv/linux/i386/call_sync_file_range.S: Likewise.
31823         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
31824         * sysdeps/unix/sysv/linux/i386/epoll_pwait.S: Likewise.
31825         * sysdeps/unix/sysv/linux/i386/getcontext.S: Likewise.
31826         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
31827         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
31828         * sysdeps/unix/sysv/linux/i386/semtimedop.S: Likewise.
31829         * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
31830         * sysdeps/unix/sysv/linux/i386/socket.S: Likewise.
31831         * sysdeps/unix/sysv/linux/i386/swapcontext.S: Likewise.
31832         * sysdeps/unix/sysv/linux/i386/syscall.S: Likewise.
31833         * sysdeps/unix/sysv/linux/i386/sysdep.h (PSEUDO): Likewise.
31834         * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
31835         * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
31836         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Likewise.
31837         * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Likewise.
31838         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Likewise.
31839         * sysdeps/unix/sysv/linux/x86_64/syscall.S: Likewise.
31840         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PSEUDO): Likewise.
31841         * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Likewise.
31842         * sysdeps/unix/sysv/linux/x86_64/vfork.S: Likewise.
31843         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Likewise.
31845 2012-07-25  Florian Weimer  <fweimer@redhat.com>
31847         * Versions.def: Add GLIBC_2.17.
31848         * stdlib/stdlib.h: Rename __secure_getenv to secure_getenv.
31849         * include/stdlib.h: Rename __secure_getenv to secure_getenv.
31850         Introduce __libc_secure_getenv.
31851         * stdlib/Versions (2.17): Add secure_getenv
31852         (GLIBC_PRIVATE): Add __libc_secure_getenv.
31853         * stdlib/secure-getenv.c: Rename __secure_getenv to
31854         __libc_secure_getenv.  Add secure_getenv alias.  Add compatibility
31855         symbol __secure_getenv for GLIBC_2.0.
31856         * stdlib/tst-secure-getenv.c: New.
31857         * stdlib/Makefile (tests): Add testcase.
31858         * manual/startup.texi (Environment Access): Document
31859         secure_getenv.
31860         * hesiod/hesiod.c (hesiod_init): Rename __secure_getenv to
31861         __libc_secure_getenv.
31862         * inet/ruserpass.c (ruserpass): Likewise.
31863         * malloc/mtrace.c (mtrace): Likewise.
31864         * sysdeps/mach/hurd/tmpfile.c (__tmpfile): Likewise.
31865         * sysdeps/posix/libc_fatal.c (__libc_fatal): Likewise.
31866         * sysdeps/posix/sysconf.c (__sysconf__check_spec): Likewise.
31867         * sysdeps/posix/tempname.c: Likewise.  Evaluate
31868         HAVE_SECURE_GETENV.
31869         * sysdeps/unix/sysv/linux/libc_fatal.c (__libc_message): Rename
31870         __secure_getenv to __libc_secure_getenv.
31871         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Add secure_getenv.
31872         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
31873         Likewise.
31874         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
31875         Likewise.
31876         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Likewise.
31877         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Likewise.
31878         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
31879         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Likewise.
31880         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Likewise.
31881         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
31882         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Likewise.
31884 2012-07-25  Joseph Myers  <joseph@codesourcery.com>
31886         * sysdeps/generic/ldsodefs.h (struct La_i86_regs): Remove.
31887         (struct La_i86_retval): Likewise.
31888         (struct La_x86_64_regs): Likewise.
31889         (struct La_x86_64_retval): Likewise.
31890         (struct La_x32_regs): Likewise.
31891         (struct La_x32_retval): Likewise.
31892         (struct La_ppc32_regs): Likewise.
31893         (struct La_ppc32_retval): Likewise.
31894         (struct La_ppc64_regs): Likewise.
31895         (struct La_ppc64_retval): Likewise.
31896         (struct La_sh_regs): Likewise.
31897         (struct La_sh_retval): Likewise.
31898         (struct La_s390_32_regs): Likewise.
31899         (struct La_s390_32_retval): Likewise.
31900         (struct La_s390_64_regs): Likewise.
31901         (struct La_s390_64_retval): Likewise.
31902         (struct La_sparc32_regs): Likewise.
31903         (struct La_sparc32_retval): Likewise.
31904         (struct La_sparc64_regs): Likewise.
31905         (struct La_sparc64_retval): Likewise.
31906         (struct audit_ifaces): Remove architecture-specific pltenter and
31907         pltexit members.
31908         * sysdeps/i386/ldsodefs.h: New file.
31909         * sysdeps/powerpc/ldsodefs.h: Likewise.
31910         * sysdeps/s390/ldsodefs.h: Likewise.
31911         * sysdeps/sh/ldsodefs.h: Likewise.
31912         * sysdeps/sparc/ldsodefs.h: Likewise.
31913         * sysdeps/x86_64/ldsodefs.h: Likewise.
31915 2012-07-25  Marek Polacek  <polacek@redhat.com>
31917         [BZ #6808]
31918         * math/libm-test.inc (yn_test): Add another test.
31919         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_ynl): Set errno
31920         to ERANGE when the result is +-Inf.
31921         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Likewise.
31922         * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_ynf): Likewise.
31923         * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_ynl): Likewise.
31924         * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_yn): Likewise.
31926 2012-07-24  Joseph Myers  <joseph@codesourcery.com>
31928         * conform/data/time.h-data (NULL): Use macro-constant.  Require
31929         equal to 0.
31930         (CLOCKS_PER_SEC): Use macro instead of constant.  Specify type as
31931         clock_t.
31932         [ISO11] (TIME_UTC): Use macro-int-constant.  Require value > 0.
31934 2012-07-23  Thomas Schwinge  <thomas@codesourcery.com>
31936         * configure.in <sysdeps resolving>: Correct printing
31937         Implies_before.
31938         * configure: Regenerate.
31940 2012-07-22  Thomas Schwinge  <thomas@codesourcery.com>
31942         * math/w_ilogb.c: Include <limits.h>.
31943         * math/w_ilogbl.c: Likewise.
31945 2012-07-20  Joseph Myers  <joseph@codesourcery.com>
31947         * manual/lang.texi (__va_copy): Document primarily as ISO C99
31948         va_copy.  Document allowing for unavailable va_copy only as
31949         pre-C99 compatibility.
31950         * manual/string.texi (Copying and Concatenation): Use va_copy
31951         instead of __va_copy in concat example.
31953 2012-07-20  Pino Toscano  <toscano.pino@tiscali.it>
31955         * sysdeps/mach/hurd/sendto.c (create_address_port): New subroutine.
31956         (__sendto): Use create_address_port.  Initialize APORT and deallocate
31957         it if not null.
31959         * sysdeps/mach/hurd/llistxattr.c: New file, copied from listxattr.c
31960         with O_NOLINK passed to __file_name_lookup.
31962         * sysdeps/mach/hurd/lremovexattr.c: New file, copied from removexattr.c
31963         with O_NOLINK passed to __file_name_lookup.
31965         * sysdeps/mach/hurd/getgroups.c: Return -1 and set EINVAL for
31966         negative N or less than NGIDS.
31968         * sysdeps/mach/hurd/getlogin_r.c: Make LOGIN non-static and change its
31969         type to string_t.  Set ERANGE as errno and return it if NAME is not big
31970         enough.  Use memcpy instead of strncpy.
31972 2012-07-20  Joseph Myers  <joseph@codesourcery.com>
31974         * elf/Makefile (check-data): Remove.
31975         (localplt.data): New vpath directive.
31976         ($(objpfx)check-localplt.out): Use localplt.data from vpath
31977         instead of $(check-data).
31978         * scripts/data/localplt-generic.data: Move to ...
31979         * sysdeps/generic/localplt.data: ... here.
31980         * scripts/data/localplt-i386-linux-gnu.data: Move to ...
31981         * sysdeps/unix/sysv/linux/i386/nptl/localplt.data: ... here.
31982         * scripts/data/localplt-powerpc-linux-gnu.data: Move to ...
31983         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/localplt.data:
31984         ... here.
31985         * scripts/data/localplt-powerpc64-linux-gnu.data: Move to ...
31986         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/localplt.data:
31987         ... here.
31988         * scripts/data/localplt-s390-linux-gnu.data: Move to ...
31989         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/localplt.data:
31990         ... here.
31991         * scripts/data/localplt-s390x-linux-gnu.data: Move to ...
31992         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/localplt.data:
31993         ... here.
31994         * scripts/data/localplt-sparc-linux-gnu.data: Move to ...
31995         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/localplt.data:
31996         ... here.
31997         * scripts/data/localplt-sparc64-linux-gnu.data: Move to ...
31998         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/localplt.data:
31999         ... here.
32001 2012-07-19 Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
32003         * sysdeps/powerpc/tls-macros.h: Split PowerPC definitions in
32004         PPC32 and PPC64 files.
32005         * sysdeps/powerpc/powerpc32/tls-macros.h: New file.
32006         * sysdeps/powerpc/powerpc64/tls-macros.h: Likewise.
32008 2012-07-19  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
32010         * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c: Move
32011         __makecontext_ret to ...
32012         * sysdeps/unix/sysv/linux/s390/s390-32/__makecontext_ret.S:
32013         ... here and call exit if uc_link is NULL.  New file.
32014         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Add
32015         __makecontext_ret.S.
32016         * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Move
32017         __makecontext_ret to ...
32018         * sysdeps/unix/sysv/linux/s390/s390-64/__makecontext_ret.S:
32019         ... here and call exit if uc_link is NULL.  New file.
32020         * sysdeps/unix/sysv/linux/s390/s390-64/Makefile: Add
32021         __makecontext_ret.S.
32023 2012-07-19  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
32025         * elf/elf.h (R_390_IRELATIVE): New definition.
32026         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Invoke the
32027         resolver function for IFUNC symbols.  Support R_390_IRELATIVE.
32028         (elf_machine_lazy_rel): Support R_390_IRELATIVE.
32029         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
32030         (elf_machine_lazy_rel): Likewise.
32031         * sysdeps/s390/dl-irel.h: New file.
32032         * sysdeps/s390/s390-64/memcpy.S: New asm code.
32033         * sysdeps/s390/s390-64/memset.S: New asm code.
32034         * sysdeps/s390/s390-64/memcmp.S: New asm code.
32035         * sysdeps/s390/s390-64/multiarch/memset.S: New file.
32036         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: New file.
32037         * sysdeps/s390/s390-64/multiarch/memcmp.S: New file.
32038         * sysdeps/s390/s390-64/multiarch/memcpy.S: New file.
32039         * sysdeps/s390/s390-64/multiarch/Makefile: New file.
32040         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: New file.
32041         * sysdeps/s390/s390-32/multiarch/Makefile: New file.
32042         * sysdeps/s390/s390-32/multiarch/memcmp.S: New file.
32043         * sysdeps/s390/s390-32/multiarch/memcpy.S: New file.
32044         * sysdeps/s390/s390-32/multiarch/memset.S: New file.
32045         * sysdeps/s390/s390-32/memcpy.S: New asm code.
32046         * sysdeps/s390/s390-32/memset.S: New asm code.
32047         * sysdeps/s390/s390-32/memcmp.S: New asm code.
32049 2012-07-17  Marek Polacek  <polacek@redhat.com>
32051         [BZ #14349]
32052         * sysdeps/s390/s390-32/configure.in: Remove TLS check.
32053         * sysdeps/s390/s390-64/configure.in: Likewise.
32054         * sysdeps/sparc/configure.in: Likewise.
32055         * sysdeps/powerpc/powerpc32/configure.in: Likewise.
32056         * sysdeps/powerpc/powerpc64/configure.in: Likewise.
32057         * sysdeps/i386/configure.in: Likewise.
32058         * sysdeps/x86_64/configure.in: Likewise.
32059         * sysdeps/sh/configure.in: Likewise.
32060         * sysdeps/s390/s390-32/configure: Regenerated.
32061         * sysdeps/s390/s390-64/configure: Likewise.
32062         * sysdeps/x86_64/configure: Likewise.
32063         * sysdeps/sh/configure: Likewise.
32064         * sysdeps/powerpc/powerpc64/configure: Likewise.
32065         * sysdeps/powerpc/powerpc32/configure: Likewise.
32066         * sysdeps/sparc/configure: Likwise.
32067         * sysdeps/i386/configure: Likewise.
32069         * elf/dl-open.c: Comment fixes.
32071 2012-07-17  Joseph Myers  <joseph@codesourcery.com>
32073         * Makefile [CXX] (check-data): Remove.
32074         [CXX] (c++-types.data): New vpath directive.
32075         [CXX] ($(objpfx)c++-types-check.out): Use c++-types.data from
32076         vpath.  Do not allow for C++ type data being missing.
32077         * scripts/data/c++-types-alpha-linux-gnu.data: Move to
32078         ports/sysdeps/unix/sysv/linux/alpha/nptl/c++-types.data.
32079         * scripts/data/c++-types-ia64-linux-gnu.data: Move to
32080         ports/sysdeps/unix/sysv/linux/ia64/nptl/c++-types.data.
32081         * scripts/data/c++-types-i386-linux-gnu.data: Move to ...
32082         * sysdeps/unix/sysv/linux/i386/nptl/c++-types.data: ... here.
32083         * scripts/data/c++-types-powerpc-linux-gnu.data: Move to ...
32084         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/c++-types.data:
32085         ... here.
32086         * scripts/data/c++-types-powerpc64-linux-gnu.data: Move to ...
32087         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/c++-types.data:
32088         ... here.
32089         * scripts/data/c++-types-s390-linux-gnu.data: Move to ...
32090         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/c++-types.data:
32091         ... here.
32092         * scripts/data/c++-types-s390x-linux-gnu.data: Move to ...
32093         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/c++-types.data:
32094         ... here.
32095         * scripts/data/c++-types-sparc-linux-gnu.data: Move to ...
32096         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/c++-types.data:
32097         ... here.
32098         * scripts/data/c++-types-sparc64-linux-gnu.data: Move to ...
32099         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/c++-types.data:
32100         ... here.
32101         * scripts/data/c++-types-x32-linux-gnu.data: Move to ...
32102         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/c++-types.data:
32103         ... here.
32104         * scripts/data/c++-types-x86_64-linux-gnu.data: Move to ...
32105         * sysdeps/unix/sysv/linux/x86_64/64/nptl/c++-types.data: ... here.
32107         * elf/tls-macros.h (TLS_LE): Move architecture-specific
32108         definitions to architecture-specific files.
32109         (TLS_IE): Likewise.
32110         (TLS_LD): Likewise.
32111         (TLS_GD): Likewise.
32112         * sysdeps/i386/tls-macros.h: New file.
32113         * sysdeps/powerpc/tls-macros.h: Likewise.
32114         * sysdeps/s390/s390-32/tls-macros.h: Likewise.
32115         * sysdeps/s390/s390-64/tls-macros.h: Likewise.
32116         * sysdeps/sh/tls-macros.h: Likewise.
32117         * sysdeps/sparc/sparc32/tls-macros.h: Likewise.
32118         * sysdeps/sparc/sparc64/tls-macros.h: Likewise.
32119         * sysdeps/x86_64/tls-macros.h: Likewise.
32121 2012-07-17  Thomas Schwinge  <thomas@codesourcery.com>
32123         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Preserve
32124         zero value for regular exit case.
32126         * sysdeps/unix/sysv/linux/x86_64/__start_context.S
32127         (__start_context): Preserve zero value for regular exit case.
32129 2012-07-17  Thomas Schwinge  <thomas@codesourcery.com>
32130             Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
32132         * manual/setjmp.texi (setcontext): Clarify normal process
32133         termination when uc_link is the null pointer.
32134         * stdlib/tst-makecontext.c (cf): Exercise this: remove explicit
32135         exit call.
32137 2012-07-16  Andreas Schwab  <schwab@linux-m68k.org>
32139         * stdlib/bug-getcontext.c (do_test): Don't test FE_ALL_EXCEPT in
32140         preprocessor.  Test for each exception mask separately.
32142 2012-07-16  Andreas Jaeger  <aj@suse.de>
32144         * po/ru.po: Update from translation team.
32146 2012-07-15  Joseph Myers  <joseph@codesourcery.com>
32148         * conform/data/string.h-data (NULL): Use macro-constant.  Require
32149         equal to 0.
32150         [ISO || ISO99 || ISO11] (stddef.h): Do not allow header.
32151         (str*): Change to str[abcdefghijklmnopqrstuvwxyz]*.
32152         (wcs*): Change to wcs[abcdefghijklmnopqrstuvwxyz]*.
32153         (mem[abcdefghijklmnopqrstuvwxyz]*): Allow.
32154         [ISO || ISO99 || ISO11] (*_t): Do not allow.
32156 2012-07-13  Andreas Jaeger  <aj@suse.de>
32158         * po/fr.po: Update from translation team.
32160 2012-07-12  Marek Polacek  <polacek@redhat.com>
32162         [BZ #14173]
32163         * math/libm-test.inc (yn_test): Add test for BZ #14173.
32164         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Correct
32165         loop condition.
32167 2012-07-12  Joseph Myers  <joseph@codesourcery.com>
32169         [BZ #13717]
32170         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
32171         Change to 2.4.1 where previously 2.4.0.
32172         * sysdeps/unix/sysv/linux/configure: Regenerated.
32173         * sysdeps/unix/sysv/linux/kernel-features.h [!__sh__]
32174         (__ASSUME_ST_INO_64_BIT): Do not condition definition on kernel
32175         version.
32176         [__i386__ || __sparc__] (__ASSUME_FCNTL64): Likewise.
32177         (__ASSUME_AT_CLKTCK): Remove.
32178         (__ASSUME_AT_PAGESIZE): Likewise.
32179         (__ASSUME_AT_XID): Likewise.
32180         (__ASSUME_GETDENTS64_SYSCALL): Define unconditionally.
32181         [__i386__] (__ASSUME_VFORK_SYSCALL): Define unconditionally.
32182         * sysdeps/unix/sysv/linux/ldsodefs.h (HAVE_AUX_XID): Define
32183         unconditionally.
32184         (HAVE_AUX_PAGESIZE): Likewise.
32185         * sysdeps/unix/sysv/linux/prof-freq.c (__profile_frequency)
32186         [__ASSUME_AT_CLKTCK]: Make code unconditional.
32187         [!__ASSUME_AT_CLKTCK]: Remove conditional code.
32189 2012-07-12  Jeroen van Bemmel  <jvb127@gmail.com>
32191         [BZ #14307]
32192         * sysdeps/posix/getaddrinfo.c (gaih_inet): Increase the size of
32193         the temporary buffer used to invoke __gethostbyname2_r,
32194         __gethostbyaddr_r and gethostbyname4_r to make room for struct
32195         host_data / struct gaih_addrtuple.
32196         * resolv/nss_dns/dns-host.c (global scope): Move definition of
32197         implementation constants MAX_NR_ALIASES and MAX_NR_ADDRS to
32198         header file nss/nsswitch.h.
32199         * nss/nsswitch.h (global scope): Add definition of implementation
32200         constants MAX_NR_ALIASES and MAX_NR_ADDRS (moved from
32201         resolv/nss_dns/dns-host.c).
32203 2012-07-11  Andreas Jaeger  <aj@suse.de>
32205         * po/fr.po: Update from translation team.
32207         * po/sv.po: Update from translation team
32208         * po/fr.po: Another update from translation team.
32210 2012-07-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
32212         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c: Do not call sinh and cosh
32213         for subnormals or multiply small sinh result by itself.
32214         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c: Likewise.
32215         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
32217 2012-07-11  David S. Miller  <davem@davemloft.net>
32219         * sysdeps/sparc/fpu/libm-test-ulps: Update.
32221 2012-07-10  Andreas Schwab  <schwab@linux-m68k.org>
32223         [BZ #14347]
32224         * misc/sys/syslog.h (LOG_MAKEPRI): Don't shift first argument.
32225         (INTERNAL_MARK): Shift it here.
32227 2012-07-10  Marek Polacek  <polacek@redhat.com>
32229         [BZ #14151]
32230         * configure.in (libc_cv_asm_global_directive): Remove test.  Replace
32231         libc_cv_asm_global_directive with .globl.
32232         * configure: Regenerated.
32233         * sysdeps/i386/configure.in: Replace libc_cv_asm_global_directive
32234         with .globl.
32235         * sysdeps/i386/configure: Regenerated.
32236         * sysdeps/x86_64/configure.in: Replace libc_cv_asm_global_directive
32237         with .globl.
32238         * sysdeps/x86_64/configure: Regenerated.
32239         * config.h.in: Do not undefine ASM_GLOBAL_DIRECTIVE.
32240         * include/libc-symbols.h: Replace ASM_GLOBAL_DIRECTIVE with .globl.
32241         * elf/tst-unique2mod2.c: Likewise.
32242         * elf/tst-unique2mod1.c: Likewise.
32243         * elf/tst-unique1mod2.c: Likewise.
32244         * elf/tst-unique1mod1.c: Likewise.
32245         * sysdeps/s390/s390-32/sysdep.h: Likewise.
32246         * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
32247         * sysdeps/s390/s390-64/sysdep.h: Likewise.
32248         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
32249         * sysdeps/mach/sysdep.h: Likewise.
32250         * sysdeps/i386/sysdep.h: Likewise.
32251         * sysdeps/i386/i386-mcount.S: Likewise.
32252         * sysdeps/x86_64/_mcount.S: Likewise.
32253         * sysdeps/x86_64/sysdep.h: Likewise.
32254         * sysdeps/sh/_mcount.S: Likewise.
32255         * sysdeps/sh/sysdep.h: Likewise.
32256         * sysdeps/powerpc/powerpc32/gprsave1.S: Likewise.
32257         * sysdeps/powerpc/powerpc32/fpu/fprrest.S: Likewise.
32258         * sysdeps/powerpc/powerpc32/fpu/fprsave.S: Likewise.
32259         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
32260         * sysdeps/powerpc/powerpc32/gprrest1.S: Likewise.
32261         * sysdeps/powerpc/powerpc32/gprsave0.S: Likewise.
32262         * sysdeps/powerpc/powerpc32/gprrest0.S: Likewise.
32263         * locale/localeinfo.h: Likewise.
32264         (_NL_CURRENT_DEFINE_STRINGIFY): Delete macro.
32265         (_NL_CURRENT_DEFINE_STRINGIFY_1): Likewise.
32267 2012-07-09  Roland McGrath  <roland@hack.frob.com>
32269         [BZ #14336]
32270         * manual/charset.texi (Extended Char Intro): Word use fix, "operating
32271         system".
32272         * manual/message.texi (The Uniforum approach): Likewise.
32273         * manual/charset.texi (Extended Char Intro): Spelling fix, "affected".
32274         (glibc iconv Implementation): Likewise.
32276 2012-07-09  Joseph Myers  <joseph@codesourcery.com>
32278         [BZ #14337]
32279         * math/s_clog.c (__clog): Avoid scaling a value down where that
32280         could result in underflow.
32281         * math/s_clog10.c (__clog10): Likewise.
32282         * math/s_clog10f.c (__clog10f): Likewise.
32283         * math/s_clog10l.c (__clog10l): Likewise.
32284         * math/s_clogf.c (__clogf): Likewise.
32285         * math/s_clogl.c (__clogl): Likewise.
32286         * math/libm-test.inc (clog_test): Add more tests.
32287         (clog10_test): Likewise.
32288         * sysdeps/i386/fpu/libm-test-ulps: Update.
32289         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
32291 2012-07-06  Andreas Schwab  <schwab@linux-m68k.org>
32293         [BZ #14283]
32294         * sysdeps/powerpc/fpu/k_rem_pio2f.c (__fp_kernel_rem_pio2f): Shift
32295         by 7 not 8 to examine high bit of fractional part.
32297         [BZ #14042]
32298         * sysdeps/powerpc/powerpc32/ppc-mcount.S [SHARED]: Don't use PLT
32299         for call to __mcount_internal.
32300         * sysdeps/powerpc/powerpc32/Makefile (sysdep_routines)
32301         (shared-only-routines) [$(subdir) = gmon]: Add compat-ppc-mcount.
32302         * sysdeps/powerpc/powerpc32/compat-ppc-mcount.S: New file.
32304 2012-07-06  Joseph Myers  <joseph@codesourcery.com>
32306         [BZ #14154]
32307         * sysdeps/ieee754/flt-32/k_tanf.c (__kernel_tanf): Use linear
32308         approximation for values within 0x1p-13f of an odd multiple of
32309         pi/4.
32310         * math/libm-test.inc (tan_test): Do not allow spurious underflow
32311         exception.  Add more tests.
32312         * sysdeps/i386/fpu/libm-test-ulps: Update.
32314         [BZ #6778]
32315         * sysdeps/i386/fpu/s_expm1.S (__expm1): Check for large negative
32316         inputs and return -1 for them.  Do not check for +Inf in case not
32317         reachable for +Inf.
32318         * sysdeps/i386/fpu/s_expm1f.S (__expm1f): Likewise.
32319         * sysdeps/i386/fpu/e_expl.S [USE_AS_EXPM1L] (csat): Do not define.
32320         (IEEE754_EXPL) [USE_AS_EXPM1L]: Check for large negative inputs
32321         and return -1 for them.  Do not check for +Inf in case not
32322         reachable for +Inf.
32323         * sysdeps/x86_64/fpu/e_expl.S [USE_AS_EXPM1L] (csat): Do not
32324         define.
32325         (IEEE754_EXPL) [USE_AS_EXPM1L]: Check for large negative inputs
32326         and return -1 for them.  Do not check for +Inf in case not
32327         reachable for +Inf.
32328         * math/libm-test.inc (expm1_test): Add more tests.  Do not allow
32329         spurious underflow.
32330         * sysdeps/i386/fpu/libm-test-ulps: Update.
32331         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
32333 2012-07-06  Mike Frysinger  <vapier@gentoo.org>
32335         * sunrpc/rpc_clntout.c: Change <rpc/types.h> to "rpc/types.h".
32337 2012-07-05  Joseph Myers  <joseph@codesourcery.com>
32339         [BZ #14157]
32340         [BZ #14331]
32341         * math/s_csqrt.c (__csqrt): Avoid multiplying by 0.5 where this
32342         could result in spurious underflow.  Scale down values above
32343         DBL_MAX / 4.0 instead of DBL_MAX / 2.0.
32344         * math/s_csqrtf.c (__csqrtf): Likewise.
32345         * math/s_csqrtl.c (__csqrtl): Likewise.
32346         * math/libm-test.inc (csqrt_test): Add more tests.  Do not allow
32347         spurious underflow.
32348         * sysdeps/i386/fpu/libm-test-ulps: Update.
32349         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
32351 2012-07-04  Andreas Schwab  <schwab@linux-m68k.org>
32353         * catgets/Makefile ($(objpfx)de.msg): Use xopen-msg.awk instead of
32354         xopen-msg.sed.
32355         * catgets/xopen-msg.awk: New file.
32356         * catgets/xopen-msg.sed: Removed.
32358         * intl/Makefile ($(objpfx)msgs.h): Use po2test.awk instead of
32359         po2text.sed.
32360         * intl/po2test.awk: New file.
32361         * intl/po2test.sed: Removed.
32363 2012-07-04  Joseph Myers  <joseph@codesourcery.com>
32365         [BZ #14328]
32366         * math/s_ctan.c (__ctan): Do not call sinh and cosh for subnormals
32367         or multiply small sinh result by itself.
32368         * math/s_ctanf.c (__ctanf): Likewise.
32369         * math/s_ctanh.c (__ctanh): Likewise.
32370         * math/s_ctanhf.c (__ctanhf): Likewise.
32371         * math/s_ctanhl.c (__ctanhl): Likewise.
32372         * math/s_ctanl.c (__ctanl): Likewise.
32373         * math/libm-test.inc (ctan_test_tonearest): New function.
32374         (ctan_test_towardzero): Likewise.
32375         (ctan_test_downward): Likewise.
32376         (ctan_test_upward): Likewise.
32377         (ctanh_test_tonearest): Likewise.
32378         (ctanh_test_towardzero): Likewise.
32379         (ctanh_test_downward): Likewise.
32380         (ctanh_test_upward): Likewise.
32381         (main): Call these new functions.
32382         * sysdeps/i386/fpu/libm-test-ulps: Update.
32383         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
32385 2012-07-03  Mike Frysinger  <vapier@gentoo.org>
32387         * .gitignore: Delete /ports entry.
32389 2012-07-03  Andreas Jaeger  <aj@suse.de>
32391         * po/bg.po: Update from translation team.
32392         * po/cs.po: Likewise.
32393         * po/de.po: Likewise.
32394         * po/hr.po: Likewise.
32395         * po/nl.pl: Likewise.
32396         * po/pl.po: Likewise.
32397         * po/vi.po: Likewise.
32399 2012-07-03  Joseph Myers  <joseph@codesourcery.com>
32401         * Makeconfig [!+link] (+link-before-libc): New variable.
32402         [!+link] (+link-after-libc): Likewise.
32403         [!+link] (+link-tests): Likewise.
32404         [!+link] (+link): Define in terms of $(+link-before-libc) and
32405         $(+link-after-libc).
32406         [!+link-static] (+link-static-before-libc): New variable.
32407         [!+link-static] (+link-static-after-libc): Likewise.
32408         [!+link-static] (+link-static-tests): Likewise.
32409         [!+link-static] (+link-static): Define in terms of
32410         $(+link-static-before-libc) and $(+link-static-after-libc).
32411         [build-shared] (link-libc-before-gnulib): New variable.
32412         [build-shared] (link-libc-tests): Likewise.
32413         [build-shared] (link-libc): Define in terms of
32414         $(link-libc-before-gnulib).
32415         [!build-shared] (link-libc-tests): New variable.
32416         (link-libc-static-tests): New variable.
32417         [!gnulib] (gnulib-arch): New variable.
32418         [!gnulib] (gnulib-tests): Likewise.
32419         [!gnulib] (static-gnulib-arch): Likewise.
32420         [!gnulib] (static-gnulib-tests): Likewise.
32421         [!gnulib] (gnulib): Use $(gnulib-arch).  Do not use $(libgcc_eh).
32422         Define with "=" instead of ":=".
32423         [!gnulib] (static-gnulib): Use $(static-gnulib-arch).  Do not use
32424         -lgcc_eh $(libunwind).  Define with "=" instead of ":=".
32425         * Rules (binaries-all-notests): New variable.
32426         (binaries-all-tests): Likewise.
32427         (binaries-static-notests): Likewise.
32428         (binaries-static-tests): Likewise.
32429         (binaries-all): Define using $(binaries-all-notests) and
32430         $(binaries-all-tests).
32431         (binaries-static): Define using $(binaries-static-notests) and
32432         $(binaries-static-tests).
32433         (binaries-shared-tests): New variable.
32434         (binaries-shared-notests): Likewise.
32435         (binaries-shared): Remove variable.
32436         ($(addprefix $(objpfx),$(binaries-shared-notests))): New rule.
32437         ($(addprefix $(objpfx),$(binaries-shared-tests))): Likewise.
32438         ($(addprefix $(objpfx),$(binaries-shared))): Remove rule.
32439         ($(addprefix $(objpfx),$(binaries-static-notests))): New rule.
32440         ($(addprefix $(objpfx),$(binaries-static-tests))): Likewise.
32441         ($(addprefix $(objpfx),$(binaries-static))): Remove rule.
32442         * elf/Makefile (sln-modules): New variable.
32443         (extra-objs): Add $(sln-modules:=.o).
32444         (ldconfig-modules): Add static-stubs.
32445         ($(objpfx)sln): Depend on $(sln-modules:%=$(objpfx)%.o).
32446         * elf/static-stubs.c: New file.
32448         [BZ #14283]
32449         * sysdeps/ieee754/flt-32/k_rem_pio2f.c (__kernel_rem_pio2f): Shift
32450         by 7 not 8 to examine high bit of fractional part.  Use volatile
32451         variables when splitting into final array of floats if
32452         __FLT_EVAL_METHOD__ != 0.
32453         * math/libm-test.inc (cos_test): Add another test.
32454         (sin_test): Likewise.
32455         * sysdeps/i386/fpu/libm-test-ulps: Update.
32457         [BZ #14273]
32458         * math/libm-test.inc (cosh_test): Add more tests.
32460         * version.h (RELEASE): Set to "development".
32461         (VERSION): Set to "2.16.90".
32463 2012-06-30  Carlos O'Donell  <carlos_odonell@mentor.com>
32465         * NEWS: Update copyright. Remove last-updated date.
32466         Mention math library bug fixes and timezone data changes.
32467         * README: Mention GNU/Hurd, x32, and HPPA support status.
32469 2012-06-28  Thomas Schwinge  <thomas@codesourcery.com>
32471         * manual/contrib.texi (Contributors): Sort alphabetically by last name.
32473 2012-06-27  Andreas Jaeger  <aj@suse.de>
32475         * manual/contrib.texi (Contributors): Add Samuel Thibault.
32477 2012-06-25  Andreas Jaeger  <aj@suse.de>
32479         * sysdeps/s390/fpu/libm-test-ulps: Update.
32481 2012-06-23  Andreas Schwab  <schwab@linux-m68k.org>
32482             Thomas Schwinge  <thomas@codesourcery.com>
32484         * sysdeps/unix/sysv/linux/sh/syscalls.list: Add fanotify_mark.
32485         * sysdeps/unix/sysv/linux/sh/Versions (GLIBC_2.16): Add fanotify_mark.
32486         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist (GLIBC_2.16): Add
32487         fanotify_mark.
32489 2012-06-23  Thomas Schwinge  <thomas@codesourcery.com>
32491         * sysdeps/mach/start.c: Remove file.
32492         * sysdeps/mach/hurd/i386/static-start.S: Fix start.S include.
32493         * sysdeps/i386/init-first.c: Fix comment regarding start.S.
32494         * sysdeps/sh/init-first.c: Likewise.
32496         * sysdeps/sh/____longjmp_chk.S (CALL_FAIL): Preserve r12 and pr
32497         registers for frame unwinding purposes, add CFI directives.
32498         * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S (CALL_FAIL): Likewise.
32499         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Likewise
32500         * sysdeps/unix/sysv/linux/sh/sysdep.h (SYSCALL_ERROR_HANDLER):
32501         Likewise.
32503         * sysdeps/sh/____longjmp_chk.S (CALL_FAIL): Don't plan for the call to
32504         __fortify_fail returning.
32505         * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S (CALL_FAIL): Likewise.
32507         * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S: New file, based on
32508         sysdeps/sh/____longjmp_chk.S.
32509         * sysdeps/unix/sysv/linux/sh/sigaltstack-offsets.sym: New file, based
32510         on sysdeps/unix/sysv/linux/x86_64/sigaltstack-offsets.sym.
32511         * sysdeps/unix/sysv/linux/sh/Makefile [subdir=misc]
32512         (gen-as-const-headers): Append sigaltstack-offsets.sym.
32514         * sysdeps/sh/abort-instr.h: New file.
32515         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Terminate the
32516         process in case exit returns.
32518         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Always
32519         initialize the GOT register before use.
32521         * sysdeps/unix/sysv/linux/sh/makecontext.S (__makecontext): Fix
32522         calculation of ARGC > 4.
32524         * sysdeps/unix/sysv/linux/sh/makecontext.S: Add comments and give more
32525         meaningful names to some local labels.
32527 2012-06-22  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
32528             Kaz Kojima  <kkojima@rr.iij4u.or.jp>
32530         * sysdeps/unix/sysv/linux/sh/bits/atomic.h
32531         (__arch_compare_and_exchange_val_8_acq): Remove explicit nop.
32532         (__arch_compare_and_exchange_val_16_acq): Likewise.
32533         (__arch_compare_and_exchange_val_32_acq): Likewise.
32534         (atomic_exchange_and_add): Fix gUSA sequence.
32535         (atomic_add): Likewise.
32536         (atomic_add_negative): Likewise.
32537         (atomic_add_zero): Likewise.
32538         (atomic_bit_test_set): Likewise.
32540 2012-06-22  Andreas Schwab  <schwab@redhat.com>
32542         [BZ #13579]
32543         * include/link.h (struct link_map): Add l_free_initfini.
32544         * elf/dl-deps.c (_dl_map_object_deps): Set it when assigning
32545         l_initfini.
32546         * elf/dl-close.c (_dl_close_worker): Don't free l_initfini.
32547         * elf/rtld.c (dl_main): Clear it on all objects loaded on startup.
32548         * elf/dl-libc.c (free_mem): Free l_initfini if l_free_initfini is
32549         set.
32551 2012-06-22  Carlos O'Donell  <carlos_odonell@mentor.com>
32553         * configure.in: Use AC_LANG_SOURCE.
32554         * configure: Regenerate.
32556 2012-06-22  Roland McGrath  <roland@hack.frob.com>
32558         * configure.in (libc_cv_localstatedir): New substituted variable.
32559         * configure: Regenerated.
32560         * config.make.in (localstatedir): New variable, substituted from
32561         libc_cv_localstatedir.
32562         * Makeconfig (vardbdir): Use $(localstatedir) in place of /var.
32563         * sysdeps/gnu/configure.in (libc_cv_localstatedir): Change
32564         ${prefix}/var to /var when we change ${prefix}/etc to /etc.
32565         * sysdeps/gnu/configure: Regenerated.
32567 2012-06-21  Jeff Law  <law@redhat.com>
32569         [BZ #14277]
32570         * intl/dcigettext.c (_nl_find_msg): Avoid use after potential
32571         free.  Simplify list management for _LIBC case.
32573 2012-06-21  Joseph Myers  <joseph@codesourcery.com>
32575         [BZ #14273]
32576         * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c (__ieee754_cosh):
32577         Clear sign bit of 64-bit integer value before comparing against
32578         overflow value.
32580         * sysdeps/mach/configure: Regenerated.
32582 2012-06-21  H.J. Lu  <hongjiu.lu@intel.com>
32584         [BZ #14278]
32585         * sysdeps/i386/sysdep.h (SYSCALL_PIC_SETUP): Fix a typo.
32587 2012-06-21  Jeff Law  <law@redhat.com>
32589         [BZ #13882]
32590         * elf/dl-deps.c (_dl_map_object_deps): Fix cycle detection.  Use
32591         uint16_t for elements in the "seen" array to avoid char overflows.
32592         * elf/dl-fini.c (_dl_sort_fini): Likewise.
32593         * elf/dl-open.c (dl_open_worker): Likewise.
32595 2012-06-21  Carlos O'Donell  <carlos_odonell@mentor.com>
32597         * scripts/list-sources.sh: Scan PORTS for translations.
32598         * po/libc.pot: Regenerated.
32600 2012-06-21  Andreas Jaeger  <aj@suse.de>
32602         [BZ #12194]
32603         * sysdeps/s390/bits/byteswap-16.h (__bswap_16): Avoid -Wconversion
32604         warning.
32605         * sysdeps/s390/bits/byteswap.h (__bswap_constant_16): Likewise.
32606         * bits/byteswap-16.h (__bswap_16): Likewise.
32607         * bits/byteswap.h (__bswap_constant_16): Likewise.
32609 2012-06-18  H.J. Lu  <hongjiu.lu@intel.com>
32611         [BZ #14117]
32612         * sysdeps/i386/fpu_control.h: Removed.
32613         * sysdeps/x86_64/fpu_control.h: Moved to ...
32614         * sysdeps/x86/fpu_control.h: Here.
32616         * sysdeps/x86_64/fpu_control.h (_FPU_GETCW): Add __volatile__.
32617         (_FPU_SETCW): Likewise.
32619 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
32621         [BZ #14117]
32622         * sysdeps/i386/fpu/bits/mathinline.h: Renamed to ...
32623         * sysdeps/x86/fpu/bits/mathinline.h: This.
32624         * sysdeps/x86_64/fpu/bits/mathinline.h: Removed.
32626         [BZ #14050]
32627         [BZ #14117]
32628         * sysdeps/i386/fpu/bits/mathinline.h: Disable x87 inline
32629         functions if __x86_64__ is defined.
32631 2012-06-15  Chung-Lin Tang  <cltang@codesourcery.com>
32633         * string/endian.h: Add !__ASSEMBLER__ condition for including
32634         conversion interfaces.
32636 2012-06-15  Joseph Myers  <joseph@codesourcery.com>
32638         [BZ #14241]
32639         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Use 0.0 instead
32640         of ABS(x) in calculating zero to negative powers other than odd
32641         integers.
32642         * math/libm-test.inc (pow_test): Add more tests.
32644 2012-06-15  Andreas Jaeger  <aj@suse.de>
32646         * manual/contrib.texi (Contributors): Update entry of Liubov
32647         Dmitrieva and add entries for Will Schmidt and Tulio Magno Quites
32648         Machado Filho.
32650 2012-06-15  Cyril Hrubis  <metan@ucw.cz>
32652         * string/string.h: Add __wur to GNU version of strerror_r.
32654 2012-06-14  H.J. Lu  <hongjiu.lu@intel.com>
32656         [BZ #14229]
32657         * string/Makefile (tests): Add tst-strtok_r.
32658         * string/tst-strtok_r.c: New file.
32659         * sysdeps/x86_64/strtok.S: Use LP_SIZE on save_ptr and use
32660         RAX_LP/RDX_LP on SAVE_PTR.
32662 2012-06-14  Roland McGrath  <roland@hack.frob.com>
32664         * manual/Makefile ($(objpfx)texis): Do $(make-target-directory).
32666 2012-06-14  Joseph Myers  <joseph@codesourcery.com>
32668         * libm_test.inc (csqrt_test): Allow more spurious underflow
32669         exceptions.
32670         (j0_test): Likewise.
32671         (j1_test): Likewise.
32672         (y0_test): Likewise.
32673         (y1_test): Likewise.
32675 2012-06-13  Carlos O'Donell  <carlos_odonell@mentor.com>
32677         * po/Makefile (libc.pot): Use UTF-8 charset.
32679 2012-06-13  Paul Pluzhnikov  <ppluzhnikov@google.com>
32681         [BZ #14210]
32682         Suppress sign-conversion warning from FD_SET.
32683         See <http://sourceware.org/ml/libc-alpha/2012-05/msg01794.html>.
32684         * debug/fdelt_chk.c (__fdelt_chk): Accept and return long int,
32685         not unsigned long int.
32686         * misc/bits/select2.h (__fdelt_chk, __fdelt_warn, __FD_ELT): Likewise.
32688 2012-06-12  H.J. Lu  <hongjiu.lu@intel.com>
32690         [BZ #14050]
32691         [BZ #14117]
32692         * sysdeps/i386/fpu/bits/mathinline.h (__MATH_INLINE): Check
32693         __extern_always_inline instead of __extern_inline.
32694         (__signbitf): Support __SSE2_MATH__ and C++ namespace.
32695         (__signbit): Likewise.
32696         (__signbitl): Support C++ namespace.
32697         (lrintf): New inline function.
32698         (lrint): Likewise.
32699         (llrintf): Likewise.
32700         (llrint): Likewise.
32701         (fmaxf): Likewise.
32702         (fmax): Likewise.
32703         (fminf): Likewise.
32704         (fmin): Likewise.
32705         (rint): Likewise.
32706         (rintf): Likewise.
32707         (ceil): Likewise.
32708         (ceilf): Likewise.
32709         (floor): Likewise.
32710         (floorf): Likewise.
32711         (nearbyint): Likewise.
32712         (nearbyintf): Likewise.
32714 2012-06-12  Thomas Schwinge  <thomas@codesourcery.com>
32716         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Fix case for
32717         non-default versions.
32719 2012-06-11  Roland McGrath  <roland@hack.frob.com>
32721         [BZ #14218]
32722         * manual/argp.texi (Argp): Reword argp_parse description slightly.
32724 2012-06-09  Thomas Schwinge  <thomas@codesourcery.com>
32726         * sysdeps/sh/sh4/fpu/bits/fenv.h (__FE_UNDEFINED): Define.
32727         (FE_UPWARD, FE_DOWNWARD): Don't define.
32728         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Adapt to that.
32729         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
32731         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Do not re-write fpscr after
32732         reading it.
32733         * sysdeps/sh/sh4/fpu/fegetexcept.c (fegetexcept): Likewise.
32734         * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
32736 2012-06-09  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
32738         * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
32739         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Refreshed.
32740         * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: Refreshed.
32741         * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: Refreshed.
32743 2012-06-06  H.J. Lu  <hongjiu.lu@intel.com>
32745         [BZ #14117]
32746         * sysdeps/i386/fpu/bits/fenv.h: Removed.
32747         * sysdeps/i386/fpu/Implies: New file.
32748         * sysdeps/x86_64/fpu/Implies: Likewise.
32749         * sysdeps/x86_64/fpu/bits/fenv.h: Renamed to ...
32750         * sysdeps/x86/fpu/bits/fenv.h: This.
32752         * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Check
32753         __SSE_MATH__.
32755 2012-06-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
32757         [BZ #14134]
32758         * iconvdata/ibm930.c (BODY) [FROM_LOOP]: Check for invalid
32759         character 0xffff that matches the last element of the
32760         conversion table.
32762 2012-06-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
32764         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Fix for wrong ldbl128-ibm
32765         fmodl commit.
32767 2012-06-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
32769         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Fix spurious underflow for
32770         values higher than 25.6283.
32772 2012-06-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
32774         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Fix
32775         subnormal exponent extraction and add some __builtin_expect.
32776         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_extract_mantissa):
32777         Fix for subnormal mantissa calculation.
32779 2012-06-04  Mike Frysinger  <vapier@gentoo.org>
32781         * sysdeps/unix/sysv/linux/tst-getcpu.c (do_test): Call perror when
32782         cpu2 is -1 and errno is not ENOSYS.
32784 2012-06-04  H.J. Lu  <hongjiu.lu@intel.com>
32786         [BZ #14117]
32787         * sysdeps/i386/i486/bits/string.h: Renamed to ...
32788         * sysdeps/x86/bits/string.h: This.
32789         * sysdeps/x86_64/bits/string.h: Removed.
32791         * sysdeps/i386/i486/bits/string.h: Define inline functions only
32792         if not compiling for x86-64, but compiling for >= i486.
32794         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: Renamed to ...
32795         * sysdeps/unix/sysv/linux/x86/bits/sigcontext.h: This.
32797         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (FP_XSTATE_MAGIC1):
32798         New macro from Linux kernel 3.4.0.
32799         (FP_XSTATE_MAGIC2): Likewise.
32800         (FP_XSTATE_MAGIC2_SIZE): Likewise.
32801         (X86_FXSR_MAGIC): New macro from Linux i386 kernel.
32802         (struct _fpx_sw_bytes): New struct.
32803         (struct _xsave_hdr): Likewise.
32804         (struct _ymmh_state): Likewise.
32805         (struct _xstate): Likewise.
32807         * sysdeps/unix/sysv/linux/i386/sys/debugreg.h: Removed.
32808         * sysdeps/unix/sysv/linux/i386/sys/reg.h: Likewise.
32809         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Renamed to ...
32810         * sysdeps/unix/sysv/linux/x86/sys/debugreg.h: This.
32811         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Renamed to ...
32812         * sysdeps/unix/sysv/linux/x86/sys/reg.h: This.
32814         * sysdeps/unix/sysv/linux/i386/sys/io.h: Removed.
32815         * sysdeps/unix/sysv/linux/x86_64/sys/io.h: Renamed to ...
32816         * sysdeps/unix/sysv/linux/x86/sys/io.h: This.
32817         * sysdeps/unix/sysv/linux/i386/sys/perm.h: Removed.
32818         * sysdeps/unix/sysv/linux/x86_64/sys/perm.h: Renamed to ...
32819         * sysdeps/unix/sysv/linux/x86/sys/perm.h: This.
32821 2012-06-04  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
32823         [BZ #13743]
32824         * sysdeps/powerpc/sys/platform/ppc.h: New file for PowerPC features.
32825         * sysdeps/powerpc/Makefile (tests): Add test-gettimebase.
32826         (sysdep_headers): Include sys/platform/ppc.h.
32827         * sysdeps/powerpc/test-gettimebase.c: Test for
32828         __ppc_get_timebase() to catch future ISA opcode/insn changes.
32829         * manual/Makefile (appendices): Include platform.texi.
32830         * manual/contrib.texi (Contributors): Update @node pointers.
32831         * manual/maint.texi (Maintenance): Likewise.
32832         (Platform): New node.
32833         * manual/platform.texi: New file.  Document the new features.
32835 2012-06-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
32836             Jakub Jelinek  <jakub@redhat.com>
32838         [BZ #14188]
32839         * misc/sys/cdefs.h (__glibc_unlikely): New macro to wrap cases
32840         where __builtin_expect is unavailable.
32842 2012-06-03  David S. Miller  <davem@davemloft.net>
32844         * stdlib/longlong.h: Updated from GCC.
32846 2012-06-02  Andreas Schwab  <schwab@linux-m68k.org>
32848         [BZ #14042]
32849         * sysdeps/powerpc/powerpc32/mcount.c: New file.
32850         * sysdeps/powerpc/powerpc32/Versions (GLIBC_2.16): Add
32851         __mcount_internal.
32852         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist
32853         (GLIBC_2.16): Likewise.
32855 2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
32857         * sysdeps/unix/sysv/linux/x86_64/sys/io.h (outsw): Fix a typo.
32859 2012-06-01  Joseph Myers  <joseph@codesourcery.com>
32861         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Makefile
32862         (default-abi): New variable.
32863         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Makefile: New file.
32864         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile (default-abi): New
32865         variable.
32866         * sysdeps/unix/sysv/linux/s390/s390-64/Makefile (default-abi):
32867         Likewise.
32868         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile (default-abi):
32869         Likewise.
32870         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile (default-abi):
32871         Likewise.
32873         * Makeconfig [abi-variants && !default-abi] (default-abi): Remove
32874         definition.  Document in comment.
32876 2012-06-01  David S. Miller  <davem@davemloft.net>
32878         * stdlib/longlong.h: Updated from GCC.
32880 2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
32882         [BZ #14117]
32883         * sysdeps/unix/sysv/linux/i386/Makefile (sysdep_headers):
32884         Don't add sys/elf.h sys/perm.h sys/reg.h sys/vm86.h
32885         sys/debugreg.h sys/io.h here.
32886         * sysdeps/unix/sysv/linux/x86/Makefile (sysdep_headers): Add
32887         sys/elf.h sys/perm.h sys/reg.h sys/vm86.h sys/debugreg.h
32888         sys/io.h.
32889         * sysdeps/unix/sysv/linux/x86_64/Makefile (sysdep_headers):
32890         Don't add sys/perm.h sys/reg.h sys/debugreg.h sys/io.h here.
32891         * sysdeps/unix/sysv/linux/i386/sys/elf.h: Renamed to ...
32892         * sysdeps/unix/sysv/linux/x86/sys/elf.h: This.
32893         * sysdeps/unix/sysv/linux/i386/sys/vm86.h: Renamed to ...
32894         * sysdeps/unix/sysv/linux/x86/sys/vm86.h: This.
32896         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h (DR_LEN_8):
32897         Define only if __x86_64__ is defined.
32899 2012-06-01  Joseph Myers  <joseph@codesourcery.com>
32901         [BZ #14048]
32902         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c (__ieee754_fmod):
32903         Use int64_t for variable i.
32904         * math/libm-test.inc (fmod_test): Add more tests.
32906         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Ensure temp + (double)
32907         z computation is not scheduled after fetestexcept.
32908         * sysdeps/ieee754/ldbl-128/s_fmal.c: Include <math_private.h>.
32909         Use math_force_eval instead of asm to ensure calculation scheduled
32910         before exception test.
32911         * sysdeps/ieee754/ldbl-96/s_fmal.c: Include <math_private.h>.
32912         Ensure a1 + u.d computation is not scheduled after fetestexcept.
32914 2012-06-01  Aurelien Jarno  <aurelien@aurel32.net>
32916         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Ensure a1 + u.d
32917         computation is not scheduled after fetestexcept.
32919 2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
32921         [BZ #14117]
32922         * sysdeps/unix/sysv/linux/i386/bits/wchar.h: Renamed to ...
32923         * sysdeps/unix/sysv/linux/x86/bits/wchar.h: This.
32925 2012-06-01  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
32927         * sysdeps/powerpc/fpu/k_cosf.c: Fix underflow generation.
32928         * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
32930 2012-05-31  H.J. Lu  <hongjiu.lu@intel.com>
32932         [BZ #14117]
32933         * sysdeps/unix/sysv/linux/i386/bits/wchar.h: Include
32934         <bits/wordsize.h>.
32935         (__WCHAR_MIN): Support __WORDSIZE == 64.
32936         (__WCHAR_MAX): Likewise.
32938         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h: Renamed to ...
32939         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h: This.
32941         [BZ #14183]
32942         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h (__FSWORD_T_TYPE):
32943         Defined with __SWORD_TYPE if __x86_64__ isn't defined.
32945         [BZ #14117]
32946         * sysdeps/unix/sysv/linux/x86_64/bits/siginfo.h: Renamed to ...
32947         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h: This.
32949         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Renamed to ...
32950         * sysdeps/unix/sysv/linux/x86/bits/stat.h: This.
32952         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h (_STAT_VER_KERNEL):
32953         Defined to 1 if __x86_64__ isn't defined.
32954         (_STAT_VER_LINUX_OLD): New.
32955         (st_atime): Remove duplicate.
32956         (st_mtime): Likewise.
32957         (st_ctime): Likewise.
32959 2012-05-31  David S. Miller  <davem@davemloft.net>
32961         * sysdeps/sparc/fpu/libm-test-ulps: Remove sqrt(2) and sqrt test
32962         entries.
32964 2012-06-01  Andreas Schwab  <schwab@linux-m68k.org>
32966         * sysdeps/powerpc/fpu/libm-test-ulps: Sort through
32967         gen-libm-test.pl.
32969         [BZ #14132]
32970         * elf/dl-reloc.c: Include <_itoa.h>.
32971         (_dl_reloc_bad_type): Remove use of INTUSE.
32972         * elf/dl-minimal.c (_itoa, _itoa_lower_digits): Likewise.
32973         * stdio-common/_itoa.c (_itoa_word, _itoa): Likewise.
32974         * stdio-common/psiginfo.c (psiginfo): Likewise.
32975         * stdio-common/psignal.c (psignal): Likewise.
32976         * string/strsignal.c (strsignal): Likewise.
32977         * include/signal.h (_sys_siglist): Declare hidden proto.
32978         * stdio-common/itoa-digits.c: Include <_itoa.h>.  Replace
32979         INTVARDEF with libc_hidden_data_def.
32980         * stdio-common/itoa-udigits.c: Likewise.
32981         * sysdeps/generic/_itoa.h (_itoa_upper_digits_internal)
32982         (_itoa_lower_digits_internal): Remove declaration.
32983         (_itoa_upper_digits, _itoa_lower_digits): Declare hidden proto.
32984         * sysdeps/gnu/siglist.c (_sys_siglist_internal)
32985         (_sys_sigabbrev_internal): Remove aliases.
32986         (_sys_siglist): Define hidden alias.
32988 2012-05-31  Markus Trippelsdorf  <markus@trippelsdorf.de>
32990         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
32991         bits/sysctl.h.
32993 2012-05-31  H.J. Lu  <hongjiu.lu@intel.com>
32995         [BZ #14117]
32996         * sysdeps/unix/sysv/linux/x86_64/bits/sysctl.h: Renamed to ...
32997         * sysdeps/unix/sysv/linux/x86/bits/sysctl.h: This.
32999         * sysdeps/unix/sysv/linux/i386/sys/ucontext.h: Removed.
33000         * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Renamed to ...
33001         * sysdeps/unix/sysv/linux/x86/sys/ucontext.h: This.
33002         * sysdeps/unix/sysv/linux/i386/sys/user.h: Removed.
33003         * sysdeps/unix/sysv/linux/x86_64/sys/user.h: Renamed to ...
33004         * sysdeps/unix/sysv/linux/x86/sys/user.h: This.
33006         * sysdeps/unix/sysv/linux/i386/sys/procfs.h: Removed.
33007         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: Renamed to ...
33008         * sysdeps/unix/sysv/linux/x86/sys/procfs.h: This.
33010         * sysdeps/unix/sysv/linux/x86_64/sys/io.h (insb): Replace addr
33011         with __addr.
33012         (insw): Likewise.
33013         (insl): Likewise.
33014         (outsb): Likewise.
33015         (outsw): Likewise.
33016         (outsl): Likewise.
33018         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Removed.
33019         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Renamed to ...
33020         * sysdeps/unix/sysv/linux/x86/bits/mman.h: This.
33022         * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Renamed to ...
33023         * sysdeps/unix/sysv/linux/x86/bits/msq.h: This.
33024         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h: Renamed to ...
33025         * sysdeps/unix/sysv/linux/x86/bits/sem.h: This.
33026         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Renamed to ...
33027         * sysdeps/unix/sysv/linux/x86/bits/shm.h: This.
33029         * sysdeps/unix/sysv/linux/x86_64/bits/ipctypes.h: Renamed to ...
33030         * sysdeps/unix/sysv/linux/x86/bits/ipctypes.h: This.
33032         * sysdeps/unix/sysv/linux/x86_64/bits/epoll.h: Renamed to ...
33033         * sysdeps/unix/sysv/linux/x86/bits/epoll.h: This.
33035         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Removed.
33036         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Renamed to ...
33037         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h: This.
33039         * sysdeps/unix/sysv/linux/i386/bits/environments.h: Removed.
33040         * sysdeps/unix/sysv/linux/x86_64/bits/environments.h: Renamed
33041         to ...
33042         * sysdeps/unix/sysv/linux/x86/bits/environments.h: This.
33044         * sysdeps/unix/sysv/linux/i386/bits/a.out.h: Removed.
33045         * sysdeps/unix/sysv/linux/x86_64/bits/a.out.h: Renamed to ...
33046         * sysdeps/unix/sysv/linux/x86/bits/a.out.h: This.
33048         * sysdeps/unix/sysv/linux/i386/sys/elf.h: Error when compiling
33049         for x86-64.
33050         * sysdeps/unix/sysv/linux/i386/sys/vm86.h: Likewise.
33052 2012-05-31  Joseph Myers  <joseph@codesourcery.com>
33054         * math/math.h (M_El): Use two more decimal places.
33055         (M_LOG2El): Likewise.
33056         (M_LOG10El): Likewise.
33057         (M_LN2l): Likewise.
33058         (M_LN10l): Likewise.
33059         (M_PIl): Likewise.
33060         (M_PI_2l): Likewise.
33061         (M_PI_4l): Likewise.
33062         (M_1_PIl): Likewise.
33063         (M_2_PIl): Likewise.
33064         (M_2_SQRTPIl): Likewise.
33065         (M_SQRT2l): Likewise.
33066         (M_SQRT1_2l): Likewise.
33068 2012-05-31  David S. Miller  <davem@davemloft.net>
33070         * sysdeps/sparc/sparc64/memcpy.S: Use fsrc2 to move 64-bit
33071         values between float registers.
33072         * sysdeps/sparc/sparc64/memset.S: Likewise.
33073         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
33075 2012-05-31  Mike Frysinger  <vapier@gentoo.org>
33077         * debug/Makefile (CFLAGS-tst-longjmp_chk.c): Delete
33078         -D_FORTIFY_SOURCE=1.
33079         (CPPFLAGS-tst-longjmp_chk.c): Define.
33080         (CFLAGS-tst-longjmp_chk2.c): Delete -D_FORTIFY_SOURCE=1.
33081         (CPPFLAGS-tst-longjmp_chk2.c): Define.
33082         * wcsmbs/Makefile (CPPFLAGS-tst-wchar-h.c): Rename from
33083         CFLAGS-tst-wchar-h.c.
33085 2012-05-31  Marek Polacek  <polacek@redhat.com>
33087         [BZ #14132]
33088         * include/mntent.h (__setmntent_internal, __getmntent_r_internal
33089         __endmntent_internal): Remove declaration.
33090         (__setmntent, __endmntent, __getmntent_r) [NOT_IN_libc]: Remove macro.
33091         (__setmntent, __endmntent, __getmntent_r): Declare hidden proto.
33092         * misc/mntent_r.c: Replace INTDEF with libc_hidden_def.
33094 2012-05-30  David S. Miller  <davem@davemloft.net>
33096         * sysdeps/sparc/sparc32/soft-fp/q_util.c
33097         (___Q_simulate_exceptions): Use real FP ops rather than writing
33098         into the %fsr.
33099         * sysdeps/sparc/sparc32/soft-fp/q_util.c (__Qp_handle_exceptions):
33100         Likewise.
33102 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
33104         [BZ #14117]
33105         * sysdeps/x86_64/bits/xtitypes.h: Renamed to ...
33106         * sysdeps/x86/bits/xtitypes.h: This.
33108         * sysdeps/x86_64/bits/wordsize.h: Renamed to ...
33109         * sysdeps/x86/bits/wordsize.h: This.
33111         * sysdeps/i386/bits/huge_vall.h: Renamed to ...
33112         * sysdeps/x86/bits/huge_vall.h: This.
33114         * sysdeps/i386/bits/select.h: Removed.
33115         * sysdeps/x86_64/bits/select.h: Renamed to ...
33116         * sysdeps/x86/bits/select.h: This.
33118         * sysdeps/i386/bits/setjmp.h: Removed.
33119         * sysdeps/x86_64/bits/setjmp.h: Renamed to ...
33120         * sysdeps/x86/bits/setjmp.h: This.
33122         * sysdeps/i386/bits/mathdef.h: Removed.
33123         * sysdeps/x86_64/bits/mathdef.h: Renamed to ...
33124         * sysdeps/x86/bits/mathdef.h: This.
33126 2012-05-30  Andreas Schwab  <schwab@linux-m68k.org>
33128         [BZ #14132]
33129         * include/sys/socket.h (__connect_internal)
33130         (__libc_sa_len_internal): Remove declaration.
33131         (__connect, __libc_sa_len): Declare hidden_proto.
33132         (SA_LEN): Remove use of INTUSE.
33133         * socket/connect.c: Add libc_hidden_def.
33134         * sysdeps/mach/hurd/connect.c: Replace INTDEF by libc_hidden_def.
33135         * sysdeps/unix/sysv/linux/sa_len.c: Likewise.
33136         * sysdeps/unix/inet/syscalls.list: Remove __connect_internal
33137         alias.
33138         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
33139         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
33140         * sysdeps/unix/sysv/linux/connect.S: Use libc_hidden_weak instead
33141         of adding _internal alias.
33143 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
33145         [BZ #14117]
33146         * sysdeps/i386/bits/link.h: Removed.
33147         * sysdeps/i386/bits/linkmap.h: Likewise.
33148         * sysdeps/x86_64/bits/link.h: Renamed to ...
33149         * sysdeps/x86/bits/link.h: This.
33150         * sysdeps/x86_64/bits/linkmap.h: Renamed to ...
33151         * sysdeps/x86/bits/linkmap.h: This.
33153         * sysdeps/i386/bits/endian.h: Removed.
33154         * sysdeps/x86_64/bits/endian.h: Renamed to ...
33155         * sysdeps/x86/bits/endian.h: This.
33157         * sysdeps/i386/bits/byteswap.h: Removed.
33158         * sysdeps/i386/bits/byteswap-16.h: Likewise.
33159         * sysdeps/x86_64/bits/byteswap.h: Renamed to ...
33160         * sysdeps/x86/bits/byteswap.h: This.
33161         * sysdeps/x86_64/bits/byteswap-16.h: Renamed to ...
33162         * sysdeps/x86/bits/byteswap-16.h: This.
33163         * sysdeps/i386/Implies: Add x86.
33164         * sysdeps/x86_64/Implies: Likewise.
33166 2012-05-30  David S. Miller  <davem@davemloft.net>
33168         * soft-fp/soft-fp.h (FP_CUR_EXCEPTIONS): Define.
33169         (FP_TRAPPING_EXCEPTIONS): Provide default implementation.
33170         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h
33171         (FP_TRAPPING_EXCEPTIONS): Define.
33172         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h
33173         (FP_TRAPPING_EXCEPTIONS): Define.
33174         * soft-fp/op-common.h (_FP_PACK_SEMIRAW): Signal underflow for
33175         subnormals only when inexact has been signalled or underflow
33176         exceptions are enabled.
33177         (_FP_PACK_CANONICAL): Likewise.
33179 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
33181         [BZ #14183]
33182         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h (__NLINK_T_TYPE):
33183         Defined with __UWORD_TYPE if __x86_64__ isn't defined.
33185 2012-05-30  Richard Henderson  <rth@twiddle.net>
33187         * sysdeps/unix/make-syscalls.sh: Protect symbol_version output
33188         with #ifndef NOT_IN_libc.
33190         * scripts/abilist.awk: Accept 8 fields.  Handle Alpha functions
33191         marked to avoid plt entry.
33193 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
33195         [BZ #14112]
33196         * Makeconfig (default-abi): New macro.
33197         (abi-includes): Likewise.
33198         ($(common-objpfx)soversions.mk): Remove WORDSIZE check.  Use
33199         $(abi-$(default-abi)-lib-soname) for soname if defined.
33200         ($(common-objpfx)gnu/lib-names.stmp): Generate from
33201         abi-variants.
33202         * Makefile (installed-stubs): Likewise.
33203         * include/stubs-biarch.h: Removed.
33204         * scripts/lib-names.awk: Only handle one library at a time.
33205         * scripts/soversions.awk: Remove WORDSIZE support.
33206         * shlib-versions: Remove WORDSIZE and i.86/s390x/powerpc64 ld
33207         entries.
33208         * sysdeps/unix/sysv/linux/Makefile (syscall-list-variants):
33209         Removed.
33210         (syscall-list-default-condition): Likewise.
33211         (syscall-list-default-condition): Likewise.
33212         (syscall-list-includes): Likewise.
33213         ($(objpfx)bits/syscall%h $(objpfx)bits/syscall%d): Replace
33214         syscall-list-* with abi-*.  Handle undefined abi-variants.
33215         * sysdeps/unix/sysv/linux/i386/Makefile (default-abi): New macro.
33216         * sysdeps/unix/sysv/linux/i386/Implies: New file.
33217         * sysdeps/unix/sysv/linux/x86/Makefile: Likewise.
33218         * sysdeps/unix/sysv/linux/x86_64/64/Makefile: Likewise.
33219         * sysdeps/unix/sysv/linux/x86_64/Implies: Add unix/sysv/linux/x86.
33220         * sysdeps/unix/sysv/linux/x86_64/Makefile (syscall-list-variants):
33221         Removed.
33222         (syscall-list-32-options): Likewise.
33223         (syscall-list-32-condition): Likewise.
33224         (syscall-list-64-options): Likewise.
33225         (syscall-list-64-condition): Likewise.
33226         * sysdeps/unix/sysv/linux/x86_64/x32/Makefile (default-abi): New
33227         macro.
33228         * sysdeps/unix/sysv/linux/powerpc/Makefile (syscall-list-*):
33229         Renamed to ...
33230         (abi-*): This.
33231         (abi-64-ld-soname): New macro.
33232         * sysdeps/unix/sysv/linux/s390/Makefile: Likewise.
33233         * sysdeps/unix/sysv/linux/sparc/Makefile (syscall-list-*):
33234         Renamed to ...
33235         (abi-*): This.
33236         * sysdeps/x86_64/64/shlib-versions: Remove ld entry.
33237         * sysdeps/x86_64/x32/shlib-versions: Likewise.
33239 2012-05-30  Joseph Myers  <joseph@codesourcery.com>
33241         * sysdeps/unix/sysv/linux/kernel-features.h
33242         (__ASSUME_TRUNCATE64_SYSCALL): Remove all definitions.
33243         * sysdeps/unix/sysv/linux/ftruncate64.c: Do not
33244         include <kernel-features.h>.
33245         [!__NR_ftruncate64]: Remove conditional code.
33246         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
33247         [__NR_ftruncate64]: Make code unconditional.
33248         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
33249         * sysdeps/unix/sysv/linux/truncate64.c: Do not
33250         include <kernel-features.h>.
33251         [!__NR_ftruncate64]: Remove conditional code.
33252         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
33253         [__NR_ftruncate64]: Make code unconditional.
33254         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
33255         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c: Do not
33256         include <kernel-features.h>.
33257         [!__NR_ftruncate64]: Remove conditional code.
33258         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
33259         [__NR_ftruncate64]: Make code unconditional.
33260         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
33261         * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Do not
33262         include <kernel-features.h>.
33263         [!__NR_ftruncate64]: Remove conditional code.
33264         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
33265         [__NR_ftruncate64]: Make code unconditional.
33266         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
33268         * configure.in (libc_cv_fpie): Weaken to a compile test using
33269         LIBC_TRY_CC_OPTION.
33270         * configure: Regenerated.
33272 2012-05-29  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
33274         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: Refreshed.
33275         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Refreshed.
33276         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: Refreshed.
33277         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
33278         Refreshed.
33279         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: Refreshed.
33280         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: Refreshed.
33281         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: Refreshed.
33282         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Refreshed.
33283         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: Refreshed.
33284         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
33285         Refreshed.
33287 2012-05-27  David S. Miller  <davem@davemloft.net>
33289         * sysdeps/sparc/sparc32/soft-fp/q_util.c (___Q_numbers): Delete.
33290         (___Q_zero): New.
33291         (__Q_simulate_exceptions): Return void.  Change to simulate
33292         exceptions by writing into the %fsr.
33293         * sysdeps/sparc/sparc64/soft-fp/qp_util.c
33294         (__Qp_handle_exceptions): Likewise.
33295         (numbers): Delete.
33296         * sysdeps/sparc/sparc64/soft-fp/Versions: Remove entry for
33297         __Qp_handle_exceptions.
33298         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Remove
33299         __Qp_handle_exceptions.
33300         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h (_FP_DECL_EX): Mark
33301         as unused and give dummy FP_RND_NEAREST initializer.
33302         (FP_INHIBIT_RESULTS): Define.
33303         (___Q_simulate_exceptions): Update declaration.
33304         (FP_HANDLE_EXCEPTIONS): Use ___Q_zero and tidy inline asm
33305         formatting.
33306         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h (_FP_DECL_EX): Mark
33307         as unused and give dummy FP_RND_NEAREST initializer.
33308         (__Qp_handle_exceptions): Update declaration.
33309         (FP_HANDLE_EXCEPTIONS, QP_NO_EXCEPTIONS): Tidy inline asm
33310         formatting.
33312 2012-05-27  Thomas Schwinge  <thomas@codesourcery.com>
33314         * sysdeps/sh/sh4/fpu/fclrexcpt.c (feclearexcept): Use fpu_control_t for
33315         the temporary FPU control word.
33316         * sysdeps/sh/sh4/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
33317         * sysdeps/sh/sh4/fpu/feenablxcpt.c (feenableexcept): Likewise.
33318         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Likewise.
33319         * sysdeps/sh/sh4/fpu/fegetexcept.c (fegetexcept): Likewise.
33320         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
33321         * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Likewise.
33322         * sysdeps/sh/sh4/fpu/fesetenv.c (fesetenv): Likewise.
33323         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
33324         * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
33325         * sysdeps/sh/sh4/fpu/fsetexcptflg.c (fesetexceptflag): Likewise.
33326         * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
33328 2012-05-27  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
33330         * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Restore fpscr flag
33331         fields.
33333 2012-05-27  Chung-Lin Tang  <cltang@codesourcery.com>
33335         * sysdeps/sh/_mcount.S (_mount): Add CFI directives.
33336         * sysdeps/unix/sh/sysdep.S (__syscall_error): Likewise.
33337         * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S (__setcontext): Likewise.
33338         * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S (__swapcontext):
33339         Likewise.
33340         * sysdeps/unix/sysv/linux/sh/sh4/setcontext.S (__setcontext): Likewise.
33341         * sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S (__swapcontext):
33342         Likewise.
33344 2012-05-27  Ulrich Drepper  <drepper@gmail.com>
33346         * po/h.po: Update from translation team.
33348 2012-05-26  Andreas Schwab  <schwab@linux-m68k.org>
33350         * sysdeps/powerpc/powerpc32/dl-irel.h: Include <ldsodefs.h>.
33352         * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Optimize
33353         handling of denormals.
33354         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
33355         * sysdeps/ieee754/flt-32/s_logbf.c (__logbf): Likewise.
33356         * sysdeps/ieee754/ldbl-96/s_logbl.c (__logbl): Likewise.
33357         * sysdeps/ieee754/ldbl-128/s_logbl.c (__logbl): Likewise.
33358         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
33359         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c (_logb): Likewise.
33360         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c (_logbl):
33361         Likewise.
33363 2012-05-26  Marek Polacek  <polacek@redhat.com>
33365         [BZ #14152]
33366         * math/libm-test.inc (fma_test): Don't always expect underflow
33367         exception.
33369 2012-05-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
33371         [BZ #12416]
33372         * elf/tst-execstack.c: Include stackinfo.h.
33373         (do_test): Adjust test case to ensure that pthread_getattr_np
33374         behaviour remains the same after marking stack executable.
33376 2012-05-25  Joseph Myers  <joseph@codesourcery.com>
33378         * sysdeps/unix/sysv/linux/kernel-features.h
33379         (__ASSUME_NEW_GETRLIMIT_SYSCALL): Remove all definitions.
33380         * sysdeps/unix/sysv/linux/i386/getrlimit.c: Do not include
33381         kernel-features.h.
33382         [!__ASSUME_NEW_GETRLIMIT_SYSCALL]: Remove conditional code.
33383         [__ASSUME_NEW_GETRLIMIT_SYSCALL]: Make code unconditional.
33384         * sysdeps/unix/sysv/linux/i386/setrlimit.c Do not include
33385         kernel-features.h.
33386         [!__ASSUME_NEW_GETRLIMIT_SYSCALL]: Remove conditional code.
33387         [__ASSUME_NEW_GETRLIMIT_SYSCALL]: Make code unconditional.
33389 2012-05-25  H.J. Lu  <hongjiu.lu@intel.com>
33391         * configure.in: Define the default includes to being none.
33392         * configure: Regenerated.
33394 2012-05-25  Roland McGrath  <roland@hack.frob.com>
33396         * sysdeps/x86_64/__longjmp.S: Add a static probe here.
33397         * sysdeps/x86_64/setjmp.S: Likewise.
33398         * sysdeps/i386/bsd-setjmp.S: Likewise.
33399         * sysdeps/i386/bsd-_setjmp.S: Likewise.
33400         * sysdeps/i386/setjmp.S: Likewise.
33401         * sysdeps/i386/__longjmp.S: Likewise.
33402         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Likewise.
33403         * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S: Likewise.
33405         * include/stap-probe.h: New file.
33406         * configure.in: Handle --enable-systemtap.
33407         * configure: Regenerated.
33408         * config.h.in (USE_STAP_PROBE): New #undef.
33409         * extra-lib.mk (CPPFLAGS-$(lib)): Add -DIN_LIB=$(lib).
33410         * elf/Makefile (CPPFLAGS-.os): Add -DIN_LIB=rtld.
33411         * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
33413 2012-05-25  Joseph Myers  <joseph@codesourcery.com>
33415         [BZ #13717]
33416         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel): Set
33417         to 2.4.0 where earlier.
33418         * sysdeps/unix/sysv/linux/configure: Regenerated.
33419         * sysdeps/unix/sysv/linux/i386/chown.c: Do not include
33420         <kernel-features.h>.
33421         [__ASSUME_32BITUIDS]: Make code unconditional.
33422         [!__ASSUME_32BITUIDS]: Remove conditional code.
33423         * sysdeps/unix/sysv/linux/i386/fchown.c: Do not include
33424         <kernel-features.h>.
33425         [__ASSUME_32BITUIDS]: Make code unconditional.
33426         [!__ASSUME_32BITUIDS]: Remove conditional code.
33427         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat)
33428         [__ASSUME_32BITUIDS]: Make code unconditional.
33429         (fchownat) [!__ASSUME_32BITUIDS]: Remove conditional code.
33430         * sysdeps/unix/sysv/linux/i386/getegid.c: Do not include
33431         <kernel-features.h>.
33432         [__ASSUME_32BITUIDS]: Make code unconditional.
33433         [!__ASSUME_32BITUIDS]: Remove conditional code.
33434         * sysdeps/unix/sysv/linux/i386/geteuid.c: Do not include
33435         <kernel-features.h>.
33436         [__ASSUME_32BITUIDS]: Make code unconditional.
33437         [!__ASSUME_32BITUIDS]: Remove conditional code.
33438         * sysdeps/unix/sysv/linux/i386/getgid.c: Do not include
33439         <kernel-features.h>.
33440         [__ASSUME_32BITUIDS]: Make code unconditional.
33441         [!__ASSUME_32BITUIDS]: Remove conditional code.
33442         * sysdeps/unix/sysv/linux/i386/getgroups.c: Do not include
33443         <kernel-features.h>.
33444         [__ASSUME_32BITUIDS]: Make code unconditional.
33445         [!__ASSUME_32BITUIDS]: Remove conditional code.
33446         * sysdeps/unix/sysv/linux/i386/getresgid.c: Do not include
33447         <kernel-features.h>.
33448         [__ASSUME_32BITUIDS]: Make code unconditional.
33449         [!__ASSUME_32BITUIDS]: Remove conditional code.
33450         * sysdeps/unix/sysv/linux/i386/getresuid.c: Do not include
33451         <kernel-features.h>.
33452         [__ASSUME_32BITUIDS]: Make code unconditional.
33453         [!__ASSUME_32BITUIDS]: Remove conditional code.
33454         * sysdeps/unix/sysv/linux/i386/getuid.c: Do not include
33455         <kernel-features.h>.
33456         [__ASSUME_32BITUIDS]: Make code unconditional.
33457         [!__ASSUME_32BITUIDS]: Remove conditional code.
33458         * sysdeps/unix/sysv/linux/i386/lchown.c: Do not include
33459         <kernel-features.h>.
33460         [__ASSUME_32BITUIDS]: Make code unconditional.
33461         [!__ASSUME_32BITUIDS]: Remove conditional code.
33462         * sysdeps/unix/sysv/linux/i386/msgctl.c: Do not include
33463         <kernel-features.h>.
33464         [__ASSUME_32BITUIDS]: Make code unconditional.
33465         [!__ASSUME_32BITUIDS]: Remove conditional code.
33466         * sysdeps/unix/sysv/linux/i386/semctl.c: Do not include
33467         <kernel-features.h>.
33468         [__ASSUME_32BITUIDS]: Make code unconditional.
33469         [!__ASSUME_32BITUIDS]: Remove conditional code.
33470         * sysdeps/unix/sysv/linux/i386/setegid.c: Do not include
33471         <kernel-features.h>.
33472         [__NR_setresgid] (__setresgid): Do not declare.
33473         [__ASSUME_32BITUIDS]: Make code unconditional.
33474         [!__ASSUME_32BITUIDS]: Remove conditional code.
33475         * sysdeps/unix/sysv/linux/i386/seteuid.c: Do not include
33476         <kernel-features.h>.
33477         [__NR_setresuid] (__setresuid): Do not declare.
33478         [__ASSUME_32BITUIDS]: Make code unconditional.
33479         [!__ASSUME_32BITUIDS]: Remove conditional code.
33480         * sysdeps/unix/sysv/linux/i386/setfsgid.c: Do not include
33481         <kernel-features.h>.
33482         [__ASSUME_32BITUIDS]: Make code unconditional.
33483         [!__ASSUME_32BITUIDS]: Remove conditional code.
33484         * sysdeps/unix/sysv/linux/i386/setfsuid.c: Do not include
33485         <kernel-features.h>.
33486         [__ASSUME_32BITUIDS]: Make code unconditional.
33487         [!__ASSUME_32BITUIDS]: Remove conditional code.
33488         * sysdeps/unix/sysv/linux/i386/setgid.c: Do not include
33489         <kernel-features.h>.
33490         [__ASSUME_32BITUIDS]: Make code unconditional.
33491         [!__ASSUME_32BITUIDS]: Remove conditional code.
33492         * sysdeps/unix/sysv/linux/i386/setgroups.c: Do not include
33493         <kernel-features.h>.
33494         [__ASSUME_32BITUIDS]: Make code unconditional.
33495         [!__ASSUME_32BITUIDS]: Remove conditional code.
33496         * sysdeps/unix/sysv/linux/i386/setregid.c: Do not include
33497         <kernel-features.h>.
33498         [__ASSUME_32BITUIDS]: Make code unconditional.
33499         [!__ASSUME_32BITUIDS]: Remove conditional code.
33500         * sysdeps/unix/sysv/linux/i386/setresgid.c: Do not include
33501         <kernel-features.h>.
33502         [__ASSUME_32BITUIDS]: Make code unconditional.
33503         [!__ASSUME_32BITUIDS]: Remove conditional code.
33504         * sysdeps/unix/sysv/linux/i386/setresuid.c: Do not include
33505         <kernel-features.h>.
33506         [__ASSUME_32BITUIDS]: Make code unconditional.
33507         [!__ASSUME_32BITUIDS]: Remove conditional code.
33508         * sysdeps/unix/sysv/linux/i386/setreuid.c: Do not include
33509         <kernel-features.h>.
33510         [__ASSUME_32BITUIDS]: Make code unconditional.
33511         [!__ASSUME_32BITUIDS]: Remove conditional code.
33512         * sysdeps/unix/sysv/linux/i386/setuid.c: Do not include
33513         <kernel-features.h>.
33514         [__ASSUME_32BITUIDS]: Make code unconditional.
33515         [!__ASSUME_32BITUIDS]: Remove conditional code.
33516         * sysdeps/unix/sysv/linux/i386/shmctl.c: Do not include
33517         <kernel-features.h>.
33518         [__ASSUME_32BITUIDS]: Make code unconditional.
33519         [!__ASSUME_32BITUIDS]: Remove conditional code.
33520         * sysdeps/unix/sysv/linux/kernel-features.h
33521         (__ASSUME_SETRESUID_SYSCALL): Remove.
33522         (__ASSUME_SETRESGID_SYSCALL): Likewise.
33523         (__ASSUME_32BITUIDS): Likewise.
33524         (__ASSUME_LDT_WORKS): Likewise.
33525         (__ASSUME_O_DIRECTORY): Likewise.
33526         (__ASSUME_NEW_GETRLIMIT_SYSCALL): Define conditional on
33527         architecture but not kernel version.
33528         (__ASSUME_TRUNCATE64_SYSCALL): Likewise.
33529         (__ASSUME_MMAP2_SYSCALL): Likewise.
33530         (__ASSUME_STAT64_SYSCALL): Likewise.
33531         (__ASSUME_IPC64): Likewise.
33532         * sysdeps/unix/sysv/linux/local-setxid.h: Do not include
33533         <kernel-features.h>.
33534         [__ASSUME_32BITUIDS]: Make code unconditional.
33535         [!__ASSUME_32BITUIDS]: Remove conditional code.
33536         * sysdeps/unix/sysv/linux/opendir.c: Do not include
33537         <kernel-features.h>.
33538         [__ASSUME_O_DIRECTORY]: Make code unconditional.
33539         * sysdeps/unix/sysv/linux/opensock.c [__LINUX_KERNEL_VERSION <
33540         132096]: Remove conditional code.
33541         [__LINUX_KERNEL_VERSION >= 132096]: Make code unconditional.
33542         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Do not include
33543         <kernel-features.h>.
33544         [__ASSUME_32BITUIDS]: Make code unconditional.
33545         [!__ASSUME_32BITUIDS]: Remove conditional code.
33546         * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Do not include
33547         <kernel-features.h>.
33548         [__ASSUME_32BITUIDS]: Make code unconditional.
33549         [!__ASSUME_32BITUIDS]: Remove conditional code.
33550         * sysdeps/unix/sysv/linux/setegid.c: Do not include
33551         <kernel-features.h>.
33552         [__NR_setresgid || __ASSUME_SETRESGID_SYSCALL]: Make code
33553         unconditional.
33554         (__setresgid): Do not declare.
33555         [__ASSUME_32BITUIDS]: Make code unconditional.
33556         [!__ASSUME_32BITUIDS]: Remove conditional code.
33557         * sysdeps/unix/sysv/linux/seteuid.c: Do not include
33558         <kernel-features.h>.
33559         [__NR_setresuid || __ASSUME_SETRESUID_SYSCALL]: Make code
33560         unconditional.
33561         (__setresuid): Do not declare.
33562         [__ASSUME_32BITUIDS]: Make code unconditional.
33563         [!__ASSUME_32BITUIDS]: Remove conditional code.
33564         * sysdeps/unix/sysv/linux/sh/chown.c: Do not include
33565         <kernel-features.h>.
33566         [__ASSUME_32BITUIDS]: Make code unconditional.
33567         [!__ASSUME_32BITUIDS]: Remove conditional code.
33568         * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Do not include
33569         <kernel-features.h>.
33570         [__ASSUME_32BITUIDS]: Make code unconditional.
33571         [!__ASSUME_32BITUIDS]: Remove conditional code.
33573 2012-05-25  Richard Henderson  <rth@twiddle.net>
33575         * sysdeps/powerpc/powerpc32/dl-irel.h (elf_ifunc_invoke): Pass
33576         dl_hwcap to ifunc resolver.
33577         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Use
33578         elf_ifunc_invoke.
33579         * sysdeps/powerpc/powerpc64/dl-irel.h (elf_ifunc_invoke): Pass
33580         dl_hwcap to ifunc resolver.
33581         * sysdeps/powerpc/powerpc64/dl-machine.h (resolve_ifunc): Likewise.
33583 2012-05-24  Joseph Myers  <joseph@codesourcery.com>
33585         [BZ #14153]
33586         * sysdeps/ieee754/flt-32/e_acosf.c (__ieee754_acosf): Return pi/2
33587         for |x| <= 2**-26, not 2**-57.
33588         * math/libm-test.inc (acos_test): Do not allow spurious underflow
33589         exception.
33591 2012-05-24  Jeff Law  <law@redhat.com>
33593         * stdio-common/Makefile (tests): Add bug25.
33594         * stdio-common/bug25.c: New test.
33596 2012-05-24  H.J. Lu  <hongjiu.lu@intel.com>
33598         [BZ #13576]
33599         * malloc/malloc.c (sYSMALLOc): Free the old top chunk with a
33600         multiple of MALLOC_ALIGNMENT in size.
33601         (_int_free): Check chunk size is a multiple of MALLOC_ALIGNMENT.
33603 2012-05-24  Joseph Myers  <joseph@codesourcery.com>
33605         * conform/data/stdio.h-data (BUFSIZ): Use macro-int-constant.
33606         Require >= 256.
33607         (FILENAME_MAX): Use macro-int-constant.
33608         (FOPEN_MAX): Use macro-int-constant.  Require >= 8.
33609         (_IOFBF): Use macro-int-constant.
33610         (_IOLBF): Likewise.
33611         (_IONBF): Likewise.
33612         (SEEK_CUR): Likewise.
33613         (SEEK_END): Likewise.
33614         (SEEK_SET): Likewise.
33615         (TMP_MAX): Likewise.
33616         (EOF): Use macro-int-constant.  Require < 0.
33617         (NULL): Use macro-constant.  Require == 0.
33618         (stdin): Require type to be FILE *.
33619         (stdout): Likewise.
33620         (stderr): Likewise.
33621         * conform/data/stdlib.h-data (EXIT_FAILURE): Use
33622         macro-int-constant.
33623         (EXIT_SUCCESS): Likewise.
33624         (NULL): Use macro-constant.  Require == 0.
33625         (RAND_MAX): Use macro-int-constant.
33626         [ISO99 || ISO11] (lldiv_t): Require also for these standards.
33627         [C99-based standards] (strtof): Require function.
33628         [C99-based standards] (strtold): Likewise.
33629         [C99-based standards] (strtoll): Likewise.
33630         [C99-based standards] (strtoull): Likewise.
33631         [ISO || ISO99 || ISO11] (stddef.h): Do not allow header.
33632         [ISO || ISO99 || ISO11] (limits.h): Likewise.
33633         [ISO || ISO99 || ISO11] (math.h): Likewise.
33634         [ISO || ISO99 || ISO11] (sys/wait.h): Likewise.
33635         (str*): Change to str[abcdefghijklmnopqrstuvwxyz]*.
33636         [ISO || ISO99 || ISO11] (*_t): Do not allow.
33638 2012-05-24  Andreas Schwab  <schwab@linux-m68k.org>
33640         [BZ #14132]
33641         * argp/argp-help.c (dgettext) [_LIBC]: Remove use of INTUSE.
33642         * argp/argp-parse.c (dgettext) [_LIBC]: Likewise.
33643         * intl/dgettext.c (DCGETTEXT): Likewise.
33644         * intl/gettext.c (DCGETTEXT): Likewise.
33645         * intl/l10nflist.c (__argz_count, __argz_stringify): Likewise.
33646         * posix/regex_internal.h (gettext): Likewise.
33647         * include/libintl.h (__dcgettext_internal, __dcngettext_internal):
33648         Remove declaration.
33649         * include/argz.h (__argz_count_internal)
33650         (__argz_stringify_internal): Remove declaration.
33651         (__argz_count, __argz_stringify): Declare hidden proto.
33652         * intl/dcgettext.c: Remove use of INTDEF.
33653         * string/argz-count.c: Replace INTDEF with libc_hidden_def.
33654         * string/argz-stringify.c: Likewise.
33655         * include/libio.h (_IO_free_backup_area, _IO_free_wbackup_area)
33656         (_IO_padn, _IO_putc, _IO_sgetn, _IO_vfprintf, _IO_vfscanf):
33657         Declare hidden proto.
33658         * include/libio.h (_IO_free_backup_area, _IO_free_wbackup_area)
33659         (_IO_padn, _IO_putc, _IO_sgetn, _IO_vfprintf, _IO_vfscanf):
33660         Declare hidden proto.
33661         * include/stdio.h (__asprintf_internal): Don't declare.
33662         (__asprintf): Don't define as macro.  Declare hidden proto.
33663         * include/stdio_ext.h (__fsetlocking_internal): Don't declare.
33664         (__fsetlocking): Declare hidden proto.
33665         * libio/iolibio.h (_IO_fdopen, _IO_fflush, _IO_ftell, _IO_fread)
33666         (_IO_fwrite, _IO_setbuffer, _IO_setvbuf, _IO_vsprintf): Declare
33667         hidden proto.
33668         (_IO_vprintf, _IO_freopen, _IO_freopen64, _IO_setbuf)
33669         (_IO_setlinebuf): Remove use of INTUSE.
33670         (_IO_setbuffer_internal, _IO_fread_internal, _IO_fdopen_internal)
33671         (_IO_vsprintf_internal, _IO_fflush_internal, _IO_fwrite_internal)
33672         (_IO_ftell_internal, _IO_fputs_internal, _IO_setvbuf_internal):
33673         Remove declaration.
33674         * libio/libioP.h (INTUSE, INTDEF, INTDEF2): Don't define.
33675         (_IO_do_flush): Remove use of INTUSE.
33676         (_IO_switch_to_get_mode, _IO_init, _IO_sputbackc, _IO_un_link)
33677         (_IO_link_in, _IO_doallocbuf, _IO_unsave_markers, _IO_setb)
33678         (_IO_adjust_column, _IO_least_wmarker)
33679         (_IO_switch_to_main_wget_area, _IO_switch_to_wbackup_area)
33680         (_IO_switch_to_wget_mode, _IO_wsetb, _IO_sputbackwc)
33681         (_IO_wdoallocbuf, _IO_default_uflow, _IO_wdefault_uflow)
33682         (_IO_default_doallocate, _IO_wdefault_doallocate)
33683         (_IO_default_finish, _IO_wdefault_finish, _IO_default_pbackfail)
33684         (_IO_wdefault_pbackfail, _IO_default_xsputn, _IO_wdefault_xsputn)
33685         (_IO_default_xsgetn, _IO_wdefault_xsgetn, _IO_do_write)
33686         (_IO_wdo_write, _IO_flush_all, _IO_flush_all_linebuffered)
33687         (_IO_file_doallocate, _IO_file_setbuf, _IO_file_seekoff)
33688         (_IO_file_xsputn, _IO_file_xsgetn, _IO_file_stat, _IO_file_close)
33689         (_IO_file_underflow, _IO_file_overflow, _IO_file_init)
33690         (_IO_file_attach, _IO_file_fopen, _IO_file_read, _IO_file_sync)
33691         (_IO_file_close_it, _IO_file_seek, _IO_file_finish)
33692         (_IO_wfile_xsputn, _IO_wfile_sync, _IO_wfile_underflow)
33693         (_IO_wfile_overflow, _IO_wfile_seekoff, _IO_str_underflow)
33694         (_IO_str_overflow, _IO_str_pbackfail, _IO_str_seekoff)
33695         (_IO_getline, _IO_getline_info, _IO_list_all): Declare hidden
33696         proto.
33697         (_IO_flush_all_internal, _IO_adjust_column_internal)
33698         (_IO_default_uflow_internal, _IO_default_finish_internal)
33699         (_IO_default_pbackfail_internal, _IO_default_xsputn_internal)
33700         (_IO_default_xsgetn_internal, _IO_default_doallocate_internal)
33701         (_IO_wdefault_finish_internal, _IO_wdefault_pbackfail_internal)
33702         (_IO_wdefault_xsputn_internal, _IO_wdefault_xsgetn_internal)
33703         (_IO_wdefault_doallocate_internal, _IO_wdefault_uflow_internal)
33704         (_IO_file_doallocate_internal, _IO_file_setbuf_internal)
33705         (_IO_file_seekoff_internal, _IO_file_xsputn_internal)
33706         (_IO_file_xsgetn_internal, _IO_file_stat_internal)
33707         (_IO_file_close_internal, _IO_file_close_it_internal)
33708         (_IO_file_underflow_internal, _IO_file_overflow_internal)
33709         (_IO_file_init_internal, _IO_file_attach_internal)
33710         (_IO_file_fopen_internal, _IO_file_read_internal)
33711         (_IO_file_sync_internal, _IO_file_seek_internal)
33712         (_IO_file_finish_internal, _IO_wfile_xsputn_internal)
33713         (_IO_wfile_seekoff_internal, _IO_wfile_sync_internal)
33714         (_IO_str_underflow_internal, _IO_str_overflow_internal)
33715         (_IO_str_pbackfail_internal, _IO_str_seekoff_internal)
33716         (_IO_file_jumps_internal, _IO_wfile_jumps_internal)
33717         (_IO_list_all_internal, _IO_link_in_internal)
33718         (_IO_sputbackc_internal, _IO_wdoallocbuf_internal)
33719         (_IO_sgetn_internal, _IO_flush_all_linebuffered_internal)
33720         (_IO_switch_to_wget_mode_internal, _IO_unsave_markers_internal)
33721         (_IO_switch_to_main_wget_area_internal, _IO_wdo_write_internal)
33722         (_IO_do_write_internal, _IO_padn_internal)
33723         (_IO_getline_info_internal, _IO_getline_internal)
33724         (_IO_free_wbackup_area_internal, _IO_free_backup_area_internal)
33725         (_IO_switch_to_wbackup_area_internal, _IO_setb_internal)
33726         (_IO_sputbackwc_internal, _IO_switch_to_get_mode_internal)
33727         (_IO_vfscanf_internal, _IO_vfprintf_internal)
33728         (_IO_doallocbuf_internal, _IO_wsetb_internal, _IO_putc_internal)
33729         (_IO_init_internal, _IO_un_link_internal): Don't declare.
33730         * libio/fileops.c: Replace INTDEF with libc_hidden_def and INTDEF2
33731         with libc_hidden_ver, remove use of INTUSE.
33732         * libio/genops.c: Likewise.
33733         * libio/freopen.c: Likewise.
33734         * libio/freopen64.c: Likewise.
33735         * libio/iofclose.c: Likewise.
33736         * libio/iofdopen.c: Likewise.
33737         * libio/iofflush.c: Likewise.
33738         * libio/iofflush_u.c: Likewise.
33739         * libio/iofgets.c: Likewise.
33740         * libio/iofgets_u.c: Likewise.
33741         * libio/iofopen.c: Likewise.
33742         * libio/iofopncook.c: Likewise.
33743         * libio/iofread.c: Likewise.
33744         * libio/iofread_u.c: Likewise.
33745         * libio/ioftell.c: Likewise.
33746         * libio/iofwrite.c: Likewise.
33747         * libio/iogetline.c: Likewise.
33748         * libio/iogets.c: Likewise.
33749         * libio/iogetwline.c: Likewise.
33750         * libio/iopadn.c: Likewise.
33751         * libio/iopopen.c: Likewise.
33752         * libio/ioseekoff.c: Likewise.
33753         * libio/ioseekpos.c: Likewise.
33754         * libio/iosetbuffer.c: Likewise.
33755         * libio/iosetvbuf.c: Likewise.
33756         * libio/ioungetc.c: Likewise.
33757         * libio/ioungetwc.c: Likewise.
33758         * libio/iovdprintf.c: Likewise.
33759         * libio/iovsprintf.c: Likewise.
33760         * libio/iovsscanf.c: Likewise.
33761         * libio/memstream.c: Likewise.
33762         * libio/obprintf.c: Likewise.
33763         * libio/oldfileops.c: Likewise.
33764         * libio/oldiofclose.c: Likewise.
33765         * libio/oldiofdopen.c: Likewise.
33766         * libio/oldiofopen.c: Likewise.
33767         * libio/oldiopopen.c: Likewise.
33768         * libio/oldstdfiles.c: Likewise.
33769         * libio/putc.c: Likewise.
33770         * libio/setbuf.c: Likewise.
33771         * libio/setlinebuf.c: Likewise.
33772         * libio/stdfiles.c: Likewise.
33773         * libio/strops.c: Likewise.
33774         * libio/vasprintf.c: Likewise.
33775         * libio/vscanf.c: Likewise.
33776         * libio/vsnprintf.c: Likewise.
33777         * libio/vswprintf.c: Likewise.
33778         * libio/wfiledoalloc.c: Likewise.
33779         * libio/wfileops.c: Likewise.
33780         * libio/wgenops.c: Likewise.
33781         * libio/wmemstream.c: Likewise.
33782         * libio/wstrops.c: Likewise.
33783         * libio/__fpurge.c: Likewise.
33784         * libio/__fsetlocking.c: Likewise.
33785         * assert/assert.c: Likewise.
33786         * debug/fgets_chk.c: Likewise.
33787         * debug/fgets_u_chk.c: Likewise.
33788         * debug/fread_chk.c: Likewise.
33789         * debug/fread_u_chk.c: Likewise.
33790         * debug/gets_chk.c: Likewise.
33791         * debug/obprintf_chk.c: Likewise.
33792         * debug/vasprintf_chk.c: Likewise.
33793         * debug/vdprintf_chk.c: Likewise.
33794         * debug/vsnprintf_chk.c: Likewise.
33795         * debug/vsprintf_chk.c: Likewise.
33796         * malloc/mtrace.c: Likewise.
33797         * misc/error.c: Likewise.
33798         * misc/syslog.c: Likewise.
33799         * stdio-common/asprintf.c: Likewise.
33800         * stdio-common/fxprintf.c: Likewise.
33801         * stdio-common/getw.c: Likewise.
33802         * stdio-common/isoc99_fscanf.c: Likewise.
33803         * stdio-common/isoc99_scanf.c: Likewise.
33804         * stdio-common/isoc99_vfscanf.c: Likewise.
33805         * stdio-common/isoc99_vscanf.c: Likewise.
33806         * stdio-common/isoc99_vsscanf.c: Likewise.
33807         * stdio-common/printf-prs.c: Likewise.
33808         * stdio-common/printf_fp.c: Likewise.
33809         * stdio-common/printf_fphex.c: Likewise.
33810         * stdio-common/printf_size.c: Likewise.
33811         * stdio-common/putw.c: Likewise.
33812         * stdio-common/scanf.c: Likewise.
33813         * stdio-common/sprintf.c: Likewise.
33814         * stdio-common/tmpfile.c: Likewise.
33815         * stdio-common/vfprintf.c: Likewise.
33816         * stdio-common/vfscanf.c: Likewise.
33817         * stdlib/strfmon_l.c: Likewise.
33818         * sunrpc/openchild.c: Likewise.
33819         * sunrpc/xdr_stdio.c: Likewise.
33820         * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Likewise.
33821         * sysdeps/mach/hurd/tmpfile.c: Likewise.
33823 2012-05-24  Roland McGrath  <roland@hack.frob.com>
33825         * sysdeps/unix/sysv/linux/x86_64/x32/syscalls.list: New file.
33827         * sysdeps/unix/make-syscalls.sh: Support "syscall:vdso_name@VDSOVER"
33828         in the third column, to generate for the shared library an IFUNC
33829         that uses _dl_vdso_vsym.
33830         * Makerules (COMPILE.c, compile-stdin.c): New variables.
33831         * Makeconfig (object-suffixes-noshared): New variable.
33833         * sysdeps/unix/sysv/linux/dl-vdso.h (PREPARE_VERSION_KNOWN): New macro.
33834         (VDSO_NAME_LINUX_2_6, VDSO_HASH_LINUX_2_6): New macros.
33835         (VDSO_NAME_LINUX_2_6_15, VDSO_HASH_LINUX_2_6_15): New macros.
33836         (VDSO_NAME_LINUX_2_6_29, VDSO_HASH_LINUX_2_6_29): New macros.
33838         [BZ #14132]
33839         * include/sys/time.h (__gettimeofday): Remove macro.
33840         (__gettimeofday, gettimeofday): Add libc_hidden_proto.
33841         * time/gettimeofday.c (__gettimeofday): Remove #undef.
33842         Remove INTDEF.
33843         (__gettimeofday): Add libc_hidden_def.
33844         (gettimeofday): Add libc_hidden_weak.
33845         * sysdeps/mach/gettimeofday.c: Likewise.
33846         * sysdeps/posix/gettimeofday.c: Likewise.
33847         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Likewise.
33848         * sysdeps/unix/sysv/linux/s390/gettimeofday.c: Likewise.
33849         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c
33850         (__gettimeofday_internal): Remove strong_alias.
33851         (__gettimeofday): Add libc_hidden_def.
33852         (gettimeofday): Add libc_hidden_weak.
33853         * sysdeps/unix/syscalls.list (gettimeofday):
33854         Remove __gettimeofday_internal alias.
33856 2012-05-24  Daniel Jacobowitz  <drow@false.org>
33857             H.J. Lu  <hongjiu.lu@intel.com>
33859         [BZ #12495]
33860         * malloc/malloc.c (SMALLBIN_CORRECTION): New.
33861         (MIN_LARGE_SIZE, smallbin_index): Use it to handle 16-byte alignment.
33862         (largebin_index_32_big): New.
33863         (largebin_index): Use it for 16-byte alignment.
33864         (sYSMALLOc): Handle MALLOC_ALIGNMENT > 2 * SIZE_SZ.  Don't update
33865         correction with front_misalign.
33867 2012-05-24  H.J. Lu  <hongjiu.lu@intel.com>
33869         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/ld.abilist: New file.
33870         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libBrokenLocale.abilist:
33871         Likewise.
33872         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libanl.abilist:
33873         Likewise.
33874         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist:
33875         Likewise.
33876         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist:
33877         Likewise.
33878         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libdl.abilist:
33879         Likewise.
33880         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libm.abilist:
33881         Likewise.
33882         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libnsl.abilist:
33883         Likewise.
33884         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist:
33885         Likewise.
33886         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libresolv.abilist:
33887         Likewise.
33888         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/librt.abilist:
33889         Likewise.
33890         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libthread_db.abilist:
33891         Likewise.
33892         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libutil.abilist:
33893         Likewise.
33895         * scripts/data/c++-types-x32-linux-gnu.data: New file.
33896         * sysdeps/x86_64/x32/shlib-versions: Add x32 ABI entry.
33898 2012-05-24  Joseph Myers  <joseph@codesourcery.com>
33900         [BZ #10846]
33901         [BZ #14036]
33902         * math/libm-test.inc (exp_test): Add test from bug 14036.
33903         (pow_test): Add test from bug 10846.
33905         * math/gen-libm-test.pl (%beautify): Remove entries for exceptions
33906         and other flags.
33907         (special_function): Do not include flags in test name.
33908         (parse_args): Likewise.
33909         * sysdeps/i386/fpu/libm-test-ulps: Update.
33910         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
33911         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
33912         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
33913         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
33915         * math/gen-libm-test.pl (%beautify): Add entries for underflow
33916         exceptions.
33917         * math/libm-test.inc ("Philosophy"): Update comment about
33918         exception testing.
33919         (UNDERFLOW_EXCEPTION): New macro.
33920         (UNDERFLOW_EXCEPTION_OK): Likewise.
33921         (UNDERFLOW_EXCEPTION_FLOAT): Likewise.
33922         (UNDERFLOW_EXCEPTION_OK_FLOAT): Likewise.
33923         (UNDERFLOW_EXCEPTION_DOUBLE): Likewise.
33924         (UNDERFLOW_EXCEPTION_LDOUBLE_IBM): Likewise.
33925         (INVALID_EXCEPTION_OK): Update value.
33926         (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
33927         (OVERFLOW_EXCEPTION_OK): Likewise.
33928         (IGNORE_ZERO_INF_SIGN): Likewise.
33929         (test_exceptions): Handle underflow exceptions.
33930         (acos_test): Update for underflow exception expectations.
33931         (cexp_test): Likewise.
33932         (clog_test): Likewise.
33933         (clog10_test): Likewise.
33934         (csqrt_test): Likewise.
33935         (ctan_test): Likewise.
33936         (ctanh_test): Likewise.
33937         (exp_test): Likewise.
33938         (exp10_test): Likewise.
33939         (exp2_test): Likewise.
33940         (expm1_test): Likewise.
33941         (fma_test): Likewise.
33942         (j0_test): Likewise.
33943         (jn_test): Likewise.
33944         (nexttoward_test): Likewise.
33945         (pow_test): Likewise.
33946         (scalbn_test): Likewise.
33947         (scalbln_test): Likewise.
33948         (tan_test): Likewise.
33949         (y1_test): Likewise.
33950         * sysdeps/i386/fpu/libm-test-ulps: Update.
33951         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
33953 2012-05-23  David S. Miller  <davem@davemloft.net>
33955         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c
33956         (__libc_sigaction): Remove unused local variables.
33958 2012-05-23  H.J. Lu  <hongjiu.lu@intel.com>
33960         * sysdeps/unix/sysv/linux/x86_64/x32/configure: New file.
33962 2012-05-23  Paul Eggert  <eggert@cs.ucla.edu>
33964         mktime: avoid signed integer overflow
33965         * time/mktime.c (__mktime_internal): Do not mishandle the case
33966         where diff == INT_MIN.
33968         mktime: simplify computation of average
33969         * time/mktime.c (ranged_convert): Use new time_t_avg function
33970         instead of rolling our own (probably-slower) code.
33972         mktime: do not assume signed right shift propagates sign bit
33973         * time/mktime.c (isdst_differ): New static function.
33974         (__mktime_internal): No need to normalize tm_isdst now.
33975         (__mktime_internal, not_equal_tm): Use isdst_differ to compare
33976         tm_isdst values.
33978         mktime: merge another wrapv change from gnulib
33979         * time/mktime.c (TYPE_MAXIMUM): Rework slightly to avoid diagnostics
33980         from some compilers.
33982         mktime: remove incorrect attempt at unusual arithmetics
33983         * time/mktime.c (TYPE_ONES_COMPLEMENT, TYPE_SIGNED_MAGNITUDE): Remove.
33984         The code didn't really work on such machines anyway.
33985         (TYPE_MINIMUM): Assume two's complement.
33986         (twos_complement_arithmetic): Verify that long_int and time_t
33987         are two's complement (or unsigned, in the latter case).
33989         mktime: check signed shifts on long_int and time_t, too
33990         * time/mktime.c (SHR): Check that shifts work as desired
33991         on the types long_int and time_t too, as SHR is used on
33992         such types.
33994         mktime: do not assume 'long' is wide enough
33995         * time/mktime.c (verify): Move decl up.
33996         (long_int): New type.
33997         (leapyear, ydhms_diff, guess_time_tm, __mktime_internal): Use it,
33998         to remove assumption in the code that 'long' is wide enough to
33999         store year values.  This assumption is not true on x32 and on
34000         some non-glibc platforms.
34002         mktime: merge wrapv change from gnulib
34003         * time/mktime.c (WRAPV): New macro.
34004         (time_t_avg, time_t_add_ok, time_t_int_add_ok): New static functions.
34005         (guess_time_tm, __mktime_internal): Do not assume that signed
34006         integer overflow wraps around; modern compilers generate code
34007         where this assumption is no longer valid.
34009 2012-05-23  H.J. Lu  <hongjiu.lu@intel.com>
34011         * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
34012         Replace "jmp L(pseudo_end)" with "ret".
34013         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_ERROR_HANDLER):
34014         Likewise.
34016 2012-05-23  Andreas Jaeger  <aj@suse.de>
34018         * sysdeps/unix/sysv/linux/syscalls.list: Add poll.
34019         * sysdeps/unix/sysv/linux/poll.c: Remove file.
34021 2012-05-23  Andreas Jaeger  <aj@suse.de>
34022             Maximilian Attems  <max@stro.at>
34024         * sysdeps/unix/sysv/linux/sys/reboot.h (RB_SW_SUSPEND, RB_KEXEC):
34025         New macros.
34027 2012-05-23  H.J. Lu  <hongjiu.lu@intel.com>
34029         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Rearrange
34030         code so that pseudo_end is just ret and the stack pointer is
34031         correct also for static library in error case.
34033 2012-05-23  Joseph Myers  <joseph@codesourcery.com>
34035         * sysdeps/unix/sysv/linux/powerpc/chown.c: Add comment suggesting
34036         move to syscalls.list.
34037         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Likewise.
34038         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
34039         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
34040         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
34042         * manual/install.texi (Running make install): Do not mention Linux
34043         kernel version for which pt_chown is not needed.
34044         (Linux): Do not mention problems with nscd with 2.0 kernels.
34045         * INSTALL: Regenerated.
34047 2012-05-23  Andreas Jaeger  <aj@suse.de>
34049         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h
34050         (MADV_DONTDUMP,MADV_DODUMP): New macros from Linux 3.4.
34051         macro.
34052         * sysdeps/unix/sysv/linux/s390/bits/mman.h
34053         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
34054         * sysdeps/unix/sysv/linux/sh/bits/mman.h
34055         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
34056         * sysdeps/unix/sysv/linux/i386/bits/mman.h
34057         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
34058         * sysdeps/unix/sysv/linux/sparc/bits/mman.h
34059         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
34060         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h
34061         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
34062         * sysdeps/unix/sysv/linux/bits/in.h
34063         (IP_MULTICAST_ALL,IP_UNICAST_IF): Likewise.
34065 2012-05-22  Roland McGrath  <roland@hack.frob.com>
34067         * sysdeps/unix/sysv/linux/dl-vdso.h (CHECK_HASH): Macro removed.
34068         (PREPARE_VERSION): Just use assert instead, it will be elided
34069         under [NDEBUG] anyway.
34071 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
34073         * sysdeps/unix/sysv/linux/Makefile: Include
34074         $(firstword $(wildcard $(sysdirs:=/sysctl.mk))).
34075         (sysdep_routines): Remove sysctl.
34076         * sysdeps/unix/sysv/linux/bits/sysctl.h: New file.
34077         * sysdeps/unix/sysv/linux/sysctl.mk: Likewise.
34078         * sysdeps/unix/sysv/linux/x86_64/bits/sysctl.h: Likewise.
34079         * sysdeps/unix/sysv/linux/x86_64/x32/sysctl.mk: Likewise.
34080         * sysdeps/unix/sysv/linux/sys/sysctl.h: Include <bits/sysctl.h>.
34082 2012-05-22  Andreas Jaeger  <aj@suse.de>
34084         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Rearrange code so
34085         that pseudo_end is just ret and the stack pointer is correct also
34086         for static library in error case.
34088 2012-05-22  Paul Pluzhnikov  <ppluzhnikov@google.com>
34090         [BZ #14122]
34091         * nss/nsswitch.c (defconfig_entries): New variable.
34092         (__nss_database_lookup): Don't leak defconfig entries.
34093         (nss_parse_service_list): Don't leak on error paths.
34094         (free_database_entries): New function.
34095         (free_defconfig): New function.
34096         (free_mem): Move common code to free_database_entries.
34098 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
34100         * sysdeps/unix/sysv/linux/x86_64/x32/Makefile (sysdep_routines):
34101         Add arch_prctl.
34102         * sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c: New file.
34104         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
34105         (posix_fallocate): Use INTERNAL_SYSCALL_TYPES if it is defined.
34106         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INLINE_SYSCALL_TYPES):
34107         New macro.
34108         (INTERNAL_SYSCALL_NCS_TYPES): Likewise.
34109         (INTERNAL_SYSCALL_TYPES): Likewise.
34110         (LOAD_ARGS_TYPES_[1-6]): Likewise.
34111         (LOAD_REGS_TYPES_[1-6]): Likewise.
34112         (LOAD_ARGS_[1-6]): Use LOAD_ARGS_TYPES_[1-6].
34113         (LOAD_REGS_[1-6]): Use LOAD_REGS_TYPES_[1-6].
34115 2012-05-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
34117         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Add compat symbol
34118         copysignl for GLIBC_2_0.
34119         * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Add compat symbol
34120         finitel for GLIBC_2.0 and __finitel for GLIBC_2_1.
34121         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: Add compat symbol
34122         logbl for GLIBC_2_0.
34123         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Likewise.
34124         * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Likewise.
34126 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
34128         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Don't include
34129         <bits/wordsize.h>.  Check __x86_64__ instead of __WORDSIZE.
34131         * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
34132         Use "neg %eax".
34134         * time/mktime.c: Update copyright years.
34136 2012-05-22  Paul Eggert  <eggert@cs.ucla.edu>
34138         mktime: merge comment-quoting-style change from gnulib
34139         * time/mktime.c: Quote 'like this' in comments.
34140         The GNU coding standards suggest that we no longer quote `like this',
34141         as "`" and "'" are typically rendered asymmetrically nowadays.
34142         The typical gnulib style is to quote 'like this' when quoting
34143         code, and "like this" when quoting English.
34145         * time/mktime.c (compile-command): Add "-I.".
34147         mktime: merge mktime-internal.h change from gnulib
34148         * time/mktime.c [!_LIBC]: Include "mktime-internal.h".
34150         mktime: merge time_r change from gnulib
34151         * time/mktime.c [!_LIBC]: Do not include "time_r.h".
34153         mktime: merge DEBUG change from gnulib
34154         * time/mktime.c (mktime) [DEBUG]: #undef before #define-ing, in
34155         case system <time.h> has a #define.
34157         mktime: merge <sys/types.h> change from gnulib
34158         * time/mktime.c: Do not include <sys/types.h>; no longer needed,
34159         since <time.t> is now guaranteed to define time_t.
34161         mktime: merge HAVE_CONFIG_H change from gnulib
34162         * time/mktime.c: Include <config.h> if !_LIBC, not if HAVE_CONFIG_H.
34164 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
34166         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_SET_ERRNO):
34167         Use "neg %eax".
34169         * sysdeps/unix/sysv/linux/bits/resource.h (RLIM_INFINITY): Use
34170         __rlim_t cast.
34171         (struct rusage): Use anonymous union to pad each field to
34172         __syscall_slong_t.
34174 2012-05-21  David S. Miller  <davem@davemloft.net>
34176         * Makefules (o-iterator): Remove .s cases.
34177         (compile-command.s): Delete.
34178         (COMPILE.s): Delete.
34179         * sysdeps/unix/make-syscalls.sh: Remove .s file tests.
34181 2012-05-21  Joseph Myers  <joseph@codesourcery.com>
34183         * configure.in (libc_cv_predef_stack_protector): Only consider
34184         "foobar" and "__stack_chk_fail" lines in libc_undefs.
34185         * configure: Regenerated.
34187 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
34189         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_SET_ERRNO):
34190         New macro.  Use R*LP on int and pointer.
34191         (SYSCALL_ERROR_HANDLER): Use SYSCALL_SET_ERRNO.
34192         * sysdeps/unix/sysv/linux/x86_64/x32/lseek.S: New file.
34193         * sysdeps/unix/sysv/linux/x86_64/x32/llseek.S: Likewise.
34194         * sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h: Likewise.
34196         * sysdeps/gnu/bits/utmp.h (struct lastlog): Check
34197         [__WORDSIZE_TIME64_COMPAT32] instead of
34198         [__WORDSIZE == 64 && __WORDSIZE_COMPAT32].
34199         (struct utmp): Likewise.
34200         * sysdeps/gnu/bits/utmpx.h (struct utmpx): Likewise.
34201         * sysdeps/powerpc/powerpc32/bits/wordsize.h (__WORDSIZE_COMPAT32):
34202         Renamed to ...
34203         (__WORDSIZE_TIME64_COMPAT32): This.
34204         * sysdeps/powerpc/powerpc64/bits/wordsize.h: Likewise.
34205         * sysdeps/sparc/sparc32/bits/wordsize.h: Likewise.
34206         * sysdeps/sparc/sparc64/bits/wordsize.h: Likewise.
34207         * sysdeps/unix/sysv/linux/powerpc/bits/wordsize.h: Likewise.
34208         * sysdeps/x86_64/bits/wordsize.h (__WORDSIZE_COMPAT32): Removed.
34209         (__WORDSIZE_TIME64_COMPAT32): New macro.
34211 2012-05-21  Andreas Jaeger  <aj@suse.de>
34213         * sysdeps/i386/i686/multiarch/wcschr-c.c: Redefine libc_hidden_def
34214         only if [SHARED]. Add prototype for __wcschr_ia32.
34216 2012-05-21  Roland McGrath  <roland@hack.frob.com>
34218         * sysdeps/x86_64/setjmp.S [PTR_MANGLE] [__ILP32__]: Preserve high bits
34219         of %rbp unmolested in the jmp_buf while mangling the low bits.
34220         * sysdeps/x86_64/__longjmp.S [PTR_DEMANGLE] [__ILP32__]: Restore the
34221         unmolested high bits of %rbp while demangling the low bits.
34222         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Likewise.
34224 2012-05-21  Andreas Jaeger  <aj@suse.de>
34226         * include/shlib-compat.h (libc_sunrpc_symbol): New macro.
34227         * sunrpc/svc_simple.c: Use it for registerrpc.
34228         * sunrpc/xcrypt.c: Use it for passwd2des.
34230         * malloc/malloc.c: Include shlib-compat.h for SHLIB_COMPAT.
34232 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
34234         * sysdeps/unix/sysv/linux/bits/statvfs.h (_STATVFSBUF_F_UNUSED):
34235         Don't define if [__SYSCALL_WORDSIZE != 32].
34236         * sysdeps/x86_64/bits/wordsize.h (__SYSCALL_WORDSIZE):
34237         New macro.
34239 2012-05-21  Bruno Haible  <bruno@clisp.org>
34240             Andreas Jaeger  <aj@suse.de>
34242         [BZ #13691], Revert breakage of iconv() converter for TCVN-5712.
34243         * iconvdata/tcvn5712-1.c (BODY for FROM_LOOP): Don't consider
34244         inptr and inend for must_buffer_ch.
34245         * wcsmbs/tst-mbsnrtowcs.c: Remove file.
34246         * wcsmbs/Makefile (tests): Remove tst-mbsnrtowcs.
34247         * stdio-common/Makefile (tests): Remove bug15.
34248         (bug15-ENV): Remove macro.
34249         * stdio-common/bug15.c: Remove, we do not support vi_VN.TCVN5712-1
34250         anymore.
34252 2012-05-19  Andreas Jaeger  <aj@suse.de>
34253             Roland McGrath  <roland@hack.frob.com>
34255         * manual/contrib.texi: Completely rewritten. It contains now an
34256         alphabetical list of contributors and their contributions.
34258 2012-05-21  Richard Henderson  <rth@twiddle.net>
34260         * misc/getauxval.c (__getauxval): Use unsigned long int.
34261         * misc/sys/auxv.h: Include <sys/cdefs.h>.
34262         (getauxval): Use unsigned long int.
34264 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
34266         * sysdeps/unix/sysv/linux/x86_64/x32/syscalls.list: New file.
34268 2012-05-21  Roland McGrath  <roland@hack.frob.com>
34270         * malloc/malloc.c [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_16)]
34271         (MALLOC_ALIGNMENT): Set it to the greater of 2 * SIZE_SZ and
34272         __alignof__ (long double).
34274 2012-05-21  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
34276         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
34278 2012-05-20  Richard Henderson  <rth@twiddle.net>
34280         * misc/getauxval.c: New file.
34281         * misc/sys/auxv.h: New file.
34282         * misc/Makefile (headers): Add sys/auxv.h, bits/hwcap.h.
34283         (routines): Add getauxval.
34284         * misc/Versions (GLIBC_2.16): Add __getauxval, getauxval.
34285         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Add _dl_auxv.
34286         * elf/dl-sysdep.c (_dl_auxv): Remove.
34287         (_dl_sysdep_start, _dl_show_auxv): Use GLRO to access _dl_auxv.
34288         * elf/dl-support.c (_dl_auxv): New variable.
34289         (_dl_aux_init): Initialize it.
34290         * manual/startup.texi (Auxiliary Vector): New node.
34291         * sysdeps/generic/bits/hwcap.h: New file.
34292         * sysdeps/powerpc/bits/hwcap.h: New file, split out from ...
34293         * sysdeps/powerpc/sysdep.h: ... here.  Include it.
34294         * sysdeps/sparc/bits/hwcap.h: New file, split out from ...
34295         * sysdeps/sparc/sysdep.h: ... here.  Include it.
34296         * sysdeps/unix/sysv/linux/s390/bits/hwcap.h: New file.
34297         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Update.
34298         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
34299         Update.
34300         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist: Update.
34301         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Update.
34302         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Update.
34303         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Update.
34304         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Update.
34305         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Update.
34306         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Update.
34307         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Update.
34309 2012-05-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
34311         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
34313 2012-05-19  David S. Miller  <davem@davemloft.net>
34315         * sysdeps/sparc/fpu/libm-test-ulps: Update.
34317 2012-05-19  Joseph Myers  <joseph@codesourcery.com>
34319         [BZ #14123]
34320         * math/s_ccosh.c: Include <float.h>
34321         (__ccosh): Avoid internal overflow calculating sinh and cosh
34322         values before multiplying by sin and cos values.
34323         * math/s_ccoshf.c: Likewise.
34324         * math/s_ccoshl.c: Likewise.
34325         * math/s_csin.c: Likewise.
34326         * math/s_csinf.c: Likewise.
34327         * math/s_csinl.c: Likewise.
34328         * math/s_csinh.c: Likewise.
34329         * math/s_csinhf.c: Likewise.
34330         * math/s_csinhl.c: Likewise.
34331         * math/libm-test.inc (ccos_test): Add more tests.
34332         (ccosh_test): Likewise.
34333         (csin_test): Likewise.
34334         (csinh_test): Likewise.
34335         * sysdeps/i386/fpu/libm-test-ulps: Update.
34336         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
34338 2012-05-19  H.J. Lu  <hongjiu.lu@intel.com>
34340         * sysdeps/unix/sysv/linux/wordsize-64/preadv.c: New file.
34341         * sysdeps/unix/sysv/linux/wordsize-64/pwritev.c: Likewise.
34343         * sysdeps/x86_64/x32/_itoa.h: Add comment.
34345 2012-05-19  Joseph Myers  <joseph@codesourcery.com>
34347         * sysdeps/powerpc/soft-fp/Makefile: Remove file.
34348         * sysdeps/powerpc/soft-fp/Subdirs: Likewise.
34349         * sysdeps/powerpc/soft-fp/Versions: Likewise.
34350         * sysdeps/powerpc/soft-fp/q_add.c: Likewise.
34351         * sysdeps/powerpc/soft-fp/q_cmp.c: Likewise.
34352         * sysdeps/powerpc/soft-fp/q_cmpe.c: Likewise.
34353         * sysdeps/powerpc/soft-fp/q_div.c: Likewise.
34354         * sysdeps/powerpc/soft-fp/q_dtoq.c: Likewise.
34355         * sysdeps/powerpc/soft-fp/q_feq.c: Likewise.
34356         * sysdeps/powerpc/soft-fp/q_fge.c: Likewise.
34357         * sysdeps/powerpc/soft-fp/q_fgt.c: Likewise.
34358         * sysdeps/powerpc/soft-fp/q_fle.c: Likewise.
34359         * sysdeps/powerpc/soft-fp/q_flt.c: Likewise.
34360         * sysdeps/powerpc/soft-fp/q_fne.c: Likewise.
34361         * sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
34362         * sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
34363         * sysdeps/powerpc/soft-fp/q_mul.c: Likewise.
34364         * sysdeps/powerpc/soft-fp/q_neg.c: Likewise.
34365         * sysdeps/powerpc/soft-fp/q_qtod.c: Likewise.
34366         * sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
34367         * sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
34368         * sysdeps/powerpc/soft-fp/q_qtos.c: Likewise.
34369         * sysdeps/powerpc/soft-fp/q_qtou.c: Likewise.
34370         * sysdeps/powerpc/soft-fp/q_qtoull.c: Likewise.
34371         * sysdeps/powerpc/soft-fp/q_sqrt.c: Likewise.
34372         * sysdeps/powerpc/soft-fp/q_stoq.c: Likewise.
34373         * sysdeps/powerpc/soft-fp/q_sub.c: Likewise.
34374         * sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
34375         * sysdeps/powerpc/soft-fp/q_util.c: Likewise.
34376         * sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
34377         * sysdeps/powerpc/soft-fp/sfp-machine.h: Likewise.
34379 2012-05-18  Andreas Jaeger  <aj@suse.de>
34381         * csu/.gitignore: Delete.
34383 2012-05-18  H.J. Lu  <hongjiu.lu@intel.com>
34385         * sysdeps/unix/sysv/linux/bits/timex.h: Include <bits/types.h>.
34386         (timex): Use __syscall_slong_t.
34388 2012-05-18  Andreas Jaeger  <aj@suse.de>
34389             Carlos O'Donell  <carlos_odonell@mentor.com>
34391         * manual/install.texi (Configuring and compiling): Update
34392         description about files modified in the source directory.
34393         * INSTALL: Regenerated.
34395 2012-05-18  H.J. Lu  <hongjiu.lu@intel.com>
34397         * sysdeps/unix/x86_64/sysdep.S: Use RAX_LP to access return
34398         value.  Use "or" to set return value to -1.
34399         * sysdeps/unix/sysv/linux/x86_64/sysdep.S: Use RAX_LP to
34400         negate return value.
34402 2012-05-18  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
34404         * sysdeps/powerpc/powerpc32/power4/Makefile (CFLAGS-wordcopy.c)
34405         (CFLAGS-memmove.c): remove -ftree-loop-linear which causes a build
34406         failure if the compiler has Graphite support disabled.
34407         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile (CFLAGS-mpa.c):
34408         Likewise.
34409         * sysdeps/powerpc/powerpc64/power4/Makefile (CFLAGS-wordcopy.c)
34410         (CFLAGS-memmove.c): Likewise.
34411         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile (CFLAGS-mpa.c):
34412         Likewise.
34414 2012-05-18  H.J. Lu  <hongjiu.lu@intel.com>
34416         * sysdeps/x86_64/x32/_itoa.h: New file.
34418         * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): Use
34419         getdents system call only if kernel and user dirents have the
34420         same d_ino and d_off.
34422         * stdio-common/_itoa.c: Check _ITOA_NEEDED instead of
34423         LLONG_MAX != LONG_MAX.
34424         (_itoa_word): Use _ITOA_WORD_TYPE on value.
34425         (_fitoa_word): Likewise.
34427         * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: Fold copyright
34428         years.
34429         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Likewise.
34430         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: Likewise.
34431         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Likewise.
34433         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: Don't
34434         include <bits/wordsize.h>.  Check __x86_64__ instead of
34435         __WORDSIZE.
34436         (sigcontext): Use "__uint64_t" instead of "unsigned long int"
34437         if __x86_64__ is defined.  Use anonymous union on fpstate.
34439         * sysdeps/unix/sysv/linux/x86_64/sys/user.h (user): Use
34440         anonymous union.
34442 2012-05-18  Andreas Schwab  <schwab@linux-m68k.org>
34444         * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Use
34445         INTUSE on _dl_argv, and _rtld_local instead of _rtld_global.
34446         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S [IS_IN_rtld]:
34447         Refer to _rtld_local_ro instead of _rtld_global_ro.
34448         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S [IS_IN_rtld]:
34449         Likewise.
34450         * sysdeps/powerpc/powerpc64/__longjmp-common.S [IS_IN_rtld]:
34451         Likewise.
34452         * sysdeps/powerpc/powerpc64/setjmp-common.S [IS_IN_rtld]:
34453         Likewise.
34454         * sysdeps/powerpc/powerpc64/dl-trampoline.S [SHARED]: Likewise.
34455         * sysdeps/powerpc/powerpc64/dl-machine.h: Use _rtld_local instead
34456         of _rtld_global, and rtld_progname instead of _dl_argv[0].
34458         * sysdeps/powerpc/powerpc32/dl-machine.c
34459         (__elf_machine_runtime_setup) [PROF]: Don't reference
34460         _dl_prof_resolve.
34462 2012-05-18  Andreas Jaeger  <aj@suse.de>
34464         * sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Make inline
34465         function only available for GCCs before 3.4 since GCC 3.4
34466         introduced a builtin.
34467         (lrint): Likewise.
34468         (llrintf): Likewise.
34469         (llrint): Likewise.
34470         (fmaxf): Likewise.
34471         (fmax): Likewise.
34472         (fminf): Likewise.
34473         (fmin): Likewise.
34474         (rint): Likewise.
34475         (rintf): Likewise.
34476         (nearbyint): Likewise.
34477         (nearbyintf): Likewise.
34478         (ceil): Likewise.
34479         (ceilf): Likewise.
34480         (floor): Likewise.
34481         (floorf): Likewise.
34483 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
34485         * sysdeps/unix/sysv/linux/pselect.c (data): Use __syscall_ulong_t
34486         on both fields and cast pointer to __syscall_ulong_t.
34488         * bits/types.h (__fsword_t): New type.
34489         * bits/typesizes.h (__FSWORD_T_TYPE): New macro.
34490         sysdeps/mach/hurd/bits/typesizes.h (__FSWORD_T_TYPE): Likewise.
34491         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
34492         (__FSWORD_T_TYPE): Likewise.
34493         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
34494         (__FSWORD_T_TYPE): Likewise.
34495         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
34496         (__FSWORD_T_TYPE): Likewise.
34497         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h
34498         (__FSWORD_T_TYPE): Likewise.
34499         * sysdeps/unix/sysv/linux/bits/statfs.h (statfs): Replace
34500         __SWORD_TYPE with __fsword_t.
34501         (statfs64): Likewise.
34503 2012-05-17  David S. Miller  <davem@davemloft.net>
34505         * crypt/sha512c-test.c (TIMEOUT): Increase to 32.
34507 2012-05-17  Andreas Jaeger  <aj@suse.de>
34509         * elf/tst-relsort1.c (do_test): Fix function declaration to avoid
34510         warning.
34512 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
34514         * sysdeps/x86_64/tst-mallocalign1.c (test): Cast to unsigned long.
34516 2012-05-17  Andreas Jaeger  <aj@suse.de>
34518         * sysdeps/i386/dl-machine.h (elf_machine_rel): Declare refsym only
34519         when it is used.
34521 2012-05-17  Chris Metcalf  <cmetcalf@tilera.com>
34523         * stdio-common/bug22.c (TIMEOUT): Bump up from 30 to 60.
34525 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
34527         * sysdeps/x86_64/Makefile (tests): Add tst-mallocalign1.
34528         * sysdeps/x86_64/tst-mallocalign1.c: New file.
34530 2012-05-17  Andreas Jaeger  <aj@suse.de>
34531             Carlos O'Donell  <carlos_odonell@mentor.com>
34533         [BZ #14059]
34534         * sysdeps/x86_64/multiarch/init-arch.h
34535         (bit_YMM_Usable): Rename to...
34536         (bit_AVX_Usable): ... this.
34537         (bit_FMA4_Usable): New macro.
34538         (bit_XMM_state): New macro.
34539         (bit_YMM_state): New macro.
34540         [__ASSEMBLER__] (index_YMM_Usable): Rename to...
34541         [__ASSEMBLER__] (index_AVX_Usable): ... this.
34542         [__ASSEMBLER__] (index_FMA4_Usable): New macro.
34543         (CPUID_OSXSAVE): New macro.
34544         (CPUID_AVX): New macro.
34545         (CPUID_FMA4): New macro.
34546         (index_YMM_Usable): Rename to...
34547         (index_AVX_Usable): ... this.
34548         (HAS_AVX): Use HAS_ARCH_FEATURE.
34549         (HAS_FMA4): Likewise.
34550         (HAS_YMM_USABLE): Remove.
34551         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
34552         Enable AVX or FMA4 IFF YMM and XMM states are usable and the features
34553         are present.
34554         * sysdeps/x86_64/multiarch/strcmp.S: Use bit_AVX_Usable.
34555         * sysdeps/i386/i686/multiarch/Makefile: Add test-multiarch to tests.
34556         * sysdeps/x86_64/multiarch/Makefile: Likewise.
34557         * sysdeps/i386/i686/multiarch/test-multiarch.c: New file.
34558         * sysdeps/x86_64/multiarch/test-multiarch.c: New file.
34560 2012-05-17  Chris Metcalf  <cmetcalf@tilera.com>
34562         * math/libm-test.c: Support platforms without multiple rounding modes.
34563         * math/bug-nextafter.c: Support platforms without FP exceptions.
34564         * math/bug-nexttoward.c: Likewise.
34565         * math/test-fenv.c: Likewise.
34566         * math/test-misc.c: Likewise.
34567         * stdlib/bug-getcontext.c: Likewise.
34569 2012-05-17  Andreas Jaeger  <aj@suse.de>
34571         * manual/examples/search.c (critter_cmp): Change signature to
34572         avoid warnings.
34573         * manual/string.texi (Collation Functions): Likewise.
34575 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
34577         * bits/types.h: Fold copyright years.
34578         * bits/typesizes.h: Likewise.
34579         * sysdeps/mach/hurd/bits/typesizes.h: Likewise.
34580         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h: Likewise.
34581         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h: Likewise.
34582         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h: Likewise.
34583         * time/time.h: Likewise.
34585 2012-05-16  Paul Pluzhnikov  <ppluzhnikov@google.com>
34587         [BZ #208]
34588         * malloc.c (int_mallinfo): Add parameter to accumulate statistics
34589         in instead of returning them.  Return void.
34590         (__libc_mallinfo): Accumulate over all arenas.
34591         (__malloc_stats): Adjust for change in int_mallinfo interface.
34593 2012-05-16  Roland McGrath  <roland@hack.frob.com>
34595         [BZ #10375]
34596         * configure.in (NM): Add AC_CHECK_TOOL for it.
34597         (libc_extra_cflags): New substituted variable.
34598         Check for -fstack-protector being used implicitly.
34599         * configure: Regenerated.
34600         * config.make.in (config-extra-cflags): New variable,
34601         gets @libc_extra_cflags@.
34602         * Makeconfig (CFLAGS): Add $(config-extra-cflags) near the front.
34604         [BZ #10375]
34605         * configure.in: Check for _FORTIFY_SOURCE being predefined.
34606         (CPPUNDEFS): New substituted variable; add -U_FORTIFY_SOURCE if needed.
34607         * configure: Regenerated.
34608         * config.make.in (CPPUNDEFS): New substituted variable.
34609         * Makeconfig (CPPFLAGS): Put $(CPPUNDEFS) at the beginning.
34610         * Makerules ($(stdio_lim:h=st)): Use $(CPPUNDEFS).
34611         * time/ctime.c: Don't #undef __OPTIMIZE__ and ctime.
34613 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
34615         * sysdeps/unix/sysv/linux/bits/mqueue.h: Include <bits/types.h>.
34616         (mq_attr): Use __syscall_slong_t.
34618 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
34620         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h (_STAT_VER_SVR4):
34621         Check __x86_64__ instead of __WORDSIZE.
34622         (_STAT_VER_LINUX): Likewise.
34623         (stat): Check __x86_64__ instead of __WORDSIZE.  Use
34624         __syscall_ulong_t and __syscall_slong_t.
34625         (stat64): Likewise.
34627 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
34629         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h: New file.
34631 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
34633         * sysdeps/unix/sysv/linux/x86_64/bits/ipctypes.h: New file.
34635 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
34637         * sysdeps/unix/sysv/linux/bits/ipc.h (ipc_perm): Use
34638         __syscall_ulong_t.
34640         * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Don't
34641         include <bits/wordsize.h>.  Check __x86_64__ instead of
34642         __WORDSIZE.
34643         (greg_t): Use "__extension__ long long int" if __x86_64__ is
34644         defined.
34645         (mcontext_t): Replace "unsigned long" with "unsigned long long".
34647         * sysdeps/unix/sysv/linux/x86_64/sys/user.h: Don't
34648         include <bits/wordsize.h>.  Check __x86_64__ instead of
34649         __WORDSIZE.
34650         (user_regs_struct): Use "__extension__ unsigned long long"
34651         instead of "unsigned long" if __x86_64__ is defined.
34652         (user): Likewise.  Pad after pointer field if __ILP32__ is
34653         defined.
34655 2012-05-16  Joseph Myers  <joseph@codesourcery.com>
34657         * configure.in (makeinfo): Require version 4.5 or later.  Allow
34658         versions 5 to 9.
34659         * configure: Regenerated.
34660         * manual/install.texi (texinfo): Increase version requirement to
34661         4.5 or later.
34662         * INSTALL: Regenerated.
34664         * include/stdc-predef.h (__STDC_ISO_10646__): Increase to 201103L.
34666 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
34668         * sysdeps/x86_64/x32/gmp-mparam.h: New file.
34670         * sysdeps/x86_64/x32/ffs.c: New file.
34672         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h (shmatt_t): Use
34673         __syscall_ulong_t.
34674         (shmid_ds): Add __unused1 and __unused2 only if __x86_64__ isn't
34675         defined.  Use __syscall_ulong_t.
34676         (shminfo): Use __syscall_ulong_t.
34677         (shm_info): Likewise.
34679         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semid_ds): Use
34680         __syscall_ulong_t.
34682         * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Don't include
34683         <bits/wordsize.h>.
34684         (msgqnum_t): Use __syscall_ulong_t.
34685         (msglen_t): Likewise.
34686         (msqid_ds): Check __x86_64__ instead of __WORDSIZE.  Use
34687         __syscall_ulong_t.
34689         * sysdeps/unix/sysv/linux/x86_64/bits/a.out.h: Don't include
34690         <bits/wordsize.h>.  Check __x86_64__ instead of __WORDSIZE.
34692         * sysdeps/unix/sysv/linux/x86_64/bits/siginfo.h: New file.
34694         * sysdeps/x86_64/x32/divdi3.c: New dummy file.
34695         * sysdeps/x86_64/x32/symbol-hacks.h: Likewise.
34697         * sysvipc/sys/msg.h (msgbuf): Replace long int with
34698         __syscall_slong_t.
34700         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Don't
34701         include <bits/wordsize.h>.  Check __x86_64__ instead of
34702         __WORDSIZE.
34704         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h (elf_greg_t): Use
34705         "unsigned long long int" if __x86_64__ is defined.
34706         (elf_fpregset_t): Check __x86_64__ instead of __WORDSIZE.
34708         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Don't include
34709         <bits/wordsize.h>.  Check __x86_64__ instead of __WORDSIZE.
34710         (DR_CONTROL_RESERVED): Use ULL instead of UL suffix.
34712         * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: Include
34713         <stdint.h>.
34714         (GET_PC): Cast to uintptr_t first.
34715         (GET_FRAME): Likewise.
34716         (GET_STACK): Likewise.
34718         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort.c: New file.
34719         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort64.c: Likewise.
34720         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko.c: Likewise.
34721         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko64.c: Likewise.
34722         * sysdeps/unix/sysv/linux/x86_64/x32/ftello.c: Likewise.
34723         * sysdeps/unix/sysv/linux/x86_64/x32/ftello64.c: Likewise.
34724         * sysdeps/unix/sysv/linux/x86_64/x32/ftw.c: Likewise.
34725         * sysdeps/unix/sysv/linux/x86_64/x32/ftw64.c: Likewise.
34726         * sysdeps/unix/sysv/linux/x86_64/x32/glob.c: Likewise.
34727         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos.c: Likewise.
34728         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos64.c: Likewise.
34729         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen.c: Likewise.
34730         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen64.c: Likewise.
34731         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos.c: Likewise.
34732         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos64.c: Likewise.
34733         * sysdeps/unix/sysv/linux/x86_64/x32/lockf.c: Likewise.
34734         * sysdeps/unix/sysv/linux/x86_64/x32/lockf64.c: Likewise.
34735         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c: Likewise.
34736         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c: Likewise.
34737         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c: Likewise.
34738         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c: Likewise.
34739         * sysdeps/unix/sysv/linux/x86_64/x32/scandir.c: Likewise.
34740         * sysdeps/unix/sysv/linux/x86_64/x32/scandir64.c: Likewise.
34741         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat.c: Likewise.
34742         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat64.c: Likewise.
34743         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile.c: Likewise.
34744         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile64.c: Likewise.
34745         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort.c: Likewise.
34746         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort64.c: Likewise.
34748 2012-05-16  Andreas Schwab  <schwab@linux-m68k.org>
34750         * Makerules (+depfiles): Also collect depfiles from .oS in
34751         $(extra-objs).
34752         * sysdeps/ieee754/ldbl-opt/Makefile (extra-objs): Add $(addsuffix
34753         .oS, $(libnldbl-routines)).
34755         * Makerules (native-compile-mkdep-flags): Define.
34756         * sunrpc/Makefile (extra-objs): Add $(addprefix
34757         cross-,$(rpcgen-objs)), don't add $(cross-rpcgen-objs).
34758         ($(cross-rpcgen-objs)): Use $(native-compile-mkdep-flags) instead
34759         of $(compile-mkdep-flags).  Depend on $(before-compile) instead of
34760         calling $(make-target-directory).
34762 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34764         * bits/types.h (__snseconds_t): Removed.
34765         * time/time.h (struct timespec): Replace __snseconds_t with
34766         __syscall_slong_t.
34767         * bits/typesizes.h (__SNSECONDS_T_TYPE): Removed.
34768         * sysdeps/mach/hurd/bits/typesizes.h (__SNSECONDS_T_TYPE):
34769         Likewise.
34770         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
34771         (__SNSECONDS_T_TYPE): Likewise.
34772         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
34773         (__SNSECONDS_T_TYPE): Likewise.
34774         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
34775         (__SNSECONDS_T_TYPE): Likewise.
34777 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34779         * sysdeps/mach/hurd/bits/typesizes.h
34780         (__SYSCALL_SLONG_TYPE): New macro.
34781         (__SYSCALL_ULONG_TYPE): Likewise.
34783 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34785         * bits/types.h (__syscall_slong_t): New type.
34786         (__syscall_ulong_t): Likewise.
34788         * bits/typesizes.h (__SYSCALL_SLONG_TYPE): New macro.
34789         (__SYSCALL_ULONG_TYPE): Likewise.
34790         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
34791         (__SYSCALL_SLONG_TYPE): Likewise.
34792         (__SYSCALL_ULONG_TYPE): Likewise.
34793         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
34794         (__SYSCALL_SLONG_TYPE): Likewise.
34795         (__SYSCALL_ULONG_TYPE): Likewise.
34796         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
34797         (__SYSCALL_SLONG_TYPE): Likewise.
34798         (__SYSCALL_ULONG_TYPE): Likewise.
34800 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34802         * sysdeps/unix/sysv/linux/x86_64/Makefile (gen-as-const-headers):
34803         Add sigaltstack-offsets.sym.
34804         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Include
34805         <sigaltstack-offsets.h>.
34806         (CALL_FAIL): Use RSP_LP to operate on stack.  Use RDI_LP on
34807         longjmp_msg pointer.
34808         (____longjmp_chk): Use R8_LP and RDX_LP on SP and PC.  Use
34809         R*_LP, sizeSS, oSS_FLAGS, oSS_SP and oSS_SIZE for alternate
34810         signal stack.
34811         * sysdeps/unix/sysv/linux/x86_64/sigaltstack-offsets.sym: New.
34813 2012-05-15  Joseph Myers  <joseph@codesourcery.com>
34815         * elf/stackguard-macros.h: Remove file.
34816         * sysdeps/generic/stackguard-macros.h: New file.
34817         * sysdeps/i386/stackguard-macros.h: Likewise.
34818         * sysdeps/powerpc/powerpc32/stackguard-macros.h: Likewise.
34819         * sysdeps/powerpc/powerpc64/stackguard-macros.h: Likewise.
34820         * sysdeps/s390/s390-32/stackguard-macros.h: Likewise.
34821         * sysdeps/s390/s390-64/stackguard-macros.h: Likewise.
34822         * sysdeps/sparc/sparc32/stackguard-macros.h: Likewise.
34823         * sysdeps/sparc/sparc64/stackguard-macros.h: Likewise.
34824         * sysdeps/x86_64/stackguard-macros.h: Likewise.
34825         * nptl/tst-stackguard1.c: Include <stackguard-macros.h> not
34826         <elf/stackguard-macros.h>.
34828         [BZ #14109]
34829         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h (elf_vrreg_t): Use
34830         __aligned__ in attribute.
34831         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (__psw_t): Likewise.
34832         (gregset_t): Likewise.
34834 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34836         * sysdeps/x86_64/Implies (wordsize-64): Moved to ....
34837         * sysdeps/x86_64/64/Implies-after: Here.  New file.
34838         * sysdeps/x86_64/x32/Implies-after: New file.
34840 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34842         * sysdeps/x86_64/dl-trampoline.h: Use R*_LP to pass arguments
34843         and access return value for _dl_profile_fixup.  Use R10_LP to
34844         load frame size.
34846 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34848         * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: New.
34850 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34852         * sysdeps/x86_64/sysdep.h: Allowed to be include more than once.
34853         * sysdeps/x86_64/x32/sysdep.h: New file.
34855 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34857         * sysdeps/x86_64/__longjmp.S: Use R*_LP on SP and PC.
34858         * sysdeps/x86_64/setjmp.S: Likewise.
34860 2012-05-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
34862         * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c: New file.
34863         * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c: New file.
34864         * sysdeps/ieee754/dbl-64/e_log2.c: Fixing indents.
34865         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise and also
34866         remove unused global constant.
34868 2012-05-15  Chris Metcalf  <cmetcalf@tilera.com>
34870         * sysdeps/unix/sysv/linux/getsysstats.c: Remove duplicate
34871         include of <not-cancel.h>.
34873 2012-05-15  Roland McGrath  <roland@hack.frob.com>
34875         * nscd/nscd-client.h (__nscd_acquire_maplock): Fix formatting.
34877 2012-05-15  Jeff Law  <law@redhat.com>
34878             Andreas Jaeger  <aj@suse.de>
34880         [BZ #13594]
34881         * nscd/nscd-client.h (__nscd_acquire_maplock): New function, split
34882         out from...
34883         * nscd/nscd_helper.c (__nscd_get_map_ref): ... here.
34884         * nscd/nscd-client.h: Add __nscd_acquire_maplock.
34885         * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp): Add locking to
34886         code changing __hst_map_handle.map.
34888 2012-05-15  Roland McGrath  <roland@hack.frob.com>
34890         * configure.in (sysnames): Look for Implies-before and Implies-after
34891         files.
34892         * configure: Regenerated.
34894 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34896         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (RESTORE2): Replace
34897         8-byte data alignment with LP_SIZE alignment.
34899 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34901         * sysdeps/unix/sysv/linux/x86_64/clone.S: Load pointer to TID
34902         into R10_LP.
34904 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34906         * sysdeps/unix/sysv/linux/x86_64/x32/dl-cache.h: New.
34908 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34910         * sysdeps/unix/sysv/linux/x86_64/x32/Makefile: New file.
34911         * sysdeps/unix/sysv/linux/x86_64/x32/getcpu.c: Likewise.
34912         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu-static.c:
34913         Likewise.
34914         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Likewise.
34916 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34918         * sysdeps/x86_64/stackinfo.h (stackinfo_get_sp): Use RSP_LP.
34919         (stackinfo_sub_sp): Likewise.
34921 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34923         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Load pointers into
34924         RAX_LP.
34926 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34928         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Load cache sizes
34929         into R*_LP.
34931 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34933         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Load cache
34934         sizes into R*_LP.
34936 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34938         * sysdeps/x86_64/strcmp.S: Load pointers into R*_LP.
34940 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34942         * sysdeps/x86_64/memcpy.S: Load __x86_64_data_cache_size_half
34943         into R11_LP and load __x86_64_shared_cache_size_half into
34944         R8_LP.
34946 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
34948         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Load cache size into
34949         R8_LP.
34951 2012-05-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
34953         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: New file. Optimized
34954         logb for POWER7.
34955         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbf.c: New file. Optimized
34956         logbf for POWER7.
34957         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c: New file. Optimized
34958         logbl for POWER7.
34959         * sysdeps/powerpc/powerpc64/power7/fpu/s_logb.c: New file. Use
34960         powerpc32/power7/fpu/s_logb.c via #include.
34961         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbf.c: New file. Use
34962         powerpc32/power7/fpu/s_logbf.c via #include.
34963         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbl.c: New file. Use
34964         powerpc32/power7/fpu/s_logbl.c via #include.
34966 2012-05-15  Joseph Myers  <joseph@codesourcery.com>
34968         * README.libm: Remove file.
34970 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
34972         * sysdeps/x86_64/start.S: Simulate popping 4-byte argument
34973         count for x32.  Use R*_LP and omit operand-size suffix.
34975 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
34977         * shlib-versions: Move x86_64-.*-linux.* entries to ...
34978         * sysdeps/x86_64/64/shlib-versions: Here.  New file.
34979         * sysdeps/x86_64/x32/shlib-versions: New file.
34981 2012-05-14  Roland McGrath  <roland@hack.frob.com>
34983         * sysdeps/unix/sysv/linux/dl-osinfo.h (dl_fatal): Function removed.
34984         * elf/rtld.c (dl_main) [DL_SYSDEP_OSCHECK]:
34985         Use _dl_fatal_printf instead.
34987 2012-05-14  Joseph Myers  <joseph@codesourcery.com>
34989         * sysdeps/unix/sysv/linux/configure.in (minimum_kernel): Always
34990         set if not set by the user.  Do not allow for being unset.
34991         * sysdeps/unix/sysv/linux/configure: Regenerated.
34993 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
34995         * sysdeps/x86_64/dl-machine.h (elf_machine_load_address): Remove
34996         the `q' suffix from lea and replace .quad with ASM_ADDR.
34998 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
35000         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PTR_MANGLE): Remove
35001         the `q' suffix from xor/rol instructions.  Use $2*LP_SIZE+1
35002         instead of $17.
35003         (PTR_DEMANGLE): Likewise.
35005 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
35007         * sysdeps/x86_64/sysdep.h (LP_SIZE): New macro.
35008         (LP_OP): Likewise.
35009         (ASM_ADDR): Likewise.
35010         (RAX_LP): Likewise.
35011         (RBP_LP): Likewise.
35012         (RBX_LP): Likewise.
35013         (RCX_LP): Likewise.
35014         (RDI_LP): Likewise.
35015         (RSI_LP): Likewise.
35016         (RSP_LP): Likewise.
35017         (R8_LP): Likewise.
35018         (R9_LP): Likewise.
35019         (R10_LP): Likewise.
35020         (R10_LP): Likewise.
35021         (R11_LP): Likewise.
35022         (R12_LP): Likewise.
35023         (R13_LP): Likewise.
35024         (R14_LP): Likewise.
35025         (R15_LP): Likewise.
35027 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
35029         * sysdeps/x86_64/x32/dl-machine.h: New file.
35031 2012-05-14  Andreas Jaeger  <aj@suse.de>
35033         * manual/Makefile (subdir): Remove export of subdir.
35034         (all): Remove target.
35035         (.PHONY): Remove all from list.
35036         (mkinstalldirs): Remove.
35037         (.PHONY): Remove installdirs from list.
35038         ($(inst_infodir)/libc.info): Use make-target-directory.
35039         (installdirs): Remove.
35040         (subdir_%): Remove.
35041         (glibc-targets): Remove.
35042         (lib): Remove.
35043         (stubs): Remove.
35044         ($(objpfx)stubs ../po/manual.pot): Remove.
35045         ($(objpfx)stamp%): Remove.
35046         (make-target-directory): Remove.
35047         (subdir_install): Remove.
35048         (routines): Remove.
35049         (aux): Remove.
35050         (sources): Remove.
35051         (objects): Remove.
35052         (headers): Remove.
35054         [BZ #13750]
35055         * manual/.gitignore: Remove, it's not needed anymore.
35056         * manual/libc-texinfo.sh: Pass OUTDIR as extra argument, create
35057         all files in it.
35058         * manual/Makefile (dvi, pdf, info, html): Depend on files in build
35059         directory.
35060         (texis): Renamed to $(objpfx)texis.
35061         (texis-path): New, contains path to generated files.
35062         (chapters.%): Use texis-path for complete path, add extra argument
35063         libc-texinfo.sh.
35064         (libc.dvi, libc.pdf, libc.info, libc.pdf): Add $(objfpx) as prefix.
35065         (libc/index.html, summary.texi): Add $(objpfx) as prefix.
35066         (summary,texi, stamp-summary): Use complete path of
35067         files. Generate files in build dir.
35068         (dir-add.texi): Build in build dir.
35069         (libm-err.texi,stamp-libm-err): Likewise.
35070         (version.texi, stamp-version): Likewise.
35071         (.%c.texi): Likewise.
35072         (%.info,%.dvi,%.pdf): Add $(objpfx) as prefix, build in build dir.
35073         (mostlyclean): Remove target.
35074         (realclean): Remove target.
35075         (generated): Add new variable with contents from mostlyclean and
35076         realclean, remove entries duplicated in common-mostlyclean, add
35077         stamp-libm-err and stamp-version.
35078         (generated-dirs): Add libc directory.
35079         ($(inst_infodir)/libc.info): Install files from build dir.
35081         * manual/install.texi (Configuring and compiling): Adjust since
35082         the info files are not part of the tar ball anymore.
35084 2012-05-14  Andreas Jaeger  <aj@suse.de>
35086         * sysdeps/unix/sysv/linux/getcwd.c (__getcwd): Remove unused
35087         variable.
35089 2012-05-14  Joseph Myers  <joseph@codesourcery.com>
35091         [BZ #13717]
35092         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel): Set
35093         to 2.2.0 where earlier.
35094         * sysdeps/unix/sysv/linux/configure: Regenerated.
35095         * sysdeps/unix/sysv/linux/getcwd.c [!__ASSUME_GETCWD_SYSCALL]:
35096         Remove conditional code.
35097         [__ASSUME_GETCWD_SYSCALL]: Make code unconditional.
35098         * sysdeps/unix/sysv/linux/i386/chown.c [!__ASSUME_LCHOWN_SYSCALL]:
35099         Remove conditional code.
35100         [!__NR_lchown]: Likewise.
35101         [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
35102         [__NR_lchown]: Likewise.
35103         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Remove
35104         comment referencing __ASSUME_LCHOWN_SYSCALL.
35105         * sysdeps/unix/sysv/linux/i386/sigaction.c
35106         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
35107         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
35108         * sysdeps/unix/sysv/linux/if_index.c [!__ASSUME_SIOCGIFNAME]:
35109         Remove conditional code.
35110         [__ASSUME_SIOCGIFNAME ]: Make code unconditional.
35111         (__protocol_available): Remove #if 0 code.
35112         * sysdeps/unix/sysv/linux/ifreq.c [!__ASSUME_SIOCGIFNAME]: Remove
35113         conditional code.
35114         [__ASSUME_SIOCGIFNAME]: Make code unconditional.
35115         * sysdeps/unix/sysv/linux/kernel-features.h
35116         (__ASSUME_GETCWD_SYSCALL): Don't define.
35117         (__ASSUME_REALTIME_SIGNALS): Likewise.
35118         (__ASSUME_PREAD_SYSCALL): Likewise.
35119         (__ASSUME_PWRITE_SYSCALL): Likewise.
35120         (__ASSUME_POLL_SYSCALL): Likewise.
35121         (__ASSUME_LCHOWN_SYSCALL): Likewise.
35122         (__ASSUME_SETRESUID_SYSCALL): Define for all kernel versions for
35123         non-SPARC.
35124         (__ASSUME_SIOCGIFNAME): Don't define.
35125         (__ASSUME_MSG_NOSIGNAL): Likewise.
35126         (__ASSUME_SENDFILE): Define unconditionally.
35127         (__ASSUME_PROC_SELF_FD_SYMLINK): Don't define.
35128         * sysdeps/unix/sysv/linux/poll.c [!__ASSUME_POLL_SYSCALL]: Remove
35129         conditional code.
35130         [__ASSUME_POLL_SYSCALL]: Make code unconditional.
35131         * sysdeps/unix/sysv/linux/powerpc/chown.c (__chown)
35132         [!__ASSUME_LCHOWN_SYSCALL]: Remove conditional code.
35133         (__chown) [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
35134         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat)
35135         [!__ASSUME_LCHOWN_SYSCALL]: Remove conditional code.
35136         (fchownat) [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
35137         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c
35138         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
35139         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
35140         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c
35141         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
35142         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
35143         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c
35144         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
35145         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
35146         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c
35147         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
35148         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
35149         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c
35150         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
35151         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
35152         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c
35153         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
35154         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
35155         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c
35156         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
35157         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
35158         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c
35159         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
35160         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
35161         * sysdeps/unix/sysv/linux/pread.c [!__ASSUME_PREAD_SYSCALL]:
35162         Remove conditional code.
35163         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
35164         * sysdeps/unix/sysv/linux/pread64.c [!__ASSUME_PREAD_SYSCALL]:
35165         Remove conditional code.
35166         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
35167         * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_internal)
35168         [__LINUX_KERNEL_VERSION < 131443]: Remove conditional code.
35169         * sysdeps/unix/sysv/linux/pwrite.c [!__ASSUME_PWRITE_SYSCALL]:
35170         Remove conditional code.
35171         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
35172         * sysdeps/unix/sysv/linux/pwrite64.c [!__ASSUME_PWRITE_SYSCALL]:
35173         Remove conditional code.
35174         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
35175         * sysdeps/unix/sysv/linux/sh/pread.c [!__ASSUME_PREAD_SYSCALL]:
35176         Remove conditional code.
35177         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
35178         * sysdeps/unix/sysv/linux/sh/pread64.c [!__ASSUME_PREAD_SYSCALL]:
35179         Remove conditional code.
35180         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
35181         * sysdeps/unix/sysv/linux/sh/pwrite.c [!__ASSUME_PWRITE_SYSCALL]:
35182         Remove conditional code.
35183         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
35184         * sysdeps/unix/sysv/linux/sh/pwrite64.c
35185         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
35186         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
35187         * sysdeps/unix/sysv/linux/sigaction.c
35188         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
35189         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
35190         * sysdeps/unix/sysv/linux/sigpending.c
35191         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
35192         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
35193         * sysdeps/unix/sysv/linux/sigprocmask.c
35194         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
35195         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
35196         * sysdeps/unix/sysv/linux/sigsuspend.c
35197         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
35198         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
35199         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c
35200         (__libc_missing_rt_sigs): Remove.
35201         (__libc_sigaction) [__NR_rt_sigaction]: Make code unconditional.
35202         (__libc_sigaction): Do not handle ENOSYS from rt_sigaction.
35203         * sysdeps/unix/sysv/linux/syslog.c [!__ASSUME_MSG_NOSIGNAL]:
35204         Remove conditional code.
35205         [__ASSUME_MSG_NOSIGNAL]: Make code unconditional.
35206         * sysdeps/unix/sysv/linux/testrtsig.h (kernel_has_rtsig): Always
35207         return 1.
35208         * sysdeps/unix/sysv/linux/ttyname.c (ttyname)
35209         [!__ASSUME_PROC_SELF_FD_SYMLINK]: Remove conditional code.
35210         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r)
35211         [!__ASSUME_PROC_SELF_FD_SYMLINK]: Likewise.
35213 2012-05-14  Andreas Jaeger  <aj@suse.de>
35215         * sysdeps/i386/fpu/bits/mathinline.h (__pow2): Remove,
35216         it's not used in glibc.
35217         (__coshm1): Likewise.
35218         (__acosh1p): Likewise.
35219         (__sgn): Likewise.
35221         * manual/string.texi (Copying and Concatenation): Add missing
35222         variable in concat example.
35223         Reported by David C. Rankin <drankinatty@suddenlinkmail.com>.
35225 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
35227         [BZ #14103]
35228         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Replace
35229         __builtin_clzl with __builtin_clzll.
35231 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
35233         [BZ #14104]
35234         * sysdeps/unix/sysv/linux/check_pf.c (cache): Use
35235         libc_freeres_ptr.
35237 2012-05-14  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
35239         * sysdeps/i386/i686/fpu/multiarch/Makefile: New file.
35240         * sysdeps/i386/i686fpu/multiarch/e_expf.c: New file.
35241         * sysdeps/i386/i686fpu/multiarch/e_expf-ia32.S: New file.
35242         * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: New file.
35244 2012-05-14  Mike Frysinger  <vapier@gentoo.org>
35246         * NEWS: Update ia64 info.
35248 2012-05-12  Andreas Schwab  <schwab@linux-m68k.org>
35250         * sysdeps/powerpc/memmove.c (MEMMOVE): Don't return a value if
35251         used as bcopy.
35253 2012-05-12  Thomas Schwinge  <thomas@codesourcery.com>
35255         * io/dup3.c (dup3): Rename to __dup3, add weak alias for dup3.
35256         * sysdeps/unix/syscalls.list (dup3): Likewise.
35257         * libio/freopen.c (freopen): Invoke __dup3 instead of dup3.
35258         * libio/freopen64.c (freopen64): Invoke __dup3 instead of dup3.
35260 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
35262         * elf/stackguard-macros.h (STACK_CHK_GUARD) [__x86_64__]: Use
35263         "%c1" with "i" (offsetof (tcbhead_t, stack_guard)).
35265 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
35267         * elf/tls-macros.h (TLS_LE): Use mov instead of movq to load
35268         thread pointer.
35269         (TLS_IE): Use mov/add instead of movq/addq to load thread
35270         pointer.
35271         (TLS_GD_PREFIX): New.
35272         (TLS_GD): Use it.
35274 2012-05-11  David S. Miller  <davem@davemloft.net>
35276         * sysdeps/sparc/fpu/bits/fenv.h (__fenv_stfsr): Add __volatile__.
35277         * sysdeps/sparc/fpu/fpu_control.h (_FPU_GETCW): Likewise.
35278         (_FPU_SETCW): Likewise.
35280 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
35282         * sysdeps/x86_64/dl-trampoline.S: Check if RTLD_SAVESPACE_SSE
35283         is 32-byte aligned.
35285 2012-05-11  Andreas Schwab  <schwab@linux-m68k.org>
35287         [BZ #11837]
35288         * iconvdata/gb18030.c: Update tables.
35289         (BODY for FROM_LOOP): Update.  Handle two-byte encoded non-BMP
35290         characters specially.
35291         (BODY for TO_LOOP): Add encoding of missing ranges.
35293 2012-05-11  Thomas Schwinge  <thomas@codesourcery.com>
35295         [BZ #13673]
35296         * sysdeps/mach/hurd/accept4.c: Replace FSF snail mail address with URL.
35297         * sysdeps/mach/hurd/dup3.c: Likewise.
35298         * sysdeps/mach/hurd/readlinkat.c: Likewise.
35299         * sysdeps/powerpc/memmove.c:: Likewise.
35301 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
35303         * sysdeps/x86_64/dl-machine.h (elf_machine_rela_relative): Handle
35304         R_X86_64_RELATIVE64 only if RTLD_BOOTSTRAP isn't defined.
35306 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
35308         * elf/elf.h (R_X86_64_RELATIVE64): New.
35309         (R_X86_64_NUM): Updated.
35310         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Handle
35311         R_X86_64_RELATIVE64.  Always use Elf64_Addr with R_X86_64_64.
35312         (elf_machine_rela_relative): Handle R_X86_64_RELATIVE64.
35313         * sysdeps/x86_64/Makefile (tests): Add tst-quad1 tst-quad2
35314         tst-quad1pie tst-quad2pie
35315         (modules-names): Add tst-quadmod1 tst-quadmod2.
35316         ($(objpfx)tst-quad1): New dependency.
35317         ($(objpfx)tst-quad2): Likewise.
35318         ($(objpfx)tst-quad1pie): Likewise.
35319         ($(objpfx)tst-quad2pie): Likewise.
35320         * sysdeps/x86_64/tst-quad1.c: New file.
35321         * sysdeps/x86_64/tst-quad1pie.c: New file.
35322         * sysdeps/x86_64/tst-quad2.c: Likewise.
35323         * sysdeps/x86_64/tst-quad2pie.c: Likewise.
35324         * sysdeps/x86_64/tst-quadmod1.S: Likewise.
35325         * sysdeps/x86_64/tst-quadmod1pie.S: Likewise.
35326         * sysdeps/x86_64/tst-quadmod2.S: Likewise.
35327         * sysdeps/x86_64/tst-quadmod2pie.S: Likewise.
35329 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
35331         * io/fcntl.h (mode_t, off_t, pid_t): Define types.
35332         (__mode_t_defined, __off_t_defined, __pid_t_defined): Define macros.
35333         * streams/stropts.h (t_scalar_t): Define type.
35335         * sysdeps/generic/paths.h (_PATH_MAN): Set to "/usr/share/man"
35336         (_PATH_PRESERVE): Set to "/var/lib".
35337         (_PATH_RWHODIR): Set to "/var/spool/rwho".
35339         * sysdeps/mach/hurd/openat.c (__openat): Set type of MODE to mode_t
35340         instead of int.
35342         * sysdeps/mach/hurd/xmknodat.c (__xmknodat): Deallocate NODE port only
35343         if __dir_mkfile succeeded.
35345         * sysdeps/mach/hurd/dup3.c: Lock _hurd_dtable_lock before
35346         checking for _hurd_dtablesize.  Unlock it right after having
35347         finished _hurd_dtable allocation.
35349 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
35351         * sysdeps/mach/hurd/configure.in: Remove warning for --prefix=[...].
35352         * sysdeps/mach/hurd/configure: Regenerated.
35353         * sysdeps/unix/sysv/linux/configure.in: Move --prefix=/usr
35354         special-casing to...
35355         * sysdeps/gnu/configure.in: ... this new file.
35356         * sysdeps/unix/sysv/linux/configure: Regenerated.
35357         * sysdeps/gnu/configure: New generated file.
35359         * sysdeps/mach/hurd/bits/stat.h (struct stat): Align to what is done
35360         for Linux: use nsec instead of usec, as well as:
35361         [__USE_MISC || __USE_XOPEN2K8] (st_atim, st_mtim, st_ctim): New
35362         members of type struct timespec.
35363         [__USE_MISC || __USE_XOPEN2K8] (st_atime, st_mtime, st_ctime):
35364         New macros.
35365         (struct stat64): Likewise.
35366         (_STATBUF_ST_NSEC): New macro.
35367         * sysdeps/mach/hurd/xstatconv.c (xstat64_conv): Adapt to that.
35369         * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use
35370         __strtoul_internal rather than strtoul.
35372 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
35374         * hurd/hurdsock.c (_hurd_socket_server): Check for negative domains,
35375         and reject them.
35377 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
35379         * sysdeps/mach/hurd/setresgid.c (__setresgid): Handle the -1 case,
35380         which preserves existing values.
35381         * sysdeps/mach/hurd/setresuid.c (__setresuid): Likewise.
35383 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
35385         * hurd/hurdselect.c (_hurd_select): Return EINVAL for negative
35386         TIMEOUT values.  Return EINVAL for NFDS values either negative or
35387         greater than FD_SETSIZE.
35389 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
35391         * sysdeps/mach/hurd/brk.c (_hurd_set_brk): When more space needs to be
35392         allocated, call __vm_protect to finish enabling the existing space, and
35393         pass a copy of _hurd_data_end instead of PAGEBRK to __vm_allocate to
35394         allocate the remainder.
35396 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
35398         * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Check also for a null
35399         address port.  Set ADDR_LEN to 0 when not filling ADDRARG.
35401 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
35403         * sysdeps/mach/hurd/readlinkat.c: New file, heavily derived from
35404         sysdeps/mach/hurd/readlink.c.
35406         * posix/tst-sysconf.c (posix_options): Only use
35407         _POSIX_PRIORITIZED_IO, _POSIX_PRIORITY_SCHEDULING, and
35408         _POSIX_SYNCHRONIZED_IO when they are defined
35409         * sysdeps/mach/hurd/bits/posix_opt.h:
35410         (_POSIX_PRIORITY_SCHEDULING): Undefine macro.
35411         (_XOPEN_REALTIME): Undefine macro.
35412         (_XOPEN_REALTIME_THREADS): Undefine macro.
35413         (_XOPEN_SHM): Undefine macro.
35414         [__USE_XOPEN2K8] (_POSIX_THREAD_ROBUST_PRIO_INHERIT): Define
35415         macro to -1.
35416         [__USE_XOPEN2K8] (_POSIX_THREAD_ROBUST_PRIO_PROTECT): Define
35417         macro to -1.
35418         (_POSIX_ASYNC_IO): Undefine macro.
35419         (_POSIX_PRIORITIZED_IO): Undefine macro.
35420         (_POSIX_SPIN_LOCKS): Define macro to -1.
35422         * bits/sigaction.h [__USE_XOPEN2K8]: Define SA_RESTART,
35423         SA_NODEFER, SA_RESETHAND.
35424         * sysdeps/mach/hurd/bits/fcntl.h [__USE_XOPEN2K8]: Define
35425         O_NOFOLLOW, O_DIRECTORY, O_CLOEXEC, F_GETOWN, F_SETOWN,
35426         F_DUPFD_CLOEXEC.
35428 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
35430         * elf/Makefile (pldd-modules): Define unconditionally.
35432 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
35434         * sysdeps/mach/hurd/opendir.c (__opendirat): New function.
35436 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
35438         * hurd/hurdchdir.c (_hurd_change_directory_port_from_name):
35439         Return ENOENT when name is empty.
35440         * sysdeps/mach/hurd/chroot.c (chroot): Likewise.
35442 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
35444         * include/libc-symbols.h [NO_HIDDEN] (hidden_nolink): New macro.
35446         * nss/makedb.c (MAP_POPULATE): If not defined, define to zero.
35448 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
35450         Fix mlock in all cases except non-readable pages.
35451         * sysdeps/mach/hurd/mlock.c (mlock): Give VM_PROT_READ
35452         instead of VM_PROT_ALL as parameter to __vm_wire function.
35454         * sysdeps/mach/hurd/mkdir.c: Include <string.h>.
35455         (__mkdir): When path is `/', just fail with EEXIST.
35456         * sysdeps/mach/hurd/mkdirat.c: Likewise.
35458 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
35460         * nss/makedb.c: Include <sys/param.h> (for MAX and roundup), and
35461         <sys/uio.h> (for writev).
35462         * nss/nss_db/db-initgroups.c: Include <limits.h> (for ULONG_MAX),
35463         and <sys/param.h> (for MIN).
35465 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
35467         * sysdeps/mach/nanosleep.c: Return EINVAL for invalid values of
35468         REQUESTED_TIME.  Properly set the remaining time and return EINTR
35469         if interrupted.
35471 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
35473         * sysdeps/mach/hurd/Makefile ($(common-objpfx)linkobj/libc.so):
35474         Depend on against $(link-rpcuserlibs).
35476 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
35478         * sysdeps/generic/ldsodefs.h [LIBC_STACK_END_NOT_RELRO]
35479         (__libc_stack_end): Do not use attribute_relro.
35480         * sysdeps/mach/hurd/dl-sysdep.h (LIBC_STACK_END_NOT_RELRO): Define.
35481         * sysdeps/mach/hurd/i386/init-first.c (init): Update __libc_stack_end
35482         to libthread-provided value.
35483         * sysdeps/mach/hurd/dl-sysdep.c (__libc_stack_end): Do not use
35484         attribute_relro.
35486 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
35488         [BZ #3748]
35489         * bits/libc-lock.h (__libc_once_get): New macro.
35490         * sysdeps/mach/bits/libc-lock.h: Likewise.
35491         * sysdeps/mach/hurd/bits/libc-lock.h: Likewise.
35492         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Use __libc_once_get
35493         instead of using implementation details.
35495         * libio/fileops.c: Unconditionally include <kernel-features.h>.
35496         * libio/freopen.c: Likewise.
35497         * libio/freopen64.c: Likewise.
35498         * misc/syslog.c: Likewise.
35499         * nscd/connections.c: Likewise.
35500         * nscd/netgroupcache.c: Likewise.
35501         * sysdeps/posix/getcwd.c: Likewise.
35503 2012-05-10  Roland McGrath  <roland@hack.frob.com>
35505         * math/w_ilogbf.c: Add #include <limits.h>.
35507 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
35509         * sysdeps/mach/hurd/setitimer.c (setitimer_locked): Use common exit
35510         path instead of returning without unlocking.
35512         * sysdeps/mach/hurd/bits/ioctls.h (_IOIW): New macro for
35513         immediate-write ioctls.
35514         * sysdeps/mach/hurd/ioctl.c: Handle cases with no arguments.
35516 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
35518         * sysdeps/mach/hurd/i386/init-first.c (init): Use
35519         __builtin_frame_address instead of making assumptions about the
35520         location of the return address relative to DATA.  Force early load of
35521         the return address.
35522         (_dl_init_first, doinit1 in doinit in _hurd_stack_setup): Don't use
35523         __builtin_frame_address.
35525         dup3 for GNU Hurd.
35526         * include/unistd.h: Declare __dup3 and use libc_hidden_proto on it.
35527         * sysdeps/mach/hurd/dup3.c: New file, copy from dup2.c.  Evolve it to
35528         implement dup3 and do some further code clean-ups.
35529         * sysdeps/mach/hurd/dup2.c (__dup2): Reimplement using __dup3.
35530         * sysdeps/mach/hurd/kernel-features.h (__ASSUME_DUP3): Define.
35532 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
35534         * sysdeps/mach/hurd/dl-sysdep.c: Conditionalize contents on [SHARED].
35536         * hurd/hurd/fd.h (_hurd_fd_get): Call HURD_CRITICAL_BEGIN/
35537         HURD_CRITICAL_END around holding _hurd_dtable_lock.
35538         * sysdeps/mach/hurd/dirfd (dirfd): Likewise.
35539         * sysdeps/mach/hurd/opendir.c (_hurd_fd_opendir): Call
35540         HURD_CRITICAL_BEGIN/HURD_CRITICAL_END around holding
35541         d->port.lock.
35543         * hurd/catch-signal.c (hurd_catch_signal): Use sigsetjmp/siglongjmp
35544         instead of setjmp/longjmp to restore the signal mask.  Call sigsetjmp
35545         when handler == SIG_ERR, not when handler != SIG_ERR.
35547 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
35549         * sysdeps/mach/hurd/bits/socket.h: New file, copy from the bsd4.4 one.
35550         (SOCK_MAX, SOCK_TYPE_MASK, SOCK_CLOEXEC, SOCK_NONBLOCK): New
35551         definitions.
35553         accept4 for GNU Hurd.
35554         * include/sys/socket.h (__libc_accept4): New prototype.
35555         * sysdeps/mach/hurd/accept4.c: New file, copy from accept.c.  Evolve it
35556         to implement __libc_accept4.
35557         * sysdeps/mach/hurd/accept.c (accept): Reimplement using
35558         __libc_accept4.
35559         * sysdeps/mach/hurd/kernel-features.h (__ASSUME_ACCEPT4): Define.
35561         * sysdeps/mach/hurd/i386/____longjmp_chk.S: New file.
35562         * sysdeps/mach/hurd/i386/signal-defines.sym: New file.
35563         * sysdeps/mach/hurd/i386/Makefile (gen-as-const-headers): Add
35564         signal-defines.sym.
35566 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
35568         * bits/in.h (SOL_IP, SOL_IPV6, SOL_ICMPV6): New macros.
35570 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
35572         * sysdeps/mach/hurd/dl-sysdep.c (open_file): Do not raise
35573         assertion on O_CLOEXEC flag.
35574         * hurd/hurd/fd.h: Update comment to mention O_CLOEXEC.
35575         * hurd/intern-fd.c: Likewise.
35576         * hurd/port2fd.c: Likewise.
35578 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
35580         [BZ #3906]
35581         * bits/in.h (IPV6_PKTINFO): Define new macro.
35582         (IPV6_RXINFO,IPV6_TXINFO,SCM_SRCINFO): Redefine to IPV6_PKTINFO.
35584 2012-05-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
35586         [BZ #13954]
35587         [BZ #13955]
35588         [BZ #13956]
35589         * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Fix for subnormal number.
35590         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
35591         * sysdeps/ieee754/flt-32/s_logbf.c (__logf): Likewise.
35592         * sysdeps/ieee754/ldbl-128/s_logbl.c (__logbl): Likewise.
35593         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
35594         * sysdeps/ieee754/ldbl-96/s_logbl.c (__logbl): Likewise.
35595         * math/libm-test.inc (logb_test) : Additional logb tests.
35597 2012-05-09  Andreas Schwab  <schwab@linux-m68k.org>
35598             Andreas Jaeger  <aj@suse.de>
35600         * configure.in (obsolete-rpc): Add new option --enable-obsolete-rpc.
35601         * configure: Regenerated.
35602         * config.h.in (LINK_OBSOLETE_RPC): New macro.
35603         * config.make.in (link-obsolete-rpc): New substituted variable.
35604         * include/libc-symbols.h (libc_hidden_nolink_sunrpc): Rename from
35605         libc_hidden_nolink and define based on LINK_OBSOLETE_RPC.
35606         * sunrpc/Makefile (headers) [link-obsolete-rpc]: Add rpc headers.
35607         (shared-only-routines): Don't set it under [link-obsolete-rpc],
35608         so that libc.a contains the symbols.
35609         * nis/Makefile (headers) [link-obsolete-rpc]: Add rpc headers.
35610         * sunrpc/auth_des.c: Use libc_hidden_nolink_sunrpc.
35611         * sunrpc/auth_none.c: Likewise.
35612         * sunrpc/auth_unix.c: Likewise.
35613         * sunrpc/authdes_prot.c: Likewise.
35614         * sunrpc/authuxprot.c: Likewise.
35615         * sunrpc/clnt_gen.c: Likewise.
35616         * sunrpc/clnt_perr.c: Likewise.
35617         * sunrpc/clnt_raw.c: Likewise.
35618         * sunrpc/clnt_simp.c: Likewise.
35619         * sunrpc/clnt_tcp.c: Likewise.
35620         * sunrpc/clnt_udp.c: Likewise.
35621         * sunrpc/clnt_unix.c: Likewise.
35622         * sunrpc/des_crypt.c: Likewise.
35623         * sunrpc/des_soft.c: Likewise.
35624         * sunrpc/get_myaddr.c: Likewise.
35625         * sunrpc/key_call.c: Likewise.
35626         * sunrpc/key_prot.c: Likewise.
35627         * sunrpc/netname.c: Likewise.
35628         * sunrpc/pm_getmaps.c: Likewise.
35629         * sunrpc/pm_getport.c: Likewise.
35630         * sunrpc/pmap_clnt.c: Likewise.
35631         * sunrpc/pmap_prot.c: Likewise.
35632         * sunrpc/pmap_prot2.c: Likewise.
35633         * sunrpc/pmap_rmt.c: Likewise.
35634         * sunrpc/publickey.c: Likewise.
35635         * sunrpc/rpc_cmsg.c: Likewise.
35636         * sunrpc/rpc_common.c: Likewise.
35637         * sunrpc/rpc_dtable.c: Likewise.
35638         * sunrpc/rpc_prot.c: Likewise.
35639         * sunrpc/rpc_thread.c: Likewise.
35640         * sunrpc/rtime.c: Likewise.
35641         * sunrpc/svc.c: Likewise.
35642         * sunrpc/svc_auth.c: Likewise.
35643         * sunrpc/svc_raw.c: Likewise.
35644         * sunrpc/svc_run.c: Likewise.
35645         * sunrpc/svc_tcp.c: Likewise.
35646         * sunrpc/svc_udp.c: Likewise.
35647         * sunrpc/svc_unix.c: Likewise.
35648         * sunrpc/svcauth_des.c: Likewise.
35649         * sunrpc/xcrypt.c: Likewise.
35650         * sunrpc/xdr.c: Likewise.
35651         * sunrpc/xdr_array.c: Likewise.
35652         * sunrpc/xdr_float.c: Likewise.
35653         * sunrpc/xdr_intXX_t.c: Likewise.
35654         * sunrpc/xdr_mem.c: Likewise.
35655         * sunrpc/xdr_rec.c: Likewise.
35656         * sunrpc/xdr_ref.c: Likewise.
35657         * sunrpc/xdr_sizeof.c: Likewise.
35658         * sunrpc/xdr_stdio.c: Likewise.
35660 2012-05-10  Roland McGrath  <roland@hack.frob.com>
35662         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Fix typo in last
35663         change.  Update copyright years.
35665 2012-05-10  Joseph Myers  <joseph@codesourcery.com>
35667         * include/stdc-predef.h (__STDC_NO_THREADS__): Define.
35669 2012-05-10  Maxim Kuvyrkov  <maxim@codesourcery.com>
35670             Joseph Myers  <joseph@codesourcery.com>
35671             Paul Pluzhnikov  <ppluzhnikov@google.com>
35673         [BZ #14012]
35674         * sunrpc/Makefile [cross-compiling] (headers): Enable additions
35675         requiring rpcgen.
35676         [cross-compiling] (extra-libs): Likewise.
35677         [cross-compiling] (extra-libs-others): Likewise.
35678         [cross-compiling] (librpcsvc-routines): Likewise.
35679         [cross-compiling] (librpcsvc-inhibit-o): Likewise.
35680         [cross-compiling] (omit-deps): Likewise.
35681         (sunrpc-CPPFLAGS): New variable.
35682         (CPPFLAGS): Define using $(sunrpc-CPPFLAGS).
35683         (BUILD_CPPFLAGS): Append $(sunrpc-CPPFLAGS).
35684         (cross-rpcgen-objs): New variable.
35685         (extra-objs): Append $(cross-rpcgen-objs).
35686         ($(cross-rpcgen-objs)): New rule.
35687         ($(objpfx)cross-rpcgen): Likewise.
35688         (rpcgen-cmd): Define to use $(built-program-file).  Expand
35689         comment.
35690         ($(objpfx)rpcsvc/%.stmp): Depend on cross-rpcgen.
35691         ($(objpfx)x%.stmp): Likewise.
35692         * sunrpc/proto.h [IS_IN_build] (_): Define.
35693         [IS_IN_build] (_libc_intl_domainname): Likewise.
35695 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
35697         * sysdeps/x86_64/dl-machine.h (elf_machine_rela) [__ILP32__]:
35698         Sign extend relocation result to 64 bits for R_X86_64_DTPOFF64
35699         and R_X86_64_TPOFF64.
35701 2012-05-10  Joseph Myers  <joseph@codesourcery.com>
35703         * sysdeps/unix/sysv/linux/syscalls.list (alarm): Add entry from
35704         sysdeps/unix/sysv/syscalls.list.
35705         (stime): Likewise.
35706         (utime): Likewise.
35707         * sysdeps/unix/sysv/syscalls.list: Remove file.
35709 2012-05-10  Paul Eggert  <eggert@cs.ucla.edu>
35711         [BZ #3440]
35712         * locale/bits/locale.h (__LC_CTYPE, __LC_NUMERIC, __LC_TIME)
35713         (__LC_COLLATE, __LC_MONETARY, __LC_MESSAGES, __LC_ALL, __LC_PAPER)
35714         (__LC_NAME, __LC_ADDRESS, __LC_TELEPHONE, __LC_MEASUREMENT)
35715         (__LC_IDENTIFICATION): Make these macros useful in #if
35716         expressions, as required by C99.
35718 2012-05-10  Andreas Schwab  <schwab@linux-m68k.org>
35720         * sunrpc/Makefile (extra-objs) [$(build-shared) = yes]: Add
35721         $(addsuffix .os,$(rpc-compat-routines)).  Move include ../Rules
35722         after this.
35724 2012-05-09  H.J. Lu  <hongjiu.lu@intel.com>
35726         * stdlib/longlong.h: Updated from GCC.
35728 2012-05-09  Andreas Jaeger  <aj@suse.de>
35730         * nscd/nscd.c (run_modes): Make named enum, reorder so that
35731         default is first entry.
35732         (run_mode): Set type.
35733         (main): Remove informal message about syslog.
35734         (options): Fix typo.
35736         [BZ #14053]
35737         * sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Add __volatile
35738         to asm.
35739         (lrint): Likewise.
35740         (llrintf): Likewise.
35741         (llrint): Likewise.
35742         (rint): Likewise.
35743         (rintf): Likewise.
35744         (nearbyint): Likewise.
35745         (nearbyintf): Likewise.
35747 2012-05-09  Andreas Jaeger  <aj@suse.de>
35748             Pedro Alves  <palves@redhat.com>
35750         * nscd/nscd.c (run_mode): Use enum.
35751         (main): Cleanup coding style issue.
35753 2012-05-09  Alexandre Oliva  <aoliva@redhat.com>
35754             Andreas Jaeger  <aj@suse.de>
35756         * nscd/nscd.c (go_background): Replaced with...
35757         (run_mode): ... this.
35758         (RUN_FOREGROUND, RUN_DAEMONIZE, RUN_DEBUG): Add.
35759         (options): Add -F --foreground.
35760         (main): Implement it.
35761         (parse_opt): Parse it.
35763 2012-05-09  Andreas Jaeger  <aj@suse.de>
35765         [BZ #14083]
35766         * string/bits/string2.h (strspn) [__GNUC_PREREQ(3, 2) &&
35767         !_HAVE_STRING_ARCH_strspn]: Cast zero to size_t to avoid
35768         -Wconversion warning.
35769         (strspn) [!__GNUC_PREREQ(3, 2) && !_HAVE_STRING_ARCH_strspn]:
35770         Likewise.
35772 2012-05-09  Joseph Myers  <joseph@codesourcery.com>
35774         * conform/data/locale.h-data (NULL): Use macro-constant.  Require
35775         == 0.
35776         (LC_ALL): Use macro-int-constant.
35777         (LC_COLLATE): Likewise.
35778         (LC_CTYPE): Likewise.
35779         (LC_MESSAGES): Likewise.
35780         (LC_MONETARY): Likewise.
35781         (LC_NUMERIC): Likewise.
35782         (LC_TIME): Likewise.
35783         [ISO || ISO99 || ISO11] (LC_MESSAGES): Do not require.
35784         (LC_*): Change to LC_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
35785         [ISO || ISO99 || ISO11] (*_t): Do not allow.
35786         * conform/data/math.h-data (HUGE_VAL): Use macro-constant.
35787         Specify type.
35788         [C99-based standards] (float_t): Expect type.
35789         [C99-based standards] (double_t): Expect type.
35790         [C99-based standards] (HUGE_VALF): Use macro-constant.  Specify
35791         type.
35792         [C99-based standards] (HUGE_VALL): Likewise.
35793         [C99-based standards] (INFINITY): Likewise.
35794         [C99-based standards] (NAN): Likewise.
35795         [C99-based standards] (FP_INFINITE): Use macro-int-constant.
35796         [C99-based standards] (FP_NAN): Likewise.
35797         [C99-based standards] (FP_NORMAL): Likewise.
35798         [C99-based standards] (FP_SUBNORMAL): Likewise.
35799         [C99-based standards] (FP_ZERO): Likewise.
35800         [C99-based standards] (FP_FAST_FMA): Use
35801         optional-macro-int-constant.  Specify type.  Require == 1.
35802         [C99-based standards] (FP_FAST_FMAF): Likewise.
35803         [C99-based standards] (FP_FAST_FMAL): Likewise.
35804         [C99-based standards] (FP_ILOGB0): Use macro-int-constant.
35805         [C99-based standards] (FP_ILOGBNAN): Likewise.
35806         [C99-based standards] (MATH_ERRNO): Use macro-int-constant.
35807         Specify type.
35808         [C99-based standards] (MATH_ERREXCEPT): Likewise.
35809         [C99-based standards] (math_errhandling): Specify type.
35810         [ISO99 || ISO11] (signgam): Do not allow.
35811         [non-C99-based standards] (copysignf): Do not allow.
35812         [non-C99-based standards] (exp2f): Likewise.
35813         [non-C99-based standards] (log2f): Likewise.
35814         [non-C99-based standards] (modff): Allow.
35815         [non-C99-based standards] (erff): Do not allow.
35816         [non-C99-based standards] (erfcf): Likewise.
35817         [non-C99-based standards] (gammaf): Likewise.
35818         [non-C99-based standards] (hypotf): Likewise.
35819         [non-C99-based standards] (j0f): Likewise.
35820         [non-C99-based standards] (j1f): Likewise.
35821         [non-C99-based standards] (jnf): Likewise.
35822         [non-C99-based standards] (lgammaf): Likewise.
35823         [non-C99-based standards] (tgammaf): Likewise.
35824         [non-C99-based standards] (y0f): Likewise.
35825         [non-C99-based standards] (y1f): Likewise.
35826         [non-C99-based standards] (ynf): Likewise.
35827         [non-C99-based standards] (isnanf): Likewise.
35828         [non-C99-based standards] (acoshf): Likewise.
35829         [non-C99-based standards] (asinhf): Likewise.
35830         [non-C99-based standards] (atanhf): Likewise.
35831         [non-C99-based standards] (cbrtf): Likewise.
35832         [non-C99-based standards] (expm1f): Likewise.
35833         [non-C99-based standards] (ilogbf): Likewise.
35834         [non-C99-based standards] (log1pf): Likewise.
35835         [non-C99-based standards] (logbf): Likewise.
35836         [non-C99-based standards] (nextafterf): Likewise.
35837         [non-C99-based standards] (remainderf): Likewise.
35838         [non-C99-based standards] (rintf): Likewise.
35839         [non-C99-based standards] (scalbf): Likewise.
35840         [non-C99-based standards] (copysignl): Likewise.
35841         [non-C99-based standards] (exp2l): Likewise.
35842         [non-C99-based standards] (log2l): Likewise.
35843         [non-C99-based standards] (modfl): Allow.
35844         [non-C99-based standards] (erfl): Do not allow.
35845         [non-C99-based standards] (erfcl): Likewise.
35846         [non-C99-based standards] (gammal): Likewise.
35847         [non-C99-based standards] (hypotl): Likewise.
35848         [non-C99-based standards] (j0l): Likewise.
35849         [non-C99-based standards] (j1l): Likewise.
35850         [non-C99-based standards] (jnl): Likewise.
35851         [non-C99-based standards] (lgammal): Likewise.
35852         [non-C99-based standards] (tgammal): Likewise.
35853         [non-C99-based standards] (y0l): Likewise.
35854         [non-C99-based standards] (y1l): Likewise.
35855         [non-C99-based standards] (ynl): Likewise.
35856         [non-C99-based standards] (isnanl): Likewise.
35857         [non-C99-based standards] (acoshl): Likewise.
35858         [non-C99-based standards] (asinhl): Likewise.
35859         [non-C99-based standards] (atanhl): Likewise.
35860         [non-C99-based standards] (cbrtl): Likewise.
35861         [non-C99-based standards] (expm1l): Likewise.
35862         [non-C99-based standards] (ilogbl): Likewise.
35863         [non-C99-based standards] (log1pl): Likewise.
35864         [non-C99-based standards] (logbl): Likewise.
35865         [non-C99-based standards] (nextafterl): Likewise.
35866         [non-C99-based standards] (remainderl): Likewise.
35867         [non-C99-based standards] (rintl): Likewise.
35868         [non-C99-based standards] (scalbl): Likewise.
35869         [ISO || ISO99 || ISO11] (*_t): Do not allow.
35870         [non-C99-based standards] (FP_*): Do not allow.
35871         [C99-based standards] (FP_*): Change to
35872         FP_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
35873         * conform/data/setjmp.h-data [ISO || ISO99 || ISO11] (*_t): Do not
35874         allow.
35875         * conform/data/signal.h-data (SIG_DFL): Use macro-constant.
35876         (SIG_ERR): Likewise.
35877         [X/Open-based standards] (SIG_HOLD): Likewise.
35878         (SIG_IGN): Likewise.
35879         (SIGABRT): Use macro-int-constant.  Specify type.  Require
35880         positive value.
35881         (SIGFPE): Likewise.
35882         (SIGILL): Likewise.
35883         (SIGINT): Likewise.
35884         (SIGSEGV): Likewise.
35885         (SIGTER): Likewise.
35886         [!ISO && !ISO99 && !ISO11] (SIGALRM): Likewise.
35887         [!ISO && !ISO99 && !ISO11] (SIGHUP): Likewise.
35888         [!ISO && !ISO99 && !ISO11] (SIGIO): Likewise.
35889         [!ISO && !ISO99 && !ISO11] (SIGKILL): Likewise.
35890         [!ISO && !ISO99 && !ISO11] (SIGPIPE): Likewise.
35891         [!ISO && !ISO99 && !ISO11] (SIGQUIT): Likewise.
35892         [!ISO && !ISO99 && !ISO11] (SIGUSR1): Likewise.
35893         [!ISO && !ISO99 && !ISO11] (SIGUSR2): Likewise.
35894         [!ISO && !ISO99 && !ISO11] (SIGCHLD): Likewise.
35895         [!ISO && !ISO99 && !ISO11] (SIGCONT): Likewise.
35896         [!ISO && !ISO99 && !ISO11] (SIGSTOP): Likewise.
35897         [!ISO && !ISO99 && !ISO11] (SIGTSTP): Likewise.
35898         [!ISO && !ISO99 && !ISO11] (SIGTTIN): Likewise.
35899         [!ISO && !ISO99 && !ISO11] (SIGTTOU): Likewise.
35900         [!ISO && !ISO99 && !ISO11] (SIGBUS): Likewise.
35901         [!ISO && !ISO99 && !ISO11] (SIGPOLL): Likewise.
35902         [!ISO && !ISO99 && !ISO11] (SIGPROF): Likewise.
35903         [!ISO && !ISO99 && !ISO11] (SIGSYS): Likewise.
35904         [X/Open-based standards] (SIGTRAP): Likewise.
35905         [!ISO && !ISO99 && !ISO11] (SIGURG): Likewise.
35906         [!ISO && !ISO99 && !ISO11] (SIGVTALRM): Likewise.
35907         [!ISO && !ISO99 && !ISO11] (SIGXCPU): Likewise.
35908         [!ISO && !ISO99 && !ISO11] (SIGXFSZ): Likewise.
35909         * conform/data/stdarg.h-data [ISO || ISO99 || ISO11] (*_t): Do not
35910         allow.
35912 2012-05-08  Ian Wienand  <ianw@vmware.com>
35914         [BZ #14080]
35915         * time/tzset.c (__tzset_parse_tz): Update default rules for
35916         daylight time changes in the Energy Policy Act of 2005.
35918 2012-05-09  Andreas Jaeger  <aj@suse.de>
35920         [BZ #13983]
35921         * elf/ldconfig.c (parse_conf): Change string to make clear that
35922         ldconfig only issued a warning if ld.so.conf does not exist.
35924 2012-05-08  David S. Miller  <davem@davemloft.net>
35926         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S: Use
35927         movxtod instead of popping the value on the stack.
35929         * sysdeps/sparc/fpu/libm-test-ulps: Update.
35931 2012-05-08  Carlos O'Donell  <carlos_odonell@mentor.com>
35933         * config.h.in: Add HAVE_ARM_PCS_VFP.
35935 2012-05-08  Roland Mc Grath  <roland@hack.frob.com>
35937         [BZ #13979]
35938         * include/features.h: Warn if user requests __FORTIFY_SOURCE
35939         checking but the checks are disabled for any reason.
35941 2012-05-08  H.J. Lu  <hongjiu.lu@intel.com>
35943         * sysdeps/x86_64/dl-machine.h: Replace Elf64_XXX with ElfW(XXX)
35944         and ELF64_R_TYPE with ELFW(R_TYPE).
35946 2012-05-08  Joseph Myers  <joseph@codesourcery.com>
35948         * sysdeps/unix/sysv/syscalls.list (pause): Remove.
35949         (ulimit): Likewise.
35951         * sysdeps/unix/sysv/syscalls.list (setrlimit): Remove.
35952         (settimeofday): Likewise.
35954 2012-05-08  Mike Frysinger  <vapier@gentoo.org>
35956         * inet/arpa/tftp.h (struct tftphdr): Rename th_u to th_u1.  Add
35957         a struct th_u2 inside the union, and move tu_block/tu_code into
35958         a new th_u3 union of tu_block/tu_code inside of that.  Move
35959         th_data[1] into the th_u2 as tu_data[0].  Change tu_stuff[1] to
35960         tu_stuff[0].  Add a new tu_padding[4] to keep sizeof() the same.
35961         (th_block): Change to th_u1.th_u2.th_u3.tu_block.
35962         (th_code): Change to th_u1.th_u2.th_u3.tu_code.
35963         (th_stuff): Change to th_u1.tu_stuff.
35964         (th_data): Define.
35965         (th_msg): Change to th_u1.th_u2.tu_data.
35967 2012-05-07  David S. Miller  <davem@davemloft.net>
35969         * sysdeps/sparc/fpu/libm-test-ulps: Update.
35971         [BZ #14074]
35972         * sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK_CALL): New macro.
35973         (SETUP_PIC_REG): Use it.
35974         (SETUP_PIC_REG_LEAF): Use it.
35976 2012-05-07  Joseph Myers  <joseph@codesourcery.com>
35978         [BZ #13885]
35979         [BZ #13923]
35980         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
35981         USE_AS_EXPM1L.
35982         (EXPL_FINITE): Likewise.
35983         (FLDLOG): Likewise.
35984         (IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
35985         * sysdeps/i386/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
35986         e_expl.S.
35987         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
35988         USE_AS_EXPM1L.
35989         (EXPL_FINITE): Likewise.
35990         (FLDLOG): Likewise.
35991         (IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
35992         * sysdeps/x86_64/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
35993         e_expl.S.
35994         * math/libm-test.inc (expm1_test): Add more tests.  Do not disable
35995         test of -max_value argument for long double.
35996         * sysdeps/i386/fpu/libm-test-ulps: Update.
35997         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
35999 2012-05-06  David S. Miller  <davem@davemloft.net>
36001         * scripts/data/localplt-sparc-linux-gnu.data: Add '?' markers to
36002         quad soft-float symbols whose references which are compiler
36003         generated.
36004         * scripts/data/localplt-sparc64-linux-gnu.data: Likewise.
36006 2012-05-06  Joseph Myers  <joseph@codesourcery.com>
36008         [BZ #13884]
36009         [BZ #13914]
36010         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
36011         USE_AS_EXP10L.
36012         (EXPL_FINITE): Likewise.
36013         (FLDLOG): Likewise.
36014         (c0): Likewise.
36015         (c1): Likewise.
36016         (__ieee754_expl): Change to IEEE754_EXPL.  Use FLDLOG macro.
36017         Adjust comments for base varying.
36018         (__expl_finite): Change alias to EXPL_FINITE.
36019         * sysdeps/i386/fpu/e_exp10l.S: Define USE_AS_EXP10L and include
36020         e_expl.S.
36021         * sysdeps/ieee754/dbl-64/e_exp10.c: New file.
36022         * sysdeps/ieee754/ldbl-128/e_exp10l.c: Likewise.
36023         * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise.
36024         * sysdeps/x86_64/fpu/e_exp10l.S: Likewise.
36025         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
36026         USE_AS_EXP10L.
36027         (EXPL_FINITE): Likewise.
36028         (FLDLOG): Likewise.
36029         (c0): Likewise.
36030         (c1): Likewise.
36031         (__ieee754_expl): Change to IEEE754_EXPL.  Use FLDLOG macro.
36032         Adjust comments for base varying.
36033         (__expl_finite): Change alias to EXPL_FINITE.
36034         * math/libm-test.inc (exp10_test): Add more tests.  Do not disable
36035         tests for bugs.
36036         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
36038         [BZ #14064]
36039         * math/libm-test.inc (check_float_internal): Correct ulp
36040         calculation for subnormal expected results.
36042 2012-05-06  Andreas Jaeger  <aj@suse.de>
36044         * Makeconfig (+math-flags): New, set to -frounding-math.
36045         (+cflags): Add +math-flags so that all of glibc gets compiled with
36046         it.
36048         * sysdeps/x86_64/fpu/libm-test-ulps: Updated.
36050 2012-05-05  Joseph Myers  <joseph@codesourcery.com>
36052         * math/libm-test.inc (hypot_test) [TEST_DOUBLE && TEST_INLINE]:
36053         Disable one test.
36055         [BZ #13787]
36056         [BZ #13922]
36057         [BZ #14036]
36058         * sysdeps/i386/fpu/e_expl.S (csat): New constant.
36059         (__ieee754_expl): Allow for and saturate large arguments.
36060         * sysdeps/ieee754/dbl-64/w_exp.c (o_threshold): Remove variable.
36061         (u_threshold): Likewise.
36062         (__exp): Call __ieee754_exp before checking for overflow and
36063         underflow.
36064         * sysdeps/ieee754/flt-32/w_expf.c (o_threshold): Remove variable.
36065         (u_threshold): Likewise.
36066         (__expf): Call __ieee754_expf before checking for overflow and
36067         underflow.
36068         * sysdeps/ieee754/ldbl-96/w_expl.c (o_threshold): Remove variable.
36069         (u_threshold): Likewise.
36070         (__expl): Call __ieee754_expl before checking for overflow and
36071         underflow.
36072         * sysdeps/x86_64/fpu/e_expl.S (csat): New constant.
36073         (__ieee754_expl): Allow for and saturate large arguments.
36074         * math/libm-test.inc (exp_test): Add another test.  Do not allow
36075         missing overflow exception on overflow.
36076         (expm1_test): Do not allow missing overflow exception on overflow.
36078         * sysdeps/i386/fpu/e_expl.c: Move to ...
36079         * sysdeps/i386/fpu/e_expl.S: ... here.  Write directly in assembly
36080         rather than using inline asm.
36081         * sysdeps/x86_64/fpu/e_expl.c: Remove file.
36082         * sysdeps/x86_64/fpu/e_expl.S: Copy from
36083         sysdeps/i386/fpu/e_expl.S, adjusted for x86_64.
36085         * sysdeps/unix/sysv/syscalls.list (ftime): Remove.
36086         (nice): Likewise.
36087         (poll): Likewise.
36088         (signal): Likewise.
36089         (time): Likewise.
36090         (times): Likewise.
36092 2012-05-04  Joseph Myers  <joseph@codesourcery.com>
36094         * sysdeps/unix/syscalls.list (adjtime): Add entry from
36095         sysdeps/unix/common/syscalls.list.
36096         (fchmod): Likewise.
36097         (fchown): Likewise.
36098         (ftruncate): Likewise.
36099         (getrusage): Likewise.
36100         (gettimeofday): Likewise.
36101         (setpgid): Likewise.
36102         (setregid): Likewise.
36103         (setreuid): Likewise.
36104         (sigaction): Likewise.
36105         (truncate): Likewise.
36106         (vhangup): Likewise.
36107         * sysdeps/unix/common/syscalls.list: Remove file.
36108         * sysdeps/unix/bsd/Implies: Don't include unix/common.
36109         * sysdeps/unix/sysv/linux/Implies: Likewise.
36111 2012-05-04  H.J. Lu  <hongjiu.lu@intel.com>
36113         * sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: Moved to ...
36114         * sysdeps/unix/sysv/linux/x86_64/64/nptl/ld.abilist: Here.
36115         * sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist:
36116         Moved to ...
36117         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libBrokenLocale.abilist:
36118         Here.
36119         * sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: Moved
36120         to ...
36121         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libanl.abilist: Here.
36122         * sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: Moved
36123         to ...
36124         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Here.
36125         * sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: Moved
36126         to ...
36127         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist: Here.
36128         * sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: Moved
36129         to ...
36130         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libdl.abilist: Here.
36131         * sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: Moved
36132         to ...
36133         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libm.abilist: Here.
36134         * sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: Moved
36135         to ...
36136         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libnsl.abilist: Here.
36137         * sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: Moved
36138         to ...
36139         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist:
36140         Here.
36141         * sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: Moved
36142         to ...
36143         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libresolv.abilist:
36144         Here.
36145         * sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: Moved
36146         to ...
36147         * sysdeps/unix/sysv/linux/x86_64/64/nptl/librt.abilist: Here.
36148         * sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist:
36149         Moved to ...
36150         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libthread_db.abilist:
36151         Here.
36152         * sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: Moved
36153         to ...
36154         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libutil.abilist: Here.
36156 2012-05-04  Joseph Myers  <joseph@codesourcery.com>
36158         * sysdeps/unix/common/bits/dirent.h: Remove file.
36159         * sysdeps/unix/common/bits/fcntl.h: Likewise.
36161         * sysdeps/unix/bsd/bits/dirent.h: Remove file.
36162         * sysdeps/unix/bsd/bits/fcntl.h: Likewise.
36163         * sysdeps/unix/bsd/bsd4.4/isatty.c: Likewise.
36164         * sysdeps/unix/bsd/isatty.c: Likewise.
36165         * sysdeps/unix/bsd/tcdrain.c: Likewise.
36166         * sysdeps/unix/bsd/tcgetattr.c: Likewise.
36167         * sysdeps/unix/bsd/tcsetattr.c: Likewise.
36169 2012-05-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
36171         [BZ #13563]
36172         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Fix
36173         long double comparison inaccuracies.
36174         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
36175         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
36177 2012-05-04  Andreas Schwab  <schwab@linux-m68k.org>
36179         * sysdeps/unix/make-syscalls.sh: Fix check for version aliases.
36180         * sysdeps/unix/sysv/linux/i386/syscalls.list: Revert last change.
36182 2012-05-04  Joseph Myers  <joseph@codesourcery.com>
36184         [BZ #14049]
36185         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Check for trailing
36186         nonzero digits before rounding a hex value.
36187         * stdlib/tst-strtod.c (tests): Add another test.
36189 2012-05-03  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
36191         * sysdeps/s390/fpu/libm-test-ulps: Update.
36193 2012-05-03  Andreas Jaeger  <aj@suse.de>
36195         * malloc/mcheck.c (mcheck): Add barrier so that malloc/free pair
36196         does not get optimized out.
36197         (malloc_opt_barrier): New.
36199 2012-05-03  Andreas Jaeger  <aj@suse.de>
36200             Roland McGrath  <roland@hack.frob.com>
36202         * Makerules (.PRECIOUS): Add %.symlist pattern to prevent
36203         intermediate file deletion.
36204         (generated): Add .symlist files.
36206 2012-05-03  Joseph Myers  <joseph@codesourcery.com>
36208         [BZ #13775]
36209         * libio/bits/stdio-ldbl.h [__USE_XOPEN2K8] (__dprintf_chk):
36210         Redirect under this condition.
36211         [__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
36212         [__USE_GNU] (__dprintf_chk): Not under this condition.
36213         [__USE_GNU] (__vdprintf_chk): Likewise.
36214         * libio/bits/stdio2.h [__USE_XOPEN2K8] (__dprintf_chk): Declare
36215         under this condition.
36216         [__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
36217         [__USE_XOPEN2K8] (dprintf): Define under this condition.
36218         [__USE_XOPEN2K8] (vdprintf): Likewise.
36219         [__USE_GNU] (__dprintf_chk): Not under this condition.
36220         [__USE_GNU] (__vdprintf_chk): Likewise.
36221         [__USE_GNU] (dprintf): Likewise.
36222         [__USE_GNU] (vdprintf): Likewise.
36224 2012-05-03  Roland McGrath  <roland@hack.frob.com>
36226         * elf/Makefile (common-generated): Set this instead of generated for
36227         .dyn, .phdr, .jmprel files.  Remove $(common-objpfx) from the
36228         $(all-built-dso)-derived lists.
36230 2012-05-03  Andreas Jaeger  <aj@suse.de>
36232         * sysdeps/i386/fpu/libm-test-ulps: Update.
36234         * FAQ: Removed.
36235         * FAQ.in: Likewise.
36236         * scripts/gen-FAQ.pl: Likewise.
36237         * manual/install.texi (Installation): Point to online location of
36238         FAQ.
36239         * Makefile (files-for-dist): Remove FAQ.
36240         (FAQ): Remove.
36242 2012-05-02  Allan McRae  <allan@archlinux.org>
36244         * elf/Makefile: (LDFLAGS-nodel2mod3.so: Use $(no-as-needed).
36245         (LDFLAGS-reldepmod5.so): Likewise.
36246         (LDFLAGS-reldep6mod1.so): Likewise.
36247         (LDFLAGS-reldep6mod4.so): Likewise.
36248         (LDFLAGS-reldep8mod3.so): Likewise.
36249         (LDFLAGS-unload4mod1.so): Likewise.
36250         (LDFLAGS-unload4mod2.so): Likewise.
36251         (LDFLAGS-tst-initorder): Likewise.
36252         (LDFLAGS-tst-initordera2.so): Likewise.
36253         (LDFLAGS-tst-initordera3.so): Likewise.
36254         (LDFLAGS-tst-initordera4.so): Likewise.
36255         (LDFLAGS-tst-initorderb2.so): Likewise.
36256         (LDFLAGS-noload): Likewise.
36257         (LDFLAGS-next): Likewise.
36258         (LDFLAGS-order2mod1.so): Likewise.
36259         (LDFLAGS-order2mod2.so): Likewise.
36260         (LDFLAGS-tst-initorder2): Likewise.
36261         (LDFLAGS-tst-initorder2a.so): Likewise.
36262         (LDFLAGS-tst-initorder2b.so): Likewise.
36263         (LDFLAGS-tst-initorder2c.so): Likewise.
36264         * stdlib/Makefile: (LDFLAGS-tst-putenv): Likewise.
36266 2012-05-02  David S. Miller  <davem@davemloft.net>
36268         * sysdeps/sparc/fpu/libm-test-ulps: Update.
36270 2012-05-02  Paul Pluzhnikov  <ppluzhnikov@google.com>
36272         [BZ #14055]
36273         * elf/dl-sysdep.c (_dl_show_auxv): Add bounds check.
36275 2012-05-02  Andreas Jaeger  <aj@suse.de>
36277         * math/Makefile (CPPFLAGS-test-ildoubl.c): Add -frounding-math
36278         since we manipulate rounding mode.
36279         (CPPFLAGS-test-idouble.c): Likewise.
36280         (CPPFLAGS-test-ifloat.c): Likewise.
36281         (CFLAGS-test-ldouble.c): Likewise.
36282         (CFLAGS-test-double.c): Likewise.
36283         (CFLAGS-test-float.c): Likewise.
36284         (CFLAGS-test-misc.c): Likewise.
36285         (CFLAGS-test-test-fenv.c): Likewise.
36287 2012-05-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
36289         [BZ #2550]
36290         [BZ #2570]
36291         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Use floating-point
36292         comparisons to determine direction to adjust input.
36294 2012-05-01  Roland McGrath  <roland@hack.frob.com>
36296         * elf/Makefile ($(objpfx)check-localplt.out): Redirect the test's
36297         output to the target.
36299         * scripts/localplt.awk: New file.
36300         * elf/Makefile ($(objpfx)check-localplt): Target removed.
36301         (check-localplt-CFLAGS): Variable removed.
36302         ($(all-built-dso:=.jmprel)): New static pattern rule.
36303         (generated): Add those targets.
36304         (localplt-built-dso): New variable.
36305         ($(objpfx)check-localplt.out): Use the script on the .jmprel files.
36307         * elf/check-localplt.c: File removed.
36309         * scripts/check-execstack.awk: New file.
36310         * elf/Makefile ($(objpfx)check-execstack): Target removed.
36311         (check-execstack-CFLAGS): Variable removed.
36312         ($(objpfx)check-execstack.h): Target removed.
36313         ($(objpfx)execstack-default): New target.
36314         (generated): Add that instead of check-execstack.h.
36315         ($(all-built-dso:=.phdr)): New static pattern rule.
36316         (generated): Add those targets.
36317         * elf/check-execstack.c: File removed.
36319         * scripts/check-textrel.awk: New file.
36320         * elf/Makefile ($(objpfx)check-textrel): Target removed.
36321         (check-textrel-CFLAGS): Variable removed.
36322         (all-built-dso): Use := to define.o
36323         ($(all-built-dso:=.dyn)): New static pattern rule.
36324         (generated): Add those targets.
36325         ($(objpfx)check-textrel.out): Use the script on the .dyn files.
36326         * config.make.in (READELF): New substituted variable.
36327         * elf/check-textrel.c: File removed.
36329 2012-05-01  Joseph Myers  <joseph@codesourcery.com>
36331         * conform/data/assert.h-data [ISO || ISO99 || ISO11] (*_t): Do not
36332         allow.
36333         * conform/data/ctype.h-data [C99-based standards] (isblank):
36334         Expect function.
36335         (is*): Change to is[abcdefghijklmnopqrstuvwxyz]*.
36336         (to*): Change to to[abcdefghijklmnopqrstuvwxyz]*.
36337         [ISO || ISO99 || ISO11] (*_t): Do not allow.
36338         * conform/data/errno.h-data (EDOM): Use macro-int-constant.
36339         Specify type.  Require positive value.
36340         (EILSEQ): Likewise.
36341         (ERANGE): Likewise.
36342         [ISO || POSIX] (EILSEQ): Do not expect.
36343         [!ISO && !ISO99 && !ISO11] (E2BIG): Use macro-int-constant.
36344         Specify type.  Require positive value.
36345         [!ISO && !ISO99 && !ISO11] (EACCES): Likewise.
36346         [!ISO && !ISO99 && !ISO11] (EADDRINUSE): Likewise.
36347         [!ISO && !ISO99 && !ISO11] (EADDRNOTAVAIL): Likewise.
36348         [!ISO && !ISO99 && !ISO11] (EAFNOSUPPORT): Likewise.
36349         [!ISO && !ISO99 && !ISO11] (EAGAIN): Likewise.
36350         [!ISO && !ISO99 && !ISO11] (EALREADY): Likewise.
36351         [!ISO && !ISO99 && !ISO11] (EBADF): Likewise.
36352         [!ISO && !ISO99 && !ISO11] (EBADMSG): Likewise.
36353         [!ISO && !ISO99 && !ISO11] (EBUSY): Likewise.
36354         [!ISO && !ISO99 && !ISO11] (ECANCELED): Likewise.
36355         [!ISO && !ISO99 && !ISO11] (ECHILD): Likewise.
36356         [!ISO && !ISO99 && !ISO11] (ECONNABORTED): Likewise.
36357         [!ISO && !ISO99 && !ISO11] (ECONNREFUSED): Likewise.
36358         [!ISO && !ISO99 && !ISO11] (ECONNRESET): Likewise.
36359         [!ISO && !ISO99 && !ISO11] (EDEADLK): Likewise.
36360         [!ISO && !ISO99 && !ISO11] (EDESTADDRREQ): Likewise.
36361         [!ISO && !ISO99 && !ISO11] (EDQUOT): Likewise.
36362         [!ISO && !ISO99 && !ISO11] (EEXIST): Likewise.
36363         [!ISO && !ISO99 && !ISO11] (EFAULT): Likewise.
36364         [!ISO && !ISO99 && !ISO11] (EFBIG): Likewise.
36365         [!ISO && !ISO99 && !ISO11] (EHOSTUNREACH): Likewise.
36366         [!ISO && !ISO99 && !ISO11] (EIDRM): Likewise.
36367         [!ISO && !ISO99 && !ISO11] (EINPROGRESS): Likewise.
36368         [!ISO && !ISO99 && !ISO11] (EINTR): Likewise.
36369         [!ISO && !ISO99 && !ISO11] (EINVAL): Likewise.
36370         [!ISO && !ISO99 && !ISO11] (EIO): Likewise.
36371         [!ISO && !ISO99 && !ISO11] (EISCONN): Likewise.
36372         [!ISO && !ISO99 && !ISO11] (EISDIR): Likewise.
36373         [!ISO && !ISO99 && !ISO11] (ELOOP): Likewise.
36374         [!ISO && !ISO99 && !ISO11] (EMFILE): Likewise.
36375         [!ISO && !ISO99 && !ISO11] (EMLINK): Likewise.
36376         [!ISO && !ISO99 && !ISO11] (EMSGSIZE): Likewise.
36377         [!ISO && !ISO99 && !ISO11] (EMULTIHOP): Likewise.
36378         [!ISO && !ISO99 && !ISO11] (ENAMETOOLONG): Likewise.
36379         [!ISO && !ISO99 && !ISO11] (ENETDOWN): Likewise.
36380         [!ISO && !ISO99 && !ISO11] (ENETUNREACH): Likewise.
36381         [!ISO && !ISO99 && !ISO11] (ENFILE): Likewise.
36382         [!ISO && !ISO99 && !ISO11] (ENOBUFS): Likewise.
36383         [!ISO && !ISO99 && !ISO11] (ENODATA): Likewise.
36384         [!ISO && !ISO99 && !ISO11] (ENODEV): Likewise.
36385         [!ISO && !ISO99 && !ISO11] (ENOENT): Likewise.
36386         [!ISO && !ISO99 && !ISO11] (ENOEXEC): Likewise.
36387         [!ISO && !ISO99 && !ISO11] (ENOLCK): Likewise.
36388         [!ISO && !ISO99 && !ISO11] (ENOLINK): Likewise.
36389         [!ISO && !ISO99 && !ISO11] (ENOMEM): Likewise.
36390         [!ISO && !ISO99 && !ISO11] (ENOMSG): Likewise.
36391         [!ISO && !ISO99 && !ISO11] (ENOPROTOOPT): Likewise.
36392         [!ISO && !ISO99 && !ISO11] (ENOSPC): Likewise.
36393         [!ISO && !ISO99 && !ISO11] (ENOSR): Likewise.
36394         [!ISO && !ISO99 && !ISO11] (ENOSTR): Likewise.
36395         [!ISO && !ISO99 && !ISO11] (ENOSYS): Likewise.
36396         [!ISO && !ISO99 && !ISO11] (ENOTCONN): Likewise.
36397         [!ISO && !ISO99 && !ISO11] (ENOTDIR): Likewise.
36398         [!ISO && !ISO99 && !ISO11] (ENOTEMPTY): Likewise.
36399         [!ISO && !ISO99 && !ISO11] (ENOTSOCK): Likewise.
36400         [!ISO && !ISO99 && !ISO11] (ENOTSUP): Likewise.
36401         [!ISO && !ISO99 && !ISO11] (ENOTTY): Likewise.
36402         [!ISO && !ISO99 && !ISO11] (ENXIO): Likewise.
36403         [!ISO && !ISO99 && !ISO11] (EOPNOTSUPP): Likewise.
36404         [!ISO && !ISO99 && !ISO11] (EOVERFLOW): Likewise.
36405         [!ISO && !ISO99 && !ISO11] (EPERM): Likewise.
36406         [!ISO && !ISO99 && !ISO11] (EPIPE): Likewise.
36407         [!ISO && !ISO99 && !ISO11] (EPROTO): Likewise.
36408         [!ISO && !ISO99 && !ISO11] (EPROTONOSUPPORT): Likewise.
36409         [!ISO && !ISO99 && !ISO11] (EPROTOTYPE): Likewise.
36410         [!ISO && !ISO99 && !ISO11] (EROFS): Likewise.
36411         [!ISO && !ISO99 && !ISO11] (ESPIPE): Likewise.
36412         [!ISO && !ISO99 && !ISO11] (ESRCH): Likewise.
36413         [!ISO && !ISO99 && !ISO11] (ESTALE): Likewise.
36414         [!ISO && !ISO99 && !ISO11] (ETIME): Likewise.
36415         [!ISO && !ISO99 && !ISO11] (ETIMEDOUT): Likewise.
36416         [!ISO && !ISO99 && !ISO11] (ETXTBSY): Likewise.
36417         [!ISO && !ISO99 && !ISO11] (EWOULDBLOCK): Likewise.
36418         [!ISO && !ISO99 && !ISO11] (EXDEV): Likewise.
36419         [XOPEN2K8 || defined POSIX2008] (ENOTRECOVERABLE): Likewise.
36420         [XOPEN2K8 || defined POSIX2008] (EOWNERDEAD): Likewise.
36421         * conform/data/float.h-data (FLT_RADIX): Use macro-int-constant.
36422         Require >= 2.
36423         (FLT_ROUNDS): Expect as macro, not constant.
36424         (FLT_MANT_DIG): Use macro-int-constant.
36425         (DBL_MANT_DIG): Likewise.
36426         (LDBL_MANT_DIG): Likewise.
36427         (FLT_DIG): Likewise.
36428         (DBL_DIG): Likewise.
36429         (LDBL_DIG): Likewise.
36430         (FLT_MIN_EXP): Use macro-int-constant.  Require < 0.
36431         (DBL_MIN_EXP): Likewise.
36432         (LDBL_MIN_EXP): Likewise.
36433         (FLT_MAX_EXP): Use macro-int-constant.
36434         (DBL_MAX_EXP): Likewise.
36435         (LDBL_MAX_EXP): Likewise.
36436         (FLT_MAX_10_EXP): Likewise.
36437         (DBL_MAX_10_EXP): Likewise.
36438         (LDBL_MAX_10_EXP): Likewise.
36439         (FLT_MAX): Use macro-constant.
36440         (DBL_MAX): Likewise.
36441         (LDBL_MAX): Likewise.
36442         (FLT_EPSILON): Use macro-constant.  Give upper bound.
36443         (DBL_EPSILON): Likewise.
36444         (LDBL_EPSILON): Likewise.
36445         (FLT_MIN): Likewise.
36446         (DBL_MIN): Likewise.
36447         (LDBL_MIN): Likewise.
36448         [C99-based standards] (DECIMAL_DIG): Use macro-int-constant.
36449         [C99-based standards] (FLT_EVAL_METHOD): Likewise.
36450         [ISO11] (DBL_HAS_SUBNORM): Use macro-int-constant.
36451         [ISO11] (FLT_HAS_SUBNORM): Likewise.
36452         [ISO11] (LDBL_HAS_SUBNORM): Likewise.
36453         [ISO11] (DBL_DECIMAL_DIG): Likewise.
36454         [ISO11] (FLT_DECIMAL_DIG): Likewise.
36455         [ISO11] (LDBL_DECIMAL_DIG): Likewise.
36456         [ISO11] (DBL_TRUE_MIN): Use macro-constant.
36457         [ISO11] (FLT_TRUE_MIN): Likewise.
36458         [ISO11] (LDBL_TRUE_MIN): Likewise.
36459         [ISO || ISO99 || ISO11] (*_t): Do not allow.
36460         * conform/data/limits.h-data (CHAR_BIT): Use macro-int-constant.
36461         (SCHAR_MIN): Use macro-int-constant.  Specify type.
36462         (SCHAR_MAX): Likewise.
36463         (UCHAR_MAX): Likewise.
36464         (CHAR_MIN): Likewise.
36465         (CHAR_MAX): Likewise.
36466         (MB_LEN_MAX): Use macro-int-constant.
36467         (SHRT_MIN): Use macro-int-constant.  Specify type.
36468         (SHRT_MAX): Likewise.
36469         (USHRT_MAX): Likewise.
36470         (INT_MAX): Likewise.
36471         (INT_MIN): Use macro-int-constant.  Specify type.  Make upper
36472         bound negative.
36473         (UINT_MAX): Use macro-int-constant.  Specify type.  Suffix lower
36474         bound with "U".
36475         (LONG_MAX): Use macro-int-constant.  Specify type.  Suffix lower
36476         bound with "L".
36477         (LONG_MIN): Use macro-int-constant.  Specify type.  Make upper
36478         bound negative.  Suffix upper bound with "L".
36479         (ULONG_MAX): Use macro-int-constant.  Specify type.  Suffix lower
36480         bound with "UL".
36481         [C99-based standards] (LLONG_MIN): Use macro-int-constant.
36482         Specify type.
36483         [C99-based standards] (LLONG_MAX): Likewise.
36484         [C99-based standards] (ULLONG_MAX): Likewise.
36485         * conform/data/stddef.h-data (NULL): Use macro-constant.  Require
36486         == 0.
36487         [ISO11] (max_align_t): Require type.
36488         [ISO || ISO99 || ISO11] (*_t): Do not allow.
36490         * conform/conformtest.pl ($CFLAGS_namespace): Define separately
36491         from $CFLAGS, without defining away __attribute__ calls.
36492         (checknamespace): Use $CFLAGS_namespace.
36494         * conform/conformtest.pl (@keywords): Only include C99 keywords
36495         for standards based on C99 or C11.
36497         * conform/data/iso646.h-data [ISO || POSIX || XPG3 || XPG4]:
36498         Disable tests.
36499         * conform/data/stdint.h-data [ISO || POSIX || XPG3 || XPG4 ||
36500         UNIX98]: Likewise.
36502         * conform/conformtest.pl: Handle "macro-int-constant" and test for
36503         usability of symbols in #if.
36505         * conform/conformtest.pl: If macro or constant types start
36506         "promoted:", expect the symbol to be of the following type
36507         promoted by the integer promotions.
36509         * conform/conformtest.pl: Parse all "constant" and "macro" lines
36510         in one place.  Also handle "macro-constant".
36512         * conform/conformtest.pl: Only accept expected macro values with
36513         "==".  Parse all "macro" lines in one place.
36514         * conform/data/stdlib.h-data: Use "==" form on "macro" lines.
36516         * conform/conformtest.pl: Handle braced types on "constant" lines
36517         instead of handling "typed-constant".
36518         * conform/data/signal.h-data: Use "constant" instead of
36519         "typed-constant".
36521         * conform/conformtest.pl: Handle "optional-" at start of lines in
36522         one place rather than duplicating several cases.  Handle each
36523         format of "macro" line with initial "optional-".
36525         * conform/conformtest.pl: Only accept expected constant or
36526         optional-constant values with "==".  Parse all "constant" lines in
36527         one place.  Parse all "optional-constant" lines in one place.
36528         * conform/data/cpio.h-data: Use "==" form on "constant" lines.
36529         * conform/data/fmtmsg.h-data: Likewise.
36530         * conform/data/netinet/in.h-data: Likewise.
36531         * conform/data/tar.h-data: Likewise.
36532         * conform/data/limits.h-data: Use "==" form on "constant" and
36533         "optional-constant" lines.
36535         * conform/conformtest.pl: Use -ansi for XPG3, XPG4 and UNIX98.
36536         Use -std=c99 for XOPEN2K.
36537         (@knownproblems): Remove.
36538         (newtoken): Don't check %isknown.
36540         * conform/data/math.h-data [XPG3 || XPG4 || UNIX98] (fpclassify):
36541         Do not expect macro.
36542         [XPG3 || XPG4 || UNIX98] (isfinite): Likewise.
36543         [XPG3 || XPG4 || UNIX98] (isinf): Likewise.
36544         [XPG3 || XPG4 || UNIX98] (isnan): Likewise.
36545         [XPG3 || XPG4 || UNIX98] (isnormal): Likewise.
36546         [XPG3 || XPG4 || UNIX98] (signbit): Likewise.
36547         [XPG3 || XPG4 || UNIX98] (isgreater): Likewise.
36548         [XPG3 || XPG4 || UNIX98] (isgreaterequal): Likewise.
36549         [XPG3 || XPG4 || UNIX98] (isless): Likewise.
36550         [XPG3 || XPG4 || UNIX98] (islessequal): Likewise.
36551         [XPG3 || XPG4 || UNIX98] (islessgreater): Likewise.
36552         [XPG3 || XPG4 || UNIX98] (isunordered): Likewise.
36553         [XPG3 || XPG4 || UNIX98] (isnan): Expect as function.
36554         [XPG3 || XPG4 || UNIX98] (HUGE_VALF): Do not expect.
36555         [XPG3 || XPG4 || UNIX98] (HUGE_VALL): Likewise.
36556         [XPG3 || XPG4 || UNIX98] (INFINITY): Likewise.
36557         [XPG3 || XPG4 || UNIX98] (NAN): Likewise.
36558         [XPG3 || XPG4 || UNIX98] (FP_INFINITE): Likewise.
36559         [XPG3 || XPG4 || UNIX98] (FP_NAN): Likewise.
36560         [XPG3 || XPG4 || UNIX98] (FP_NORMAL): Likewise.
36561         [XPG3 || XPG4 || UNIX98] (FP_SUBNORMAL): Likewise.
36562         [XPG3 || XPG4 || UNIX98] (FP_ZERO): Likewise.
36563         [XPG3 || XPG4 || UNIX98] (FP_FAST_FMA): Likewise.
36564         [XPG3 || XPG4 || UNIX98] (FP_FAST_FMAF): Likewise.
36565         [XPG3 || XPG4 || UNIX98] (FP_FAST_FMAL): Likewise.
36566         [XPG3 || XPG4 || UNIX98] (FP_ILOGB0): Likewise.
36567         [XPG3 || XPG4 || UNIX98] (FP_ILOGBNAN): Likewise.
36568         [XPG3 || XPG4 || UNIX98] (copysign): Likewise.
36569         [XPG3 || XPG4 || UNIX98] (exp2): Likewise.
36570         [XPG3 || XPG4 || UNIX98] (log2): Likewise.
36571         [XPG3 || XPG4 || UNIX98] (tgama): Likewise.
36572         [XPG3] (acosh): Likewise.
36573         [XPG3] (asinh): Likewise.
36574         [XPG3] (atanh): Likewise.
36575         [XPG3] (cbrt): Likewise.
36576         [XPG3] (expm1): Likewise.
36577         [XPG3] (ilogb): Likewise.
36578         [XPG3] (log1p): Likewise.
36579         [XPG3] (logb): Likewise.
36580         [XPG3] (nextafter): Likewise.
36581         [XPG3 || XPG4 || UNIX98] (nexttoward): Likewise.
36582         [XPG3 || XPG4 || UNIX98] (nearbyint): Likewise.
36583         [XPG3] (remainder): Likewise.
36584         [XPG3] (rint): Likewise.
36585         [XPG3 || XPG4 || UNIX98] (round): Likewise.
36586         [XPG3 || XPG4 || UNIX98] (trunc): Likewise.
36587         [XPG3 || XPG4 || UNIX98] (lrint): Likewise.
36588         [XPG3 || XPG4 || UNIX98] (llrint): Likewise.
36589         [XPG3 || XPG4 || UNIX98] (lround): Likewise.
36590         [XPG3 || XPG4 || UNIX98] (llround): Likewise.
36591         [XPG3 || XPG4 || UNIX98] (remquo): Likewise.
36592         [UNIX98 || XOPEN2K] (scalb): Expect.
36593         [XPG3 || XPG4 || UNIX98] (scalbn): Do not expect.
36594         [XPG3 || XPG4 || UNIX98] (scalbln): Likewise.
36595         [XPG3 || XPG4 || UNIX98] (fdim): Likewise.
36596         [XPG3 || XPG4 || UNIX98] (fmax): Likewise.
36597         [XPG3 || XPG4 || UNIX98] (fmin): Likewise.
36598         [XPG3 || XPG4 || UNIX98] (fma): Likewise.
36599         [XPG3 || XPG4 || UNIX98] (nan): Likewise.
36600         [XPG3 || XPG4 || UNIX98] (acosf): Likewise.
36601         [XPG3 || XPG4 || UNIX98] (asinf): Likewise.
36602         [XPG3 || XPG4 || UNIX98] (atanf): Likewise.
36603         [XPG3 || XPG4 || UNIX98] (atan2f): Likewise.
36604         [XPG3 || XPG4 || UNIX98] (ceilf): Likewise.
36605         [XPG3 || XPG4 || UNIX98] (copysignf): Likewise.
36606         [XPG3 || XPG4 || UNIX98] (cosf): Likewise.
36607         [XPG3 || XPG4 || UNIX98] (coshf): Likewise.
36608         [XPG3 || XPG4 || UNIX98] (expf): Likewise.
36609         [XPG3 || XPG4 || UNIX98] (exp2f): Likewise.
36610         [XPG3 || XPG4 || UNIX98] (fabsf): Likewise.
36611         [XPG3 || XPG4 || UNIX98] (floorf): Likewise.
36612         [XPG3 || XPG4 || UNIX98] (fmodf): Likewise.
36613         [XPG3 || XPG4 || UNIX98] (frexpf): Likewise.
36614         [XPG3 || XPG4 || UNIX98] (ldexpf): Likewise.
36615         [XPG3 || XPG4 || UNIX98] (logf): Likewise.
36616         [XPG3 || XPG4 || UNIX98] (log10f): Likewise.
36617         [XPG3 || XPG4 || UNIX98] (log2f): Likewise.
36618         [XPG3 || XPG4 || UNIX98] (modff): Likewise.
36619         [XPG3 || XPG4 || UNIX98] (powf): Likewise.
36620         [XPG3 || XPG4 || UNIX98] (sinf): Likewise.
36621         [XPG3 || XPG4 || UNIX98] (sinhf): Likewise.
36622         [XPG3 || XPG4 || UNIX98] (sqrtf): Likewise.
36623         [XPG3 || XPG4 || UNIX98] (tanf): Likewise.
36624         [XPG3 || XPG4 || UNIX98] (tanhf): Likewise.
36625         [XPG3 || XPG4 || UNIX98] (erff): Likewise.
36626         [XPG3 || XPG4 || UNIX98] (erfcf): Likewise.
36627         [XPG3 || XPG4 || UNIX98] (gammaf): Likewise.
36628         [XPG3 || XPG4 || UNIX98] (hypotf): Likewise.
36629         [XPG3 || XPG4 || UNIX98] (j0f): Likewise.
36630         [XPG3 || XPG4 || UNIX98] (j1f): Likewise.
36631         [XPG3 || XPG4 || UNIX98] (jnf): Likewise.
36632         [XPG3 || XPG4 || UNIX98] (lgammaf): Likewise.
36633         [XPG3 || XPG4 || UNIX98] (tgammaf): Likewise.
36634         [XPG3 || XPG4 || UNIX98] (y0f): Likewise.
36635         [XPG3 || XPG4 || UNIX98] (y1f): Likewise.
36636         [XPG3 || XPG4 || UNIX98] (ynf): Likewise.
36637         [XPG3 || XPG4 || UNIX98] (acoshf): Likewise.
36638         [XPG3 || XPG4 || UNIX98] (asinhf): Likewise.
36639         [XPG3 || XPG4 || UNIX98] (atanhf): Likewise.
36640         [XPG3 || XPG4 || UNIX98] (cbrtf): Likewise.
36641         [XPG3 || XPG4 || UNIX98] (expm1f): Likewise.
36642         [XPG3 || XPG4 || UNIX98] (ilogbf): Likewise.
36643         [XPG3 || XPG4 || UNIX98] (log1pf): Likewise.
36644         [XPG3 || XPG4 || UNIX98] (logbf): Likewise.
36645         [XPG3 || XPG4 || UNIX98] (nextafterf): Likewise.
36646         [XPG3 || XPG4 || UNIX98] (nexttowardf): Likewise.
36647         [XPG3 || XPG4 || UNIX98] (nearbyintf): Likewise.
36648         [XPG3 || XPG4 || UNIX98] (remainderf): Likewise.
36649         [XPG3 || XPG4 || UNIX98] (rintf): Likewise.
36650         [XPG3 || XPG4 || UNIX98] (roundf): Likewise.
36651         [XPG3 || XPG4 || UNIX98] (truncf): Likewise.
36652         [XPG3 || XPG4 || UNIX98] (lrintf): Likewise.
36653         [XPG3 || XPG4 || UNIX98] (llrintf): Likewise.
36654         [XPG3 || XPG4 || UNIX98] (lroundf): Likewise.
36655         [XPG3 || XPG4 || UNIX98] (llroundf): Likewise.
36656         [XPG3 || XPG4 || UNIX98] (remquof): Likewise.
36657         [XPG3 || XPG4 || UNIX98] (scalbf): Likewise.
36658         [XPG3 || XPG4 || UNIX98] (scalbnf): Likewise.
36659         [XPG3 || XPG4 || UNIX98] (scalblnf): Likewise.
36660         [XPG3 || XPG4 || UNIX98] (fdimf): Likewise.
36661         [XPG3 || XPG4 || UNIX98] (fmaxf): Likewise.
36662         [XPG3 || XPG4 || UNIX98] (fminf): Likewise.
36663         [XPG3 || XPG4 || UNIX98] (fmaf): Likewise.
36664         [XPG3 || XPG4 || UNIX98] (nanf): Likewise.
36665         [XPG3 || XPG4 || UNIX98] (acosl): Likewise.
36666         [XPG3 || XPG4 || UNIX98] (asinl): Likewise.
36667         [XPG3 || XPG4 || UNIX98] (atanl): Likewise.
36668         [XPG3 || XPG4 || UNIX98] (atan2l): Likewise.
36669         [XPG3 || XPG4 || UNIX98] (ceill): Likewise.
36670         [XPG3 || XPG4 || UNIX98] (copysignl): Likewise.
36671         [XPG3 || XPG4 || UNIX98] (cosl): Likewise.
36672         [XPG3 || XPG4 || UNIX98] (coshl): Likewise.
36673         [XPG3 || XPG4 || UNIX98] (expl): Likewise.
36674         [XPG3 || XPG4 || UNIX98] (exp2l): Likewise.
36675         [XPG3 || XPG4 || UNIX98] (fabsl): Likewise.
36676         [XPG3 || XPG4 || UNIX98] (floorl): Likewise.
36677         [XPG3 || XPG4 || UNIX98] (fmodl): Likewise.
36678         [XPG3 || XPG4 || UNIX98] (frexpl): Likewise.
36679         [XPG3 || XPG4 || UNIX98] (ldexpl): Likewise.
36680         [XPG3 || XPG4 || UNIX98] (logl): Likewise.
36681         [XPG3 || XPG4 || UNIX98] (log10l): Likewise.
36682         [XPG3 || XPG4 || UNIX98] (log2l): Likewise.
36683         [XPG3 || XPG4 || UNIX98] (modfl): Likewise.
36684         [XPG3 || XPG4 || UNIX98] (powl): Likewise.
36685         [XPG3 || XPG4 || UNIX98] (sinl): Likewise.
36686         [XPG3 || XPG4 || UNIX98] (sinhl): Likewise.
36687         [XPG3 || XPG4 || UNIX98] (sqrtl): Likewise.
36688         [XPG3 || XPG4 || UNIX98] (tanl): Likewise.
36689         [XPG3 || XPG4 || UNIX98] (tanhl): Likewise.
36690         [XPG3 || XPG4 || UNIX98] (erfl): Likewise.
36691         [XPG3 || XPG4 || UNIX98] (erfcl): Likewise.
36692         [XPG3 || XPG4 || UNIX98] (gammal): Likewise.
36693         [XPG3 || XPG4 || UNIX98] (hypotl): Likewise.
36694         [XPG3 || XPG4 || UNIX98] (j0l): Likewise.
36695         [XPG3 || XPG4 || UNIX98] (j1l): Likewise.
36696         [XPG3 || XPG4 || UNIX98] (jnl): Likewise.
36697         [XPG3 || XPG4 || UNIX98] (lgammal): Likewise.
36698         [XPG3 || XPG4 || UNIX98] (tgammal): Likewise.
36699         [XPG3 || XPG4 || UNIX98] (y0l): Likewise.
36700         [XPG3 || XPG4 || UNIX98] (y1l): Likewise.
36701         [XPG3 || XPG4 || UNIX98] (ynl): Likewise.
36702         [XPG3 || XPG4 || UNIX98] (acoshl): Likewise.
36703         [XPG3 || XPG4 || UNIX98] (asinhl): Likewise.
36704         [XPG3 || XPG4 || UNIX98] (atanhl): Likewise.
36705         [XPG3 || XPG4 || UNIX98] (cbrtl): Likewise.
36706         [XPG3 || XPG4 || UNIX98] (expm1l): Likewise.
36707         [XPG3 || XPG4 || UNIX98] (ilogbl): Likewise.
36708         [XPG3 || XPG4 || UNIX98] (log1pl): Likewise.
36709         [XPG3 || XPG4 || UNIX98] (logbl): Likewise.
36710         [XPG3 || XPG4 || UNIX98] (nextafterl): Likewise.
36711         [XPG3 || XPG4 || UNIX98] (nexttowardl): Likewise.
36712         [XPG3 || XPG4 || UNIX98] (nearbyintl): Likewise.
36713         [XPG3 || XPG4 || UNIX98] (remainderl): Likewise.
36714         [XPG3 || XPG4 || UNIX98] (rintl): Likewise.
36715         [XPG3 || XPG4 || UNIX98] (roundl): Likewise.
36716         [XPG3 || XPG4 || UNIX98] (truncl): Likewise.
36717         [XPG3 || XPG4 || UNIX98] (lrintl): Likewise.
36718         [XPG3 || XPG4 || UNIX98] (llrintl): Likewise.
36719         [XPG3 || XPG4 || UNIX98] (lroundl): Likewise.
36720         [XPG3 || XPG4 || UNIX98] (llroundl): Likewise.
36721         [XPG3 || XPG4 || UNIX98] (remquol): Likewise.
36722         [XPG3 || XPG4 || UNIX98] (scalbl): Likewise.
36723         [XPG3 || XPG4 || UNIX98] (scalbnl): Likewise.
36724         [XPG3 || XPG4 || UNIX98] (scalblnl): Likewise.
36725         [XPG3 || XPG4 || UNIX98] (fdiml): Likewise.
36726         [XPG3 || XPG4 || UNIX98] (fmaxl): Likewise.
36727         [XPG3 || XPG4 || UNIX98] (fminl): Likewise.
36728         [XPG3 || XPG4 || UNIX98] (fmal): Likewise.
36729         [XPG3 || XPG4 || UNIX98] (nanl): Likewise.
36731         * conform/conformtest.pl: Define _XOPEN_SOURCE as well as
36732         _XOPEN_SOURCE_EXTENDED for XPG4.
36734         * conform/conformtest.pl: Handle "symbol" lines for allow-header.
36736         * Makeconfig (localtime): Remove variable.
36737         (inst_localtime-file): Likewise.
36739 2012-05-01  Andreas Schwab  <schwab@linux-m68k.org>
36741         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/ld.abilist:
36742         Update.
36743         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
36744         Update.
36745         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libm.abilist:
36746         Update.
36747         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
36748         Update.
36749         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/librt.abilist:
36750         Update.
36751         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist:
36752         Update.
36753         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
36754         Update.
36755         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist:
36756         Update.
36757         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
36758         Update.
36760 2012-05-01  Joseph Myers  <joseph@codesourcery.com>
36762         [BZ #2550]
36763         [BZ #2570]
36764         * math/s_nexttowardf.c (__nexttowardf): Use floating-point
36765         comparisons to determine direction to adjust input.
36766         * sysdeps/i386/fpu/s_nexttoward.c (__nexttoward): Likewise.
36767         * sysdeps/i386/fpu/s_nexttowardf.c(__nexttowardf): Likewise.
36768         * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward):
36769         Likewise.
36770         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c (__nexttowardf):
36771         Likewise.
36772         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
36773         Likewise.
36774         * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
36775         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c (__nexttowardf):
36776         Likewise.
36777         * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c (__nldbl_nexttowardf):
36778         Likewise.
36779         * math/libm-test.inc (nexttoward_test): Add more tests.
36781 2012-05-01  Andreas Schwab  <schwab@linux-m68k.org>
36783         [BZ #14040]
36784         * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S (nearbyintl): Define
36785         in version GLIBC_2.1, not GLIBC_2.0.
36786         * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S (nearbyintl):
36787         Likewise.
36789 2012-04-30  Joseph Myers  <joseph@codesourcery.com>
36791         [BZ #13942]
36792         * sysdeps/i386/fpu/e_acos.S (__ieee754_acos): Calculate 1 - x^2 as
36793         (1 - x) * (1 + x).
36794         * sysdeps/i386/fpu/e_acosl.c (__ieee754_acosl): Likewise.
36795         * sysdeps/i386/fpu/e_asin.S (__ieee754_asin): Likewise.
36796         * math/libm-test.inc (acos_test): Add more tests.
36797         (asin_test): Likewise.
36798         * sysdeps/i386/fpu/libm-test-ulps: Update.
36799         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
36801         [BZ #14034]
36802         * sysdeps/i386/fpu/e_acos.S (__ieee754_acos): Take absolute value
36803         of square root.
36804         * sysdeps/i386/fpu/e_acosf.S (__ieee754_acosf): Likewise.
36805         * sysdeps/i386/fpu/e_acosl.c (__ieee754_acosl): Likewise.
36806         * math/libm-test.inc (acos_test_tonearest): New function.
36807         (acos_test_towardzero): Likewise.
36808         (acos_test_downward): Likewise.
36809         (acos_test_upward): Likewise.
36810         (asin_test_tonearest): Likewise.
36811         (asin_test_towardzero): Likewise.
36812         (asin_test_downward): Likewise.
36813         (asin_test_upward): Likewise.
36814         (main): Call the new functions.
36815         * sysdeps/i386/fpu/libm-test-ulps: Update.
36816         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
36818         [BZ #13884]
36819         [BZ #13924]
36820         * math/e_exp10.c: Include <float.h>.
36821         (__ieee754_exp10): Handle underflow here rather than multiplying
36822         large negative argument by M_LN10.
36823         * math/e_exp10f.c (__ieee754_exp10f): Call __ieee754_exp instead
36824         of __ieee754_expf.
36825         * math/e_exp10l.c: Include <float.h>.
36826         (__ieee754_exp10l): Handle underflow here rather than multiplying
36827         large negative argument by M_LN10l.
36828         * math/libm-test.inc (exp10_test): Add another test.  Do not allow
36829         spurious overflow exception on underflow.
36831 2012-04-29  Marek Polacek  <polacek@redhat.com>
36833         * misc/sys/cdefs.h (__attribute_artificial__): New macro.
36834         (__fortify_function): New macro.
36835         (__extern_always_inline): Don't use __attribute__ ((__artificial__)).
36836         * libio/bits/stdio-ldbl.h: Use __fortify_function in place of
36837         __extern_always_inline.
36838         * libio/bits/stdio2.h: Likewise.
36839         * libio/bits/stdio.h: Likewise.
36840         * string/string.h: Likewise.
36841         * string/bits/string3.h: Likewise.
36842         * include/stdio.h: Likewise.
36843         * stdlib/bits/stdlib.h: Likewise.
36844         * stdlib/stdlib.h: Likewise.
36845         * rt/bits/mqueue2.h: Likewise.
36846         * rt/mqueue.h: Likewise.
36847         * posix/bits/unistd.h: Likewise.
36848         * posix/unistd.h: Likewise.
36849         * io/bits/poll2.h: Likewise.
36850         * io/bits/fcntl2.h: Likewise.
36851         * io/fcntl.h: Likewise.
36852         * io/sys/poll.h: Likewise.
36853         * misc/bits/syslog.h: Likewise.
36854         * misc/bits/syslog-ldbl.h: Likewise.
36855         * misc/sys/syslog.h: Likewise.
36856         * socket/bits/socket2.h: Likewise.
36857         * socket/sys/socket.h: Likewise.
36858         * debug/tst-chk1.c: Likewise.
36859         * wcsmbs/bits/wchar2.h: Likewise.
36860         * wcsmbs/bits/wchar-ldbl.h: Likewise.
36861         * wcsmbs/wchar.h: Likewise.
36863 2012-04-29  Andreas Jaeger  <aj@suse.de>
36865         * Makerules (tests): Remove enable-check-abi protection.
36866         (check-abi-warn): Remove.
36867         (check-abi-%): Remove check-abi-warn usage.
36869         * configure.in: Remove check-abi configure option.
36870         * configure: Regenerated.
36871         * config.make.in (enable-check-abi): Remove.
36873 2012-04-28  Andreas Schwab  <schwab@linux-m68k.org>
36875         [BZ #14033]
36876         * math/bits/math-finite.h [__NO_LONG_DOUBLE_MATH]: Redirect long
36877         double functions to double *_finite functions.
36879         [BZ #13941]
36880         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c
36881         (__mpn_extract_long_double): Use DBL_MIN_EXP instead of
36882         LDBL_MIN_EXP.
36883         * stdio-common/Makefile (tests): Add tst-sprintf3.
36884         * stdio-common/tst-sprintf3.c: New file.
36886         * elf/Makefile ($(objpfx)tst-leaks1-mem, $(objpfx)noload-mem)
36887         ($(objpfx)tst-unused-dep.out): Don't run when cross-compiling.
36889 2012-04-28  Joseph Myers  <joseph@codesourcery.com>
36891         * conform/conformtest.pl: Remove duplicate typed-constant
36892         handling.
36894 2012-04-28  David S. Miller  <davem@davemloft.net>
36896         * Makerules (%.abilist): Add vpath on sysdep_dirs.
36897         (check-abi-%): Remove AWK script prerequisite and explicit
36898         abilist directory.
36899         (check-abi): Rewrite to just diff the symlist with the abilist.
36900         (config-tls, config-abi-config): Delete, no longer used.
36901         (update-abi-%): Remove AWK script and explicit abilist directory.
36902         (update-abi): Rewrite to simply compare and conditionally copy the
36903         symlist and the sysdep abilist file.  Remove update-abi-config
36904         checks.
36905         * abilist/ld.abilist: Remove.
36906         * abilist/libBrokenLocale.abilist: Remove.
36907         * abilist/libanl.abilist: Remove.
36908         * abilist/libcrypt.abilist: Remove.
36909         * abilist/libdl.abilist: Remove.
36910         * abilist/librt.abilist: Remove.
36911         * abilist/libthread_db.abilist: Remove.
36912         * abilist/libutil.abilist: Remove.
36913         * scripts/extract-abilist.awk: Remove.
36914         * scripts/merge-abilist.awk: Remove.
36915         * sysdeps/generic/libcidn.abilist: New file.
36916         * sysdeps/generic/libnss_compat.abilist: New file.
36917         * sysdeps/generic/libnss_db.abilist: New file.
36918         * sysdeps/generic/libnss_dns.abilist: New file.
36919         * sysdeps/generic/libnss_files.abilist: New file.
36920         * sysdeps/generic/libnss_hesiod.abilist: New file.
36921         * sysdeps/generic/libnss_nis.abilist: New file.
36922         * sysdeps/generic/libnss_nisplus.abilist: New file.
36923         * sysdeps/unix/sysv/linux/i386/nptl/ld.abilist: New file.
36924         * sysdeps/unix/sysv/linux/i386/nptl/libanl.abilist: New file.
36925         * sysdeps/unix/sysv/linux/i386/nptl/libBrokenLocale.abilist: New
36926         file.
36927         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: New file.
36928         * sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist: New file.
36929         * sysdeps/unix/sysv/linux/i386/nptl/libdl.abilist: New file.
36930         * sysdeps/unix/sysv/linux/i386/nptl/libm.abilist: New file.
36931         * sysdeps/unix/sysv/linux/i386/nptl/libnsl.abilist: New file.
36932         * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: New file.
36933         * sysdeps/unix/sysv/linux/i386/nptl/libresolv.abilist: New file.
36934         * sysdeps/unix/sysv/linux/i386/nptl/librt.abilist: New file.
36935         * sysdeps/unix/sysv/linux/i386/nptl/libthread_db.abilist: New
36936         file.
36937         * sysdeps/unix/sysv/linux/i386/nptl/libutil.abilist: New file.
36938         * sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: New file.
36939         * sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: New file.
36940         * sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist: New
36941         file.
36942         * sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: New file.
36943         * sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: New file.
36944         * sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: New file.
36945         * sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: New file.
36946         * sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: New file.
36947         * sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: New
36948         file.
36949         * sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: New file.
36950         * sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: New file.
36951         * sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist: New
36952         file.
36953         * sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: New file.
36954         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/ld.abilist:
36955         New file.
36956         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libanl.abilist:
36957         New file.
36958         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libBrokenLocale.abilist:
36959         New file.
36960         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libc.abilist:
36961         New file.
36962         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libcrypt.abilist:
36963         New file.
36964         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libdl.abilist:
36965         New file.
36966         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libm.abilist:
36967         New file.
36968         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libnsl.abilist:
36969         New file.
36970         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libpthread.abilist:
36971         New file.
36972         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libresolv.abilist:
36973         New file.
36974         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/librt.abilist:
36975         New file.
36976         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libthread_db.abilist:
36977         New file.
36978         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libutil.abilist:
36979         New file.
36980         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist: New
36981         file.
36982         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl.abilist:
36983         New file.
36984         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale.abilist:
36985         New file.
36986         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist: New
36987         file.
36988         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist:
36989         New file.
36990         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl.abilist:
36991         New file.
36992         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist: New
36993         file.
36994         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl.abilist:
36995         New file.
36996         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
36997         New file.
36998         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv.abilist:
36999         New file.
37000         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt.abilist:
37001         New file.
37002         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db.abilist:
37003         New file.
37004         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil.abilist:
37005         New file.
37006         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: New file.
37007         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libanl.abilist: New
37008         file.
37009         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libBrokenLocale.abilist:
37010         New file.
37011         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: New
37012         file.
37013         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist: New
37014         file.
37015         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libdl.abilist: New
37016         file.
37017         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: New
37018         file.
37019         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libnsl.abilist: New
37020         file.
37021         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
37022         New file.
37023         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libresolv.abilist: New
37024         file.
37025         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: New
37026         file.
37027         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libthread_db.abilist:
37028         New file.
37029         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: New
37030         file.
37031         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: New file.
37032         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libanl.abilist: New
37033         file.
37034         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libBrokenLocale.abilist:
37035         New file.
37036         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: New
37037         file.
37038         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist: New
37039         file.
37040         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libdl.abilist: New
37041         file.
37042         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: New
37043         file.
37044         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libnsl.abilist: New
37045         file.
37046         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
37047         New file.
37048         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libresolv.abilist: New
37049         file.
37050         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/librt.abilist: New
37051         file.
37052         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libthread_db.abilist:
37053         New file.
37054         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libutil.abilist: New
37055         file.
37056         * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
37057         * sysdeps/unix/sysv/linux/sh/nptl/libanl.abilist: New file.
37058         * sysdeps/unix/sysv/linux/sh/nptl/libBrokenLocale.abilist: New
37059         file.
37060         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: New file.
37061         * sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist: New file.
37062         * sysdeps/unix/sysv/linux/sh/nptl/libdl.abilist: New file.
37063         * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: New file.
37064         * sysdeps/unix/sysv/linux/sh/nptl/libnsl.abilist: New file.
37065         * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist: New file.
37066         * sysdeps/unix/sysv/linux/sh/nptl/libresolv.abilist: New file.
37067         * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: New file.
37068         * sysdeps/unix/sysv/linux/sh/nptl/libthread_db.abilist: New file.
37069         * sysdeps/unix/sysv/linux/sh/nptl/libutil.abilist: New file.
37070         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/ld.abilist: New file.
37071         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libanl.abilist: New
37072         file.
37073         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libBrokenLocale.abilist:
37074         New file.
37075         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: New
37076         file.
37077         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist: New
37078         file.
37079         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libdl.abilist: New
37080         file.
37081         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libm.abilist: New
37082         file.
37083         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libnsl.abilist: New
37084         file.
37085         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
37086         New file.
37087         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libresolv.abilist:
37088         New file.
37089         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/librt.abilist: New
37090         file.
37091         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libthread_db.abilist:
37092         New file.
37093         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libutil.abilist: New
37094         file.
37095         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/ld.abilist: New file.
37096         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libanl.abilist: New
37097         file.
37098         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libBrokenLocale.abilist:
37099         New file.
37100         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: New
37101         file.
37102         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist: New
37103         file.
37104         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libdl.abilist: New
37105         file.
37106         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libm.abilist: New
37107         file.
37108         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libnsl.abilist: New
37109         file.
37110         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
37111         New file.
37112         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libresolv.abilist:
37113         New file.
37114         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/librt.abilist: New
37115         file.
37116         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libthread_db.abilist:
37117         New file.
37118         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libutil.abilist: New
37119         file.
37121 2012-04-28  Joseph Myers  <joseph@codesourcery.com>
37123         * conform/conformtest.pl: Fix typo in handling typed-constant from
37124         allow-header.
37126 2012-04-27  Joseph Myers  <joseph@codesourcery.com>
37128         * README: Cut down references to pre-2.6 Linux kernels and
37129         Linuxthreads.  Update lists of configurations in libc and ports
37130         and sort alphabetically.  Say "or newer" with Linux kernel version
37131         requirements.
37133         * config.h.in [IS_IN_build]: Allow compiling without optimization.
37135 2012-04-27  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
37137         [BZ #887]
37138         * math/libm-test.inc (logb_test_downward): New test to expose
37139         erroneous negative sign on -0.0 result of logb[l](1) in FE_DOWNWARD
37140         rounding mode.
37142 2012-04-27  Joseph Myers  <joseph@codesourcery.com>
37144         [BZ #14027]
37145         * math/fclrexcpt.c (__feclearexcept): Return zero if nothing needs
37146         to be done.
37147         * math/fraiseexcpt.c (__feraiseexcept): Likewise.
37148         * math/fsetexcptflg.c (__fesetexceptflag): Likewise.
37150 2012-04-26  Joseph Myers  <joseph@codesourcery.com>
37152         * sysdeps/unix/i386/brk.S: Remove file.
37153         * sysdeps/unix/i386/dl-brk.S: Likewise.
37154         * sysdeps/unix/i386/pipe.S: Likewise.
37155         * sysdeps/unix/i386/sigreturn.S: Likewise.
37156         * sysdeps/unix/i386/syscall.S: Likewise.
37157         * sysdeps/unix/i386/vfork.S: Likewise.
37158         * sysdeps/unix/i386/wait.S: Likewise.
37160         * sysdeps/unix/common/tcsendbrk.c: Move to ...
37161         * sysdeps/unix/sysv/linux/tcsendbrk.c: ... here.
37163         * configure.in (arm*-none*): Do not allow without
37164         --enable-hacker-mode.
37165         (netbsd*): Remove case setting base_os.
37166         (386bsd*): Likewise.
37167         (freebsd*): Likewise.
37168         (bsdi*): Likewise.
37169         (osf*): Likewise.
37170         (sunos*): Likewise.
37171         (ultrix*): Likewise.
37172         (newsos*): Likewise.
37173         (dynix*): Likewise.
37174         (*bsd*): Likewise.
37175         (sysv*): Likewise.
37176         (isc*): Likewise.
37177         (esix*): Likewise.
37178         (sco*): Likewise.
37179         (minix*): Likewise.
37180         (irix4*): Likewise.
37181         (irix6*): Likewise.
37182         (solaris[2-9]*): Likewise.
37183         (none): Likewise.
37184         * configure: Regenerated.
37186 2012-04-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
37188         [BZ #11521]
37189         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c (__ctanhl): Avoid internal
37190         overflow or cancellation in calculating denominator.
37191         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c (__ctanl): Likewise.
37192         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c (__ieee754_sinhl): Breaking
37193         down expression to avoid unexpected rounding in newer GCCs.
37194         * sysdeps/powerpc/fpu/libm-test-ulps: Update for ctan, ctanh fix.
37196 2012-04-26  David S. Miller  <davem@davemloft.net>
37198         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Generate
37199         long-double compat symbols.
37200         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
37201         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: Likewise.
37202         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: Likewise.
37203         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: Likewise.
37204         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Likewise.
37205         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Likewise.
37206         * sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S: Likewise.
37207         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S: Likewise.
37208         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S: Likewise.
37209         * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: Likewise.
37210         * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: Likewise.
37211         * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S: Likewise.
37212         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
37214 2012-04-25  David S. Miller  <davem@davemloft.net>
37216         * sysdeps/sparc/sparc32/bits/atomic.h: Include sysdep.h to get
37217         HWCAP_* values only after the memory barriers have been defined.
37218         (atomic_full_barrier): Define.
37219         (atomic_read_barrier): Define.
37220         (atomic_write_barrier): Define.
37222 2012-04-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
37224         * shlib-versions: Add libgcc_s version information.
37225         * sysdeps/generic/libgcc_s.h: Remove.
37226         * sysdeps/generic/framestate.c: Include gnu/lib-names.h instead of
37227         libgcc_s.h.
37228         * sysdeps/gnu/unwind-resume.c: Likewise.
37229         * scripts/test-installation.pl: Remove libgcc_s from link_libs.
37231 2012-04-25  David S. Miller  <davem@davemloft.net>
37233         * sysdeps/unix/sparc/brk.S: Delete.
37234         * sysdeps/unix/sparc/dl-brk.S: Delete.
37235         * sysdeps/unix/sparc/pipe.S: Delete.
37236         * sysdeps/unix/sparc/sysdep.S: Delete.
37237         * sysdeps/unix/sparc/sysdep.h: Delete.
37238         * sysdeps/unix/sparc/vfork.S: Delete.
37239         * sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK, SPARC_PIC_REG)
37240         (SPARC_PIC_REG_LEAF, ENTRY, END, LOC): Define.
37241         * sysdeps/unix/sysv/linux/sparc/sysdep.h (ret, ret_NOERRNO)
37242         (ret_ERRVAL, r0, r1, MOVE): Define.
37243         (JUMPTARGET): Remove.
37244         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Don't include
37245         sysdeps/unix/sparc/sysdep.h
37246         (ENTRY, END): Remove.
37247         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
37249 2012-04-25  Joseph Myers  <joseph@codesourcery.com>
37251         * Makerules (native-compile): Use $(BUILD_LDFLAGS).
37252         (ALL_BUILD_CFLAGS): Use $(BUILD_CPPFLAGS) -D_GNU_SOURCE
37253         -DIS_IN_build.
37255         * timezone/README: Update upstream location and email address for
37256         tzcode and tzdata.
37257         * timezone/zdump.c: Update from tzcode 2012b.
37258         * timezone/zic.c: Likewise.
37260         * configure.in (libc_cv_as_needed): Remove test.
37261         * configure: Regenerated.
37262         * Makeconfig [$(have-as-needed) != yes] (as-needed): Remove
37263         conditional definition.
37264         [$(have-as-needed) != yes] (no-as-needed): Likewise.
37265         [$(have-as-needed) != yes] (libgcc_eh): Likewise.
37266         * config.make.in (have-as-needed): Remove variable.
37268 2012-04-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
37269             Paul Pluzhnikov  <ppluzhnikov@google.com>
37271         * elf/dl-minimal.c (__strtoul_internal): Parse hexadecimal and octal
37272         strings correctly.
37274 2012-04-25  Chung-Lin Tang  <cltang@codesourcery.com>
37276         * sysdeps/sh/memcpy.S: Remove include of endian.h, change
37277         preprocessor endian tests to '#ifdef __BIG_ENDIAN__'.
37278         * sysdeps/sh/strlen.S: Likewise.
37280 2012-04-24  Joseph Myers  <joseph@codesourcery.com>
37282         * sysdeps/unix/fork.S: Remove file.
37283         * sysdeps/unix/i386/fork.S: Likewise.
37284         * sysdeps/unix/sparc/fork.S: Likewise.
37286         * sysdeps/unix/system.c: Remove file.
37287         * sysdeps/unix/bsd/bsd4.4/system.c: Likewise.
37289         * sysdeps/unix/getegid.S: Remove file.
37290         * sysdeps/unix/geteuid.S: Likewise.
37292 2012-04-24  Roland McGrath  <roland@hack.frob.com>
37294         * scripts/check-localplt.awk: New file.
37295         * elf/Makefile ($(objpfx)check-localplt.out): Use that script instead
37296         of diff.
37297         * scripts/data/localplt-generic.data: Add a comment.
37299         * sysdeps/mach/hurd/symlink.c: Don't call __mach_port_deallocate on
37300         NODE when __dir_mkfile failed.
37301         * sysdeps/mach/hurd/symlinkat.c: Likewise.
37302         Reported by Ludovic Courtès <ludo@gnu.org>.
37304 2012-04-24  Andreas Jaeger  <aj@suse.de>
37306         * Makerules (common-clean): Also remove gen-as-const-headers
37307         files.
37309 2012-04-24  Joseph Myers  <joseph@codesourcery.com>
37311         * Makerules (native-compile): Do not change working directory for
37312         build.  Use $(OUTPUT_OPTION) in command.
37313         (ALL_BUILD_CFLAGS): Use $(common-objpfx) to find config.h.
37315 2012-04-24  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
37317         [BZ #13886]
37318         * sysdeps/powerpc/powerpc64/fpu/s_floorl.S: Delete file. Use the
37319         sysdeps/ieee754/ldbl-128ibm/s_floorl.c version instead.
37320         * math/libm-test.inc (floor_test): Add more tests.
37321         * sysdeps/powerpc/fpu/libm-test-ulps: Update for pow tests.
37323 2012-04-24  Joseph Myers  <joseph@codesourcery.com>
37325         * sysdeps/unix/getdents.c: Remove file.
37326         * sysdeps/unix/sysv/getdents.c: Likewise.
37327         * sysdeps/unix/sysv/syscalls.list (s_getdents): Remove.
37329         * sysdeps/unix/syscalls.list (madvise): Add syscall from
37330         sysdeps/unix/mman/syscalls.list.
37331         (mmap): Likewise.
37332         (mprotect): Likewise.
37333         (msync): Likewise.
37334         (munmap): Likewise.
37335         * sysdeps/unix/bsd/bsd4.4/Implies: Remove.
37336         * sysdeps/unix/mman/syscalls.list: Remove.
37337         * sysdeps/unix/sysv/linux/Implies: Don't include unix/mman.
37339         * configure.in (libc_cv_libgcc_s_suffix): Remove test.
37340         (libc_cv_as_needed): Don't use $libc_cv_libgcc_s_suffix.
37341         * configure: Regenerated.
37342         * Makeconfig [$(have-as-needed) = yes] (libgcc_eh): Don't use
37343         $(libgcc_s_suffix).
37344         * config.make.in (libgcc_s_suffix): Remove variable.
37346 2012-04-23  Joseph Myers  <joseph@codesourcery.com>
37348         * sysdeps/unix/sysv/gethostname.c: Move to ...
37349         * sysdeps/posix/gethostname.c: ... here.
37351         * sysdeps/unix/execve.S: Remove file.
37353         * sysdeps/unix/_exit.S: Remove file.
37355 2012-04-23  Andreas Jaeger  <aj@suse.de>
37357         [BZ #13739]
37358         * manual/Makefile: Remove make dist support, there's no
37359         need for a stand-alone documentation tar ball.
37360         (TEXI2DVI): Define always, it's not in Makeconfig.
37361         (dist): Removed.
37362         (tar-it): Removed.
37363         (edition): Removed.
37364         (glibc-doc-$(edition).tar): Removed
37365         (%.Z): Removed.
37366         (%.gz): Removed.
37367         (%.uu): Removed.
37368         (ETAGS): Remove, it's in Makeconfig.
37369         (move-if-change): Remove, it's in Makeconfig.
37371 2012-04-23  Paul Eggert  <eggert@cs.ucla.edu>
37373         [BZ #13970]
37374         * stdlib/stdlib.h: Remove warn_unused_result attribute from strtol etc.
37375         (strtod, strtof, strtold, strtol, strtoul, strtoq)
37376         (strtouq, strtoll, strtoull, strtol_l, strtoul_l, strtoll_l, strtoull_l)
37377         (strtod_l, strtof_l, strtold_l): Remove __wur.
37378         It is not necessarily an error to ignore strtol's return value.
37379         One can reliably look at the stored endptr to decide whether
37380         the number had valid syntax.
37382 2012-04-21  Andreas Jaeger  <aj@suse.de>
37384         [BZ #13739]
37385         * sysdeps/s390/s390-64/Makefile (distribute): Remove variable.
37387 2012-04-21  Joseph Myers  <joseph@codesourcery.com>
37389         * sysdeps/unix/sysv/linux/Versions (GLIBC_2.0): Add sysinfo.
37390         * sysdeps/unix/sysv/Versions: Remove file.
37392 2012-04-21  Markus Trippelsdorf  <markus@trippelsdorf.de>
37394         [BZ #13927]
37395         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
37397 2012-04-21  Nick Alcock  <nick.alcock@oracle.com>
37399         [BZ #7064]
37400         * sysdeps/unix/sysv/linux/i386/syscalls.list: Omit explicit
37401         version from __vm86.
37403 2012-04-20  Joseph Myers  <joseph@codesourcery.com>
37405         * sysdeps/unix/common/lxstat.c: Remove file.
37406         * sysdeps/unix/common/syscalls.list (sys_lstat): Remove.
37408         * sysdeps/unix/sysv/Makefile: Remove file.
37410         * sysdeps/unix/sysv/direct.h: Remove file.
37412         * sysdeps/unix/sysv/bits/dirent.h: Remove file.
37413         * sysdeps/unix/sysv/bits/fcntl.h: Likewise.
37414         * sysdeps/unix/sysv/bits/local_lim.h: Likewise.
37415         * sysdeps/unix/sysv/bits/signum.h: Likewise.
37416         * sysdeps/unix/sysv/bits/stat.h: Likewise.
37417         * sysdeps/unix/sysv/bits/utmp.h: Likewise.
37418         * sysdeps/unix/sysv/bits/utsname.h: Likewise.
37420         * sysdeps/unix/sysv/setrlimit.c: Remove file.
37422         * sysdeps/unix/xmknod.c: Remove file.
37423         * sysdeps/unix/syscalls.list (sys_mknod): Remove.
37425         * sysdeps/unix/sysv/settimeofday.c: Remove file.
37427         * sysdeps/unix/sysv/i386/time.S: Remove file.
37429         * sysdeps/unix/fxstat.c: Remove file.
37430         * sysdeps/unix/xstat.c: Likewise.
37431         * sysdeps/unix/syscalls.list (sys_fstat, sys_stat): Remove.
37433         * sysdeps/unix/sysv/sigaction.c: Remove file.
37435         * sysdeps/unix/sysv/Makefile [termio.h not in sysdep_headers]
37436         (sysdep_headers): Remove variable.
37437         [termio.h not in sysdep_headers] (generated): Likewise.
37438         [termio.h not in sysdep_headers] ($(objpfx)termio.h): Remove rule.
37439         * sysdeps/unix/sysv/sysv_termio.h: Remove file.
37440         * sysdeps/unix/sysv/tcdrain.c: Likewise.
37441         * sysdeps/unix/sysv/tcflow.c: Likewise.
37442         * sysdeps/unix/sysv/tcflush.c: Likewise.
37443         * sysdeps/unix/sysv/tcgetattr.c: Likewise.
37444         * sysdeps/unix/sysv/tcgetpgrp.c: Likewise.
37445         * sysdeps/unix/sysv/tcsendbrk.c: Likewise.
37446         * sysdeps/unix/sysv/tcsetattr.c: Likewise.
37447         * sysdeps/unix/sysv/tcsetpgrp.c: Likewise.
37449         * sysdeps/unix/siglist.c: Remove file.
37451         * sysdeps/unix/getppid.S: Remove file.
37453         * sysdeps/unix/mkdir.c: Remove file.
37454         * sysdeps/unix/rmdir.c: Likewise.
37456 2012-04-19  Andreas Schwab  <schwab@linux-m68k.org>
37458         * sysdeps/gnu/errlist-compat.awk (END): Correct computation of
37459         ERR_MAX value.
37460         * sysdeps/unix/sysv/linux/Versions (GLIBC_2.12): Adjust
37461         errlist-compat value.
37463 2012-04-18  David S. Miller  <davem@davemloft.net>
37465         * sysdeps/generic/memcopy.h (reg_char): Delete.
37466         * debug/strcat_chk.c: Use char, not reg_char.
37467         * debug/strcpy_chk.c: Likewise.
37468         * debug/strncat_chk.c: Likewise.
37469         * debug/strncpy_chk.c: Likewise.
37470         * string/memchr.c: Likewise.
37471         * string/memrchr.c: Likewise.
37472         * string/rawmemchr.c: Likewise.
37473         * string/strcat.c: Likewise.
37474         * string/strchr.c: Likewise.
37475         * string/strchrnul.c: Likewise.
37476         * string/strcmp.c: Likewise.
37477         * string/strcpy.c: Likewise.
37478         * string/strncat.c: Likewise.
37479         * string/strncmp.c: Likewise.
37480         * string/strncpy.c: Likewise.
37482 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
37484         * sysdeps/powerpc/memmove.c: New file based on string/memmove.c where
37485         __builtin_memcopy is called when src and dest ranges are known to not
37486         overlap.
37488 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
37490         * sysdeps/powerpc/powerpc64/power6/wordcopy.c
37491         (_wordcopy_fwd_dest_aligned): Replace switch with a parameterized
37492         fwd_align_merge macro call.
37493         (_wordcopy_bwd_dest_aligned): Replace switch with a parameterized
37494         bwd_align_merge macro call.
37495         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
37497 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
37499         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Add fwd_align_merge and
37500         bwd_align_merge macros.
37501         (_wordcopy_fwd_dest_aligned): Use fwd_align_merge macro calls.
37502         (_wordcopy_bwd_dest_aligned): Use bwd_align_merge macro calls.
37503         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
37505 2012-04-18  David S. Miller  <davem@davemloft.net>
37507         * sysdeps/sparc/sparc64/memcopy.h: Delete.
37509 2012-04-18  Andreas Jaeger  <aj@suse.de>
37511         [BZ# 6794]
37512         * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Moved to ...
37513         * sysdeps/ieee754/ldbl-96/e_ilogbl.c: ... here.
37514         Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
37516         * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Moved to ...
37517         * sysdeps/ieee754/ldbl-128/e_ilogbl.c: ... here.
37518         Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
37520         * sysdeps/ieee754/ldbl-64-128/s_ilogbl.c: Moved to ...
37521         * sysdeps/ieee754/ldbl-64-128/e_ilogbl.c: ... here.
37522         Adjust for changed ldbl-128 files.
37524         * sysdeps/sparc/sparc64/soft-fp/s_ilogbl.c: Moved to ...
37525         * sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c: ... here.
37526         Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
37528 2012-04-17  David S. Miller  <davem@davemloft.net>
37530         * sysdeps/sparc/sparc32/memcopy.h: Delete.
37532 2012-04-17  Andreas Schwab  <schwab@linux-m68k.org>
37534         * sysdeps/i386/fpu/e_ilogb.S: Remove __ilogb*_finite alias.
37535         * sysdeps/i386/fpu/e_ilogbf.S: Likewise.
37536         * sysdeps/i386/fpu/e_ilogbl.S: Likewise.
37537         * sysdeps/x86_64/fpu/e_ilogbl.S: Likewise.
37538         * sysdeps/ieee754/dbl-64/e_ilogb.c: Likewise.
37539         * sysdeps/ieee754/flt-32/e_ilogbf.c: Likewise.
37541 2012-04-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
37543         [BZ #6794]
37544         * math/Makefile: Add e_ilogb and w_ilogb, remove s_logb.
37545         * math/libm-test.inc: Add ilogb errno and exception tests.
37546         * math/w_ilogb.c: New file: ilogb wrapper.
37547         * math/w_ilogbf.c: New file: ilogbf wrapper.
37548         * math/w_ilogbl.c: New file: ilogbl wrapper.
37549         * sysdeps/generic/math_private.h: Add __ieee754_ilogb[l|f] prototypes.
37550         * sysdeps/i386/fpu/s_ilogb.S: Moved to ...
37551         * sysdeps/i386/fpu/e_ilogb.S: ... here. Also fixed a FE_DIVBYZERO
37552         exception being thrown with 0.0 as argument.
37553         * sysdeps/i386/fpu/s_ilogbf.S: Moved to ...
37554         * sysdeps/i386/fpu/e_ilogbf.S: ... here. Also fixed a FE_DIVBYZERO
37555         exception being thrown with 0.0 as argument.
37556         * sysdeps/i386/fpu/s_ilogbl.S: Moved to ...
37557         * sysdeps/i386/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
37558         exception being thrown with 0.0 as argument.
37559         * sysdeps/x86_64/fpu/s_ilogbl.S: Moved to ...
37560         * sysdeps/x86_64/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
37561         exception being thrown with 0.0 as argument.
37562         * sysdeps/ieee754/dbl-64/s_ilogb.c: Moved to ...
37563         * sysdeps/ieee754/dbl-64/e_ilogb.c: ... here.
37564         * sysdeps/ieee754/flt-32/s_ilogbf.c: Moved to ...
37565         * sysdeps/ieee754/flt-32/e_ilogbf.c: ... here.
37566         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Moved to ...
37567         * sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c: ... here.
37568         * sysdeps/ieee754/ldbl-opt/s_ilogb.c: Moved to ...
37569         * sysdeps/ieee754/ldbl-opt/w_ilogb.c: ... here.
37570         * sysdeps/ieee754/ldbl-opt/w_ilogbl.c: New file: ilogbl wrapper.
37572 2012-04-17  Petr Baudis  <pasky@ucw.cz>
37574         * include/sys/uio.h: Change __vector to __iovec to avoid clash
37575         with altivec.
37577 2012-04-16  Marek Polacek  <polacek@redhat.com>
37579         * elf/pldd-xx.c: Rename static_assert to pldd_assert.
37581 2012-04-16  Marek Polacek  <polacek@redhat.com>
37583         * sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Reverse the
37584         operands of fdivp instruction.
37586 2012-04-13  H.J. Lu  <hongjiu.lu@intel.com>
37588         * elf/tst-auditmod1.c: Check __ILP32__ instead of __LP64__.
37589         * elf/tst-auditmod3b.c: Likewise.
37590         * elf/tst-auditmod4b.c: Likewise.
37591         * elf/tst-auditmod5b.c: Likewise.
37592         * elf/tst-auditmod6b.c: Likewise.
37593         * elf/tst-auditmod6c.c: Likewise.
37594         * elf/tst-auditmod7b.c: Likewise.
37595         * sysdeps/x86_64/ffsll.c (ffsl): Likewise.
37596         * sysdeps/x86_64/preconfigure.in: Likewise.
37597         * sysdeps/x86_64/preconfigure: Regenerated.
37599 2012-04-13  H.J. Lu  <hongjiu.lu@intel.com>
37601         * sysdeps/x86_64/bits/wordsize.h (__WORDSIZE): Also check
37602         __ILP32__.
37604 2012-04-13  Antoine Balestrat <merkil33@gmail.com>
37606         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
37607         (__get_clockfreq_via_proc_openprom): Fix test on wrong variable.
37609 2012-04-13  Chris Leonard  <cjlhomeaddress@gmail.com>
37611         [BZ #13973]
37612         * locale/iso-639.def: Fix gl language name. Spotted by
37613         Yaron Shahrabani.
37615 2012-04-12  Roland McGrath  <roland@hack.frob.com>
37617         [BZ #2074]
37618         * libio/libio.h (__io_write_fn): Update comment.
37620 2012-04-12  Petr Baudis  <pasky@ucw.cz>
37622         [BZ #2074]
37623         * stdio.texi (Hook Functions): The user provided writer function
37624         is not allowed to return -1.
37626 2012-04-11  David S. Miller  <davem@davemloft.net>
37628         * sysdeps/sparc/fpu/libm-test-ulps: Update.
37630 2012-04-11  Mike Frysinger  <vapier@gentoo.org>
37632         * .gitignore: Add /ports, /linuxthreads, and /linuxthreads_db.
37633         Add a leading slash to rtkaio.
37635 2012-04-11  Jim Meyering  <meyering@redhat.com>
37637         [BZ #11959]
37638         * libio/stdio.h (fwrite, fwrite_unlocked): Remove __wur.
37639         It is not necessarily an error to ignore fwrite's return
37640         value.  One can reliably use ferror to test for errors after
37641         the fact.
37643 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
37645         * bits/types.h (__snseconds_t): New type.
37646         * time/time.h (struct timespec): Use __snseconds_t on tv_nsec.
37648         * bits/typesizes.h (__SNSECONDS_T_TYPE): New macro.
37649         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
37650         (__SNSECONDS_T_TYPE): Likewise.
37651         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
37652         (__SNSECONDS_T_TYPE): Likewise.
37653         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
37654         (__SNSECONDS_T_TYPE): Likewise.
37656 2012-04-10  Andreas Jaeger  <aj@suse.de>
37658         [BZ #2636]
37659         * manual/time.texi (Processor Time): Return type of times is
37660         elapsed real time since an arbitrary point in the past.
37661         (CPU Time): Move CLK_TCK from here...
37662         (Processor Time): ...to here.  Correct description.
37663         * manual/conf.texi (Constants for Sysconf): Correct description of
37664         _SC_CLK_TCK.
37666 2012-04-10  David S. Miller  <davem@davemloft.net>
37668         [BZ #13967]
37669         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Handle the case
37670         where the is a gap between DT_REL(A) and DT_JMPREL.
37672 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
37674         * sysdeps/x86_64/bits/byteswap.h: Include <features.h>.
37675         (__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
37676         (__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
37678 2012-04-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
37680         * elf/dl-support.c (_dl_inhibit_cache): New variable.
37681         * elf/rtld.c (_rtld_global_ro): New member _dl_inhibit_cache.
37682         (dl_main): Handle --inhibit-cache.
37683         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): New member
37684         _dl_inhibit_cache.
37685         * elf/dl-load.c (_dl_map_object): Use it.
37686         * elf/Makefile: Define SYSCONFDIR when building rtld.c.
37688 2012-04-09  Joseph Myers  <joseph@codesourcery.com>
37690         [BZ #13872]
37691         * sysdeps/i386/fpu/e_powl.S (p78): New object.
37692         (__ieee754_powl): Saturate large exponents rather than testing for
37693         overflow of y*log2(x).
37694         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
37695         * math/libm-test.inc (pow_test): Do not permit spurious overflow
37696         exceptions.
37698         [BZ #11521]
37699         * math/s_ctan.c: Include <float.h>.
37700         (__ctan): Avoid internal overflow or cancellation in calculating
37701         denominator.
37702         * math/s_ctanf.c: Likewise.
37703         * math/s_ctanl.c: Likewise.
37704         * math/s_ctanh.c: Likewise.
37705         * math/s_ctanhf.c: Likewise.
37706         * math/s_ctanhl.c: Likewise.
37707         * math/libm-test.inc (ctan_test): Add more tests.
37708         (ctanh_test): Likewise.
37709         * sysdeps/i386/fpu/libm-test-ulps: Update.
37710         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
37712 2012-04-09  Andreas Jaeger  <aj@suse.de>
37714         [BZ #6894]
37715         * manual/filesys.texi (Directory Entries): Mention that d_namlen
37716         is an optional BSD extension.
37718         [BZ #10254]
37719         * manual/stdio.texi (Opening Streams): Document additional fopen
37720         parameters.
37722 2012-04-09  Roland McGrath  <roland@hack.frob.com>
37724         * sysdeps/i386/fpu/bits/mathinline.h (__sincos_code): Don't clobber
37725         %eax without telling the compiler.
37727 2012-04-09  Carlos O'Donell  <carlos_odonell@mentor.com>
37729         [BZ # 13963]
37730         * manual/install.texi: Use sourceware.org.
37732 2012-04-09  Joseph Myers  <joseph@codesourcery.com>
37734         [BZ #13873]
37735         * sysdeps/ieee754/dbl-64/e_pow.c (huge, tiny): New variables.
37736         (__ieee754_pow): Generate overflow and underflow using huge*huge
37737         and tiny*tiny rather than just returning constant infinity or zero
37738         for large exponents.
37739         * math/libm-test.inc (pow_test): Require overflow exceptions for
37740         applicable cases of large exponents.
37742         [BZ #706]
37743         * sysdeps/i386/fpu/e_pow.S (p10): New object.
37744         (__ieee754_pow): Use iterative multiplication algorithm only for
37745         integer exponents with absolute value below 1024.  Check for odd
37746         integer exponents when using algorithm for real exponents.
37747         * math/libm-test.inc (pow_test): Add more tests.
37748         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
37750 2012-04-08  Joseph Myers  <joseph@codesourcery.com>
37752         [BZ #13705]
37753         * math/libm-test.inc (exp_test): Do not allow overflow exception
37754         on underflow test.
37756 2012-04-08  Aurelien Jarno  <aurelien@aurel32.net>
37758         [BZ #13705]
37759         * sysdeps/ieee754/dbl-64/w_exp.c (__exp): Use __kernel_standard
37760         instead of __kernel_standard_f.
37762 2012-04-08  Mike Frysinger  <vapier@gentoo.org>
37764         * sysdeps/i386/i686/memset_chk.S: Update copyright year.
37765         * sysdeps/x86_64/memset_chk.S: Likewise.
37767 2012-04-08  Andreas Jaeger  <aj@suse.de>
37769         [BZ #10153]
37770         * manual/startup.texi (Environment Access): Describe return value
37771         for putenv and setenv.
37773         [BZ #6895]
37774         * manual/filesys.texi (Directory Entries): Add description for
37775         DT_LNK.
37777         [BZ #6890]
37778         * manual/filesys.texi (Directory Entries): Clarify that it's file
37779         system not operating system in the description of DT_UNKNOWN.
37781         [BZ #6578]
37782         * manual/syslog.texi (closelog): Fix reference, it's openlog.
37784 2012-04-08  Stephen Compall  <s11@member.fsf.org>
37786         [BZ #6649]
37787         * manual/llio.texi (Opening and Closing Files): Add cross
37788         reference to explain mode argument.
37790 2012-04-07  Mike Frysinger  <vapier@gentoo.org>
37792         * sysdeps/i386/i686/memset_chk.S: Change PIC to SHARED.
37793         * sysdeps/x86_64/memset_chk.S: Likewise.
37795 2012-04-07  David S. Miller  <davem@davemloft.net>
37797         * elf/elf.h (R_SPARC_WDISP10): Define.
37798         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Handle
37799         R_SPARC_SIZE32.
37800         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Handle
37801         R_SPARC_SIZE64 and R_SPARC_H34.
37803 2012-04-07  Carlos O'Donell  <carlos_odonell@mentor.com>
37805         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Simplify
37806         conditions and remove no longer applicable assertion.
37808 2012-04-06  H.J. Lu  <hongjiu.lu@intel.com>
37810         * bits/byteswap.h: Include <features.h>.
37811         (__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
37812         (__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
37814 2012-04-06  H.J. Lu  <hongjiu.lu@intel.com>
37816         * bits/byteswap.h (__bswap_16): Removed.
37817         Include <bits/byteswap-16.h> to get __bswap_16.
37818         * sysdeps/i386/bits/byteswap.h: Likewise.
37819         * sysdeps/s390/bits/byteswap.h: Likewise.
37820         * sysdeps/x86_64/bits/byteswap.h: Likewise.
37821         * bits/byteswap-16.h: New file.
37822         * sysdeps/i386/bits/byteswap-16.h: Likewise.
37823         * sysdeps/s390/bits/byteswap-16.h: Likewise.
37824         * sysdeps/x86_64/bits/byteswap-16.h: Likewise.
37825         * string/Makefile (headers): Add bits/byteswap-16.h.
37827 2012-04-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
37829         [BZ #13895]
37830         * nss/nsswitch.c (nss_load_library, __nss_lookup_function): Avoid
37831         extra indirection.
37832         * nss/Makefile (tests-static, tests): Add tst-nss-static.
37833         * nss/tst-nss-static.c: New.
37835 2012-04-06  Robert Millan  <rmh@gnu.org>
37837         [BZ #6486]
37838         * manual/llio.texi (File Position Primitive): lseek
37839         refers to WHENCE when it really means OFFSET.
37841 2012-04-06  Andreas Jaeger  <aj@suse.de>
37843         * nss/nss_db/db-initgroups.c: Include <string.h> for strlen and
37844         strncmp declarations.
37846         * abilist/libc.abilist: Add __poll and __ppoll.
37848 2012-04-05  David S. Miller  <davem@davemloft.net>
37850         * scripts/check-local-headers.sh: Accept a host triplet in the
37851         path matched by the exclude regexp.
37853         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Reduce down to one
37854         definition.
37855         * sysdeps/powerpc/powerpc32/dl-machine.h
37856         (ELF_MACHINE_PLTREL_OVERLAP): Delete.
37857         * sysdeps/s390/s390-32/dl-machine.h
37858         (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
37859         * sysdeps/sparc/sparc32/dl-machine.h
37860         (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
37861         * sysdeps/sparc/sparc64/dl-machine.h
37862         (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
37864         * elf/rtld.c (dl_main): If DL_DEBUG_UNUSED is enabled, turn off
37865         lazy binding.
37866         * elf/dl-lookup.c (_dl_lookup_symbol_x): If DL_DEBUG_UNUSED, ignore
37867         undefined symbol errors.
37869         * elf/rtld.c (dl_main): Skip VDSO when checking for unused
37870         DT_NEEDED entries.
37872 2012-04-05  Michael Matz  <matz@suse.de>
37874         [BZ #13592]
37875         * sysdeps/x86_64/memset.S: Fix size paramater comparisions.
37877 2012-04-05  Andreas Jaeger  <aj@suse.de>
37879         [BZ #13908]
37880         * stdlib/stdlib.h: Don't warn about unused result of mktemp, fix
37881         comment.
37883 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
37885         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Fix return value
37886         which ROUND is no valid rounding mode.
37888 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
37890         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Set fpscr register which
37891         read again.
37892         * sysdeps/sh/sh4/fpu/ftestexcept.c: Likewise.
37894 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
37896         * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Produce
37897         an exception using FPU order intentionally.
37899 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
37901         * sysdeps/sh/sh4/fpu/fedisblxcpt.c: New file.
37902         * sysdeps/sh/sh4/fpu/feenablxcpt.c: New file.
37903         * sysdeps/sh/sh4/fpu/fegetexcept.c: New file.
37904         * sysdeps/sh/sh4/fpu/feupdateenv.c: New file.
37906 2012-04-05  Simon Josefsson  <simon@josefsson.org>
37908         [BZ #12340]
37909         * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Return ERANGE instead of
37910         EINVAL when BUFLEN is too smal.
37912 2012-04-05  Thomas Schwinge  <thomas@codesourcery.com>
37914         [BZ #13553]
37915         * sysdeps/mach/i386/machine-lock.h: Use volatile instead of __volatile.
37916         * sysdeps/mach/powerpc/machine-lock.h: Likewise.
37918 2012-04-03  Andreas Jaeger  <aj@suse.de>
37920         [BZ #13938]
37921         * manual/setjmp.texi (System V contexts): Fix sentence.
37923         [BZ #13926]
37924         * sysdeps/i386/bits/byteswap.h [!__GNUC__](__bswap_constant_64):
37925         New macro for this case.
37926         [!__GNUC__] (__bswap_64): New inline function for this case.
37927         * sysdeps/x86_64/bits/byteswap.h: Likewise.
37928         * bits/byteswap.h: Likewise.
37929         * sysdeps/s390/bits/byteswap.h: [!__GNUC__] (__bswap_64): Use
37930         ull, guard with __GLIBC_HAVE_LONG_LONG.
37932         * string/endian.h (htobe64,htole64,be64toh,le64toh): Guard with
37933         __GLIBC_HAVE_LONG_LONG.
37935         * string/byteswap.h (bswap_64): Guard with __GLIBC_HAVE_LONG_LONG.
37936         Include <features.h> for __GLIBC_HAVE_LONG_LONG.
37938 2012-04-02 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
37940         [BZ #13691]
37941         * iconvdata/tcvn5712-1.c (FROM_LOOP): Test end of input using
37942         inptr and inend, rather than using last_ch.
37944 2012-04-02  David S. Miller  <davem@davemloft.net>
37946         With help from Paul Eggert, Carlos O'Donell, and Roland McGrath.
37947         * stdio-common/printf-parse.h (read_int): Change return type to
37948         'int', return -1 on INT_MAX overflow.
37949         * stdio-common/vfprintf.c (vfprintf): Validate width and precision
37950         against overflow of INT_MAX.  Set errno to EOVERFLOW when 'done'
37951         overflows INT_MAX.  Check for overflow of in-format-string precision
37952         values properly.  Use EOVERFLOW rather than ERANGE throughout.  Use
37953         SIZE_MAX not INT_MAX for integer overflow test.
37954         * stdio-common/printf-parsemb.c: If read_int signals an overflow,
37955         skip the construct in the format string but do not record anything.
37956         * stdio-common/bug22.c: Adjust to test both width/prevision
37957         INT_MAX overflow as well as total length INT_MAX overflow.  Check
37958         explicitly for proper errno values.
37960 2012-04-02  Thomas Schwinge  <thomas@codesourcery.com>
37962         * string/test-memcmp.c [! WIDE]: #include <limits.h> for CHAR_MIN,
37963         CHAR_MAX.
37964         * string/test-strcmp.c [! WIDE]: Likewise.
37965         * time/tst-mktime2.c: Likewise for INT_MAX.
37966         * string/test-string.h: #include <sys/param.h> for MIN.
37968         * csu/init-first.c (__libc_init_first): Call __ctype_init.
37969         * sysdeps/i386/init-first.c (init): Likewise.
37970         * sysdeps/mach/hurd/i386/init-first.c (posixland_init): Likewise.
37971         * sysdeps/mach/hurd/powerpc/init-first.c (posixland_init): Likewise.
37972         * sysdeps/sh/init-first.c (init): Likewise.
37974 2012-04-01  Ulrich Drepper  <drepper@gmail.com>
37976         * po/ru.po: Update from translation team.
37977         * po/vi.po: Likewise.
37979 2012-03-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
37981         * resolv/nss_dns/dns-host.c: Merge copyright years.
37983 2012-03-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
37985         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Update.
37986         Optimize memcpy with prefetch if
37987         DATA_CACHE_SIZE_HALF <= len <  SHARED_CACHE_SIZE_HALF and
37988         src, dst pointers have unequal 16 byte alignments.
37990 2012-03-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
37992         [BZ #13928]
37993         * resolv/nss_dns/dns-host.c (getanswer_r): Also consider ttl
37994         from a CNAME entry and return the minimum ttl for the query.
37995         (gaih_getanswer_slice): Likewise.
37997 2012-03-30  Jeff Law  <law@redhat.com>
37999         * crypt/md5-crypt.c (__md5_crypt_r): Avoid unbounded alloca uses
38000         due to long keys.
38001         * crypt/sha256-crypt.c (__sha256_crypt_r): Likewise.
38002         * crypt/sha512-crypt.c (__sha512_crypt_r): Likewise.
38004         * resolv/nss_dns/dns-host.c: Update copyright year.
38006 2012-03-30  Ulrich Drepper  <drepper@gmail.com>
38008         * resolv/res_send.c (send_dg): Use sendmmsg if we have to write two
38009         requests to save a system call.  Fix check that all bytes are sent.
38011         * sysdeps/unix/sysv/linux/bits/socket.h (struct mmsghdr): Fix up
38012         comments for sendmmsg.
38014 2012-03-30  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
38016         [BZ #13691]
38017         * iconvdata/tcvn5712-1.c (FROM_LOOP): Fix a bug when converting strings
38018         with only 1 character between 0x0041 and 0x01b0.
38019         * wcsmbs/Makefile (tests): Add tst-mbsnrtowcs.
38020         * wcsmbs/tst-mbsnrtowcs.c: New file.
38022 2012-03-29  David S. Miller  <davem@davemloft.net>
38024         * libio/fileops.c (_IO_new_file_xsputn): Don't try to optimize
38025         small copies by hand.
38027 2012-03-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
38029         [BZ #13761]
38030         * nis/nss_compat/compat-initgroups.c (getgrent_next_nss)
38031         (_nss_compat_initgroups_dyn): Fall back to malloc/free for large
38032         group memberships.
38034 2012-03-28  David S. Miller  <davem@davemloft.net>
38036         * sysdeps/sparc/sparc32/memcpy.S: Implement mempcpy using a stub
38037         that branches into memcpy.
38038         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
38039         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S: Likewise.
38040         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
38041         * sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: Likewise.
38042         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Add mempcpy multiarch
38043         bits.
38044         * sysdeps/sparc/sparc64/rtld-memcpy.c: Include generic mempcpy
38045         implementation too.
38046         * sysdeps/sparc/mempcpy.S: New file.
38048         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Provide a hidden def to
38049         the IFUNC routine in the libc case.
38050         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
38052         * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memset.c: New file.
38053         * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memcpy.c: New file.
38054         * sysdeps/sparc/sparc32/sparcv9/rtld-memset.c: New file.
38055         * sysdeps/sparc/sparc32/sparcv9/rtld-memcpy.c: New file.
38056         * sysdeps/sparc/sparc64/multiarch/rtld-memset.c: New file.
38057         * sysdeps/sparc/sparc64/multiarch/rtld-memcpy.c: New file.
38058         * sysdeps/sparc/sparc64/rtld-memset.c: New file.
38059         * sysdeps/sparc/sparc64/rtld-memcpy.c: New file.
38061         * sysdeps/sparc/sparc64/multiarch/memset-niagara1.S: Unroll main
38062         loop to 256 bytes instead of 64 bytes and fix test signedness.
38064         * sysdeps/sparc/Makefile: Add -fPIC to ASFLAGS-.os here....
38065         * sysdeps/sparc/sparc32/Makefile: rather than here...
38066         * sysdeps/sparc/sparc64/Makefile: and here.
38068 2012-03-28  Ulrich Drepper  <drepper@gmail.com>
38070         * malloc/mallocbug.c: Avoid warnings about unused variables.
38072 2012-02-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
38074         [BZ #13760]
38075         * resolv/nss_dns/dns-host.c (gaih_getanswer): Look for errno
38076         in the right place. Discard and retry query if response is
38077         larger than input buffer size.
38079 2012-03-28  Joseph Myers  <joseph@codesourcery.com>
38081         [BZ #369]
38082         [BZ #2678]
38083         [BZ #3866]
38084         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Take absolute value of
38085         x for large integer exponent.
38086         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
38087         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.  Adjust
38088         sign of result as needed afterwards.
38089         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
38090         * sysdeps/ieee754/k_standard.c (__kernel_standard): Handle sign of
38091         result for underflowing pow the same as for overflow.
38092         (__kernel_standard_l): Handle powl overflow and underflow here
38093         rather than calling __kernel_standard.
38094         * math/libm-test.inc (pow_test): Add more tests.
38096         [BZ #3868]
38097         [BZ #13879]
38098         [BZ #13910]
38099         [BZ #13911]
38100         [BZ #13912]
38101         [BZ #13913]
38102         [BZ #13915]
38103         [BZ #13916]
38104         [BZ #13917]
38105         [BZ #13918]
38106         [BZ #13919]
38107         [BZ #13920]
38108         [BZ #13921]
38109         * sysdeps/generic/math_private.h (__kernel_standard_l): Declare.
38110         * sysdeps/ieee754/k_standard.c: Include <float.h>.
38111         (__kernel_standard_l): New function.
38112         * math/w_acoshl.c (__acoshl): Use __kernel_standard_l instead of
38113         __kernel_standard.
38114         * math/w_acosl.c (__acosl): Likewise.
38115         * math/w_asinl.c (__asinl): Likewise.
38116         * math/w_atan2l.c (__atan2l): Likewise.
38117         * math/w_atanhl.c (__atanhl): Likewise.
38118         * math/w_coshl.c (__coshl): Likewise.
38119         * math/w_exp10l.c (__exp10l): Likewise.
38120         * math/w_exp2l.c (__exp2l): Likewise.
38121         * math/w_fmodl.c (__fmodl): Likewise.
38122         * math/w_hypotl.c (__hypotl): Likewise.
38123         * math/w_j0l.c (__j0l, __y0l): Likewise.
38124         * math/w_j1l.c (__j1l, __y1l): Likewise.
38125         * math/w_jnl.c (__jnl, __ynl): Likewise.
38126         * math/w_lgammal.c (__lgammal): Likewise.
38127         * math/w_log10l.c (__log10l): Likewise.
38128         * math/w_log2l.c (__log2l): Likewise.
38129         * math/w_logl.c (__logl): Likewise.
38130         * math/w_powl.c (__powl): Likewise.
38131         * math/w_remainderl.c (__remainderl): Likewise.
38132         * math/w_scalbl.c (sysv_scalbl): Likewise.
38133         * math/w_sinhl.c (__sinhl): Likewise.
38134         * math/w_sqrtl.c (__sqrtl): Likewise.
38135         * math/w_tgammal.c (__tgammal): Likewise.
38136         * sysdeps/ieee754/ldbl-128/w_expl.c (__expl): Likewise.
38137         * sysdeps/ieee754/ldbl-96/w_expl.c (__expl): Likewise.
38138         * math/libm-test.inc (acos_test): Add more tests.
38139         (acosh_test): Likewise.
38140         (asin_test): Likewise.
38141         (atanh_test): Likewise.
38142         (exp_test): Likewise.
38143         (exp10_test): Likewise.
38144         (exp2_test): Likewise.
38145         (expm1_test): Likewise.
38146         (lgamma_test): Likewise.
38147         (log_test): Likewise.
38148         (log10_test): Likewise.
38149         (log1p_test): Likewise.
38150         (log2_test): Likewise.
38151         (pow_test): Do not allow some spurious overflow exceptions.
38152         (sqrt_test): Add more tests.
38153         (tgamma_test): Likewise.
38154         (y0_test): Likewise.
38155         (y1_test): Likewise.
38156         (yn_test): Likewise.
38158 2012-03-27  Anton Blanchard  <anton@samba.org>
38160         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Define MAP_STACK and
38161         MAP_HUGETLB.
38162         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
38163         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
38164         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
38166 2012-03-27  David S. Miller  <davem@davemloft.net>
38168         * conform/Makefile: Run run-conformtest.sh using $(BASH).
38170         * sysdeps/sparc/sparc64/Makefile (ASFLAGS-.os): Move before
38171         have-as-vis3 check.
38173 2012-03-27  Andreas Jaeger  <aj@suse.de>
38175         * sysdeps/x86_64/elf/configure.in: Moved to ...
38176         * sysdeps/x86_64/configure.in: ... here.
38177         * sysdeps/x86_64/elf/start.S: Moved to ...
38178         * sysdeps/x86_64/start.S: ... here.
38179         * sysdeps/x86_64/elf/configure: Delete.
38181         * sysdeps/x86_64/configure.in: Merge contents from
38182         sysdeps/i386/configure.in (without i686 check).
38184         * sysdeps/i386/elf/Versions: Merge into ...
38185         * sysdeps/i386/Versions: ... this.
38186         * sysdeps/i386/elf/Versions: Delete file.
38187         * sysdeps/i386/elf/start.S: Moved to ...
38188         * sysdeps/i386/start.S: ...here.
38189         * sysdeps/i386/elf/configure.in: Merge into...
38190         * sysdeps/i386/configure.in: ...here.
38191         * sysdeps/i386/elf/configure.in: Delete file.
38192         * sysdeps/i386/elf/configure: Delete file.
38194         * sysdeps/generic/elf/backtracesyms.c: Moved to ...
38195         * debug/backtracesyms.c: ... here.
38196         * sysdeps/generic/elf/backtracesymsfd.c: Moved to ...
38197         * debug/backtracesymsfd.c: ... here.
38198         * sysdeps/generic/elf/ifunc-sel.h: Moved to ...
38199         * sysdeps/generic/ifunc-sel.h: ... here.
38201         * sysdeps/unix/i386/start.c: Delete file.
38202         * sysdeps/unix/sparc/start.c: Delete file.
38203         * sysdeps/unix/start.c: Delete file.
38205         * sysdeps/sh/elf/configure.in: Moved to ...
38206         * sysdeps/sh/configure.in: ... here.
38207         * sysdeps/sh/elf/start.S: Moved to ...
38208         * sysdeps/sh/start.S: ... here.
38209         * sysdeps/sh/elf/configure: Delete file.
38211         * sysdeps/powerpc/powerpc64/elf/bzero.S: Moved to ...
38212         * sysdeps/powerpc/powerpc64/bzero.S: ... here.
38213         * sysdeps/powerpc/powerpc64/elf/entry.h: Moved to ...
38214         * sysdeps/powerpc/powerpc64/entry.h: ... here.
38215         * sysdeps/powerpc/powerpc64/elf/start.S: Moved to ...
38216         * sysdeps/powerpc/powerpc64/start.S: here.
38217         * sysdeps/powerpc/powerpc64/elf/Makefile: Merge into ...
38218         * sysdeps/powerpc/powerpc64/Makefile: ... this.
38219         * sysdeps/powerpc/powerpc64/elf/configure.in: Merge into ...
38220         * sysdeps/powerpc/powerpc64/configure.in: ... this.
38221         * sysdeps/powerpc/powerpc64/elf/configure: Delete file.
38223         * sysdeps/powerpc/powerpc32/elf/bzero.S: Moved to ...
38224         * sysdeps/powerpc/powerpc32/bzero.S: ... here.
38225         * sysdeps/powerpc/powerpc32/elf/start.S: Moved to ...
38226         * sysdeps/powerpc/powerpc32/start.S: ... here.
38227         * sysdeps/powerpc/powerpc32/elf/configure.in: Merge into ...
38228         * sysdeps/powerpc/powerpc32/configure.in: ... this.
38229         * sysdeps/powerpc/powerpc32/elf/configure: Delete file.
38231         * sysdeps/powerpc/elf/ifunc-sel.h: Moved to ...
38232         * sysdeps/powerpc/ifunc-sel.h: ... here.
38233         * sysdeps/powerpc/elf/rtld-global-offsets.sym: Moved to ...
38234         * sysdeps/powerpc/rtld-global-offsets.sym: ... here.
38236         * sysdeps/sparc/elf/configure.in: Moved to ...
38237         * sysdeps/sparc/configure.in: ... here.
38238         * sysdeps/sparc/elf/configure: Delete file.
38239         * sysdeps/sparc/sparc32/elf/start.S: Moved to ...
38240         * sysdeps/sparc/sparc32/start.S: ... here.
38241         * sysdeps/sparc/sparc64/elf/start.S: Moved to ...
38242         * sysdeps/sparc/sparc64/start.S: ... here.
38243         * sysdeps/sparc/sparc32/elf/Makefile: Merged into ...
38244         * sysdeps/sparc/sparc32/Makefile: ... this.
38245         * sysdeps/sparc/sparc64/elf/Makefile: Merged into ...
38246         * sysdeps/sparc/sparc64/Makefile: ... this.
38248         * sysdeps/s390/s390-32/elf/bsd-_setjmp.S: Moved to ...
38249         * sysdeps/s390/s390-32/bsd-_setjmp.S: ... here.
38250         * sysdeps/s390/s390-32/elf/bsd-setjmp.S: Moved to ...
38251         * sysdeps/s390/s390-32/bsd-setjmp.S: ... here.
38252         * sysdeps/s390/s390-32/elf/setjmp.S: Moved to ...
38253         * sysdeps/s390/s390-32/setjmp.S: ... here.
38254         * sysdeps/s390/s390-32/elf/configure.in: Moved to ...
38255         * sysdeps/s390/s390-32/configure.in: ... here.
38256         * sysdeps/s390/s390-32/elf/configure: Delete file.
38257         * sysdeps/s390/s390-32/elf/start.S: Moved to ...
38258         * sysdeps/s390/s390-32/start.S: ... here.
38260         * sysdeps/s390/s390-64/elf/bsd-_setjmp.S: Moved to ...
38261         * sysdeps/s390/s390-64/bsd-_setjmp.S: ... here.
38262         * sysdeps/s390/s390-64/elf/bsd-setjmp.S: Moved to ...
38263         * sysdeps/s390/s390-64/bsd-setjmp.S: ... here.
38264         * sysdeps/s390/s390-64/elf/setjmp.S: Moved to ...
38265         * sysdeps/s390/s390-64/setjmp.S: ... here.
38266         * sysdeps/s390/s390-64/elf/configure.in: Moved to ...
38267         * sysdeps/s390/s390-64/configure.in: ... here
38268         * sysdeps/s390/s390-64/elf/configure: Delete file.
38269         * sysdeps/s390/s390-64/elf/start.S: Moved to ...
38270         * sysdeps/s390/s390-64/start.S: ... here.
38271         * sysdeps/s390/s390-64/elf/configure: Delete.
38273         * configure.in: Remove support for elf directories in sysdeps.
38275         * configure: Regenerated.
38276         * sysdeps/i386/configure: Regenerated.
38277         * sysdeps/powerpc/powerpc32/configure: Regenerated.
38278         * sysdeps/powerpc/powerpc64/configure: Regenerated.
38279         * sysdeps/s390/s390-32/configure: Regenerated.
38280         * sysdeps/s390/s390-64/configure: Regenerated.
38281         * sysdeps/sh/configure: Regenerated.
38282         * sysdeps/sparc/configure: Regenerated.
38283         * sysdeps/x86_64/configure: Regenerated.
38285 2012-03-26  Andreas Schwab  <schwab@linux-m68k.org>
38287         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
38289         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (lomark): Adjust to take
38290         denormal result into account.
38292 2012-03-25  Roland McGrath  <roland@hack.frob.com>
38294         * posix/confstr.c (confstr): Lift RESTENVS definition to function scope.
38295         Reported by Allan McRae <allan@archlinux.org>.
38297 2012-03-23  Jeff Law  <law@redhat.com>
38299         * nss/getnssent.c (__nss_getent): Fix typo.
38301 2012-03-23  David S. Miller  <davem@davemloft.net>
38303         * sysdeps/sparc/fpu/libm-test-ulps: Update.
38305 2012-03-23  H.J. Lu  <hongjiu.lu@intel.com>
38307         * sysdeps/x86_64/dl-tlsdesc.h (tlsdesc): Use anonymous union
38308         to pad to uint64_t for each field.
38309         (dl_tls_index): Replace unsigned long with uint64_t.
38311 2012-03-23  Daniel Jacobowitz  <dmj@google.com>
38312         Paul Pluzhnikov  <ppluzhnikov@google.com>
38314         [BZ #6528]
38315         * grp/Makefile (otherlibs): Don't set it.
38316         * inet/Makefile (otherlibs): Likewise.
38317         * login/Makefile (otherlibs): Likewise.
38318         * nscd/Makefile (otherlibs): Likewise.
38319         * posix/Makefile (otherlibs): Likewise.
38320         * pwd/Makefile (otherlibs): Likewise.
38321         * rt/Makefile (otherlibs): Likewise.
38322         * sunrpc/Makefile (otherlibs): Likewise.
38323         * nss/Makefile (otherlibs): Likewise.
38324         Add libnss_files to routines and static-only-routines.
38325         ($(objpfx)getent): Remove rule.
38326         * resolv/Makefile: Add libnss_dns and libresolv to routines and
38327         static-only-routines.
38329 2012-03-22  Joseph Myers  <joseph@codesourcery.com>
38331         [BZ #13892]
38332         * math/s_cexp.c: Include <float.h>.
38333         (__cexp): Handle exp result overflowing not necessarily
38334         overflowing both real and imaginary parts of result.
38335         * math/s_cexpf.c: Likewise.
38336         * math/s_cexpl.c: Likewise.
38337         * math/libm-test.inc (cexp_test): Add more tests.
38338         * sysdeps/i386/fpu/libm-test-ulps: Update.
38339         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
38341 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
38343         * include/link.h (ELFW): New macro.
38344         * sysdeps/x86_64/dl-irel.h: Replace Elf64_XXX with ElfW(XXX).
38345         Replace ELF64_R_TYPE with ELFW(R_TYPE).
38347 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
38349         * sysdeps/x86_64/dl-tls.h (dl_tls_index): Replace unsigned long
38350         with uint64_t.
38352 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
38354         * sysdeps/generic/ldsodefs.h (struct La_x32_regs): New forward
38355         declaration.
38356         (struct La_x32_retval): Likewise.
38358 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
38360         * sysdeps/x86_64/preconfigure.in: New file.
38361         * sysdeps/x86_64/preconfigure: New generated file.
38363 2012-03-22  Joseph Myers  <joseph@codesourcery.com>
38365         [BZ #13824]
38366         * math/e_exp2l.c: Include <float.h>.
38367         (__ieee754_exp2l): Handle overflow and underflow cases
38368         separately.  Only pass fractional part of argument to
38369         __ieee754_expl.
38370         * math/libm-test.inc (exp2_test): Add more tests.
38372         * sysdeps/ieee754/ldbl-128/k_cosl.c (__kernel_cosl): Negate y if
38373         negating x to take absolute value.
38374         * sysdeps/ieee754/ldbl-128/k_sincosl.c (__kernel_sincosl):
38375         Likewise.
38376         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
38377         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c (__kernel_sincosl):
38378         Likewise.
38379         * sysdeps/ieee754/ldbl-128/k_sinl.c (__kernel_sinl): Negate y when
38380         computing low part if x was negated.
38381         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
38383 2012-03-21  H.J. Lu  <hongjiu.lu@intel.com>
38385         * elf/tst-auditmod1.c: Support la_x32_gnu_pltenter and
38386         la_x32_gnu_pltexit.
38387         (pltexit): Cast int_retval to ptrdiff_t.
38388         * elf/tst-auditmod3b.c: Likewise.
38389         * elf/tst-auditmod4b.c: Likewise.
38390         * elf/tst-auditmod5b.c: Likewise.
38391         * elf/tst-auditmod6b.c: Likewise.
38392         * elf/tst-auditmod6c.c: Likewise.
38393         * elf/tst-auditmod7b.c: Likewise.
38395         * sysdeps/generic/ldsodefs.h (audit_ifaces): Add x32_gnu_pltenter
38396         and x32_gnu_pltexit.
38398         * sysdeps/x86_64/bits/link.h: Check __x86_64__ instead of
38399         __ELF_NATIVE_CLASS.
38400         (La_x32_regs): New macro.
38401         (La_x32_retval): Likewise.
38402         (la_x32_gnu_pltenter): New function prototype.
38403         (la_x32_gnu_pltexit): Likewise.
38405 2012-03-21  Andreas Schwab  <schwab@linux-m68k.org>
38407         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (huge, tiny): Correct
38408         exponent.
38410         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
38412         * configure.in (libc_cv_cc_nofma): Check for option to disable
38413         generation of FMA instructions.
38414         * configure: Regenerate.
38415         * config.make.in (config-cflags-nofma): Set from libc_cv_cc_nofma.
38416         * sysdeps/ieee754/dbl-64/Makefile: New file.
38417         * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
38418         Remove brandred-fma4.
38419         (CFLAGS-brandred-fma4.c): Remove.
38420         * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: Remove.
38421         * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c (__branred): Don't
38422         define.
38423         * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c (__branred): Don't
38424         define.
38426 2012-03-21  H.J. Lu  <hongjiu.lu@intel.com>
38428         * stdio-common/_itoa.c: Check _ITOA_NEEDED instead of
38429         LLONG_MAX != LONG_MAX.
38430         (_itoa_word): Use _ITOA_WORD_TYPE on value.
38431         (_fitoa_word): Likewise.
38432         * stdio-common/_itowa.c: Check _ITOA_NEEDED instead of
38433         LLONG_MAX != LONG_MAX.
38434         * stdio-common/_itowa.h: Include <_itoa.h>.
38435         (_itowa_word): Use _ITOA_WORD_TYPE on value.
38436         (_itowa): New macro.  Defined only if _ITOA_NEEDED is false.
38437         * sysdeps/generic/_itoa.h (_ITOA_NEEDED): New macro.  Defined
38438         only if not defined.
38439         (_ITOA_WORD_TYPE): Likewise.
38440         (_itoa_word): Use _ITOA_WORD_TYPE on value.
38441         Check !_ITOA_NEEDED instead of LONG_MAX == LLONG_MAX.
38443 2012-03-21  David S. Miller  <davem@davemloft.net>
38445         * sysdeps/sparc/fpu/libm-test-ulps: Update.
38447 2012-03-21  H.J. Lu  <hongjiu.lu@intel.com>
38449         * sysdeps/unix/sysv/linux/configure.in: Check x86_64* instead
38450         of x86_64 when setting libc_cv_slibdir, libdir and
38451         libc_cv_localedir.
38452         * sysdeps/unix/sysv/linux/configure: Regenerated.
38454 2012-03-21  Joseph Myers  <joseph@codesourcery.com>
38456         * manual/lang.texi (Old Varargs): Remove section.
38457         (How Variadic): Update menu.
38458         (va_start): Do not mention varargs.h.
38460 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
38461             Joseph Myers  <joseph@codesourcery.com>
38463         * configure.in (libc_cv_ssp): Use LIBC_TRY_CC_OPTION instead of a
38464         link test.
38465         * configure: Regenerated.
38467 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
38469         * conform/conformtest.pl: Handle --tmpdir argument, defaulting to /tmp.
38470         * conform/run-conformtest.sh: Pass --tmpdir argument when invoking
38471         conformtest.pl
38473 2012-03-21  Joseph Myers  <joseph@codesourcery.com>
38475         * NOTES: Remove.
38476         * Makefile (files-for-dist): Remove NOTES.
38477         (NOTES): Remove rule.
38478         * README: Don't refer to NOTES.
38479         * manual/creature.texi: Don't include macros.texi.
38480         * manual/intro.texi (creature.texi): Remove comment referring to
38481         NOTES.
38483         * aclocal.m4 (LIBC_TRY_CC_OPTION): New macro.
38484         * configure.in (libc_cv_cc_submachine): Use LIBC_TRY_CC_OPTION.
38485         * configure: Regenerated.
38486         * sysdeps/i386/configure.in (libc_cv_cc_sse4): Use
38487         LIBC_TRY_CC_OPTION.
38488         (libc_cv_as_i686): Likewise.
38489         (libc_cv_cc_avx): Likewise.
38490         (libc_cv_cc_sse2avx): Likewise.
38491         (libc_cv_cc_fma4): Likewise.
38492         (libc_cv_cc_novzeroupper): Likewise.
38493         * sysdeps/i386/configure: Regenerated.
38495         [BZ #13883]
38496         * sysdeps/i386/fpu/s_cexp.S: Remove.
38497         * sysdeps/i386/fpu/s_cexpf.S: Likewise.
38498         * sysdeps/i386/fpu/s_cexpl.S: Likewise.
38499         * math/libm-test.inc (cexp_test): Add more tests.
38500         * sysdeps/i386/fpu/libm-test-ulps: Update.
38501         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
38503 2012-03-21  Allan McRae  <allan@archlinux.org>
38505         * timezone/Makefile: Do not install iso3166.tab and zone.tab
38507 2012-03-21  Joseph Myers  <joseph@codesourcery.com>
38509         [BZ #13871]
38510         * math/w_exp2.c: Do not include <float.h>.
38511         (o_threshold, u_threshold): Remove.
38512         (__exp2): Calculate result before checking finiteness and calling
38513         __kernel_standard.
38514         * math/w_exp2f.c: Likewise.
38515         * math/w_exp2l.c: Likewise.
38516         * math/libm-test.inc (exp2_test): Require overflow exception for
38517         1e6 input.
38519         [BZ #3866]
38520         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Test for y outside the
38521         range of signed 64-bit integers before using fistpll.  Remove
38522         checks for whether integers fit in mantissa bits.
38523         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Test for y outside
38524         the range of signed 32-bit integers before using fistpl.  Remove
38525         checks for whether integers fit in mantissa bits.
38526         * sysdeps/i386/fpu/e_powl.S (p64): New object.
38527         (__ieee754_powl): Test for y outside the range of signed 64-bit
38528         integers before using fistpll.  Reduce 64-bit values to 63-bit
38529         ones as needed.
38530         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Ensure
38531         divide-by-zero is raised for zero to large negative powers.
38532         * sysdeps/x86_64/fpu/e_powl.S (p64): New object.
38533         (__ieee754_powl): Test for y outside the range of signed 64-bit
38534         integers before using fistpll.  Reduce 64-bit values to 63-bit
38535         ones as needed.
38536         * math/libm-test.inc (pow_test): Add more tests.
38538 2012-03-20  H.J. Lu  <hongjiu.lu@intel.com>
38540         * debug/backtracesymsfd.c: Include <_itoa.h> instead of
38541         <stdio-common/_itoa.h>.
38542         * debug/segfault.c: Likewise.
38543         * elf/dl-cache.c: Likewise.
38544         * elf/dl-minimal.c: Likewise.
38545         * elf/dl-misc.c: Likewise.
38546         * elf/dl-sysdep.c: Likewise.
38547         * elf/dl-version.c: Likewise.
38548         * elf/rtld.c: Likewise.
38549         * hurd/hurdsock.c: Likewise.
38550         * hurd/lookup-retry.c: Likewise.
38551         * malloc/malloc.c: Likewise.
38552         * malloc/mtrace.c: Likewise.
38553         * nscd/nscd_getgr_r.c: Likewise.
38554         * nscd/nscd_getpw_r.c: Likewise.
38555         * nscd/nscd_getserv_r.c: Likewise.
38556         * posix/getopt_init.c: Likewise.
38557         * posix/wordexp.c: Likewise.
38558         * stdio-common/_itoa.c: Likewise.
38559         * stdio-common/printf_fphex.c: Likewise.
38560         * stdio-common/vfprintf.c: Likewise.
38561         * string/_strerror.c: Likewise.
38562         * sysdeps/generic/elf/backtracesymsfd.c: Likewise.
38563         * sysdeps/i386/i686/hp-timing.h: Likewise.
38564         * sysdeps/mach/_strerror.c: Likewise.
38565         * sysdeps/mach/hurd/powerpc/register-dump.h: Likewise.
38566         * sysdeps/mach/hurd/sethostid.c: Likewise.
38567         * sysdeps/mach/hurd/xmknodat.c: Likewise.
38568         * sysdeps/mach/xpg-strerror.c: Likewise.
38569         * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
38570         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
38571         * sysdeps/powerpc/powerpc32/register-dump.h: Likewise.
38572         * sysdeps/powerpc/powerpc64/dl-machine.c: Likewise.
38573         * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
38574         * sysdeps/powerpc/powerpc64/register-dump.h: Likewise.
38575         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
38576         * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
38577         * sysdeps/unix/sysv/linux/fd_to_filename.h: Likewise.
38578         * sysdeps/unix/sysv/linux/futimes.c: Likewise.
38579         * sysdeps/unix/sysv/linux/i386/register-dump.h: Likewise.
38580         * sysdeps/unix/sysv/linux/ptsname.c: Likewise.
38581         * sysdeps/unix/sysv/linux/s390/s390-32/register-dump.h: Likewise.
38582         * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h: Likewise.
38583         * sysdeps/unix/sysv/linux/sh/sh3/register-dump.h: Likewise.
38584         * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Likewise.
38585         * sysdeps/unix/sysv/linux/sparc/sparc32/register-dump.h: Likewise.
38586         * sysdeps/unix/sysv/linux/sparc/sparc64/register-dump.h: Likewise.
38587         * sysdeps/unix/sysv/linux/ttyname.c: Likewise.
38588         * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
38589         * sysdeps/unix/sysv/linux/x86_64/register-dump.h: Likewise.
38591         * stdio-common/_itoa.c: Include <_itoa.h> instead of "_itoa.h".
38593         * stdio-common/_itoa.h: Moved to ...
38594         * sysdeps/generic/_itoa.h: Here.
38596         * stdio-common/_itowa.c: Include <_itowa.h> instead of "_itowa.h".
38598         * stdio-common/printf_fphex.c: Include <_itoa.h> and <_itowa.h>
38599         instead of "_itoa.h" and "_itowa.h".
38600         * stdio-common/vfprintf.: Likewise.
38602 2012-03-20  H.J. Lu  <hongjiu.lu@intel.com>
38604         * sysdeps/x86_64/fpu/bits/mathinline.h: Don't include
38605         <bits/wordsize.h>.
38606         (__signbitf): Check __x86_64__ instead of __WORDSIZE.
38607         (__signbit): Likwise.
38608         (llrintf): Likwise.
38609         (llrint): Likwise.
38611 2012-03-20  H.J. Lu  <hongjiu.lu@intel.com>
38613         * sysdeps/x86_64/bits/setjmp.h (__jmp_buf): Support x86-64 with
38614         __WORDSIZE != 64.
38616 2012-03-20  Joseph Myers  <joseph@codesourcery.com>
38618         * math/gen-libm-test.pl (%beautify): Add OVERFLOW_EXCEPTION and
38619         OVERFLOW_EXCEPTION_OK.
38620         * math/libm-test.inc ("Philosophy"): Update comment about
38621         exception testing.
38622         (OVERFLOW_EXCEPTION): Define.
38623         (OVERFLOW_EXCEPTION_OK): Likewise.
38624         (INVALID_EXCEPTION_OK): Renumber.
38625         (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
38626         (IGNORE_ZERO_INF_SIGN): Likewise.
38627         (test_exceptions): Handle FE_OVERFLOW.
38628         (exp10_test): Expect overflow exceptions.
38629         (exp2_test): Likewise.
38630         (expm1_test): Likewise.
38631         (nextafter_test): Likewise.
38632         (pow_test): Likewise.
38633         (scalbn_test): Likewise.
38634         (scalbln_test): Likewise.
38636 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
38638         * sysdeps/x86_64/bits/atomic.h
38639         (__arch_c_compare_and_exchange_val_64_acq): Use atomic64_t on
38640         64bit integer.
38641         (atomic_exchange_acq): Likewise.
38642         (__arch_exchange_and_add_body): Likewise.
38643         (__arch_add_body): Likewise.
38644         (atomic_add_negative): Likewise.
38645         (atomic_add_zero): Likewise.
38647 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
38649         * sysdeps/x86_64/fpu/bits/fenv.h: Don't include <bits/wordsize.h>.
38650         (fenv_t): Check __x86_64__ instead of __WORDSIZE.
38652 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
38654         * sysdeps/x86_64/bits/mathdef.h: Don't include <bits/wordsize.h>.
38655         Check __x86_64__ instead of __WORDSIZE.
38657 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
38659         * sysdeps/unix/sysv/linux/x86_64/ldd-rewrite.sed: Support x32.
38661 2012-03-19  David S. Miller  <davem@davemloft.net>
38663         * sysdeps/sparc/fpu/libm-test-ulps: Update.
38665         * sysdeps/sparc/fpu/fenv_private.h: New file.
38666         * sysdeps/sparc/fpu/math_private.h: Use it.
38667         (libc_feholdexcept, libc_feholdexceptf, libc_feholdexceptl):
38668         Remove.
38669         (libc_feholdexcept_setround, libc_feholdexcept_setroundf)
38670         (libc_feholdexcept_setroundl): Remove.
38671         (libc_fetestexcept, libc_fetestexceptf, libc_fetestexceptl):
38672         Remove.
38673         (libc_fesetenv, libc_fesetenvf, libc_fesetenvl): Remove.
38674         (libc_feupdateenv, libc_feupdateenvf, libc_feupdateenvf): Remove.
38676 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
38678         * sysdeps/x86_64/fpu/math_private.h (EXTRACT_WORDS64): Use
38679         int64_t instead of long int.
38680         (INSERT_WORDS64): Likwise.
38682 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
38684         * sysdeps/x86_64/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ): Cast
38685         _Unwind_GetCFA return to _Unwind_Ptr first.
38687 2012-03-19  Joseph Myers  <joseph@codesourcery.com>
38689         [BZ #13629]
38690         * math/s_clog.c: Include <float.h>.
38691         (__clog): Scale large or subnormal inputs.
38692         * math/s_clogf.c: Likewise.
38693         * math/s_clogl.c: Likewise.
38694         * math/s_clog10.c: Include <float.h>.
38695         (M_LOG10_2): Define.
38696         (__clog10): Scale large or subnormal inputs.
38697         * math/s_clog10f.c: Likewise.
38698         * math/s_clog10l.c: Likewise.
38699         * math/libm-test.inc (clog_test): Add more tests.
38700         (clog10_test): Likewise.
38701         * sysdeps/i386/fpu/libm-test-ulps: Update.
38702         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
38704         [BZ #11451]
38705         * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Scale large
38706         x and y.
38707         * math/libm-test.inc (atan2_test): Add another test.
38709         * Makerules (common-objdir-compile): Remove.
38710         * sysdeps/unix/Makefile (config-generated): Do not add
38711         $(unix-generated) to variable.
38712         [generic bits/local_lim.h] (mk-local_lim-CFLAGS): Remove variable.
38713         [generic bits/local_lim.h] ($(common-objpfx)bits/local_lim.h):
38714         Remove rule.
38715         [generic bits/local_lim.h] ($(common-objpfx)mk-local_lim):
38716         Likewise.
38717         [generic bits/local_lim.h] (before-compile): Do not append to
38718         variable.
38719         [generic bits/local_lim.h] (common-generated): Likewise.
38720         [generic sys/param.h] (before-compile): Do not append to variable.
38721         [generic sys/param.h] ($(common-objpfx)sys/param.h): Remove rule.
38722         [generic sys/param.h] ($(common-objpfx)param.h.c): Likewise.
38723         [generic sys/param.h] ($(common-objpfx)param.h.dep): Likewise.
38724         [generic sys/param.h] ($(common-objpfx)param.h.dep): Do not
38725         include.
38726         [generic sys/param.h] (sys/param.h-includes): Remove variable.
38727         [generic sys/param.h] (sys/param.h-includes): Remove rule.
38728         [generic sys/param.h] ($(addprefix
38729         $(common-objpfx),$(sys/param.h-includes))): Likewise.
38730         [generic sys/param.h] (common-generated): Do not append to
38731         variable.
38732         [generic sys/param.h] (sysdep_headers): Likewise.
38733         [generic bits/errno.h] (before-compile): Do not append to
38734         variable.
38735         [generic bits/errno.h] ($(common-objpfx)bits/errno.h): Remove
38736         rule.
38737         [generic bits/errno.h] ($(common-objpfx)make-errnos): Likewise.
38738         [generic bits/errno.h] ($(common-objpfx)make-errnos.c): Likewise.
38739         [generic bits/errno.h] ($(common-objpfx)errnos): Likewise.
38740         [generic bits/errno.h] (common-generated): Do not append to
38741         variable.
38742         [generic bits/ioctls.h] (before-compile): Do not append to
38743         variable.
38744         [generic bits/ioctls.h] ($(common-objpfx)bits/ioctls.h): Remove
38745         rule.
38746         [generic bits/ioctls.h] (ioctl-includes): Remove variable.
38747         [generic bits/ioctls.h] (make-ioctls-CFLAGS): Likewise.
38748         [generic bits/ioctls.h] ($(common-objpfx)make-ioctls): Remove
38749         rule.
38750         [generic bits/ioctls.h] ($(common-objpfx)make-ioctls.c): Likewise.
38751         [generic bits/ioctls.h] (bits_termios.h): Remove variable.
38752         [generic bits/ioctls.h] ($(common-objpfx)ioctls): Remove rule.
38753         [generic bits/ioctls.h] (common-generated): Do not append to
38754         variable.
38755         [generic sys/syscall.h] (syscall.h): Remove variable.
38756         [generic sys/syscall.h] ($(common-objpfx)sys/syscall.h): Remove
38757         rule.
38758         [generic sys/syscall.h] (before-compile): Do not append to
38759         variable.
38760         [generic sys/syscall.h] (common-generated): Likewise.
38761         * sysdeps/unix/errnos-tmpl.c: Remove file.
38762         * sysdeps/unix/errnos.awk: Likewise.
38763         * sysdeps/unix/ioctls-tmpl.c: Likewise.
38764         * sysdeps/unix/ioctls.awk: Likewise.
38765         * sysdeps/unix/mk-local_lim.c: Likewise.
38766         * sysdeps/unix/snarf-ioctls: Likewise.
38768 2012-03-19  Richard Henderson  <rth@twiddle.net>
38770         * sysdeps/i386/fpu/fenv_private.h: New file.
38771         * sysdeps/i386/fpu/math_private.h: Use it.
38772         (math_opt_barrier, math_force_eval): Remove.
38773         (libc_feholdexcept_setround_53bit): Remove.
38774         (libc_feupdateenv_53bit): Remove.
38775         * sysdeps/x86_64/fpu/math_private.h: Likewise.
38776         (math_opt_barrier, math_force_eval): Remove.
38777         (libc_feholdexcept): Remove.
38778         (libc_feholdexcept_setround): Remove.
38779         (libc_fetestexcept, libc_fesetenv): Remove.
38780         (libc_feupdateenv_test): Remove.
38781         (libc_feupdateenv, libc_feholdsetround): Remove.
38782         (libc_feresetround): Remove.
38784         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Avoid the fldenv.
38785         * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Likewise.
38787         * sysdeps/generic/math_private.h (default_libc_feupdateenv_test): New.
38788         (libc_feupdateenv_test, libc_feupdateenv_testf): New.
38789         (libc_feupdateenv_testl): New.
38790         * sysdeps/x86_64/fpu/math_private.h (libc_feupdateenv_test): New.
38791         (libc_feupdateenv_testf): New.
38792         (libc_feupdateenv): Use libc_feupdateenv_test.
38793         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use libc_feupdateenv_test.
38794         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Likewise.
38796         * sysdeps/generic/math_private.h (libc_feholdsetround): New.
38797         (libc_feholdsetroundf, libc_feholdsetroundl): New.
38798         (libc_feresetround, libc_feresetroundf, libc_feresetroundl): New.
38799         (libc_feresetround_noex): New.
38800         (libc_feresetround_noexf): New.
38801         (libc_feresetround_noexl): New.
38802         (SET_RESTORE_ROUND, SET_RESTORE_ROUNDF, SET_RESTORE_ROUNDL): New.
38803         (SET_RESTORE_ROUND_NOEX, SET_RESTORE_ROUND_NOEXF): New.
38804         (SET_RESTORE_ROUND_NOEXL, SET_RESTORE_ROUND_53BIT): New.
38805         * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Use
38806         SET_RESTORE_ROUND.
38807         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Likewise.
38808         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use SET_RESTORE_ROUND_53BIT.
38809         (__cos): Likewise.
38810         * sysdeps/ieee754/dbl-64/s_tan.c (__tan): Likewise.
38811         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Use
38812         SET_RESTORE_ROUND_NOEX.
38813         * sysdeps/ieee754/dbl-64/e_exp2f.c (__ieee754_exp2f): Use
38814         SET_RESTORE_ROUND_NOEXF.
38815         * sysdeps/ieee754/flt-32/e_expf.c (__ieee754_expf): Likewise.
38816         * sysdeps/x86_64/fpu/math_private.h (libc_feholdsetround): New.
38817         (libc_feholdsetroundf): New.
38818         (libc_feresetround, libc_feresetroundf): New.
38820         * sysdeps/i386/fpu/math_private.h: Include <fenv.h>, <fpu_control.h>.
38821         (libc_feholdexcept_setround_53bit): Convert from macro to function.
38822         (libc_feupdateenv_53bit): Likewise.  Don't force _FPU_EXTENDED.
38824         * sysdeps/generic/math_private.h: Include <fenv.h>.
38825         (default_libc_feholdexcept): New.
38826         (default_libc_feholdexcept_setround): New.
38827         (default_libc_fesetenv, default_libc_feupdateenv): New.
38828         (libc_feholdexcept): Only define if undefined.
38829         (libc_feholdexceptf, libc_feholdexceptl): Likewise.
38830         (libc_feholdexcept_setround, libc_feholdexcept_setroundf): Likewise.
38831         (libc_feholdexcept_setroundl): Likewise.
38832         (libc_feholdexcept_setround_53bit): Likewise.
38833         (libc_fetestexcept, libc_fetestexceptf, libc_fetestexceptl): Likewise.
38834         (libc_fesetenv, libc_fesetenvf, libc_fesetenvl): Likewise.
38835         (libc_feupdateenv, libc_feupdateenvf, libc_feupdateenvl): Likewise.
38836         (libc_feupdateenv_53bit): Likewise.
38837         * sysdeps/x86_64/fpu/math_private.h: Include <fenv.h>.
38838         (libc_feholdexcept): Convert from macro to inline function.
38839         (libc_feholdexcept_setround, libc_fetestexcept): Likewise.
38840         (libc_fesetenv, libc_feupdateenv): Likewise.
38842         * sysdeps/generic/math_private.h (GET_HIGH_WORD): Define only if
38843         not previously defined.
38844         (GET_LOW_WORD, EXTRACT_WORDS64, INSERT_WORDS): Likewise.
38845         (INSERT_WORDS64, SET_HIGH_WORD, SET_LOW_WORD): Likewise.
38846         (GET_FLOAT_WORD, SET_FLOAT_WORD): Likewise.
38847         * sysdeps/ieee754/dbl-64/wordsize-64/math_private.h: New file.
38848         * sysdeps/ieee754/flt-32/math_private.h: New file.
38849         * sysdeps/x86_64/fpu/math_private.h: Move the include_next of
38850         math_private.h below SET_FLOAT_WORD.
38851         (__isnan, __isinf_ns, __finite): Remove.
38852         (__isnanf, __isinf_nsf, __finitef): Remove.
38854 2012-03-18  Andreas Schwab  <schwab@linux-m68k.org>
38856         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
38858 2012-03-17  David S. Miller  <davem@davemloft.net>
38860         [BZ #6471]
38861         * sysdeps/unix/sysv/linux/sparc/Versions: Add __getshmlba entry
38862         for 2.16.
38864 2012-03-16  David S. Miller  <davem@davemloft.net>
38866         * sysdeps/unix/sysv/linux/shmat.c (shmat): Use -1l to avoid
38867         warnings.
38869         [BZ #6471]
38870         * sysdeps/unix/sysv/linux/shmat.c (shmat): Test for syscall errors
38871         properly.
38872         * sysdeps/unix/sysv/linux/sparc/getshmlba.c: New file.
38873         * sysdeps/unix/sysv/linux/sparc/Makefile: Add getshmlba to
38874         sysdep_routines when subdir is sysvipc.
38875         * sysdeps/unix/sysv/linux/sparc/bits/shm.h (SHMLBA): Use new
38876         __getshmlba helper.
38878         * sysdeps/sparc/fpu/libm-test/ulps: Update.
38880 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
38882         * sysdeps/x86_64/ffsll.c (ffsl): Define alias only under
38883         [__LP64__].
38885 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
38887         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Moved to ...
38888         * sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c: This.
38889         (__lround): Renamed to ...
38890         (__llround): This.  Replace long int with long long int.
38891         Define lround functions as aliases of llround functions.
38892         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Empty file.
38894 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
38896         * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
38897         Use greg_t on sp.  Use unsigned int on idx_uc_link.  Cast
38898         adresses to uintptr_t.  Replace "long int" and "unsigned long
38899         int" with "greg_t" on va_arg.
38901 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
38903         * sysdeps/generic/ldconfig.h (FLAG_X8664_LIBX32): New macro.
38904         * elf/cache.c (print_entry): Handle FLAG_X8664_LIBX32.
38906         * sysdeps/unix/sysv/linux/i386/readelflib.c (process_elf_file):
38907         Move e_machine check before EI_CLASS check.  Handle x32
38908         libraries.  Check EM_IA_64 only if SKIP_EM_IA_64 isn't defined.
38909         * sysdeps/unix/sysv/linux/x86_64/readelflib.c: Just define
38910         SKIP_EM_IA_64 and include
38911         <sysdeps/unix/sysv/linux/i386/readelflib.c>.
38913         * sysdeps/unix/sysv/linux/x86_64/dl-cache.h:
38914         Don't include <sysdeps/unix/sysv/linux/sparc/dl-cache.h>.
38915         (add_system_dir): New macro.
38917         * sysdeps/unix/sysv/linux/x86_64/ldconfig.h
38918         (SYSDEP_KNOWN_INTERPRETER_NAMES): Add /libx32/ld-linux-x32.so.2.
38920 2012-03-16  Joseph Myers  <joseph@codesourcery.com>
38922         [BZ #2551]
38923         [BZ #2552]
38924         [BZ #2553]
38925         [BZ #2554]
38926         [BZ #2562]
38927         [BZ #2563]
38928         [BZ #2565]
38929         [BZ #2566]
38930         [BZ #2576]
38931         * math/w_j0.c (j0): Don't produce TLOSS errors for POSIX libm.
38932         (y0): Likewise.
38933         * math/w_j0f.c (j0f): Likewise.
38934         (y0f): Likewise.
38935         * math/w_j0l.c (__j0l): Likewise.
38936         (__y0l): Likewise.
38937         * math/w_j1.c (j1): Likewise.
38938         (y1): Likewise.
38939         * math/w_j1f.c (j1f): Likewise.
38940         (y1f): Likewise.
38941         * math/w_j1l.c (__j1l): Likewise.
38942         (__y1l): Likewise.
38943         * math/w_jn.c (jn): Likewise.
38944         (yn): Likewise.
38945         * math/w_jnf.c (jnf): Likewise.
38946         (ynf): Likewise.
38947         * math/w_jnl.c (__jnl): Likewise.
38948         (__ynl): Likewise.
38949         * math/libm-test.inc (j0_test): Add more tests.
38950         (j1_test): Likewise.
38951         (jn_test): Likewise.  Add trailing semicolon to existing test.
38952         (y0_test): Likewise.
38953         (y1_test): Likewise.
38954         * sysdeps/i386/fpu/libm-test-ulps: Update.
38955         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
38957         [BZ #13851]
38958         [BZ #13854]
38959         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Use
38960         libc_feholdexcept_setround_53bit and libc_feupdateenv_53bit.
38961         * sysdeps/ieee754/ldbl-96/k_tanl.c: New file.
38962         * sysdeps/ieee754/ldbl-96/s_tanl.c: Include <errno.h>.
38963         (__tanl): Set errno for infinite argument.
38964         * sysdeps/i386/fpu/mptan.c: Remove.
38965         * sysdeps/i386/fpu/s_tan.S: Likewise.
38966         * sysdeps/i386/fpu/s_tanl.S: Likewise.
38967         * sysdeps/x86_64/fpu/k_tanl.c: Likewise.
38968         * sysdeps/x86_64/fpu/s_tanl.S: Likewise.
38969         * math/libm-test.inc (tan_test): Add more tests and enable more
38970         tests for double and long double.
38971         * sysdeps/i386/fpu/libm-test-ulps: Update.
38972         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
38974 2012-03-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
38976         * sysdeps/x86_64/elf/start.S: Include <sysdep.h>.
38977         (_start): Add cfi_startproc, cfi_undefined for rip and cfi_endproc.
38979 2012-03-16  Roland McGrath  <roland@hack.frob.com>
38981         * aclocal.m4 (LIBC_PRECONFIGURE): New macro.
38982         * configure.in: Use it for both main tree and add-ons.
38983         * configure: Regenerated.
38985 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
38987         * time/offtime.c (__offtime): Use time_t on days, rem, y and yg.
38989 2012-03-16  Joseph Myers  <joseph@codesourcery.com>
38991         * sysdeps/ieee754/ldbl-96/t_sincosl.c: Include generator program
38992         in comment.
38994         [BZ #13851]
38995         * sysdeps/ieee754/ldbl-96/e_rem_pio2l.c: New file.
38996         * sysdeps/ieee754/ldbl-96/k_cosl.c: Likewise.
38997         * sysdeps/ieee754/ldbl-96/k_sinl.c: Likewise.
38998         * sysdeps/ieee754/ldbl-96/t_sincosl.c: Likewise.
38999         * sysdeps/ieee754/ldbl-96/s_cosl.c (__cosl): Correct test for
39000         infinite argument.
39001         * sysdeps/ieee754/ldbl-96/s_sinl.c (__sinl): Likewise.
39002         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Handle __FLT_EVAL_METHOD__
39003         != 0 for prec == 2.
39004         * sysdeps/i386/fpu/e_rem_pio2l.c: Remove.
39005         * sysdeps/i386/fpu/k_rem_pio2.c: Likewise.
39006         * sysdeps/i386/fpu/s_cosl.S: Likewise.
39007         * sysdeps/i386/fpu/s_sincosl.S: Likewise.
39008         * sysdeps/i386/fpu/s_sinl.S: Likewise.
39009         * sysdeps/x86_64/fpu/e_rem_pio2l.c: Likewise.
39010         * sysdeps/x86_64/fpu/k_cosl.c: Likewise.
39011         * sysdeps/x86_64/fpu/k_sinl.c: Likewise.
39012         * sysdeps/x86_64/fpu/s_cosl.S: Likewise.
39013         * sysdeps/x86_64/fpu/s_sincosl.S: Likewise.
39014         * sysdeps/x86_64/fpu/s_sinl.S: Likewise.
39015         * math/libm-test.inc (cos_test): Add more tests and enable more
39016         tests for long double.
39017         (sin_test): Likewise.
39018         (sincos_test): Likewise.
39019         * sysdeps/i386/fpu/libm-test-ulps: Update.
39020         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39022 2012-03-16  David S. Miller  <davem@davemloft.net>
39024         * sysdeps/sparc/fpu/math_private.h: New file.
39026 2012-03-15  David S. Miller  <davem@davemloft.net>
39028         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma-vis3.S: New
39029         file.
39030         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c: New file.
39031         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf-vis3.S: New
39032         file.
39033         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf.c: New file.
39034         * sysdeps/sparc/sparc64/fpu/multiarch/s_fma-vis3.S: New file.
39035         * sysdeps/sparc/sparc64/fpu/multiarch/s_fma.c: New file.
39036         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf-vis3.S: New file.
39037         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf.c: New file.
39038         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add fma/fmaf
39039         sysdep routines.
39040         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Likewise.
39042         * sysdeps/sparc/sparc32/fpu/s_fma.c: New file.
39043         * sysdeps/sparc/sparc64/fpu/s_fma.c: New file.
39045         * sysdeps/sparc/sparc-ifunc.h: New file.
39046         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Use
39047         sparc-ifunc.h
39048         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: Likewise.
39049         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S:
39050         Likewise.
39051         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S:
39052         Likewise.
39053         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Likewise.
39054         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: Likewise.
39055         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
39056         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S:
39057         Likewise.
39058         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: Likewise.
39059         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf.S: Likewise.
39060         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: Likewise.
39061         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf.S: Likewise.
39062         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S:
39063         Likewise.
39064         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S:
39065         Likewise.
39066         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Likewise.
39067         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: Likewise.
39068         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt.S: Likewise.
39069         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf.S: Likewise.
39070         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: Likewise.
39071         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: Likewise.
39072         * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: Likewise.
39073         * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: Likewise.
39074         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: Likewise.
39075         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: Likewise.
39076         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmax.S: Likewise.
39077         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf.S: Likewise.
39078         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin.S: Likewise.
39079         * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf.S: Likewise.
39080         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: Likewise.
39081         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: Likewise.
39082         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: Likewise.
39083         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: Likewise.
39084         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: Likewise.
39085         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: Likewise.
39086         * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: Likewise.
39087         * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: Likewise.
39088         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: Likewise.
39089         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: Likewise.
39091 2012-03-15  Andreas Schwab  <schwab@linux-m68k.org>
39093         * sysdeps/powerpc/fpu/e_hypotf.c: Use double precision instead of
39094         scaling.
39095         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
39097 2012-03-15  Andreas Jaeger  <aj@suse.de>
39099         [BZ #13852]
39100         * sysdeps/i386/fpu/e_rem_pio2f.c: Delete so that i386 uses the
39101         ieee754/flt-32 implementation for sin, cos and sincos.
39102         * sysdeps/i386/fpu/k_rem_pio2f.c: Likewise.
39103         * sysdeps/i386/fpu/s_cosf.S: Likewise.
39104         * sysdeps/i386/fpu/s_sincosf.S: Likewise.
39105         * sysdeps/i386/fpu/s_sinf.S: Likewise.
39106         * sysdeps/i386/fpu/s_tanf.S: Delete so that i386 uses the
39107         ieee754/flt-32 implementation for tan.
39109         * math/libm-test.inc (cos_test): Enable some large input tests for
39110         float as well
39111         (sin_test): Likewise.
39112         (sincos_test): Likewise.
39113         (tan_test): Add tests for large input.
39115         * sysdeps/i386/fpu/libm-test-ulps: Update.
39117 2012-03-15  Andreas Jaeger  <aj@suse.de>
39119         [BZ #13658]
39120         * math/libm-test.inc (cos_test): Add more test cases.
39121         (sin_test): Likewise.
39122         (sincos_test): Likewise.
39124 2012-03-15  Andreas Jaeger  <aj@suse.de>
39126         [BZ #13837]
39127         * math/libm-test.inc (cos_test): Add a test case for large input
39128         value.
39129         (sin_test): Likewise.
39130         (sincos_test): Likewise.
39132 2012-03-15  Andreas Jaeger  <aj@suse.de>
39133             Joseph Myers  <joseph@codesourcery.com>
39135         [BZ #13658]
39136         * sysdeps/x86_64/fpu/s_sincos.S: Delete files so that
39137         x86-64 and i386 use the iee754/dbl-64 sin and cos implementation.
39138         * sysdeps/i386/fpu/branred.c: Likewise.
39139         * sysdeps/i386/fpu/dosincos.c: Likewise.
39140         * sysdeps/i386/fpu/mpa.c: Likewise.
39141         * sysdeps/i386/fpu/s_cos.S: Likewise.
39142         * sysdeps/i386/fpu/s_sin.S: Likewise.
39143         * sysdeps/i386/fpu/s_sincos.S: Likewise.
39144         * sysdeps/i386/fpu/sincos32.c: Likewise.
39146         * sysdeps/generic/math_private.h (libc_feholdexcept_setround_53bit):
39147         Define.
39148         (libc_feupdateenv_53bit): Define.
39149         * sysdeps/i386/fpu/math_private.h (libc_feholdexcept_setround_53bit):
39150         Define.
39151         (libc_feupdateenv_53bit): Define.
39153         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Do double arithmetic in
39154         53 bit (without extend i386 double precision).
39156         * math/libm-test.inc (sincos_test): Add tests for large input.
39157         (sin): Likewise.
39158         (cos): Likewise.
39160         * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
39162 2012-03-15  Andreas Schwab  <schwab@linux-m68k.org>
39164         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
39166 2012-03-15  David S. Miller  <davem@davemloft.net>
39168         * sysdeps/sparc/sparc64/fpu/s_fmax.S: New file.
39169         * sysdeps/sparc/sparc64/fpu/s_fmaxf.S: New file.
39170         * sysdeps/sparc/sparc64/fpu/s_fmin.S: New file.
39171         * sysdeps/sparc/sparc64/fpu/s_fminf.S: New file.
39172         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S: New file.
39173         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmaxf.S: New file.
39174         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S: New file.
39175         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fminf.S: New file.
39176         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmax.S: New file.
39177         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf-vis3.S: New file.
39178         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf.S: New file.
39179         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin-vis3.S: New file.
39180         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin.S: New file.
39181         * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf-vis3.S: New file.
39182         * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf.S: New file.
39183         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax-vis3.S: New
39184         file.
39185         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: New file.
39186         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf-vis3.S: New
39187         file.
39188         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf.S: New file.
39189         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin-vis3.S: New
39190         file.
39191         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: New file.
39192         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf-vis3.S: New
39193         file.
39194         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf.S: New file.
39195         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add new vis3
39196         fmin/fmax sysdep routines.
39197         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Likewise.
39199 2012-03-14  David S. Miller  <davem@davemloft.net>
39201         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S: New file.
39202         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: New file.
39203         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S: New file.
39204         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: New file.
39205         * sysdeps/sparc/sparc64/fpu/multiarch/s_finite-vis3.S: New file.
39206         * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: New file.
39207         * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef-vis3.S: New file.
39208         * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: New file.
39209         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S: New file.
39210         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: New file.
39211         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S: New file.
39212         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: New file.
39213         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf-vis3.S: New file.
39214         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: New file.
39215         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff-vis3.S: New file.
39216         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: New file.
39217         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan-vis3.S: New file.
39218         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: New file.
39219         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf-vis3.S: New file.
39220         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: New file.
39221         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint-vis3.S: New file.
39222         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: New file.
39223         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf-vis3.S: New file.
39224         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: New file.
39225         * sysdeps/sparc/sparc64/fpu/multiarch/s_rint-vis3.S: New file.
39226         * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: New file.
39227         * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf-vis3.S: New file.
39228         * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: New file.
39229         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add new VIS3
39230         routines.
39231         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S: New
39232         file.
39233         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: New file.
39234         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S: New
39235         file.
39236         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: New file.
39237         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs-vis3.S: New
39238         file.
39239         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: New file.
39240         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf-vis3.S: New
39241         file.
39242         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: New file.
39243         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S: New
39244         file.
39245         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: New file.
39246         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S: New
39247         file.
39248         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S: New
39249         file.
39250         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint-vis3.S: New
39251         file.
39252         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: New
39253         file.
39254         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf-vis3.S:
39255         New file.
39256         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S: New
39257         file.
39258         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint-vis3.S: New
39259         file.
39260         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: New file.
39261         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf-vis3.S: New
39262         file.
39263         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: New file.
39264         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt-vis3.S: New
39265         file.
39266         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt.S: New file.
39267         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf-vis3.S: New
39268         file.
39269         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf.S: New file.
39270         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add new
39271         VIS3 routines.
39273         * sysdeps/sparc/sparc32/sparcv9/fpu/unix/sysv/linux/multiarch/Implies:
39274         New file.
39276         * sysdeps/sparc/fpu/libm-test-ulps: Update.
39278         * sysdeps/sparc/configure.in: New file.
39279         * sysdeps/sparc/configure: Generate.
39280         * configure.in (libc_cv_sparc_as_vis3): Substitute.
39281         * configure: Regenerate.
39282         * config.h.in (HAVE_AS_VIS3_SUPPORT): New.
39283         * config.make.in (have-as-vis3): New.
39284         * sysdeps/sparc/sparc32/sparcv9/Makefile (ASFLAGS-*): If VIS3 is
39285         available use -Av9d instead of -Av9a.
39286         * sysdeps/sparc/sparc64/Makefile: Likewise.
39287         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: New file.
39288         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign-vis3.S:
39289         New file.
39290         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S: New
39291         file.
39292         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf-vis3.S:
39293         New file.
39294         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S: New
39295         file.
39296         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: New file.
39297         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit-vis3.S: New file.
39298         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: New file.
39299         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf-vis3.S: New file.
39300         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: New file.
39302         * sysdeps/sparc/sparc64/fpu/s_copysign.S (__copysign): Use
39303         fzeros/fnegs to load 0x80000000 into a float register instead of
39304         using the stack.
39305         * sysdeps/sparc/sparc64/fpu/s_copysignf.S (__copysignf): Likewise.
39307 2012-03-14  Joseph Myers  <joseph@codesourcery.com>
39309         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
39310         bits/syscall.h.
39311         ($(objpfx)syscall-%.h): Rename rule to $(objpfx)bits/syscall%h.
39312         ($(objpfx)syscall-%.d): Rename rule to $(objpfx)bits/syscall%d.
39313         ($(inst_includedir)/bits/syscall.h): Remove rule.
39314         ($(objpfx)bits/syscall.d): Include instead of
39315         $(objpfx)syscall-list.d.
39316         (generated): Change syscall-list.h and syscall-list.d to
39317         bits/syscall.h and bits/syscall.d.
39319 2012-03-14  Roland McGrath  <roland@hack.frob.com>
39321         [BZ #13846]
39322         * manual/llio.texi (Memory-mapped I/O): Fix wrong function name.
39324 2012-03-14  Joseph Myers  <joseph@codesourcery.com>
39326         [BZ #13841]
39327         * math/s_csqrt.c: Include <float.h>.
39328         (__csqrt): Scale large or subnormal inputs.
39329         * math/s_csqrtf.c: Likewise.
39330         * math/s_csqrtl.c: Likewise.
39331         * math/libm-test.inc (csqrt_test): Add more tests.
39332         * sysdeps/i386/fpu/libm-test-ulps: Update.
39333         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39335         [BZ #13840]
39336         * math/libm-test.inc (hypot_test): Add more tests.
39338 2012-03-13  David S. Miller  <davem@davemloft.net>
39340         [BZ #13840]
39341         * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf): Rewrite to use
39342         double-precision for the calculation instead of scaling.
39344 2012-03-13  Joseph Myers  <joseph@codesourcery.com>
39346         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Do not
39347         manipulate bits before adding and subtracting TWO52[sx].
39348         * sysdeps/ieee754/dbl-64/s_rint.c (__rint): Likewise.
39349         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c (__nearbyint):
39350         Likewise.
39351         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c (__rint): Likewise.
39353 2012-03-13  David S. Miller  <davem@davemloft.net>
39355         * sysdeps/sparc/Makefile: Remove rtld-global-offsets.sym handling.
39356         * sysdeps/sparc/elf/rtld-global-offsets.sym: Delete.
39357         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Don't include
39358         rtld-global-offsets.h
39359         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
39361         * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Use expl for
39362         large parameters.
39364         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-fxstatat64.c: New file.
39366         * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Declare syscall
39367         'err' in the ifdef scope in which it is actually used.
39369         * nss/nss_db/db-init.c: Include string.h
39371 2012-03-12  David S. Miller  <davem@davemloft.net>
39373         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
39374         masking out of the most significant byte of random value used.
39375         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
39376         Fix coding style in previous change.
39378         * sysdeps/unix/sysv/linux/kernel-features.h
39379         (__ASSUME_CLONE_THREAD_FLAGS): Set on sparc when 2.5.64 and later.
39380         (__ASSUME_TGKILL): Set on sparc when 2.6.1 and later, simplify
39381         expression.
39382         (__ASSUME_FADVISE64_64_SYSCALL): Set on sparc when 2.6.1 and
39383         later.
39385 2012-03-11  David S. Miller  <davem@davemloft.net>
39387         * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c
39388         (__makecontext): Fix signedness of pointer casts setting up 'sp'.
39389         * sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL) Use 'long'
39390         for 'resultvar' otherwise things get truncated on 64-bit.
39392         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
39393         Fix masking out of the most significant byte of random value used.
39395         * sysdeps/sparc/fpu/libm-test-ulps: Update.
39397 2012-03-10  Andreas Schwab  <schwab@linux-m68k.org>
39399         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
39401 2012-03-09  David S. Miller  <davem@davemloft.net>
39403         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Protect local
39404         variables with appropriate CPP guards.
39405         * sysdeps/sparc/sparc32/dl-trampoline.S: Propagate the stack_ptr
39406         from the frame pointer, not the stack pointer.  Correct layout
39407         comments.  Fix test on resulting framesize and the management of
39408         the outregs buffer for pltexit.  Preserve floating point return
39409         values across _dl_call_pltexit call.
39410         * sysdeps/sparc/sparc64/dl-trampoline.S: Fix test on resulting
39411         framesize and the management of the outregs buffer for pltexit.
39412         Preserve floating point return values across _dl_call_pltexit
39413         call.
39414         * elf/sotruss-lib.c (la_sparc32_gnu_pltenter)
39415         (la_sparc64_gnu_pltenter, la_sparc32_gnu_pltexit)
39416         (la_sparc64_gnu_pltexit): New functions.
39417         (print_exit): Fix format string for return register value.
39419 2012-03-10  Joseph Myers  <joseph@codesourcery.com>
39421         * sunrpc/Makefile (others): Add rpcgen.
39422         ($(objpfx)rpcgen): Remove special build rule and dependency on
39423         libc.
39424         * sunrpc/rpcgen.c: New file.
39426 2012-03-09  Paul Eggert  <eggert@cs.ucla.edu>
39428         [BZ #13673]
39429         * posix/bug-regex33.c: Replace FSF snail mail address with URL.
39430         * stdio-common/bug-vfprintf-nargs.c: Likewise.
39431         * sysdeps/i386/crti.S: Likewise.
39432         * sysdeps/i386/crtn.S: Likewise.
39433         * sysdeps/powerpc/powerpc32/crti.S: Likewise.
39434         * sysdeps/powerpc/powerpc32/crtn.S: Likewise.
39435         * sysdeps/powerpc/powerpc64/crti.S: Likewise.
39436         * sysdeps/powerpc/powerpc64/crtn.S: Likewise.
39437         * sysdeps/sh/crti.S: Likewise.
39438         * sysdeps/sh/crtn.S: Likewise.
39439         * sysdeps/x86_64/fpu/e_expf.S: Likewise.
39441         [BZ #13673]
39442         * locale/programs/charmap-kw.gperf: Replace FSF snail mail address
39443         with URL.
39444         * locale/programs/locfile-kw.gperf: Likewise.
39445         * locale/programs/charmap-kw.h: Regenerated.
39446         * locale/programs/locfile-kw.h: Likewise.
39448         [BZ #13673]
39449         * intl/plural.y: Replace FSF snail mail address with URL.
39450         * intl/plural.c: Regenerated.
39452 2012-03-09  Richard Henderson  <rth@twiddle.net>
39454         * include/math_private.h: Remove file.
39455         * math/math_private.h: Move file ...
39456         * sysdeps/generic/math_private.h: ... here.
39458         * sysdeps/i386/fpu/math_private.h: Use include_next for math_private.h.
39459         * sysdeps/powerpc/fpu/math_private.h: Likewise.
39460         * sysdeps/x86_64/fpu/math_private.h: Likewise.
39462         * sysdeps/i386/fpu/s_fpclassifyl.c: Use <> to include both <math.h>
39463         and <math_private.h>.
39464         * sysdeps/i386/fpu/s_isinfl.c: Likewise.
39465         * sysdeps/i386/fpu/s_isnanl.c: Likewise.
39466         * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
39467         * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
39468         * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
39469         * sysdeps/ieee754/dbl-64/branred.c: Likewise.
39470         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
39471         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
39472         * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
39473         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
39474         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
39475         * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
39476         * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
39477         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
39478         * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
39479         * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
39480         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
39481         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
39482         * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
39483         * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
39484         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
39485         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
39486         * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
39487         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
39488         * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
39489         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
39490         * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
39491         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
39492         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
39493         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
39494         * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
39495         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
39496         * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
39497         * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
39498         * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
39499         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
39500         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
39501         * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
39502         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
39503         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
39504         * sysdeps/ieee754/dbl-64/s_fpclassify.c: Likewise.
39505         * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
39506         * sysdeps/ieee754/dbl-64/s_ilogb.c: Likewise.
39507         * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
39508         * sysdeps/ieee754/dbl-64/s_isinf_ns.c: Likewise.
39509         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
39510         * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
39511         * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
39512         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
39513         * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
39514         * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
39515         * sysdeps/ieee754/dbl-64/s_lround.c: Likewise.
39516         * sysdeps/ieee754/dbl-64/s_modf.c: Likewise.
39517         * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
39518         * sysdeps/ieee754/dbl-64/s_remquo.c: Likewise.
39519         * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
39520         * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
39521         * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
39522         * sysdeps/ieee754/dbl-64/s_scalbn.c: Likewise.
39523         * sysdeps/ieee754/dbl-64/s_signbit.c: Likewise.
39524         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
39525         * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
39526         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
39527         * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
39528         * sysdeps/ieee754/dbl-64/s_trunc.c: Likewise.
39529         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
39530         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
39531         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
39532         * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c: Likewise.
39533         * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c: Likewise.
39534         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: Likewise.
39535         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
39536         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Likewise.
39537         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
39538         * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: Likewise.
39539         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf.c: Likewise.
39540         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf_ns.c: Likewise.
39541         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
39542         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: Likewise.
39543         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Likewise.
39544         * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Likewise.
39545         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Likewise.
39546         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Likewise.
39547         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
39548         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
39549         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: Likewise.
39550         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c: Likewise.
39551         * sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c: Likewise.
39552         * sysdeps/ieee754/flt-32/e_acosf.c: Likewise.
39553         * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
39554         * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
39555         * sysdeps/ieee754/flt-32/e_atan2f.c: Likewise.
39556         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
39557         * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
39558         * sysdeps/ieee754/flt-32/e_fmodf.c: Likewise.
39559         * sysdeps/ieee754/flt-32/e_hypotf.c: Likewise.
39560         * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
39561         * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
39562         * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
39563         * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
39564         * sysdeps/ieee754/flt-32/e_log10f.c: Likewise.
39565         * sysdeps/ieee754/flt-32/e_log2f.c: Likewise.
39566         * sysdeps/ieee754/flt-32/e_logf.c: Likewise.
39567         * sysdeps/ieee754/flt-32/e_powf.c: Likewise.
39568         * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
39569         * sysdeps/ieee754/flt-32/e_remainderf.c: Likewise.
39570         * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
39571         * sysdeps/ieee754/flt-32/e_sqrtf.c: Likewise.
39572         * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
39573         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
39574         * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
39575         * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
39576         * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
39577         * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
39578         * sysdeps/ieee754/flt-32/s_cbrtf.c: Likewise.
39579         * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
39580         * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
39581         * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
39582         * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
39583         * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
39584         * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
39585         * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
39586         * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
39587         * sysdeps/ieee754/flt-32/s_fpclassifyf.c: Likewise.
39588         * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
39589         * sysdeps/ieee754/flt-32/s_ilogbf.c: Likewise.
39590         * sysdeps/ieee754/flt-32/s_isinf_nsf.c: Likewise.
39591         * sysdeps/ieee754/flt-32/s_isinff.c: Likewise.
39592         * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
39593         * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
39594         * sysdeps/ieee754/flt-32/s_llroundf.c: Likewise.
39595         * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
39596         * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
39597         * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
39598         * sysdeps/ieee754/flt-32/s_lroundf.c: Likewise.
39599         * sysdeps/ieee754/flt-32/s_modff.c: Likewise.
39600         * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
39601         * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
39602         * sysdeps/ieee754/flt-32/s_remquof.c: Likewise.
39603         * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
39604         * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
39605         * sysdeps/ieee754/flt-32/s_scalblnf.c: Likewise.
39606         * sysdeps/ieee754/flt-32/s_scalbnf.c: Likewise.
39607         * sysdeps/ieee754/flt-32/s_signbitf.c: Likewise.
39608         * sysdeps/ieee754/flt-32/s_sincosf.c: Likewise.
39609         * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
39610         * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
39611         * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
39612         * sysdeps/ieee754/flt-32/s_truncf.c: Likewise.
39613         * sysdeps/ieee754/k_standard.c: Likewise.
39614         * sysdeps/ieee754/ldbl-128/e_acoshl.c: Likewise.
39615         * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
39616         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
39617         * sysdeps/ieee754/ldbl-128/e_atan2l.c: Likewise.
39618         * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
39619         * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
39620         * sysdeps/ieee754/ldbl-128/e_fmodl.c: Likewise.
39621         * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
39622         * sysdeps/ieee754/ldbl-128/e_j0l.c: Likewise.
39623         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
39624         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
39625         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
39626         * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
39627         * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
39628         * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
39629         * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
39630         * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: Likewise.
39631         * sysdeps/ieee754/ldbl-128/e_remainderl.c: Likewise.
39632         * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
39633         * sysdeps/ieee754/ldbl-128/k_cosl.c: Likewise.
39634         * sysdeps/ieee754/ldbl-128/k_sincosl.c: Likewise.
39635         * sysdeps/ieee754/ldbl-128/k_sinl.c: Likewise.
39636         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
39637         * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
39638         * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
39639         * sysdeps/ieee754/ldbl-128/s_cbrtl.c: Likewise.
39640         * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
39641         * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
39642         * sysdeps/ieee754/ldbl-128/s_cosl.c: Likewise.
39643         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
39644         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
39645         * sysdeps/ieee754/ldbl-128/s_fabsl.c: Likewise.
39646         * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
39647         * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
39648         * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c: Likewise.
39649         * sysdeps/ieee754/ldbl-128/s_frexpl.c: Likewise.
39650         * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Likewise.
39651         * sysdeps/ieee754/ldbl-128/s_isinf_nsl.c: Likewise.
39652         * sysdeps/ieee754/ldbl-128/s_isinfl.c: Likewise.
39653         * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
39654         * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
39655         * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
39656         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
39657         * sysdeps/ieee754/ldbl-128/s_logbl.c: Likewise.
39658         * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
39659         * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
39660         * sysdeps/ieee754/ldbl-128/s_modfl.c: Likewise.
39661         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
39662         * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
39663         * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
39664         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
39665         * sysdeps/ieee754/ldbl-128/s_remquol.c: Likewise.
39666         * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
39667         * sysdeps/ieee754/ldbl-128/s_roundl.c: Likewise.
39668         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
39669         * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
39670         * sysdeps/ieee754/ldbl-128/s_signbitl.c: Likewise.
39671         * sysdeps/ieee754/ldbl-128/s_sincosl.c: Likewise.
39672         * sysdeps/ieee754/ldbl-128/s_sinl.c: Likewise.
39673         * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
39674         * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
39675         * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
39676         * sysdeps/ieee754/ldbl-128/w_expl.c: Likewise.
39677         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c: Likewise.
39678         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
39679         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
39680         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c: Likewise.
39681         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
39682         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Likewise.
39683         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Likewise.
39684         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
39685         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
39686         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c: Likewise.
39687         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c: Likewise.
39688         * sysdeps/ieee754/ldbl-128ibm/e_logl.c: Likewise.
39689         * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
39690         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c: Likewise.
39691         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c: Likewise.
39692         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
39693         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c: Likewise.
39694         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
39695         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
39696         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
39697         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
39698         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Likewise.
39699         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
39700         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: Likewise.
39701         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c: Likewise.
39702         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c: Likewise.
39703         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
39704         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c: Likewise.
39705         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c: Likewise.
39706         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c: Likewise.
39707         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Likewise.
39708         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
39709         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Likewise.
39710         * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c: Likewise.
39711         * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c: Likewise.
39712         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c: Likewise.
39713         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c: Likewise.
39714         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c: Likewise.
39715         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
39716         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
39717         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
39718         * sysdeps/ieee754/ldbl-128ibm/s_remquol.c: Likewise.
39719         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
39720         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
39721         * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c: Likewise.
39722         * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c: Likewise.
39723         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: Likewise.
39724         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
39725         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: Likewise.
39726         * sysdeps/ieee754/ldbl-96/e_acoshl.c: Likewise.
39727         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
39728         * sysdeps/ieee754/ldbl-96/e_atan2l.c: Likewise.
39729         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
39730         * sysdeps/ieee754/ldbl-96/e_coshl.c: Likewise.
39731         * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
39732         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
39733         * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
39734         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
39735         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
39736         * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
39737         * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
39738         * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
39739         * sysdeps/ieee754/ldbl-96/s_cbrtl.c: Likewise.
39740         * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
39741         * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
39742         * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
39743         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
39744         * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
39745         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
39746         * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
39747         * sysdeps/ieee754/ldbl-96/s_fpclassifyl.c: Likewise.
39748         * sysdeps/ieee754/ldbl-96/s_frexpl.c: Likewise.
39749         * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Likewise.
39750         * sysdeps/ieee754/ldbl-96/s_isinf_nsl.c: Likewise.
39751         * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
39752         * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
39753         * sysdeps/ieee754/ldbl-96/s_llrintl.c: Likewise.
39754         * sysdeps/ieee754/ldbl-96/s_llroundl.c: Likewise.
39755         * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
39756         * sysdeps/ieee754/ldbl-96/s_lrintl.c: Likewise.
39757         * sysdeps/ieee754/ldbl-96/s_lroundl.c: Likewise.
39758         * sysdeps/ieee754/ldbl-96/s_modfl.c: Likewise.
39759         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
39760         * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
39761         * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
39762         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
39763         * sysdeps/ieee754/ldbl-96/s_remquol.c: Likewise.
39764         * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
39765         * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
39766         * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
39767         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
39768         * sysdeps/ieee754/ldbl-96/s_signbitl.c: Likewise.
39769         * sysdeps/ieee754/ldbl-96/s_sincosl.c: Likewise.
39770         * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
39771         * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
39772         * sysdeps/ieee754/ldbl-96/s_tanl.c: Likewise.
39773         * sysdeps/ieee754/ldbl-96/s_truncl.c: Likewise.
39774         * sysdeps/ieee754/s_lib_version.c: Likewise.
39775         * sysdeps/ieee754/s_matherr.c: Likewise.
39776         * sysdeps/ieee754/s_signgam.c: Likewise.
39777         * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
39778         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
39779         * sysdeps/powerpc/fpu/e_rem_pio2f.c: Likewise.
39780         * sysdeps/powerpc/fpu/k_cosf.c: Likewise.
39781         * sysdeps/powerpc/fpu/k_rem_pio2f.c: Likewise.
39782         * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
39783         * sysdeps/powerpc/fpu/s_cosf.c: Likewise.
39784         * sysdeps/powerpc/fpu/s_float_bitwise.h: Likewise.
39785         * sysdeps/powerpc/fpu/s_isnan.c: Likewise.
39786         * sysdeps/powerpc/fpu/s_rint.c: Likewise.
39787         * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
39788         * sysdeps/powerpc/fpu/s_sinf.c: Likewise.
39789         * sysdeps/powerpc/fpu/w_sqrt.c: Likewise.
39790         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
39791         * sysdeps/powerpc/powerpc32/fpu/s_llrintf.c: Likewise.
39792         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Likewise.
39793         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
39794         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Likewise.
39795         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
39796         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
39797         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
39799 2012-03-09  Joseph Myers  <joseph@codesourcery.com>
39801         * sunrpc/rpc_cout.c: Remove __GNU_LIBRARY__ conditionals.
39802         * sunrpc/rpc_main.c: Likewise.
39803         * sunrpc/rpc_svcout.c: Likewise.
39805 2012-03-09  David S. Miller  <davem@davemloft.net>
39807         * include/math_private.h: New file.
39809 2012-03-09  Joseph Myers  <joseph@codesourcery.com>
39811         * sysdeps/unix/sysv/linux/bits/socket_type.h: New file.
39812         * sysdeps/unix/sysv/linux/sparc/bits/socket_type.h: Likewise.
39813         * sysdeps/unix/sysv/linux/bits/socket.h: Get enum __socket_type
39814         from <bits/socket_type.h>.
39815         (enum __socket_type): Don't define here.
39816         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Remove.
39817         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
39818         bits/socket_type.h.
39820         [BZ #13566]
39821         * libio/stdio.h (gets): Always declare for C++ up to C++11 without
39822         checking __USE_GNU.
39824         * Makerules ($(inst_includedir)/%.h): New rule.
39825         * stdio-common/Makefile (headers): Add bits/stdio_lim.h.
39826         (install-others): Remove variable setting.
39827         ($(inst_includedir)/bits/stdio_lim.h): Remove rule.
39829 2012-03-08  Richard Henderson  <rth@twiddle.net>
39831         * sysdeps/powerpc/fpu/math_private.h (__ieee754_sqrt): Convert
39832         from macro to inline function; merge with the
39833         !__LIBC_INTERNAL_MATH_INLINES version.
39834         (__ieee754_sqrtf): Likewise.
39836         * sysdeps/x86_64/fpu/math_private.h (__rint): Convert from macro
39837         to inline function.
39838         (__rintf, __floor, __floorf): Likewise.
39840         * sysdeps/x86_64/fpu/math_private.h (__ieee754_sqrt): Convert from
39841         macro to inline function.
39842         (__ieee754_sqrtf, __ieee754_sqrtl): Likewise.
39844         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Include <math_private.h>,
39845         not <math/math_private.h>.
39847 2012-03-08  David S. Miller  <davem@davemloft.net>
39849         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Update
39850         copyright year.
39851         * sysdeps/unix/sysv/linux/sparc/sysdep.h: Likewise.
39853 2012-03-08  Thomas Schwinge  <thomas@codesourcery.com>
39855         * resolv/gai_misc.c (handle_requests): Fix struct timespec
39856         normalization.
39857         * rt/tst-cpuclock2.c (test_nanosleep): Likewise.
39858         * sysdeps/pthread/aio_misc.c (handle_fildes_io): Likewise.
39860 2012-03-08  Ulrich Drepper  <drepper@gmail.com>
39862         * stdio-common/tst-fphex.c: Various cleanups.  The macros cannot
39863         be defined individually, they must be defined as a block.  Define
39864         S for printing a string instead of hidint the different by using a
39865         macro for adding the 'l'.
39866         * stdio-common/tst-fphex-wide.c: Adjust.
39868 2012-03-07  Marek Polacek  <polacek@redhat.com>
39870         * stdio-common/tst-long-dbl-fphex.c: Fix test for non ldbl-96 targets.
39872 2012-03-08  Marek Polacek  <polacek@redhat.com>
39874         [BZ #13806]
39875         * stdio-common/Makefile (tests): Add tst-fphex-wide.
39876         * stdio-common/tst-fphex.c: Define a few macros to make the
39877         test reusable.  Use them.
39878         * stdio-common/tst-fphex-wide.c: New file.
39880 2012-03-08  Joseph Myers  <joseph@codesourcery.com>
39882         [BZ #6911]
39883         * manual/macros.texi (gnusystems): New macro.
39884         (nongnusystems): Likewise.
39885         (gnulinuxhurdsystems): Likewise.
39886         (gnuhurdsystems): Likewise..
39887         (gnulinuxsystems): Likewise.
39888         * manual/charset.texi: Use new macros or @theglibc{} to refer to
39889         variants of the GNU system, not "GNU system".
39890         * manual/conf.texi: Likewise.
39891         * manual/errno.texi: Likewise.  Update example of errno macro
39892         expansion.
39893         * manual/filesys.texi: Likewise.
39894         (getumask): Document as specific to GNU/Hurd.
39895         * manual/install.texi: Likewise.  Reword some references to
39896         GNU/Linux.
39897         * manual/intro.texi: Likewise.
39898         * manual/io.texi: Likewise.
39899         (File Name Portability): Detail which constraints are inapplicable
39900         to all GNU systems and which are only inapplicable to GNU/Hurd.
39901         * manual/job.texi: Likewise.
39902         * manual/llio.texi: Likewise.
39903         (O_NOCTTY): Document as present on GNU/Linux.
39904         * manual/maint.texi: Likewise.
39905         * manual/memory.texi: Likewise.
39906         * manual/pattern.texi: Likewise.
39907         * manual/pipe.texi: Likewise.
39908         * manual/process.texi: Likewise.
39909         * manual/resource.texi: Likewise.
39910         (RUSAGE_CHILDREN): Remove statement about specifying a particular
39911         child on GNU/Hurd.
39912         * manual/setjmp.texi: Likewise.
39913         * manual/signal.texi: Likewise.
39914         * manual/startup.texi: Likewise.
39915         * manual/stdio.texi: Likewise.
39916         * manual/terminal.texi: Likewise.
39917         (ONLCR): Document as POSIX.
39918         (OXTABS): Document availability on GNU/Linux as XTABS.
39919         (ONOEOT): Document availability separately from other bits.
39920         (VLNEXT, VDISCARD, VSTATUS): Document availability individually.
39921         * manual/time.texi: Likewise.
39922         * manual/users.texi: Likewise.
39923         * INSTALL: Regenerated.
39924         * sysdeps/gnu/errlist.c: Regenerated.
39926         * aclocal.m4 (LIBC_TRY_LINK_STATIC): New macro.
39927         * configure.in (libc_cv_preinit_array): Use LIBC_TRY_LINK_STATIC.
39928         (libc_cv_ctors_header): Likewise.  Use asm ("") instead of calling
39929         puts.
39930         * configure: Regenerated.
39932 2012-03-07  Joseph Myers  <joseph@codesourcery.com>
39934         * sysdeps/i386/configure.in (cpuid.h): Use AC_CHECK_HEADER with no
39935         default includes instead of AC_HEADER_CHECK.
39936         * sysdeps/i386/configure: Regenerated.
39938         [BZ #10716]
39939         * math/s_cacosh.c (__cacosh): Convert negative log results to 0.
39940         * math/s_cacoshf.c (__cacoshf): Likewise.
39941         * math/s_cacoshl.c (__cacoshl): Likewise.
39942         * math/s_casinh.c (__casinh): Set signs of result from argument.
39943         * math/s_casinhf.c (__casinhf): Likewise.
39944         * math/s_casinhl.c (__casinhl): Likewise.
39945         * math/libm-test.inc (cacos_test, cacosh_test, casin_test)
39946         (casinh_test): Add more tests.
39947         * sysdeps/i386/fpu/libm-test-ulps: Update.
39948         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39950 2012-03-07  Ulrich Drepper  <drepper@gmail.com>
39952         * po/zh_TW.po: Update from translation team.
39954         * login/Makefile (distribute): Remove variable.
39955         * catgets/Makefile: Likewise.
39956         * mach/Makefile: Likewise.
39957         * malloc/Makefile: Likewise.
39958         * misc/Makefile: Likewise.
39959         * iconv/Makefile: Likewise.
39960         * nscd/Makefile: Likewise.
39961         * hurd/Makefile: Likewise.
39962         * manual/Makefile: Likewise.
39963         * locale/Makefile: Likewise.
39964         * intl/Makefile: Likewise.
39965         * conform/Makefile: Likewise.
39966         * nss/Makefile: Likewise.
39967         * time/Makefile: Likewise.
39968         * soft-fp/Makefile: Likewise.
39969         * dirent/Makefile: Likewise.
39970         * gmon/Makefile: Likewise.
39971         * po/Makefile: Likewise.
39972         * rt/Makefile: Likewise.
39973         * socket/Makefile: Likewise.
39974         * math/Makefile: Likewise.
39975         * signal/Makefile: Likewise.
39976         * debug/Makefile: Likewise.
39977         * elf/Makefile: Likewise.
39978         * timezone/Makefile: Likewise.
39979         * stdlib/Makefile: Likewise.
39980         * iconvdata/Makefile: Likewise.
39981         * sunrpc/Makefile: Likewise.
39982         * io/Makefile: Likewise.
39983         * argp/Makefile: Likewise.
39984         * inet/Makefile: Likewise.
39985         * hesiod/Makefile: Likewise.
39986         * grp/Makefile: Likewise.
39987         * csu/Makefile: Likewise.
39988         * wctype/Makefile: Likewise.
39989         * crypt/Makefile: Likewise.
39990         * libio/Makefile: Likewise.
39991         * string/Makefile: Likewise.
39992         * nis/Makefile: Likewise.
39993         * resolv/Makefile: Likewise.
39994         * stdio-common/Makefile: Likewise.
39995         * wcsmbs/Makefile: Likewise.
39996         * dlfcn/Makefile: Likewise.
39997         * posix/Makefile: Likewise.
39999         [BZ #6959]
40000         * timezone/Makefile: Don't install timezone files, just the programs
40001         and scripts.
40003 2012-03-06  Ulrich Drepper  <drepper@gmail.com>
40005         * nss/databases.def: Add missing gshadow entry.
40007         * stdio-common/vfprintf.c: Fix formatting.  Missing copyright update.
40009 2012-03-06  Marek Polacek  <polacek@redhat.com>
40011         [BZ #13726]
40012         * sysdeps/ieee754/ldbl-96/printf_fphex.c: Adjust position of wnumstr.
40013         * sysdeps/x86_64/fpu/printf_fphex.c: Likewise.
40014         * stdio-common/Makefile (tests): Add tst-long-dbl-fphex.
40015         * stdio-common/tst-long-dbl-fphex.c: New file.
40017 2012-03-06  David S. Miller  <davem@davemloft.net>
40019         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
40020         (set_obp_int): New function.
40021         (get_obp_int): New function.
40022         (__get_clockfreq_via_dev_openprom): Likewise.
40023         * sysdeps/unix/sysv/linux/sparc/sysdep.h (INTERNAL_SYSCALL_ERROR_P):
40024         Avoid unused variable warnings on 'val' and use builtin_expect.
40025         (INLINE_SYSCALL): Don't wrap INTERNAL_SYSCALL_ERROR_P with
40026         __builtin_expect.
40027         (INLINE_CLONE_SYSCALL): Likewise.
40029 2012-03-05  David S. Miller  <davem@davemloft.net>
40031         * sysdeps/sparc/fpu/libm-test-ulps: Update.
40033 2012-03-05  Andreas Schwab  <schwab@linux-m68k.org>
40035         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
40037         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Drop exp(-x) term
40038         only for |x| >= 40.
40039         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
40041 2012-03-05  H.J. Lu  <hongjiu.lu@intel.com>
40043         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c (gettimeofday_ifunc):
40044         Replace gettimeofday with __vdso_gettimeofday.
40046         * sysdeps/unix/sysv/linux/x86_64/init-first.c
40047         (_libc_vdso_platform_setup): Replace clock_gettime and getcpu with
40048         __vdso_clock_gettime and __vdso_getcpu.
40050         * sysdeps/unix/sysv/linux/x86_64/time.c (time_ifunc): Replace
40051         time with __vdso_time.
40053 2012-03-05  Joseph Myers  <joseph@codesourcery.com>
40055         * manual/lang.texi (size_t): Note types to which size_t may be
40056         equivalent with the GNU C Library, but do not describe when
40057         differences between them are significant.
40059 2012-03-05  Andreas Jaeger  <aj@suse.de>
40061         * sysdeps/i386/fpu/libm-test-ulps: Update.
40063 2012-03-05  Joseph Myers  <joseph@codesourcery.com>
40065         [BZ #3976]
40066         * sysdeps/ieee754/dbl-64/e_pow.c: Include <fenv.h>.
40067         (__ieee754_pow): Save and restore rounding mode and use
40068         round-to-nearest for main computations.
40069         * math/libm-test.inc (pow_test_tonearest): New function.
40070         (pow_test_towardzero): Likewise.
40071         (pow_test_downward): Likewise.
40072         (pow_test_upward): Likewise.
40073         (main): Call the new functions.
40074         * sysdeps/i386/fpu/libm-test-ulps: Update.
40075         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
40077         [BZ #3976]
40078         * math/libm-test.inc (cosh_test_tonearest): New function.
40079         (cosh_test_towardzero): Likewise.
40080         (cosh_test_downward): Likewise.
40081         (cosh_test_upward): Likewise.
40082         (sinh_test_tonearest): Likewise.
40083         (sinh_test_towardzero): Likewise.
40084         (sinh_test_downward): Likewise.
40085         (sinh_test_upward): Likewise.
40086         (main): Call the new functions.
40087         * sysdeps/i386/fpu/libm-test-ulps: Update.
40088         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
40090 2012-03-05  Tom de Vries  <tom@codesourcery.com>
40092         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Ensure
40093         default stack guard is set in last bytes.
40094         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Same.
40096 2012-03-05  Kees Cook  <keescook@chromium.org>
40098         * stdio-common/vfprintf.c (vfprintf): add missing errno settings.
40100         [BZ #13656]
40101         * stdio-common/vfprintf.c (vfprintf): Check for nargs overflow and
40102         possibly allocate from heap instead of stack.
40103         * stdio-common/bug-vfprintf-nargs.c: New file.
40104         * stdio-common/Makefile (tests): Add nargs overflow test.
40106 2012-03-03  Andreas Schwab  <schwab@linux-m68k.org>
40108         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
40110 2012-03-03  Marek Polacek  <polacek@redhat.com>
40112         * include/sys/cdefs.h: Remove __GNUC_PREREQ macro.
40113         * math/math_private.h: Likewise.
40114         * stdlib/tst-strtod.c: Likewise.
40115         * sysdeps/i386/i486/bits/atomic.h: Likewise.
40116         * sysdeps/x86_64/bits/atomic.h: Likewise.
40118 2012-03-02  David S. Miller  <davem@davemloft.net>
40120         * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: New file.
40121         * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrintf.S: New file.
40122         * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S: New file.
40123         * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrintf.S: New file.
40124         * sysdeps/sparc/sparc64/fpu/s_llrint.S: New file.
40125         * sysdeps/sparc/sparc64/fpu/s_llrintf.S: New file.
40126         * sysdeps/sparc/sparc64/fpu/s_lrint.S: New file.
40127         * sysdeps/sparc/sparc64/fpu/s_lrintf.S: New file.
40129 2012-03-02  Roland McGrath  <roland@hack.frob.com>
40131         [BZ #13792]
40132         * manual/examples/README: New file, says the example source files
40133         can be used under GPL>=2.
40134         * manual/Makefile (%.c.texi): Eat the leading part of the file until a
40135         line containing just "*/".
40136         * manual/examples/add.c: Add copyright header (GPL>=2).
40137         * manual/examples/argp-ex1.c: Likewise.
40138         * manual/examples/argp-ex2.c: Likewise.
40139         * manual/examples/argp-ex3.c: Likewise.
40140         * manual/examples/argp-ex4.c: Likewise.
40141         * manual/examples/atexit.c: Likewise.
40142         * manual/examples/db.c: Likewise.
40143         * manual/examples/dir.c: Likewise.
40144         * manual/examples/dir2.c: Likewise.
40145         * manual/examples/execinfo.c: Likewise.
40146         * manual/examples/filecli.c: Likewise.
40147         * manual/examples/filesrv.c: Likewise.
40148         * manual/examples/fmtmsgexpl.c: Likewise.
40149         * manual/examples/genpass.c: Likewise.
40150         * manual/examples/inetcli.c: Likewise.
40151         * manual/examples/inetsrv.c: Likewise.
40152         * manual/examples/isockad.c: Likewise.
40153         * manual/examples/longopt.c: Likewise.
40154         * manual/examples/memopen.c: Likewise.
40155         * manual/examples/memstrm.c: Likewise.
40156         * manual/examples/mkfsock.c: Likewise.
40157         * manual/examples/mkisock.c: Likewise.
40158         * manual/examples/mygetpass.c: Likewise.
40159         * manual/examples/pipe.c: Likewise.
40160         * manual/examples/popen.c: Likewise.
40161         * manual/examples/rprintf.c: Likewise.
40162         * manual/examples/search.c: Likewise.
40163         * manual/examples/select.c: Likewise.
40164         * manual/examples/setjmp.c: Likewise.
40165         * manual/examples/sigh1.c: Likewise.
40166         * manual/examples/sigusr.c: Likewise.
40167         * manual/examples/stpcpy.c: Likewise.
40168         * manual/examples/strdupa.c: Likewise.
40169         * manual/examples/strftim.c: Likewise.
40170         * manual/examples/strncat.c: Likewise.
40171         * manual/examples/subopt.c: Likewise.
40172         * manual/examples/swapcontext.c: Likewise.
40173         * manual/examples/termios.c: Likewise.
40174         * manual/examples/testopt.c: Likewise.
40175         * manual/examples/testpass.c: Likewise.
40176         * manual/examples/timeval_subtract.c: Likewise.
40178         [BZ #13792]
40179         * manual/time.texi (Elapsed Time): Move timeval_subtract example
40180         function to ...
40181         * manual/timeval_subtract.c.texi: ... here, new file.
40183 2012-03-02  David S. Miller  <davem@davemloft.net>
40185         * sysdeps/sparc/fpu/libm-test-ulps: Update for recently added tests.
40187 2012-03-02  Joseph Myers  <joseph@codesourcery.com>
40189         [BZ #3976]
40190         * sysdeps/ieee754/dbl-64/s_sin.c: Include <fenv.h>
40191         (__sin): Save and restore rounding mode and use round-to-nearest
40192         for all computations.
40193         (__cos): Save and restore rounding mode and use round-to-nearest
40194         for all computations.
40195         * sysdeps/ieee754/dbl-64/s_tan.c: Include "math_private.h" and
40196         <fenv.h>.
40197         (tan): Save and restore rounding mode and use round-to-nearest for
40198         all computations.
40199         * math/libm-test.inc (cos_test_tonearest): New function.
40200         (cos_test_towardzero): Likewise.
40201         (cos_test_downward): Likewise.
40202         (cos_test_upward): Likewise.
40203         (sin_test_tonearest): Likewise.
40204         (sin_test_towardzero): Likewise.
40205         (sin_test_downward): Likewise.
40206         (sin_test_upward): Likewise.
40207         (tan_test_tonearest): Likewise.
40208         (tan_test_towardzero): Likewise.
40209         (tan_test_downward): Likewise.
40210         (tan_test_upward): Likewise.
40211         (main): Call the new functions.
40212         * sysdeps/i386/fpu/libm-test-ulps: Update.
40213         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
40215         [BZ #10135]
40216         * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): First test for
40217         small n, then large n, before computing and testing k+n.
40218         * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
40219         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c (__scalbln):
40220         Likewise.
40221         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c (__scalbn):
40222         Likewise.
40223         * sysdeps/ieee754/flt-32/s_scalblnf.c (__scalblnf): Likewise.
40224         * sysdeps/ieee754/flt-32/s_scalbnf.c (__scalbnf): Likewise.
40225         * sysdeps/ieee754/ldbl-128/s_scalblnl.c (__scalblnl): Likewise.
40226         * sysdeps/ieee754/ldbl-128/s_scalbnl.c (__scalbnl): Likewise.
40227         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
40228         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
40229         * sysdeps/ieee754/ldbl-96/s_scalblnl.c (__scalblnl): Likewise.
40230         * sysdeps/ieee754/ldbl-96/s_scalbnl.c (__scalbnl): Likewise.
40231         * math/libm-test.inc (scalbn_test): Add more tests.
40232         (scalbln_test): Likewise.
40234         * manual/filesys.texi (mode_t): Describe constraints on size and
40235         signedness, not exact equivalence to a particular type.
40236         (ino_t): Likewise.
40237         (ino64_t): Likewise.
40238         (dev_t): Likewise.
40239         (nlink_t): Likewise.
40240         (blkcnt_t): Likewise.
40241         (blkcnt64_t): Likewise.
40242         * manual/llio.texi (off_t): Likewise.
40244         [BZ #3976]
40245         * sysdeps/ieee754/dbl-64/e_exp.c: Include <fenv.h>.
40246         (__ieee754_exp): Save and restore rounding mode and use
40247         round-to-nearest for all computations.
40248         * math/libm-test.inc (exp_test_tonearest): New function.
40249         (exp_test_towardzero): Likewise.
40250         (exp_test_downward): Likewise.
40251         (exp_test_upward): Likewise.
40252         (main): Call the new functions.
40253         * sysdeps/i386/fpu/libm-test-ulps: Update.
40254         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
40256 2012-03-01  Chris Demetriou  <cgd@google.com>
40258         * sysdeps/gnu/errlist-compat.awk: Don't depend on AWK internals to
40259         have predictable order.
40261 2012-03-01  David S. Miller  <davem@davemloft.net>
40263         * sysdeps/unix/sysv/linux/sparc/sparc32/getpagesize.c: Delete.
40265         * sysdeps/sparc/sparc64/fpu/s_finite.S: New file.
40266         * sysdeps/sparc/sparc64/fpu/s_finitef.S: New file.
40267         * sysdeps/sparc/sparc64/fpu/s_isinf.S: New file.
40268         * sysdeps/sparc/sparc64/fpu/s_isinff.S: New file.
40270         * sysdeps/sparc/sparc32/fpu/s_signbit.S: New file.
40271         * sysdeps/sparc/sparc32/fpu/s_signbitf.S: New file.
40272         * sysdeps/sparc/sparc32/fpu/s_signbitl.S: New file.
40273         * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: New file.
40274         * sysdeps/sparc/sparc64/fpu/s_isnan.S: New file.
40275         * sysdeps/sparc/sparc64/fpu/s_isnanf.S: New file.
40276         * sysdeps/sparc/sparc64/fpu/s_signbit.S: New file.
40277         * sysdeps/sparc/sparc64/fpu/s_signbitf.S: New file.
40278         * sysdeps/sparc/sparc64/fpu/s_signbitl.S: New file.
40280         * sysdeps/sparc/fpu/libm-test-ulps: Update.
40282         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Move...
40283         * sysdeps/sparc/fpu/libm-test-ulps: to here.
40284         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Delete.
40286         * sysdeps/sparc/crti.S: Remove HAVE_BINUTILS_GOTDATA checks.
40287         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
40288         * sysdeps/sparc/sparc32/elf/start.S: Likewise.
40289         * sysdeps/sparc/sparc32/fpu/w_sqrt.S: Likewise.
40290         * sysdeps/sparc/sparc32/fpu/w_sqrtf.S: Likewise.
40291         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S: Likewise.
40292         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S: Likewise.
40293         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
40294         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
40295         * sysdeps/sparc/sparc64/fpu/w_sqrt.S: Likewise.
40296         * sysdeps/sparc/sparc64/fpu/w_sqrtf.S: Likewise.
40297         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
40298         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
40299         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Likewise.
40300         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
40301         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
40302         * config.h.in (HAVE_BINUTILS_GOTDATA): Delete.
40303         * sysdeps/sparc/elf/configure.in: Remove binutils GOTDATA checks.
40304         * sysdeps/sparc/elf/configure: Regenerated.
40306 2012-03-01  Joseph Myers  <joseph@codesourcery.com>
40308         * configure.in (AS, LD): Require binutils 2.20 or later.
40309         * configure: Regenerated.
40310         * manual/install.texi (Tools for Compilation): Give binutils 2.20
40311         as required minimum version.
40312         * INSTALL: Regenerated.
40314         [BZ #2541]
40315         [BZ #4108]
40316         * sysdeps/ieee754/flt-32/s_erff.c (__erfcf): Mask out one more bit
40317         before squaring exponent.
40318         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c (__erfcl): Mask out whole
40319         bottom long double and 27 bits of top long double before squaring
40320         exponent.
40321         * math/libm-test.inc (erfc_test): Add more tests.
40322         * sysdeps/i386/fpu/libm-test-ulps: Update.
40323         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
40324         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
40326 2012-03-01  Kai Tietz  <ktietz@redhat.com>
40328         * soft-fp/soft-fp.h (_FP_STRUCT_LAYOUT): New macro.
40329         * soft-fp/quad.h (_FP_UNION_Q): Use _FP_STRUCT_LAYOUT on struct
40330         containing bit-fields.
40331         * soft-fp/extended.h (_FP_UNION_E): Likewise.
40332         * soft-fp/single.h (_FP_UNION_S): Likewise.
40333         * soft-fp/double.h (_FP_UNION_D): Likewise.
40335 2012-02-29  Joseph Myers  <joseph@codesourcery.com>
40337         [BZ #13786]
40338         * sysdeps/i386/i686/multiarch/strcmp.S [USE_AS_STRCASECMP_L]: Do
40339         not include ../strcmp.S.
40340         [USE_AS_STRNCASECMP_L]: Likewise.
40341         * sysdeps/i386/i686/multiarch/strcasecmp_l-c.c
40342         (__strcasecmp_l_ia32): Define as alias to __strcasecmp_l_nonascii.
40343         * sysdeps/i386/i686/multiarch/strncase_l-c.c
40344         (__strncasecmp_l_ia32): Define as alias to
40345         __strncasecmp_l_nonascii.
40347         [BZ #5794]
40348         * math/libm-test.inc (expm1_test): Add test for bug 5794.
40349         * sysdeps/i386/fpu/libm-test-ulps: Update.
40350         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
40352         * sysdeps/i386/fpu/libm-test-ulps: Reduce some expected errors.
40353         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
40355 2012-02-29  Jeff Law  <law@redhat.com>
40357         * resolv/res_query.c (__libc_res_nquerydomain): Avoid
40358         out of bounds read.
40360 2012-02-29  Marek Polacek  <polacek@redhat.com>
40362         [BZ #13706]
40363         * elf/rtld.c (dl_main): Always set l_used to 1 for vDSO.
40364         * elf/Makefile: Add rules to run tst-unused-dep.out.
40366 2012-02-28  David S. Miller  <davem@davemloft.net>
40368         * sysdeps/sparc/sparc32/fpu/w_sqrt.S: New file.
40369         * sysdeps/sparc/sparc32/fpu/w_sqrtf.S: New file.
40370         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S: New file.
40371         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S: New file.
40372         * sysdeps/sparc/sparc64/fpu/w_sqrt.S: New file.
40373         * sysdeps/sparc/sparc64/fpu/w_sqrtf.S: New file.
40375 2012-02-29  Joseph Myers  <joseph@codesourcery.com>
40377         * math/libm-test.inc (llround_test): Move one test from
40378         lround_test.  Use TEST_f_L in moved test.
40379         (lround_test): Move misplaced test to llround_test.  Add testcase
40380         from bug 2561.
40382 2012-02-28  Ulrich Drepper  <drepper@gmail.com>
40384         * sysdeps/x86_64/fpu/e_expf.S: New file.
40385         Contributed by Dmitrieva Liubov <liubov.dmitrieva@gmail.com>.
40387 2012-02-28  Stanislav Brabec  <sbrabec@suse.cz>
40389         [BZ #13637]
40390         * posix/regex_internal.c (re_string_skip_chars): Fix miscomputation
40391         of remain_len that may cause incomplete multi-byte character and
40392         false match.
40393         * posix/bug-regex33.c: New file.
40394         * posix/Makefile (tests): Add bug-regex33.
40396 2012-02-28  Joseph Myers  <joseph@codesourcery.com>
40398         * manual/macros.texi: New file.
40399         * Makefile (INSTALL, NOTES): Depend on manual/macros.texi.
40400         * manual/libc.texinfo: Include macros.texi.
40401         * manual/creatute.texi: Likewise.
40402         * manual/install.texi: Likewise.
40403         * manual/arith.texi: Use macros @Theglibc{}, @theglibc{} and
40404         @glibcadj{} in references to the GNU C Library.
40405         * manual/charset.texi: Likewise.
40406         * manual/conf.texi: Likewise.
40407         * manual/contrib.texi: Likewise.  Consistently use "GNU C Library"
40408         when not using those macros.
40409         * manual/creature.texi: Likewise.
40410         * manual/crypt.texi: Likewise.
40411         * manual/errno.texi: Likewise.
40412         * manual/filesys.texi: Likewise.
40413         * manual/header.texi: Likewise.
40414         * manual/install.texi: Likewise.
40415         * manual/intro.texi: Likewise.
40416         * manual/io.texi: Likewise.
40417         * manual/job.texi: Likewise.
40418         * manual/lang.texi: Likewise.
40419         * manual/libc.texiinfo: Likewise.
40420         * manual/llio.texi: Likewise.
40421         * manual/locale.texi: Likewise.
40422         * manual/maint.texi: Likewise.
40423         * manual/math.texi: Likewise.
40424         * manual/memory.texi: Likewise.
40425         * manual/message.texi: Likewise.
40426         * manual/nss.texi: Likewise.
40427         * manual/pattern.texi: Likewise.
40428         * manual/process.texi: Likewise.
40429         * manual/resource.texi: Likewise.
40430         * manual/search.texi: Likewise.
40431         * manual/setjmp.texi: Likewise.
40432         * manual/signal.texi: Likewise.
40433         * manual/socket.texi: Likewise.
40434         * manual/startup.texi: Likewise.
40435         * manual/stdio.texi: Likewise.
40436         * manual/string.texi: Likewise.
40437         * manual/sysinfo.texi: Likewise.
40438         * manual/syslog.texi: Likewise.
40439         * manual/terminal.texi: Likewise.
40440         * manual/time.texi: Likewise.
40441         * manual/users.texi: Likewise.
40442         * INSTALL: Regenerated.
40443         * NOTES: Regenerated.
40444         * sysdeps/gnu/errlist.c: Regenerated.
40446 2012-02-28  Andreas Schwab  <schwab@linux-m68k.org>
40448         * include/dirent.h: Include <dirstream.h> before
40449         <dirent/dirent.h>.
40451 2012-02-28  David S. Miller  <davem@davemloft.net>
40453         * sysdeps/sparc/sparc32/fpu/s_copysign.S: New file.
40454         * sysdeps/sparc/sparc32/fpu/s_copysignf.S: New file.
40455         * sysdeps/sparc/sparc64/fpu/s_copysign.S: New file.
40456         * sysdeps/sparc/sparc64/fpu/s_copysignf.S: New file.
40458 2012-02-27  David S. Miller  <davem@davemloft.net>
40460         * sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S: New file.
40461         * sysdeps/sparc/sparc32/sparcv9/fpu/s_floorf.S: New file.
40462         * sysdeps/sparc/sparc64/fpu/s_floor.S: New file.
40463         * sysdeps/sparc/sparc64/fpu/s_floorf.S: New file.
40465         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Fix accidental use of
40466         frame pointer instead of stack pointer relative arg slot.
40467         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: Likewise.
40468         * sysdeps/sparc/sparc64/fpu/s_ceil.S: Likewise.
40469         * sysdeps/sparc/sparc64/fpu/s_ceilf.S: Likewise.
40471 2012-02-27  Carlos O'Donell  <carlos_odonell@mentor.com>
40473         [BZ #3992]
40474         * stdlib/fmtmsg.c: Use of uint32_t requires stdint.h.
40476 2012-02-27  David S. Miller  <davem@davemloft.net>
40478         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Fix comment formatting.
40479         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: Likewise.
40480         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
40481         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: Likewise.
40482         * sysdeps/sparc/sparc64/fpu/s_ceil.S: Likewise.
40483         * sysdeps/sparc/sparc64/fpu/s_ceilf.S: Likewise.
40484         * sysdeps/sparc/sparc64/fpu/s_rint.S: Likewise.
40485         * sysdeps/sparc/sparc64/fpu/s_rintf.S: Likewise.
40487 2012-02-27  Joseph Myers  <joseph@codesourcery.com>
40489         * configure.in (CC): Restrict allowed GCC versions to 4.3 and
40490         later.  Allow versions 5-9.
40491         * configure: Regenerated.
40492         * manual/install.texi (Tools for Compilation): Give GCC 4.3 as
40493         required minimum version and 4.6 as recommended version.  Do not
40494         mention bugs in GCC 2.7 and 2.8.
40495         * INSTALL: Regenerated.
40497 2012-02-27  David S. Miller  <davem@davemloft.net>
40499         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: New file.
40500         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: New file.
40501         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: New file.
40502         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: New file.
40503         * sysdeps/sparc/sparc64/fpu/s_ceil.S: New file.
40504         * sysdeps/sparc/sparc64/fpu/s_ceilf.S: New file.
40505         * sysdeps/sparc/sparc64/fpu/s_rint.S: New file.
40506         * sysdeps/sparc/sparc64/fpu/s_rintf.S: New file.
40508         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Do not
40509         manipulate bits before adding and subtracting TWO112[sx].
40510         * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
40512 2012-02-27  Roland McGrath  <roland@hack.frob.com>
40514         [BZ #13775]
40515         * libio/bits/stdio-ldbl.h (vdprintf, dprintf): Put these under
40516         [__USE_XOPEN2K8] rather than [__USE_GNU], to match the stdio.h decls.
40517         * libio/stdio.h (vdprintf, dprintf): Remove comment about these not
40518         being in POSIX, because they are in 1003.1-2008.
40520         * rt/tst-aio.c: Include <fcntl.h>.
40521         * rt/tst-aio7.c: Likewise.
40522         * rt/tst-aio64.c: Likewise.
40524         * stdio-common/tst-fmemopen.c (main): Remove spurious const.
40526 2012-02-27  Joseph Myers  <joseph@codesourcery.com>
40528         * manual/install.texi (--with-headers): Describe headers as
40529         interface headers, not private headers.
40530         (Specific advice for GNU/Linux systems): Describe use of headers
40531         from "make headers_install", not private headers from older
40532         kernels.
40533         * INSTALL: Regenerated.
40534         * sysdeps/unix/sysv/linux/configure.in (LIBC_LINUX_VERSION):
40535         Change to 2.6.19.
40536         * sysdeps/unix/sysv/linux/configure: Regenerated.
40538         * manual/llio.texi (fclean): Remove documentation.
40540         * manual/Makefile (libc-texi-generated): New variable.  Include
40541         version.texi.
40542         (libc.dvi, libc.pdf, libc.info, libc/index.html): Depend on
40543         $(libc-texi-generated), not duplicated list of files.
40544         (version.texi, stamp-version): New rules.
40545         (realclean): Remove $(libc-texi-generated), not individual files
40546         from that list.  Do not remove dir-add.texinfo.
40547         * manual/libc.texinfo: Comment out uses of edition numbers and
40548         references to printed manual.  Remove last-updated dates.
40549         (EDITION): Comment out.
40550         (ISBN): Likewise.
40551         (VERSION, UPDATED): Remove.
40552         (version.texi): Include.
40554 2012-02-27  Andreas Schwab  <schwab@linux-m68k.org>
40556         * sysdeps/posix/spawni.c: Include <signal.h>.
40557         * sysdeps/pthread/aio_cancel.c: Include <fcntl.h>.
40558         * sysdeps/pthread/aio_fsync.c: Likewise.
40560 2012-02-26  Ulrich Drepper  <drepper@gmail.com>
40562         * conform/Makefile (tests): Run only when not cross-compiling and
40563         when fast-check is not defined.
40565         * conform/conformtest.pl: XPG7 and POSIX2008 require C99.
40566         * conform/data/limits.h-data: Fixes for POSIX2008.
40567         * conform/run-conformtest.sh: Run all tests.
40568         * include/arpa/inet.h: Changes to allow conformtest.pl to use the
40569         headers.
40570         * include/bits/dlfcn.h: Likewise.
40571         * include/langinfo.h: Likewise.
40572         * include/monetary.h: Likewise.
40573         * include/sys/poll.h: Likewise.
40575         * io/fcntl.h: Define AT_NO_AUTOMOUNT and AT_EMPTY_PATH only
40576         for __USE_GNU.
40577         * posix/spawn.h: Define __need_sigset_t.
40578         * posix/sys/wait.h: Don't include <sys/resource.h>, define id_t here.
40579         * posix/unistd.h: Declare ctermid only for XPG before XPG6.
40580         * rt/aio.h: Don't include fcntl.h and signal.h.  Use bits/siginfo.h
40581         to get sigevent_t only.
40582         * sysdeps/unix/sysv/linux/bits/socket.h: Declare sendmmsg and recvmmsg
40583         only for __USE_GNU.
40584         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
40585         * sysdeps/unix/sysv/linux/bits/uio.h: Declare process_vm_readv and
40586         process_vm_writev only for __USE_GNU.
40587         * termios/termios.h: Declare tcgetsid also for POSIX2008.
40589         * conform/Makefile: For now ignore errors from run-conformtest.
40590         * conform/conformtest.pl: Simplify code.  Add -ansi to CFLAGS for
40591         POSIX to avoid namespace pollution.  Don't prepend headers.
40592         * conform/data/aio.h-data: Fixes for POSIX testing.
40593         * conform/data/fcntl.h-data: Likewise.
40594         * conform/data/glob.h-data: Likewise.
40595         * conform/data/grp.h-data: Likewise.
40596         * conform/data/pthread.h-data: Likewise.
40597         * conform/data/pwd.h-data: Likewise.
40598         * conform/data/signal.h-data: Likewise.
40599         * conform/data/spawn.h-data: Likewise.
40600         * conform/data/stdio.h-data: Likewise.
40601         * conform/data/stdlib.h-data: Likewise.
40602         * conform/data/stropts.h-data: Likewise.
40603         * conform/data/sys/mman.h-data: Likewise.
40604         * conform/data/sys/stat.h-data: Likewise.
40605         * conform/data/sys/types.h-data: Likewise.
40606         * conform/data/sys/wait.h-data: Likewise.
40607         * conform/data/time.h-data: Likewise.
40608         * conform/data/unistd.h-data: Likewise.
40609         * conform/data/utime.h-data: Likewise.
40611         * io/sys/stat.h: fchmod was always in POSIX.
40612         * posix/sys/wait.h: Include <sys/resource.h> only for waitid.
40613         * posix/unistd.h: fsync and ftruncate were in early POSIX as well.
40614         * rt/aio.h: Define __need_timespec before including <time.h>.
40615         * sysdeps/unix/sysv/linux/bits/siginfo.h: Don't name siginfo_t
40616         struct.  Add forward declaration of pthread_attr_t and use it in
40617         sigevent.
40618         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Likewise.
40619         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
40620         * sysdeps/unix/sysv/linux/bits/time.h: Don't let __STRICT_ANSI__
40621         always remove CLK_TCK definition.
40623 2012-02-26  Andreas Schwab  <schwab@linux-m68k.org>
40625         * sysdeps/ieee754/dbl-64/k_tan.c: Replace with empty file.
40627 2012-02-25  Ulrich Drepper  <drepper@gmail.com>
40629         * conform/run-conformtest.sh: New file.
40630         * conform/Makefile: Run run-conformtest for tests.
40631         * conform/conformtest.pl: Many bug fixes.  Add ISO C99, ISO C11
40632         support.
40634         * conform/data/uchar.h-data: New file.
40635         * conform/data/aio.h-data: Fixes for ISO C and POSIX 1995 testing.
40636         * conform/data/arpa/inet.h-data: Likewise.
40637         * conform/data/assert.h-data: Likewise.
40638         * conform/data/complex.h-data: Likewise.
40639         * conform/data/cpio.h-data: Likewise.
40640         * conform/data/ctype.h-data: Likewise.
40641         * conform/data/dirent.h-data: Likewise.
40642         * conform/data/dlfcn.h-data: Likewise.
40643         * conform/data/errno.h-data: Likewise.
40644         * conform/data/fcntl.h-data: Likewise.
40645         * conform/data/float.h-data: Likewise.
40646         * conform/data/fmtmsg.h-data: Likewise.
40647         * conform/data/fnmatch.h-data: Likewise.
40648         * conform/data/ftw.h-data: Likewise.
40649         * conform/data/glob.h-data: Likewise.
40650         * conform/data/grp.h-data: Likewise.
40651         * conform/data/iconv.h-data: Likewise.
40652         * conform/data/inttypes.h-data: Likewise.
40653         * conform/data/langinfo.h-data: Likewise.
40654         * conform/data/libgen.h-data: Likewise.
40655         * conform/data/limits.h-data: Likewise.
40656         * conform/data/locale.h-data: Likewise.
40657         * conform/data/math.h-data: Likewise.
40658         * conform/data/monetary.h-data: Likewise.
40659         * conform/data/mqueue.h-data: Likewise.
40660         * conform/data/ndbm.h-data: Likewise.
40661         * conform/data/net/if.h-data: Likewise.
40662         * conform/data/netdb.h-data: Likewise.
40663         * conform/data/netinet/in.h-data: Likewise.
40664         * conform/data/nl_types.h-data: Likewise.
40665         * conform/data/poll.h-data: Likewise.
40666         * conform/data/pthread.h-data: Likewise.
40667         * conform/data/pwd.h-data: Likewise.
40668         * conform/data/regex.h-data: Likewise.
40669         * conform/data/sched.h-data: Likewise.
40670         * conform/data/search.h-data: Likewise.
40671         * conform/data/semaphore.h-data: Likewise.
40672         * conform/data/setjmp.h-data: Likewise.
40673         * conform/data/signal.h-data: Likewise.
40674         * conform/data/spawn.h-data: Likewise.
40675         * conform/data/stdarg.h-data: Likewise.
40676         * conform/data/stdio.h-data: Likewise.
40677         * conform/data/stdlib.h-data: Likewise.
40678         * conform/data/string.h-data: Likewise.
40679         * conform/data/strings.h-data: Likewise.
40680         * conform/data/stropts.h-data: Likewise.
40681         * conform/data/sys/ipc.h-data: Likewise.
40682         * conform/data/sys/mman.h-data: Likewise.
40683         * conform/data/sys/msg.h-data: Likewise.
40684         * conform/data/sys/resource.h-data: Likewise.
40685         * conform/data/sys/select.h-data: Likewise.
40686         * conform/data/sys/sem.h-data: Likewise.
40687         * conform/data/sys/shm.h-data: Likewise.
40688         * conform/data/sys/socket.h-data: Likewise.
40689         * conform/data/sys/stat.h-data: Likewise.
40690         * conform/data/sys/statvfs.h-data: Likewise.
40691         * conform/data/sys/time.h-data: Likewise.
40692         * conform/data/sys/timeb.h-data: Likewise.
40693         * conform/data/sys/times.h-data: Likewise.
40694         * conform/data/sys/types.h-data: Likewise.
40695         * conform/data/sys/uio.h-data: Likewise.
40696         * conform/data/sys/un.h-data: Likewise.
40697         * conform/data/sys/utsname.h-data: Likewise.
40698         * conform/data/sys/wait.h-data: Likewise.
40699         * conform/data/syslog.h-data: Likewise.
40700         * conform/data/tar.h-data: Likewise.
40701         * conform/data/termios.h-data: Likewise.
40702         * conform/data/utime.h-data: Likewise.
40703         * conform/data/utmpx.h-data: Likewise.
40704         * conform/data/varargs.h-data: Likewise.
40705         * conform/data/wchar.h-data: Likewise.
40706         * conform/data/wctype.h-data: Likewise.
40707         * conform/data/wordexp.h-data: Likewise.
40709         * include/stropts.h: New file.
40710         * include/uchar.h: New file.
40711         * include/aio.h: Changes to allow conformtest.pl to use the headers.
40712         * include/assert.h: Likewise.
40713         * include/ctype.h: Likewise.
40714         * include/dirent.h: Likewise.
40715         * include/dlfcn.h: Likewise.
40716         * include/fcntl.h: Likewise.
40717         * include/fnmatch.h: Likewise.
40718         * include/glob.h: Likewise.
40719         * include/grp.h: Likewise.
40720         * include/libio.h: Likewise.
40721         * include/locale.h: Likewise.
40722         * include/math.h: Likewise.
40723         * include/net/if.h: Likewise.
40724         * include/netdb.h: Likewise.
40725         * include/netinet/in.h: Likewise.
40726         * include/pthread.h: Likewise.
40727         * include/pwd.h: Likewise.
40728         * include/regex.h: Likewise.
40729         * include/sched.h: Likewise.
40730         * include/search.h: Likewise.
40731         * include/setjmp.h: Likewise.
40732         * include/signal.h: Likewise.
40733         * include/stdio.h: Likewise.
40734         * include/stdlib.h: Likewise.
40735         * include/string.h: Likewise.
40736         * include/sys/cdefs.h: Likewise.
40737         * include/sys/mman.h: Likewise.
40738         * include/sys/msg.h: Likewise.
40739         * include/sys/resource.h: Likewise.
40740         * include/sys/select.h: Likewise.
40741         * include/sys/socket.h: Likewise.
40742         * include/sys/stat.h: Likewise.
40743         * include/sys/statvfs.h: Likewise.
40744         * include/sys/time.h: Likewise.
40745         * include/sys/times.h: Likewise.
40746         * include/sys/uio.h: Likewise.
40747         * include/sys/utsname.h: Likewise.
40748         * include/sys/wait.h: Likewise.
40749         * include/termios.h: Likewise.
40750         * include/time.h: Likewise.
40751         * include/ulimit.h: Likewise.
40752         * include/unistd.h: Likewise.
40753         * include/utime.h: Likewise.
40754         * include/wchar.h: Likewise.
40755         * include/wctype.h: Likewise.
40756         * include/wordexp.h: Likewise.
40758         * posix/tar.h (TSVTX): Should not be visible for POSIX before 2008.
40760         * time/time.h: TIME_UTC must be a macro.
40761         Make timespec_get available for ISO C11 only as well.
40763 2012-02-24  Ulrich Drepper  <drepper@gmail.com>
40765         * stdlib/fmtmsg.c (fmtmsg): Lock around use of severity list.
40766         Reported by Peng Haitao <penght@cn.fujitsu.com>.
40768 2012-02-24  Joseph Myers  <joseph@codesourcery.com>
40770         * configure.in: Use -o not -a in test for unsupported multi-arch.
40772 2012-02-24  Joseph Myers  <joseph@codesourcery.com>
40774         * manual/texinfo.tex: Update to version 2012-01-19.16.
40776 2012-02-24  Joseph Myers  <joseph@codesourcery.com>
40778         * manual/Makefile (licenses): Change fdl-1.1.texi to fdl-1.3.texi.
40780 2012-02-24  Roland McGrath  <roland@hack.frob.com>
40782         [BZ #13738]
40783         * manual/libc.texinfo (FDL_VERSION): Set to 1.3.
40784         * manual/fdl-1.3.texi: New file.
40785         * manual/fdl-1.1.texi: File removed.
40787         [BZ #13738]
40788         * manual/libc.texinfo (FDL_VERSION): New @set.
40789         Use it for mention of FDL in cover text.
40790         (Documentation License): Use it in @include file name.
40792 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
40793             Roland McGrath  <roland@hack.frob.com>
40795         [BZ #5461]
40796         * manual/arith.texi (strtoll): Refer to LLONG_MAX and LLONG_MIN)
40797         (not LONG_LONG_MAX and LONG_LONG_MIN.
40798         * manual/lang.texi (LONG_LONG_MIN): Document first as ISO
40799         LLONG_MIN.  Refer to LONG_LONG_MIN only as older GCC-specific
40800         name.
40801         (LONG_LONG_MAX, LLONG_MAX, ULONG_LONG_MAX, ULLONG_MAX): Likewise.
40803 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
40805         [BZ #2547]
40806         [BZ #11365]
40807         * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Do not
40808         manipulate bits before adding and subtracting TWO23[sx].
40809         * math/libm-test.inc (nearbyint_test): Add more tests.
40811 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
40813         [BZ #2548]
40814         * sysdeps/ieee754/flt-32/s_rintf.c (__rintf): Do not manipulate
40815         bits before adding and subtracting TWO23[sx].
40816         * math/libm-test.inc (rint_test): Add more tests.
40817         (rint_test_tonearest): Likewise.
40818         (rint_test_towardzero): Likewise.
40819         (rint_test_downward): Likewise.
40820         (rint_test_upward: Likewise.
40822 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
40824         [BZ #10110]
40825         * include/stdc-predef.h: New file.  Extracted from features.h.
40826         * include/features.h: Include stdc-predef.h.
40827         * Makefile (headers): Add stdc-predef.h.
40828         * CONFORMANCE (Compiler limitations): Update.
40830 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
40832         * manual/libc.texinfo (VERSION, UPDATED): Revert.
40834 2012-02-21  David S. Miller  <davem@davemloft.net>
40836         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: More jn test ULP updates.
40837         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
40839 2012-02-20  David S. Miller  <davem@davemloft.net>
40841         * sysdeps/sparc/sparc32/__longjmp.S: Unwind in the 'thread' path
40842         using a normal save/restore sequence, rather than allocating a
40843         dummy stack frame just to store a frame pointer and restore.
40844         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
40846 2012-02-21  Joseph Myers  <joseph@codesourcery.com>
40848         * manual/install.texi: Fix stray word in line-wrapped comment.
40850 2012-02-20  David S. Miller  <davem@davemloft.net>
40852         * sysdeps/sparc/elf/configure.in (PI_STATIC_AND_HIDDEN): Define if
40853         both binutils and gcc support GOTDATA.
40855         * sysdeps/unix/sparc/sysdep.h: Document why we don't use
40856         "rd %pc" in the PIC register setup sequences.
40858         * sysdeps/sparc/crti.S: Try to use GOTDATA relocs.
40859         * sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Likewise.
40860         * sysdeps/sparc/sparc32/elf/start.S: Likewise.
40861         * sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise.
40862         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
40863         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
40864         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
40865         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
40866         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
40867         (SYSCALL_ERROR_HANDLER): Likewise.
40868         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Likewise.
40869         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
40870         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
40871         (SYSCALL_ERROR_HANDLER): Likewise.
40873         * config.h.in (HAVE_BINUTILS_GOTDATA): New.
40874         (HAVE_GCC_GOTDATA): New.
40875         * sysdeps/sparc/elf/configure.in: Test for GOTDATA
40876         relocation support in both binutils and gcc.
40877         * sysdeps/sparc/elf/configure: Regenerate.
40879         * sysdeps/sparc/sparc32/elf/configure.in: Delete.
40880         * sysdeps/sparc/sparc32/elf/configure: Delete.
40881         * sysdeps/sparc/sparc64/elf/configure.in: Delete.
40882         * sysdeps/sparc/sparc64/elf/configure: Delete.
40883         * sysdeps/sparc/elf/configure.in: New file.
40884         * sysdeps/sparc/elf/configure: Generate.
40886         * sysdeps/sparc/sparc32/elf/configure.in: Delete WDISP22 check.
40887         * sysdeps/sparc/sparc32/elf/configure: Regenerate.
40888         * sysdeps/sparc/sparc64/elf/configure.in: Likewise.
40889         * sysdeps/sparc/sparc64/elf/configure: Regenerate.
40890         * config.h.in (BROKEN_SPARC_WDISP22): Remove.
40892 2012-02-21  Joseph Myers  <joseph@codesourcery.com>
40894         * manual/install.texi: Do not mention specific glibc version
40895         numbers.
40896         * manual/libc.texinfo (VERSION, UPDATED): Update.
40897         (@copying): Use @copyright{} and range of years.
40899 2012-02-21  Joseph Myers  <joseph@codesourcery.com>
40901         [BZ #13695]
40902         * csu/Makefile (distribute): Remove initfini.c and defs.awk.
40903         [crti.S not in sysdirs] (generated): Do not append.
40904         [crti.S not in sysdirs] (omit-deps): Likewise.
40905         [crti.S not in sysdirs] ($(crtstuff:%=$(objpfx)%.o)): Remove rule.
40906         [crti.S not in sysdirs] ($(objpfx)initfini.s): Likewise.
40907         [crti.S not in sysdirs] ($(objpfx)crti.S): Likewise.
40908         [crti.S not in sysdirs] ($(objpfx)crtn.S): Likewise.
40909         [crti.S not in sysdirs] ($(patsubst %,$(objpfx)crt%.o,i n)):
40910         Likewise.
40911         [crti.S not in sysdirs] ($(objpfx)defs.h): Likewise.
40912         [crti.S not in sysdirs] (CFLAGS-initfini.s): Remove variable.
40913         [crti.S not in sysdirs] (initfini.c): Remove vpath directive.
40914         * csu/defs.awk: Remove file.
40915         * sysdeps/generic/initfini.c: Likewise.
40916         * sysdeps/powerpc/powerpc32/Makefile (CFLAGS-initfini.s): Remove
40917         variable.
40918         * sysdeps/powerpc/powerpc64/Makefile (CFLAGS-initfini.s):
40919         Likewise.
40921 2012-02-20  Joseph Myers  <joseph@codesourcery.com>
40923         * sysdeps/unix/sysv/linux/bits/epoll.h: New file.
40924         * sysdeps/unix/sysv/linux/sparc/bits/epoll.h: Likewise.
40925         * sysdeps/unix/sysv/linux/x86_64/bits/epoll.h: Likewise.
40926         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Remove
40927         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
40928         * sysdeps/unix/sysv/linux/sys/epoll.h: Get flags from
40929         <bits/epoll.h>.
40930         (EPOLL_CLOEXEC, EPOLL_NONBLOCK): Don't define here.
40931         (__EPOLL_PACKED): Define to empty if not defined by
40932         <bits/epoll.h>.
40933         (struct epoll_event): Use __EPOLL_PACKED to make possibly packed.
40934         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
40935         bits/epoll.h.
40937 2012-02-20  Joseph Myers  <joseph@codesourcery.com>
40939         * sysdeps/unix/sysv/linux/bits/timerfd.h: New file.
40940         * sysdeps/unix/sysv/linux/sparc/bits/timerfd.h: Likewise.
40941         * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: Remove.
40942         * sysdeps/unix/sysv/linux/sys/timerfd.h: Get flags from
40943         <bits/timerfd.h>.
40944         (TFD_CLOEXEC, TFD_NONBLOCK): Don't define here.
40945         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
40946         bits/timerfd.h.
40948 2012-02-20  Joseph Myers  <joseph@codesourcery.com>
40950         * sysdeps/i386/fpu/libm-test-ulps: Resort with gen-libm-test.pl -n
40951         in C locale.
40952         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
40953         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
40954         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Likewise.
40955         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
40957 2012-02-20  Aurelien Jarno  <aurelien@aurel32.net>
40959         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Adjust ULPs for jn tests.
40960         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
40962 2012-02-19  Andreas Schwab  <schwab@linux-m68k.org>
40964         * manual/errno.texi (Error Codes): Add EHWPOISON entry.
40965         * sysdeps/unix/sysv/linux/bits/errno.h (EHWPOISON): Define if not
40966         defined.
40967         * sysdeps/unix/sysv/linux/sparc/bits/errno.h (EHWPOISON):
40968         Likewise.
40969         * sysdeps/unix/sysv/linux/sparc/Versions: Add new errlist compat
40970         entry for 2.16.
40972 2012-02-19  Aurelien Jarno  <aurelien@aurel32.net>
40974         * math/w_acos.c: Use non-signaling floating-point comparisons.
40975         * math/w_acosf.c: Likewise.
40976         * math/w_acosh.c: Likewise.
40977         * math/w_acoshf.c: Likewise.
40978         * math/w_acoshl.c: Likewise.
40979         * math/w_acosl.c: Likewise.
40980         * math/w_asin.c: Likewise.
40981         * math/w_asinf.c: Likewise.
40982         * math/w_asinl.c: Likewise.
40983         * math/w_atanh.c: Likewise.
40984         * math/w_atanhf.c: Likewise.
40985         * math/w_atanhl.c: Likewise.
40986         * math/w_exp2.c: Likewise.
40987         * math/w_exp2f.c: Likewise.
40988         * math/w_exp2l.c: Likewise.
40989         * math/w_j0.c: Likewise.
40990         * math/w_j0f.c: Likewise.
40991         * math/w_j0l.c: Likewise.
40992         * math/w_j1.c: Likewise.
40993         * math/w_j1f.c: Likewise.
40994         * math/w_j1l.c: Likewise.
40995         * math/w_jn.c: Likewise.
40996         * math/w_jnf.c: Likewise.
40997         * math/w_log.c: Likewise.
40998         * math/w_log10.c: Likewise.
40999         * math/w_log10f.c: Likewise.
41000         * math/w_log10l.c: Likewise.
41001         * math/w_log2.c: Likewise.
41002         * math/w_log2f.c: Likewise.
41003         * math/w_log2l.c: Likewise.
41004         * math/w_logf.c: Likewise.
41005         * math/w_logl.c: Likewise.
41006         * math/w_sqrt.c: Likewise.
41007         * math/w_sqrtf.c: Likewise.
41008         * math/w_sqrtl.c: Likewise.
41009         * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
41010         * sysdeps/ieee754/dbl-64/w_exp.c: Likewise.
41011         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
41012         * sysdeps/ieee754/flt-32/w_expf.c: Likewise.
41013         * sysdeps/ieee754/ldbl-96/w_expl.c: Likewise.
41015 2012-02-19  Joseph Myers  <joseph@codesourcery.com>
41017         [BZ #9739]
41018         * manual/string.texi (strnlen): Use correct parameter name in
41019         equivalent expression.
41021 2012-02-19  Joseph Myers  <joseph@codesourcery.com>
41023         [BZ #11174]
41024         * manual/users.texi (seteuid): Consistently use neweuid for
41025         argument name.
41027 2012-02-19  Joseph Myers  <joseph@codesourcery.com>
41029         [BZ #13704]
41030         * manual/nss.texi (Services in the NSS configuration): Correct
41031         list of services in example configuration file.
41033 2012-02-19  Nick Bowler  <nbowler@draconx.ca>
41035         [BZ #11322]
41036         * manual/arith.texi: Remove statements about negative zero
41037         behaving identically to zero.
41039 2012-02-18  Joseph Myers  <joseph@codesourcery.com>
41041         [BZ #5993]
41042         * manual/install.texi: Do not document upgrading from libc5.
41044 2012-02-18  Joseph Myers  <joseph@codesourcery.com>
41046         [BZ #4596]
41047         * manual/conf.texi (_POSIX_VERSION): Do not mention __POSIX__.
41049 2012-02-18  David S. Miller  <davem@davemloft.net>
41051         * sysdeps/unix/sparc/sysdep.h (SPARC_PIC_THUNK): New macro.
41052         (SETUP_PIC_REG): Use SPARC_PIC_THUNK and don't save and restore
41053         %o7 across the call.
41054         (SETUP_PIC_REG_LEAF): Do %o7 save/restore in this new macro
41055         instead.
41056         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Use
41057         SETUP_PIC_REG_LEAF.
41058         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
41059         * sysdeps/sparc/crti.S: Use SETUP_PIC_REG.
41060         * sysdeps/sparc/crtn.S: Likewise.
41062 2012-02-17  Ulrich Drepper  <drepper@gmail.com>
41064         * aout/Makefile: Remove.
41066 2012-02-18  Rafe Kettler  <rafe.kettler@gmail.com>
41068         [BZ #13058]
41069         * manual/examples/argp-ex1.c (main): Format definition in GNU
41070         style.
41071         * manual/examples/argp-ex2.c (main): Likewise.
41072         * manual/examples/argp-ex3.c (main): Likewise.
41073         * manual/examples/argp-ex4.c (main): Likewise.
41074         * manual/examples/longopt.c (main): Use new-style prototype
41075         definition.
41076         * manual/examples/strncat.c (main): Specify return type and use
41077         (void) for arguments.
41078         * manual/examples/subopt.c (main): Use char **argv argument.
41080 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
41082         [BZ #5077]
41083         * manual/lang.texi (FLT_EPSILON): Avoid description depending on
41084         rounding modes.
41086 2012-02-17  Fabrice Bauzac  <fabrice.bauzac@wanadoo.fr>
41088         [BZ #6907]
41089         * manual/string.texi (strchr): Change when strchrnul is
41090         recommended.
41092 2012-02-17  Dwayne Grant McConnell  <decimal@us.ibm.com>
41094         [BZ #174]
41095         * manual/locale.texi (setlocale): Document LOCPATH.
41097 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
41099         [BZ #10210]
41100         * manual/process.texi (execle): Move @dots{} before last argument.
41102 2012-02-17  Paul Bolle  <pebolle@tiscali.nl>
41104         [BZ #12047]
41105         * manual/charset.texi (Generic Charset Conversion): Fix typo
41106         (LC_TYPE -> LC_CTYPE).
41108 2012-02-17  Nicolas Boulenguez  <nicolas.boulenguez@free.fr>
41110         [BZ #5805]
41111         * manual/arith.texi (scalbn): Use @var{} on parameter names.
41112         (scalbnf): Likewise.
41113         (scalbnl): Likewise.
41114         (scalbln): Likewise.
41115         (scalblnf): Likewise.
41116         (scalblnl): Likewise.
41117         * manual/errno.texi (vwarn): Name last parameter as @var{ap}.
41118         (vwarnx): Likewise.
41119         (verr): Likewise.
41120         (verrx): Likewise.
41121         * manual/filesys.texi (telldir): Use braces around return type.
41122         * manual/llio.texi (mmap): Add space after comma.
41123         (mmap64): Likewise.
41124         * manual/math.texi (jn): Use @var{} on parameter names.
41125         (jnf): Likewise.
41126         (jnl): Likewise.
41127         (yn): Likewise.
41128         (ynf): Likewise.
41129         (ynl): Likewise.
41130         * manual/memory.texi (alloca): Remove semicolon on @deftypefun
41131         line.
41132         * manual/resource.texi (ulimit): Use @dots{} instead of literal
41133         "...".
41134         (sched_get_priority_min): Remove semicolon on @deftypefun line.
41135         (sched_get_priority_max): Likewise.
41136         * manual/signal.texi (sigvec): Add space after comma.
41137         * manual/socket.texi (if_nametoindex): Use @var{} on parameter
41138         names.
41139         (if_indextoname): Likewise.
41140         (if_freenameindex): Likewise.
41141         (sendto): Use ',' instead of '.' in prototype.
41142         * manual/startup.texi (syscall): Use @dots{} instead of literal
41143         "...".
41144         * manual/stdio.texi (__fpending): Separate initial words of
41145         paragraph from @deftypefun line.
41146         * manual/syslog.texi (syslog): Use @dots{} instead of literal
41147         "...".
41148         (vsyslog): Use @var{} on parameter names.
41149         * manual/terminal.texi (stty): Use @var{} on parameter names.
41150         * manual/users.texi (getutmp): Use @var{} on parameter names.
41151         (getutmpx): Likewise.
41153 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
41155         [BZ #6884]
41156         * manual/stdio.texi (fopen): Fix typos in description of
41157         ",ccs=STRING".
41159 2012-02-17  Aurelien Jarno  <aurelien@aurel32.net>
41161         [BZ #4026]
41162         * sysdeps/unix/sysv/linux/clock_settime.c: include <time.h> to
41163         get clock_id definition.
41165 2012-02-17  Thomas Schwinge  <thomas@schwinge.name>
41167         [BZ #4822]
41168         * sysdeps/mach/hurd/malloc-machine.h: #include <sys/mman.h>.
41169         (madvise): Cast every argument to void on its own.
41171 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
41173         [BZ #9902]
41174         * manual/startup.texi (Exit Status): Fix typo.
41176 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
41178         [BZ #10140]
41179         * manual/examples/argp-ex1.c: Include <stdlib.h>.
41180         * manual/examples/argp-ex2.c: Likewise.
41181         * manual/examples/argp-ex3.c: Likewise.
41183 2012-02-16  Richard Henderson  <rth@redhat.com>
41185         * sysdeps/s390/s390-32/crti.S, sysdeps/s390/s390-32/crtn.S: New files.
41186         * sysdeps/s390/s390-32/initfini.c: Remove.
41187         * sysdeps/s390/s390-64/crti.S, sysdeps/s390/s390-64/crtn.S:
41188         * sysdeps/s390/s390-64/initfini.c: Remove.
41190 2012-02-15  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
41192         * sysdeps/sh/crti.S, sysdeps/sh/crtn.S: New files, based on
41193         compiler output for sysdeps/generic/initfini.c.
41194         * sysdeps/sh/elf/initfini.c: Remove file.
41196 2012-02-16  David S. Miller  <davem@davemloft.net>
41198         [BZ #11494]
41199         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_FSYNC): Define.
41201         * sysdeps/sparc/Makefile: Add -fPIC when building crt{i,n}.S
41202         * sysdeps/sparc/crti.S: New file.
41203         * sysdeps/sparc/crtn.S: New file.
41204         * sysdeps/sparc/sparc32/Makefile: Remove initfini handling.
41205         * sysdeps/sparc/sparc64/Makefile: Likewise.
41207 2012-02-15  Mike Frysinger  <vapier@gentoo.org>
41209         [BZ #3335]
41210         * sysdeps/unix/sysv/linux/getcwd.c: Include sys/param.h.
41212 2012-02-15  Roland McGrath  <roland@hack.frob.com>
41214         [BZ #4822]
41215         * sysdeps/mach/hurd/malloc-machine.h (madvise): New macro.
41217         * mach/devstream.c (cookie_io_functions_t): Macro removed.
41218         (write, read, close): Likewise.
41219         Patch by Aurelien Jarno <aurelien@aurel32.net>.
41221 2012-02-15  Joseph Myers  <joseph@codesourcery.com>
41223         * sysdeps/unix/sysv/linux/bits/signalfd.h: New file.
41224         * sysdeps/unix/sysv/linux/sparc/bits/signalfd.h: Likewise.
41225         * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h: Remove.
41226         * sysdeps/unix/sysv/linux/sys/signalfd.h: Get flags from
41227         <bits/signalfd.h>.
41228         (SFD_CLOEXEC, SFD_NONBLOCK): Don't define here.
41229         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
41230         bits/signalfd.h.
41232 2012-02-14  Marek Polacek  <polacek@redhat.com>
41234         * sysdeps/x86_64/crti.S: New file.
41235         * sysdeps/x86_64/crtn.S: New file.
41236         * sysdeps/x86_64/elf/initfini.c: Remove file.
41238 2012-02-13  Joseph Myers  <joseph@codesourcery.com>
41240         * sysdeps/unix/sysv/linux/bits/inotify.h: New file.
41241         * sysdeps/unix/sysv/linux/sparc/bits/inotify.h: Likewise.
41242         * sysdeps/unix/sysv/linux/sparc/sys/inotify.h: Remove.
41243         * sysdeps/unix/sysv/linux/sys/inotify.h: Get flags from
41244         <bits/inotify.h>.
41245         (IN_CLOEXEC, IN_NONBLOCK): Don't define here.
41246         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
41247         bits/inotify.h.
41249 2012-02-13  Joseph Myers  <joseph@codesourcery.com>
41251         * sysdeps/unix/sysv/linux/bits/eventfd.h: New file.
41252         * sysdeps/unix/sysv/linux/sparc/bits/eventfd.h: Likewise.
41253         * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: Remove.
41254         * sysdeps/unix/sysv/linux/sys/eventfd.h: Get flags from
41255         <bits/eventfd.h>.
41256         (EFD_SEMAPHORE, EFD_CLOEXEC, EFD_NONBLOCK): Don't define here.
41257         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
41258         bits/eventfd.h.
41260 2012-02-10  Thomas Schwinge  <thomas@codesourcery.com>
41262         * sysdeps/i386/fpu/feupdateenv.c (__feupdateenv): Invoke
41263         __feraiseexcept instead of feraiseexcept.
41265         * rt/tst-cpuclock1.c: Add a few comments, and error checking for
41266         nanosleep invocations.
41267         * rt/tst-cpuclock2.c: Print some values as intended, fix explanatory
41268         strings, and add error checking for a nanosleep invocations.
41270 2012-02-09  Paul Eggert  <eggert@cs.ucla.edu>
41272         Replace FSF snail mail address with URLs, as per GNU coding standards.
41273         Most of the snail mail addresses were wrong anyway, and omitting
41274         them makes the source code easier to maintain.  Almost all of the
41275         changes are to license notices and to locale LC_IDENTIFICATION
41276         addresses, except for this one:
41277         * manual/libc.texinfo: In "Published by", give the FSF's URL,
41278         not its snail mail address.
41280 2012-02-09  Richard Henderson  <rth@twiddle.net>
41282         * sysdeps/unix/sysv/linux/internal_statvfs.c: Use <> for include
41283         of kernel-features.h.
41285         * elf/dl-tls.c (update_get_addr): Avoid pointer type mismatch warning.
41287 2012-02-08  Marek Polacek  <polacek@redhat.com>
41289         * libio/libio.h: Remove _G_HAVE_SYS_CDEFS conditional.
41290         * sysdeps/mach/hurd/_G_config.h: Remove _G_HAVE_SYS_CDEFS macro.
41291         * sysdeps/gnu/_G_config.h: Likewise.
41292         * sysdeps/generic/_G_config.h: Likewise.
41294 2012-02-08  Andreas Schwab  <schwab@linux-m68k.org>
41296         * sysdeps/i386/fpu/libm-test-ulps: Reduce ldouble ULPs for jn
41297         tests.
41298         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
41300         * sysdeps/powerpc/powerpc32/crti.S: New file.
41301         * sysdeps/powerpc/powerpc32/crtn.S: New file.
41302         * sysdeps/powerpc/powerpc64/crti.S: New file.
41303         * sysdeps/powerpc/powerpc64/crtn.S: New file.
41305         * Makeconfig (have-initfini): Don't set.
41306         * config.make.in (have-initfini, need-nopic-initfini): Don't set.
41307         * configure.in (nopic_initfini): Don't substitute.
41308         * config.h.in (HAVE_INITFINI): Don't #undef.
41309         * csu/Makefile (CPPFLAGS): Don't add -DHAVE_INITFINI.
41310         * csu/gmon-start.c: Assume HAVE_INITFINI is defined.
41312 2012-02-08  Joseph Myers  <joseph@codesourcery.com>
41314         Support crti.S and crtn.S provided directly by architectures.
41315         * csu/Makefile [crti.S in sysdirs] (generated): Do not append.
41316         [crti.S in sysdirs] (omit-deps): Likewise.
41317         [crti.S in sysdirs] (CFLAGS-initfini.s): Do not define variable.
41318         [crti.S in sysdirs] ($(crtstuff:%=$(objpfx)%.o)): Disable rule.
41319         [crti.S in sysdirs] ($(objpfx)initfini.s): Likewise.
41320         [crti.S in sysdirs] ($(objpfx)crti.S): Likewise.
41321         [crti.S in sysdirs] ($(objpfx)crtn.S): Likewise.
41322         [crti.S in sysdirs] ($(patsubst %,$(objpfx)crt%.o,i n)): Likewise.
41323         [crti.S in sysdirs] ($(objpfx)defs.h): Likewise.
41324         [crti.S in sysdirs] (initfini.c): Remove vpath directive.
41325         * sysdeps/i386/crti.S, sysdeps/i386/crtn.S: New files, based on
41326         compiler output for sysdeps/generic/initfini.c.
41327         * sysdeps/i386/elf/Makefile: Remove file.
41328         * sysdeps/i386/Makefile (CFLAGS-initfini.s): Remove variable.
41330 2012-02-07  Marek Polacek  <polacek@redhat.com>
41332         * sysdeps/generic/_G_config.h: Remove _G_ARGS macro.
41333         * sysdeps/gnu/_G_config.h: Likewise.
41334         * sysdeps/mach/hurd/_G_config.h: Likewise.
41336 2012-02-07  Marek Polacek  <polacek@redhat.com>
41338         * math/Makefile (tests): Add tst-CMPLX2.
41339         * math/tst-CMPLX2.c: New file.
41341 2012-02-07  Andreas Schwab  <schwab@linux-m68k.org>
41343         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ULPs for jn tests.
41345         * math/libm-test.inc (jn_test): Add missing L suffix.
41347 2012-02-06  Marek Polacek  <polacek@redhat.com>
41349         * sysdeps/s390/asm-syntax.h: Remove __ELF__ conditionals.
41350         * sysdeps/i386/fpu/e_powf.S: Likewise.
41351         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
41352         * sysdeps/i386/fpu/s_cexpl.S: Likewise.
41353         * sysdeps/i386/fpu/e_acosh.S: Likewise.
41354         * sysdeps/i386/fpu/e_pow.S: Likewise.
41355         * sysdeps/i386/fpu/s_asinhl.S: Likewise.
41356         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
41357         * sysdeps/i386/fpu/s_expm1.S: Likewise.
41358         * sysdeps/i386/fpu/s_frexpf.S: Likewise.
41359         * sysdeps/i386/fpu/e_log2.S: Likewise.
41360         * sysdeps/i386/fpu/e_log2l.S: Likewise.
41361         * sysdeps/i386/fpu/e_scalb.S: Likewise.
41362         * sysdeps/i386/fpu/e_powl.S: Likewise.
41363         * sysdeps/i386/fpu/s_log1p.S: Likewise.
41364         * sysdeps/i386/fpu/e_log10f.S: Likewise.
41365         * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
41366         * sysdeps/i386/fpu/e_logl.S: Likewise.
41367         * sysdeps/i386/fpu/s_cbrt.S: Likewise.
41368         * sysdeps/i386/fpu/s_expm1l.S: Likewise.
41369         * sysdeps/i386/fpu/s_frexpl.S: Likewise.
41370         * sysdeps/i386/fpu/s_expm1f.S: Likewise.
41371         * sysdeps/i386/fpu/e_log2f.S: Likewise.
41372         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
41373         * sysdeps/i386/fpu/e_log.S: Likewise.
41374         * sysdeps/i386/fpu/s_cexp.S: Likewise.
41375         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
41376         * sysdeps/i386/fpu/s_log1pl.S: Likewise.
41377         * sysdeps/i386/fpu/e_logf.S: Likewise.
41378         * sysdeps/i386/fpu/e_log10l.S: Likewise.
41379         * sysdeps/i386/fpu/e_atanh.S: Likewise.
41380         * sysdeps/i386/fpu/s_log1pf.S: Likewise.
41381         * sysdeps/i386/fpu/s_asinhf.S: Likewise.
41382         * sysdeps/i386/fpu/s_cexpf.S: Likewise.
41383         * sysdeps/i386/fpu/e_log10.S: Likewise.
41384         * sysdeps/i386/fpu/s_frexp.S: Likewise.
41385         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
41386         * sysdeps/i386/fpu/s_asinh.S: Likewise.
41387         * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
41388         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
41389         * sysdeps/i386/i686/fpu/e_logl.S: Likewise.
41390         * sysdeps/i386/asm-syntax.h: Likewise.
41391         * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
41392         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
41393         * sysdeps/x86_64/fpu/e_logl.S: Likewise.
41394         * sysdeps/x86_64/fpu/s_expm1l.S: Likewise.
41395         * sysdeps/x86_64/fpu/s_log1pl.S: Likewise.
41396         * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
41397         * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
41398         * sysdeps/x86_64/fpu/s_copysign.S: Likewise.
41399         * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
41400         * sysdeps/powerpc/sysdep.h: Likewise.
41401         * sysdeps/powerpc/powerpc64/sysdep.h: Likewise.
41402         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
41404 2012-02-06  Joseph Myers  <joseph@codesourcery.com>
41406         [BZ #411]
41407         * sysdeps/i386/sysdep.h (__i686): Undefine and redefine.
41409 2012-02-06  Joseph Myers  <joseph@codesourcery.com>
41411         * sysdeps/i386/sysdep.h: Include <features.h>.
41412         (GET_PC_THUNK, GET_PC_THUNK_STR): Define conditionally on compiler
41413         version.
41415 2012-02-05  Joseph Myers  <joseph@codesourcery.com>
41417         * sysdeps/i386/sysdep.h (SETUP_PIC_REG_STR, LOAD_PIC_REG_STR):
41418         Define.
41419         * sysdeps/unix/sysv/linux/i386/sysdep.h (check_consistency): Use
41420         LOAD_PIC_REG_STR.
41422 2012-02-03  Joseph Myers  <joseph@codesourcery.com>
41424         * sysdeps/i386/sysdep.h (GET_PC_THUNK, GET_PC_THUNK_STR): Define.
41425         (SETUP_PIC_REG): Use GET_PC_THUNK.
41426         * sysdeps/unix/sysv/linux/i386/sysdep.h: Use GET_PC_THUNK_STR
41427         macro.
41429 2012-02-03  Joseph Myers  <joseph@codesourcery.com>
41431         * sysdeps/i386/sysdep.h (SETUP_PIC_REG, LOAD_PIC_REG): Define also
41432         for non-PIC compilation.
41433         (SETUP_PIC_REG): Add .p2align directive.
41434         * sysdeps/i386/i686/memcmp.S: Use macros for PIC register setup.
41435         * sysdeps/i386/i686/multiarch/bcopy.S: Likewise.
41436         * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
41437         * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
41438         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
41439         * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
41440         * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
41441         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
41442         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
41443         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
41444         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
41445         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
41446         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
41447         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
41448         * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
41449         * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
41450         * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
41451         * sysdeps/i386/i686/multiarch/memset.S: Likewise.
41452         * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
41453         * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
41454         * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
41455         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
41456         * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
41457         * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
41458         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
41459         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
41460         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
41461         * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
41462         * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
41463         * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
41464         * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
41465         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
41466         * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
41467         * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
41468         * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
41469         * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
41470         * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
41471         * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
41472         * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
41473         * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
41474         * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
41476 2012-02-03  Joseph Myers  <joseph@codesourcery.com>
41478         * math/tst-CMPLX.c: Include <stdio.h>.
41480 2012-01-31  Joseph Myers  <joseph@codesourcery.com>
41482         * sysdeps/powerpc/bits/mathdef.h (float_t): Always define as
41483         float.
41484         * sysdeps/sh/sh4/bits/mathdef.h: Likewise.
41485         * sysdeps/sparc/bits/mathdef.h: Likewise.
41487 2012-01-31  Marek Polacek  <polacek@redhat.com>
41489         * libio/libio.h: Don't define _PARAMS.
41490         * locale/programs/config.h: Don't define PARAMS.
41491         * stdlib/strtol_l.c: Likewise.
41492         (__strtol_l): Remove PARAMS from the prototype.
41494 2012-01-31  Ulrich Drepper  <drepper@gmail.com>
41496         * malloc/malloc.c: Remove name translation.  Don't use mixed-cap
41497         names.  Just use the correct names.  Remove unnecessary wrapper
41498         functions.
41499         * malloc/arena.c: Likewise.
41500         * malloc/hooks.c: Likewise.
41502         * malloc/arena.c (arena_get2): Really don't call __get_nprocs if
41503         ARENA_TEST says not to.  Simplify test for creation of a new arena.
41504         Partially based on a patch by Siddhesh Poyarekar <siddhesh@redhat.com>.
41506 2012-01-30  Ulrich Drepper  <drepper@gmail.com>
41508         * elf/dl-tls.c (__tls_get_addr): Optimize by transforming all calls
41509         into tail calls.
41510         (update_get_addr): New function.
41511         (tls_get_addr_tail): Take GET_ADDR_ARGS parameter, remove
41512         GET_ADDR_MODULE parameter.
41514 2012-01-30  Joseph Myers  <joseph@codesourcery.com>
41516         * crypt/cert.c: Remove __STDC__ conditionals.
41517         * crypt/crypt-entry.c: Likewise.
41518         * crypt/crypt_util.c: Likewise.
41519         * libio/filedoalloc.c: Likewise.
41520         * libio/fileops.c: Likewise.
41521         * libio/genops.c: Likewise.
41522         * libio/iofclose.c: Likewise.
41523         * libio/iofdopen.c: Likewise.
41524         * libio/iofopen.c: Likewise.
41525         * libio/iofopen64.c: Likewise.
41526         * libio/iogetdelim.c: Likewise.
41527         * libio/iopopen.c: Likewise.
41528         * libio/obprintf.c: Likewise.
41529         * libio/oldfileops.c: Likewise.
41530         * libio/oldiofclose.c: Likewise.
41531         * libio/oldiofdopen.c: Likewise.
41532         * libio/oldiofopen.c: Likewise.
41533         * libio/oldiopopen.c: Likewise.
41534         * libio/wfiledoalloc.c: Likewise.
41535         * libio/wgenops.c: Likewise.
41536         * locale/programs/xmalloc.c: Likewise.
41537         * misc/syslog.c: Likewise.
41538         * stdio-common/xbug.c: Likewise.
41539         * string/memchr.c: Likewise.
41540         * string/memcmp.c: Likewise.
41541         * string/memrchr.c: Likewise.
41542         * string/rawmemchr.c: Likewise.
41543         * sysdeps/posix/getcwd.c: Likewise.
41544         * time/strftime_l.c: Likewise.
41546 2012-01-30  Joseph Myers  <joseph@codesourcery.com>
41548         * configure.in (libc_cv_cc_sse2avx): AC_SUBST.
41549         * config.make.in (config-cflags-sse2avx): Define.
41550         * sysdeps/x86_64/fpu/multiarch/Makefile (CFLAGS-slowexp-avx.c):
41551         Fix typo.
41553 2012-01-29  Chris Metcalf  <cmetcalf@tilera.com>
41555         * scripts/config.guess: Update from upstream config git repository.
41556         * scripts/config.sub: Likewise.
41558 2012-01-28  Chris Metcalf  <cmetcalf@tilera.com>
41560         * elf/elf.h (EM_TILEPRO, EM_TILEGX): New macros.
41561         (EM_NUM): Update.
41562         (R_TILEPRO_*, R_TILEGX_*): New macros.
41564         * scripts/firstversions.awk: Fix bug in version range handling.
41566         * sysdeps/unix/sysv/linux/grantpt.c: Use <> brackets for not-cancel.h.
41568         * sysdeps/unix/sysv/linux/faccessat.c (faccessat): Call __fxstatat64.
41570         * include/sys/epoll.h: New file.
41571         * sysdeps/unix/sysv/linux/epoll_pwait.c (epoll_pwait): Mark as
41572         libc_hidden_def.
41574 2012-01-28  Ulrich Drepper  <drepper@gmail.com>
41576         * sysdeps/x86_64/fpu/bits/mathinline.h (__signbitl): Optimize a bit.
41577         Avoid unnecessary __WORDSIZE == 64 test.
41578         (fmaxf): Use VEX format if possible.
41579         (fmax): Likewise.
41580         (fminf): Likewise.
41581         (fmin): Likewise.
41583         * config.h.in: Define HAVE_SSE2AVX_SUPPORT.
41584         * math/math_private.h: Remove libc_fegetround* and
41585         libc_fesetround*.
41586         * sysdeps/i386/configure.in: Check for -msse2avx.
41587         * sysdeps/x86_64/fpu/math_private.h: Use VEX-encoded instructions
41588         also if SSE2AVX is defined.
41589         Remove libc_fegetround* and libc_fesetround*.
41590         * sysdeps/x86_64/fpu/multiarch/Makefile: Compile *-avx functions
41591         if config-cflags-sse2avx is yes.  Also add -DSSE2AVX to defines.
41592         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Use HAS_AVX again instead
41593         of HAS_YMM_USABLE.
41594         * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
41595         * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
41596         * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
41597         * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
41598         * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
41600         * sysdeps/x86_64/fpu/math_private.h: Simplify use of AVX instructions.
41602 2012-01-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
41604         * sysdeps/powerpc/powerpc32/a2/memcpy.S: Fix for when cache line
41605         size is not set.
41606         * sysdeps/powerpc/powerpc64/a2/memcpy.S: Likewise.
41608 2012-01-27  Ulrich Drepper  <drepper@gmail.com>
41610         [BZ #13618]
41611         * elf/dl-open.c (dl_open_worker): Sort objects by dependency before
41612         relocation.
41613         * Makeconfig (libm): Define.
41614         * elf/Makefile: Add rules to build and run tst-relsort1.
41615         * elf/tst-relsort1.c: New file.
41616         * elf/tst-relsort1mod1.c: New file.
41617         * elf/tst-relsort1mod2.c: New file.
41619 2012-01-27  Joseph Myers  <joseph@codesourcery.com>
41621         * math/s_ldexp.c: Remove __STDC__ conditionals.
41622         * math/s_ldexpf.c: Likewise.
41623         * math/s_ldexpl.c: Likewise.
41624         * math/s_nextafter.c: Likewise.
41625         * math/s_nexttowardf.c: Likewise.
41626         * math/s_significand.c: Likewise.
41627         * math/s_significandf.c: Likewise.
41628         * math/s_significandl.c: Likewise.
41629         * math/w_jnl.c: Likewise.
41630         * sysdeps/i386/fpu/s_isinfl.c: Likewise.
41631         * sysdeps/i386/fpu/s_isnanl.c: Likewise.
41632         * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
41633         * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
41634         * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
41635         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
41636         * sysdeps/ieee754/dbl-64/k_tan.c: Likewise.
41637         * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
41638         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
41639         * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
41640         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
41641         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
41642         * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
41643         * sysdeps/ieee754/dbl-64/s_ilogb.c: Likewise.
41644         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
41645         * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
41646         * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
41647         * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
41648         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
41649         * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
41650         * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
41651         * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
41652         * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
41653         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
41654         * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
41655         * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
41656         * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
41657         * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
41658         * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
41659         * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
41660         * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
41661         * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
41662         * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
41663         * sysdeps/ieee754/flt-32/s_ilogbf.c: Likewise.
41664         * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
41665         * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
41666         * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
41667         * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
41668         * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
41669         * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
41670         * sysdeps/ieee754/k_standard.c: Likewise.
41671         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
41672         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
41673         * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
41674         * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
41675         * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
41676         * sysdeps/ieee754/ldbl-128/s_cosl.c: Likewise.
41677         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
41678         * sysdeps/ieee754/ldbl-128/s_fabsl.c: Likewise.
41679         * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
41680         * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
41681         * sysdeps/ieee754/ldbl-128/s_frexpl.c: Likewise.
41682         * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Likewise.
41683         * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
41684         * sysdeps/ieee754/ldbl-128/s_logbl.c: Likewise.
41685         * sysdeps/ieee754/ldbl-128/s_modfl.c: Likewise.
41686         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
41687         * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
41688         * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
41689         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
41690         * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
41691         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
41692         * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
41693         * sysdeps/ieee754/ldbl-128/s_sinl.c: Likewise.
41694         * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
41695         * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
41696         * sysdeps/ieee754/ldbl-128/w_expl.c: Likewise.
41697         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
41698         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
41699         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
41700         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
41701         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
41702         * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Likewise.
41703         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
41704         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: Likewise.
41705         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
41706         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c: Likewise.
41707         * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
41708         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
41709         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Likewise.
41710         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Likewise.
41711         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
41712         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c: Likewise.
41713         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
41714         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Likewise.
41715         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
41716         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Likewise.
41717         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
41718         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
41719         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
41720         * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
41721         * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
41722         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
41723         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
41724         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: Likewise.
41725         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
41726         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: Likewise.
41727         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
41728         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
41729         * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
41730         * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
41731         * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
41732         * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
41733         * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
41734         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
41735         * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
41736         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
41737         * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
41738         * sysdeps/ieee754/ldbl-96/s_frexpl.c: Likewise.
41739         * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Likewise.
41740         * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
41741         * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
41742         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
41743         * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
41744         * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
41745         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
41746         * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
41747         * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
41748         * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
41749         * sysdeps/ieee754/ldbl-96/s_tanl.c: Likewise.
41750         * sysdeps/ieee754/s_matherr.c: Likewise.
41751         * sysdeps/powerpc/fpu/w_sqrt.c: Likewise.
41752         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
41753         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
41754         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
41756 2012-01-26  Joseph Myers  <joseph@codesourcery.com>
41758         * crypt/md5.h: Remove __STDC__ conditionals.
41759         * libio/libioP.h: Likewise.
41760         * locale/programs/config.h: Likewise.
41761         * sysdeps/generic/sysdep.h: Likewise.
41762         * sysdeps/i386/asm-syntax.h: Likewise.
41763         * sysdeps/s390/asm-syntax.h: Likewise.
41764         * sysdeps/unix/sysdep.h: Likewise.
41765         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
41766         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
41768 2012-01-26  Joseph Myers  <joseph@codesourcery.com>
41770         * libio/libio.h: Remove __STDC__ conditionals.
41771         * malloc/obstack.h: Likewise.
41772         * math/complex.h: Likewise.
41773         * math/math.h: Likewise.
41774         * sysdeps/generic/_G_config.h: Likewise.
41775         * sysdeps/gnu/_G_config.h: Likewise.
41776         * sysdeps/mach/hurd/_G_config.h: Likewise.
41777         * sysdeps/powerpc/bits/mathdef.h: Likewise.
41778         * sysdeps/sh/sh4/bits/mathdef.h: Likewise.
41779         * sysdeps/sparc/bits/mathdef.h: Likewise.
41781 2012-01-26  Ulrich Drepper  <drepper@gmail.com>
41783         [BZ #13583]
41784         * sysdeps/x86_64/multiarch/init-arch.h: Define bit_OSXSAVE.
41785         Clean up HAS_* macros.
41786         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): If
41787         bit_AVX is set also check OSXAVE/XCR0 and set bit_YMM_Usable if
41788         possible.
41789         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Use HAS_YMM_USABLE, not
41790         HAS_AVX.
41791         * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
41792         * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
41793         * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
41794         * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
41795         * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
41797 2012-01-25  Joseph Myers  <joseph@codesourcery.com>
41799         * elf/tst-unique3.cc (gets): Remove declaration.
41800         * elf/tst-unique3lib.cc (gets): Likewise.
41801         * elf/tst-unique3lib2.cc (gets): Likewise.
41802         * elf/tst-unique4.cc (gets): Likewise.
41804 2012-01-24  Ulrich Drepper  <drepper@gmail.com>
41806         * include/stdio.h: Add C++ protection.  Add gets declarations and
41807         definitions.
41808         * debug/tst-chk1.c: Don't declare gets here.
41809         * stdio-common/tst-gets.c: Likewise.
41811 2012-01-24  Joseph Myers  <joseph@codesourcery.com>
41813         * posix/glob: Remove directory.
41815 2012-01-24  Joseph Myers  <joseph@codesourcery.com>
41817         * wcsmbs/Makefile (tst-c16c32-1-ENV): Define.
41819 2012-01-22  Pino Toscano  <toscano.pino@tiscali.it>
41821         * sysdeps/mach/hurd/socket.c (__socket): Return EAFNOSUPPORT instead
41822         of the non-standard EPFNOSUPPORT.
41824 2011-12-26  Samuel Thibault  <samuel.thibault@ens-lyon.org>
41826         * sysdeps/mach/hurd/mmap.c (__mmap): When MAPADDR is nonzero, try
41827         __vm_allocate and __vm_map with ANYWHERE set to 0 first, and try with
41828         ANYWHERE set to 1 only on KERN_NO_SPACE error.
41830 2012-01-21  Ulrich Drepper  <drepper@gmail.com>
41832         * wcsmbs/uchar.h: Test __STDC_VERSION__.
41834 2012-01-20  Ulrich Drepper  <drepper@gmail.com>
41836         * nscd/aicache.c (addhstaiX): Do not cache negative results of
41837         transient errors.
41838         * nscd/grpcache.c (cache_addgr): Likewise.
41839         * nscd/hstcache.c (cache_addhst): Likewise.
41840         * nscd/initgrcache.c (addinitgroupsX): Likewise.
41841         * nscd/pwdcache.c (cache_addpw): Likewise.
41842         * nscd/servicescache.c (cache_addserv): Likewise.
41844 2012-01-16  Ulrich Drepper  <drepper@gmail.com>
41846         * malloc/malloc.c: Various cleanups.
41847         * malloc/hooks.c: Likewise.
41849         * stdlib/Makefile (tests): Add bug-fmtmsg1.
41850         * stdlib/bug-fmtmsg1.c: New file.
41852         * stdlib/fmtmsg.c (init): Add missing unlock.
41853         Patch by Peng Haitao <penght@cn.fujitsu.com>.
41855 2012-01-12  Marek Polacek  <polacek@redhat.com>
41857         * libio/bits/stdio2.h: Do not define gets for ISO C11, ISO C++11,
41858         and _GNU_SOURCE.
41860 2012-01-04  Will Schmidt  <will_schmidt@vnet.ibm.com>
41862         * powerpc/powerpc32/sysdep.h: Add GLUE and GENERATE_GOT_LABEL macros.
41863         * unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Call
41864         macro to ensure uniqueness of label name.
41865         * unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
41866         * unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
41868 2012-01-11  Ulrich Drepper  <drepper@gmail.com>
41870         * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c: New file.
41872         * sysdeps/ieee754/dbl-64/s_scalbln.c: Add branch prediction.
41873         * sysdeps/ieee754/flt-32/s_scalblnf.c: Likewise.
41874         * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
41875         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: New file.
41877 2012-01-10  Ulrich Drepper  <drepper@gmail.com>
41879         * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: New file.
41881         * sysdeps/ieee754/dbl-64/s_modf.c: Add branch prediction.
41882         * sysdeps/ieee754/flt-32/s_modff.c: Likewise.
41883         * sysdeps/ieee754/ldbl-96/s_modfl.c: Likewise.
41885         * math/bits/mathcalls.h: Add const attribute to fmin and fmax.
41887         * sysdeps/ieee754/dbl-64/s_scalbn.c: Add branch prediction.
41888         * sysdeps/ieee754/flt-32/s_scalbnf.c: Likewise.
41889         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
41890         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c: New file.
41892         * math/bits/math-finite.h: Add ldexp support.
41894 2012-01-10  Marek Polacek  <polacek@redhat.com>
41896         * locale/programs/localedef.h (show_archive_content): Add noreturn
41897         attribute.
41899 2012-01-09  Ulrich Drepper  <drepper@gmail.com>
41901         * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Add branch prediction.
41903 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
41905         * io/bits/poll2.h: Add __BEGIN/__END_DECLS.
41907         * io/Makefile (headers): Add bits/poll2.h.
41909 2011-01-05  Will Schmidt  <will_schmidt@vnet.ibm.com>
41911         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Fix a
41912         typo #include statement.
41914 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
41916         * include/sys/cdefs.h: Define __attribute_alloc_size.
41917         * catgets/gencat.c: Add alloc_size attribute and apply consistently
41918         the malloc attribute to xmalloc, xcalloc, xrealloc, and xstrdup.
41919         * elf/pldd.c: Likewise.
41920         * iconv/iconv_charmap.c: Likewise.
41921         * iconv/iconvconfig.c: Likewise.
41922         * iconv/strtab.c: Likewise.
41923         * locale/programs/locale.c: Likewise.
41924         * locale/programs/localedef.h: Likewise.
41925         * locale/programs/simple-hash.c: Likewise.
41926         * nscd/nscd.h: Likewise.
41927         * nss/makedb.c: Likewise.
41928         * sysdeps/generic/ldconfig.h: Likewise.
41929         * locale/programs/localedef.c: Remove xmalloc prototype.
41930         * nscd/mem.c: Remove xmalloc and xcalloc prototypes.
41932 2012-01-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
41934         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Use alloca when
41935         appropriate.
41937 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
41939         * math/Makefile (tests): Add tst-CMPLX.
41940         * math/tst-CMPLX.c: New file.
41942         * math/complex.h (CMPLXL): Fix typo.
41944         * debug/Makefile (routines): Add poll_chk and ppoll_chk.
41945         * debug/Versions: Export __pool_chk and __ppoll_chk from libc for
41946         GLIBC_2.16.
41947         * debug/tst-chk1.c: Add poll and ppoll tests.
41948         * io/sys/poll.h: Include bits/poll2.h for _FORTIFY_SOURCE.
41949         * include/sys/poll.h: Add hidden proto for ppoll.
41950         * sysdeps/unix/sysv/linux/ppoll.c: Add hidden def.
41951         * sysdeps/mach/hurd/ppoll.c: Likewise.
41952         * io/ppoll.c: Likewise.
41953         * debug/poll_chk.c: New file.
41954         * debug/ppoll_chk.c: New file.
41955         * include/bits/poll2.h: New file.
41956         * io/bits/poll2.h: New file.
41958         [BZ #1350]
41959         * math/complex.h (CMPLX, CMPLXF, CMPLXL): Define.
41961         * configure.in: static is always set to yes.  Remove.
41962         * config.make.in: Don't set build-static.
41963         * Makeconfig: Remove use of build-static.
41964         * dlfcn/Makefile: Likewise.
41965         * elf/Makefile: Likewise.
41966         * math/Makefile: Likewise.
41967         * misc/Makefile: Likewise.
41968         * nptl/Makefile: Likewise.
41969         * sysdeps/mach/hurd/Makefile: Likewise.
41971         * configure.in: PWD_P is not used anymore.
41972         * config.make.in: Remove PWD_P entry.
41974         * configure.in: Remove last remnants of RANLIB.
41975         No need to check for signed size_t anymore.
41976         Don't set libc_commonpagesize and libc_relro_required here for Alpha
41977         and IA-64.
41978         Remove __builtin_expect test because we require at least gcc 3.4.
41979         * aclocal.m4: Likewise.
41981         * wcsmbs/mbrtoc16.c: Implement using towc function.
41982         * wcsmbs/wcsmbsload.h: No need for toc16 and fromc16 functions.
41983         * wcsmbs/wcsmbsload.c: Likewise.
41984         * iconv/gconv_simple.c: Likewise.
41985         * iconv/gconv_int.h: Likewise.
41986         * iconv/gconv_builtin.h: Likewise.
41987         * iconv/iconv_prog.c: Remove CHAR16 handling.
41989         * wcsmbs/c16rtomb.c: Remove #if 0'ed code.
41991         * wcsmbs/mbrtowc.c: Better check for invalid inputs.
41993         * configure.in: Remove --with-elf and --enable-bounded options.
41994         Dont set base_machine for ia64.  More non-ELF conditions removed.
41995         Remove testing and setting of leading underscore information.
41996         * config.make.in (build-bounded): Set to no.
41997         * config.h.in: Remove NO_UNDERSCORES entry.
41998         * include/libc-symbols.h: Don't define HAVE_WEAK_SYMBOLS.  ELF has
41999         them.
42000         * csu/start.c: Remove !NO_UNDERSCORE code.
42001         * locale/localeinfo.h: Likewise.
42002         * sysdeps/generic/machine-gmon.h: Likewise.
42003         * sysdeps/generic/sysdep.h: Likewise.
42004         * sysdeps/i386/sysdep.h: Likewise.
42005         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
42006         * sysdeps/mach/sysdep.h: Likewise.
42007         * sysdeps/s390/s390-32/sysdep.h: Likewise.
42008         * sysdeps/s390/s390-64/sysdep.h: Likewise.
42009         * sysdeps/sh/sysdep.h: Likewise.
42010         * sysdeps/sparc/sparc32/alloca.S: Likewise.
42011         * sysdeps/unix/i386/sysdep.S: Likewise.
42012         * sysdeps/unix/sparc/start.c: Likewise.
42013         * sysdeps/unix/sparc/sysdep.S: Likewise.
42014         * sysdeps/unix/sparc/sysdep.h: Likewise.
42015         * sysdeps/unix/start.c: Likewise.
42016         * sysdeps/unix/x86_64/sysdep.S: Likewise.
42017         * sysdeps/x86_64/sysdep.h: Likewise.
42019 2012-01-07  Ulrich Drepper  <drepper@gmail.com>
42021         [BZ #13553]
42022         * misc/sys/cdefs.h: Remove __const, __signed, and __volatile definition
42023         for non-gcc.
42024         * argp/argp-fmtstream.h: Use const instead __const.
42025         * argp/argp.h: Likewise.
42026         * assert/assert.h: Likewise.
42027         * bits/fenv.h: Likewise.
42028         * bits/sched.h: Likewise.
42029         * bits/sigset.h: Likewise.
42030         * bits/sigthread.h: Likewise.
42031         * catgets/nl_types.h: Likewise.
42032         * conform/data/pthread.h-data: Likewise.
42033         * crypt/crypt-private.h: Likewise.
42034         * crypt/crypt.h: Likewise.
42035         * crypt/crypt_util.c: Likewise.
42036         * ctype/ctype.h: Likewise.
42037         * debug/execinfo.h: Likewise.
42038         * debug/mbsnrtowcs_chk.c: Likewise.
42039         * debug/mbsrtowcs_chk.c: Likewise.
42040         * debug/wcsnrtombs_chk.c: Likewise.
42041         * debug/wcsrtombs_chk.c: Likewise.
42042         * debug/wcstombs_chk.c: Likewise.
42043         * dirent/dirent.h: Likewise.
42044         * dlfcn/dlfcn.h: Likewise.
42045         * elf/neededtest4.c: Likewise.
42046         * grp/grp.h: Likewise.
42047         * gshadow/gshadow.h: Likewise.
42048         * iconv/gconv.h: Likewise.
42049         * iconv/gconv_int.h: Likewise.
42050         * iconv/gconv_simple.c: Likewise.
42051         * iconv/iconv.h: Likewise.
42052         * iconv/loop.c: Likewise.
42053         * iconv/skeleton.c: Likewise.
42054         * include/aio.h: Likewise.
42055         * include/aliases.h: Likewise.
42056         * include/argz.h: Likewise.
42057         * include/arpa/inet.h: Likewise.
42058         * include/assert.h: Likewise.
42059         * include/dirent.h: Likewise.
42060         * include/dlfcn.h: Likewise.
42061         * include/execinfo.h: Likewise.
42062         * include/fcntl.h: Likewise.
42063         * include/fenv.h: Likewise.
42064         * include/glob.h: Likewise.
42065         * include/grp.h: Likewise.
42066         * include/libintl.h: Likewise.
42067         * include/mntent.h: Likewise.
42068         * include/netdb.h: Likewise.
42069         * include/pwd.h: Likewise.
42070         * include/rpc/netdb.h: Likewise.
42071         * include/sched.h: Likewise.
42072         * include/search.h: Likewise.
42073         * include/shadow.h: Likewise.
42074         * include/signal.h: Likewise.
42075         * include/stdio.h: Likewise.
42076         * include/stdlib.h: Likewise.
42077         * include/string.h: Likewise.
42078         * include/sys/socket.h: Likewise.
42079         * include/sys/stat.h: Likewise.
42080         * include/sys/statfs.h: Likewise.
42081         * include/sys/statvfs.h: Likewise.
42082         * include/sys/syslog.h: Likewise.
42083         * include/sys/time.h: Likewise.
42084         * include/sys/uio.h: Likewise.
42085         * include/time.h: Likewise.
42086         * include/unistd.h: Likewise.
42087         * include/utmp.h: Likewise.
42088         * include/wchar.h: Likewise.
42089         * include/wctype.h: Likewise.
42090         * inet/aliases.h: Likewise.
42091         * inet/arpa/inet.h: Likewise.
42092         * inet/netinet/ether.h: Likewise.
42093         * inet/netinet/in.h: Likewise.
42094         * intl/libintl.h: Likewise.
42095         * io/bits/fcntl2.h: Likewise.
42096         * io/fcntl.h: Likewise.
42097         * io/ftw.h: Likewise.
42098         * io/sys/poll.h: Likewise.
42099         * io/sys/stat.h: Likewise.
42100         * io/sys/statfs.h: Likewise.
42101         * io/sys/statvfs.h: Likewise.
42102         * io/utime.h: Likewise.
42103         * libio/bits/stdio.h: Likewise.
42104         * libio/bits/stdio2.h: Likewise.
42105         * libio/libio.h: Likewise.
42106         * libio/libioP.h: Likewise.
42107         * libio/stdio.h: Likewise.
42108         * locale/lc-ctype.c: Likewise.
42109         * locale/locale.h: Likewise.
42110         * login/utmp.h: Likewise.
42111         * malloc/arena.c: Likewise.
42112         * malloc/malloc.c: Likewise.
42113         * malloc/malloc.h: Likewise.
42114         * malloc/mcheck.c: Likewise.
42115         * malloc/mtrace.c: Likewise.
42116         * math/bits/mathcalls.h: Likewise.
42117         * math/fenv.h: Likewise.
42118         * math/math_private.h: Likewise.
42119         * misc/bits/error.h: Likewise.
42120         * misc/bits/syslog.h: Likewise.
42121         * misc/err.h: Likewise.
42122         * misc/error.h: Likewise.
42123         * misc/fstab.h: Likewise.
42124         * misc/mntent.h: Likewise.
42125         * misc/regexp.h: Likewise.
42126         * misc/search.h: Likewise.
42127         * misc/sgtty.h: Likewise.
42128         * misc/sys/mman.h: Likewise.
42129         * misc/sys/syslog.h: Likewise.
42130         * misc/sys/uio.h: Likewise.
42131         * misc/sys/xattr.h: Likewise.
42132         * misc/ttyent.h: Likewise.
42133         * nis/rpcsvc/ypclnt.h: Likewise.
42134         * nss/nss.h: Likewise.
42135         * posix/bits/unistd.h: Likewise.
42136         * posix/fnmatch.h: Likewise.
42137         * posix/glob.h: Likewise.
42138         * posix/sched.h: Likewise.
42139         * posix/spawn.h: Likewise.
42140         * posix/sys/wait.h: Likewise.
42141         * posix/unistd.h: Likewise.
42142         * posix/wordexp.h: Likewise.
42143         * pwd/pwd.h: Likewise.
42144         * resolv/netdb.h: Likewise.
42145         * resource/sys/resource.h: Likewise.
42146         * rt/aio.h: Likewise.
42147         * rt/bits/mqueue2.h: Likewise.
42148         * rt/mqueue.h: Likewise.
42149         * shadow/shadow.h: Likewise.
42150         * signal/signal.h: Likewise.
42151         * socket/send.c: Likewise.
42152         * socket/sendto.c: Likewise.
42153         * socket/sys/socket.h: Likewise.
42154         * stdio-common/printf.h: Likewise.
42155         * stdlib/bits/stdlib.h: Likewise.
42156         * stdlib/fmtmsg.h: Likewise.
42157         * stdlib/monetary.h: Likewise.
42158         * stdlib/stdlib.h: Likewise.
42159         * stdlib/ucontext.h: Likewise.
42160         * streams/stropts.h: Likewise.
42161         * string/argz.h: Likewise.
42162         * string/bits/string2.h: Likewise.
42163         * string/string.h: Likewise.
42164         * string/strings.h: Likewise.
42165         * sunrpc/rpc/auth.h: Likewise.
42166         * sunrpc/rpc/auth_des.h: Likewise.
42167         * sunrpc/rpc/clnt.h: Likewise.
42168         * sunrpc/rpc/netdb.h: Likewise.
42169         * sunrpc/rpc/pmap_clnt.h: Likewise.
42170         * sunrpc/rpc/xdr.h: Likewise.
42171         * sysdeps/generic/inttypes.h: Likewise.
42172         * sysdeps/generic/net/if.h: Likewise.
42173         * sysdeps/generic/sys/swap.h: Likewise.
42174         * sysdeps/gnu/net/if.h: Likewise.
42175         * sysdeps/gnu/utmpx.h: Likewise.
42176         * sysdeps/i386/fpu/bits/fenv.h: Likewise.
42177         * sysdeps/i386/i486/bits/string.h: Likewise.
42178         * sysdeps/ieee754/ldbl-opt/nldbl-strtold_l.c: Likewise.
42179         * sysdeps/s390/bits/string.h: Likewise.
42180         * sysdeps/s390/fpu/bits/fenv.h: Likewise.
42181         * sysdeps/sparc/fpu/bits/fenv.h: Likewise.
42182         * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
42183         * sysdeps/unix/sysv/linux/bits/resource.h: Likewise.
42184         * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
42185         * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
42186         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
42187         * sysdeps/unix/sysv/linux/bits/sys_errlist.h: Likewise.
42188         * sysdeps/unix/sysv/linux/bits/uio.h: Likewise.
42189         * sysdeps/unix/sysv/linux/i386/glob64.c: Likewise.
42190         * sysdeps/unix/sysv/linux/i386/olddirent.h: Likewise.
42191         * sysdeps/unix/sysv/linux/preadv.c: Likewise.
42192         * sysdeps/unix/sysv/linux/prlimit.c: Likewise.
42193         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
42194         * sysdeps/unix/sysv/linux/readv.c: Likewise.
42195         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: Likewise.
42196         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: Likewise.
42197         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
42198         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
42199         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
42200         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
42201         * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: Likewise.
42202         * sysdeps/unix/sysv/linux/sys/acct.h: Likewise.
42203         * sysdeps/unix/sysv/linux/sys/epoll.h: Likewise.
42204         * sysdeps/unix/sysv/linux/sys/mount.h: Likewise.
42205         * sysdeps/unix/sysv/linux/sys/swap.h: Likewise.
42206         * sysdeps/unix/sysv/linux/sys/timerfd.h: Likewise.
42207         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
42208         * sysdeps/x86_64/fpu/bits/fenv.h: Likewise.
42209         * sysdeps/x86_64/strcasecmp_l-nonascii.c: Likewise.
42210         * sysdeps/x86_64/strncase_l-nonascii.c: Likewise.
42211         * sysvipc/sys/ipc.h: Likewise.
42212         * sysvipc/sys/msg.h: Likewise.
42213         * sysvipc/sys/sem.h: Likewise.
42214         * sysvipc/sys/shm.h: Likewise.
42215         * termios/termios.h: Likewise.
42216         * time/sys/time.h: Likewise.
42217         * time/time.h: Likewise.
42218         * wcsmbs/bits/wchar2.h: Likewise.
42219         * wcsmbs/uchar.h: Likewise.
42220         * wcsmbs/wchar.h: Likewise.
42221         * wctype/wctype.h: Likewise.
42223         [BZ #13551]
42224         * Makeconfig: Remove all but ELF support including AIX support.
42225         * Makerules: Likewise.
42226         * config.h.in: Likewise.
42227         * config.make.in: Likewise.
42228         * configure: Likewise.
42229         * configure.in: Likewise.
42230         * csu/Makefile: Likewise.
42231         * csu/version.c: Likewise.
42232         * debug/Makefile: Likewise.
42233         * dlfcn/Makefile: Likewise.
42234         * elf/Makefile: Likewise.
42235         * extra-lib.mk: Likewise.
42236         * iconv/Makefile: Likewise.
42237         * include/libc-symbols.h: Likewise.
42238         * include/shlib-compat.h: Likewise.
42239         * resolv/Makefile: Likewise.
42240         * resolv/res_libc.c: Likewise.
42241         * rt/Makefile: Likewise.
42242         * sysdeps/i386/asm-syntax.h: Likewise.
42243         * sysdeps/i386/sysdep.h: Likewise.
42244         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
42245         * sysdeps/mach/sysdep.h: Likewise.
42246         * sysdeps/powerpc/powerpc32/Makefile: Likewise.
42247         * sysdeps/powerpc/powerpc64/Makefile: Likewise.
42248         * sysdeps/s390/asm-syntax.h: Likewise.
42249         * sysdeps/s390/s390-32/sysdep.h: Likewise.
42250         * sysdeps/s390/s390-64/sysdep.h: Likewise.
42251         * sysdeps/sh/sysdep.h: Likewise.
42252         * sysdeps/unix/sparc/sysdep.h: Likewise.
42253         * sysdeps/wordsize-32/divdi3.c: Likewise.
42254         * sysdeps/x86_64/sysdep.h: Likewise.
42256         * argp/Versions: Remove _argp_unlock_xxx.
42258         [BZ #13559]
42259         * abilist/ld.abilist: Update.  Adjust for removal of tls option.
42260         * abilist/libBrokenLocale.abilist: Likewise.
42261         * abilist/libanl.abilist: Likewise.
42262         * abilist/libc.abilist: Likewise.
42263         * abilist/libcrypt.abilist: Likewise.
42264         * abilist/libdl.abilist: Likewise.
42265         * abilist/libm.abilist: Likewise.
42266         * abilist/libnsl.abilist: Likewise.
42267         * abilist/libpthread.abilist: Likewise.
42268         * abilist/libresolv.abilist: Likewise.
42269         * abilist/librt.abilist: Likewise.
42270         * abilist/libthread_db.abilist: Likewise.
42271         * abilist/libutil.abilist: Likewise.
42272         * abilist/libnss_db.abilist: New file.
42274         * scripts/abilist.awk: Add support for indirect functions.
42276         * sysdeps/unix/sysv/linux/configure.in: Remove m68k support.
42278         * sysdeps/generic/ldsodefs.h: Remove Alpha support.
42280         * shlib-versions: Remove entries for ports architectures.
42282         * elf/tls-macros.h: Remove support for Alpha and IA-64.  Should be in
42283         files in ports.
42284         * elf/stackguard-macros.h: Remove support for IA-64.
42285         * elf/tst-auditmod1.c: Likewise.
42286         * sysdeps/generic/ldsodefs.h: Likewise.
42288         * sysdeps/unix/sysv/linux/configure.in: Ports should define
42289         libc_cv_gcc_unwind_find_fde and arch_minimum_kernel in their
42290         configure files.
42292         [BZ #13552]
42293         * configure.in: Remove --enable-omitfp support.
42294         * FAQ.in: Adjust.
42295         * config.make.in: Likewise.
42296         * Makeconfig: Likewise.
42297         * manual/install.texi: Likewise.
42299         In case anyone cares, the IA-64 architecture could move to ports.
42300         * sysdeps/ia64/*: Removed.
42301         * sysdeps/unix/sysv/linux/ia64/*: Removed.
42302         * sysdeps/unix/sysv/linux/kernel-features.h: Remove IA-64 support.
42304         [BZ #13555]
42305         * configure.in: Remove entries for unsupported architectures.
42307         [BZ #13533]
42308         * iconv/gconv_builtin.h: Use CHAR16 for the char16_t conversions.
42309         * iconv/gconv_simple.c: Rename char16_t routines.  Add char16_t<->utf8
42310         routines.
42311         * iconv/gconv_int.h: Adjust prototypes for char16_t routines.
42312         * iconv/iconv_prog.c: Recognize CHAR16 as internal name.
42313         * wcsmbs/c16rtomb.c: Fix a few problems.  Disable all the code and
42314         fall back to using wcrtomb.
42315         * wcsmbs/mbrtoc16.: Fix implementation to handle real conversions.
42316         * wcsmbs/wcsmbsload.c: Make char16 routines optional.  Adjust for
42317         renaming.
42318         * wcsmbs/Makefile (tests): Add tst-c16c32-1:
42319         * wcsmbs/tst-c16c32-1.c: New file.
42321         * wcsmbs/wcrtomb.c: Use MB_LEN_MAX instead of MB_CUR_MAX for sizing
42322         local variable.
42324         * libio/stdio.h: Do not declare gets at all for _GNU_SOURCE.
42326         * elf/tst-unique3.cc: Add explicit declaration of gets.
42327         * elf/tst-unique3lib.cc: Likewise.
42328         * elf/tst-unique3lib2.cc: Likewise.
42329         * elf/tst-unique4.cc: Likewise.
42331         * string/test-strcpy.c (do_one_test): Fix format string for WIDE use.
42333 2012-01-06  Joseph Myers  <joseph@codesourcery.com>
42335         [BZ #13566]
42336         * assert/assert.h (static_assert): Don't define for C++.
42337         * libio/stdio.h (gets): Do declare for C++ <= C++11.
42338         * wcsmbs/uchar.h (char16_t, char32_t): Don't typedef for C++11.
42340 2012-01-03  Ulrich Drepper  <drepper@gmail.com>
42342         * iconv/loop.c (single loop): Fix assertion in storing of
42343         remaining bytes.
42345         * posix/regcomp.c (init_word_char): Optimize a bit for sane encodings.
42347 2012-01-01  Ulrich Drepper  <drepper@gmail.com>
42349         * posix/getconf.c: Update copyright year.
42350         * nss/getent.c: Likewise.
42351         * nss/makedb.c: Likewise.
42352         * iconv/iconvconfig.c: Likewise.
42353         * iconv/iconv_prog.c: Likewise.
42354         * elf/ldconfig.c: Likewise.
42355         * elf/pldd.c: Likewise.
42356         * elf/sotruss.ksh: Likewise.
42357         * catgets/gencat.c: Likewise.
42358         * csu/version.c: Likewise.
42359         * elf/ldd.bash.in: Likewise.
42360         * elf/sprof.c (print_version): Likewise.
42361         * locale/programs/locale.c: Likewise.
42362         * locale/programs/localedef.c: Likewise.
42363         * login/programs/pt_chown.c: Likewise.
42364         * nscd/nscd.c (print_version): Likewise.
42365         * debug/xtrace.sh: Likewise.
42366         * malloc/memusage.sh: Likewise.
42367         * malloc/mtrace.pl: Likewise.
42368         * debug/catchsegv.sh: Likewise.
42370 2011-12-30  Jakub Jelinek  <jakub@redhat.com>
42372         * posix/regex_internal.c (re_string_fetch_byte_case): Remove
42373         pure attribute.
42375 2011-12-24  Ulrich Drepper  <drepper@gmail.com>
42377         [BZ #13533]
42378         * iconv/gconv_simple.c: Add ASCII<->UTF-16 transformations.
42379         * iconv/gconv_builtin.h: Add entries for internal ASCII<->UTF-16
42380         transformations.
42381         * iconv/gconv_int.h: Likewise.
42382         * wcsmbs/Makefile (routines): Add mbrtoc16 and c16rtomb.
42383         * wcsmbs/Versions: Export mbrtoc16, c16rtomb, mbrtoc32, c32rtomb
42384         from libc for GLIBC_2.16.
42385         * wcsmbs/mbrtowc.c: Define mbrtoc32 alias.
42386         * wcsmbs/wcrtomb.c: Define c32rtomb alias.
42387         * wcsmbs/uchar.h: Really define mbstate_t.
42388         * wcsmbs/wchar.h: Allow defining mbstate_t in uchar.h.
42389         * wcsmbs/c16rtomb.c: New file.
42390         * wcsmbs/mbrtoc16.c: New file.
42391         * wcsmbs/wcsmbsload.c: Add static definitions for c16 conversions
42392         for C/POSIX locale.
42393         (__wcsmbs_load_conv): Do not fill in c16 routines yet.
42394         * wcsmbs/wcsmbsload.h (gconv_fcts): Add entries for c16 routines.
42396         * wcsmbs/wchar.h: Add missing __restrict.
42398 2011-12-23  Ulrich Drepper  <drepper@gmail.com>
42400         [BZ #13532]
42401         * time/Makefile (routines): Add timespec_get.
42402         * time/Versions: Export timespec_get from libc for GLIBC_2.16.
42403         * time/time.h: Define TIME_UTC and declare timespec_get.  Define
42404         timespec for ISO C11.
42405         * time/timespec_get.c: New file.
42406         * sysdeps/unix/sysv/linux/timespec_get.c: New file.
42407         * sysdeps/unix/sysv/linux/x86_64/timespec_get.c: New file.
42409         [BZ #13531]
42410         * malloc/malloc.c: Define alias aligned_alloc for public_mEMALIGn.
42411         * stdlib/stdlib.h: Declare aligned_alloc.
42412         * Versions.def: Add GLIBC_2.16 for libc.
42413         * malloc/Versions: Export aligned_alloc from libc for GLIBC_2.16.
42415         [BZ 13527]
42416         * stdlib/stdlib.h: Make at_quick_exit and quick_exit available for
42417         ISO C11.
42419         * include/features.h: Define __USE_ISOCXX11 when compiling ISO C++11
42420         code.
42422         [BZ #13528]
42423         * libio/stdio.h: Do not declare gets for ISO C11 and _GNU_SOURCE.
42425         [BZ #13529]
42426         * assert/assert.h (static_assert): Define.
42428         * version.h: Update for 2.16 development version.
42430         [BZ #13526]
42431         * include/features.h: Handle __STDC_VERSION__ >= 201112 and
42432         _ISOC11_SOURCE.
42434         * version.h (RELEASE): Bump for 2.15 release.
42435         * include/features.h (__GLIBC_MINOR__): Bump to 15.
42437         * sysdeps/x86_64/dl-machine.h: Fix typos in comments.
42438         Patch by Marek Polacek <mpolacek@redhat.com>.
42440         * bits/byteswap.h: Protect long long constants with __extension__.
42441         * sysdeps/i386/bits/byteswap.h: Likewise.
42442         * sysdeps/ia64/bits/byteswap.h: Likewise.
42443         * sysdeps/s390/bits/byteswap.h: Likewise.
42444         * sysdeps/x86_64/bits/byteswap.h: Likewise.
42446 2011-12-23  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
42448         [BZ #13540]
42449         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Fix overrun in
42450         destination buffer.
42451         * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: Likewise.
42453 2011-12-23  Marek Polacek  <polacek@redhat.com>
42455         * elf/dl-addr.c (determine_info): Add inline keyword.
42456         * elf/tst-auditmod4b.c (check_avx): Likewise.
42457         * elf/tst-auditmod6b.c (check_avx): Likewise.
42458         * elf/tst-auditmod6c.c (check_avx): Likewise.
42459         * elf/tst-auditmod7b.c (check_avx): Likewise.
42461 2011-12-23  Ulrich Drepper  <drepper@gmail.com>
42463         * sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Also enable for
42464         !__SSE_MATH__.
42466 2011-12-23  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
42468         [BZ #13540]
42469         * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: Fix wrong copying
42470         processing for last bytes.
42472 2011-08-06  Bruno Haible  <bruno@clisp.org>
42474         [BZ #13061]
42475         * iconvdata/cp1258.c (comp_table_data): Combine U+00A8 U+0301 to
42476         U+0385, not to U+1FEE.
42478         [BZ #13062]
42479         * iconvdata/tcvn5712-1.c (comp_table_data): Remove useless and wrong
42480         entry for U+00A5 U+0301.
42482 2011-12-22  Ulrich Drepper  <drepper@gmail.com>
42484         [BZ #13166]
42485         * inet/getnameinfo.c (getnameinfo): Return EAI_OVERFLOW if the
42486         buffer for the output is too small.
42488         * sysdeps/i386/fpu/bits/fenv.h [__SSE_MATH__]: Add feraiseexcept
42489         optimization.
42491         [BZ #13185]
42492         * sysdeps/i386/fpu/fgetexcptflg.c (__fegetexceptflag): Also return
42493         SSE flags if possible.
42495 2011-12-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
42497         [BZ #13540]
42498         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Fix wrong copying
42499         processing for last bytes.
42501 2011-12-22  Joseph Myers  <joseph@codesourcery.com>
42503         * sysdeps/unix/sysv/linux/Makefile (syscall-list-variants)
42504         (syscall-list-default-options, syscall-list-default-condition)
42505         (syscall-list-includes): Define.
42506         ($(objpfx)syscall-%.h $(objpfx)syscall-%.d): Support arbitrary
42507         list of ABIs and options and #if conditions for each ABI.  Do not
42508         handle common syscalls between ABIs specially.
42509         * sysdeps/unix/sysv/linux/powerpc/Makefile (64bit-predefine):
42510         Remove.
42511         (syscall-list-variants, syscall-list-32bit-options)
42512         (syscall-list-32bit-condition, syscall-list-64bit-options)
42513         (syscall-list-64bit-condition): Define.
42514         * sysdeps/unix/sysv/linux/s390/Makefile (64bit-predefine): Remove.
42515         (syscall-list-variants, syscall-list-32bit-options)
42516         (syscall-list-32bit-condition, syscall-list-64bit-options)
42517         (syscall-list-64bit-condition): Define.
42518         * sysdeps/unix/sysv/linux/sparc/Makefile (64bit-predefine):
42519         Remove.
42520         (syscall-list-variants, syscall-list-32bit-options)
42521         (syscall-list-32bit-condition, syscall-list-64bit-options)
42522         (syscall-list-64bit-condition): Define.
42523         * sysdeps/unix/sysv/linux/x86_64/Makefile (64bit-predefine):
42524         Remove.
42525         (syscall-list-variants, syscall-list-32bit-options)
42526         (syscall-list-32bit-condition, syscall-list-64bit-options)
42527         (syscall-list-64bit-condition): Define.
42529 2011-12-22  Ulrich Drepper  <drepper@gmail.com>
42531         * locale/iso-639.def: Add brx entry.
42533         [BZ #13328]
42534         * malloc/mtrace.c (tr_freehook): Avoid unnecessary unlock/lock.
42535         Proposed by Mariusz_Cukr <marcukr@op.pl>.
42537         * sysdeps/x86_64/fpu/bits/fenv.h: Use __REDIRECT_NTH for
42538         __feraiseexcept_renamed.
42540 2011-12-21  Ulrich Drepper  <drepper@gmail.com>
42542         [BZ #13538]
42543         * sysdeps/unix/sysv/linux/sys/epoll.h: Initialize EPOLLONESHOT and
42544         EPOLLET with unsigned values.
42545         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
42546         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
42548         * math/s_cacosh.c: Use Kahan's formula if the subtraction could lead
42549         to large cancellation.
42550         * math/s_cacoshf.c: Likewise.
42551         * math/s_cacoshl.c: Likewise.
42553 2011-11-18  Richard B. Kreckel  <kreckel@ginac.de>
42555         [BZ #13305]
42556         [BZ #12786]
42557         * math/s_cacosh.c: Fix rare miscomputation in cacosh().
42558         * math/s_cacoshf.c: Likewise.
42559         * math/s_cacoshl.c: Likewise.
42561 2011-12-21  Ulrich Drepper  <drepper@gmail.com>
42563         [BZ #13439]
42564         * iconv/gconv.h: Define __GCONV_SWAP.
42565         * iconvdata/unicode.c: The swap bit must be stored in __flags.
42566         * iconvdata/utf-16.c: Likewise.
42567         * iconvdata/utf-32.c: Likewise.
42569 2011-12-21  Andreas Schwab  <schwab@linux-m68k.org>
42571         [BZ #13524]
42572         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Clear lowest limb of
42573         numerator after shifting it by one limb.
42575 2011-12-19  Rafael Ávila de Espíndola  <rafael.espindola@gmail.com>
42577         * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Define it only
42578         under [__USE_EXTERN_INLINES].
42580 2011-12-17  Ulrich Drepper  <drepper@gmail.com>
42582         [BZ #13446]
42583         * stdio-common/vfprintf.c (vfprintf): Fix extension of specs array.
42585 2011-11-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
42587         * sysdeps/powerpc/Makefile: Added locale-defines.sym generation.
42588         * sysdeps/powerpc/locale-defines.sym: Locale definitions for strcasecmp
42589         optimized code.
42590         * sysdeps/powerpc/powerpc32/power7/Makefile: New file.
42591         * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: New file.
42592         * sysdeps/powerpc/powerpc32/power7/strcasecmp_l.S: New file.
42593         * sysdeps/powerpc/powerpc64/power7/Makefile: Added unroll-loop option
42594         for strncasecmp/strncasecmp_l compilation.
42595         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: New file.
42596         * sysdeps/powerpc/powerpc64/power7/strcasecmp_l.S: New file.
42598 2011-12-08  Marek Polacek  <mpolacek@redhat.com>
42600         [BZ #13484]
42601         * math/bits/math-finite.h: Use __REDIRECT_NTH and __NTH instead
42602         of __asm__.
42604 2011-12-17  Ulrich Drepper  <drepper@gmail.com>
42606         [BZ #13506]
42607         * time/tzfile.c (__tzfile_read): Check values from file header.
42609 2011-11-21  Will Schmidt  <will_schmidt@vnet.ibm.com>
42611         * powerpc/powerpc32/sysdep.h: Define SETUP_GOT_ACCESS() macro.
42612         * powerpc/powerpc32/a2/memcpy.S: Use SETUP_GOT_ACCESS() macro.
42613         * powerpc/powerpc32/dl-start.S: Likewise.
42614         * powerpc/powerpc32/elf/start.S: Likewise.
42615         * powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
42616         * powerpc/powerpc32/fpu/s_ceil.S: Likewise.
42617         * powerpc/powerpc32/fpu/s_ceilf.S: Likewise.
42618         * powerpc/powerpc32/fpu/s_floor.S: Likewise.
42619         * powerpc/powerpc32/fpu/s_floorf.S: Likewise.
42620         * powerpc/powerpc32/fpu/s_lround.S: Likewise.
42621         * powerpc/powerpc32/fpu/s_rint.S: Likewise.
42622         * powerpc/powerpc32/fpu/s_rintf.S: Likewise.
42623         * powerpc/powerpc32/fpu/s_round.S: Likewise.
42624         * powerpc/powerpc32/fpu/s_roundf.S: Likewise.
42625         * powerpc/powerpc32/fpu/s_trunc.S: Likewise.
42626         * powerpc/powerpc32/fpu/s_truncf.S: Likewise.
42627         * powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
42628         * powerpc/powerpc32/memset.S: Likewise.
42629         * powerpc/powerpc32/power4/fpu/s_llround.S: Likewise.
42630         * powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
42631         * powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
42632         * powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
42633         * powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
42634         * powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
42635         * powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
42636         * powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
42637         * unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: Likewise.
42638         * unix/sysv/linux/powerpc/powerpc32/brk.S: Likewise.
42639         * unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Likewise.
42640         * unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
42641         * unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
42643 2011-11-18  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
42645         * math/libm-test.inc: Added more nearbyint tests.
42646         * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S: New file.
42647         * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S: New file.
42648         * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S: New file.
42649         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: New file.
42651 2011-11-21  Ross Lagerwall  <rosslagerwall@gmail.com>
42653         * resolv/res_init.c (__res_vinit): Open /etc/resolv.conf with
42654         FD_CLOEXEC.
42656 2011-11-14  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
42658         * sysdeps/x86_64/multiarch/Makefile [subdir=wcsmbs] (sysdep_routines):
42659         Add wcscpy-ssse3 wcscpy-c.
42660         * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: New file.
42661         * sysdeps/x86_64/multiarch/wcscpy-c.c: New file.
42662         * sysdeps/x86_64/multiarch/wcscpy.S: New file.
42663         * sysdeps/x86_64/wcschr.S: New file.
42664         * sysdeps/x86_64/wcsrchr.S: New file.
42665         * string/test-strcmp.c: Remove checking of wcscmp function for
42666         wrong alignments.
42667         * sysdeps/i386/i686/multiarch/Makefile [subdir=wcsmbs]
42668         (sysdep_routines): Add wcscpy-ssse3 wcscpy-c wcschr-sse2 wcschr-c
42669         wcsrchr-sse2 wcsrchr-c.
42670         * sysdeps/i386/i686/multiarch/wcschr.S: New file.
42671         * sysdeps/i386/i686/multiarch/wcschr-c.c: New file.
42672         * sysdeps/i386/i686/multiarch/wcschr-sse2.S: New file.
42673         * sysdeps/i386/i686/multiarch/wcsrchr.S: New file.
42674         * sysdeps/i386/i686/multiarch/wcsrchr-c.c: New file.
42675         * sysdeps/i386/i686/multiarch/wcsrchr-sse2.S: New file.
42676         * sysdeps/i386/i686/multiarch/wcscpy.S: New file.
42677         * sysdeps/i386/i686/multiarch/wcscpy-c.c: New file.
42678         * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: New file.
42679         * wcsmbc/wcschr.c (WCSCHR): New macro.
42681 2011-11-17  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
42683         * wcsmbs/Makefile (strop-tests): Add wcsrchr wcscpy.
42684         * wcsmbs/test-wcsrchr.c: New file.
42685         * string/test-strrchr.c: Add wcsrchr support.
42686         (WIDE): New macro.
42687         * wcsmbs/test-wcscpy.c: New file.
42688         * string/test-strcpy.c: Add wcscpy support.
42689         (WIDE): New macro.
42691 2011-12-10  Ulrich Drepper  <drepper@gmail.com>
42693         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Lift one operation out of
42694         the inner loop.
42696 2011-12-06  Andreas Schwab  <schwab@linux-m68k.org>
42698         [BZ #13472]
42699         * sysdeps/powerpc/fpu/e_hypot.c (twoM600): Correct value.
42701 2011-12-04  Ulrich Drepper  <drepper@gmail.com>
42703         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Fix attribute.
42704         Minor optimizations.
42706         * sunrpc/clnt_unix.c (clntunix_control): Fix aliasing issues.
42707         * sunrpc/clnt_tcp.c (clnttcp_control): Likewise.
42708         * sunrpc/clnt_udp.c (clntudp_call): Likewise.
42710 2011-12-03  Ulrich Drepper  <drepper@gmail.com>
42712         * inet/netinet/in.h: Provide versions of IN6_IS_ADDR_UNSPECIFIED,
42713         IN6_IS_ADDR_LOOPBACK, IN6_IS_ADDR_LINKLOCAL, IN6_IS_ADDR_SITELOCAL,
42714         IN6_IS_ADDR_V4MAPPED, IN6_IS_ADDR_V4COMPAT, and IN6_ARE_ADDR_EQUAL
42715         for gcc to avoid warnings.
42716         * inet/Makefile (tests): Add tst-checks.
42717         * inet/tst-checks.c: New file.
42719         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Add attribute to avoid
42720         warning.
42722         * sysdeps/x86_64/multiarch/wmemcmp-c.c: Provide prototype for
42723         __wmemcmp_sse2.
42725         * sysdeps/x86_64/fpu/s_scalbln.c: Removed.
42726         * sysdeps/x86_64/fpu/s_scalbn.c: Removed.
42728         * malloc/mcheck.h: Fix use of incorrect encoding in comment.
42730 2011-12-02  Ulrich Drepper  <drepper@gmail.com>
42732         * nis/nis_findserv.c (__nis_findfastest_with_timeout): Avoid aliasing
42733         problem.
42735         * nscd/aicache.c (addhstaiX): Avoid unused variable warning.
42737 2011-11-29  Joseph Myers  <joseph@codesourcery.com>
42739         * sysdeps/unix/sysv/linux/sh/bits/atomic.h (rNOSP): Define
42740         conditional on GCC version.
42741         (__arch_compare_and_exchange_val_8_acq)
42742         (__arch_compare_and_exchange_val_16_acq)
42743         (__arch_compare_and_exchange_val_32_acq, atomic_exchange_and_add)
42744         (atomic_add, atomic_add_negative, atomic_add_zero, atomic_bit_set)
42745         (atomic_bit_test_set): Use rNOSP instead of "r" constraints.
42747 2011-12-02  Joseph Myers  <joseph@codesourcery.com>
42749         * sysdeps/sh/backtrace.c: New file.
42751 2011-12-02  Andreas Schwab  <schwab@redhat.com>
42753         * misc/bits/select2.h (__FD_ELT): Mark as extension.  Add
42754         parenthesis.
42756 2011-12-01  Andreas Schwab  <schwab@redhat.com>
42758         * sysdeps/unix/sysv/linux/futimes.c: Truncate time values when
42759         falling back to utime.
42761 2011-11-30  Andreas Schwab  <schwab@redhat.com>
42763         * sysdeps/s390/fpu/libm-test-ulps: Relax cpow (2 + 3 i, 4 + 0 i)
42764         expectations for float.
42766 2011-11-29  Andreas Schwab  <schwab@redhat.com>
42768         * locale/weight.h (findidx): Add parameter len.
42769         * locale/weightwc.h (findidx): Likewise.
42770         * posix/fnmatch_loop.c (FCT): Adjust caller.
42771         * posix/regcomp.c (build_equiv_class): Likewise.
42772         * posix/regex_internal.h (re_string_elem_size_at): Likewise.
42773         * posix/regexec.c (check_node_accept_bytes): Likewise.
42774         * string/strcoll_l.c (STRCOLL): Likewise.
42775         * string/strxfrm_l.c (STRXFRM): Likewise.
42777 2011-11-17  Ulrich Drepper  <drepper@gmail.com>
42779         * Makefile.in: Remove CVSOPT handling.
42780         * configure.in: Remove use of AC_REVISION.
42781         * iconvdata/Makefile (distribute): No need to filter out CVS.
42782         * scripts/list-sources.sh: Remove CVS, subversion and monotone
42783         handling.
42785 2011-11-16  Andreas Schwab  <schwab@redhat.com>
42787         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S
42788         [USE_AS_STRCASECMP_L]: Fix argument offsets for non-PIC.
42789         [USE_AS_STRNCASECMP_L]: Likewise.
42790         (__strcasecmp_ssse3, __strncasecmp_ssse3): Handle
42791         NO_TLS_DIRECT_SEG_REFS.
42792         * sysdeps/i386/i686/multiarch/strcmp-sse4.S [USE_AS_STRCASECMP_L]:
42793         Fix argument offsets for non-PIC.
42794         [USE_AS_STRNCASECMP_L]: Likewise.
42795         (__strcasecmp_sse4_2, __strncasecmp_sse4_2): Handle
42796         NO_TLS_DIRECT_SEG_REFS.
42798 2011-11-15  Ulrich Drepper  <drepper@gmail.com>
42800         * locale/loadarchive.c (_nl_load_locale_from_archive): Open files with
42801         O_CLOEXEC.
42802         * locale/loadlocale.c (_nl_load_locale): Likewise.
42804 2011-11-15  Andreas Schwab  <schwab@redhat.com>
42806         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU)
42807         [__ASSUME_POSIX_CPU_TIMERS > 0]: Assign to retval and break.
42808         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c
42809         (SYSCALL_GETTIME): Set errno on error.
42811         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Properly
42812         count references to noai6ai_cached.
42814 2011-11-15  Ulrich Drepper  <drepper@gmail.com>
42816         * time/getdate.c (__getdate_r): Set FD_CLOEXEC for given file.
42818         * sysdeps/unix/sysv/linux/readonly-area.c (__readonly_area): Set
42819         FD_CLOEXEC for /proc/self/maps.
42821         * sysdeps/unix/sysv/linux/getsysstats.c (phys_pages_info): Set
42822         FD_CLOEXEC for /proc/meminfo.
42824         * sysdeps/posix/getaddrinfo.c (gaiconf_init): Set FD_CLOEXEC for
42825         gai.conf.
42827         * resolv/res_query.c (res_hostalias):  Don't allow cancellation and set
42828         FD_CLOEXEC for given file.
42830         * resolv/res_hconf.c (do_init): Set FD_CLOEXEC for host.conf.
42832         * resolv/gethnamaddr.c (_sethtent): Don't allow cancellation and set
42833         FD_CLOEXEC for /etc/hosts.
42834         (_gethtent): Likewise.
42836         * nss/nsswitch.c (nss_parse_file): Set FD_CLOEXEC.
42838         * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): Don't allow
42839         cancellation and set FD_CLOEXEC for /etc/netgroup.
42841         * nss/nss_files/files-key.c (search): Don't allow cancellation when
42842         reading /etc/publickey.
42844         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Don't
42845         allow cancellation when reading /etc/group.
42847         * nss/nss_files/files-alias.c (internal_setent): Don't allow
42848         cancellation.
42849         (get_next_alias): Likewise for included file.  Also set FD_CLOEXEC.
42851         * nss/nss_files/files-XXX.c (internal_setent): Don't allow cancellation
42852         when using data file.
42854         * nis/nss-default.c (init): Set FD_CLOEXEC for /etc/default/nss.
42856         * nis/nis_file.c (read_nis_obj): Set FD_CLOEXEC.
42857         (write_nis_obj): Use "c" and "e" in fopen.
42859         * misc/mntent_r.c (__setmntent): Also append e to fopen format.
42861         * misc/getusershell.c (initshells): Set FD_CLOEXEC for /etc/shells.
42863         * misc/getttyent.c (setttyent): Set FD_CLOEXEC.
42865         * misc/getpass.c (getpass): Set FD_CLOEXEC for /dev/tty.
42867         * intl/localealias.c (read_alias_file): Set FD_CLOEXEC for
42868         locale.alias.
42870         * inet/ruserpass.c (ruserpass): Set FD_CLOEXEC for .netrc.
42872         * inet/rcmd.c (iruserfopen): Set FD_CLOEXEC for hosts.equiv.
42874         * iconv/gconv_conf.c (read_conf_file): Set FD_CLOEXEC for config file.
42876         * hesiod/hesiod.c (parse_config_file): Prevent cancellation in config
42877         file parsing and set FD_CLOEXEC.
42879 2011-11-14  Ulrich Drepper  <drepper@gmail.com>
42881         * time/tzfile.c (__tzfile_read): Use "e" in fopen call.
42883 2011-11-14  Andreas Schwab  <schwab@redhat.com>
42885         * malloc/arena.c (arena_get2): Don't call reused_arena when
42886         _int_new_arena failed.
42888 2011-11-14  Ulrich Drepper  <drepper@gmail.com>
42890         * sysdeps/i386/i686/multiarch/Makefile [subdir=string]
42891         (sysdep_routines): Add strcasecmp_l-sse4 and strncase_l-sse4.
42892         * sysdeps/i386/i686/multiarch/strcasecmp.S: Re-enable SSE4.2 code.
42893         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
42894         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
42895         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Change to allow reuse
42896         to compile strcasecmp and strncasecmp.
42897         * sysdeps/i386/i686/multiarch/strcasecmp_l-sse4.S: New file.
42898         * sysdeps/i386/i686/multiarch/strncase_l-sse4.S: New file.
42900         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Use L macro consistently.
42902 2011-11-13  Ulrich Drepper  <drepper@gmail.com>
42904         * sysdeps/i386/i686/multiarch/Makefile [subdir=string]: Add
42905         locale-defines.sym to gen-as-const-headers.
42906         (sysdep_routines): Add strcasecmp_l-c, strcasecmp-c,
42907         strcasecmp_l-ssse3, strncase_l-c, strncase-c, and strncase_l-ssse3.
42908         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Change to allow reuse
42909         to compile strcasecmp and strncasecmp.
42910         * sysdeps/i386/i686/multiarch/strcmp.S: Allow to use for
42911         strcasecmp_l and strncasecmp_l.
42912         * sysdeps/i386/i686/multiarch/locale-defines.sym: New file.
42913         * sysdeps/i386/i686/multiarch/strcasecmp-c.c: New file.
42914         * sysdeps/i386/i686/multiarch/strcasecmp.S: New file.
42915         * sysdeps/i386/i686/multiarch/strcasecmp_l-c.c: New file.
42916         * sysdeps/i386/i686/multiarch/strcasecmp_l-ssse3.S: New file.
42917         * sysdeps/i386/i686/multiarch/strcasecmp_l.S: New file.
42918         * sysdeps/i386/i686/multiarch/strncase-c.c: New file.
42919         * sysdeps/i386/i686/multiarch/strncase.S: New file.
42920         * sysdeps/i386/i686/multiarch/strncase_l-c.c: New file.
42921         * sysdeps/i386/i686/multiarch/strncase_l-ssse3.S: New file.
42922         * sysdeps/i386/i686/multiarch/strncase_l.S: New file.
42924 2011-11-12  Ulrich Drepper  <drepper@gmail.com>
42926         * sysdeps/unix/clock_gettime.c (clock_gettime): No need to assign
42927         result of SYSDEP_GETTIME_CPU to retval.
42928         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU): Add
42929         parameter list to macro.  Remove trailing semicolon.  Adjust users.
42931         * resolv/getaddrinfo_a.c (getaddrinfo_a): Avoid warning about unused
42932         variable.
42934         * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l): Avoid storing
42935         mantissa words.
42936         * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l): Likewise.
42938         * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Avoid warning
42939         from unused variable.
42941         * sysdeps/generic/sysdep.h: Clean up, pretty print, use dwarf2.h for
42942         DWARF definitions.
42943         * sysdeps/generic/dwarf2.h: Don't define enums when using the file
42944         for assembling.
42946         * elf/dl-iteratephdr.c [!SHARED] (__dl_iterate_phdr): Don't iterate
42947         over namespaces.
42949         * sunrpc/rpc_prot.c (rejected): Fix case value.
42951         * sysdeps/unix/sysv/linux/internal_statvfs.c (INTERNAL_STATVFS): Use
42952         unsigned long long int to avoid warnings in shift.
42954         * posix/regex_internal.c (re_string_reconstruct): Actually use result
42955         of use of trans.
42956         * posix/regex_internal.h (re_string_wchar_at): Remove temporary
42957         variable tmp.
42959         * sysdeps/i386/i686/multiarch/wcscmp-c.c: Avoid warning.
42960         * sysdeps/i386/i686/multiarch/wcslen-c.c: Likewise.
42961         * sysdeps/i386/i686/multiarch/wmemcmp-c.c: Likewise.
42963         * nis/nis_table.c (nis_list): Use variable of correct type for
42964         result of __follow_path call.
42966 2011-11-07  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
42968         * sysdeps/powerpc/fpu/math_private.h: Using inline assembly version
42969         of math functions ceil, trunc, floor, round, and sqrt, when
42970         avaliable on the platform.
42971         * sysdeps/powerpc/fpu/e_sqrt.c: Undefine __ieee754_sqrt to avoid
42972         name clash.
42973         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
42974         * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Likewise.
42975         * sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c: Likewise.
42977 2011-10-30  Marek Polacek  <mpolacek@redhat.com>
42979         * libio/wfileops.c (_IO_wfile_underflow_mmap): Remove unused variable.
42980         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Likewise.
42982 2011-11-11  Roland McGrath  <roland@hack.frob.com>
42984         * include/unistd.h: Fix __readlink return type.
42985         Reported by Chris Metcalf <cmetcalf@tilera.com>.
42987 2011-11-11  Ulrich Drepper  <drepper@gmail.com>
42989         * stdlib/ucontext.h: Undo last change for makecontext.
42991 2011-11-11  Andreas Schwab  <schwab@redhat.com>
42993         * nss/db-Makefile ($(VAR_DB)/group.db): Fix typo in awk script.
42995         * misc/sys/cdefs.h (__REDIRECT_NTHNL): Define.
42996         * setjmp/setjmp.h: Mark functions as non-leaf.
42997         * setjmp/bits/setjmp2.h: Likewise.
42998         * stdlib/ucontext.h: Likewise.
43000 2011-11-10  Andreas Schwab  <schwab@redhat.com>
43002         * malloc/arena.c (_int_new_arena): Don't increment narenas.
43003         (reused_arena): Don't check arena limit.
43004         (arena_get2): Atomically check arena limit.
43006 2011-11-08  Ulrich Drepper  <drepper@gmail.com>
43008         * locale/findlocale.c (_nl_find_locale): Use __strcasecmp_l.
43009         * intl/localealias.c (strcasecmp): Define using __strcasecmp_l.
43011         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Remove unnecessary
43012         instructions.
43014 2011-11-07  Andreas Schwab  <schwab@redhat.com>
43016         * libio/genops.c (_IO_flush_all_lockp): Only register cleanup
43017         handler when locking.
43019         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
43020         Fix size of allocated buffer.
43022 2011-11-04  Andreas Schwab  <schwab@redhat.com>
43024         [BZ #10103]
43025         * math/math.h [__NO_LONG_DOUBLE_MATH && !_LIBC]: Provide
43026         declarations for long double functions.
43027         * math/complex.h [__NO_LONG_DOUBLE_MATH && !_LIBC]: Likewise.
43029         * elf/sprof.c (load_shobj): Fix off-by-one when reading link name.
43031 2011-11-03  Andreas Schwab  <schwab@redhat.com>
43033         * nscd/nscd.c (main): Don't start AVC thread until credentials are
43034         installed.
43036         * nss/makedb.c (set_file_creation_context): Do nothing if SELinux
43037         is disabled.
43039 2011-11-02  Samuel Thibault  <samuel.thibault@ens-lyon.org>
43041         * bits/ioctl-types.h (_IOT_sgttyb): Set number of chars to 4.
43043 2011-11-01  Andreas Schwab  <schwab@linux-m68k.org>
43045         * include/alloca.h (stackinfo_alloca_round): Define.
43046         (extend_alloca): Use it.
43047         [_STACK_GROWS_UP]: Correct check for adjacent allocation.
43048         * elf/dl-deps.c (_dl_map_object_deps): Don't round alloca size
43049         here.
43051         * scripts/check-local-headers.sh: Ignore libaudit.h.
43053         * nscd/Makefile (extra-objs): Make recursively expanded.
43055 2011-11-01  Ulrich Drepper  <drepper@gmail.com>
43057         * sysdeps/x86_64/strcmp.S: Fix test for non-ASCII locales.
43058         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
43060         * posix/tst-rfc3484.c: Add missing __free_in6ai dummy function.
43061         * posix/tst-rfc3484-2.c: Likewise.
43062         * posix/tst-rfc3484-3.c: Likewise.
43064         * sysdeps/unix/sysv/linux/bits/uio.h: Declare process_vm_readv and
43065         process_vm_writev.
43066         * sysdeps/unix/sysv/linux/syscalls.list: Add process_vm_readv and
43067         process_vm_writev.
43068         * sysdeps/unix/sysv/linux/Versions: Export process_vm_readv and
43069         process_vm_writev from libc using GLIBC_2.15 version.
43071         * nscd/connections.c: Use kernel headers instead of <netlink/netlink.h>.
43073 2011-10-31  Paul Pluzhnikov  <ppluzhnikov@google.com>
43075         * elf/dl-deps.c (_dl_map_object_deps): Reuse alloca space to reduce
43076         stack usage.
43078 2011-10-31  Ulrich Drepper  <drepper@gmail.com>
43080         [BZ #13367]
43081         * nss/getent.c (initgroups_keys): Show error message in case no group
43082         names are given.
43084         * include/ifaddrs.h: Declare __free_in6ai and __bump_nl_timestamp.
43085         * inet/check_pf.c: Provide dummy versions of __free_in6ai and
43086         __bump_nl_timestamp.
43087         * nscd/connections (nscd_init): When host database is served open
43088         netlink socket and request notification about configuration changes.
43089         (main_loop_poll): Track netlink file descriptor and bump timestamp
43090         in case data becomes available.
43091         (main_loop_epoll): Likewise.
43092         * nscd/nscd-client.h (DB_VERSION): Bump to 2.
43093         (database_pers_head): Add extra_data fileds.
43094         Declare __nscd_get_mapping and __nscd_get_nl_timestamp.
43095         * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp): New function.
43096         * nscd/nscd_helper.c (__nscd_get_mapping): Renamed from get_mapping.
43097         Adjust caller.
43098         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Don't call free on
43099         in6ai data, call __free_in6ai.
43100         * sysdeps/unix/sysv/linux/Makefile [subdir=nscd] (sysdep-CFLAGS):
43101         Add -DHAVE_NETLINK.
43102         * sysdeps/unix/sysv/linux/check_pf.c: Major rewrite.  Cache the
43103         interface information.  Reuse previous data if netlink timestamp
43104         is not changed.
43105         (__bump_nl_timestamp): New function.
43106         (__free_in6ai): New function.
43108 2011-10-30  Ulrich Drepper  <drepper@gmail.com>
43110         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Don't call
43111         close_not_cancel_no_status here.
43112         (__check_pf): Reorganize code a bit to not call close twice if OOM.
43114 2011-10-29  Ulrich Drepper  <drepper@gmail.com>
43116         [BZ #13276]
43117         * malloc/malloc.c (munmap_chunk): Don't use assertion to check munmap
43118         return value.
43120         * posix/sys/wait.h: Mark wait3 and wait4 with __THROWNL.
43121         * libio/stdio.h: Mark sprintf, vsprintf snprintf, vsnprintf, vasprintf,
43122         asprintf, __asprintf, obstack_printf, obstack_vprintf with __THROWNL.
43124 2011-07-03  Andreas Jaeger  <aj@suse.de>
43126         [BZ #10709]
43127         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Fix incorrect rounding
43128         of sin. Patch suggested by Paul Zimmermann <zimmerma+gcc@loria.fr>.
43129         * math/libm-test.inc (sin_test): Add test case.
43131 2011-10-29  Ulrich Drepper  <drepper@gmail.com>
43133         [BZ #13337]
43134         * elf/sprof.c (load_shobj): Correctly NUL-terminate link name.
43135         Patch by Thomas Jarosch <thomas.jarosch@intra2net.com>.
43137         * elf/chroot_canon.c (chroot_canon): Cleanups.
43139         * elf/dl-lookup.c (_dl_setup_hash): Avoid warning.
43141         [BZ #13335]
43142         * elf/chroot_canon.c (chroot_canon): Fix readlink call.
43143         Patch by Thomas Jarosch <thomas.jarosch@intra2net.com>.
43145         * string/test-strchr.c: Make usable for strchrnul testing.
43146         * string/test-strchrnul.c: New file.
43147         * string/Makefile (strop-tests): Add strchrnul.
43149         * po/it.po: Update from translation team.
43150         * po/es.po: Likewise.
43152 2011-10-28  Ulrich Drepper  <drepper@gmail.com>
43154         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu_tolower): Take
43155         the three constants needed as parameters.  Drop the others.
43156         (strcasestr_sse42): Load uclow, uchigh, and lcqword and pass to
43157         __m128i_strloadu_tolower.
43158         Create and initialize variable zero and use it in all the places
43159         where _mm_setzero_si128 was used.
43161         * sysdeps/x86_64/fpu/multiarch/Makefile: Don't build brandred-avx.c,
43162         doasin-avx.c, dosincos-avx.c, e_asin-avx.c, mpatan-avx.c,
43163         mpatan2-avx.c, mpsqrt-avx.c, mptan-avx.c, sincos32-avx.c.
43164         * sysdeps/x86_64/fpu/multiarch/e_asin.c: There are no _avx variants
43165         anymore.
43166         * sysdeps/x86_64/fpu/multiarch/e_atan2-avx.c: Don't redirect __mpatan2.
43167         * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c: Don't redirect __mpatan.
43168         * sysdeps/x86_64/fpu/multiarch/s_sin-avx.c: Don't redirect __branred,
43169         __docos, __dubsin, __mpcos, __mpcos1, __mpsin, __mpsin1.
43170         * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c: Don't redirect __branred,
43171         __mpranred, __mptan.
43172         * sysdeps/x86_64/fpu/multiarch/brandred-avx.c: Removed.
43173         * sysdeps/x86_64/fpu/multiarch/doasin-avx.c: Removed.
43174         * sysdeps/x86_64/fpu/multiarch/dosincos-avx.c: Removed.
43175         * sysdeps/x86_64/fpu/multiarch/e_asin-avx.c: Removed.
43176         * sysdeps/x86_64/fpu/multiarch/mpatan-avx.c: Removed.
43177         * sysdeps/x86_64/fpu/multiarch/mpatan2-avx.c: Removed.
43178         * sysdeps/x86_64/fpu/multiarch/mpsqrt-avx.c: Removed.
43179         * sysdeps/x86_64/fpu/multiarch/mptan-avx.c: Removed.
43180         * sysdeps/x86_64/fpu/multiarch/sincos32-avx.c: Removed.
43182 2011-10-28  Andreas Schwab  <schwab@redhat.com>
43184         * sysdeps/i386/i686/multiarch/strnlen-c.c (libc_hidden_def): Only
43185         redefine if SHARED.
43186         * sysdeps/i386/i686/multiarch/wcscmp-c.c (libc_hidden_def): Likewise.
43188         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Move
43189         wide char related routines to wcsmbs subdir.
43191 2011-10-27  Andreas Schwab  <schwab@redhat.com>
43193         [BZ #13344]
43194         * misc/sys/cdefs.h (__THROWNL): Define.
43195         * posix/unistd.h: Use __THREADNL instead of __THREAD
43196         for memory synchronization functions.
43198 2011-10-26  Roland McGrath  <roland@hack.frob.com>
43200         [BZ #13349]
43201         * libio/Versions (GLIBC_2.0): Remove open_obstack_stream, which
43202         doesn't exist.
43203         * manual/stdio.texi (Obstack Streams): Node removed.
43205 2011-10-26  Andreas Schwab  <schwab@redhat.com>
43207         * sysdeps/ieee754/flt-32/e_j0f.c: Fix use of math_force_eval.
43208         * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
43209         * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
43211         * math/math_private.h (math_force_eval): Allow non-addressable
43212         arguments.
43213         * sysdeps/i386/fpu/math_private.h (math_force_eval): Likewise.
43215 2011-10-25  Ulrich Drepper  <drepper@gmail.com>
43217         * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Comment everything out, the
43218         file is not needed.
43220         * sysdeps/x86_64/fpu/multiarch/e_asin.c: Support AVX variants.
43221         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Likewise.
43222         * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
43223         * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
43224         * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
43225         * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
43226         * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
43227         * sysdeps/x86_64/fpu/multiarch/Makefile: Fix some CFLAGS-* variables.
43228         Add AVX variants.
43229         * sysdeps/x86_64/fpu/multiarch/brandred-avx.c: New file.
43230         * sysdeps/x86_64/fpu/multiarch/doasin-avx.c: New file.
43231         * sysdeps/x86_64/fpu/multiarch/dosincos-avx.c: New file.
43232         * sysdeps/x86_64/fpu/multiarch/e_asin-avx.c: New file.
43233         * sysdeps/x86_64/fpu/multiarch/e_atan2-avx.c: New file.
43234         * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c: New file.
43235         * sysdeps/x86_64/fpu/multiarch/e_log-avx.c: New file.
43236         * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: New file.
43237         * sysdeps/x86_64/fpu/multiarch/mpatan-avx.c: New file.
43238         * sysdeps/x86_64/fpu/multiarch/mpatan2-avx.c: New file.
43239         * sysdeps/x86_64/fpu/multiarch/mpexp-avx.c: New file.
43240         * sysdeps/x86_64/fpu/multiarch/mplog-avx.c: New file.
43241         * sysdeps/x86_64/fpu/multiarch/mpsqrt-avx.c: New file.
43242         * sysdeps/x86_64/fpu/multiarch/mptan-avx.c: New file.
43243         * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c: New file.
43244         * sysdeps/x86_64/fpu/multiarch/s_sin-avx.c: New file.
43245         * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c: New file.
43246         * sysdeps/x86_64/fpu/multiarch/sincos32-avx.c: New file.
43247         * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: New file.
43249         * sysdeps/x86_64/multiarch/init-arch.h: Make bit_* macros available
43250         all the time.  Define bit_AVX.  Define HAS_* macros using bit_* macros.
43252         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Move common code to earlier
43253         place.  Use VEX encoding when compiling for AVX.
43255 2011-10-25  Andreas Schwab  <schwab@redhat.com>
43257         * wcsmbs/wcscmp.c (WCSCMP): Compare as wchar_t, not wint_t.
43258         * wcsmbs/wmemcmp.c (WMEMCMP): Likewise.
43260         * string/test-strchr.c (do_test): Don't generate NUL bytes.
43262 2011-10-25  Ulrich Drepper  <drepper@gmail.com>
43264         * sysdeps/ieee754/dbl-64/e_atanh.c: Use math_force_eval instead of a
43265         useless if() expression.
43266         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
43267         * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
43268         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
43269         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
43270         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
43271         * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
43272         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
43273         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
43274         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
43275         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
43276         * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
43277         * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
43278         * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
43279         * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
43280         * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
43281         * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
43282         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
43283         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
43284         * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
43286         * sysdeps/x86_64/fpu/math_private.h: Use VEX encoding when possible.
43288 2011-10-25  Andreas Schwab  <schwab@redhat.com>
43290         * elf/dl-deps.c (_dl_map_object_deps): Remove always true
43291         condition.
43292         * elf/dl-fini.c (_dl_sort_fini): Likewise.
43294 2011-10-25  Ulrich Drepper  <drepper@gmail.com>
43296         * sysdeps/ieee754/dbl-64/branred.c: Move FMA4 code into separate
43297         .text section.  Avoid duplicate constants.
43298         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
43299         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
43300         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
43301         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
43302         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
43303         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
43304         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
43305         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
43306         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
43307         * sysdeps/ieee754/dbl-64/mpa.h: Likewise.
43308         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
43309         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
43310         * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
43311         * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
43312         * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
43313         * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
43314         * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
43315         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
43316         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
43317         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
43318         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
43319         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
43320         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
43321         * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: Likewise.
43322         * sysdeps/x86_64/fpu/multiarch/doasin-fma4.c: Likewise.
43323         * sysdeps/x86_64/fpu/multiarch/dosincos-fma4.c: Likewise.
43324         * sysdeps/x86_64/fpu/multiarch/e_asin-fma4.c: Likewise.
43325         * sysdeps/x86_64/fpu/multiarch/e_atan2-fma4.c: Likewise.
43326         * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c: Likewise.
43327         * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: Likewise.
43328         * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c: Likewise.
43329         * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: Likewise.
43330         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
43331         * sysdeps/x86_64/fpu/multiarch/mpatan-fma4.c: Likewise.
43332         * sysdeps/x86_64/fpu/multiarch/mpatan2-fma4.c: Likewise.
43333         * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: Likewise.
43334         * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: Likewise.
43335         * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma4.c: Likewise.
43336         * sysdeps/x86_64/fpu/multiarch/mptan-fma4.c: Likewise.
43337         * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c: Likewise.
43338         * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c: Likewise.
43339         * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c: Likewise.
43340         * sysdeps/x86_64/fpu/multiarch/sincos32-fma4.c: Likewise.
43341         * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Likewise.
43342         * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: Likewise.
43344 2011-10-24  Ulrich Drepper  <drepper@gmail.com>
43346         * sysdeps/x86_64/dla.h: Move to ...
43347         * sysdeps/x86_64/fpu/dla.h: ...here.
43348         (DLA_FMS): Some compilers fail to inline __builtin_fma in some
43349         situations.  Use __builtin_fma only for gcc 4.6 and up.
43351         * config.make.in: Add have-mfma4 entry.
43352         * configure.in: Substitute libc_cv_cc_fma4.
43353         * math/Makefile (dbl-only-routines): Add sincostab.
43354         * sysdeps/ieee754/dbl-64/dosincos.c: Don't include sincos.tbl.
43355         Use __sincostab not sincos.
43356         * sysdeps/ieee754/dbl-64/e_asin.c: Don't define aliases when function
43357         name is a macro.
43358         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
43359         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
43360         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
43361         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.  Define singArctan2
43362         using __copysign.
43363         * sysdeps/ieee754/dbl-64/mpa.c: Don't export __acr.  Don't define
43364         __cr and __cpymn.  Define __cpy unless NO___CPY is defined.  Define
43365         norm, denorm, and __mp_dbl unless NO___MP_DBL is defined.
43366         * sysdeps/ieee754/dbl-64/mpa.h: Don't declare __acr, __cr, __cpymn,
43367         and __inv.
43368         * sysdeps/ieee754/dbl-64/mpsqrt.c: Make fastiroot static.
43369         * sysdeps/ieee754/dbl-64/s_atan.c: Define __signArctan using
43370         __copysign.
43371         * sysdeps/ieee754/dbl-64/s_sin.c: Use __sincostab not sincos.  Don't
43372         define aliases when function name is a macro.
43373         * sysdeps/ieee754/dbl-64/sincostab.c: Renamed from
43374         sysdeps/ieee754/dbl-64/sincos.tbl.
43375         * sysdeps/x86_64/fpu/multiarch/Makefile: Add entries to build
43376         fma4-enabled routines.
43377         * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: New file.
43378         * sysdeps/x86_64/fpu/multiarch/doasin-fma4.c: New file.
43379         * sysdeps/x86_64/fpu/multiarch/dosincos-fma4.c: New file.
43380         * sysdeps/x86_64/fpu/multiarch/e_asin-fma4.c: New file.
43381         * sysdeps/x86_64/fpu/multiarch/e_asin.c: New file.
43382         * sysdeps/x86_64/fpu/multiarch/e_atan2-fma4.c: New file.
43383         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: New file.
43384         * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c: New file.
43385         * sysdeps/x86_64/fpu/multiarch/e_exp.c: New file.
43386         * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: New file.
43387         * sysdeps/x86_64/fpu/multiarch/e_log.c: New file.
43388         * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c: New file.
43389         * sysdeps/x86_64/fpu/multiarch/e_pow.c: New file.
43390         * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: New file.
43391         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: New file.
43392         * sysdeps/x86_64/fpu/multiarch/mpatan-fma4.c: New file.
43393         * sysdeps/x86_64/fpu/multiarch/mpatan2-fma4.c: New file.
43394         * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: New file.
43395         * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: New file.
43396         * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma4.c: New file.
43397         * sysdeps/x86_64/fpu/multiarch/mptan-fma4.c: New file.
43398         * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c: New file.
43399         * sysdeps/x86_64/fpu/multiarch/s_atan.c: New file.
43400         * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c: New file.
43401         * sysdeps/x86_64/fpu/multiarch/s_sin.c: New file.
43402         * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c: New file.
43403         * sysdeps/x86_64/fpu/multiarch/s_tan.c: New file.
43404         * sysdeps/x86_64/fpu/multiarch/sincos32-fma4.c: New file.
43405         * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: New file.
43406         * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: New file.
43408         * sysdeps/ieee754/dbl-64/doasin.c: Adjust for DLA_FMA -> DLA_FMS
43409         rename.
43410         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
43411         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
43412         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
43413         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
43414         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
43415         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
43416         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
43417         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
43419 2011-10-24  Andreas Schwab  <schwab@redhat.com>
43421         * wcsmbs/wcslen.c: Don't define WCSLEN, reverse logic.
43423 2011-10-23  Ulrich Drepper  <drepper@gmail.com>
43425         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: New file.
43427         * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Add some branch
43428         prediction.
43429         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: New file.
43431         * string/strnlen.c: Don't define STRNLEN, reverse logic.
43432         Remove unused variable magic_bits.
43433         * sysdeps/i386/i686/multiarch/rtld-strnlen.c: New file.
43435         * string/strnlen.c: Define and use STRNLEN macro.
43436         * sysdeps/i386/i686/multiarch/Makefile [string] (sysdep_routines):
43437         Add strnlen-sse2, strnlen-c, wcslen-sse2, and wcslen-c.
43438         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Add support for strnlen.
43439         * wcsmbs/wcslen.c: Define and use WCSLEN.
43440         * sysdeps/i386/i686/multiarch/strnlen-c.c: New file.
43441         * sysdeps/i386/i686/multiarch/strnlen-sse2.S: New file.
43442         * sysdeps/i386/i686/multiarch/strnlen.S: New file.
43443         * sysdeps/i386/i686/multiarch/wcslen-c.c: New file.
43444         * sysdeps/i386/i686/multiarch/wcslen-sse2.S: New file.
43445         * sysdeps/i386/i686/multiarch/wcslen.S: New file.
43446         Patch by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>.
43448 2011-10-20  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
43450         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
43451         strnlen-sse2-no-bsf.
43452         Rename strlen-no-bsf to strlen-sse2-no-bsf.
43453         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Rename to
43454         * sysdeps/x86_64/multiarch/strlen-sse2-no-bsf.S:
43455         Add strnlen support.
43456         (USE_AS_STRNLEN): New macro.
43457         * sysdeps/x86_64/multiarch/strnlen-sse2-no-bsf.S: New file.
43458         * sysdeps/x86_64/multiarch/strcat-ssse3.S: Update.
43459         Rename strlen-no-bsf.S to strlen-sse2-no-bsf.S
43460         * sysdeps/x86_64/wcslen.S: New file.
43462 2011-10-20  Michael Zolotukhin  <michael.v.zolotukhin@gmail.com>
43464         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Update.
43465         XMM-moves are used for copying on small sizes.
43467 2011-10-19  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
43469         * wcsmbs/Makefile (strop-tests): Add wcschr.
43470         * wcsmbs/test-wcschr.c: New file.
43471         * string/test-strchr.c: Update.
43472         Add wcschr support.
43473         (WIDE): New macro.
43475 2011-10-18  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
43477         * wcsmbs/Makefile (strop-tests): Add wcslen.
43478         * wcsmbs/test-wcslen.c: New file.
43479         * string/test-strlen.c: Update.
43480         Add wcslen support.
43481         (WIDE): New macro.
43483 2011-10-23  Ulrich Drepper  <drepper@gmail.com>
43485         * po/it.po: Update from translation team.
43487 2011-09-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
43489         * sysdeps/x86_64/wcscmp.S: Update.
43490         Fix wrong comparison semantics.
43491         wcscmp shall use signed comparison not unsigned.
43492         Don't use substraction to avoid overflow bug.
43493         * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: Likewise.
43494         * wcsmbc/wcscmp.c: Likewise.
43495         * string/test-strcmp.c: Likewise.
43496         Add new tests to check cases with negative values.
43498 2011-10-23  Ulrich Drepper  <drepper@gmail.com>
43500         * sysdeps/ieee754/dbl-64/dla.h: Move DLA_FMA definition to...
43501         * sysdeps/x86_64/dla.h: ...here.  New file.
43502         * sysdeps/ieee754/dbl-64/doasin.c: Use <dla.h> not "dla.h".
43503         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
43504         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
43505         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
43506         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
43507         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
43508         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
43509         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
43510         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
43512 2011-10-23  Andreas Schwab  <schwab@linux-m68k.org>
43514         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Add __jnl_finite and
43515         __ynl_finite aliases.
43517 2011-10-22  Ulrich Drepper  <drepper@gmail.com>
43519         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
43521         * sysdeps/ieee754/dbl-64/dla.h: When compiling with FMA4 support
43522         define DLA_FMA.
43523         [DLA_FMA] (EMULV): Use DLA_FMA.
43524         [DLA_FMA] (MUL12): Use EMULV.
43525         * sysdeps/ieee754/dbl-64/doasin.c [DLA_FMA]: Don't define variables
43526         that are not needed.
43527         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
43528         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
43529         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
43530         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
43531         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
43532         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
43533         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
43535 2011-10-22  Andreas Schwab  <schwab@linux-m68k.org>
43537         * math/s_nan.c: Undef __nan.
43538         * math/s_nanf.c: Undef __nanf.
43539         * math/s_nanl.c: Undef __nanl.
43540         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Include <math.h> before
43541         "math_private.h".
43543 2011-10-22  Ulrich Drepper  <drepper@gmail.com>
43545         * math/s_catan.c: Add branch predictions.
43546         * math/s_catanf.c: Likewise.
43547         * math/s_catanh.c: Likewise.
43548         * math/s_catanhf.c: Likewise.
43549         * math/s_catanhl.c: Likewise.
43550         * math/s_catanl.c: Likewise.
43551         * math/s_cexp.c: Likewise.
43552         * math/s_cexpf.c: Likewise.
43553         * math/s_cexpl.c: Likewise.
43554         * math/s_clog.c: Likewise.
43555         * math/s_clog10.c: Likewise.
43556         * math/s_clog10f.c: Likewise.
43557         * math/s_clog10l.c: Likewise.
43558         * math/s_clogf.c: Likewise.
43559         * math/s_clogl.c: Likewise.
43560         * math/s_csqrt.c: Likewise.
43561         * math/s_csqrtf.c: Likewise.
43562         * math/s_csqrtl.c: Likewise.
43563         * math/s_ctanf.c: Likewise.
43564         * math/s_ctanh.c: Likewise.
43565         * math/s_ctanhf.c: Likewise.
43566         * math/s_ctanhl.c: Likewise.
43567         * math/s_ctanl.c: Likewise.
43569         * math/math_private.h: Define __nan, __nanf, __nanl.
43570         * math/s_cacosh.c: Include <math_private.h>.
43571         * math/s_cacoshl.c: Likewise.
43572         * math/s_casinh.c: Likewise.
43573         * math/s_casinhf.c: Likewise.
43574         * math/s_casinhl.c: Likewise.
43575         * math/s_ccos.c: Rely entire on ccosh.
43576         * math/s_ccosf.c: Rely entire on ccoshf.
43577         * math/s_ccosl.c: Rely entirely on ccoshl.
43578         * math/s_ccosh.c: Add branch predicion helpers.  Add branch prediction.
43579         Remove tests for FE_INVALID.
43580         * math/s_ccoshf.c: Likewise.
43581         * math/s_ccoshl.c: Likewise.
43582         * math/s_csin.c: Likewise.
43583         * math/s_csinf.c: Likewise.
43584         * math/s_csinh.c Likewise.
43585         * math/s_csinhf.c: Likewise.
43586         * math/s_csinhl.c: Likewise.
43587         * math/s_csinl.c: Likewise.
43588         * math/s_ctan.c: Likewise.
43589         * sysdeps/ieee754/dbl-64/e_acosh.c: Use __ieee754_sqrt.
43590         * sysdeps/ieee754/flt-32/e_acoshf.c: Use __ieee754_sqrtf.
43591         * sysdeps/ieee754/ldbl-96/e_acoshl.c: Use __ieee754_sqrtl.
43593 2011-10-21  Ulrich Drepper  <drepper@gmail.com>
43595         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Fix
43596         compilation problems.
43598         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Add a few more
43599         __builtin_expect.
43601 2011-10-20  Ulrich Drepper  <drepper@gmail.com>
43603         * sysdeps/i386/configure.in: Test for -mfma4 option.
43604         * config.h.in: Add HAVE_FMA4_SUPPORT entry.
43605         * sysdeps/x86_64/multiarch/init-arch.h: Define HAS_FMA4 and
43606         COMMON_CPUID_INDEX_80000001.
43607         * sysdeps/x86_64/multiarch/init-arch.c: Read 80000001 leaf for AMD.
43608         * sysdeps/x86_64/fpu/multiarch/s_fma.c: Test for FMA4 support and
43609         use it if FMA3 is not supported.
43610         * sysdeps/x86_64/fpu/multiarch/s_fmaf.c: Likewise.
43612         * sysdeps/x86_64/multiarch/s_fma.c: Moved to ../fpu/multiarch.
43613         * sysdeps/x86_64/multiarch/s_fmaf.c: Likewise.
43615 2011-10-20  Andreas Schwab  <schwab@redhat.com>
43617         [BZ #12892]
43618         * elf/dl-fini.c (_dl_sort_fini): Ignore relocation dependency if
43619         it would create a cycle with a link time dependency.
43621 2011-10-19  Ulrich Drepper  <drepper@gmail.com>
43623         * sysdeps/x86_64/multiarch/rawmemchr.S: Small optimization to safe an
43624         instruction.
43625         * string/Makefile (strop-tests): Add rawmemchr.
43626         * string/test-rawmemchr.c: New file.
43628         * sysdeps/x86_64/multiarch/init-arch.h: Define bit_AVX and index_AVX.
43629         * sysdeps/x86_64/multiarch/strcmp-sse42.S: New file.  Split out from...
43630         * sysdeps/x86_64/multiarch/strcmp.S: ...here.  Include strcmp-sse42.S
43631         when compiling str{,n}casecmp and when AVX is available.  Hook up
43632         new optimized code in initializers.
43634 2011-10-19  Andreas Schwab  <schwab@redhat.com>
43636         * sysdeps/x86_64/fpu/math_private.h (libc_feupdateenv): Use
43637         __feraiseexcept instead of feraiseexcept.
43639 2011-10-18  Ulrich Drepper  <drepper@gmail.com>
43641         * math/math_private.h: Define defaults for libc_fetestexcept and
43642         libc_feupdateenv.
43643         * sysdeps/ieee754/dbl-64/s_fma.c: Use libc_fe* interfaces.
43644         * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
43645         * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
43646         * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
43647         * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
43648         * sysdeps/x86_64/fpu/math_private.h: Define special versions of
43649         libc_fetestexcept and libc_feupdateenv.
43651         * math/math_private.h: Define defaults for libc_feholdexcept_setround,
43652         libc_feholdexcept_setroundf, libc_feholdexcept_setroundl.
43653         * sysdeps/ieee754/dbl-64/e_exp2.c: Use libc_feholdexcept_setround.
43654         * sysdeps/x86_64/fpu/math_private.h: Define special version of
43655         libc_feholdexcept_setround.
43657         * sysdeps/x86_64/fpu/multiarch/Makefile [math] (libm-sysdep-routines):
43658         Add s_nearbyint-c and s_nearbyintf-c.
43659         * sysdeps/x86_64/fpu/bits/mathinline.h: Define nearbyint and
43660         nearbyintf inlines.
43661         * sysdeps/x86_64/fpu/multiarch/s_nearbyint-c.c: New file.
43662         * sysdeps/x86_64/fpu/multiarch/s_nearbyint.S: New file.
43663         * sysdeps/x86_64/fpu/multiarch/s_nearbyintf-c.c: New file.
43664         * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.S: New file.
43666         * math/math_private.h: Define defaults for libc_fegetround,
43667         libc_fegetroundf, libc_fegetroundl, libc_fesetround, libc_fesetroundf,
43668         libc_fesetroundl, libc_feholdexcept, libc_feholdexceptf,
43669         libc_feholdexceptl, libc_fesetenv, libc_fesetenvf, libc_fesetenvl.
43670         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Use
43671         libc_feholdexcept, libc_fesetround, libc_fesetenv instead of the
43672         standard functions.
43673         * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
43674         Remove comments and hacks for old compiler versions.
43675         * sysdeps/x86_64/fpu/math_private.h: Define special versions of
43676         libc_fegetround, libc_fesetround, libc_feholdexcept, and
43677         libc_feholdexceptl.
43679 2011-10-18  Andreas Schwab  <schwab@redhat.com>
43681         * sysdeps/x86_64/fpu/bits/fenv.h: Add C linkage markers.
43682         (__feraiseexcept_renamed): Add __NTH.
43683         (feraiseexcept): Add __NTH.  Rename local variables to fix
43684         namespace violations.
43686 2011-10-17  Ulrich Drepper  <drepper@gmail.com>
43688         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Small optimization.
43690         * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: New file.
43692         * sysdeps/x86_64/fpu/math_private.h: Relax asm requirements for
43693         recently added interfaces.
43694         * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
43696         * sysdeps/x86_64/fpu/math_private.h: Add some parenthesis to be safe
43697         about macro parameter expansion.
43699         * sysdeps/x86_64/fpu/bits/mathinline.h: Don't define inlines if
43700         __NO_MATH_INLINES is defined.  Cleanups.
43702         * sysdeps/x86_64/fpu/math_private.h: Define __rint, __rintf, __floor,
43703         and __floorf is target has SSE4.1.
43704         * sysdeps/x86_64/fpu/multiarch/s_floor-c.c: Undef first.
43705         * sysdeps/x86_64/fpu/multiarch/s_floorf-c.: Likewise.
43706         * sysdeps/x86_64/fpu/multiarch/s_rint-c.c: Likewise.
43707         * sysdeps/x86_64/fpu/multiarch/s_rintf-c.c: Likewise.
43709         * sysdeps/x86_64/fpu/bits/mathinline.h (floor): Use correct function
43710         name.
43711         (floorf): Likewise.
43713         * nscd/netgroupcache.c (addgetnetgrentX): Fix #ifdef nesting.
43715 2011-10-17  Andreas Schwab  <schwab@redhat.com>
43717         * misc/sys/cdefs.h: Fix last change.
43719         * grp/initgroups.c (internal_getgrouplist): Fix initgroups
43720         database lookup.
43722 2011-10-16  Ulrich Drepper  <drepper@gmail.com>
43724         * misc/sys/cdefs.h: Use leaf function attribute in __THROW.
43726         * sysdeps/ieee754/dbl-64/s_ceil.c: Avoid alias renamed.
43727         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
43728         * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
43729         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
43730         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
43731         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
43732         * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
43733         * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
43734         * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
43735         * sysdeps/x86_64/fpu/multiarch/Makefile: New file.
43736         * sysdeps/x86_64/fpu/multiarch/s_ceil-c.c: New file.
43737         * sysdeps/x86_64/fpu/multiarch/s_ceil.S: New file.
43738         * sysdeps/x86_64/fpu/multiarch/s_ceilf-c.c: New file.
43739         * sysdeps/x86_64/fpu/multiarch/s_ceilf.S: New file.
43740         * sysdeps/x86_64/fpu/multiarch/s_floor-c.c: New file.
43741         * sysdeps/x86_64/fpu/multiarch/s_floor.S: New file.
43742         * sysdeps/x86_64/fpu/multiarch/s_floorf-c.c: New file.
43743         * sysdeps/x86_64/fpu/multiarch/s_floorf.S: New file.
43744         * sysdeps/x86_64/fpu/multiarch/s_rint-c.c: New file.
43745         * sysdeps/x86_64/fpu/multiarch/s_rint.S: New file.
43746         * sysdeps/x86_64/fpu/multiarch/s_rintf-c.c: New file.
43747         * sysdeps/x86_64/fpu/multiarch/s_rintf.S: New file.
43749         * sysdeps/x86_64/fpu/bits/mathinline.h: Add inlines for rint, rintf,
43750         ceil, ceilf, floor, floorf.
43752         * elf/do-rel.h (elf_dynamic_do_Rel): Work around linker problem.
43753         Perform IRELATIVE relocations last.
43755         * elf/do-rel.h: Add another parameter nrelative, replacing the
43756         local variable with the same name.  Change name of the function
43757         to end in Rel or Rela (uppercase).
43758         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Add new element
43759         nrelative to ranges.  Only nonzero for DT_REL/DT_RELA.  Pass to the
43760         elf_dynamic_do_##reloc function.
43762 2011-10-15  Ulrich Drepper  <drepper@gmail.com>
43764         * sysdeps/i386/i686/fpu/e_log.S: No need for the fyl2xp1 use, fyl2x
43765         is sufficient, at least on modern CPUs.
43767         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: New file.
43769         * sysdeps/ieee754/dbl-64/e_cosh.c: Cleanup.
43770         * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c: New file.
43772         * math/Versions [libm] (GLIBC_2.15): Add __exp_finite, __expf_finite,
43773         __expl_finite.
43774         * math/bits/math-finite.h: Add entries for exp.
43775         * math/e_expl.c: Add __*_finite alias.
43776         * sysdeps/i386/fpu/e_exp.S: Likewise.
43777         * sysdeps/i386/fpu/e_expf.S: Likewise.
43778         * sysdeps/i386/fpu/e_expl.c: Likewise.
43779         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
43780         * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
43781         * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
43782         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
43783         * sysdeps/ieee754/dbl-64/w_exp.c: Complete rewrite.
43784         * sysdeps/ieee754/flt-32/w_expf.c: Likewise.
43785         * sysdeps/ieee754/ldbl-96/w_expl.c: Likewise.
43787         * sysdeps/i386/i686/fpu/e_logf.S: No need for the fyl2xp1 use, fyl2x
43788         is sufficient, at least on modern CPUs.
43790         * ctype/ctype-info.c (__ctype_init): Define.
43791         * include/ctype.h (__ctype_init): Declare.
43792         (__ctype_b_loc): The variable is always initialized.
43793         (__ctype_toupper_loc): Likewise.
43794         (__ctype_tolower_loc): Likewise.
43795         * ctype/Versions: Export __ctype_init for GLIBC_PRIVATE.
43796         * sysdeps/unix/sysv/linux/init-first.c (_init): Call __ctype_init.
43798 2011-10-15  Andreas Schwab  <schwab@linux-m68k.org>
43800         * wcsmbs/wmemcmp.c (WMEMCMP): Define.
43802         * configure.in: Also look in $cxxmachine/include for C++ system
43803         headers.
43805 2011-09-27  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
43807         * sysdeps/x86_64/multiarch/Makefile: (sysdep_routines): Add
43808         memcmp-ssse3 wmemcmp-sse4 wmemcmp-ssse3 wmemcmp-c
43809         * sysdeps/x86_64/multiarch/memcmp-ssse3: New file.
43810         * sysdeps/x86_64/multiarch/memcmp.S: Update.  Add __memcmp_ssse3.
43811         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Update.
43812         (USE_AS_WMEMCMP): New macro.
43813         Fixing indents.
43814         * sysdeps/x86_64/multiarch/wmemcmp.S: New file.
43815         * sysdeps/x86_64/multiarch/wmemcmp-ssse3.S: New file.
43816         * sysdeps/x86_64/multiarch/wmemcmp-sse4.S: New file.
43817         * sysdeps/x86_64/multiarch/wmemcmp-c.S: New file.
43818         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
43819         wmemcmp-ssse3 wmemcmp-sse4 wmemcmp-c
43820         * sysdeps/i386/i686/multiarch/wmemcmp.S: New file.
43821         * sysdeps/i386/i686/multiarch/wmemcmp-c.c: New file.
43822         * sysdeps/i386/i686/multiarch/wmemcmp-ssse3.S: New file.
43823         * sysdeps/i386/i686/multiarch/wmemcmp-sse4.S: New file.
43824         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Update.
43825         (USE_AS_WMEMCMP): New macro.
43826         * sysdeps/i386/i686/multiarch/memcmp-ssse3: Likewise.
43827         * sysdeps/string/test-memcmp.c: Update.
43828         Fix simple_wmemcmp.
43829         Add new tests.
43830         * wcsmbs/wmemcmp.c: Update.
43831         (WMEMCMP): New macro.
43832         Fix overflow bug.
43834 2011-10-12  Andreas Jaeger  <aj@suse.de>
43836         [BZ #13268]
43837         * math/bits/mathcalls.h: Mark argument 2 of modf as non-null.
43839 2011-10-15  Ulrich Drepper  <drepper@gmail.com>
43841         * libio/iofwide.c (do_length): Avoid warning.
43843         * ctype/ctype.h (__isctype_f): Add missing __THROW.
43845 2011-10-14  Ulrich Drepper  <drepper@gmail.com>
43847         * elf/pldd-xx.c (find_maps): Remove leftover debug message.
43849         * sysdeps/i386/fpu/e_log.S: Add real definition of __log_finite.
43850         * sysdeps/i386/fpu/e_logf.S: Add real definition of __logf_finite.
43851         * sysdeps/i386/fpu/e_logl.S: Add real definition of __logl_finite.
43852         * sysdeps/i386/i686/fpu/e_log.S: New file.
43853         * sysdeps/i386/i686/fpu/e_logf.S: New file.
43854         * sysdeps/i386/i686/fpu/e_logl.S: New file.
43856         * ctype/ctype.h: Add support for inlined isXXX functions when
43857         compiling C++ code.
43859 2011-10-14  Andreas Schwab  <schwab@redhat.com>
43861         * sysdeps/s390/fpu/libm-test-ulps: Adjust ULPs for jn tests.
43863         * sysdeps/x86_64/fpu/fraiseexcpt.c: Fix last change.
43865 2011-10-13  Roland McGrath  <roland@hack.frob.com>
43867         [BZ #13291]
43868         * manual/string.texi (String/Array Comparison): Typo fix in strverscmp.
43870 2011-10-13  Andreas Schwab  <schwab@redhat.com>
43872         * sysdeps/x86_64/fpu/fraiseexcpt.c: Add __feraiseexcept alias.
43873         * sysdeps/x86_64/fpu/feupdateenv.c: Use __feraiseexcept instead of
43874         feraiseexcept.
43876         * sysdeps/x86_64/memrchr.S: Check for zero size.
43878         * string/stratcliff.c: Add memrchr tests.
43880 2011-10-12  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
43882         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
43883         memchr-sse2 memchr-sse2-bsf memrchr-sse2 memrchr-sse2-bsf memrchr-c
43884         rawmemchr-sse2 rawmemchr-sse2-bsf.
43885         * sysdeps/i386/i686/multiarch/memchr.S: New file.
43886         * sysdeps/i386/i686/multiarch/memchr-sse2.S: New file.
43887         * sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S: New file.
43888         * sysdeps/i386/i686/multiarch/memrchr.S: New file.
43889         * sysdeps/i386/i686/multiarch/memrchr-c.c: New file.
43890         * sysdeps/i386/i686/multiarch/memrchr-sse2.S: New file.
43891         * sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S: New file.
43892         * sysdeps/i386/i686/multiarch/rawmemchr.S: New file.
43893         * sysdeps/i386/i686/multiarch/rawmemchr-sse2.S: New file.
43894         * sysdeps/i386/i686/multiarch/rawmemchr-sse2-bsf.S: New file.
43895         * string/memrchr.c (MEMRCHR): New macro.
43897 2011-10-12  Ulrich Drepper  <drepper@gmail.com>
43899         Add integration with gcc's -ffinite-math-only and optimize wrapper
43900         functions in libm.
43901         * Versions.def: Define GLIBC_2.15 version for libm.
43902         * math/Makefile (headers): Add bits/math-finite.h.
43903         * math/bits/math-finite.h: New file.
43904         * sysdeps/ia64/fpu/bits/math-finite.h: New file.
43905         * math/Versions [libm] (GLIBC_2.15): Export __*_finite symbols.
43906         * math/e_acoshl.c: Add __*_finite alias.
43907         * math/e_acosl.c: Likewise.
43908         * math/e_asinl.c: Likewise.
43909         * math/e_atan2l.c: Likewise.
43910         * math/e_atanhl.c: Likewise.
43911         * math/e_coshl.c: Likewise.
43912         * math/e_exp10.c: Likewise.
43913         * math/e_exp10f.c: Likewise.
43914         * math/e_exp10l.c: Likewise.
43915         * math/e_exp2l.c: Likewise.
43916         * math/e_fmodl.c: Likewise.
43917         * math/e_gammal_r.c: Likewise.
43918         * math/e_hypotl.c: Likewise.
43919         * math/e_j0l.c: Likewise.
43920         * math/e_j1l.c: Likewise.
43921         * math/e_jnl.c: Likewise.
43922         * math/e_lgammal_r.c: Likewise.
43923         * math/e_log10l.c: Likewise.
43924         * math/e_log2l.c: Likewise.
43925         * math/e_logl.c: Likewise.
43926         * math/e_powl.c: Likewise.
43927         * math/e_sinhl.c: Likewise.
43928         * math/e_sqrtl.c: Likewise.
43929         * math/e_scalb.c: Completely rewritten and optimized.
43930         * math/e_scalbf.c: Likewise.
43931         * math/e_scalbl.c: Likewise.
43932         * math/w_acos.c: Likewise.
43933         * math/w_acosf.c: Likewise.
43934         * math/w_acosl.c: Likewise.
43935         * math/w_acosh.c: Likewise.
43936         * math/w_acoshf.c: Likewise.
43937         * math/w_acoshl.c: Likewise.
43938         * math/w_asin.c: Likewise.
43939         * math/w_asinf.c: Likewise.
43940         * math/w_asinl.c: Likewise.
43941         * math/w_atan2.c: Likewise.
43942         * math/w_atan2f.c: Likewise.
43943         * math/w_atan2l.c: Likewise.
43944         * math/w_atanh.c: Likewise.
43945         * math/w_atanhf.c: Likewise.
43946         * math/w_atanhl.c: Likewise.
43947         * math/w_exp10.c: Likewise.
43948         * math/w_exp10f.c: Likewise.
43949         * math/w_exp10l.c: Likewise.
43950         * math/w_fmod.c: Likewise.
43951         * math/w_fmodf.c: Likewise.
43952         * math/w_fmodl.c: Likewise.
43953         * math/w_j0.c: Likewise.
43954         * math/w_j0f.c: Likewise.
43955         * math/w_j0l.c: Likewise.
43956         * math/w_j1.c: Likewise.
43957         * math/w_j1f.c: Likewise.
43958         * math/w_j1l.c: Likewise.
43959         * math/w_jn.c: Likewise.
43960         * math/w_jnf.c: Likewise.
43961         * math/w_log.c: Likewise.
43962         * math/w_logf.c: Likewise.
43963         * math/w_logl.c: Likewise.
43964         * math/w_log10.c: Likewise.
43965         * math/w_log10f.c: Likewise.
43966         * math/w_log10l.c: Likewise.
43967         * math/w_log2.c: Likewise.
43968         * math/w_log2f.c: Likewise.
43969         * math/w_log2l.c: Likewise.
43970         * math/w_pow.c: Likewise.
43971         * math/w_powf.c: Likewise.
43972         * math/w_powl.c: Likewise.
43973         * math/w_remainder.c: Likewise.
43974         * math/w_remainderf.c: Likewise.
43975         * math/w_remainderl.c: Likewise.
43976         * math/w_scalb.c: Likewise.
43977         * math/w_scalbf.c: Likewise.
43978         * math/w_scalbl.c: Likewise.
43979         * math/w_sqrt.c: Likewise.
43980         * math/w_sqrtf.c: Likewise.
43981         * math/w_sqrtl.c: Likewise.
43982         * math/math.h: Define __MATH_DECLARE_LDOUBLE if long double functions
43983         are declared.  Include <bits/math-finite.h> if -ffinite-math-only is
43984         used.
43985         * math/math_private.h: Declare __kernel_standard_f.
43986         * math/w_cosh.c: Remove cruft and optimize a bit.
43987         * math/w_coshf.c: Likewise.
43988         * math/w_coshl.c: Likewise.
43989         * math/w_exp2.c: Likewise.
43990         * math/w_exp2f.c: Likewise.
43991         * math/w_exp2l.c: Likewise.
43992         * math/w_hypot.c: Likewise.
43993         * math/w_hypotf.c: Likewise.
43994         * math/w_hypotl.c: Likewise.
43995         * math/w_lgamma.c: Likewise.
43996         * math/w_lgamma_r.c: Likewise.
43997         * math/w_lgammaf.c: Likewise.
43998         * math/w_lgammaf_r.c: Likewise.
43999         * math/w_lgammal.c: Likewise.
44000         * math/w_lgammal_r.c: Likewise.
44001         * math/w_sinh.c: Likewise.
44002         * math/w_sinhf.c: Likewise.
44003         * math/w_sinhl.c: Likewise.
44004         * math/w_tgamma.c: Likewise.
44005         * math/w_tgammaf.c: Likewise.
44006         * math/w_tgammal.c: Likewise.
44007         * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
44008         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
44009         * sysdeps/i386/fpu/e_acos.S: Add __*_finite alias.
44010         Minor optimizations.  Pretty printing.  Remove cruft.
44011         * sysdeps/i386/fpu/e_acosf.S: Likewise.
44012         * sysdeps/i386/fpu/e_acosh.S: Likewise.
44013         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
44014         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
44015         * sysdeps/i386/fpu/e_acosl.c: Likewise.
44016         * sysdeps/i386/fpu/e_asin.S: Likewise.
44017         * sysdeps/i386/fpu/e_asinf.S: Likewise.
44018         * sysdeps/i386/fpu/e_atan2.S: Likewise.
44019         * sysdeps/i386/fpu/e_atan2f.S: Likewise.
44020         * sysdeps/i386/fpu/e_atan2l.c: Likewise.
44021         * sysdeps/i386/fpu/e_atanh.S: Likewise.
44022         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
44023         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
44024         * sysdeps/i386/fpu/e_exp10.S: Likewise.
44025         * sysdeps/i386/fpu/e_exp10f.S: Likewise.
44026         * sysdeps/i386/fpu/e_exp10l.S: Likewise.
44027         * sysdeps/i386/fpu/e_exp2.S: Likewise.
44028         * sysdeps/i386/fpu/e_exp2f.S: Likewise.
44029         * sysdeps/i386/fpu/e_exp2l.S: Likewise.
44030         * sysdeps/i386/fpu/e_fmod.S: Likewise.
44031         * sysdeps/i386/fpu/e_fmodf.S: Likewise.
44032         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
44033         * sysdeps/i386/fpu/e_hypot.S: Likewise.
44034         * sysdeps/i386/fpu/e_hypotf.S: Likewise.
44035         * sysdeps/i386/fpu/e_log.S: Likewise.
44036         * sysdeps/i386/fpu/e_log10.S: Likewise.
44037         * sysdeps/i386/fpu/e_log10f.S: Likewise.
44038         * sysdeps/i386/fpu/e_log10l.S: Likewise.
44039         * sysdeps/i386/fpu/e_log2.S: Likewise.
44040         * sysdeps/i386/fpu/e_log2f.S: Likewise.
44041         * sysdeps/i386/fpu/e_log2l.S: Likewise.
44042         * sysdeps/i386/fpu/e_logf.S: Likewise.
44043         * sysdeps/i386/fpu/e_logl.S: Likewise.
44044         * sysdeps/i386/fpu/e_pow.S: Likewise.
44045         * sysdeps/i386/fpu/e_powf.S: Likewise.
44046         * sysdeps/i386/fpu/e_powl.S: Likewise.
44047         * sysdeps/i386/fpu/e_remainder.S: Likewise.
44048         * sysdeps/i386/fpu/e_remainderf.S: Likewise.
44049         * sysdeps/i386/fpu/e_remainderl.S: Likewise.
44050         * sysdeps/i386/fpu/e_scalb.S: Likewise.
44051         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
44052         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
44053         * sysdeps/i386/fpu/e_sqrt.S: Likewise.
44054         * sysdeps/i386/fpu/e_sqrtf.S: Likewise.
44055         * sysdeps/i386/fpu/e_sqrtl.c: Likewise.
44056         * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
44057         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
44058         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
44059         * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
44060         * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
44061         * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
44062         * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
44063         * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
44064         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
44065         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
44066         * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
44067         * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
44068         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
44069         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
44070         * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
44071         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
44072         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
44073         * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
44074         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
44075         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
44076         * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
44077         * sysdeps/ieee754/flt-32/e_acosf.c: Likewise.
44078         * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
44079         * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
44080         * sysdeps/ieee754/flt-32/e_atan2f.c: Likewise.
44081         * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
44082         * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
44083         * sysdeps/ieee754/flt-32/e_fmodf.c: Likewise.
44084         * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
44085         * sysdeps/ieee754/flt-32/e_hypotf.c: Likewise.
44086         * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
44087         * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
44088         * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
44089         * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
44090         * sysdeps/ieee754/flt-32/e_log10f.c: Likewise.
44091         * sysdeps/ieee754/flt-32/e_log2f.c: Likewise.
44092         * sysdeps/ieee754/flt-32/e_logf.c: Likewise.
44093         * sysdeps/ieee754/flt-32/e_powf.c: Likewise.
44094         * sysdeps/ieee754/flt-32/e_remainderf.c: Likewise.
44095         * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
44096         * sysdeps/ieee754/flt-32/e_sqrtf.c: Likewise.
44097         * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
44098         * sysdeps/ieee754/ldbl-128/e_acoshl.c: Likewise.
44099         * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
44100         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
44101         * sysdeps/ieee754/ldbl-128/e_atan2l.c: Likewise.
44102         * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
44103         * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
44104         * sysdeps/ieee754/ldbl-128/e_fmodl.c: Likewise.
44105         * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Likewise.
44106         * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
44107         * sysdeps/ieee754/ldbl-128/e_j0l.c: Likewise.
44108         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
44109         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
44110         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
44111         * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
44112         * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
44113         * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
44114         * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
44115         * sysdeps/ieee754/ldbl-128/e_remainderl.c: Likewise.
44116         * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
44117         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c: Likewise.
44118         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
44119         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
44120         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c: Likewise.
44121         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
44122         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Likewise.
44123         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Likewise.
44124         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Likewise.
44125         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
44126         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c: Likewise.
44127         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c: Likewise.
44128         * sysdeps/ieee754/ldbl-128ibm/e_logl.c: Likewise.
44129         * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
44130         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c: Likewise.
44131         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
44132         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c: Likewise.
44133         * sysdeps/ieee754/ldbl-96/e_acoshl.c: Likewise.
44134         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
44135         * sysdeps/ieee754/ldbl-96/e_atan2l.c: Likewise.
44136         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
44137         * sysdeps/ieee754/ldbl-96/e_coshl.c: Likewise.
44138         * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Likewise.
44139         * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
44140         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
44141         * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
44142         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
44143         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
44144         * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
44145         * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
44146         * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
44147         * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
44148         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
44149         * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
44150         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
44151         * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Likewise.
44152         * sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c: Likewise.
44153         * sysdeps/s390/fpu/e_sqrt.c: Likewise.
44154         * sysdeps/s390/fpu/e_sqrtf.c: Likewise.
44155         * sysdeps/s390/fpu/e_sqrtl.c: Likewise.
44156         * sysdeps/sparc/sparc32/e_sqrt.c: Likewise.
44157         * sysdeps/sparc/sparc64/fpu/e_sqrtl.c: Likewise.
44158         * sysdeps/x86_64/fpu/e_exp2l.S: Likewise.
44159         * sysdeps/x86_64/fpu/e_fmodl.S: Likewise.
44160         * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
44161         * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
44162         * sysdeps/x86_64/fpu/e_logl.S: Likewise.
44163         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
44164         * sysdeps/x86_64/fpu/e_remainderl.S: Likewise.
44165         * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
44166         * sysdeps/x86_64/fpu/e_sqrt.c: Likewise.  Fix parameter order
44167         * sysdeps/x86_64/fpu/e_sqrtf.c: Likewise.
44168         * sysdeps/x86_64/fpu/math_private.h (__isnan): Cast d parameter.
44169         (__isnanf): Likewise.
44170         (__isinf_ns): Likewise.
44171         (__isinf_nsf): Likewise.
44172         (__finite): Likewise.
44173         (__finitef): Likewise.
44174         (__ieee754_sqrt): Define as macro.
44175         (__ieee754_sqrtf): Define as macro.
44176         (__ieee754_sqrtl): Define as macro.
44177         * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Add partially
44178         inlined copy.
44179         * sysdeps/x86_64/fpu/bits/mathinline.h: Make use of
44180         __FINITE_MATH_ONLY__ consistent.
44181         * sysdeps/ieee754/k_standard.c (__kernel_standard_f): New function.
44183 2011-10-10  Andreas Schwab  <schwab@linux-m68k.org>
44185         * inet/getnetgrent_r.c (nscd_getnetgrent): Use __rawmemchr instead
44186         of rawmemchr.
44188         * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c: New file.
44190 2011-10-09  Ulrich Drepper  <drepper@gmail.com>
44192         * po/ja.po: Update from translation team.
44194 2011-10-08  Roland McGrath  <roland@hack.frob.com>
44196         * locale/programs/locarchive.c (prepare_address_space): New function.
44197         (create_archive, enlarge_archive, open_archive): Use it.
44199         * sysdeps/unix/sysv/linux/x86_64/time.c: Move #include <dl-vdso.h>
44200         inside [SHARED], where it is used.
44202         * nscd/nscd_proto.h: Declare __nscd_setnetgrent.
44204         * nss/getent.c (netgroup_keys): Remove unused variable.
44205         * sysdeps/ieee754/flt-32/s_isinf_nsf.c: Likewise.
44207 2011-10-08  Ulrich Drepper  <drepper@gmail.com>
44209         * include/math.h: Declare __isinf_ns, __isinf_nsf, __isinf_nsl.
44210         * sysdeps/ieee754/dbl-64/s_isinf_ns.c: New file.
44211         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf_ns.c: New file.
44212         * sysdeps/ieee754/flt-32/s_isinf_nsf.c: New file.
44213         * sysdeps/ieee754/ldbl-128/s_isinf_nsl.c: New file.
44214         * sysdeps/ieee754/ldbl-96/s_isinf_nsl.c: New file.
44215         * math/Makefile (libm-calls): Add s_isinf_ns.
44216         * math/divtc3.c: Use __isinf_nsl instead of isinf.
44217         * math/multc3.c: Likewise.
44218         * math/s_casin.c: Likewise.
44219         * math/s_casinf.c: Likewise.
44220         * math/s_casinl.c: Likewise.
44221         * math/s_ccos.c: Likewise.
44222         * math/s_ccosf.c: Likewise.
44223         * math/s_ccosl.c: Likewise.
44224         * math/s_ctan.c: Likewise.
44225         * math/s_ctanf.c: Likewise.
44226         * math/s_ctanh.c: Likewise.
44227         * math/s_ctanhf.c: Likewise.
44228         * math/s_ctanhl.c: Likewise.
44229         * math/s_ctanl.c: Likewise.
44230         * math/w_fmod.c: Likewise.
44231         * math/w_fmodf.c: Likewise.
44232         * math/w_fmodl.c: Likewise.
44233         * math/w_remainder.c: Likewise.
44234         * math/w_remainderf.c: Likewise.
44235         * math/w_remainderl.c: Likewise.
44236         * sysdeps/ieee754/dbl-64/s_finite.c: Undefine __finite.
44237         * sysdeps/ieee754/dbl-64/s_isnan.c: Undefine __isnan.
44238         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Undefine __finite.
44239         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Undefine __nan.
44240         * sysdeps/ieee754/flt-32/s_finitef.c: Undefine __finitef.
44241         * sysdeps/ieee754/flt-32/s_isnanf.c: Undefine __nan.
44242         * sysdeps/x86_64/fpu/math_private.h: Add optimized versions of __isnsn,
44243         __isnanf, __isinf_ns, __isinf_nsf, __finite, and __finitef.
44245         * stdio-common/printf_fp.c: Use the fact that isinf returns the sign
44246         of the number.
44247         * stdio-common/printf_fphex.c: Likewise.
44248         * stdio-common/printf_size.c: Likewise.
44250         * math/e_exp10.c: Include math_private.h using <...> not "...".
44251         * math/e_exp10f.c: Likewise.
44252         * math/e_exp10l.c: Likewise.
44253         * math/e_exp2l.c: Likewise.
44254         * math/e_j0l.c: Likewise.
44255         * math/e_j1l.c: Likewise.
44256         * math/e_jnl.c: Likewise.
44257         * math/e_lgammal_r.c: Likewise.
44258         * math/e_rem_pio2l.c: Likewise.
44259         * math/e_scalb.c: Likewise.
44260         * math/e_scalbf.c: Likewise.
44261         * math/e_scalbl.c: Likewise.
44262         * math/k_cosl.c: Likewise.
44263         * math/k_sinl.c: Likewise.
44264         * math/k_tanl.c: Likewise.
44265         * math/s_cacoshf.c: Likewise.
44266         * math/s_catan.c: Likewise.
44267         * math/s_catanf.c: Likewise.
44268         * math/s_catanh.c: Likewise.
44269         * math/s_catanhf.c: Likewise.
44270         * math/s_catanhl.c: Likewise.
44271         * math/s_catanl.c: Likewise.
44272         * math/s_ccosh.c: Likewise.
44273         * math/s_ccoshf.c: Likewise.
44274         * math/s_ccoshl.c: Likewise.
44275         * math/s_cexp.c: Likewise.
44276         * math/s_cexpf.c: Likewise.
44277         * math/s_cexpl.c: Likewise.
44278         * math/s_clog.c: Likewise.
44279         * math/s_clog10.c: Likewise.
44280         * math/s_clog10f.c: Likewise.
44281         * math/s_clog10l.c: Likewise.
44282         * math/s_clogf.c: Likewise.
44283         * math/s_clogl.c: Likewise.
44284         * math/s_csin.c: Likewise.
44285         * math/s_csinf.c: Likewise.
44286         * math/s_csinh.c: Likewise.
44287         * math/s_csinhf.c: Likewise.
44288         * math/s_csinhl.c: Likewise.
44289         * math/s_csinl.c: Likewise.
44290         * math/s_csqrt.c: Likewise.
44291         * math/s_csqrtf.c: Likewise.
44292         * math/s_csqrtl.c: Likewise.
44293         * math/s_ctan.c: Likewise.
44294         * math/s_ctanf.c: Likewise.
44295         * math/s_ctanh.c: Likewise.
44296         * math/s_ctanhf.c: Likewise.
44297         * math/s_ctanhl.c: Likewise.
44298         * math/s_ctanl.c: Likewise.
44299         * math/s_ldexp.c: Likewise.
44300         * math/s_ldexpf.c: Likewise.
44301         * math/s_ldexpl.c: Likewise.
44302         * math/s_significand.c: Likewise.
44303         * math/s_significandf.c: Likewise.
44304         * math/s_significandl.c: Likewise.
44305         * math/w_acos.c: Likewise.
44306         * math/w_acosf.c: Likewise.
44307         * math/w_acosh.c: Likewise.
44308         * math/w_acoshf.c: Likewise.
44309         * math/w_acoshl.c: Likewise.
44310         * math/w_acosl.c: Likewise.
44311         * math/w_asin.c: Likewise.
44312         * math/w_asinf.c: Likewise.
44313         * math/w_asinl.c: Likewise.
44314         * math/w_atan2.c: Likewise.
44315         * math/w_atan2f.c: Likewise.
44316         * math/w_atan2l.c: Likewise.
44317         * math/w_atanh.c: Likewise.
44318         * math/w_atanhf.c: Likewise.
44319         * math/w_atanhl.c: Likewise.
44320         * math/w_cosh.c: Likewise.
44321         * math/w_coshf.c: Likewise.
44322         * math/w_coshl.c: Likewise.
44323         * math/w_dremf.c: Likewise.
44324         * math/w_exp10.c: Likewise.
44325         * math/w_exp10f.c: Likewise.
44326         * math/w_exp10l.c: Likewise.
44327         * math/w_exp2.c: Likewise.
44328         * math/w_exp2f.c: Likewise.
44329         * math/w_fmod.c: Likewise.
44330         * math/w_fmodf.c: Likewise.
44331         * math/w_fmodl.c: Likewise.
44332         * math/w_hypot.c: Likewise.
44333         * math/w_hypotf.c: Likewise.
44334         * math/w_hypotl.c: Likewise.
44335         * math/w_j0.c: Likewise.
44336         * math/w_j0f.c: Likewise.
44337         * math/w_j0l.c: Likewise.
44338         * math/w_j1.c: Likewise.
44339         * math/w_j1f.c: Likewise.
44340         * math/w_j1l.c: Likewise.
44341         * math/w_jn.c: Likewise.
44342         * math/w_jnf.c: Likewise.
44343         * math/w_jnl.c: Likewise.
44344         * math/w_lgamma.c: Likewise.
44345         * math/w_lgamma_r.c: Likewise.
44346         * math/w_lgammaf.c: Likewise.
44347         * math/w_lgammaf_r.c: Likewise.
44348         * math/w_lgammal.c: Likewise.
44349         * math/w_lgammal_r.c: Likewise.
44350         * math/w_log.c: Likewise.
44351         * math/w_log10.c: Likewise.
44352         * math/w_log10f.c: Likewise.
44353         * math/w_log10l.c: Likewise.
44354         * math/w_log2.c: Likewise.
44355         * math/w_log2f.c: Likewise.
44356         * math/w_log2l.c: Likewise.
44357         * math/w_logf.c: Likewise.
44358         * math/w_logl.c: Likewise.
44359         * math/w_pow.c: Likewise.
44360         * math/w_powf.c: Likewise.
44361         * math/w_powl.c: Likewise.
44362         * math/w_remainder.c: Likewise.
44363         * math/w_remainderf.c: Likewise.
44364         * math/w_remainderl.c: Likewise.
44365         * math/w_scalb.c: Likewise.
44366         * math/w_scalbf.c: Likewise.
44367         * math/w_scalbl.c: Likewise.
44368         * math/w_sinh.c: Likewise.
44369         * math/w_sinhf.c: Likewise.
44370         * math/w_sinhl.c: Likewise.
44371         * math/w_sqrt.c: Likewise.
44372         * math/w_sqrtf.c: Likewise.
44373         * math/w_sqrtl.c: Likewise.
44374         * math/w_tgamma.c: Likewise.
44375         * math/w_tgammaf.c: Likewise.
44376         * math/w_tgammal.c: Likewise.
44378         * po/ja.po: Update from translation team.
44380 2011-09-29  Andreas Jaeger  <aj@suse.de>
44382         [BZ #13179]
44383         * sunrpc/netname.c (netname2host): Fix logic.
44385         [BZ #6779]
44386         [BZ #6783]
44387         * math/w_remainderl.c (__remainderl): Handle (NaN, 0) and (Inf,y)
44388         correctly.
44389         * math/w_remainder.c (__remainder): Likewise.
44390         * math/w_remainderf.c (__remainderf): Likewise.
44391         * math/libm-test.inc (remainder_test): Add test cases.
44393 2011-10-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
44395         * stdlib/longlong.h: Update from GCC.  Fix zarch smul_ppmm and
44396         sdiv_qrnnd.
44398 2011-10-07  Ulrich Drepper  <drepper@gmail.com>
44400         * string/test-memcmp.c: Avoid unncessary #defines.
44401         Patch by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>.
44403 2011-08-31  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
44405         * sysdeps/x86_64/multiarch/rawmemchr.S: Update.
44406         Use new sse2 version for core i3 - i7 as it's faster
44407         than sse42 version.
44408         (bit_Prefer_PMINUB_for_stringop): New.
44409         * sysdeps/x86_64/rawmemchr.S: Update.
44410         Replace with faster SSE2 version.
44411         * sysdeps/x86_64/memrchr.S: New file.
44412         * sysdeps/x86_64/memchr.S: Update.
44413         Replace with faster SSE2 version.
44415 2011-09-12  Marek Polacek  <mpolacek@redhat.com>
44417         * elf/dl-load.c (lose): Add cast to avoid warning.
44419 2011-10-07  Ulrich Drepper  <drepper@gmail.com>
44421         * po/ca.po: Update from translation team.
44423         * inet/getnetgrent_r.c: Hook up nscd.
44424         * nscd/Makefile (routines): Add nscd_netgroup.
44425         (nscd-modules): Add netgroupcache.
44426         (CFLAGS-netgroupcache.c): Define.
44427         * nscd/cache.c (readdfcts): Add entries for GETNETGRENT and INNETGR.
44428         (cache_search): Add const to second parameter.
44429         * nscd/connections.c (serv2str): Add entries for GETNETGRENT and
44430         INNETGR.
44431         (dbs): Add netgrdb entry.
44432         (reqinfo): Add entries for GETNETGRENT, INNETGR, and GETFDNETGR.
44433         (verify_persistent_db): Handle netgrdb.
44434         (handle_request): Handle GETNETGRENT, INNETGR, and GETFDNETGR.
44435         * nscd/nscd-client.h (request_type): Add GETNETGRENT, INNETGR, and
44436         GETFDNETGR.
44437         (netgroup_response_header): Define.
44438         (innetgroup_response_header): Define.
44439         (datahead): Add netgroup_response_header and innetgroup_response_header
44440         elements.
44441         * nscd/nscd.conf: Add entries for netgroup cache.
44442         * nscd/nscd.h (dbtype): Add netgrdb.
44443         (_PATH_NSCD_NETGROUP_DB): Define.
44444         (netgroup_iov_disabled): Declare.
44445         (xmalloc, xcalloc, xrealloc): Move declarations here.
44446         (cache_search): Adjust prototype.
44447         Add netgroup-related prototypes.
44448         * nscd/nscd_conf.c (dbnames): Add netgrdb entry.
44449         * nscd/nscd_proto.h (__nss_not_use_nscd_netgroup): Declare.
44450         (__nscd_innetgr): Declare.
44451         * nscd/selinux.c (perms): Use access_vector_t as element type and
44452         add netgroup-related initializers.
44453         * nscd/netgroupcache.c: New file.
44454         * nscd/nscd_netgroup.c: New file.
44455         * nss/Versions [libc] (GLIBC_PRIVATE): Export __nss_lookup.
44456         * nss/getent.c (netgroup_keys): Use setnetgrent only for one parameter.
44457         For four parameters use innetgr.
44458         * nss/nss_files/files-init.c: Add definition and callback for netgr.
44459         * nss/nsswitch.c (__nss_lookup): Add libc_hidden_def.
44460         (__nss_disable_nscd): Set __nss_not_use_nscd_netgroup.
44461         * nss/nsswitch.h (__nss_lookup): Add libc_hidden_proto.
44463         * nscd/connections.c (register_traced_file): Don't register file
44464         for disabled databases.
44466 2011-10-06  Ulrich Drepper  <drepper@gmail.com>
44468         * nscd/grpcache.c (cache_addgr): Initialize written in all cases.
44470         * nss/nsswitch.c (__nss_lookup_function): Fix order of deleting
44471         from tree and freeing node.
44473 2011-09-25  Jiri Olsa  <jolsa@redhat.com>
44475         * nss/nsswitch.c (__nss_database_lookup): Handle
44476         nss_parse_service_list out of memory case.
44478 2011-09-15  Jiri Olsa  <jolsa@redhat.com>
44480         * nss/nsswitch.c (__nss_lookup_function): Handle __tsearch
44481         out of memory case.
44483 2011-10-04  Andreas Schwab  <schwab@redhat.com>
44485         * include/dlfcn.h (__RTLD_NOIFUNC): Define.
44486         * elf/do-rel.h (elf_dynamic_do_rel): Add parameter skip_ifunc and
44487         pass it down.
44488         * elf/dynamic-link.h: Adjust prototypes of elf_machine_rel,
44489         elf_machine_rela, elf_machine_lazy_rel.
44490         (_ELF_DYNAMIC_DO_RELOC): Add parameter skip_ifunc and pass it down.
44491         (ELF_DYNAMIC_DO_REL): Likewise.
44492         (ELF_DYNAMIC_DO_RELA): Likewise.
44493         (ELF_DYNAMIC_RELOCATE): Likewise.
44494         * elf/dl-reloc.c (_dl_relocate_object): Pass __RTLD_NOIFUNC down
44495         to ELF_DYNAMIC_DO_REL.
44496         * elf/rtld.c (_dl_start): Adjust use of ELF_DYNAMIC_RELOCATE.
44497         (dl_main): In trace mode always set __RTLD_NOIFUNC.
44498         * elf/dl-conflict.c (_dl_resolve_conflicts): Adjust call to
44499         elf_machine_rela.
44500         * sysdeps/i386/dl-machine.h (elf_machine_rel): Add parameter
44501         skip_ifunc, don't call ifunc function if non-zero.
44502         (elf_machine_rela): Likewise.
44503         (elf_machine_lazy_rel): Likewise.
44504         (elf_machine_lazy_rela): Likewise.
44505         * sysdeps/ia64/dl-machine.h (elf_machine_rela): Likewise.
44506         (elf_machine_lazy_rel): Likewise.
44507         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela):
44508         Likewise.
44509         (elf_machine_lazy_rel): Likewise.
44510         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
44511         Likewise.
44512         (elf_machine_lazy_rel): Likewise.
44513         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela): Likewise.
44514         (elf_machine_lazy_rel): Likewise.
44515         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Likewise.
44516         (elf_machine_lazy_rel): Likewise.
44517         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
44518         (elf_machine_lazy_rel): Likewise.
44519         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Likewise.
44520         (elf_machine_lazy_rel): Likewise.
44521         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
44522         (elf_machine_lazy_rel): Likewise.
44523         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
44524         (elf_machine_lazy_rel): Likewise.
44526 2011-09-28  Ulrich Drepper  <drepper@gmail.com>
44528         * nss/nss_files/files-init.c (_nss_files_init): Use static
44529         initialization for all the *_traced_file variables.
44531 2011-09-28  Andreas Schwab  <schwab@redhat.com>
44533         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ULPs for jn tests.
44535 2011-09-27  Roland McGrath  <roland@hack.frob.com>
44537         [BZ #13226]
44538         * manual/signal.texi (Longjmp in Handler): Grammar fixes.
44540 2011-09-27  Andreas Schwab  <schwab@redhat.com>
44542         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
44543         Reread the line before reparsing it.
44545 2011-09-26  Andreas Schwab  <schwab@redhat.com>
44547         * sysdeps/x86_64/fpu/bits/mathinline.h: Use __asm instead of asm.
44549 2011-09-21  Chung-Lin Tang  <cltang@codesourcery.com>
44550             Maxim Kuvyrkov  <maxim@codesourcery.com>
44551             Joseph Myers  <joseph@codesourcery.com>
44553         * resolv/Makefile (LDLIBS-resolv.so): Link in $(elfobjdir)/ld.so
44554         if needed for __stack_chk_guard.
44556 2011-09-19  Roland McGrath  <roland@hack.frob.com>
44558         * sysdeps/posix/spawni.c (script_execute): Always define it.
44559         It will be optimized away if unused.
44560         (maybe_script_execute): New function.
44561         (__spawni): Call it.
44563         * Makerules: Don't include tls.make.
44564         (config-tls): Always set to thread.
44565         * tls.make.c: File removed.
44567 2011-09-19  Mike Frysinger  <vapier@gentoo.org>
44569         * Makeconfig (CPPFLAGS): Prepend $(CPPFLAGS-config).
44570         * config.make.in (CPPFLAGS-config): New substituted variable.
44572 2011-09-15  Ulrich Drepper  <drepper@gmail.com>
44574         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: New file.
44576         [BZ #13192]
44577         * sysdeps/unix/sysv/linux/bits/in.h (IP_MULTICAST_ALL): Define.
44578         Patch mostly by Neil Horman <nhorman@tuxdriver.com>.
44580 2011-09-15  Roland McGrath  <roland@hack.frob.com>
44582         * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S
44583         (CALL_FAIL): Use HIDDEN_JUMPTARGET for __fortify_fail.
44584         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
44585         (CALL_FAIL): Likewise.
44586         * sysdeps/unix/sysv/linux/ia64/____longjmp_chk.S (CHECK_RSP): Likewise.
44587         (CALL_FAIL): Macro removed.
44588         Patch mostly by Mike Frysinger <vapier@gentoo.org>.
44590 2011-09-15  Ulrich Drepper  <drepper@gmail.com>
44592         * sysdeps/x86_64/fpu/bits/mathinline.h: Add fmax and fmin optimizations
44593         for __FINITE_MATH_ONLY__ == 1.
44595 2011-09-15  Andreas Schwab  <schwab@redhat.com>
44597         * sysdeps/powerpc/fpu/e_hypot.c (__ieee754_hypot): Use
44598         __ieee754_sqrt instead of sqrt.
44599         * sysdeps/powerpc/fpu/e_hypotf.c (__ieee754_hypotf): Use
44600         __ieee754_sqrtf instead of sqrtf.
44601         * sysdeps/powerpc/fpu/e_rem_pio2f.c (__ieee754_rem_pio2f): Use
44602         __floorf instead of floorf.
44603         * sysdeps/powerpc/fpu/k_rem_pio2f.c (__fp_kernel_rem_pio2f): Use
44604         __floorf, __truncf instead of floorf, truncf.
44606 2011-09-14  Ulrich Drepper  <drepper@gmail.com>
44608         * sysdeps/x86_64/fpu/s_copysign.S [ELF]: Use correct section.
44610         * sysdeps/x86_64/fpu/bits/mathinline.h (__MATH_INLINE): Use
44611         __extern_always_inline.
44612         Define lrint{f,} and llrint{f,} for 64-bit and in some situations for
44613         32-bit.
44615 2011-09-14  Andreas Schwab  <schwab@redhat.com>
44617         * elf/rtld.c (dl_main): Also relocate in dependency order when
44618         doing symbol dependency testing.
44620 2011-09-13  Andreas Schwab  <schwab@linux-m68k.org>
44622         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
44623         Always define `refsym'.
44625 2011-09-13  Andreas Schwab  <schwab@redhat.com>
44627         * misc/sys/select.h (__FD_MASK): Renamed from __FDMASK.
44628         (__FD_ELT): Renamed from __FDELT.
44629         * misc/bits/select2.h (__FD_ELT): Likewise.
44630         * bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET): Use __FD_ELT,
44631         __FD_MASK instead of __FDELT, __FDMASK.
44632         * sysdeps/i386/bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET):
44633         Likewise.
44634         * sysdeps/x86_64/bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET):
44635         Likewise.
44637         * elf/Makefile (gen-ldd): Fix pattern.
44639         * elf/rtld.c (dl_main): Only use USE___THREAD when defined.
44640         (init_tls): Likewise.
44642 2011-09-12  Ulrich Drepper  <drepper@gmail.com>
44644         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: New file.
44646 2011-09-12  Andreas Schwab  <schwab@redhat.com>
44648         * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Cast to
44649         `struct cmsghdr *' instead of `void *'.
44650         * sysdeps/unix/sysv/linux/sparc/bits/socket.h (__cmsg_nxthdr):
44651         Likewise.
44653 2011-09-11  Andreas Schwab  <schwab@linux-m68k.org>
44655         * elf/Makefile (gen-ldd): Prepend $(..) to $(ldd-rewrite-script)
44656         if non-absolute.
44657         * sysdeps/unix/sysv/linux/configure.in: Remove leading ../ from
44658         ldd_rewrite_script.
44660 2011-09-11  Ulrich Drepper  <drepper@gmail.com>
44662         * configure.in: Remove --with-tls option.
44663         * config.h.in: Remove HAVE_TLS_SUPPORT entry.
44664         * sysdeps/i386/elf/configure.in: Always test for TLS support and err
44665         out in case it is missing.
44666         * sysdeps/ia64/elf/configure.in: Likewise.
44667         * sysdeps/powerpc/powerpc32/elf/configure.in: Likewise.
44668         * sysdeps/powerpc/powerpc64/elf/configure.in: Likewise.
44669         * sysdeps/s390/s390-32/elf/configure.in: Likewise.
44670         * sysdeps/s390/s390-64/elf/configure.in: Likewise.
44671         * sysdeps/sh/elf/configure.in: Likewise.
44672         * sysdeps/sparc/sparc32/elf/configure.in: Likewise.
44673         * sysdeps/sparc/sparc64/elf/configure.in: Likewise.
44674         * sysdeps/x86_64/elf/configure.in: Likewise.
44675         * sysdeps/mach/hurd/i386/tls.h: Remove test for HAVE_TLS_SUPPORT.
44676         * sysdeps/mach/hurd/tls.h: Likewise.
44678         [BZ #13067]
44679         * malloc/obstack.h [!GNUC] (obstack_free): Avoid cast to int.
44681         [BZ #13090]
44682         * configure.in: Fix use of AC_INIT.
44684         * elf/dl-support.c (_dl_pagesize): Initialize to EXEC_PAGESIZE.
44686 2011-09-10  Ulrich Drepper  <drepper@gmail.com>
44688         * malloc/malloc.c: Replace MALLOC_FAILURE_ACTION with use of
44689         __set_errno.
44690         * malloc/hooks.c: Likewise.
44692         [BZ #11929]
44693         * malloc/arena.c (ptmalloc_init_minimal): Removed.  Initialize all
44694         variables statically.
44695         (narenas): Initialize.
44696         (list_lock): Initialize.
44697         (ptmalloc_init): Don't call ptmalloc_init_minimal.  Remove
44698         initializtion of main_arena and list_lock.  Small cleanups.
44699         Replace all uses of malloc_getpagesize with GLRO(dl_pagesize).
44700         * malloc/malloc.c: Remove malloc_getpagesize.  Include <ldsodefs.h>.
44701         Add initializers to main_arena and mp_.
44702         (malloc_state): Remove pagesize member.  Change all users to use
44703         GLRO(dl_pagesize).
44705         * elf/rtld.c (rtld_global_ro): Initialize _dl_pagesize.
44706         * sysdeps/unix/sysv/linux/getpagesize.c: Simplify.  GLRO(dl_pagesize)
44707         is always initialized.
44709         * malloc/malloc.c: Removed unused configurations and dead code.
44710         * malloc/arena.c: Likewise.
44711         * malloc/hooks.c: Likewise.
44712         * malloc/Makefile (CPPFLAGS-malloc.c): Don't add -DATOMIC_FASTBINS.
44714         * include/tls.h: Removed.  USE___THREAD must always be defined.
44715         * bits/libc-tsd.h: Don't handle !USE___THREAD.
44716         * elf/dl-libc.c: Likewise.
44717         * elf/dl-tsd.c: Likewise.
44718         * include/errno.h: Likewise.
44719         * include/netdb.h: Likewise.
44720         * include/resolv.h: Likewise.
44721         * inet/herrno-loc.c: Likewise.
44722         * inet/herrno.c: Likewise.
44723         * malloc/arena.c: Likewise.
44724         * malloc/hooks.c: Likewise.
44725         * malloc/malloc.c: Likewise.
44726         * resolv/res-state.c: Likewise.
44727         * resolv/res_libc.c: Likewise.
44728         * sysdeps/i386/dl-machine.h: Likewise.
44729         * sysdeps/ia64/dl-machine.h: Likewise.
44730         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
44731         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
44732         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
44733         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
44734         * sysdeps/sh/dl-machine.h: Likewise.
44735         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
44736         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
44737         * sysdeps/unix/i386/sysdep.S: Likewise.
44738         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
44739         * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise.
44740         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
44741         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
44742         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
44743         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
44744         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
44745         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
44746         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
44747         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
44748         * sysdeps/unix/x86_64/sysdep.S: Likewise.
44749         * sysdeps/x86_64/dl-machine.h: Likewise.
44750         * tls.make.c: Likewise.
44752         * configure.in: Remove --with-__thread option.  Make tests for
44753         --no-whole-archive, __builtin_expect, symbol redirection, __thread,
44754         tls_model attribute fail if no support is available.  Remove
44755         USE_IN_LIBIO.
44756         * Makeconfig: Adjust for dropped configure option.  All features are
44757         now mandatory.
44758         * Makerules: Likewise.
44759         * Versions.def: Likewise.
44760         * argp/argp-fmtstream.c: Likewise.
44761         * argp/argp-fmtstream.h: Likewise.
44762         * argp/argp-help.c: Likewise.
44763         * assert/assert.c: Likewise.
44764         * config.h.in: Likewise.
44765         * config.make.in: Likewise.
44766         * configure: Likewise.
44767         * configure.in: Likewise.
44768         * csu/Versions: Likewise.
44769         * csu/init.c: Likewise.
44770         * elf/tst-audit2.c: Likewise.
44771         * elf/tst-tls10.c: Likewise.
44772         * elf/tst-tls10.h: Likewise.
44773         * elf/tst-tls11.c: Likewise.
44774         * elf/tst-tls12.c: Likewise.
44775         * elf/tst-tls14.c: Likewise.
44776         * elf/tst-tlsmod11.c: Likewise.
44777         * elf/tst-tlsmod12.c: Likewise.
44778         * elf/tst-tlsmod13.c: Likewise.
44779         * elf/tst-tlsmod13a.c: Likewise.
44780         * elf/tst-tlsmod14a.c: Likewise.
44781         * elf/tst-tlsmod15b.c: Likewise.
44782         * elf/tst-tlsmod16a.c: Likewise.
44783         * elf/tst-tlsmod16b.c: Likewise.
44784         * elf/tst-tlsmod7.c: Likewise.
44785         * elf/tst-tlsmod8.c: Likewise.
44786         * elf/tst-tlsmod9.c: Likewise.
44787         * gmon/gmon.c: Likewise.
44788         * grp/fgetgrent_r.c: Likewise.
44789         * grp/putgrent.c: Likewise.
44790         * hurd/fopenport.c: Likewise.
44791         * include/libc-symbols.h: Likewise.
44792         * include/tls.h: Likewise.
44793         * intl/gettextP.h: Likewise.
44794         * intl/loadinfo.h: Likewise.
44795         * locale/global-locale.c: Likewise.
44796         * locale/localeinfo.h: Likewise.
44797         * mach/devstream.c: Likewise.
44798         * malloc/arena.c: Likewise.
44799         * malloc/set-freeres.c: Likewise.
44800         * misc/err.c: Likewise.
44801         * misc/getttyent.c: Likewise.
44802         * misc/mntent_r.c: Likewise.
44803         * posix/getopt.c: Likewise.
44804         * posix/wordexp.c: Likewise.
44805         * pwd/fgetpwent_r.c: Likewise.
44806         * resolv/Versions: Likewise.
44807         * resolv/res_hconf.c: Likewise.
44808         * shadow/fgetspent_r.c: Likewise.
44809         * shadow/putspent.c: Likewise.
44810         * stdio-common/printf_fphex.c: Likewise.
44811         * stdio-common/tmpfile.c: Likewise.
44812         * stdlib/abort.c: Likewise.
44813         * stdlib/fmtmsg.c: Likewise.
44814         * sunrpc/auth_unix.c: Likewise.
44815         * sunrpc/clnt_perr.c: Likewise.
44816         * sunrpc/clnt_tcp.c: Likewise.
44817         * sunrpc/clnt_udp.c: Likewise.
44818         * sunrpc/clnt_unix.c: Likewise.
44819         * sunrpc/openchild.c: Likewise.
44820         * sunrpc/svc_simple.c: Likewise.
44821         * sunrpc/svc_tcp.c: Likewise.
44822         * sunrpc/svc_udp.c: Likewise.
44823         * sunrpc/svc_unix.c: Likewise.
44824         * sunrpc/xdr.c: Likewise.
44825         * sunrpc/xdr_array.c: Likewise.
44826         * sunrpc/xdr_rec.c: Likewise.
44827         * sunrpc/xdr_ref.c: Likewise.
44828         * sunrpc/xdr_stdio.c: Likewise.
44830 2011-09-09  Ulrich Drepper  <drepper@gmail.com>
44832         * sysdeps/i386/fpu/libm-test-ulps: Adjust ULPs for jn tests.
44834 2011-07-03  Andreas Jaeger  <aj@suse.de>
44836         * math/libm-test.inc (jn_test): Add tests for BZ#11589.
44837         * sysdeps/x86_64/fpu/libm-test-ulps: Add new ULPs for jn_test,
44838         regenerate with gen-libm-tests.pl.
44840 2010-05-12  Petr Baudis  <pasky@suse.cz>
44842         [BZ #11589]
44843         * sysdeps/ieee754/dbl-64/e_jn.c: Compensate major precision loss
44844         around j0() zero points by switching to j1().
44845         * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
44846         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
44847         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
44848         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
44850 2011-09-09  Ulrich Drepper  <drepper@gmail.com>
44852         * sysdeps/unix/bsd/bsd4.4/bits/socket.h (__cmsg_nxthdr): Use NULL
44853         instead of 0.
44854         * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Use (void*)0
44855         instead of 0.
44856         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
44857         Patch in part by Pavel Roskin <proski@gnu.org>.
44859         [BZ #13138]
44860         * stdio-common/vfscanf.c (ADDW): Allocate large memory block with
44861         realloc.
44862         (_IO_vfscanf_internal): Remove reteof.  Use errout after setting done.
44863         Free memory block if necessary.
44865         [BZ #12847]
44866         * libio/genops.c (INTDEF): For string streams the _lock pointer can
44867         be NULL.  Don't lock in this case.
44869 2011-09-09  Roland McGrath  <roland@hack.frob.com>
44871         * elf/elf.h (ELFOSABI_GNU): New macro.
44872         (ELFOSABI_LINUX): Define to that.
44874 2011-07-29  Denis Zaitceff  <zaitceff@gmail.com>
44876         * string/strncat.c (strncat): Undef the symbol in case it has been
44877         defined in bits/string.h.
44879 2011-09-09  Ulrich Drepper  <drepper@gmail.com>
44881         * elf/sotruss.ksh: Clean up, fix, and complete help messages.
44883         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Fill in data from the real
44884         link map.
44886 2011-08-17  Andreas Jaeger  <aj@suse.de>
44888         * elf/sprof.c (load_shobj): Remove unused variable log_hashfraction.
44890 2011-08-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
44891             Ian Lance Taylor  <iant@google.com>
44893         * math/libm-test.inc (lround_test): New testcase.
44894         * sysdeps/ieee754/dbl-64/s_lround.c (__lround): Don't lose precision.
44896 2011-09-08  Ulrich Drepper  <drepper@gmail.com>
44898         * Makefile: Remove support for automatic cvs check-ins.
44899         * Makerules: Likewise.
44900         * config.make.in: Likewise.
44901         * configure.in: Likewise.
44902         * intl/Makefile: Likewise.
44903         * locale/Makefile: Likewise.
44904         * po/Makefile: Likewise.
44905         * posix/Makefile: Likewise.
44906         * sysdeps/gnu/Makefile: Likewise.
44907         * sysdeps/mach/hurd/Makefile: Likewise.
44908         * sysdeps/sparc/sparc32/Makefile: Likewise.
44910         [BZ #13118]
44911         * posix/Makefile (bug-regex32-ENV): Define.
44912         Patch by John Stanley <jpsinthemix@verizon.net>.
44914         * misc/Makefile (headers): Add bits/select2.h.
44915         * misc/sys/select.h: Include bits/select2.h for _FORTIFY_SOURCE.
44916         * misc/bits/select2.h: New file.
44917         * include/bits/select2.h: New file.
44918         * debug/Makefile (routines): Add fdelt_chk.
44919         * debug/Versions: Export __fdelt_chk and __fdelt_warn for GLIBC_2.15.
44920         * debug/tst-chk1.c (do_test): Add tests for FD_SET, FD_CLR, and
44921         FD_ISSET.
44922         * debug/fdelt_chk.c: New file.
44924         * wcsmbs/test-wcscmp.c: Moved from string/*.  Adjust.
44925         * wcsmbs/test-wmemcmp.c: Likewise.
44926         * string/Makefile (strop-tests): Remove wcscmp and wmemcmp.
44927         * wcsmbs/Makefile (strop-tests): Add wcscmp and wmemcmp.
44929 2011-09-08  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
44931         * string/Makefile (strop-tests): Add memcmp.
44932         * string/test-wmemcmp.c: New file.
44933         * string/test-memcmp.c: Add wmemcmp support.
44935 2011-09-08  Roland McGrath  <roland@hack.frob.com>
44937         [BZ #13153]
44938         * manual/libc.texinfo (EDITION, VERSION, UPDATED): Update for
44939         2011-07-19 change.
44941         * sysdeps/mach/hurd/fork.c (__fork): Initialize REFS so we don't use a
44942         garbage value in a __mach_port_mod_refs call in the cases of the
44943         task-self and thread-self ports.
44945 2011-09-06  Samuel Thibault  <samuel.thibault@ens-lyon.org>
44947         * sysdeps/mach/hurd/sys/param.h (DEV_BSIZE): New macro.
44949 2011-09-08  Andreas Schwab  <schwab@redhat.com>
44951         * elf/dl-load.c (lose): Check for non-null L.
44953 2011-09-07  Ulrich Drepper  <drepper@gmail.com>
44955         * elf/dl-load.c (open_verify): Use O_CLOEXEC.
44957         * elf/dl-libc.c (dlerror_run): Pass back error code from
44958         dl_catch_error.
44960         [BZ #13123]
44961         * elf/dl-load.c (lose): Free l_origin if it is valid.
44963         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Fix mixup in section
44964         names.
44965         * sysdeps/i386/i686/multiarch/strchr-sse2.S: Likewise.
44966         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
44967         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
44968         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
44969         * sysdeps/i386/i686/multiarch/strrchr-sse2.S: Likewise.
44970         Patch by Liubov Dmitrieva <liubov.dmitrieva@intel.com>.
44972 2011-08-01  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
44974         * sysdeps/powerpc/fpu/e_hypot.c: New file.
44975         * sysdeps/powerpc/fpu/e_hypotf.c: New file.
44976         * sysdeps/powerpc/fpu/e_rem_pio2f.c: New file.
44977         * sysdeps/powerpc/fpu/k_rem_pio2f.c: New file.
44978         * sysdeps/powerpc/fpu/k_cosf.c: New file.
44979         * sysdeps/powerpc/fpu/k_sinf.c: New file.
44980         * sysdeps/powerpc/fpu/s_cosf.c: New file.
44981         * sysdeps/powerpc/fpu/s_sinf.c: New file.
44982         * sysdeps/powerpc/fpu/s_scalbnf.c: New file.
44983         * sysdeps/powerpc/fpu/s_float_bitwise.h: New file.
44985 2011-08-15  Alan Modra  <amodra@gmail.com>
44987         [BZ #13092]
44988         * sysdeps/powerpc/Makefile (gmon): Move sysdep_routines to..
44989         * sysdeps/powerpc/powerpc64/Makefile (gmon): ..here..
44990         * sysdeps/powerpc/powerpc32/Makefile (gmon): ..and here.  Add
44991         ppc_mcount to static-only-routines.
44992         * sysdeps/powerpc/powerpc32/Versions: Export GLIBC_PRIVATE
44993         __mcount_internal.
44994         * sysdeps/powerpc/powerpc32/ppc-mcount.S (_mcount): Call
44995         __mcount_internal with usual JUMPTARGET.  Remove useless nop.
44997 2011-08-18  David Flaherty  <flaherty@linux.vnet.ibm.com>
44999         * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: New file which checks
45000         for finite and infinity parameters.
45002 2011-08-04  Will Schmidt  <will_schmidt@vnet.ibm.com>
45004         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Adjust the alignment
45005         and add nop instructions for throughput optimization.
45006         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
45008 2011-07-28  Will Schmidt  <will_schmidt@vnet.ibm.com>
45010         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Optimize the
45011         aligned copy for power7 with vector-scalar instructions.
45012         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Likewise.
45014 2011-07-24  H.J. Lu  <hongjiu.lu@intel.com>
45016         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Simplify
45017         AVX check.
45019 2011-09-07  Andreas Schwab  <schwab@redhat.com>
45021         [BZ #13144]
45022         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semdid_ds): Revert
45023         last change.
45025 2011-09-07  Ulrich Drepper  <drepper@gmail.com>
45027         * sysdeps/unix/sysv/linux/x86_64/init-first.c
45028         (_libc_vdso_platform_setup): If vDSO is not present store pointer to
45029         syscall wrapper around clock_gettime in __vdso_clock_gettime.
45030         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Add entry for
45031         clock_gettime.
45033 2011-09-06  Ulrich Drepper  <drepper@gmail.com>
45035         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c (INTERNAL_GETTIME):
45036         Forgot to demangle the pointer.
45038         * sysdeps/i386/sysdep.h: Define atom_text_section.
45039         * sysdeps/x86_64/sysdep.h: Likewise.
45040         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Place function in
45041         section with atom_text_section.
45042         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
45043         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
45044         * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: Likewise.
45045         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Likewise.
45046         * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S: Likewise.
45048         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c: New file.
45049         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSCALL_GETTIME): Allow
45050         already be defined.  Change to take two parameters and don't assign
45051         result to variable.  Adjust all users.
45052         Define INTERNAL_GETTIME if not already defined.
45053         Use INTERNAL_GETTIME instead of INTERNAL_VSYSCALL got clock_gettime
45054         call.
45055         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Don't define
45056         HAVE_CLOCK_GETTIME_VSYSCALL.
45057         * sysdeps/unix/clock_gettime.c: Adjust use of SYSDEP_GETTIME_CPU.
45059         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Don't use
45060         gettimeofday vsyscall, just use time.
45062 2011-09-06  Andreas Schwab  <schwab@redhat.com>
45064         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c [!SHARED]: Include
45065         <errno.h>.
45067 2011-09-06  Ulrich Drepper  <drepper@gmail.com>
45069         * sysdeps/unix/sysv/linux/kernel-features.h: Add entry for getcpu
45070         syscall on x86-64.
45071         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c [!SHARED]: Use real
45072         syscall.
45073         * sysdeps/unix/sysv/linux/x86_64/time.c: Likewise.
45074         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S [!SHARED]: Use real
45075         syscall if possible.
45077 2011-09-05  Ulrich Drepper  <drepper@gmail.com>
45079         * elf/pldd.c (get_process_info): Don't read whole ELF header, just
45080         e_ident.  Don't pass to find_mapsXX.
45081         * elf/pldd-xx.c (find_mapsXX): Remove second parameter.
45083 2011-07-20  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
45085         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
45086         strchr-sse2-no-bsf strrchr-sse2-no-bsf
45087         * sysdeps/x86_64/multiarch/strchr.S: Update.
45088         Check bit_slow_BSF bit.
45089         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
45090         * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: New file.
45091         * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S: New file.
45093 2011-09-05  Ulrich Drepper  <drepper@gmail.com>
45095         [BZ #13134]
45096         * sysdeps/posix/spawni.c (script_execute): Define only for compatibility
45097         before glibc 2.15.
45098         (tryshell): Define.
45099         (__spawni): Change last parameter to be flag.  Test
45100         SPAWN_XFLAGS_USE_PATH flag to use path or not.
45101         Don't try to use shell unless SPAWN_XFLAGS_TRY_SHELL is set.
45102         * sysdeps/mach/hurd/spawni.c: Change last parameter and adjust user.
45103         * posix/spawni.c: Likewise.
45104         * posix/spawn.c: Add compat version which passed SPAWN_XFLAGS_TRY_SHELL.
45105         * posix/spawnp.c: Likewise.  Change normal version to use
45106         SPAWN_XFLAGS_USE_PATH.
45107         * posix/spawn_int.c: Define SPAWN_XFLAGS_USE_PATH and
45108         SPAWN_XFLAGS_TRY_SHELL.
45110         [BZ #13150]
45111         * posix/glob.h: Remove gcc 1.x support.
45113         [BZ #13068]
45114         * elf/dl-misc.c (_dl_sysdep_read_whole_file): Use O_CLOEXEC.
45116 2011-07-20  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
45118         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
45119         strchr-sse2 strrchr-sse2 strchr-sse2-bsf
45120         strrchr-sse2-bsf
45121         * sysdeps/i386/i686/multiarch/strchr.S: New file.
45122         * sysdeps/i386/i686/multiarch/strrchr.S: New file.
45123         * sysdeps/i386/i686/multiarch/strchr-sse2.S: New file.
45124         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: New file.
45125         * sysdeps/i386/i686/multiarch/strrchr-sse2.S: New file.
45126         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: New file.
45128 2011-08-29  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
45130         * sysdeps/x86_64/wcscmp.S: New file.
45132         * sysdeps/i386/i686/multiarch/Makefile: (sysdep_routines): Add
45133         wcscmp-c wcscmp-sse2
45134         * sysdeps/i386/i686/multiarch/wcscmp-c.c: New file.
45135         * sysdeps/i386/i686/multiarch/wcscmp.S: New file.
45136         * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: New file.
45137         * wcsmbs/wcscmp.c: Allow renaming.
45139 2011-09-05  David S. Miller  <davem@davemloft.net>
45141         * sysdeps/sparc/sparc32/fpu/s_fabsf.S: Use first argument
45142         stack slot, rather than the struct return pointer slot.
45143         * sysdeps/sparc/sparc32/fpu/s_fabs.c: Delete.
45144         * sysdeps/sparc/sparc32/fpu/s_fabs.S: New file.
45145         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S: Likewise.
45146         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/fpu/Implies: Likewise.
45148 2011-09-05  Ulrich Drepper  <drepper@gmail.com>
45150         * po/ja.po: Update from translation team.
45152         [BZ #13144]
45153         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semdid_ds): Fix to match
45154         kernel in 64-bit binaries.
45156 2011-09-01  David S. Miller  <davem@davemloft.net>
45158         * elf/elf.h (HWCAP_SPARC_*): Move to..
45159         * sysdeps/sparc/sysdep.h: this new file and add new values.
45160         * sysdeps/unix/sparc/sysdep.h: Include sysdeps/sparc/sysdep.h
45161         * sysdeps/sparc/dl-procinfo.h: Include sysdep.h and increase
45162         _DL_HWCAP_COUNT to 24.
45163         * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add new
45164         entries.
45165         * sysdeps/sparc/sparc32/bits/atomic.h: Don't use magic local
45166         __ATOMIC_HWCAP_SPARC_V9 define, use sysdep.h one instead.
45167         * sysdeps/sparc/sparc32/dl-machine.h: Include sysdep.h
45168         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Use HWCAP_SPARC_*
45169         instead of magic constants.
45170         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
45172 2011-08-31  David S. Miller  <davem@davemloft.net>
45174         * sysdeps/unix/sparc/sysdep.h (SETUP_PIC_REG): Define.
45175         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h (PSEUDO):
45176         Reimplement to do errno handling inline.
45177         (SYSCALL_ERROR_HANDLER): New macro.
45178         (__SYSCALL_STRING): Do not do errno handling in asm.
45179         (__CLONE_SYSCALL_STRING): Delete.
45180         (__INTERNAL_SYSCALL_STRING): Delete.
45181         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Include
45182         sysdeps/unix/sparc/sysdep.h instead of sysdeps/unix/sysdep.h
45183         (PSEUDO): Reimplement to do errno handling inline.
45184         (ret, ret_NOERRNO, ret_ERRVAL, r0, r1, MOVE): Don't redefine.
45185         (SYSCALL_ERROR_HANDLER): New macro.
45186         (__SYSCALL_STRING): Do not do errno handling in asm.
45187         (__CLONE_SYSCALL_STRING): Delete.
45188         (__INTERNAL_SYSCALL_STRING): Delete.
45189         * sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL):
45190         Implement in terms of INTERNAL_SYSCALL and __set_errno, just like
45191         i386.
45192         (INTERNAL_SYSCALL_DECL): Declare %g1 var for err state.
45193         (inline_syscall*): Add 'err' argument.
45194         (INTERNAL_SYSCALL, INTERNAL_SYSCALL_NCS,
45195         INTERNAL_SYSCALL_ERROR_P): Likewise and pass it down.
45196         (INLINE_CLONE_SYSCALL): Reimplement in terms of __SYSCALL_STRING,
45197         INTERNAL_SYSCALL_ERRNO, and INTERNAL_SYSCALL_ERROR_P.
45199         * scripts/data/localplt-sparc-linux-gnu.data: Remove 'ffs'.
45200         * scripts/data/localplt-sparc64-linux-gnu.data: Likewise.
45202 2011-08-30  Andreas Schwab  <schwab@redhat.com>
45204         * elf/rtld.c (dl_main): Relocate objects in dependency order.
45206 2011-08-29  Jiri Olsa <jolsa@redhat.com>
45208         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Fix cfi
45209         directive.
45211 2011-08-24  David S. Miller  <davem@davemloft.net>
45213         * sysdeps/sparc/sparc64/strcmp.S: Rewrite.
45215 2011-08-24  Andreas Schwab  <schwab@redhat.com>
45217         * elf/Makefile: Add rules to build and run unload8 test.
45218         * elf/unload8.c: New file.
45219         * elf/unload8mod1.c: New file.
45220         * elf/unload8mod1x.c: New file.
45221         * elf/unload8mod2.c: New file.
45222         * elf/unload8mod3.c: New file.
45224         * elf/dl-close.c (_dl_close_worker): Reset private search list if
45225         it wasn't used.
45227 2011-08-23  David S. Miller  <davem@davemloft.net>
45229         * sysdeps/sparc/sparc64/dl-machine.h (DL_STACK_END): Do not
45230         subtract stack bias.
45231         * sysdeps/sparc/sparc64/jmpbuf-unwind.h (_JMPBUF_UNWINDS): Use
45232         %sp not %fp in calculations.
45233         (_JMPBUF_UNWINDS_ADJ): Likewise.
45235         * sysdeps/pthread/aio_suspend.c (do_aio_misc_wait): New function.
45236         (aio_suspend): Call it to force an exception region around the
45237         AIO_MISC_WAIT() invocation.
45239 2011-08-23  Andreas Schwab  <schwab@redhat.com>
45241         * sysdeps/i386/i686/multiarch/strspn.S (ENTRY): Add missing
45242         backslash.
45244 2011-07-04  Aurelien Jarno  <aurelien@aurel32.net>
45246         * sysdeps/powerpc/dl-tls.h: Add _PPC_DL_TLS_H inclusion
45247         protection macro.
45248         * sysdeps/powerpc/powerpc64/dl-irel.h: Include <ldsodefs.h>
45249         and <dl-machine.h>.
45250         (Elf64_FuncDesc): Remove.
45252 2011-08-22  David S. Miller  <davem@davemloft.net>
45254         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Fix
45255         sigaltstack check, add missing cfi directives.
45256         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Add
45257         missing cfi directives, and sigaltstack handling.
45259 2011-08-16  Andreas Schwab  <schwab@redhat.com>
45261         [BZ #11724]
45262         * elf/dl-deps.c (_dl_map_object_deps): Only assume cycle when
45263         object is seen twice.
45264         * elf/dl-fini.c (_dl_sort_fini): Likewise.
45266         * elf/Makefile (distribute): Add tst-initorder2.c.
45267         (tests): Add tst-initorder2.
45268         (modules-names): Add tst-initorder2a tst-initorder2b
45269         tst-initorder2c tst-initorder2d.  Add rules to build them.
45270         ($(objpfx)tst-initorder2.out): New rule.
45271         * elf/tst-initorder2.c: New file.
45272         * elf/tst-initorder2.exp: New file.
45274 2011-08-22  Andreas Schwab  <schwab@redhat.com>
45276         * sysdeps/unix/sysv/linux/i386/scandir64.c: Include <string.h>.
45278         * elf/dl-deps.c (_dl_map_object_deps): Move check for missing
45279         dependencies back to end of function.
45281         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Readd
45282         $(elfobjdir)/ld.so.
45284 2011-08-21  Ulrich Drepper  <drepper@gmail.com>
45286         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S: Removed.
45287         * sysdeps/unix/sysv/linux/x86_64/time.S: Removed.
45288         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c: New file.
45289         * sysdeps/unix/sysv/linux/x86_64/time.c: New file.
45290         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Remove declaration
45291         of __vdso_gettimeofday.
45292         * sysdeps/unix/sysv/linux/x86_64/init-first.c: Remove definition of
45293         __vdso_gettimeofday and __vdso_time.  Define __vdso_getcpu with
45294         attribute_hidden.
45295         (_libc_vdso_platform_setup): Remove initialization of
45296         __vdso_gettimeofday and __vdso_time.
45298 2011-08-20  Ulrich Drepper  <drepper@gmail.com>
45300         * nss/nss_files/files-alias.c (get_next_alias): Use feof_unlocked
45301         and fgetc_unlocked.
45302         * nss/nss_files/files-key.c (search): Use fgets_unlocked and
45303         getc_unlocked.
45305         * elf/dl-open.c (add_to_global): Report additions to the global scope
45306         for LD_DEBUG=scopes.
45307         (dl_open_worker): Also print scope of newly loaded dependencies.
45308         (_dl_show_scope): Indicate if there is no scope.
45310         [BZ #13114]
45311         * stdio-common/Makefile (tests): Add bug24.
45312         * stdio-common/bug24.c: New file.
45314 2011-08-19  Andreas Jaeger  <aj@suse.de>
45316         [BZ #13114]
45317         * libio/fileops.c (_IO_new_file_fopen): Fix handling of
45318         non-existant file when using close-on-exec mode.
45320 2011-08-20  Ulrich Drepper  <drepper@gmail.com>
45322         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_resolve): Fix CFI for
45323         the very first instruction.
45325         * sysdeps/x86_64/dl-trampoline.h: If MORE_CODE is defined, restore
45326         the CFI state in the end.
45327         * sysdeps/x86_64/dl-trampoline.S: Define MORE_CODE before first
45328         inclusion of dl-trampoline.h.
45329         Based on a patch by Jiri Olsa <jolsa@redhat.com>.
45331 2011-08-19  Andreas Schwab  <schwab@redhat.com>
45333         * sysdeps/powerpc/fpu/libm-test-ulps: Relax ctan (0.75 + 1.25 i)
45334         expectations for long double.
45336         * sysdeps/unix/sysv/linux/powerpc/powerpc32/scandir64.c: Renamed
45337         from sysdeps/unix/sysv/linux/powerpc/scandir64.c.
45339 2011-08-14  David S. Miller  <davem@davemloft.net>
45341         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-tst-writev.c): The
45342         artificual limit depends upon the system page size.
45344 2011-08-17  Ulrich Drepper  <drepper@gmail.com>
45346         * Makeconfig (override CFLAGS): Add library-specific CFLAGS.
45347         * resolv/Makefile: Define CFLAGS-libresolv.
45349 2011-08-17  Andreas Schwab  <schwab@redhat.com>
45351         * nss/makedb.c (compute_tables): Make variables used in nested
45352         function static.
45354 2011-08-17  Ulrich Drepper  <drepper@gmail.com>
45356         * elf/pldd-xx.c (r_debug): Explicitly add padding when needed.
45357         * elf/pldd.c (get_process_info): Use pread to re-read auxiliary vector
45358         if buffer was too small.
45360         * elf/pldd.c (main): Attach to all threads in the process.
45361         Rewrite /proc handling to use *at functions.
45363 2011-08-16  Ulrich Drepper  <drepper@gmail.com>
45365         * elf/dl-open.c (_dl_show_scope): Take additional parameter which
45366         specifies first scope to show.
45367         (dl_open_worker): Update callers.  Move printing scope of new
45368         object to before the relocation.
45369         * elf/rtld.c (dl_main): Update _dl_show_scope call.
45370         * sysdeps/generic/ldsodefs.h: Update declaration.
45372         * elf/dl-open.c (_dl_show_scope): Use _dl_debug_printf to generate the
45373         string for the scope number.
45375 2011-08-14  Ulrich Drepper  <drepper@gmail.com>
45377         * nscd/servicescache.c (cache_addserv): Make sure written is always
45378         initialized.
45380 2011-08-14  Roland McGrath  <roland@hack.frob.com>
45382         * sysdeps/i386/i486/bits/atomic.h
45383         (__arch_compare_and_exchange_val_64_acq): Use RET alone at end of
45384         statement expression, so as to suppress "set but not used" warning.
45385         (__arch_c_compare_and_exchange_val_64_acq): Likewise.
45387         * string/strncat.c (STRNCAT): Use prototype definition.
45389         * locale/Makefile (locale-CPPFLAGS): Renamed CPPFLAGS-locale-programs.
45390         (locale-CPPFLAGS): New variable; put LOCALEDIR, LOCALE_ALIAS_PATH and
45391         -Iprograms here.
45392         (cppflags-iterator.mk sequence): Use locale-programs in place of nonlib.
45393         (localedef-modules): Add localedef.
45394         (locale-modules): Add locale.
45396         * sysdeps/generic/ldsodefs.h (struct unique_sym): Add a const.
45397         * elf/rtld.c (dl_main): Invert order of assignment in last change,
45398         to avoid a warning.
45400 2011-08-14  David S. Miller  <davem@davemloft.net>
45402         * sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIM_INFINITY,
45403         RLIM64_INFINITY): Fix 64-bit values for 32-bit sparc.
45405 2011-08-13  Ulrich Drepper  <drepper@gmail.com>
45407         * elf/dl-open.c: Rename show_scope to _dl_show_scope and export.
45408         (dl_open_worker): Call _dl_show_scope when DL_DEBUG_SCOPES is set.
45409         * elf/rtld.c (dl_main): Set l_name of vDSO.
45410         Call _dl_show_scope when DL_DEBUG_SCOPES.
45411         (process_dl_debug): Recognize scopes flag and also set it for all.
45412         * sysdeps/generic/ldsodefs.h: Define DL_DEBUG_SCOPES.
45413         Declare _dl_show_scope.
45415         * elf/dl-libc.c (do_dlopen_args): Add caller_dlopen.
45416         (do_dlopen): Pass caller_dlopen to dl_open.
45417         (__libc_dlopen_mode): Initialize caller_dlopen.
45419         * intl/l10nflist.c (_nl_normalize_codeset): Make it compile outside
45420         of libc.  Make tolower call locale-independent.  Optimize a bit by
45421         using isdigit instead of isalnum.
45422         * locale/Makefile (locale-CPPFLAGS): Add -DNOT_IN_libc.
45424 2011-08-12  Ulrich Drepper  <drepper@gmail.com>
45426         * elf/dl-load.c (_dl_map_object): Show in debug output whether a DSO
45427         was a dependency or dynamically loaded.
45429 2011-08-11  Ulrich Drepper  <drepper@gmail.com>
45431         * intl/l10nflist.c: Allow architecture-specific pop function.
45432         * sysdeps/x86_64/l10nflist.c: New file.
45434         * intl/l10nflist.c (_nl_make_l10nflist): Use locale-independent
45435         classification.
45437 2011-08-10  Andreas Schwab  <schwab@redhat.com>
45439         * include/dirent.h: Add libc_hidden_proto for scandirat and
45440         scandirat64.  Don't declare __scandirat64.
45441         * dirent/scandirat.c: Add libc_hidden_def.
45442         * dirent/scandirat64.c (SCANDIRAT): Remove underscores.
45443         * sysdeps/unix/sysv/linux/i386/scandir64.c (SCANDIRAT): Likewise.
45445 2011-08-10  David S. Miller  <davem@davemloft.net>
45447         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Add missing comma in
45448         enum.
45449         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
45450         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
45451         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
45453 2011-08-09  Ulrich Drepper  <drepper@gmail.com>
45455         * Versions.def [libc]: Add GLIBC_2.15.
45456         * dirent/Makefile (routines): Add scandirat and scandirat64.
45457         * dirent/Versions [libc]: Export scandirat and scandirat64 for
45458         GLIBC_2.15.
45459         * dirent/dirent.h: Declare scandirat and scandirat64.
45460         * dirent/scandirat.c: New file.
45461         * dirent/scandirat64.c: New file.
45462         * sysdeps/wordsize-64/scandirat.c: New file.
45463         * sysdeps/wordsize-64/scandirat64.c: New file.
45464         * dirent/opendir.c: Define opendirat.
45465         * dirent/scandir.c: Move code to scandirat.c.  Implement scandir
45466         using scandirat.
45467         * dirent/scandir64.c: Adjust for scandir.c change.
45468         * include/dirent.h: Define scandir_cancel_struct.  Declare __opendirat,
45469         __scandirat64, and __scandir_cancel_handler.
45470         * sysdeps/unix/opendir.c: Rename __opendir to __opendirat.  Take
45471         additional parameter and use openat instead of open (outside of ld.so).
45472         Add new __opendir as wrapper around __opendirat.
45473         * sysdeps/unix/sysv/linux/i386/scandir64.c: Reimplement __old_scandir64
45474         here without requiring old scandirat implementation.
45476 2011-08-08  Ulrich Drepper  <drepper@gmail.com>
45478         * dirent/scandir.c (cancel_handler): Renamed to
45479         __scandir_cancel_handler.  Do not define if SKIP_SCANDIR_CANCEL is
45480         defined.  Adjust users.
45481         * dirent/scandir64.c: Define SKIP_SCANDIR_CANCEL.
45482         * sysdeps/unix/sysv/linux/i386/scandir64.c: Likewise.
45484 2011-08-04  Ulrich Drepper  <drepper@gmail.com>
45486         * string/test-string.h (IMPL): Use __STRING to expand name and then
45487         stringify it.
45489         * string/test-strcmp.c: Unify most of the WIDE and !WIDE code.  Lots
45490         of cleanups.
45492 2011-07-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
45494         * string/Makefile: Update.
45495         (strop-tests): Append strncat.
45496         * string/test-wcscmp.c: New file.
45497         New comprehensive test for wcscmp.
45498         * string/test-strcmp.c: Update.
45499         (WIDE): New define.
45501 2011-07-22  Andreas Schwab  <schwab@redhat.com>
45503         * resolv/res_init.c (__res_vinit): Properly tokenize nameserver
45504         line.
45506 2011-07-26  Andreas Schwab  <schwab@redhat.com>
45508         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
45509         encoding to ACE if AI_IDN.
45511 2011-08-01  Jakub Jelinek  <jakub@redhat.com>
45513         * sysdeps/ieee754/dbl-64/k_rem_pio2.c (__kernel_rem_pio2): Fix up fq
45514         to y conversion for prec 3 and __FLT_EVAL_METHOD__ != 0.
45516 2011-07-22  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
45518         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Update.
45519         Fix overflow bug in strncat.
45520         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Likewise.
45522         * string/test-strncat.c: Update.
45523         Add new tests for checking overflow bugs.
45525 2011-07-15  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
45527         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
45528         strcat-ssse3 strcat-sse2 strncat-ssse3 strncat-sse2 strncat-c.
45529         * sysdeps/i386/i686/multiarch/strcat.S: New file.
45530         * sysdeps/i386/i686/multiarch/strcat-c.c: New file.
45531         * sysdeps/i386/i686/multiarch/strcat-sse2.S: New file.
45532         * sysdeps/i386/i686/multiarch/strcat-ssse3.S: New file.
45533         * sysdeps/i386/i686/multiarch/strncat.S: New file.
45534         * sysdeps/i386/i686/multiarch/strncat-sse2.S: New file.
45535         * sysdeps/i386/i686/multiarch/strncat-ssse3.S: New file.
45537         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S
45538         (USE_AS_STRCAT): Define.
45539         Add strcat and strncat support.
45540         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
45542 2011-07-25  Andreas Schwab  <schwab@redhat.com>
45544         * sysdeps/i386/i486/bits/string.h (__strncat_g): Correctly handle
45545         __n bigger than INT_MAX+1.
45546         (__strncmp_g): Likewise.
45548 2011-07-23  Ulrich Drepper  <drepper@gmail.com>
45550         * posix/unistd.h: Define SEEK_DATA and SEEK_HOLE.
45551         * libio/stido.h: Likewise.
45553         * sysdeps/unix/sysv/linux/bits/socket.h (PF_NFC): Define.
45554         (AF_NFC): Define.
45555         * sysdeps/unix/sysv/linux/sparc/bits/socket.h (PF_NFC): Define.
45556         (AF_NFC): Define.
45558         * sysdeps/unix/sysv/linux/sys/ptrace.h: Add new constants.
45559         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
45560         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
45561         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
45562         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
45564         [BZ #13021]
45565         * scripts/test-installation.pl: Don't expect libnss_test1 to be
45566         installed.
45568         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix one more
45569         typo.
45570         (_dl_x86_64_save_sse): Likewise.
45572 2011-07-22  Ulrich Drepper  <drepper@gmail.com>
45574         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix test for
45575         OSXSAVE.
45576         (_dl_x86_64_save_sse): Likewise.
45578         * crypt/crypt_util.c (__init_des_r): Optimize memset calls.
45580         * crypt/crypt_util.c (__init_des_r): Add read barrier as well.
45582 2011-07-21  Andreas Schwab  <schwab@redhat.com>
45584         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix last
45585         change.
45586         (_dl_x86_64_save_sse): Use correct AVX check.
45588 2011-07-21  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
45590         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Fix overfow
45591         bug in strncpy/strncat.
45592         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
45594 2011-07-21  Ulrich Drepper  <drepper@gmail.com>
45596         * string/tester.c (test_strcat): Add tests for different alignments
45597         of source and destination.
45598         (test_strncat): Likewise.
45600 2011-07-20  Ulrich Drepper  <drepper@gmail.com>
45602         [BZ #12852]
45603         * posix/glob.c (glob): Check passed in values before using them in
45604         expressions to avoid some overflows.
45605         (glob_in_dir): Likewise.
45607         [BZ #13007]
45608         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): More complete
45609         check for AVX enablement so that we don't crash with old kernels and
45610         new hardware.
45611         * elf/tst-audit4.c: Add same checks here.
45612         * elf/tst-audit6.c: Likewise.
45614         * sysdeps/x86_64/bits/link.h (La_x86_64_ymm): Force 16-byte alignment.
45616 2011-07-09  Andreas Schwab  <schwab@linux-m68k.org>
45618         * sysdeps/unix/sysv/linux/pathconf.c: Include <string.h>.
45620 2011-07-20  Ulrich Drepper  <drepper@gmail.com>
45622         * po/cs.po: Update from translation team.
45623         * po/bg.po: Likewise.
45625 2011-07-12  Marek Polacek  <mpolacek@redhat.com>
45627         * misc/sys/cdefs.h: Add support for const attribute.
45628         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Add __attribute_const__
45629         to gnu_dev_{major,minor,makedev} functions.
45631 2011-07-20  Marek Polacek  <mpolacek@redhat.com>
45633         * intl/dcigettext.c (get_output_charset): Add missing bracket.
45635 2011-07-20  Andreas Schwab  <schwab@redhat.com>
45637         * resolv/res_query.c (__libc_res_nquerydomain): Use size_t for
45638         strlen results.
45640 2011-07-13  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
45642         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h
45643         (INTERNAL_VSYSCALL_NCS): Use r10 for backing up the return address
45644         register in order to avoid conflicts with the soft frame pointer
45645         being held in r11 when necessary.
45646         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
45647         (INTERNAL_VSYSCALL_NCS): Likewise.
45649 2011-07-14  Marek Polacek  <mpolacek@redhat.com>
45651         * elf/dl-fini.c (_dl_sort_fini): Remove unused link_map *l argument,
45652         * elf/dl-fini.c (_dl_fini): Adjust caller.
45653         * elf/dl-close.c (_dl_close_worker): Likewise.
45654         * sysdeps/generic/ldsodefs.h: Adjust declaration.
45656 2011-07-15  Marek Polacek  <mpolacek@redhat.com>
45658         * elf/cache.c (load_aux_cache): Remove unnecessary condition of
45659         "aux_cache->nlibs < 0".
45661         * nscd/nscd_conf.c (nscd_parse_file): Remove unnecessary condition
45662         in the reload-count case.
45664 2011-07-15  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
45666         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
45667         strcat-ssse3 strcat-sse2-unaligned strncat-ssse3
45668         strncat-sse2-unaligned strncat-c strlen-sse2-pminub
45669         * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: New file.
45670         * sysdeps/x86_64/multiarch/strcat.S: New file.
45671         * sysdeps/x86_64/multiarch/strncat.S: New file.
45672         * sysdeps/x86_64/multiarch/strncat-c.c: New file.
45673         * sysdeps/x86_64/multiarch/strcat-ssse3.S: New file.
45674         * sysdeps/x86_64/multiarch/strncat-sse2-unaligned.S: New file.
45675         * sysdeps/x86_64/multiarch/strncat-ssse3.S: New file.
45676         * sysdeps/x86_64/multiarch/strcpy-ssse3.S
45677         (USE_AS_STRCAT): Define.
45678         Add strcat and strncat support.
45679         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Likewise.
45680         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
45681         * sysdeps/x86_64/multiarch/strlen-sse2-pminub.S: New file.
45682         * string/strncat.c: Update.
45683         (USE_AS_STRNCAT): Define.
45684         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
45685         Turn on bit_Prefer_PMINUB_for_stringop for Intel Core i3, i5
45686         and i7.
45687         * sysdeps/x86_64/multiarch/init-arch.h
45688         (bit_Prefer_PMINUB_for_stringop): New.
45689         (index_Prefer_PMINUB_for_stringop): Likewise.
45690         * sysdeps/x86_64/multiarch/strlen.S (strlen): Check
45691         bit_Prefer_PMINUB_for_stringop.
45693 2011-07-19  Ulrich Drepper  <drepper@gmail.com>
45695         * crypt/sha512.h (struct sha512_ctx): Move buffer into union and add
45696         buffer64.
45697         * crypt/sha512.c (__sha512_finish_ctx): Use buffer64 for writes instead
45698         of casting of buffer.
45699         * crypt/sha256.h (struct sha256_ctx): Move buffer into union and add
45700         buffer32 and buffer64.
45701         * crypt/sha256.c (__sha256_finish_ctx): Use buffer32 or buffer64 for
45702         writes instead of casting of buffer.
45703         * crypt/md5.h (struct md5_ctx): Move buffer into union and add
45704         buffer32.
45705         * crypt/md5.c (md5_finish_ctx): Use buffer32 for writes instead of
45706         casting of buffer.
45708 2011-07-19  Andreas Schwab  <schwab@redhat.com>
45710         * string/strxfrm_l.c (STRXFRM): Fix alloca accounting.
45712 2011-07-19  Ulrich Drepper  <drepper@gmail.com>
45714         * nscd/nscd.c (termination_handler): Don't do anything for a database
45715         if it has not yet been initialized.
45717 2011-07-18  Ulrich Drepper  <drepper@gmail.com>
45719         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_EQUAL_S): Fix a typo.
45721 2011-07-15  Marek Polacek  <mpolacek@redhat.com>
45723         * bits/sched.h (__CPU_EQUAL_S): Fix a typo.
45725 2011-07-18  Ulrich Drepper  <drepper@gmail.com>
45727         * po/nl.po: Update from translation team.
45728         * po/sv.po: Likewise.
45730 2011-07-16  Roland McGrath  <roland@hack.frob.com>
45732         * sysdeps/i386/Makefile: Never use -mpreferred-stack-boundary=2,
45733         now disallowed by GCC.
45735         * configure.in (use-default-link): Default to yes if a test -shared
45736         link meets our qualifications.
45737         * configure: Regenerated.
45739         * config.make.in (output-format): New variable.
45740         * configure.in: Check for ld --print-output-format support.
45741         * configure: Regenerated.
45742         * Makerules ($(common-objpfx)format.lds)
45743         [$(output-format) != unknown]: Just use $(output-format),
45744         instead of the linker-script munging.
45746 2011-07-14  Roland McGrath  <roland@hack.frob.com>
45748         * Makefile ($(common-objpfx)linkobj/libc.so): Use $(shlib-lds) instead
45749         of $(common-objpfx)shlib.lds.
45750         * elf/Makefile ($(objpfx)sotruss-lib.so): Likewise.
45752         * sysdeps/i386/i686/multiarch/strstr-c.c (libc_hidden_builtin_def):
45753         Conditionalize redefinition on [SHARED && DO_VERSIONING && !NO_HIDDEN].
45755         * configure.in (-z relro check): Adjust test code to add a large
45756         writable data section after it.
45757         * configure: Regenerated.
45759 2011-07-11  Roland McGrath  <roland@hack.frob.com>
45761         * configure.in (-z relro check): Fix test code to make the variable
45762         truly const.
45763         * configure: Regenerated.
45765 2011-07-11  Ulrich Drepper  <drepper@gmail.com>
45767         * nscd/nscd.h (struct traced_file): Define.
45768         (struct database_dyn): Remove inotify_descr, reset_res, and filename
45769         elements.  Add traced_files.
45770         (inotify_fd): Declare.
45771         (register_traced_file): Declare.
45772         * nscd/connections.c (dbs): Remove reset_res and filename initializers.
45773         (inotify_fd): Export.
45774         (resolv_conf_descr): Remove.
45775         (nscd_init): Move inotify descriptor creation to main.
45776         Don't register files for notification here.
45777         (register_traced_file): New function.
45778         (invalidate_cache): Don't use reset_res to determine whether to call
45779         res_init, go through the list of registered files.
45780         (main_loop_poll): The inotify descriptors are now stored in the
45781         structures for the traced files.
45782         (main_loop_epoll): Likewise
45783         * nscd/nscd.c (main): Create inotify socket here.  Pass extra argument
45784         to __nss_disable_nscd.
45785         * nscd/cache.c (prune_cache): There is no single inotify descriptor
45786         for a database anymore.  Check the records for all the registered
45787         files instead.
45788         * nss/Makefile (libnss_files-routines): Add files-init.
45789         (libnss_db-routines): Add db-init.
45790         * nss/Versions [libnss_files] (GLIBC_PRIVATE): Add _nss_files_init.
45791         [libnss_db] (GLIBC_PRIVATE): Add _nss_db_init.
45792         * nss/nss_db/db-init.c: New file.
45793         * nss/nss_files/files-init.c: New file.
45794         * nss/nsswitch.c (nss_load_library): New function.  Broken out of
45795         __nss_lookup_function.
45796         (__nss_lookup_function): Call nss_load_library.
45797         (nss_load_all_libraries): New function.
45798         (__nss_disable_nscd): Take parameter with callback function for files
45799         to register.  Set is_nscd.  Load all the DSOs for the NSS modules
45800         used for the cached services.
45801         * nss/nsswitch.h (__nss_disable_nscd): Adjust prototype.
45802         * sysdeps/unix/sysv/linux/Makefile [subdir=nscd]: Pass the various -D
45803         options for features to all the files in nscd.
45805         * nss/nsswitch.c (nss_parse_file): Add missing fclose.
45807 2011-07-10  Roland McGrath  <roland@hack.frob.com>
45809         * csu/elf-init.c (__libc_csu_init): Comment typo.
45811 2011-07-09  Ulrich Drepper  <drepper@gmail.com>
45813         * po/pl.po: Update from translation team.
45814         * po/ja.po: Likewise.
45815         * po/ru.po: Likewise.
45816         * po/ko.po: Likewise.
45817         * po/fr.po: Likewise.
45819 2011-07-09  Roland McGrath  <roland@hack.frob.com>
45821         * configure.in (.ctors/.dtors header and trailer check):
45822         Use an empirical test on a built program.
45823         * configure: Regenerated.
45825         * configure.in (-z relro check): Use an empirical test on a built DSO.
45826         Detect, but do not require, on ia64.
45827         * configure: Regenerated.
45829         * configure.in (READELF): Find it with AC_CHECK_TOOL.
45830         Update tests that use readelf to use $READELF instead.
45831         * configure: Regenerated.
45833 2011-07-08  Ulrich Drepper  <drepper@gmail.com>
45835         * malloc/hooks.c (memalign_check): Avoid using checked_request2size
45836         if the result is not used.
45838 2011-07-05  Andreas Jaeger  <aj@suse.de>
45840         [BZ#9696]
45841         * stdlib/tst-strtod.c: Add testcase.
45843 2011-07-07  Ulrich Drepper  <drepper@gmail.com>
45845         * sysdeps/unix/sysv/linux/pathconf.c (distinguish_extX): New function.
45846         (__statfs_link_max): Use it to distinguish between ext2/3 and ext4.
45847         The latter has a higher limit.  Take additional parameter to pass to
45848         the new function.
45849         (__pathconf): Pass file to __statfs_link_max.
45850         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Pass fd to
45851         __statfs_link_max.
45852         * sysdeps/unix/sysv/linux/pathconf.h: Adjust prototype of
45853         __statfs_link_max.
45855         [BZ #12868]
45856         * sysdeps/unix/sysv/linux/linux_fsinfo.h: Define Lustre constants.
45857         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
45858         Handle Lustre.
45859         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_link_max): Likewise.
45860         (__statfs_filesize_max): Likewise.
45861         Patch mostly by Andreas Dilger <adilger@whamcloud.com>.
45863 2011-07-05  Andreas Jaeger  <aj@suse.de>
45865         * resolv/res_comp.c (dn_skipname): Remove unused variable.
45867 2011-07-06  Marek Polacek  <mpolacek@redhat.com>
45869         * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_setspent): Honour the
45870         `status' variable.
45871         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_setetherent):
45872         Likewise.
45874 2011-07-04  H.J. Lu  <hongjiu.lu@intel.com>
45876         * Makefile (strop-tests): Add strncat.
45877         * string/test-strncat.c: New file.
45879 2011-06-30  Marek Polacek  <mpolacek@redhat.com>
45881         * iconvdata/johab.c: Don't inline `johab_sym_hanja_to_ucs' function.
45883 2011-06-21  Andreas Jaeger  <aj@suse.de>
45885         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules):
45886         Copy rule from iconvdata/Makefile.
45888 2011-07-06  Ulrich Drepper  <drepper@gmail.com>
45890         [BZ #12922]
45891         * posix/getopt.c (_getopt_internal_r): When "W;" is in short options
45892         but no long options are defined, just return 'W'.
45894 2011-06-22  Marek Polacek  <mpolacek@redhat.com>
45896         [BZ #9696]
45897         * stdlib/strtod_l.c (round_and_return): Set ERANGE instead of EDOM.
45899 2011-07-06  Ulrich Drepper  <drepper@gmail.com>
45901         * inet/getnetgrent_r.c (internal_getnetgrent_r): Fix check for known
45902         netgroups to read.
45903         (innetgr): Likewise.
45905 2011-07-05  Roland McGrath  <roland@hack.frob.com>
45907         * config.make.in (install_root): Default to $(DESTDIR).
45909 2011-07-05  Ulrich Drepper  <drepper@gmail.com>
45911         * nscd/nscd_getserv_r.c (nscd_getserv_r): Add cast to avoid warning.
45913 2011-07-02  Roland McGrath  <roland@hack.frob.com>
45915         * Makerules ($(common-objpfx)format.lds): Fail if result is empty.
45917         * Makefile ($(common-objpfx)testrun.sh): Generate to work relative to
45918         containing directory rather than embedding absolute directory names.
45920         * scripts/check-local-headers.sh: Rewritten using awk.
45921         Match by word, not by line.  Print error messages for matches.
45922         * Makefile ($(objpfx)check-local-headers.out): Pass AWK in to it.
45924         * Makerules [shlib-lds-flags empty]:
45925         ($(common-objpfx)libc_pic.opts): New target.
45926         ($(common-objpfx)libc_pic.os.clean): New target.
45927         ($(common-objpfx)libc.so): Link it instead of libc_pic.os.
45929         * config.make.in (OBJCOPY): New variable.
45930         * aclocal.m4 (LIBC_PROG_BINUTILS): Substitute OBJCOPY too.
45931         * configure: Regenerated.
45933         * config.make.in (use-default-link): New variable.
45934         * configure.in (use_default_link): Grok --with-default-link to set it.
45935         * configure: Regenerated.
45936         * Makerules [$(elf) = yes] [$(use-default-link) = yes]:
45937         (shlib-lds, shlib-lds-flags): Define to empty.
45939         * Makerules (shlib-lds): New variable.
45940         (shlib-lds-flags): New variable.
45941         (build-shlib, build-moduile, build-module-asneeded): Use it.
45942         ($(common-objpfx)libc.so): Use $(shlib-lds).
45943         ($(extra-modules-build:%=$(objpfx)%.so)): Likewise.
45944         * iconvdata/extra-module.mk ($(objpfx)$(mod).so): Likewise.
45946         * elf/dynamic-link.h (elf_get_dynamic_info): Make asserts accept
45947         DT_FLAGS/DT_FLAGS_1 with zero flags.
45949         * elf/Makefile ($(objpfx)ld.so): Use -defsym=_begin=0 instead of
45950         linker script munging.
45952 2011-07-02  Ulrich Drepper  <drepper@gmail.com>
45954         * crypt/sha512.h (struct sha512_ctx): Add union to access total also
45955         as 128-bit value.
45956         * crypt/sha512.c (sha512_process_block): Perform total addition using
45957         128-bit if possible.
45958         (__sha512_finish_ctx): Likewise.
45959         * crypt/sha256.h (struct sha256_ctx): Add union to access total also
45960         as 64-bit value.
45961         * crypt/sha256.c (SWAP64): Define.
45962         (sha256_process_block): Perform total addition using 64-bit if
45963         possible.
45964         (__sha256_finish_ctx): Likewise.
45966 2011-07-01  Ulrich Drepper  <drepper@gmail.com>
45968         * nscd/pwdcache.c (cache_addpw): Cleanup.  Add branch prediction.
45969         * nscd/initgrcache.c (addinitgroupsX): Likewise.
45970         * nscd/hstcache.c (cache_addhst): Likewise.
45971         * nscd/grpcache.c (cache_addgr): Likewise.
45972         * nscd/aicache.c (addhstaiX): Likewise
45973         * nscd/servicescache.c (cache_addserv): Handle zero negtimeout.
45975 2011-07-01  Thorsten Kukuk  <kukuk@suse.de>
45977         * nscd/pwdcache.c (cache_addpw): Handle zero negtimeout.
45978         * nscd/initgrcache.c (addinitgroupsX): Likewise.
45979         * nscd/hstcache.c (cache_addhst): Likewise.
45980         * nscd/grpcache.c (cache_addgr): Likewise.
45981         * nscd/aicache.c (addhstaiX): Likewise
45983 2011-07-01  Andreas Schwab  <schwab@redhat.com>
45985         * nis/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Query NIS
45986         domain only when needed.
45988 2011-06-30  Andreas Schwab  <schwab@redhat.com>
45990         * sysdeps/posix/getaddrinfo.c (gaih_inet): Make sure RES_USE_INET6
45991         is always restored.
45993 2011-06-29  Ulrich Drepper  <drepper@gmail.com>
45995         * nscd/grpcache.c (cache_addgr): Don't write notfound reply if we
45996         are re-adding the entry.
45997         * nscd/servicescache.c (cache_addserv): Likewise.
45999 2011-06-30  Aurelien Jarno  <aurelien@aurel32.net>
46001         * sysdeps/generic/dl-irel.h: fix protection against multiple
46002         inclusions.
46003         * sysdeps/generic/dl-irel.h (elf_ifunc_invoke): New.
46005 2011-06-28  Ulrich Drepper  <drepper@gmail.com>
46007         [BZ #12935]
46008         * malloc/memusage.sh: Fix quoting in message.
46009         * debug/xtrace.sh: Likewise.
46011         * configure.in: Remove support for --experimental-malloc option, make
46012         it the default.
46013         * config.make.in: Likewise.
46014         * malloc/Makefile: Likewise.
46016 2011-06-27  Andreas Schwab  <schwab@redhat.com>
46018         * iconvdata/gb18030.c (BODY for TO_LOOP): Fix encoding of non-BMP
46019         two-byte characters.
46021 2011-06-27  Roland McGrath  <roland@hack.frob.com>
46023         * configure.in (NO_CTORS_DTORS_SECTIONS): Give this check its own
46024         AC_CACHE_CHECK invocation.
46025         * configure: Regenerated.
46027         * elf/soinit.c (__CTOR_LIST__, __DTOR_LIST__): Add used attribute.
46029 2011-06-27  Ulrich Drepper  <drepper@gmail.com>
46031         [BZ #12350]
46032         * nscd/aicache.c (addhstaiX):  Restore only RES_USE_INET6
46033         bit from old_res_options.
46035         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-servicescache.c): Define.
46037         * inet/getnetgrent_r.c (innetgr): Minimal cleanup, use correct return
46038         value type for setfct.
46040 2011-06-23  H.J. Lu  <hongjiu.lu@intel.com>
46042         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use
46043         __gettimeofday instead of gettimeofday.
46045 2011-06-26  Ulrich Drepper  <drepper@gmail.com>
46047         * elf/Makefile (all-built-dso): No need to check linkobj/libc.so.
46049 2011-06-24  H.J. Lu  <hongjiu.lu@intel.com>
46051         * sysdeps/i386/i686/multiarch/strcpy-sse2.S (RETURN): Fix a typo.
46053         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Correct unwind
46054         info.
46056 2011-06-22  H.J. Lu  <hongjiu.lu@intel.com>
46058         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
46059         strcpy-ssse3 strncpy-ssse3 stpcpy-ssse3 stpncpy-ssse3
46060         strcpy-sse2-unaligned strncpy-sse2-unaligned
46061         stpcpy-sse2-unaligned stpncpy-sse2-unaligned.
46062         * sysdeps/x86_64/multiarch/stpcpy-sse2-unaligned.S: New file.
46063         * sysdeps/x86_64/multiarch/stpcpy-ssse3.S: New file.
46064         * sysdeps/x86_64/multiarch/stpncpy-sse2-unaligned.S: New file.
46065         * sysdeps/x86_64/multiarch/stpncpy-ssse3.S: New file.
46066         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: New file.
46067         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: New file.
46068         * sysdeps/x86_64/multiarch/strncpy-sse2-unaligned.S: New file.
46069         * sysdeps/x86_64/multiarch/strncpy-ssse3.S: New file.
46070         * sysdeps/x86_64/multiarch/strcpy.S: Remove strcpy with SSSE3.
46071         (STRCPY): Support SSE2 and SSSE3 versions.
46073 2011-06-24  Ulrich Drepper  <drepper@gmail.com>
46075         [BZ #12874]
46076         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-tst-writev.c): Define.
46077         * sysdeps/wordsize-64/tst-writev.c: Work around problem with 2.6.38+
46078         kernels which artificially limit size of requests.
46080 2011-06-22  H.J. Lu  <hongjiu.lu@intel.com>
46082         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
46083         strncpy-c strcpy-ssse3 strncpy-ssse3 stpcpy-ssse3 stpncpy-ssse3
46084         strcpy-sse2 strncpy-sse2 stpcpy-sse2 stpncpy-sse2.
46085         * sysdeps/i386/i686/multiarch/stpcpy-sse2.S: New file.
46086         * sysdeps/i386/i686/multiarch/stpcpy-ssse3.S: New file.
46087         * sysdeps/i386/i686/multiarch/stpncpy-sse2.S: New file.
46088         * sysdeps/i386/i686/multiarch/stpncpy-ssse3.S: New file.
46089         * sysdeps/i386/i686/multiarch/stpncpy.S : New file.
46090         * sysdeps/i386/i686/multiarch/strcpy-sse2.S : New file.
46091         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: New file.
46092         * sysdeps/i386/i686/multiarch/strcpy.S: New file.
46093         * sysdeps/i386/i686/multiarch/strncpy-c.c: New file.
46094         * sysdeps/i386/i686/multiarch/strncpy-sse2.S: New file.
46095         * sysdeps/i386/i686/multiarch/strncpy-ssse3.S: New file.
46096         * sysdeps/i386/i686/multiarch/strncpy.S: New file.
46097         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
46098         Enable unaligned load optimization for Intel Core i3, i5 and i7
46099         processors.
46100         * sysdeps/x86_64/multiarch/init-arch.h (bit_Fast_Unaligned_Load):
46101         Define.
46102         (index_Fast_Unaligned_Load): Define.
46103         (HAS_FAST_UNALIGNED_LOAD): Define.
46105 2011-06-23  Marek Polacek  <mpolacek@redhat.com>
46107         * nss/nss_db/db-open.c: Include <unistd.h> for read declaration.
46109 2011-06-22  Ulrich Drepper  <drepper@gmail.com>
46111         [BZ #12907]
46112         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Avoid calling __check_pf
46113         until it is clear that the information is realy needed.
46114         Patch mostly by David Hanisch <david.hanisch@nsn.com>.
46116 2011-06-22  Andreas Schwab  <schwab@redhat.com>
46118         * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix last change.
46120 2011-06-22  Ulrich Drepper  <drepper@gmail.com>
46122         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use
46123         /sys/devices/system/cpu/online if it is usable.
46125         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Rate limit
46126         reading the information from the /proc filesystem to once a second.
46128 2011-06-21  Andreas Jaeger  <aj@suse.de>
46130         * sysdeps/unix/sysv/linux/bits/sigcontext.h: Fix definition of
46131         NULL after inclusion of kernel headers.
46133 2011-06-21  Ulrich Drepper  <drepper@gmail.com>
46135         * nss/nss_db/db-XXX.c (nss_db_setENT): Only set entidx for successful
46136         calls to internal_setent.
46138         [BZ #12885]
46139         * sysdeps/posix/getaddrinfo.c (gaih_inet): When looking up only IPv6
46140         addresses using gethostbyname4_r ignore IPv4 addresses.
46142         * sysdeps/posix/getaddrinfo.c (gaih_inet): After the last change the
46143         branch using gethostbyname2 is only for AF_INET.  Optimize accordingly.
46145         * inet/getnetgrent_r.c: Use DL_CALL_FCT in several places.
46147 2011-06-20  David S. Miller  <davem@davemloft.net>
46149         * sysdeps/sparc/sparc32/dl-plt.h: Protect against multiple
46150         inclusions.
46151         * sysdeps/sparc/sparc64/dl-plt.h: Likewise.
46153         * sysdeps/i386/dl-irel.h (elf_ifunc_invoke): New.
46154         (elf_irel): Use it.
46155         * sysdeps/powerpc/powerpc32/dl-irel.h: Likewise.
46156         * sysdeps/powerpc/powerpc64/dl-irel.h: Likewise.
46157         * sysdeps/sparc/sparc32/dl-irel.h: Likewise.
46158         * sysdeps/sparc/sparc64/dl-irel.h: Likewise.
46159         * sysdeps/x86_64/dl-irel.h: Likewise.
46161         * elf/dl-runtime.c: Use elf_ifunc_invoke.
46162         * elf/dl-sym.c: Likewise.
46164 2011-06-15  Ulrich Drepper  <drepper@gmail.com>
46166         * resolv/res_send.c (__libc_res_nsend): Fix typos in last patch.  We
46167         need to dereference resplen2.
46169 2011-06-14  Andreas Schwab  <schwab@redhat.com>
46171         * sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c: New file.
46173 2011-06-15  Ulrich Drepper  <drepper@gmail.com>
46175         * Makeconfig: Define vardbdir and inst_vardbdir.
46176         * nss/Makefile: Add rules to install db-Makefile.
46178         * nss/nss_db/db-XXX.c: Cleanup.
46180         * nss/Makefile (libnss_db-dbs): Add db-initgroups.
46181         * nss/Versions [libnss_db]: Add _nss_db_initgroups_dyn for
46182         GLIBC_PRIVATE.
46183         * nss/db-Makefile (groups.db): Emit entries for initgroups lookups.
46184         * nss/makedb.c: Implement -g option to specify that value strings
46185         are generated and should not be added to table iterated over for
46186         get*ent calls.
46187         * nss/nss_db/db-initgroups.c: New file.
46189         * nss/getent.c: Add support for initgroups lookups through getgrouplist
46190         interface.
46192         * grp/initgroups.c (__nss_initgroups_database): Renamed and exported.
46193         (internal_getgrouplist): Adjust to name change.
46194         Update use_initgroups_entry if this is not the first call.
46195         * nss/databases.def: Add initgroups entry.
46197         * nss/makedb.c (compute_tables): Check result of multiple hash table
46198         sizes to minimize maximum chain length.
46200 2011-06-14  Ulrich Drepper  <drepper@gmail.com>
46202         * Versions.def: Add entry for libnss_db.
46203         * shlib-versions: Likewise.
46204         * nss/Makefile: Add rules to build libnss_db.
46205         * nss/Versions: Add libnss_db information.  Organize libnss_files
46206         entries better.
46207         * nss/db-Makefile: Add gshadow support.  Change rules for the new
46208         makedb progra.  Some minor improvements to generate smaller files.
46209         * nss/nss_db/nss_db.h: Move NSS database header data structures to
46210         here from...
46211         * nss/makedb.c: ...here.
46212         Improve database format to be smaller and require less memory at
46213         runtime.
46214         * nss/nss_db/db-XXX.x: Adjust for new database format.  Don't use
46215         db anymore.
46216         * nss/nss_db/db-netgrp.c: Likewise.
46217         * nss/nss_db/db-open.c: Likewise.
46218         * nss/nss_files/flies-XXX.x: Adjust comments.
46219         * nss/nss_files/files-ethers.c: Adjust for new DB_LOOKUP definition.
46220         * nss/nss_files/files-grp.c: Likewise.
46221         * nss/nss_files/files-hosts.c: Likewise.
46222         * nss/nss_files/files-network.c: Likewise.
46223         * nss/nss_files/files-proto.c: Likewise.
46224         * nss/nss_files/files-pwd.c: Likewise.
46225         * nss/nss_files/files-rpc.c: Likewise.
46226         * nss/nss_files/files-service.c: Likewise.
46227         * nss/nss_files/files-sgrp.c: Likewise.
46228         * nss/nss_files/files-spwd.c: Likewise.
46229         * nss/nss_db/db-alias.c: Removed.
46230         * nss/nss_db/dummy-db.h: Removed.
46232 2011-06-02  Ulrich Drepper  <drepper@gmail.com>
46234         * nss/makedb.c: Rewritten to not use database library.
46235         * nss/Makefile: Update to build new makedb program.
46237 2011-06-14  Andreas Jaeger  <aj@suse.de>
46239         * sysdeps/unix/sysv/linux/check_native.c: Include <string.h> for
46240         memset declaration.
46242 2011-06-10  Andreas Schwab  <schwab@redhat.com>
46244         * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix logic allocating
46245         tmpbuf.
46247 2011-06-10  Roland McGrath  <roland@hack.frob.com>
46249         * Makerules (shlib.lds): Fail if the linker script comes out empty.
46250         * elf/Makefile ($(objpfx)ld.so): Likewise.
46252         * Makefile ($(common-objpfx)linkobj/libc.so): Break long lines with \.
46253         Don't list ld.so twice in dependencies.
46255         * posix/bug-regex31.c: Include <stdlib.h>.
46257         * nscd/hstcache.c (cache_addhst): Remove unused variable.
46259         * nis/nss_compat/compat-spwd.c
46260         (getspent_next_nss_netgr): Remove unused variable.
46261         * nis/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Likewise.
46263         * nis/nis_print_group_entry.c (nis_print_group_entry): Fix "Implicit
46264         nonmembers" output to use the right array.
46266         * resolv/nss_dns/dns-network.c (getanswer_r): Remove unused variable.
46268         * elf/dl-open.c (_dl_open): Quash warnings when DL_NNS==1.
46270         * locale/programs/ld-ctype.c (ctype_read): Remove unused variable.
46271         * locale/programs/ld-collate.c (add_to_tablewc): Likewise.
46272         * catgets/gencat.c (read_input_file): Likewise.
46273         * locale/programs/locarchive.c (enlarge_archive): Likewise.
46275         * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Move DONTBLOCK
46276         variable definition inside #if's controlling its use.
46278         * inet/getnetgrent_r.c (innetgr): Remove unused variable.
46280         * resolv/res_hconf.c (_res_hconf_reorder_addrs): Fix errno restoration.
46282         * misc/syslog.c (__vsyslog_chk): Remove unused variable.
46284         * io/fts.c (fts_build): Use if (0 && ...) rather than #if 0 for
46285         unreachable code.
46287         * stdio-common/printf_fp.c (___printf_fp): Remove unused variable.
46289         * configure.in (nss-crypt check): Use AC_LANG_PROGRAM.
46290         * configure: Regenerated.
46292         * Makerules: Revert last change.
46293         * elf/Makefile: Likewise.
46295 2011-06-09  Roland McGrath  <roland@hack.frob.com>
46297         * Makerules ($(common-objpfx)libc_pic.os): Use -Wl, before -r.
46298         * elf/Makefile ($(objpfx)librtld.os): Likewise.
46299         (reloc-link): Likewise.
46301 2011-06-09  Ulrich Drepper  <drepper@gmail.com>
46303         * elf/Makefile: Add rules to build pldd.
46304         * elf/pldd.c: New file.
46305         * elf/pldd-xx.c: New file.
46307 2011-06-07  Ulrich Drepper  <drepper@gmail.com>
46309         * version.h: Update for 2.15 development version.
46311 2011-06-07  David S. Miller  <davem@davemloft.net>
46313         * sysdeps/sparc/sparc32/dl-irel.h (elf_irela): Pass dl_hwcap to
46314         ifuncs.
46315         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela,
46316         elf_machine_lazy_rel): Likewise.
46317         * sysdeps/sparc/sparc64/dl-irel.h (elf_irela): Likewise.
46318         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela,
46319         elf_machine_lazy_rel): Likewise.
46320         * sysdeps/sparc/sparc64/multiarch/memcpy.S (memcpy): Fetch
46321         dl_hwcap via passed in argument.
46322         * sysdeps/sparc/sparc64/multiarch/memset.S (memset, bzero):
46323         Likewise.
46325 2011-06-06  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
46327         * stdlib/longlong.h: Update from GCC.  Fix smul_ppmm for S/390.
46329 2011-06-06  Roland McGrath  <roland@hack.frob.com>
46331         [BZ #12849]
46332         * manual/fdl-1.1.texi: New file, verbatim from:
46333         http://www.gnu.org/licenses/old-licenses/fdl-1.1.texi
46334         * manual/lgpl-2.1.texi: New file, verbatim from:
46335         http://www.gnu.org/licenses/old-licenses/lgpl-2.1.texi
46336         * manual/Makefile (licenses): New variable, list those new file names.
46337         (texis): Use it.
46338         (chapters.% top-menu.%): Include $(licenses) with $(appendices).
46340         * manual/fdl.texi: File removed.
46341         * manual/lesser.texi: File removed.
46342         * manual/libc.texinfo (Copying, Documentation License):
46343         Use new @include file names, put @appendix directive before @include.
46345 2011-06-04  Jakub Jelinek  <jakub@redhat.com>
46347         [BZ #12841]
46348         * rt/bits/mqueue2.h (__mq_open_2): Add __THROW.
46349         (__mq_open_alias): Use __REDIRECT_NTH instead of __REDIRECT.
46350         (mq_open): Add __NTH.
46352 2011-06-02  H.J. Lu  <hongjiu.lu@intel.com>
46354         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
46355         Assume Intel Core i3/i5/i7 processor if AVX is available.
46357 2011-05-31  Ulrich Drepper  <drepper@gmail.com>
46359         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
46360         typo.
46362 2011-05-31  Andreas Schwab  <schwab@redhat.com>
46364         * nscd/nscd_getserv_r.c (nscd_getserv_r): Don't free non-malloced
46365         memory.  Use alloca_account.  Fix memory leak when retrying.
46367 2011-05-31  Ulrich Drepper  <drepper@gmail.com>
46369         * version.h (RELEASE): Bump for 2.14 release.
46370         * include/features.h (__GLIBC_MINOR__): Bump to 14.
46372         * config.make.in (RANLIB): Remove entry.
46374 2011-05-30  Ulrich Drepper  <drepper@gmail.com>
46376         * po/Makefile (po-sed-cmd): Add ksh to extensions.
46377         (libc.pot): Work around missing support for .ksh extension in xgettext.
46379         [BZ #12684]
46380         * resolv/res_send.c (__libc_res_nsend): Only go to the next name server
46381         if both request failed.
46382         (send_dg): In case of server errors clear resplen or *resplen2.
46384         [BZ #12454]
46385         * elf/dl-deps.c (_dl_map_object_deps): Run initializer sorting only
46386         when there are multiple maps.
46387         * elf/dl-fini.c (_dl_sort_fini): Check for list of one.
46388         (_dl_fini): Remove test here.
46390         * elf/rtld.c (dl_main): Don't allow the loader to load itself.
46392 2011-05-29  Ulrich Drepper  <drepper@gmail.com>
46394         [BZ #12350]
46395         * sysdeps/posix/getaddrinfo.c (gethosts): Restore only RES_USE_IENT6
46396         bit from old_res_options.
46397         (gaih_inet): Likewise.
46399         [BZ #11099]
46400         * shadow/sgetspent_r.c (LINE_PARSER): Interpret numeric field values
46401         as signed.
46403         * resolv/res_init.c (res_setoptions): Make the code more compact.
46405         [BZ #11558]
46406         * resolv/res_init.c (res_setoptions): Recognize use-vc option and
46407         set RES_USEVC.
46409         [BZ #11634]
46410         * elf/Makefile (tests): Don't add tst-audit[67] without working -mavx.
46412         * malloc/malloc.h: Mark malloc hook variables as deprecated.
46414         [BZ #11781]
46415         * malloc/malloc.h: Declare malloc hook variables as volatile.
46417         * locale/programs/locarchive.c (add_locale_to_archive): Fix typo
46418         in last patch.
46420         [BZ #11799]
46421         * sysdeps/unix/sysv/linux/bits/siginfo.h (SI_USER): Don't mention
46422         raise in the comment.
46423         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Likewise.
46424         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
46425         * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h: Likewise.
46427 2011-05-28  Ulrich Drepper  <drepper@gmail.com>
46429         [BZ #12811]
46430         * posix/regex_internal.c (build_wcs_buffer): Don't signal we have to
46431         grow the buffers more if it already has to be sufficient.
46432         (build_wcs_upper_buffer): Likewise.
46433         * posix/regexec.c (check_matching): Likewise.
46434         (clean_state_log_if_needed): Likewise.
46435         (extend_buffers): Don't enlarge buffers beyond size of the input
46436         buffer.
46437         Patches mostly by Emil Wojak <emil@wojak.eu>.
46438         * posix/bug-regex32.c: New file.
46439         * posix/Makefile (tests): Add bug-regex32.
46441         * locale/findlocale.c (_nl_find_locale): Return right away if
46442         _nl_explode_name failed.
46443         * locale/programs/locarchive.c (add_locale_to_archive): Likewise.
46445         * sysdeps/unix/sysv/linux/socketcall.h (SOCKOP_sendmmsg): Define.
46447         * debug/xtrace.sh: Unify messages.
46448         * malloc/memusage.sh: Likewise.
46450         [BZ #12813]
46451         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_time): Retrieve
46452         time symbol from vDSO.  Substitute with vsyscall if not available.
46453         * sysdeps/unix/sysv/linux/x86_64/time.S [SHARED]: Use
46454         __vdso_time.
46456         * sysdeps/unix/sysv/linux/internal_sendmmsg.S: New file.
46457         * sysdeps/unix/sysv/linux/sendmmsg.c: New file.
46458         * sysdeps/unix/sysv/linux/Makefile [subdir=socket] (sysdep_routines):
46459         Add sendmmsg and internal_sendmmsg.
46460         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14]: Add sendmmsg.
46461         * sysdeps/unix/sysv/linux/bits/socket.h: Declare sendmmsg.
46462         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_SENDMMSG.
46464         * sysdeps/unix/sysv/linux/syscalls.list: Add setns entry.
46465         * sysdeps/unix/sysv/linux/bits/sched.h: Declare setns.
46466         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14]: Add setns.
46468 2011-05-27  Ulrich Drepper  <drepper@gmail.com>
46470         [BZ #12813]
46471         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_getcpu):
46472         Retrieve getcpu symbol from vDSO.  Substitute with vsyscall if not
46473         available.
46474         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S [SHARED]: Use
46475         __vdso_getcpu.
46477         [BZ #12814]
46478         * iconvdata/Makefile (tests): Add bug-iconv9.
46479         * iconvdata/bug-iconv9.c: New file.
46481 2011-05-27  Andreas Schwab  <schwab@redhat.com>
46483         [BZ #12814]
46484         * iconvdata/iso-2022-jp.c (BODY): Fix invalid variable shadowing.
46486 2011-05-25  Jakub Jelinek  <jakub@redhat.com>
46488         * sysdeps/unix/sysv/linux/x86_64/sys/user.h
46489         (struct user_regs_struct): Change intcs field back to cs.
46491 2011-05-25  Ulrich Drepper  <drepper@gmail.com>
46493         * po/ja.po: Update from translation team.
46495 2011-05-23  Ulrich Drepper  <drepper@gmail.com>
46497         [BZ #12795]
46498         * sysdeps/unix/sysv/linux/bits/resource.h (RLIMIT_RTTIME): Define.
46499         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
46501 2011-05-20  Andreas Schwab  <schwab@redhat.com>
46503         * stdlib/longlong.h: Update from GCC.
46505 2011-05-23  Andreas Schwab  <schwab@redhat.com>
46507         * sysdeps/unix/sysv/linux/ia64/sysconf.c (HAS_CPUCLOCK): Add
46508         parameter name.
46509         * sysdeps/unix/sysv/linux/sysconf.c (has_cpuclock, HAS_CPUCLOCK):
46510         Add parameter name.
46511         (__sysconf): Pass it down.
46513 2011-05-22  Ulrich Drepper  <drepper@gmail.com>
46515         [BZ #12671]
46516         * nis/nss_nis/nis-alias.c (_nss_nis_getaliasbyname_r): Use malloc in
46517         some situations.
46518         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
46519         * posix/glob.c (glob_in_dir): Take additional parameter alloca_used.
46520         add in in __libc_use_alloca calls.  Adjust callers.
46521         (glob): Use malloc in some situations.
46523         * elf/dl-runtime.c (_dl_profile_fixup): Also store LA_SYMB_NOPLTENTER
46524         and LA_SYMB_NOPLTEXIT in flags which are passed to pltenter and
46525         pltexit.
46527 2011-05-21  Ulrich Drepper  <drepper@gmail.com>
46529         * sysdeps/unix/sysv/linux/bits/time.h: Define CLOCK_REALTIME_ALARM
46530         and CLOCK_BOOTTIME_ALARM.
46532         [BZ #12782]
46533         * string/xpg-strerror.c (__xpg_strerror_r): Fill buffer even if error
46534         is returned.
46536         * string/_strerror.c (__strerror_r): Print negative errors as signed
46537         numbers.
46539         [BZ #12777]
46540         * iconvdata/cp1258.c (comp_table_data): Remove entry 0x00A5 0xEC.
46541         (decomp_table): Change U0385 entry to emit 0xA5 0xEC.
46542         * iconvdata/CP1258.irreversible: Adjust entry 0xA8EC.
46544         * configure.in: Fix typo in redirection and correct removal of test
46545         files in two cases.
46547         [BZ #12788]
46548         * locale/setlocale.c (new_composite_name): Fix test to check for
46549         identical name of all categories.
46551         [BZ #12792]
46552         * libio/filedoalloc.c (local_isatty): New function.
46553         (_IO_file_doallocate): Use local_isatty.
46554         * stdio-common/perror.c (perror): In case a new stream is used
46555         forward the stream error.
46556         * stdio-common/vfprintf.c (ARGCHECK): For read-only streams also set
46557         error flag.
46559 2011-05-20  Ulrich Drepper  <drepper@gmail.com>
46561         [BZ #11869]
46562         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't unconditionally use
46563         alloca.
46564         * include/alloca.h (extend_alloca_account): Define.
46566         [BZ #11857]
46567         * posix/regex.h: Fix comments with documentation of user-accessible
46568         fields after compilation and describe correct free'ing of pattern
46569         after re_compile_pattern.
46570         Patch by Reuben Thomas <rrt@sc3d.org>.
46572 2011-05-18  Ryan S. Arnold  <rsa@us.ibm.com>
46574         * sysdeps/powerpc/powerpc64/Makefile (no-special-regs): Add -mno-vsx
46575         and -mno-altivec to prevent the compiler from using Altivec and/or
46576         VSX instructions when the corresponding registers are not available.
46578 2011-05-19  Andreas Schwab  <schwab@redhat.com>
46580         * grp/compat-initgroups.c (__libc_use_alloca): Don't define.
46582 2011-05-19  Ulrich Drepper  <drepper@gmail.com>
46584         * libio/freopen.c (freopen): Use __dup2, not dup2.
46585         * libio/freopen64.c (freopen64): Likewise.
46587 2011-05-17  H.J. Lu  <hongjiu.lu@intel.com>
46589         [BZ #12775]
46590         * sysdeps/x86_64/fpu/e_powl.S: Fix a typo.
46591         * math/Makefile (tests): Add test-powl.
46592         (CFLAGS-test-powl.c): Define.
46593         * math/test-powl.c: New file.
46595 2011-05-16  H.J. Lu  <hongjiu.lu@intel.com>
46597         * fileops.c (_IO_new_file_fopen): Get fd from _IO_fileno.
46599 2011-05-17  Ulrich Drepper  <drepper@gmail.com>
46601         [BZ #11837]
46602         * iconvdata/gb18030.c: Update to GB18020-2005.
46604 2011-05-16  Ulrich Drepper  <drepper@gmail.com>
46606         * posix/regex.h (RE_SYNTAX_AWK, RE_SYNTAX_GNU_AWK,
46607         RE_SYNTAX_POSIX_AWK): Update to match recent development.
46608         Patch by Aharon Robbins <arnold@skeeve.com>.
46610         [BZ #11892]
46611         * stdlib/putenv.c (putenv): Don't always create copy of the variable
46612         on the stack.
46614         [BZ #11895]
46615         * misc/pselect.c (__pselect): Handle timeout value errors hidden
46616         through underflows.
46618         [BZ #12766]
46619         * misc/error.c (error_at_line): Ensure file_name and old_file_name
46620         point to strings before performing equality test for error_one_per_line
46621         mode.
46623         [BZ #11697]
46624         * login/programs/pt_chown.c (do_pt_chown): Always call chown.
46626         [BZ #11820]
46627         * sysdeps/unix/sysv/linux/x86_64/sys/user.h
46628         (struct user_fpregs_struct): Avoid __uint*_t types.
46630         [BZ #6420]
46631         * malloc/mtrace.c (tr_where): Add additional parameter to point to
46632         symbol info.  Use it instead of calling _dl_addr locally.
46633         (lock_and_info): New function.
46634         (tr_freehook): Call lock_and_info and pass symbol info as additional
46635         parameter to tr_where.
46636         (tr_mallochook): Likewise.
46637         (tr_reallochook): Likewise.
46638         (tr_memalignhook): Likewise.
46640         * malloc/mtrace.c: Remove support for USE_MTRACE_FILE.  It is not
46641         used and couldn't be at all thread-safe.
46643 2011-05-15  Ulrich Drepper  <drepper@gmail.com>
46645         * libio/freopen.c (freopen): Don't close old file descriptor
46646         before the new one is opened.  Instead dup the new file descriptor
46647         to the old one after the new stream is created.
46648         * libio/freopen64.c (freopen64): Likewise.
46649         * libio/libio.h: Define _IO_FLAGS2_NOCLOSE and _IO_FLAGS2_CLOEXEC.
46650         * libio/fileops.c (_IO_new_file_close_it): Handle new
46651         _IO_FLAGS2_NOCLOSE flag.
46652         (_IO_new_file_fopen): Set _IO_FLAGS2_CLOEXEC for "e" mode.
46653         If _IO_file_open didn't set FD_CLOEXEC do it after the call.
46654         * libio/oldfileops.c (_IO_old_file_close_it): Handle new
46655         _IO_FLAGS2_NOCLOSE flag.
46656         * include/unistd.h: Add hidden_proto for dup3.
46657         Define __have_dup3.
46658         * io/dup3.c: Define hidden symbol.
46659         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_DUP3.
46661         [BZ #7101]
46662         * posix/getopt.c (_getopt_internal_r): List all ambigious possibilities
46663         when an incomplete long option is used.
46664         * posix/tst-getopt_long1.c: New file.
46665         * posix/Makefile (tests): Add tst-getopt_long1.
46667         [BZ #10138]
46668         * scripts/config.guess: Update from autoconf-2.68.
46669         * scripts/config.sub: Likewise.
46671         [BZ #10157]
46672         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Split out CPUTIME
46673         tests into ...
46674         (has_cpuclock): ...this.  New function.
46675         * sysdeps/unix/sysv/linux/ia64/sysconf.c: Just define HAS_CPUCLOCK
46676         macro here based on has_cpuclock code.
46678         [BZ #10149]
46679         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
46680         First byte (not low byte) is now always NUL.
46681         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Likewise.
46683         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
46684         Use non-cancelable interfaces.
46686         [BZ #9809]
46687         * locale/iso-639.def: Add entry for Sorani.
46689         [BZ #11901]
46690         * include/stdlib.h: Move include protection to the right place.
46691         Define abort_msg_s.  Declare __abort_msg with it.
46692         * stdlib/abort.c (__abort_msg): Adjust type.
46693         * assert/assert.c (__assert_fail_base): New function.  Majority
46694         of code from __assert_fail.  Allocate memory for __abort_msg with
46695         mmap.
46696         (__assert_fail): Now call __assert_fail_base.
46697         * assert/assert-perr.c: Remove bulk of implementation.  Use
46698         __assert_fail_base.
46699         * include/assert.hL Declare __assert_fail_base.
46700         * sysdeps/posix/libc_fatal.c: Allocate memory for __abort_msg with
46701         mmap.
46702         * sysdeps/unix/sysv/linux/libc_fatal.c: Likewise.
46704 2011-05-14  Ulrich Drepper  <drepper@gmail.com>
46706         [BZ #11952]
46707         [BZ #12453]
46708         * elf/dl-open.c (dl_open_worker): Delay calls to _dl_update_slotinfo
46709         until all modules are registered in the DTV.
46710         * elf/Makefile: Add rules to build and run tst-tls19.
46711         * elf/tst-tls19.c: New file.
46712         * elf/tst-tls19mod1.c: New file.
46713         * elf/tst-tls19mod2.c: New file.
46714         * elf/tst-tls19mod3.c: New file.
46715         Patch mostly by Martin von Gagern <Martin.vGagern@gmx.net>.
46717         [BZ #12083]
46718         * sysdeps/pthread/aio_misc.c (__aio_init): Compute optim.aio_num
46719         correctly.
46721         [BZ #12601]
46722         * iconvdata/cp932.c (BODY to UCS4): Fix incrementing inptr in case of
46723         two-byte sequence errors.
46724         * iconvdata/Makefile (tests): Add bug-iconv8.
46725         * iconvdata/bug-iconv8.c: New file.
46727         [BZ #12626]
46728         * sysdeps/generic/elf/backtracesymsfd.c (__backtrace_symbols_fd): Move
46729         buf2 definition.
46731         * libio/fileops.c (_IO_new_file_close_it): Initialize write_status.
46733         [BZ #12432]
46734         * sysdeps/ia64/backtrace.c (struct trace_reg): Add cfa element.
46735         (dummy_getcfa): New function.
46736         (init): Get _Unwind_GetCFA address, use dummy if not found.
46737         (backtrace_helper): In recursion check, also check whether CFA changes.
46738         (__backtrace): Completely initialize arg.
46740         * iconv/loop.c (SINGLE) [STORE_REST]: Add input bytes to bytebuf before
46741         storing incomplete byte sequence in state object.  Avoid testing for
46742         guaranteed too small input if we know there is enough data available.
46744 2011-05-11  Andreas Schwab  <schwab@redhat.com>
46746         * Makeconfig (+link-pie): Indent.
46747         * Rules (binaries-pie): Define if $(have-fpie) and
46748         $(build-shared).
46749         (binaries-shared): Also filter out $(binaries-pie).
46750         ($(addprefix $(objpfx),$(binaries-pie))): New rule.
46751         * nscd/Makefile (others-pie): Add nscd.
46752         (LDFLAGS-nscd): Set this instead of relro-LDFLAGS.
46753         ($(objpfx)nscd): Remove command override.
46754         * login/Makefile (others-pie): Add pt_chown.
46755         ($(objpfx)pt_chown): Remove command override.
46756         * elf/Makefile: Add PIE tests to tests and tests-pie variables and
46757         remove command overrides.
46759 2011-05-13  Ulrich Drepper  <drepper@gmail.com>
46761         * libio/tst_putwc.c: Fix error messages.
46763         [BZ #12724]
46764         * libio/fileops.c (_IO_new_file_close_it): Always flush when
46765         currently writing and seek to current position when not.
46766         * libio/Makefile (tests): Add bug-fclose1.
46767         * libio/bug-fclose1.c: New file.
46769 2011-05-12  Ulrich Drepper  <drepper@gmail.com>
46771         [BZ #12511]
46772         * elf/dl-lookup.c (enter): Don't test for copy relocation here and
46773         don't set DF_1_NODELETE here.
46774         (do_lookup_x): When entering new entry test for copy relocation
46775         and if necessary set DF_1_NODELETE flag.
46776         * elf/tst-unique4.cc: New file.
46777         * elf/tst-unique4.h: New file.
46778         * elf/tst-unique4lib.cc: New file.
46779         * elf/Makefile: Add rules to build and run tst-unique4.
46780         Patch by Piotr Bury <pbury@goahead.com>.
46782 2011-05-11  Ulrich Drepper  <drepper@gmail.com>
46784         [BZ #12052]
46785         * sysdeps/posix/spawni.c (__spawni): Fix sched_setscheduler call.
46787         [BZ #12625]
46788         * misc/mntent_r.c (addmntent): Flush the stream after the output
46790         [BZ #12393]
46791         * elf/dl-load.c (is_trusted_path): Remove unnecessary test.
46792         (is_trusted_path_normalize): Skip initial colon.  Append slash
46793         to empty buffer.  Duplicate is_trusted_path code but allow
46794         constructed patch to be prefix.
46795         (is_dst): Allow $ORIGIN followed by /.
46796         (_dl_dst_substitute): Correct clearing of check_for_trusted.
46797         Correct testing of result of is_trusted_path_normalize
46798         (decompose_rpath): Fix warning.
46800 2011-05-10  Ulrich Drepper  <drepper@gmail.com>
46802         [BZ #11257]
46803         * grp/initgroups.c (internal_getgrouplist): When we found the service
46804         list through the initgroups entry in nsswitch.conf do not always
46805         continue on a successful lookup.  Don't always use the
46806         __nss_group_database value if it is set.
46807         * nss/nsswitch.conf (initgroups): Change action for successful db
46808         lookup to continue for compatibility.
46810 2011-05-09  Ulrich Drepper  <drepper@gmail.com>
46812         [BZ #11532]
46813         * iconvdata/Makefile: Add rules to build CP770, CP771, CP772, CP773,
46814         and CP774 modules.
46815         * iconvdata/gconv-modules: Add entries for CP770, CP771, CP772, CP773,
46816         and CP774 modules.
46817         * iconvdata/tst-tables.sh: Likewise.
46818         * iconvdata/cp770.c: New file.
46819         * iconvdata/cp771.c: New file.
46820         * iconvdata/cp772.c: New file.
46821         * iconvdata/cp773.c: New file.
46822         * iconvdata/cp774.c: New file.
46823         * iconvdata/testdata/CP770: New file.
46824         * iconvdata/testdata/CP770..UTF8: New file.
46825         * iconvdata/testdata/CP771: New file.
46826         * iconvdata/testdata/CP771..UTF8: New file.
46827         * iconvdata/testdata/CP772: New file.
46828         * iconvdata/testdata/CP772..UTF8: New file.
46829         * iconvdata/testdata/CP773: New file.
46830         * iconvdata/testdata/CP773..UTF8: New file.
46831         * iconvdata/testdata/CP774: New file.
46832         * iconvdata/testdata/CP774..UTF8: New file.
46834         * iconvdata/gen-8bit-gap-1.sh: End reading of charmap file at
46835         END CHARMAP line.
46836         * iconvdata/gen-8bit-gap.sh: Likewise.
46837         * iconvdata/gen-8bit.sh: Likewise.
46839         * locale/iso-639.def: Add ary entry.
46841         [BZ #11258]
46842         * locale/C-translit.h.in: Add U20A1 transliteration.
46844         [BZ #12178]
46845         * locale/iso-639.def: Add wae entry.
46846         Patch by Kevin Bortis <bortis@translate-wae.ch>.
46848         [BZ #12545]
46849         * locale/programs/localedef.c (construct_output_path): Use ssize_t
46850         for n.
46852         [BZ #12711]
46853         * locale/C-translit.h.in: Add entry for U20B9.
46854         Patch by pravin.d.s@gmail.com.
46856 2011-05-08  Ulrich Drepper  <drepper@gmail.com>
46858         [BZ #12713]
46859         * sysdeps/unix/sysv/linux/getcwd.c: If getcwd syscall report
46860         ENAMETOOLONG use generic getcwd.
46861         * sysdeps/posix/getcwd.c: Add support to use openat.  Make usable
46862         in rtld.  Use *stat64.
46863         * sysdeps/unix/sysv/linux/Makefile [subdir=elf] (sysdep-rtld-routines):
46864         Add dl-getcwd, dl-openat64, dl-opendir, dl-fxstatat64.
46865         * sysdeps/unix/sysv/linux/dl-getcwd.c: New file.
46866         * sysdeps/unix/sysv/linux/dl-openat64.c: New file.
46867         * sysdeps/unix/sysv/linux/dl-opendir.c: New file.
46868         * sysdeps/unix/sysv/linux/dl-fxstat64.c: New file.
46869         * include/sys/stat.h: Define __fstatat, __lstat64, __fstat64, and
46870         __fstatat64 macros.
46871         * include/dirent.h: Add libc_hidden_proto for rewinddir.
46872         * dirent/rewinddir.c: Add libc_hidden_def.
46873         * sysdeps/mach/hurd/rewinddir.c: Likewise.
46874         * sysdeps/unix/rewinddir.c: Likewise.  Don't do locking outside libc.
46876         * include/dirent.h (__alloc_dir): Add flags parameter.
46877         * sysdeps/unix/fdopendir.c (__fdopendir): Pass flags to __alloc_dir.
46878         * sysdeps/unix/opendir.c (__opendir): Pass 0 in new parameter to
46879         __alloc_dir.
46880         (__alloc_dir): Take new parameter.  Don't call fcntl for invocations
46881         from fdopendir if O_CLOEXEC is already set.
46883 2011-03-15  Alan Modra  <amodra@gmail.com>
46885         * elf/dl-reloc.c (_dl_try_allocate_static_tls <TLS_DTV_AT_TP>): Handle
46886         l_tls_firstbyte_offset non-zero.  Save padding offset in
46887         l_tls_firstbyte_offset for later use.
46888         * elf/dl-close.c (_dl_close_worker <TLS_DTV_AT_TP>): Correct code
46889         freeing static tls block.
46891 2011-03-05  Jonathan Nieder  <jrnieder@gmail.com>
46893         * sysdeps/unix/sysv/linux/sys/param.h: Fix an #ifndef __undef_ARG_MAX
46894         where #ifdef was intended.  The intent is to prevent ARG_MAX from
46895         being defined by the kernel headers.
46897 2011-05-07  Ulrich Drepper  <drepper@gmail.com>
46899         [BZ #12734]
46900         * resolv/resolv.h: Define RES_NOTLDQUERY.
46901         * resolv/res_init.c (res_setoptions): Recognize no_tld_query and
46902         no-tld-query and set RES_NOTLDQUERY.
46903         * resolv/res_debug.c (p_option): Handle RES_NOTLDQUERY.
46904         * resolv/res_query.c (__libc_res_nsearch): Backport changes from
46905         modern BIND to search name as TLD unless forbidden.
46907 2011-05-07  Petr Baudis  <pasky@suse.cz>
46908             Ulrich Drepper  <drepper@gmail.com>
46910         [BZ #12393]
46911         * elf/dl-load.c (fillin_rpath): Move trusted path check...
46912         (is_trusted_path): ...to here.
46913         (is_trusted_path_normalize): Wrapper for /../ and /./ normalization.
46914         (_dl_dst_substitute): Verify expanded $ORIGIN path elements
46915         using is_trusted_path_normalize() in setuid scripts.
46917 2011-05-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
46919         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Add missing
46920         __BEGIN/__END_DECLS.
46922 2011-05-06  Ulrich Drepper  <drepper@gmail.com>
46924         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Return
46925         NSS_STATUS_NOTFOUND if no record was found.
46927 2011-05-05  Andreas Schwab  <schwab@redhat.com>
46929         * sunrpc/Makefile (headers): Add rpc/netdb.h.
46930         (headers-not-in-tirpc): Remove rpc/netdb.h
46931         * resolv/netdb.h: Revert last change.
46933 2011-05-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
46935         * Makeconfig (link-libc-static): Use --{start,end}-group to handle
46936         circular dependency between libgcc.a and libc.a.
46938 2011-05-05  Andreas Schwab  <schwab@redhat.com>
46940         * resolv/netdb.h: Don't include <rpc/netdb.h>.
46941         * nis/Makefile: Don't install rpcsvc/*.
46942         * inet/protocols/timed.h: Include <sys/types.h> and <sys/time.h>
46943         instead of <rpc/types.h>.
46944         (MAXHOSTNAMELEN): Define.
46946 2011-05-03  Andreas Schwab  <schwab@redhat.com>
46948         * elf/ldconfig.c (add_dir): Don't crash on empty path.
46950 2011-04-28  Maciej Babinski  <mbabinski@google.com>
46952         [BZ #12714]
46953         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't bypass
46954         gethostbyname4_r when IPv6 results are possible.
46956 2011-05-02  Ulrich Drepper  <drepper@gmail.com>
46958         [BZ #12723]
46959         * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Implement
46960         _PC_PIPE_BUF handling.
46962 2011-04-30  Bruno Haible  <bruno@clisp.org>
46964         [BZ #12717]
46965         * conform/data/netdb.h-data (getnameinfo): Make POSIX compliant.
46966         * resolv/netdb.h (getnameinfo): Change type of flags parameter
46967         to 'int'.
46968         * inet/getnameinfo.c (getnameinfo): Likewise.
46970 2011-04-29  Ulrich Drepper  <drepper@gmail.com>
46972         * grp/initgroups.c (internal_getgrouplist): Prefer initgroups setting
46973         to groups setting in database lookup.
46974         * nss/nsswitch.conf: Add initgroups entry.
46976 2011-04-22  Ulrich Drepper  <drepper@gmail.com>
46978         [BZ #12685]
46979         * libio/fileops.c (_IO_new_file_fopen): Scan up to 7 bytes of the
46980         mode string.
46981         Patch by Eric Blake <eblake@redhat.com>.
46983 2011-04-20  H.J. Lu  <hongjiu.lu@intel.com>
46985         * sunrpc/Makefile (need-export-routines): Add svc_run.
46986         (routines): Remove svc_run.
46987         ($(objpfx)thrsvc): Add $(common-objpfx)linkobj/libc.so.
46988         * sunrpc/clnt_perr.c (clnt_perrno): Export.
46989         * sunrpc/svc_run.c (svc_run): Likewise.
46990         * sunrpc/svc_udp.c (svcudp_create): Likewise.
46992 2011-04-21  Ulrich Drepper  <drepper@gmail.com>
46994         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Fix
46995         problem in reallocation in last patch.
46997 2011-04-20  Ulrich Drepper  <drepper@gmail.com>
46999         * sunrpc/Makefile: Move inclusion of Rules.
47001 2011-04-19  Ulrich Drepper  <drepper@gmail.com>
47003         * nss/nss_files/files-initgroups.c: New file.
47004         * nss/Makefile (libnss_files-routines): Add files-initgroups.
47005         * nss/Versions (libnss_files) [GLIBC_PRIVATE]: Export
47006         _nss_files_initgroups_dyn.
47008 2011-03-31  Richard Sandiford  <richard.sandiford@linaro.org>
47010         * elf/elf.h (R_ARM_IRELATIVE): Define.
47012 2011-04-19  Ulrich Drepper  <drepper@gmail.com>
47014         * po/ru.po: Update from translation team.
47016 2011-04-17  Ulrich Drepper  <drepper@gmail.com>
47018         * sunrpc/Makefile ($(rpc-compat-routines.os)): Add before-compile to
47019         dependencies.
47021 2011-02-06  Mike Frysinger  <vapier@gentoo.org>
47023         [BZ #12653]
47024         * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Only protect
47025         MEMCPY_CHK with USE_AS_BCOPY ifdef check.
47026         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
47027         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
47028         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
47030 2011-03-28  Andreas Schwab  <schwab@linux-m68k.org>
47032         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Don't read past
47033         differing bytes.
47034         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
47035         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
47036         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
47038 2011-04-17  Ulrich Drepper  <drepper@gmail.com>
47040         [BZ #12420]
47041         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Reload context after
47042         storing it.
47043         * stdlib/bug-getcontext.c: New file.
47044         * stdlib/Makefile: Add rules to build and run bug-getcontext.
47046 2011-04-13  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
47048         * sysdeps/s390/s390-64/utf16-utf32-z9.c: Wrap the z9-109
47049         instructions into .machine "z9-109".
47050         * sysdeps/s390/s390-64/utf8-utf16-z9.c: Likewise.
47051         * sysdeps/s390/s390-64/utf8-utf32-z9.c: Likewise.
47053 2011-04-11  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
47055         * sysdeps/s390/s390-32/elf/start.S (_start): Skip extra zeroes
47056         between environment variables and auxiliary vector.
47058 2011-04-16  Ulrich Drepper  <drepper@gmail.com>
47060         * Makefile: Add rules to build linkobj/libc.so.
47061         * include/libc-symbols.h: Define libc_hidden_nolink.
47062         * include/rpc/auth.h: Mark functions which are to be hidden.
47063         * include/rpc/auth_des.h: Likewise.
47064         * include/rpc/auth_unix.h: Likewise.
47065         * include/rpc/clnt.h: Likewise.
47066         * include/rpc/des_crypt.h: Likewise.
47067         * include/rpc/key_prot.h: Likewise.
47068         * include/rpc/pmap_clnt.h: Likewise.
47069         * include/rpc/pmap_prot.h: Likewise.
47070         * include/rpc/pmap_rmt.h: Likewise.
47071         * include/rpc/rpc_msg.h: Likewise.
47072         * include/rpc/svc.h: Likewise.
47073         * include/rpc/svc_auth.h: Likewise.
47074         * include/rpc/xdr.h: Likewise.
47075         * nis/Makefile: Link all DSOs against linkobj/libc.so.
47076         * nss/Makefile: Likewise.
47077         * sunrpc/Makefile: Don't install headers.  Build library with normal
47078         entry points.  Don't build rpcinfo.  Link RPC tests appropriately.
47079         * sunrpc/auth_des.c: Hide exported symbols by default, export some
47080         for the compat linking library.  Remove use of INTDEF/INTUSE.
47081         * sunrpc/auth_none.c: Likewise.
47082         * sunrpc/auth_unix.c: Likewise.
47083         * sunrpc/authdes_prot.c: Likewise.
47084         * sunrpc/authuxprot.c: Likewise.
47085         * sunrpc/clnt_gen.c: Likewise.
47086         * sunrpc/clnt_perr.c: Likewise.
47087         * sunrpc/clnt_raw.c: Likewise.
47088         * sunrpc/clnt_simp.c: Likewise.
47089         * sunrpc/clnt_tcp.c: Likewise.
47090         * sunrpc/clnt_udp.c: Likewise.
47091         * sunrpc/clnt_unix.c: Likewise.
47092         * sunrpc/des_crypt.c: Likewise.
47093         * sunrpc/des_soft.c: Likewise.
47094         * sunrpc/get_myaddr.c: Likewise.
47095         * sunrpc/key_call.c: Likewise.
47096         * sunrpc/key_prot.c: Likewise.
47097         * sunrpc/netname.c: Likewise.
47098         * sunrpc/pm_getmaps.c: Likewise.
47099         * sunrpc/pm_getport.c: Likewise.
47100         * sunrpc/pmap_clnt.c: Likewise.
47101         * sunrpc/pmap_prot.c: Likewise.
47102         * sunrpc/pmap_prot2.c: Likewise.
47103         * sunrpc/pmap_rmt.c: Likewise.
47104         * sunrpc/publickey.c: Likewise.
47105         * sunrpc/rpc_cmsg.c: Likewise.
47106         * sunrpc/rpc_common.c: Likewise.
47107         * sunrpc/rpc_dtable.c: Likewise.
47108         * sunrpc/rpc_prot.c: Likewise.
47109         * sunrpc/rpc_thread.c: Likewise.
47110         * sunrpc/rtime.c: Likewise.
47111         * sunrpc/svc.c: Likewise.
47112         * sunrpc/svc_auth.c: Likewise.
47113         * sunrpc/svc_authux.c: Likewise.
47114         * sunrpc/svc_raw.c: Likewise.
47115         * sunrpc/svc_run.c: Likewise.
47116         * sunrpc/svc_simple.c: Likewise.
47117         * sunrpc/svc_tcp.c: Likewise.
47118         * sunrpc/svc_udp.c: Likewise.
47119         * sunrpc/svc_unix.c: Likewise.
47120         * sunrpc/svcauth_des.c: Likewise.
47121         * sunrpc/xcrypt.c: Likewise.
47122         * sunrpc/xdr.c: Likewise.
47123         * sunrpc/xdr_array.c: Likewise.
47124         * sunrpc/xdr_float.c: Likewise.
47125         * sunrpc/xdr_intXX_t.c: Likewise.
47126         * sunrpc/xdr_mem.c: Likewise.
47127         * sunrpc/xdr_rec.c: Likewise.
47128         * sunrpc/xdr_ref.c: Likewise.
47129         * sunrpc/xdr_sizeof.c: Likewise.
47130         * sunrpc/xdr_stdio.c: Likewise.
47132 2011-04-10  Ulrich Drepper  <drepper@gmail.com>
47134         [BZ #12650]
47135         * sysdeps/i386/dl-tls.h: Define TLS_DTV_UNALLOCATED.
47136         * sysdeps/ia64/dl-tls.h: Likewise.
47137         * sysdeps/powerpc/dl-tls.h: Likewise.
47138         * sysdeps/s390/dl-tls.h: Likewise.
47139         * sysdeps/sh/dl-tls.h: Likewise.
47140         * sysdeps/sparc/dl-tls.h: Likewise.
47141         * sysdeps/x86_64/dl-tls.h: Likewise.
47142         * elf/dl-tls.c: Don't define TLS_DTV_UNALLOCATED here.
47144 2011-03-14  Andreas Schwab  <schwab@redhat.com>
47146         * elf/dl-load.c (_dl_dst_substitute): When skipping the first
47147         rpath element also skip the following colon.
47148         (expand_dynamic_string_token): Add is_path parameter and pass
47149         down to DL_DST_REQUIRED and _dl_dst_substitute.
47150         (decompose_rpath): Call expand_dynamic_string_token with
47151         non-zero is_path.  Ignore empty rpaths.
47152         (_dl_map_object_from_fd): Call expand_dynamic_string_token
47153         with zero is_path.
47155 2011-04-08  Andreas Schwab  <schwab@linux-m68k.org>
47157         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c:
47158         Make cancelable.
47160 2011-04-09  Ulrich Drepper  <drepper@gmail.com>
47162         [BZ #12655]
47163         * sysdeps/unix/sysv/linux/sys/syscall.h: Fix comment.
47164         Patch by Filipe David Manana <fdmanana@apache.org>.
47166 2011-04-07  Andreas Schwab  <schwab@redhat.com>
47168         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S (CALL_FAIL):
47169         Maintain aligned stack.
47170         (CHECK_RSP): Remove unused macro.
47172 2011-04-03  Ulrich Drepper  <drepper@gmail.com>
47174         * sysdeps/x86_64/cacheinfo.c (intel_02_known): Fix typo in table.
47175         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
47177 2011-04-02  Ulrich Drepper  <drepper@gmail.com>
47179         * sysdeps/unix/sysv/linux/bits/time.h (CLOCK_BOOTTIME): Define.
47181         * include/features.h: Mention __USE_XOPEN2K8 in comment.
47183 2011-03-26  H.J. Lu  <hongjiu.lu@intel.com>
47185         [BZ #12518]
47186         * sysdeps/x86_64/Versions: Add memcpy to GLIBC_2.14.
47187         * sysdeps/x86_64/memcpy.S: Provide GLIBC_2_14 memcpy.
47188         * sysdeps/x86_64/memmove.c: New file.
47189         * sysdeps/x86_64/multiarch/memcpy.S: Include <shlib-compat.h>.
47190         (memcpy): Renamed to ...
47191         (__new_memcpy): This.
47192         (memcpy): Provide GLIBC_2_14 memcpy.
47193         * sysdeps/x86_64/multiarch/memmove.c: Include <shlib-compat.h>.
47194         (memcpy): Provide GLIBC_2_2_5 memcpy.
47196 2011-04-01  Ulrich Drepper  <drepper@gmail.com>
47198         [BZ #12631]
47199         * wcsmbs/wchar.h: Make wcpcpy and wcpncpy visible for __USE_XOPEN2K8.
47201 2011-03-30  Andreas Schwab  <schwab@redhat.com>
47203         * misc/syncfs.c: New file.
47204         * misc/Makefile (routines): Add syncfs.
47205         * posix/unistd.h: Declare syncfs.
47206         * sysdeps/unix/syscalls.list: Add syncfs.
47208 2011-04-01  Andreas Schwab  <schwab@redhat.com>
47210         * sysdeps/unix/sysv/linux/Versions: Rename open_by_handle to
47211         open_by_handle_at.
47212         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
47213         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
47214         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
47215         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
47216         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
47217         * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
47218         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
47220 2011-04-01  Ulrich Drepper  <drepper@gmail.com>
47222         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define O_PATH.
47223         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
47224         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
47225         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
47226         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
47227         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
47228         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
47230         * io/Makefile: Compile fallocate.c, fallocate64.c, and
47231         sync_file_range.c with -fexceptions.
47232         * sysdeps/unix/sysv/linux/fallocate.c: Make cancelable.
47233         * sysdeps/unix/sysv/linux/fallocate64.c: Likewise.
47234         * sysdeps/unix/sysv/linux/i386/fallocate.c: Likewise.
47235         * sysdeps/unix/sysv/linux/i386/fallocate64.c: Likewise.
47236         * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: Likewise.
47237         * sysdeps/unix/sysv/linux/sync_file_range.c: Likewise.
47238         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Mark
47239         sync_file_range as cancellation point
47240         * sysdeps/unix/sysv/linux/i386/sync_file_range.c: New file.  This is
47241         now a wrapper around __call_sync_file_range with cancellation handling.
47242         * sysdeps/unix/sysv/linux/i386/sync_file_range.S: Renamed to ...
47243         * sysdeps/unix/sysv/linux/i386/call_sync_file_range.S: ...this.  Change
47244         function name to __call_sync_file_range.
47245         * sysdeps/unix/sysv/linux/i386/Makefile [subdir=io] (sysdep_routines):
47246         Add call_sync_file_range.
47248 2011-04-01  Andreas Schwab  <schwab@redhat.com>
47250         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
47251         bits/timex.h.
47253 2011-04-01  Ulrich Drepper  <drepper@gmail.com>
47255         * iconv/iconv.h: Fix typo in comment.
47256         * io/fcntl.h: Likewise.
47257         * libio/stdio.h: Likewise.
47258         * posix/spawn.h: Likewise.
47259         * posix/unistd.h: Likewise.
47260         * stdlib/stdlib.h: Likewise.
47261         * time/time.h: Likewise.
47262         * wcsmbs/wchar.h: Likewise.
47264         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14] (name_to_handle_at,
47265         open_by_handle): Add.
47266         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define struct file_handle
47267         and MAX_HANDLE_SZ.  Declare name_to_handle_at and open_by_handle.
47268         Augment a few comments.
47269         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
47270         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
47271         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
47272         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
47273         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
47274         * sysdeps/unix/sysv/linux/syscalls.list: Add name_to_handle_at and
47275         open_by_handle.
47277         * io/fcntl.h (AT_EMPTY_PATH): Define.
47279 2011-03-30  Ulrich Drepper  <drepper@gmail.com>
47281         * sysdeps/unix/sysv/linux/syscalls.list: Add clock_adjtime.
47282         * sysdeps/unix/sysv/linux/bits/time.h: New file.
47283         * sysdeps/unix/sysv/linux/sys/timex.h: Move struct timex definition
47284         to...
47285         * sysdeps/unix/sysv/linux/bits/timex.h: ...here.  New file.
47286         * Versions.def: Add GLIBC_2.14.
47287         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14] (clock_adjtime):
47288         Export.
47290 2011-03-22  Ulrich Drepper  <drepper@gmail.com>
47292         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Increment
47293         round counter.
47294         * sysdeps/x86_64/cacheinfo.c (intel_check_word): Likewise.
47296 2011-03-20  H.J. Lu  <hongjiu.lu@intel.com>
47298         [BZ #12597]
47299         * string/test-strncmp.c (do_page_test): New function.
47300         (check2): Likewise.
47301         (test_main): Call check2.
47302         * sysdeps/x86_64/multiarch/strcmp.S: Properly cross page boundary.
47304 2011-03-20  Ulrich Drepper  <drepper@gmail.com>
47306         [BZ #12587]
47307         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
47308         Handle cache information in CPU leaf 4.
47309         * sysdeps/x86_64/cacheinfo.c (intel_check_word): Likewise.
47311 2011-03-18  Ulrich Drepper  <drepper@gmail.com>
47313         [BZ #12583]
47314         * posix/fnmatch.c (fnmatch): Check size of pattern in wide
47315         character representation.
47316         Partly based on a patch by Tomas Hoger <thoger@redhat.com>.
47318 2011-03-16  Ryan S. Arnold  <rsa@us.ibm.com>
47320         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S (isnanf): Fix
47321         END(__isnan) to END(__isnanf) to match function entry point/label
47322         EALIGN(__isnanf,...).
47324 2011-03-10  Jakub Jelinek  <jakub@redhat.com>
47326         * wcsmbs/wchar.h (wmemcmp): Remove __restrict qualifiers.
47328 2011-03-10  Ulrich Drepper  <drepper@gmail.com>
47330         [BZ #12510]
47331         * elf/dl-lookup.c (do_lookup_x): For copy relocations of unique objects
47332         copy from the symbol referenced in the relocation to initialize the
47333         used variable.
47334         Patch by Piotr Bury <pbury@goahead.com>.
47335         * elf/Makefile: Add rules to build and tst-unique3.
47336         * include/bits/dlfcn.h: Remove _dl_mcount_wrapper_check declaration.
47337         * elf/tst-unique3.cc: New file.
47338         * elf/tst-unique3.h: New file.
47339         * elf/tst-unique3lib.cc: New file.
47340         * elf/tst-unique3lib2.cc: New file.
47342         * elf/Makefile: Don't run tst-execstack* tests of SELinux is enabled.
47344 2011-03-10  Mike Frysinger  <vapier@gentoo.org>
47346         * sysdeps/sparc/sparc64/elf/configure.in (libc_cv_sparc64_tls): Add
47347         $LDFLAGS and -nostdlib -nostartfiles to linking step.  Change main
47348         to _start.
47350 2011-03-06  Ulrich Drepper  <drepper@gmail.com>
47352         * elf/dl-load.c (_dl_map_object): If we are looking for the first
47353         to-be-loaded object along a path to loader is ld.so.
47355 2011-03-02  Harsha Jagasia  <harsha.jagasia@amd.com>
47356             Ulrich Drepper  <drepper@gmail.com>
47358         * sysdeps/x86_64/memset.S: After aligning destination, code
47359         branches to different locations depending on the value of
47360         misalignment, when multiarch is enabled. Fix this.
47362 2011-03-02  Harsha Jagasia  <harsha.jagasia@amd.com>
47364         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo):
47365         Set _x86_64_preferred_memory_instruction for AMD processsors.
47366         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
47367         Set bit_Prefer_SSE_for_memop for AMD processors.
47369 2011-03-04  Ulrich Drepper  <drepper@gmail.com>
47371         * libio/fmemopen.c (fmemopen): Optimize a bit.
47373 2011-03-03  Andreas Schwab  <schwab@redhat.com>
47375         * libio/fmemopen.c (fmemopen): Don't read past end of buffer.
47377 2011-03-03  Roland McGrath  <roland@redhat.com>
47379         * setjmp/bits/setjmp2.h: Canonicalize comment formatting.
47381 2011-02-28  Aurelien Jarno  <aurelien@aurel32.net>
47383         * sysdeps/sparc/sparc64/multiarch/memset.S(__bzero): Call
47384         __bzero_ultra1 instead of __memset_ultra1.
47386 2011-02-23  Andreas Schwab  <schwab@redhat.com>
47387             Ulrich Drepper  <drepper@gmail.com>
47389         [BZ #12509]
47390         * include/link.h (struct link_map): Add l_orig_initfini.
47391         * elf/dl-load.c (_dl_map_object_from_fd): Free realname before
47392         returning unsuccessfully.
47393         * elf/dl-close.c (_dl_close_worker): If this is the last explicit
47394         close of a file loaded at startup, restore the original l_initfini
47395         list.
47396         * elf/dl-deps.c (_dl_map_object_deps): Don't free old l_initfini
47397         list, store the pointer.
47398         * elf/Makefile ($(objpfx)noload-mem): New rule.
47399         (noload-ENV): Define.
47400         (tests): Add $(objpfx)noload-mem.
47401         * elf/noload.c: Include <memcheck.h>.
47402         (main): Call mtrace.  Close all opened handles.
47404 2011-02-17  Andreas Schwab  <schwab@redhat.com>
47406         [BZ #12454]
47407         * elf/dl-deps.c (_dl_map_object_deps): Signal error early when
47408         dependencies are missing.
47410 2011-02-22  Samuel Thibault  <samuel.thibault@ens-lyon.org>
47412         Fix __if_freereq crash: Unlike the generic version which uses free,
47413         Hurd needs munmap.
47414         * sysdeps/mach/hurd/ifreq.h: New file.
47416 2011-01-27  Petr Baudis  <pasky@suse.cz>
47417             Ulrich Drepper  <drepper@gmail.com>
47419         [BZ 12445]#
47420         * stdio-common/vfprintf.c (vfprintf): Pass correct newlen
47421         to extend_alloca().
47422         * stdio-common/bug23.c: New file.
47423         * stdio-common/Makefile (tests): Add bug23.
47425 2010-09-28  Andreas Schwab  <schwab@redhat.com>
47426             Ulrich Drepper  <drepper@gmail.com>
47428         [BZ #12489]
47429         * elf/rtld.c (dl_main): Move setting of GLRO(dl_init_all_dirs)
47430         before performing relro protection.  At old place add assertion
47431         to make sure nothing changed.
47433 2011-02-17  Nathan Sidwell  <nathan@codesourcery.com>
47434             Glauber de Oliveira Costa  <glommer@gmail.com>
47436         * elf/elf.h: Add new ARM TLS relocs.
47438 2011-02-16  Ryan S. Arnold  <rsa@us.ibm.com>
47440         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
47441         (INTERNAL_VSYSCALL_NCS INTERNAL_SYSCALL_NCS): Remove erroneous (int)
47442         cast from r3.
47443         * sysdeps/wordsize-64/Makefile: New file.  Add tst-writev to
47444         'tests' variable.
47445         * sysdeps/wordsize-64/tst-writev.c: New file.
47447 2011-02-15  Ryan S. Arnold  <rsa@us.ibm.com>
47449         * sysdeps/powerpc/powerpc64/power7/Makefile: New file which adds
47450         -mno-vsx to the CFLAGS-rtld.c variable to avoid using VSX registers and
47451         insns in _dl_start to prevent a TOC reference before relocs are
47452         resolved.
47454 2011-02-15  Ulrich Drepper  <drepper@gmail.com>
47456         [BZ #12469]
47457         * Makeconfig: Remove RANLIB definition.
47458         * Makerules: Don't use RANLIB.
47459         * aclocal.m4: Remove ranlib test.
47460         * configure.in: No need to check for ranlib.
47461         * elf/rtld-Rules: Don't use RANLIB.
47463 2011-02-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
47465         * sysdeps/mach/i386/sysdep.h: Add _MACH_I386_SYSDEP_H inclusion
47466         protection macro.
47467         * sysdeps/mach/i386/thread_state.h: Add _MACH_I386_THREAD_STATE_H
47468         inclusion protection macro.
47470         * stdio-common/psiginfo.c (psiginfo): Check pinfo->si_signo against
47471         SIGRTMIN and SIGRTMAX and print information in that case only when
47472         SIGRTMIN is defined.
47474 2011-02-11  Jakub Jelinek  <jakub@redhat.com>
47476         * stdio-common/printf-parsemb.c (__parse_one_specmb): Handle
47477         arginfo fn returning -1.
47479         * stdio-common/_i18n_number.h (_i18n_number_rewrite): Ensure decimal
47480         and thousands string is zero terminated.
47482 2011-02-03  Andreas Schwab  <schwab@redhat.com>
47484         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Sync with
47485         sysdeps/unix/sysv/linux/bits/socket.h.
47487 2011-01-30  Samuel Thibault  <samuel.thibault@ens-lyon.org>
47489         * bits/sched.h (__CPU_ZERO, __CPU_SET, __CPU_CLR, __CPU_ISSET)
47490         (__CPU_COUNT): Remove old macros.
47491         (__CPU_ZERO_S, __CPU_SET_S, __CPU_CLR_S, __CPU_ISSET_S)
47492         (__CPU_COUNT, __CPU_EQUAL_S, __CPU_OP_S, __CPU_ALLOC_SIZE)
47493         (__CPU_ALLOC, __CPU_FREE): Add macros.
47494         (__sched_cpualloc, __sched_cpufree): Add declarations.
47496 2011-02-05  Ulrich Drepper  <drepper@gmail.com>
47498         * nscd/nscd-client.h: Define MAX_TIMEOUT_VALUE.
47499         (struct datahead): Reuse 32 bits of the alignment for a TTL field.
47500         * nscd/aicache.c (addhstaiX): Return timeout of added value.
47501         (readdhstai): Return value of addhstaiX call.
47502         * nscd/grpcache.c (cache_addgr): Return timeout of added value.
47503         (addgrbyX): Return value returned by cache_addgr.
47504         (readdgrbyname): Return value returned by addgrbyX.
47505         (readdgrbygid): Likewise.
47506         * nscd/pwdcache.c (cache_addpw): Return timeout of added value.
47507         (addpwbyX): Return value returned by cache_addpw.
47508         (readdpwbyname): Return value returned by addhstbyX.
47509         (readdpwbyuid): Likewise.
47510         * nscd/servicescache.c (cache_addserv): Return timeout of added value.
47511         (addservbyX): Return value returned by cache_addserv.
47512         (readdservbyname): Return value returned by addservbyX:
47513         (readdservbyport): Likewise.
47514         * nscd/hstcache.c (cache_addhst): Return timeout of added value.
47515         (addhstbyX): Return value returned by cache_addhst.
47516         (readdhstbyname): Return value returned by addhstbyX.
47517         (readdhstbyaddr): Likewise.
47518         (readdhstbynamev6): Likewise.
47519         (readdhstbyaddrv6): Likewise.
47520         * nscd/initgrcache.c (addinitgroupsX): Return timeout of added value.
47521         (readdinitgroups): Return value returned by addinitgroupsX.
47522         * nscd/cache.c (readdfcts): Change return value of functions to time_t.
47523         (prune_cache): Keep track of timeout value of re-added entries.
47524         * nscd/connections.c (nscd_run_prune): Use MAX_TIMEOUT_VALUE.
47525         * nscd/nscd.h: Adjust prototypes of readd* functions.
47527 2011-02-04  Roland McGrath  <roland@redhat.com>
47529         * nis/nis_server.c (nis_servstate): Use the right name for 0.
47530         (nis_stats): Likewise.
47531         * nis/nis_modify.c (nis_modify): Likewise.
47532         * nis/nis_remove.c (nis_remove): Likewise.
47533         * nis/nis_add.c (nis_add): Likewise.
47535         * elf/dl-object.c (_dl_new_object): Remove unused variable L.
47537         * posix/fnmatch_loop.c: Add some consts.
47539         * sysdeps/x86_64/multiarch/memset-x86-64.S: Add an #undef.
47541 2011-02-02  H.J. Lu  <hongjiu.lu@intel.com>
47543         [BZ #12460]
47544         * config.make.in (config-cflags-novzeroupper): Define.
47545         * configure.in: Substitute libc_cv_cc_novzeroupper.
47546         * elf/Makefile (AVX-CFLAGS): Define.
47547         (CFLAGS-tst-audit4.c): Replace -mavx with $(AVX-CFLAGS).
47548         (CFLAGS-tst-auditmod4a.c): Likewise.
47549         (CFLAGS-tst-auditmod4b.c): Likewise.
47550         (CFLAGS-tst-auditmod6b.c): Likewise.
47551         (CFLAGS-tst-auditmod6c.c): Likewise.
47552         (CFLAGS-tst-auditmod7b.c): Likewise.
47553         * sysdeps/i386/configure.in: Check -mno-vzeroupper.
47555 2011-02-02  Ulrich Drepper  <drepper@gmail.com>
47557         * elf/dl-runtime.c (_dl_call_pltexit): Pass correct address of the
47558         function to the callback.
47559         Patch partly by Jiri Olsa <jolsa@redhat.com>.
47561 2011-02-02  Andreas Schwab  <schwab@redhat.com>
47563         * shadow/sgetspent.c: Check return value of __sgetspent_r instead
47564         of errno.
47566 2011-01-19  Ulrich Drepper  <drepper@gmail.com>
47568         [BZ #11724]
47569         * elf/dl-deps.c (_dl_map_object_deps): Rewrite sorting determining order
47570         of constructors.
47571         * elf/dl-fini.c (_dl_sort_fini): Rewrite sorting determining order
47572         of destructors.
47573         (_dl_fini): Don't call _dl_sort_fini if there is only one object.
47575         [BZ #11724]
47576         * elf/Makefile: Add rules to build and run new test.
47577         * elf/tst-initorder.c: New file.
47578         * elf/tst-initorder.exp: New file.
47579         * elf/tst-initordera1.c: New file.
47580         * elf/tst-initordera2.c: New file.
47581         * elf/tst-initordera3.c: New file.
47582         * elf/tst-initordera4.c: New file.
47583         * elf/tst-initorderb1.c: New file.
47584         * elf/tst-initorderb2.c: New file.
47585         * elf/tst-order-a1.c: New file.
47586         * elf/tst-order-a2.c: New file.
47587         * elf/tst-order-a3.c: New file.
47588         * elf/tst-order-a4.c: New file.
47589         * elf/tst-order-b1.c: New file.
47590         * elf/tst-order-b2.c: New file.
47591         * elf/tst-order-main.c: New file.
47592         New test case by George Gensure <werkt0@gmail.com>.
47594 2010-10-01  Andreas Schwab  <schwab@redhat.com>
47596         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
47597         decoding ACE if AI_CANONIDN.
47599 2011-01-18  Ulrich Drepper  <drepper@gmail.com>
47601         * elf/Makefile: Build IFUNC tests unless multi-arch = no.
47603 2011-01-17  Ulrich Drepper  <drepper@gmail.com>
47605         * version.h (RELEASE): Bump for 2.13 release.
47606         * include/features.h: (__GLIBC_MINOR__): Bump to 13.
47608         * io/fcntl.h: Define AT_NO_AUTOMOUNT.
47610         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MADV_HUGEPAGE and
47611         MADV_NOHUGEPAGE.
47612         * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Likewise.
47613         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
47614         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
47615         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
47616         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
47617         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
47619         * posix/getconf.c: Update copyright year.
47620         * catgets/gencat.c: Likewise.
47621         * csu/version.c: Likewise.
47622         * debug/catchsegv.sh: Likewise.
47623         * debug/xtrace.sh: Likewise.
47624         * elf/ldconfig.c: Likewise.
47625         * elf/ldd.bash.in: Likewise.
47626         * elf/sprof.c (print_version): Likewise.
47627         * iconv/iconv_prog.c: Likewise.
47628         * iconv/iconvconfig.c: Likewise.
47629         * locale/programs/locale.c: Likewise.
47630         * locale/programs/localedef.c: Likewise.
47631         * malloc/memusage.sh: Likewise.
47632         * malloc/mtrace.pl: Likewise.
47633         * nscd/nscd.c (print_version): Likewise.
47634         * nss/getent.c: Likewise.
47636         * sysdeps/unix/sysv/linux/bits/socket.h: Define AF_CAIF, AF_ALG,
47637         PF_CAIF, and PF_ALG.
47638         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
47640 2011-01-16  Andreas Schwab  <schwab@linux-m68k.org>
47642         * elf/Makefile (tlsmod17a-modules, tlsmod18a-modules): Define.
47643         (modules-names): Use them.
47644         (ifunc-test-modules, ifunc-pie-tests): Define.
47645         (extra-test-objs): Add tlsmod17a-modules, tlsmod18a-modules,
47646         tst-pie1, ifunc-test-modules and ifunc-pie-tests objects.
47647         (test-extras): Likewise.
47648         ($(patsubst %,$(objpfx)%.os,$(tlsmod17a-modules))): Use
47649         $(compile-command.c).
47650         ($(patsubst %,$(objpfx)%.os,$(tlsmod18a-modules))): Likewise.
47651         (all-built-dso): Define.
47652         (check-textrel.out, check-execstack.out): Depend on it.
47654         * configure.in: Don't override --enable-multi-arch.
47656 2011-01-15  Ulrich Drepper  <drepper@gmail.com>
47658         [BZ #6812]
47659         * nscd/hstcache.c (tryagain): Define.
47660         (cache_addhst): Return tryagain not notfound for temporary errors.
47661         (addhstbyX): Also set h_errno to TRY_AGAIN when memory allocation
47662         failed.
47664 2011-01-14  Ulrich Drepper  <drepper@gmail.com>
47666         [BZ #10563]
47667         * sysdeps/unix/sysv/linux/i386/setgroups.c: Use INLINE_SETXID_SYSCALL
47668         to make the syscall.
47669         * sysdeps/unix/sysv/linux/setgroups.c: New file.
47671         [BZ #12378]
47672         * posix/fnmatch_loop.c (FCT): When matching '[' keep track of beginning
47673         and fall back to matching as normal character if the string ends before
47674         the matching ']' is found.  This is what POSIX requires.
47675         * posix/testfnm.c: Adjust test result.
47676         * posix/globtest.sh: Adjust test result.  Add new test.
47677         * posix/tst-fnmatch.input: Likewise.
47678         * posix/tst-fnmatch2.c: Add new test.
47680 2010-12-28  Andreas Schwab  <schwab@linux-m68k.org>
47682         * elf/Makefile (check-execstack): Revert last change.  Depend on
47683         check-execstack.h.
47684         (check-execstack.h): New target.
47685         (generated): Add check-execstack.h.
47686         * elf/check-execstack.c: Include "check-execstack.h".
47687         (main): Revert last change.
47688         (handle_file): Return zero if GNU_STACK is absent and
47689         DEFAULT_STACK_PERMS doesn't include PF_X.
47691 2011-01-13  Ulrich Drepper  <drepper@gmail.com>
47693         * sysdeps/posix/spawni.c (__spawni): Don't fail if close file action
47694         in child fails because the descriptor is already closed.
47695         * include/sys/resource.h: Add libc_hidden_proto for getrlimit64.
47696         * sysdeps/unix/sysv/linux/getrlimit64.c: Add libc_hidden_def.
47697         * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Likewise.
47699         [BZ #12397]
47700         * sysdeps/unix/sysv/linux/mkdirat.c (mkdirat): Fix handling of missing
47701         syscall.
47703         [BZ #10484]
47704         * nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Handle overflows of
47705         temporary buffer used to handle multi lookups locally.
47706         * include/alloca.h: Add libc_hidden_proto for __libc_alloca_cutoff.
47708 2011-01-12  Ulrich Drepper  <drepper@gmail.com>
47710         * elf/dl-dst.h (DL_DST_REQUIRED): Allow l_origin to be NULL when
47711         loader is ld.so.
47713 2011-01-10  Paul Pluzhnikov  <ppluzhnikov@google.com>
47715         * sysdeps/i386/Makefile: stdlib/cxa_finalize.c needs 16-byte stack
47716         alignment for SSE2.
47718 2011-01-12  Ulrich Drepper  <drepper@gmail.com>
47720         [BZ #12394]
47721         * stdio-common/printf_fp.c (__printf_fp): Add more room for grouping
47722         characters.  When rounding increased number of integer digits recompute
47723         number of groups.
47724         * stdio-common/tst-grouping.c: New file.
47725         * stdio-common/Makefile: Add rules to build and run tst-grouping.
47727 2011-01-09  Ulrich Drepper  <drepper@gmail.com>
47729         * sysdeps/i386/bits/select.h: Don't use asm code for __FD_SET,
47730         __FD_CLR, and __FS_ISSET.  gcc generates better code on its own.
47732         * sysdeps/x86_64/bits/select.h: Mark value of __FD_SET and __FD_CLR as
47733         void.
47734         * bits/select.h: Likewise.
47736 2011-01-08  Ulrich Drepper  <drepper@gmail.com>
47738         * po/ja.po: Update from translation team.
47740 2011-01-04  David S. Miller  <davem@sunset.davemloft.net>
47742         [BZ #11155]
47743         * sysdeps/unix/sysv/linux/sparc/sparc64/fxstat.c: Use i386's
47744         implementation just like for lxstat, fxstatat, et al.
47746 2010-12-27  Jim Meyering  <meyering@redhat.com>
47748         [BZ #12348]
47749         * posix/regexec.c (build_trtable): Return failure indication upon
47750         calloc failure.  Otherwise, re_search_internal could infloop on OOM.
47752 2010-12-25  Ulrich Drepper  <drepper@gmail.com>
47754         [BZ #12201]
47755         * sysdeps/unix/sysv/linux/getrlimit64.c: New file.
47756         * sysdeps/unix/sysv/linux/setrlimit64.c: New file.
47757         * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Use ../getrlimit64.c.
47758         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_PRLIMIT64.
47760         [BZ #12207]
47761         * malloc/malloc.c (do_check_malloc_state): Use fastbin macro.
47763         [BZ #12204]
47764         * string/xpg-strerror.c (__xpg_strerror_r): Return error code, not -1.
47765         * sysdeps/mach/xpg-strerror.c (__xpg_strerror_r): Likewise.
47767 2010-12-15  H.J. Lu  <hongjiu.lu@intel.com>
47769         * config.h.in (NO_CTORS_DTORS_SECTIONS): Define.
47770         * configure.in: Define NO_CTORS_DTORS_SECTIONS if linker
47771         script has SORT_BY_INIT_PRIORITY.
47772         * elf/sofini.c: Remove `.ctors' and `.dtors' sections if
47773         NO_CTORS_DTORS_SECTIONS is defined.
47774         * elf/soinit.c: Likewise.
47775         * sysdeps/i386/init-first.c: Don't call __libc_global_ctors if
47776         NO_CTORS_DTORS_SECTIONS is defined.
47777         * sysdeps/mach/hurd/i386/init-first.c: Likewise.
47778         * sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
47779         * sysdeps/sh/init-first.c: Likewise.
47780         * sysdeps/unix/sysv/linux/init-first.c: Likewise.
47782 2010-12-24  Ulrich Drepper  <drepper@gmail.com>
47784         * stdio-common/vfprintf.c (vfprintf): If printf handlers are installed
47785         always use the slow path.
47787 2010-12-15  Ryan S. Arnold  <rsa@us.ibm.com>
47789         * elf/Makefile: (check-execstack): Replace $(native-compile) with a
47790         similar rule which adds the sysdep directories to the header search in
47791         order to pick up the correct platform stackinfo.h.
47792         * elf/check-execstack.c (main): Check DEFAULT_STACK_PERMS for PF_X and
47793         perform test if it is, otherwise return successfully without testing.
47794         * elf/dl-load.c (_dl_map_object_from_fd): Source stack_flags from
47795         DEFAULT_STACK_PERMS define in stackinfo.h.
47796         * elf/dl-support.c (_dl_stack_flags): Source from DEFAULT_STACK_PERMS
47797         defined in stackinfo.h.
47798         * elf/rtld.c (_dl_starting_up): Source ._dl_stack_flags from
47799         DEFAULT_STACK_PERMS defined in stackinfo.h.
47800         * sysdeps/i386/stackinfo.h: Define DEFAULT_STACK_PERMS with PF_X.
47801         * sysdeps/ia64/stackinfo.h: Likewise.
47802         * sysdeps/s390/stackinfo.h: Likewise.
47803         * sysdeps/sh/stackinfo.h: Likewise.
47804         * sysdeps/sparc/stackinfo.h: Likewise.
47805         * sysdeps/x86_64/stackinfo.h: Likewise.
47806         * sysdeps/powerpc/stackinfo.h: Define DEFAULT_STACK_PERMS without
47807         PF_X for powerpc64.  Retain PF_X for powerpc32.
47809 2010-12-19  Ulrich Drepper  <drepper@gmail.com>
47811         * sysdeps/unix/readdir_r.c (__READDIR_R): Compute reclen more
47812         accurately.
47813         * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Define
47814         GETDENTS_64BIT_ALIGNED.
47816 2010-12-14  Ulrich Drepper  <dreper@gmail.com>
47818         * sysdeps/i386/i686/multiarch/strcmp.S: Undo accidental checkin.
47820 2010-12-10  Andreas Schwab  <schwab@redhat.com>
47822         * wcsmbs/wchar.h (wcpcpy, wcpncpy): Only declare under
47823         _GNU_SOURCE.
47825         * wcsmbs/wchar.h (wcpcpy, wcpncpy): Add __restrict.
47826         * wcsmbs/bits/wchar2.h (__wmemmove_chk_warn, wmemmove, wmemset):
47827         Remove __restrict.
47828         (wcscpy, __wcpcpy_chk, __wcpcpy_alias, wcpcpy, wcsncpy, wcpncpy)
47829         (wcscat, wcsncat, __wcrtomb_chk, wcrtomb): Add __restrict.
47831 2010-12-09  Ulrich Drepper  <drepper@gmail.com>
47833         [BZ #11655]
47834         * stdlib/msort.c (qsort_r): Make sure both phys_pages and pagesize
47835         are initialized.
47837 2010-12-09  Jakub Jelinek  <jakub@redhat.com>
47839         * string/bits/string3.h (memmove, bcopy): Remove __restrict.
47841 2010-12-03  Ulrich Drepper  <drepper@gmail.com>
47843         * po/it.po: Update from translation team.
47845 2010-12-01  H.J. Lu  <hongjiu.lu@intel.com>
47847         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S (STRCMP): Remove
47848         unused codes.
47850 2010-11-30  Ulrich Drepper  <drepper@gmail.com>
47852         * sysdeps/i386/fpu/libm-test-ulps: Relax ynf(10,0.75) test expectations.
47854 2010-11-24  Andreas Schwab  <schwab@redhat.com>
47856         * resolv/nss_dns/dns-host.c (getanswer_r): Don't handle ttl == 0
47857         specially.
47858         (gaih_getanswer_slice): Likewise.
47860 2010-10-20  Jakub Jelinek  <jakub@redhat.com>
47862         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Fix up inline asm.
47864 2010-05-31  Petr Baudis  <pasky@suse.cz>
47866         [BZ #11149]
47867         * elf/ldconfig.c (main): Allow aux_cache_file open()ing to fail
47868         silently even in the chroot mode.
47870 2010-11-22  Ulrich Drepper  <drepper@gmail.com>
47872         * nis/nss_compat/compat-initgroups.c (internal_getgrent_r): Optimize
47873         last patch a bit.  Pretty printing
47875 2010-05-31  Petr Baudis <pasky@suse.cz>
47877         [BZ #10085]
47878         * nis/nss_compat/compat-initgroups.c (internal_getgrent_r): Fix
47879         initialization of skip_initgroups_dyn.
47881 2010-11-19  Ulrich Drepper  <drepper@gmail.com>
47883         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MAP_HUGETLB.
47884         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
47886 2010-11-16  Ulrich Drepper  <drepper@gmail.com>
47888         * sysdeps/unix/sysv/linux/sys/swap.h (SWAP_FLAG_DISCARD): Define.
47890 2010-11-11  Andreas Schwab  <schwab@redhat.com>
47892         * posix/fnmatch_loop.c (NEW_PATTERN): Fix use of alloca.
47893         * posix/Makefile (tests): Add $(objpfx)tst-fnmatch-mem.
47894         (tst-fnmatch-ENV): Set MALLOC_TRACE.
47895         ($(objpfx)tst-fnmatch-mem): New rule.
47896         (generated): Add tst-fnmatch-mem and tst-fnmatch.mtrace.
47897         * posix/tst-fnmatch.c (main): Call mtrace.
47899 2010-11-11  H.J. Lu  <hongjiu.lu@intel.com>
47901         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
47902         Support Intel processor model 6 and model 0x2c.
47904 2010-11-10  Luis Machado  <luisgpm@br.ibm.com>
47906         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c (__ieee754_sqrtl): Force
47907           signed comparison.
47909 2010-11-09  H.J. Lu  <hongjiu.lu@intel.com>
47911         [BZ #12205]
47912         * string/test-strncasecmp.c (check_result): New function.
47913         (do_one_test): Use it.
47914         (check1): New function.
47915         (test_main): Use it.
47916         * sysdeps/i386/i686/multiarch/strcmp.S (nibble_ashr_use_sse4_2_exit):
47917         Support strcasecmp and strncasecmp.
47919 2010-11-08  Ulrich Drepper  <drepper@gmail.com>
47921         [BZ #12194]
47922         * sysdeps/i386/bits/byteswap.h: Avoid warning in __bswap_16.
47923         * sysdeps/x86_64/bits/byteswap.h: Likewise.
47925 2010-11-07  H.J. Lu  <hongjiu.lu@intel.com>
47927         * sysdeps/x86_64/memset.S: Check USE_MULTIARCH and USE_SSE2 for
47928         IFUNC support.
47929         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
47930         memset-x86-64.
47931         * sysdeps/x86_64/multiarch/bzero.S: New file.
47932         * sysdeps/x86_64/multiarch/cacheinfo.c: New file.
47933         * sysdeps/x86_64/multiarch/memset-x86-64.S: New file.
47934         * sysdeps/x86_64/multiarch/memset.S: New file.
47935         * sysdeps/x86_64/multiarch/memset_chk.S: New file.
47936         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
47937         Set bit_Prefer_SSE_for_memop for Intel processors.
47938         * sysdeps/x86_64/multiarch/init-arch.h (bit_Prefer_SSE_for_memop):
47939         Define.
47940         (index_Prefer_SSE_for_memop): Define.
47941         (HAS_PREFER_SSE_FOR_MEMOP): Define.
47943 2010-11-04  Luis Machado  <luisgpm@br.ibm.com>
47945         * sysdeps/powerpc/powerpc32/power7/mempcpy.S: New file.
47946         * sysdeps/powerpc/powerpc64/power7/mempcpy.S: New file.
47948 2010-11-03  H.J. Lu  <hongjiu.lu@intel.com>
47950         [BZ #12191]
47951         * sysdeps/i386/i686/cacheinfo.c (__x86_64_raw_data_cache_size): New.
47952         (__x86_64_raw_data_cache_size_half): Likewise.
47953         (__x86_64_raw_shared_cache_size): Likewise.
47954         (__x86_64_raw_shared_cache_size_half): Likewise.
47956         * sysdeps/x86_64/cacheinfo.c (__x86_64_raw_data_cache_size): New.
47957         (__x86_64_raw_data_cache_size_half): Likewise.
47958         (__x86_64_raw_shared_cache_size): Likewise.
47959         (__x86_64_raw_shared_cache_size_half): Likewise.
47960         (init_cacheinfo): Set __x86_64_raw_data_cache_size,
47961         __x86_64_raw_data_cache_size_half, __x86_64_raw_shared_cache_size
47962         and __x86_64_raw_shared_cache_size_half.  Round
47963         __x86_64_data_cache_size_half, __x86_64_data_cache_size
47964         __x86_64_shared_cache_size_half and __x86_64_shared_cache_size,
47965         to multiple of 256 bytes.
47967 2010-11-03  Ulrich Drepper  <drepper@gmail.com>
47969         [BZ #12167]
47970         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Recognize new mangling
47971         of inacessible symlinks.  Verify result of symlink before returning it.
47972         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
47973         Patch mostly by Miklos Szeredi <miklos@szeredi.hu>.
47975 2010-10-28  Erich Ritz  <erichritz@gmail.com>
47977         * math/math.h (isinf): Fix typo in comment.
47979 2010-11-01  Ulrich Drepper  <drepper@gmail.com>
47981         * po/da.po: Update from translation team.
47983 2010-10-26  Ulrich Drepper  <drepper@gmail.com>
47985         * elf/rtld.c (dl_main): Move assertion after the point where rtld map
47986         is added to the list.
47988 2010-10-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
47989             Ulrich Drepper  <drepper@gmail.com>
47991         * elf/dl-object.c (_dl_new_object): Don't append the new object to
47992         the global list here.  Move code to...
47993         (_dl_add_to_namespace_list): ...here.  New function.
47994         * elf/rtld.c (dl_main): Invoke _dl_add_to_namespace_list.
47995         * sysdeps/generic/ldsodefs.h (_dl_add_to_namespace_list): Declare.
47996         * elf/dl-load.c (lose): Don't remove the element from the list.
47997         (_dl_map_object_from_fd): Invoke _dl_add_to_namespace_list.
47998         (_dl_map_object): Likewise.
48000 2010-10-25  Ulrich Drepper  <drepper@gmail.com>
48002         [BZ #12159]
48003         * sysdeps/x86_64/multiarch/strchr.S: Fix propagation of search byte
48004         into all bytes of SSE register.
48005         Patch by Richard Li <richardpku@gmail.com>.
48007 2010-10-24  Ulrich Drepper  <drepper@gmail.com>
48009         [BZ #12140]
48010         * malloc/malloc.c (_int_free): Fill correct number of bytes when
48011         perturbing.
48013 2010-10-20  Michael B. Brutman  <brutman@us.ibm.com>
48015         * sysdeps/powerpc/dl-procinfo.c: Add support for ppca2 platform
48016         * sysdeps/powerpc/dl-procinfo.h: Add support for ppca2 platform
48017         * sysdeps/powerpc/powerpc32/a2/memcpy.S: New file.
48018         * sysdeps/powerpc/powerpc64/a2/memcpy.S: Likewise.
48019         * sysdeps/unix/sysv/linux/powerpc/powerpc32/a2/Implies: New
48020         submachine.
48021         * sysdeps/unix/sysv/linux/powerpc/powerpc64/a2/Implies: Likewise.
48023 2010-10-22  Andreas Schwab  <schwab@redhat.com>
48025         * include/dlfcn.h (__RTLD_SECURE): Define.
48026         * elf/dl-load.c (_dl_map_object): Remove preloaded parameter.  Use
48027         mode & __RTLD_SECURE instead.
48028         (open_path): Rename preloaded parameter to secure.
48029         * sysdeps/generic/ldsodefs.h (_dl_map_object): Adjust declaration.
48030         * elf/dl-open.c (dl_open_worker): Adjust call to _dl_map_object.
48031         * elf/dl-deps.c (openaux): Likewise.
48032         * elf/rtld.c (struct map_args): Remove is_preloaded.
48033         (map_doit): Don't use it.
48034         (dl_main): Likewise.
48035         (do_preload): Use __RTLD_SECURE instead of is_preloaded.
48036         (dlmopen_doit): Add __RTLD_SECURE to mode bits.
48038 2010-09-09  Andreas Schwab  <schwab@redhat.com>
48040         * Makeconfig (sysd-rules-patterns): Add rtld-%:rtld-%.
48041         (sysd-rules-targets): Remove duplicates.
48042         * elf/rtld-Rules ($(objpfx)rtld-%.os): Add pattern rules with
48043         rtld-%.$o dependency.
48045 2010-10-18  Andreas Schwab  <schwab@redhat.com>
48047         * elf/dl-open.c (dl_open_worker): Don't expand DST here, let
48048         _dl_map_object do it.
48050 2010-10-19  Ulrich Drepper  <drepper@gmail.com>
48052         * sysdeps/i386/bits/mathdef.h (FP_FAST_FMA): If the GCC 4.6 port has
48053         fast fma builtins, define the macros in the C99 standard.
48054         (FP_FAST_FMAF): Likewise.
48055         (FP_FAST_FMAL): Likewise.
48056         * sysdeps/x86_64/bits/mathdef.h: Likewise.
48058         * bits/mathdef.h: Update copyright year.
48059         * sysdeps/powerpc/bits/mathdef.h: Likewise.
48061 2010-10-19  Michael Meissner  <meissner@linux.vnet.ibm.com>
48063         * bits/mathdef.h (FP_FAST_FMA): If the GCC 4.6 port has fast fma
48064         builtins, define the macros in the C99 standard.
48065         (FP_FAST_FMAF): Likewise.
48066         (FP_FAST_FMAL): Likewise.
48067         * sysdeps/powerpc/bits/mathdef.h (FP_FAST_FMA): Define, ppc as
48068         multiply/add.
48069         (FP_FAST_FMAF): Likewise.
48071 2010-10-15  Jakub Jelinek  <jakub@redhat.com>
48073         [BZ #3268]
48074         * math/libm-test.inc (fma_test): Some new testcases.
48075         * sysdeps/ieee754/ldbl-128/s_fmal.c: New file.
48076         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Fix fma with finite x and
48077         y and infinite z.  Do multiplication by C already in long double.
48078         * sysdeps/ieee754/ldbl-96/s_fmal.c: New file.
48079         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Fix fma with finite x and
48080         y and infinite z.  Do bitwise or of inexact bit into u.d.
48081         * sysdeps/ieee754/ldbl-64-128/s_fmal.c: New file.
48082         * sysdeps/i386/fpu/s_fmaf.S: Removed.
48083         * sysdeps/i386/fpu/s_fma.S: Removed.
48084         * sysdeps/i386/fpu/s_fmal.S: Removed.
48086 2010-10-16  Jakub Jelinek  <jakub@redhat.com>
48088         [BZ #3268]
48089         * math/libm-test.inc (fma_test): Add IEEE quad long double fmal tests.
48090         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Ensure a1 + u.d
48091         computation is not scheduled after fetestexcept.  Fix value
48092         of minimum denormal long double.
48094 2010-10-14  Jakub Jelinek  <jakub@redhat.com>
48096         [BZ #3268]
48097         * math/libm-test.inc (fma_test): Add some more tests.
48098         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Handle underflows
48099         correctly.
48101 2010-10-15  Andreas Schwab  <schwab@redhat.com>
48103         * scripts/data/localplt-s390-linux-gnu.data: New file.
48104         * scripts/data/localplt-s390x-linux-gnu.data: New file.
48106 2010-10-13  Jakub Jelinek  <jakub@redhat.com>
48108         [BZ #3268]
48109         * math/libm-test.inc (fma_test): Some more fmaf and fma tests.
48110         * sysdeps/i386/i686/multiarch/s_fma.c: Include ldbl-96 version
48111         instead of dbl-64.
48112         * sysdeps/i386/fpu/bits/mathinline.h (fma, fmaf, fmal): Remove
48113         inlines.
48114         * sysdeps/ieee754/ldbl-96/s_fma.c: New file.
48115         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Fix exponent adjustment
48116         if one of x and y is very large and the other is subnormal.
48117         * sysdeps/s390/fpu/s_fmaf.c: New file.
48118         * sysdeps/s390/fpu/s_fma.c: New file.
48119         * sysdeps/powerpc/fpu/s_fmaf.S: New file.
48120         * sysdeps/powerpc/fpu/s_fma.S: New file.
48121         * sysdeps/powerpc/powerpc32/fpu/s_fma.S: New file.
48122         * sysdeps/powerpc/powerpc64/fpu/s_fma.S: New file.
48123         * sysdeps/unix/sysv/linux/s390/fpu/s_fma.c: New file.
48125 2010-10-12  Jakub Jelinek  <jakub@redhat.com>
48127         [BZ #3268]
48128         * math/libm-test.inc (fma_test): Add some more fmaf tests, add
48129         fma tests.
48130         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Fix Inf/Nan check.
48131         * sysdeps/ieee754/dbl-64/s_fma.c: New file.
48132         * sysdeps/i386/i686/multiarch/s_fma.c: Include
48133         sysdeps/ieee754/dbl-64/s_fma.c instead of math/s_fma.c.
48134         * sysdeps/x86_64/multiarch/s_fma.c: Likewise.
48135         * sysdeps/ieee754/ldbl-opt/s_fma.c: Likewise.
48136         * sysdeps/ieee754/ldbl-128/s_fma.c: New file.
48138 2010-10-12  Ulrich Drepper  <drepper@redhat.com>
48140         [BZ #12078]
48141         * posix/regcomp.c (parse_branch): One more memory leak plugged.
48142         * posix/bug-regex31.input: Add test case.
48144 2010-10-11  Ulrich Drepper  <drepper@gmail.com>
48146         * posix/bug-regex31.c: Rewrite to run multiple tests from stdin.
48147         * posix/bug-regex31.input: New file.
48149         [BZ #12078]
48150         * posix/regcomp.c (parse_branch): Free memory when allocation failed.
48151         (parse_sub_exp): Fix last change, use postorder.
48153         * posix/bug-regex31.c: New file.
48154         * posix/Makefile: Add rules to build and run bug-regex31.
48156         * posix/regcomp.c (parse_bracket_exp): Add missing re_free calls.
48158         [BZ #12078]
48159         * posix/regcomp.c (parse_sub_exp): Free tree data when it is not used.
48161         [BZ #12108]
48162         * stdio-common/psiginfo.c (psiginfo): Don't expext SIGRTMIN..SIGRTMAX
48163         to have entries in sys_siglist.
48165         [BZ #12093]
48166         * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): ->ifa_addr might
48167         be NULL.
48169 2010-10-07  Jakub Jelinek  <jakub@redhat.com>
48171         [BZ #3268]
48172         * math/libm-test.inc (fma_test): Add 2 fmaf tests.
48173         * sysdeps/ieee754/dbl-64/s_fmaf.c: New file.
48174         * sysdeps/i386/i686/multiarch/s_fmaf.c: Include
48175         sysdeps/ieee754/dbl-64/s_fmaf.c instead of math/s_fmaf.c.
48176         * sysdeps/x86_64/multiarch/s_fmaf.c: Likewise.
48177         * include/fenv.h (feupdateenv, fetestexcept): Add libm_hidden_proto.
48178         * math/feupdateenv.c (feupdateenv): Add libm_hidden_ver.
48179         * sysdeps/i386/fpu/feupdateenv.c (feupdateenv): Likewise.
48180         * sysdeps/powerpc/fpu/feupdateenv.c (feupdateenv): Likewise.
48181         * sysdeps/x86_64/fpu/feupdateenv.c (feupdateenv): Likewise.
48182         * sysdeps/sparc/fpu/feupdateenv.c (feupdateenv): Likewise.
48183         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Add libm_hidden_def.
48184         * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Likewise.
48185         * math/ftestexcept.c (fetestexcept): Likewise.
48186         * sysdeps/ia64/fpu/ftestexcept.c (fetestexcept): Likewise.
48187         * sysdeps/i386/fpu/ftestexcept.c (fetestexcept): Likewise.
48188         * sysdeps/s390/fpu/ftestexcept.c (fetestexcept): Likewise.
48189         * sysdeps/powerpc/fpu/ftestexcept.c (fetestexcept): Likewise.
48190         * sysdeps/x86_64/fpu/ftestexcept.c (fetestexcept): Likewise.
48191         * sysdeps/sparc/fpu/ftestexcept.c (fetestexcept): Likewise.
48192         * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
48194 2010-10-11  Ulrich Drepper  <drepper@gmail.com>
48196         [BZ #12107]
48197         * stdio-common/psiginfo.c (psiginfo): Terminate all strings with
48198         newline.
48200 2010-10-06  Ulrich Drepper  <drepper@gmail.com>
48202         * string/bug-strstr1.c: New file.
48203         * string/Makefile: Add rules to build and run bug-strstr1.
48205 2010-10-05  Eric Blake  <eblake@redhat.com>
48207         [BZ #12092]
48208         * string/str-two-way.h (two_way_long_needle): Always clear memory
48209         when skipping input due to the shift table.
48211 2010-10-03  Ulrich Drepper  <drepper@gmail.com>
48213         [BZ #12005]
48214         * malloc/mcheck.c: Handle large requests.
48216         [BZ #12077]
48217         * sysdeps/x86_64/strcmp.S: Fix handling of remaining bytes in buffer
48218         for strncmp and strncasecmp.
48219         * string/stratcliff.c: Add tests for strcmp and strncmp.
48220         * wcsmbs/wcsatcliff.c: Adjust for stratcliff change.
48222 2010-09-28  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
48224         * sysdeps/sh/sh4/fpu/fpu_control.h: Add 'extern "C"' protection to
48225         __set_fpscr.
48227 2010-09-30  Andreas Jaeger  <aj@suse.de>
48229         * sysdeps/unix/sysv/linux_fsinfo.h (BTRFS_SUPER_MAGIC): Define.
48230         (CGROUP_SUPER_MAGIC): Define.
48231         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
48232         Handle btrfs and cgroup file systems.
48233         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
48234         Likewise.
48236 2010-09-27  Luis Machado  <luisgpm@br.ibm.com>
48238         * sysdeps/powerpc/powerpc32/rtld-memset.c: New file.
48239         * sysdeps/powerpc/powerpc64/rtld-memset.c: New file.
48241 2010-09-29  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
48243         [BZ #12067]
48244         * sysdeps/s390/s390-32/elf/start.S: Fix address calculation when
48245         trying to locate the ELF header.
48247 2010-09-27  Andreas Schwab  <schwab@redhat.com>
48249         [BZ #11611]
48250         * sysdeps/unix/sysv/linux/internal_statvfs.c (INTERNAL_STATVFS):
48251         Mask out sign-bit copies when constructing f_fsid.
48253 2010-09-24  Petr Baudis <pasky@suse.cz>
48255         * debug/stack_chk_fail_local.c: Add missing licence exception.
48256         * debug/warning-nop.c: Likewise.
48258 2010-09-15  Joseph Myers  <joseph@codesourcery.com>
48260         * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): When
48261         implementing getdents64 using getdents syscall, set d_type if
48262         __ASSUME_GETDENTS32_D_TYPE.
48264 2010-09-16  Andreas Schwab  <schwab@redhat.com>
48266         * elf/dl-close.c (free_slotinfo, free_mem): Move to...
48267         * elf/dl-libc.c (free_slotinfo, free_mem): ... here.
48269 2010-09-21  Ulrich Drepper  <drepper@redhat.com>
48271         [BZ #12037]
48272         * posix/unistd.h: Undo change of feature selection for ftruncate from
48273         2010-01-11.
48275 2010-09-20  Ulrich Drepper  <drepper@redhat.com>
48277         * sysdeps/x86_64/strcmp.S: Fix another typo in x86-64 strncasecmp limit
48278         detection.
48280 2010-09-20  Andreas Schwab  <schwab@redhat.com>
48282         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Add
48283         fanotify_mark.
48284         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Likewise.
48286 2010-09-14  Andreas Schwab  <schwab@redhat.com>
48288         * sysdeps/s390/s390-32/__longjmp.c (__longjmp): Define register
48289         variables after CHECK_SP call.
48290         * sysdeps/s390/s390-64/__longjmp.c (__longjmp): Likewise.
48292 2010-09-13  Andreas Schwab  <schwab@redhat.com>
48293             Ulrich Drepper  <drepper@redhat.com>
48295         * elf/rtld.c (dl_main): Set GLRO(dl_init_all_dirs) just before
48296         re-relocationg ld.so.
48297         * elf/dl-support.c (_dl_non_dynamic_init): And here after the
48298         _dl_init_paths call.
48299         * elf/dl-load.c (_dl_init_paths).  Don't set GLRO(dl_init_all_dirs)
48300         here anymore.
48302 2010-09-14  Ulrich Drepper  <drepper@redhat.com>
48304         * resolv/res_init.c (__res_vinit): Count the default server we added.
48306 2010-09-08  Chung-Lin Tang  <cltang@codesourcery.com>
48307             Ulrich Drepper  <drepper@redhat.com>
48309         [BZ #11968]
48310         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
48311         (____longjmp_chk): Use %ebx for saving value across system call.
48312         Add unwind info.
48314 2010-09-06  Andreas Schwab  <schwab@redhat.com>
48316         * manual/Makefile: Don't mix pattern rules with normal rules.
48318 2010-09-05  Andreas Schwab  <schwab@linux-m68k.org>
48320         * debug/vdprintf_chk.c (__vdprintf_chk): Remove undefined
48321         operation.
48322         * libio/iofdopen.c (_IO_new_fdopen): Likewise.
48323         * libio/iofopncook.c (_IO_cookie_init): Likewise.
48324         * libio/iovdprintf.c (_IO_vdprintf): Likewise.
48325         * libio/oldiofdopen.c (_IO_old_fdopen): Likewise.
48326         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
48327         Likewise.
48329 2010-09-04  Ulrich Drepper  <drepper@redhat.com>
48331         [BZ #11979]
48332         * iconvdata/gconv-modules: Remove EBCDIC-CP-AR2 alias from
48333         IBM-930, IBM-933, IBM-935, IBM-937, and IBM-939.
48335 2010-09-02  Ulrich Drepper  <drepper@redhat.com>
48337         * sysdeps/x86_64/add_n.S: Update from GMP 5.0.1.
48338         * sysdeps/x86_64/addmul_1.S: Likewise.
48339         * sysdeps/x86_64/lshift.S: Likewise.
48340         * sysdeps/x86_64/mul_1.S: Likewise.
48341         * sysdeps/x86_64/rshift.S: Likewise.
48342         * sysdeps/x86_64/sub_n.S: Likewise.
48343         * sysdeps/x86_64/submul_1.S: Likewise.
48345 2010-09-01  Samuel Thibault  <samuel.thibault@ens-lyon.org>
48347         This aligns bits/sched.h onto sysdeps/unix/sysv/linux/bits/sched.h:
48348         Define __sched_param instead of SCHED_* and sched_param when
48349         <bits/sched.h> is included with __need_schedparam defined.
48350         * bits/sched.h [__need_schedparam]
48351         (SCHED_OTHER, SCHED_FIFO, SCHED_RR, sched_param): Do not define.
48352         [!__defined_schedparam && (__need_schedparam || _SCHED_H)]
48353         (__defined_schedparam): Define to 1.
48354         (__sched_param): New structure, identical to sched_param.
48355         (__need_schedparam): Undefine.
48357 2010-08-31  Mike Frysinger  <vapier@gentoo.org>
48359         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h (epoll_create2): Delete.
48360         (epoll_create1): Declare.
48362         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Fix typo.
48364 2010-08-31  Andreas Schwab  <schwab@redhat.com>
48366         [BZ #7066]
48367         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix array overflow when
48368         shifting retval into place.
48370 2010-09-01  Ulrich Drepper  <drepper@redhat.com>
48372         * nis/rpcsvc/nis.h: Update copyright notice.
48373         * nis/rpcsvc/nis.x: Likewise.
48374         * nis/rpcsvc/nis_callback.h: Likewise.
48375         * nis/rpcsvc/nis_callback.x: Likewise.
48376         * nis/rpcsvc/nis_object.x: Likewise.
48377         * nis/rpcsvc/nis_tags.h: Likewise.
48378         * nis/rpcsvc/yp.h: Likewise.
48379         * nis/rpcsvc/yp.x: Likewise.
48380         * nis/rpcsvc/ypupd.h: Likewise.
48381         * nis/yp_xdr.c: Likewise.
48382         * nis/ypupdate_xdr.c: Likewise.
48384         * sunrpc/pm_getport.c (__libc_rpc_getport): New function.  This is
48385         mainly the body of pmap_getport.  Add parameters to specify timeouts.
48386         (pmap_getport): Use __libc_rpc_getport.
48387         * sunrpc/Versions: Export __libc_rpc_getport with GLIBC_PRIVATE.
48388         * include/rpc/pmap_clnt.h: Declare __libc_rpc_getport.
48389         * nis/nis_findserv.c: Remove pmap_getport copy. Use __libc_rpc_getport.
48391 2010-08-31  Andreas Schwab  <schwab@linux-m68k.org>
48393         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Add
48394         fanotify_mark.
48396 2010-08-27  Roland McGrath  <roland@redhat.com>
48398         * sysdeps/i386/i686/multiarch/Makefile
48399         (CFLAGS-varshift.c): New variable.
48401 2010-08-27  Ulrich Drepper  <drepper@redhat.com>
48403         * sysdeps/i386/i686/multiarch/varshift.S: File removed.
48404         * sysdeps/i386/i686/multiarch/varshift.c: New file.
48406         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Move to .text.slow section.
48408         * sysdeps/x86_64/strlen.S: Minimal code improvement.
48410 2010-08-26  H.J. Lu  <hongjiu.lu@intel.com>
48412         * sysdeps/x86_64/strlen.S: Unroll the loop.
48413         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
48414         strlen-sse2 strlen-sse2-bsf.
48415         * sysdeps/x86_64/multiarch/strlen.S ((strlen): Return
48416         __strlen_no_bsf if bit_Slow_BSF is set.
48417         (__strlen_sse42): Removed.
48418         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: New file.
48419         * sysdeps/x86_64/multiarch/strlen-sse4.S: New file.
48421 2010-08-25  Roland McGrath  <roland@redhat.com>
48423         * sysdeps/x86_64/multiarch/varshift.S: File removed.
48424         * sysdeps/x86_64/multiarch/varshift.c: New file.
48425         * sysdeps/x86_64/multiarch/Makefile (CFLAGS-varshift.c): New variable.
48426         * sysdeps/x86_64/multiarch/varshift.h: Clean up decls, fix a cast.
48427         * sysdeps/x86_64/multiarch/memmove.c: Move decls around.
48428         * sysdeps/x86_64/multiarch/memmove_chk.c: Likewise.
48430 2010-08-25  H.J. Lu  <hongjiu.lu@intel.com>
48432         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
48433         strlen-sse2 strlen-sse2-bsf.
48434         * sysdeps/i386/i686/multiarch/strlen.S (strlen): Return
48435         __strlen_sse2_bsf if bit_Slow_BSF is unset.
48436         (__strlen_sse2): Removed.
48437         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: New file.
48438         * sysdeps/i386/i686/multiarch/strlen-sse2.S: New file.
48439         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Set
48440         bit_Slow_BSF for Atom.
48441         * sysdeps/x86_64/multiarch/init-arch.h (bit_Slow_BSF): Define.
48442         (index_Slow_BSF): Define.
48443         (HAS_SLOW_BSF): Define.
48445 2010-08-25  Ulrich Drepper  <drepper@redhat.com>
48447         [BZ #10851]
48448         * resolv/res_init.c (__res_vinit): When no server address at all
48449         is given default to loopback.
48451 2010-08-24  Roland McGrath  <roland@redhat.com>
48453         * configure.in: Remove config-name.h generation.
48454         * configure: Regenerated.
48455         * config-name.in: File removed.
48456         * scripts/config-uname.sh: New file.
48457         * posix/Makefile (uname.c): Depend on $(objdir)config-name.h.
48458         ($(objdir)config-name.h): New target.
48460         * sunrpc/rpc_parse.h: Avoid nested comment.
48462 2010-08-24  Richard Henderson  <rth@redhat.com>
48463             Ulrich Drepper  <drepper@redhat.com>
48464             H.J. Lu  <hongjiu.lu@intel.com>
48466         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add varshift.
48467         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Likewise.
48468         * sysdeps/x86_64/multiarch/strcspn-c.c: Include "varshift.h".
48469         Replace _mm_srli_si128 with __m128i_shift_right.  Replace
48470         _mm_alignr_epi8 with _mm_loadu_si128.
48471         * sysdeps/x86_64/multiarch/strspn-c.c: Likewise.
48472         * sysdeps/x86_64/multiarch/strstr.c: Include "varshift.h".
48473         (__m128i_shift_right): Removed.
48474         * sysdeps/i386/i686/multiarch/varshift.h: New file.
48475         * sysdeps/i386/i686/multiarch/varshift.S: New file.
48476         * sysdeps/x86_64/multiarch/varshift.h: New file.
48477         * sysdeps/x86_64/multiarch/varshift.S: New file.
48479 2010-08-21  Mike Frysinger  <vapier@gentoo.org>
48481         * configure.in: Move assembler checks to before sysdep dir checking.
48483 2010-08-20  Petr Baudis  <pasky@suse.cz>
48485         * LICENSES: Sync the sunrpc license.
48487 2010-08-19  Ulrich Drepper  <drepper@redhat.com>
48489         * sunrpc/auth_des.c: Update copyright notice once again.
48490         * sunrpc/auth_none.c: Likewise.
48491         * sunrpc/auth_unix.c: Likewise.
48492         * sunrpc/authdes_prot.c: Likewise.
48493         * sunrpc/authuxprot.c: Likewise.
48494         * sunrpc/bindrsvprt.c: Likewise.
48495         * sunrpc/clnt_gen.c: Likewise.
48496         * sunrpc/clnt_perr.c: Likewise.
48497         * sunrpc/clnt_raw.c: Likewise.
48498         * sunrpc/clnt_simp.c: Likewise.
48499         * sunrpc/clnt_tcp.c: Likewise.
48500         * sunrpc/clnt_udp.c: Likewise.
48501         * sunrpc/clnt_unix.c: Likewise.
48502         * sunrpc/des_crypt.c: Likewise.
48503         * sunrpc/des_soft.c: Likewise.
48504         * sunrpc/get_myaddr.c: Likewise.
48505         * sunrpc/getrpcport.c: Likewise.
48506         * sunrpc/key_call.c: Likewise.
48507         * sunrpc/key_prot.c: Likewise.
48508         * sunrpc/openchild.c: Likewise.
48509         * sunrpc/pm_getmaps.c: Likewise.
48510         * sunrpc/pm_getport.c: Likewise.
48511         * sunrpc/pmap_clnt.c: Likewise.
48512         * sunrpc/pmap_prot.c: Likewise.
48513         * sunrpc/pmap_prot2.c: Likewise.
48514         * sunrpc/pmap_rmt.c: Likewise.
48515         * sunrpc/rpc/auth.h: Likewise.
48516         * sunrpc/rpc/auth_unix.h: Likewise.
48517         * sunrpc/rpc/clnt.h: Likewise.
48518         * sunrpc/rpc/des_crypt.h: Likewise.
48519         * sunrpc/rpc/key_prot.h: Likewise.
48520         * sunrpc/rpc/netdb.h: Likewise.
48521         * sunrpc/rpc/pmap_clnt.h: Likewise.
48522         * sunrpc/rpc/pmap_prot.h: Likewise.
48523         * sunrpc/rpc/pmap_rmt.h: Likewise.
48524         * sunrpc/rpc/rpc.h: Likewise.
48525         * sunrpc/rpc/rpc_des.h: Likewise.
48526         * sunrpc/rpc/rpc_msg.h: Likewise.
48527         * sunrpc/rpc/svc.h: Likewise.
48528         * sunrpc/rpc/svc_auth.h: Likewise.
48529         * sunrpc/rpc/types.h: Likewise.
48530         * sunrpc/rpc/xdr.h: Likewise.
48531         * sunrpc/rpc_clntout.c: Likewise.
48532         * sunrpc/rpc_cmsg.c: Likewise.
48533         * sunrpc/rpc_common.c: Likewise.
48534         * sunrpc/rpc_cout.c: Likewise.
48535         * sunrpc/rpc_dtable.c: Likewise.
48536         * sunrpc/rpc_hout.c: Likewise.
48537         * sunrpc/rpc_main.c: Likewise.
48538         * sunrpc/rpc_parse.c: Likewise.
48539         * sunrpc/rpc_parse.h: Likewise.
48540         * sunrpc/rpc_prot.c: Likewise.
48541         * sunrpc/rpc_sample.c: Likewise.
48542         * sunrpc/rpc_scan.c: Likewise.
48543         * sunrpc/rpc_scan.h: Likewise.
48544         * sunrpc/rpc_svcout.c: Likewise.
48545         * sunrpc/rpc_tblout.c: Likewise.
48546         * sunrpc/rpc_util.c: Likewise.
48547         * sunrpc/rpc_util.h: Likewise.
48548         * sunrpc/rpcinfo.c: Likewise.
48549         * sunrpc/rpcsvc/bootparam_prot.x: Likewise.
48550         * sunrpc/rpcsvc/key_prot.x: Likewise.
48551         * sunrpc/rpcsvc/klm_prot.x: Likewise.
48552         * sunrpc/rpcsvc/mount.x: Likewise.
48553         * sunrpc/rpcsvc/nfs_prot.x: Likewise.
48554         * sunrpc/rpcsvc/nlm_prot.x: Likewise.
48555         * sunrpc/rpcsvc/rex.x: Likewise.
48556         * sunrpc/rpcsvc/rstat.x: Likewise.
48557         * sunrpc/rpcsvc/rusers.x: Likewise.
48558         * sunrpc/rpcsvc/sm_inter.x: Likewise.
48559         * sunrpc/rpcsvc/spray.x: Likewise.
48560         * sunrpc/rpcsvc/yppasswd.x: Likewise.
48561         * sunrpc/rtime.c: Likewise.
48562         * sunrpc/svc.c: Likewise.
48563         * sunrpc/svc_auth.c: Likewise.
48564         * sunrpc/svc_authux.c: Likewise.
48565         * sunrpc/svc_raw.c: Likewise.
48566         * sunrpc/svc_run.c: Likewise.
48567         * sunrpc/svc_simple.c: Likewise.
48568         * sunrpc/svc_tcp.c: Likewise.
48569         * sunrpc/svc_udp.c: Likewise.
48570         * sunrpc/svc_unix.c: Likewise.
48571         * sunrpc/svcauth_des.c: Likewise.
48572         * sunrpc/xcrypt.c: Likewise.
48573         * sunrpc/xdr.c: Likewise.
48574         * sunrpc/xdr_array.c: Likewise.
48575         * sunrpc/xdr_float.c: Likewise.
48576         * sunrpc/xdr_mem.c: Likewise.
48577         * sunrpc/xdr_rec.c: Likewise.
48578         * sunrpc/xdr_ref.c: Likewise.
48579         * sunrpc/xdr_sizeof.c: Likewise.
48580         * sunrpc/xdr_stdio.c: Likewise.
48582         * sysdeps/x86_64/multiarch/strcmp.S: Fix two typos in strncasecmp
48583         handling.
48585 2010-08-19  Andreas Schwab  <schwab@redhat.com>
48587         * sysdeps/i386/i686/multiarch/strspn.S [!SHARED]: Fix SSE4.2 check.
48589 2010-08-19  Luis Machado  <luisgpm@br.ibm.com>
48591         * sysdeps/powerpc/powerpc32/power7/memchr.S: New file.
48592         * sysdeps/powerpc/powerpc32/power7/memrchr.S: New file.
48593         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: New file.
48594         * sysdeps/powerpc/powerpc32/power7/strchr.S: New file.
48595         * sysdeps/powerpc/powerpc32/power7/strchrnul.S: New file.
48596         * sysdeps/powerpc/powerpc32/power7/strlen.S: New file.
48597         * sysdeps/powerpc/powerpc32/power7/strnlen.S: New file.
48598         * sysdeps/powerpc/powerpc64/power7/memchr.S: New file.
48599         * sysdeps/powerpc/powerpc64/power7/memrchr.S: New file.
48600         * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: New file.
48601         * sysdeps/powerpc/powerpc64/power7/strchr.S: New file.
48602         * sysdeps/powerpc/powerpc64/power7/strchrnul.S: New file.
48603         * sysdeps/powerpc/powerpc64/power7/strlen.S: New file.
48604         * sysdeps/powerpc/powerpc64/power7/strnlen.S: New file.
48606 2010-07-26  Anton Blanchard  <anton@samba.org>
48608         * malloc/malloc.c (sYSTRIm): Replace divide and multiply with mask.
48609         * malloc/arena.c (heap_trim): Likewise.
48611 2010-08-16  Ulrich Drepper  <drepper@redhat.com>
48613         * sysdeps/unix/sysv/linux/syscalls.list: Add entry for fanotify_init
48614         here.  Not...
48615         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: ...here...
48616         * sysdeps/unix/sysv/linux/i386/syscalls.list: ... orhere.
48618 2010-08-12  H.J. Lu  <hongjiu.lu@intel.com>
48620         * sysdeps/i386/elf/Makefile: New file.
48622 2010-08-14  Andreas Schwab  <schwab@linux-m68k.org>
48624         * sysdeps/unix/sysv/linux/sys/fanotify.h: Remove third argument
48625         from fanotify_init.
48626         * sysdeps/unix/sysv/linux/i386/syscalls.list: Likewise.
48627         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
48629 2010-08-15  Ulrich Drepper  <drepper@redhat.com>
48631         * sysdeps/x86_64/strcmp.S: Use correct register for fourth parameter
48632         of strncasecmp_l.
48633         * sysdeps/multiarch/strcmp.S: Likewise.
48635 2010-08-14  Ulrich Drepper  <drepper@redhat.com>
48637         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
48638         strncase_l-nonascii.
48639         * sysdeps/x86_64/multiarch/Makefile [subdir=string] (sysdep_routines):
48640         Add strncase_l-ssse3.
48641         * sysdeps/x86_64/multiarch/strcmp.S: Prepare for use as strncasecmp.
48642         * sysdeps/x86_64/strcmp.S: Likewise.
48643         * sysdeps/x86_64/multiarch/strncase_l-ssse3.S: New file.
48644         * sysdeps/x86_64/multiarch/strncase_l.S: New file.
48645         * sysdeps/x86_64/strncase.S: New file.
48646         * sysdeps/x86_64/strncase_l-nonascii.c: New file.
48647         * sysdeps/x86_64/strncase_l.S: New file.
48648         * string/Makefile (strop-tests): Add strncasecmp.
48649         * string/test-strncasecmp.c: New file.
48651         * sysdeps/x86_64/strcasecmp_l-nonascii.c: Add prototype to avoid
48652         warning.
48654         * sysdeps/x86_64/strcmp.S: Move definition of NO_NOLOCALE_ALIAS to...
48655         * sysdeps/x86_64/multiarch/strcasecmp_l-ssse3.S: ... here.
48657 2010-08-14  Andreas Schwab  <schwab@linux-m68k.org>
48659         * sysdeps/unix/sysv/linux/prlimit.c: Make it compile.
48661 2010-08-12  Ulrich Drepper  <drepper@redhat.com>
48663         * sysdeps/unix/sysv/linux/bits/termios.h: Define EXTPROC.
48664         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
48665         * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
48667 2010-05-01  Alan Modra  <amodra@gmail.com>
48669         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Correct cfi for r24.
48670         * sysdeps/powerpc/powerpc64/bsd-_setjmp.S: Move contents..
48671         * sysdeps/powerpc/powerpc64/bsd-setjmp.S: ..and these too..
48672         * sysdeps/powerpc/powerpc64/setjmp.S: ..to here..
48673         * sysdeps/powerpc/powerpc64/setjmp-common.S: ..and here, with some
48674         tidying.  Don't tail-call __sigjmp_save for static lib.
48675         * sysdeps/powerpc/powerpc64/sysdep.h (SAVE_ARG, REST_ARG): Correct
48676         save location.
48677         (CFI_SAVE_ARG, CFI_REST_ARG): New macros.
48678         (CALL_MCOUNT): Add eh info, and nop after bl.
48679         (TAIL_CALL_SYSCALL_ERROR): New macro.
48680         (PSEUDO_RET): Use it.
48681         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve):
48682         Correct save location of integer regs and cr.
48683         (_dl_profile_resolve): Correct cr save location.  Delete nops
48684         after bl when SHARED.  Reduce cfi size a little by better
48685         placement of cfi directives.
48686         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S (__copysign): Don't
48687         make a stack frame.  Instead use parm save area as a temp.
48688         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S (__brk): Don't
48689         make a stack frame.  Use TAIL_CALL_SYSCALL_ERROR.
48690         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
48691         Don't make a stack frame for parent, use parm save area.
48692         Increase child stack frame to 112 bytes.  Don't save unused reg,
48693         and adjust reg usage.  Set up cfi on error recovery and
48694         epilogue of parent, and use TAIL_CALL_SYSCALL_ERROR, PSEUDO_RET.
48695         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
48696         (__makecontext): Add dummy nop after jump to exit.
48697         * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S (__socket):
48698         Use correct parm save area and cr save, reduce stack frame.
48699         Correct cfi for possible PSEUDO_RET frame setup.
48700         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S (__vfork):
48701         Branch to local label emitted by PSEUDO_RET rather than
48702         __syscall_error.
48704 2010-08-12  Andreas Schwab  <schwab@redhat.com>
48706         [BZ #11904]
48707         * locale/programs/locale.c (print_assignment): New function.
48708         (show_locale_vars): Use it.
48710 2010-08-11  Ulrich Drepper  <drepper@redhat.com>
48712         * sysdeps/unix/sysv/linux/bits/statfs.h (struct statfs): Add f_flags
48713         field.
48714         (struct statfs64): Likewise.
48715         (_STATFS_F_FLAGS): Define.
48716         * sysdeps/unix/sysv/linux/s390/bits/statfs.h: Likewise.
48717         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
48718         Don't define if __ASSUME_STATFS_F_FLAGS is defined.
48719         (ST_VALID): Define locally.
48720         (INTERNAL_STATVFS): If f_flags has ST_VALID set don't call
48721         __statvfs_getflags, use the provided value.
48722         * sysdeps/unix/sysv/linux/kernel-features.h: Define
48723         __ASSUME_STATFS_F_FLAGS.
48725         * sysdeps/unix/sysv/linux/sys/inotify.h (IN_EXCL_UNLINK): Define.
48727         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers):
48728         Add sys/fanotify.h.
48729         * sysdeps/unix/sysv/linux/Versions [libc]: Export fanotify_init and
48730         fanotify_mask for GLIBC_2.13.
48731         * sysdeps/unix/sysv/linux/i386/syscalls.list: Add entries for
48732         fanotify_init and fanotify_mark.
48733         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
48734         * sysdeps/unix/sysv/linux/sys/fanotify.h: New file.
48736         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_routines):
48737         Add prlimit.
48738         * sysdeps/unix/sysv/linux/Versions [libc]: Export prlimit and
48739         prlimit64 for GLIBC_2.13.
48740         * sysdeps/unix/sysv/linux/bits/resource.h: Declare prlimit and
48741         prlimit64.
48742         * sysdeps/unix/sysv/linux/i386/syscalls.list: Add entry for prlimit64
48743         syscall.
48744         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Likewise.
48745         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Likewise.
48746         * sysdeps/unix/sysv/linux/sh/syscalls.list: Likewise.
48747         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.lis: Likewise.
48748         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.  Also
48749         add prlimit alias.
48750         * sysdeps/unix/sysv/linux/prlimit.c: New file.
48752         [BZ #11903]
48753         * sysdeps/generic/netinet/ip.h (IPTOS_CLASS): Fix definition.
48754         Patch by Evgeni Bikov <bikovevg@iitp.ru>.
48756         * nss/Makefile: Add rules to build and run tst-nss-test1.
48757         * shlib-versions: Add entry for libnss_test1.
48758         * nss/nss_test1.c: New file.
48759         * nss/tst-nss-test1.c: New file.
48761         * nss/nsswitch.c (__nss_database_custom): Define new variable.
48762         (__nss_configure_lookup): Set appropriate entry in
48763         __nss_configure_lookup to true.
48764         * nss/nsswitch.h: Define enum with indeces of databases in
48765         databases and __nss_database_custom arrays.  Declare
48766         __nss_database_custom.
48767         * grp/initgroups.c (internal_getgrouplist): Use __nss_database_custom
48768         to avoid using nscd when custom rules are installed.
48769         * nss/getXXbyYY_r.c: Likewise.
48770         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
48772         * nss/nss_files/files-parse.c: Whitespace fixes.
48774 2010-08-09  Ulrich Drepper  <drepper@redhat.com>
48776         [BZ #11883]
48777         * posix/fnmatch.c: Keep track of alloca use and fall back on malloc.
48778         * posix/fnmatch_loop.c: Likewise.
48780 2010-07-17  Andi Kleen  <ak@linux.intel.com>
48782         * sysdeps/i386/i386-mcount.S (__fentry__): Define.
48783         * sysdeps/x86_64/_mcount.S (__fentry__): Define.
48784         * stdlib/Versions (__fentry__): Add for GLIBC 2.13
48785         * Versions.def [GLIBC_2.13]: Add.
48787 2010-08-06  Ulrich Drepper  <drepper@redhat.com>
48789         * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
48790         Also fail if tpwd after pwuid call is NULL.
48792 2010-07-31  Samuel Thibault  <samuel.thibault@ens-lyon.org>
48794         * hurd/hurdselect.c (_hurd_select): Round timeout up instead of down
48795         when converting to ms.
48797 2010-06-06  Samuel Thibault  <samuel.thibault@ens-lyon.org>
48799         * sysdeps/mach/hurd/ttyname.c (ttyname): Replace MIG_BAD_ID and
48800         EOPNOTSUPP errors with ENOTTY.
48801         * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Replace MIG_BAD_ID and
48802         EOPNOTSUPP errors with ENOTTY.
48804 2010-07-31  Ulrich Drepper  <drepper@redhat.com>
48806         * sysdeps/x86_64/multiarch/Makefile [subdir=string] (sysdep_routines):
48807         Add strcasecmp_l-ssse3.
48808         * sysdeps/x86_64/multiarch/strcmp.S: Add support to compile for
48809         strcasecmp.
48810         * sysdeps/x86_64/strcmp.S: Allow more flexible compiling of strcasecmp.
48811         * sysdeps/x86_64/multiarch/strcasecmp_l.S: New file.
48812         * sysdeps/x86_64/multiarch/strcasecmp_l-ssse3.S: New file.
48814 2010-07-30  Ulrich Drepper  <drepper@redhat.com>
48816         * sysdeps/x86_64/multiarch/strcmp.S: Pretty printing.
48818         * string/Makefile (strop-tests): Add strcasecmp.
48819         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
48820         strcasecmp_l-nonascii.
48821         (gen-as-const-headers): Add locale-defines.sym.
48822         * sysdeps/x86_64/strcmp.S: Add support for strcasecmp implementation.
48823         * sysdeps/x86_64/strcasecmp.S: New file.
48824         * sysdeps/x86_64/strcasecmp_l.S: New file.
48825         * sysdeps/x86_64/strcasecmp_l-nonascii.c: New file.
48826         * sysdeps/x86_64/locale-defines.sym: New file.
48827         * string/test-strcasecmp.c: New file.
48829         * string/test-strcasestr.c: Test both ends of the range of characters.
48830         * sysdeps/x86_64/multiarch/strstr.c: Fix UCHIGH definition.
48832 2010-07-29  Roland McGrath  <roland@redhat.com>
48834         [BZ #11856]
48835         * manual/locale.texi (Yes-or-No Questions): Fix example code.
48837 2010-07-27  Ulrich Drepper  <drepper@redhat.com>
48839         * sysdeps/x86_64/multiarch/strcmp-ssse3.S: Avoid compiling the file
48840         for ld.so.
48842 2010-07-27  Andreas Schwab  <schwab@redhat.com>
48844         * manual/memory.texi (Malloc Tunable Parameters): Document
48845         M_PERTURB.
48847 2010-07-26  Roland McGrath  <roland@redhat.com>
48849         [BZ #11840]
48850         * configure.in (-fgnu89-inline check): Set and substitute
48851         gnu89_inline, not libc_cv_gnu89_inline.
48852         * configure: Regenerated.
48853         * config.make.in (gnu89-inline-CFLAGS): Use @gnu89_inline@.
48855 2010-07-26  Ulrich Drepper  <drepper@redhat.com>
48857         * string/test-strnlen.c: New file.
48858         * string/Makefile (strop-tests): Add strnlen.
48859         * string/tester.c (test_strnlen): Add a few more test cases.
48860         * string/tst-strlen.c: Better error reporting.
48862         * sysdeps/x86_64/strnlen.S: New file.
48864 2010-07-24  Ulrich Drepper  <drepper@redhat.com>
48866         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu_tolower): Use
48867         lower-latency instructions.
48869 2010-07-23  Ulrich Drepper  <drepper@redhat.com>
48871         * string/test-strcasestr.c: New file.
48872         * string/test-strstr.c: New file.
48873         * string/Makefile (strop-tests): Add strstr and strcasestr.
48874         * string/str-two-way.h: Don't undefine MAX.
48875         * string/strcasestr.c: Don't define alias if NO_ALIAS is defined.
48877 2010-07-21  Andreas Schwab  <schwab@redhat.com>
48879         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
48880         strcasestr-nonascii.
48881         (CFLAGS-strcasestr-nonascii.c): Define.
48882         * sysdeps/i386/i686/multiarch/strcasestr-nonascii.c: New file.
48883         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c (STRSTR_SSE42):
48884         Remove unused attribute.
48886 2010-07-20  Roland McGrath  <roland@redhat.com>
48888         * elf/dl-sysdep.c (_dl_important_hwcaps): Add dsocaps mask to
48889         dl_hwcap_mask as well as dl_hwcap.  Without this, dsocaps matching in
48890         ld.so.cache was broken.  With it, there is no way to disable dsocaps
48891         like LD_HWCAP_MASK can disable hwcaps.
48893 2010-06-02  Emilio Pozuelo Monfort  <pochu27@gmail.com>
48895         * sysdeps/mach/hurd/sendmsg.c (__libc_sendmsg): Fix memory leaks.
48897 2010-07-16  Ulrich Drepper  <drepper@redhat.com>
48899         * sysdeps/x86_64/multiarch/strstr.c: Rewrite to avoid indirect function
48900         call in strcasestr.
48901         * sysdeps/x86_64/multiarch/strcasestr.c: Declare
48902         __strcasestr_sse42_nonascii.
48903         * sysdeps/x86_64/multiarch/Makefile: Add rules to build
48904         strcasestr-nonascii.c.
48905         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: New file.
48907 2010-06-15  Luis Machado  <luisgpm@br.ibm.com>
48909         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: New file.
48910         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysignf.S: New file.
48911         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: New file.
48912         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysignf.S: New file.
48914 2010-07-09  Ulrich Drepper  <drepper@redhat.com>
48916         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Use __fcntl not
48917         fcntl.
48919 2010-07-06  Andreas Schwab  <schwab@redhat.com>
48921         [BZ #11577]
48922         * elf/dl-version.c (match_symbol): Don't pass NULL occation to
48923         dl_signal_cerror.
48925 2010-07-06  Ulrich Drepper  <drepper@redhat.com>
48927         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Implement
48928         _PC_PIPE_BUF using F_GETPIPE_SZ.
48930 2010-07-05  Roland McGrath  <roland@redhat.com>
48932         * manual/arith.texi (Rounding Functions): Fix rint description
48933         implicit in round description.
48935 2010-07-02  Ulrich Drepper  <drepper@redhat.com>
48937         * elf/Makefile: Fix linking for a few tests to make recent linker
48938         happy.
48940 2010-06-30  Andreas Schwab  <schwab@redhat.com>
48942         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Readd
48943         $(common-objpfx)libc_nonshared.a.
48945 2010-06-21  Luis Machado  <luisgpm@br.ibm.com>
48947         * sysdeps/powerpc/powerpc32/970/fpu/Implies: Remove.
48948         * sysdeps/powerpc/powerpc32/power5/fpu/Implies: Remove.
48949         * sysdeps/powerpc/powerpc32/power5+/fpu/Implies: Remove.
48950         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: Remove.
48951         * sysdeps/powerpc/powerpc64/970/fpu/Implies: Remove.
48952         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Remove.
48953         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Remove.
48954         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: Remove.
48955         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/fpu/Implies: Remove.
48956         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/fpu/Implies: Remove.
48957         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/fpu/Implies: Remove.
48958         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/fpu/Implies: Remove.
48959         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/Implies: Remove.
48960         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/fpu/Implies: Remove.
48961         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/fpu/Implies: Remove.
48962         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/fpu/Implies: Remove.
48963         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/fpu/Implies: Remove.
48964         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/fpu/Implies: Remove.
48965         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/fpu/Implies: Remove.
48966         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/Implies: Remove.
48967         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/fpu/Implies: Remove.
48968         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/fpu/Implies: Remove.
48969         * sysdeps/powerpc/powerpc32/970/Implies: Point to power4.
48970         * sysdeps/powerpc/powerpc32/power5/Implies: Point to power4.
48971         * sysdeps/powerpc/powerpc32/power5+/Implies: Point to power5.
48972         * sysdeps/powerpc/powerpc32/power6/Implies: Point to power5+.
48973         * sysdeps/powerpc/powerpc32/power6x/Implies: Point to power6.
48974         * sysdeps/powerpc/powerpc64/970/Implies: Point to power4.
48975         * sysdeps/powerpc/powerpc64/power5/Implies: Point to power4.
48976         * sysdeps/powerpc/powerpc64/power5+/Implies: Point to power5.
48977         * sysdeps/powerpc/powerpc64/power6/Implies: Point to power5+.
48978         * sysdeps/powerpc/powerpc64/power6x/Implies: Point to power6.
48979         * sysdeps/powerpc/powerpc32/power7/Implies: New file.
48980         * sysdeps/powerpc/powerpc64/power7/Implies: New file.
48981         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/Implies: New file.
48982         * sysdeps/unix/sysv/linux/powerpc/powerpc32/cell/Implies: New file.
48983         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/Implies: New file.
48984         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/Implies: New file.
48985         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/Implies: New file.
48986         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/Implies: New file.
48987         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/Implies: New file.
48988         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/Implies: New file.
48989         * sysdeps/unix/sysv/linux/powerpc/powerpc64/cell/Implies: New file.
48990         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/Implies: New file.
48991         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/Implies: New file.
48992         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/Implies: New file.
48993         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/Implies: New file.
48994         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/Implies: New file.
48996 2010-06-25  H.J. Lu  <hongjiu.lu@intel.com>
48998         * debug/memmove_chk.c (__memmove_chk): Renamed to ...
48999         (MEMMOVE_CHK): ...this.  Default to __memmove_chk.
49000         * string/memmove.c (memmove): Renamed to ...
49001         (MEMMOVE): ...this.  Default to memmove.
49002         * sysdeps/x86_64/memcpy.S: Use ENTRY_CHK and END_CHK.
49003         * sysdeps/x86_64/sysdep.h (ENTRY_CHK): Define.
49004         (END_CHK): Define.
49005         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
49006         memcpy-ssse3 mempcpy-ssse3 memmove-ssse3 memcpy-ssse3-back
49007         mempcpy-ssse3-back memmove-ssse3-back.
49008         * sysdeps/x86_64/multiarch/bcopy.S: New file .
49009         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: New file.
49010         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: New file.
49011         * sysdeps/x86_64/multiarch/memcpy.S: New file.
49012         * sysdeps/x86_64/multiarch/memcpy_chk.S: New file.
49013         * sysdeps/x86_64/multiarch/memmove-ssse3-back.S: New file.
49014         * sysdeps/x86_64/multiarch/memmove-ssse3.S: New file.
49015         * sysdeps/x86_64/multiarch/memmove.c: New file.
49016         * sysdeps/x86_64/multiarch/memmove_chk.c: New file.
49017         * sysdeps/x86_64/multiarch/mempcpy-ssse3-back.S: New file.
49018         * sysdeps/x86_64/multiarch/mempcpy-ssse3.S: New file.
49019         * sysdeps/x86_64/multiarch/mempcpy.S: New file.
49020         * sysdeps/x86_64/multiarch/mempcpy_chk.S: New file.
49021         * sysdeps/x86_64/multiarch/init-arch.h (bit_Fast_Copy_Backward):
49022         Define.
49023         (index_Fast_Copy_Backward): Define.
49024         (HAS_ARCH_FEATURE): Define.
49025         (HAS_FAST_REP_STRING): Define.
49026         (HAS_FAST_COPY_BACKWARD): Define.
49028 2010-06-21  Andreas Schwab  <schwab@redhat.com>
49030         * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
49031         Restore proper fallback handling.
49033 2010-06-19  Ulrich Drepper  <drepper@redhat.com>
49035         [BZ #11701]
49036         * posix/group_member.c (__group_member): Correct checking loop.
49038         * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid): Handle
49039         OOM in getpwuid_r correctly.  Return error number when the caller
49040         should return, otherwise -1.
49041         (getlogin_r): Adjust to return also for result of __getlogin_r_loginuid
49042         call returning > 0 value.
49043         * sysdeps/unix/sysv/linux/getlogin.c (getlogin): Likewise.
49045 2010-06-07  Andreas Schwab  <schwab@redhat.com>
49047         * dlfcn/Makefile: Remove explicit dependencies on libc.so and
49048         libc_nonshared.a from targets in modules-names.
49050 2010-06-02  Kirill A. Shutemov  <kirill@shutemov.name>
49052         * elf/dl-reloc.c: Flush cache after solving TEXTRELs if arch
49053         requires it.
49055 2010-06-10  Luis Machado  <luisgpm@br.ibm.com>
49057         * sysdeps/powerpc/powerpc32/power7/memcmp.S: New file
49058         * sysdeps/powerpc/powerpc64/power7/memcmp.S: New file.
49059         * sysdeps/powerpc/powerpc32/power7/strncmp.S: New file.
49060         * sysdeps/powerpc/powerpc64/power7/strncmp.S: New file.
49062 2010-06-02  Andreas Schwab  <schwab@redhat.com>
49064         * nis/nss_nis/nis-initgroups.c (get_uid): Properly resize buffer.
49066 2010-06-14  Ulrich Drepper  <drepper@redhat.com>
49068         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Define F_SETPIPE_SZ
49069         and F_GETPIPE_SZ.
49070         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
49071         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
49072         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
49073         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
49074         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
49075         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise
49077 2010-06-14  Roland McGrath  <roland@redhat.com>
49079         * manual/libc.texinfo (@copying): Change to GFDL v1.3.
49081 2010-06-07  Jakub Jelinek  <jakub@redhat.com>
49083         * libio/stdio.h (sscanf, vsscanf): Use __REDIRECT_NTH instead of
49084         __REDIRECT followed by __THROW.
49085         * wcsmbs/wchar.h (swscanf, vswscanf): Likewise.
49086         * posix/getopt.h (getopt): Likewise.
49088 2010-06-02  Emilio Pozuelo Monfort  <pochu27@gmail.com>
49090         * hurd/lookup-at.c (__file_name_lookup_at): Accept
49091         AT_SYMLINK_FOLLOW in AT_FLAGS.  Fail with EINVAL if both
49092         AT_SYMLINK_FOLLOW and AT_SYMLINK_NOFOLLOW are present
49093         in AT_FLAGS.
49094         * hurd/hurd/fd.h (__file_name_lookup_at): Update comment.
49095         * sysdeps/mach/hurd/linkat.c (linkat): Pass O_NOLINK in FLAGS.
49097 2010-05-28  Luis Machado  <luisgpm@br.ibm.com>
49099         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Exchange srdi for srwi.
49101 2010-05-26  H.J. Lu  <hongjiu.lu@intel.com>
49103         [BZ #11640]
49104         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
49105         Properly check family and model.
49107 2010-05-26  Takashi Yoshii  <takashi.yoshii.zj@renesas.com>
49109         * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Fix iov[] size.
49111 2010-05-24  Luis Machado  <luisgpm@br.ibm.com>
49113         * sysdeps/powerpc/powerpc32/power7/memset.S: POWER7 32-bit memset fix.
49115 2010-05-21  Ulrich Drepper  <drepper@redhat.com>
49117         * elf/dl-runtime.c (_dl_profile_fixup): Don't crash on unresolved weak
49118         symbol reference.
49120 2010-05-19  Andreas Schwab  <schwab@redhat.com>
49122         * elf/dl-runtime.c (_dl_fixup): Don't crash on unresolved weak
49123         symbol reference.
49125 2010-05-21  Andreas Schwab  <schwab@redhat.com>
49127         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add recvmmsg
49128         and internal_recvmmsg.
49129         * sysdeps/unix/sysv/linux/recvmmsg.c: New file.
49130         * sysdeps/unix/sysv/linux/internal_recvmmsg.S: New file.
49131         * sysdeps/unix/sysv/linux/socketcall.h (SOCKOP_recvmmsg): Define.
49132         * sysdeps/unix/sysv/linux/syscalls.list (recvmmsg): Remove.
49134         * sunrpc/clnt_tcp.c (clnttcp_control): Add missing break.
49135         * sunrpc/clnt_udp.c (clntudp_control): Likewise.
49136         * sunrpc/clnt_unix.c (clntunix_control): Likewise.
49138 2010-05-20  Andreas Schwab  <schwab@redhat.com>
49140         * sysdeps/unix/sysv/linux/sys/timex.h: Use __REDIRECT_NTH.
49142 2010-05-17  Luis Machado  <luisgpm@br.ibm.com>
49144         POWER7 optimizations.
49145         * sysdeps/powerpc/powerpc64/power7/memset.S: New file.
49146         * sysdeps/powerpc/powerpc32/power7/memset.S: New file.
49148 2010-05-19  Ulrich Drepper  <drepper@redhat.com>
49150         * version.h: Update for 2.13 development version.
49152 2010-05-12  Andrew Stubbs  <ams@codesourcery.com>
49154         * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Really disable all
49155         exceptions.  Return 0.
49157 2010-05-07  Roland McGrath  <roland@redhat.com>
49159         * elf/ldconfig.c (main): Add a const.
49161 2010-05-06  Ulrich Drepper  <drepper@redhat.com>
49163         * nss/getent.c (idn_flags): Default to AI_IDN|AI_CANONIDN.
49164         (args_options): Add no-idn option.
49165         (ahosts_keys_int): Add idn_flags to ai_flags.
49166         (parse_option): Handle 'i' option to clear idn_flags.
49168         * malloc/malloc.c (_int_free): Possible race in the most recently
49169         added check.  Only act on the data if no current modification
49170         happened.
49172 See ChangeLog.17 for earlier changes.