]> git.ipfire.org Git - thirdparty/glibc.git/blame_incremental - ChangeLog
Fix libio/bug-ungetwc1.c warning.
[thirdparty/glibc.git] / ChangeLog
... / ...
CommitLineData
12014-11-27 Joseph Myers <joseph@codesourcery.com>
2
3 * libio/bug-ungetwc1.c (do_test): Verify results of getwc and
4 feof.
5
6 * dlfcn/failtestmod.c (constr): Do not store result of dlsym in a
7 variable.
8
92014-11-27 Stefan Liebler <stli@linux.vnet.ibm.com>
10
11 * nscd/connections.c: Include libc-internal.h because of macro
12 usage ignore_value.
13
142014-11-27 Siddhesh Poyarekar <siddhesh@redhat.com>
15
16 * string/bits/string3.h (__warn_memset_zero_len): Don't
17 declare for gcc newer than 5.0.
18 (memset): Don't test for zero-length __LEN for gcc newer than
19 5.0.
20
212014-11-27 Joseph Myers <joseph@codesourcery.com>
22
23 * stdio-common/tst-fmemopen.c (do_test): Cast st_size values to
24 size_t for %zu format.
25
26 * nss/tst-nss-test1.c (do_test): Use %td printf format for pointer
27 difference, not %ju.
28
292014-11-26 Joseph Myers <joseph@codesourcery.com>
30
31 * include/libc-internal.h (ignore_value): New macro.
32 * nscd/connections.c (restart): Wrap calls to setuid and setgid
33 with ignore_value.
34
35 * sysdeps/mips/__longjmp.c (____longjmp): Use prototype
36 definition.
37
38 * nptl/tst-cancel-self-cancelstate.c (do_test): Cast argument of
39 pthread_cleanup_push to void *.
40
41 * sysdeps/unix/sysv/linux/arm/libc-do-syscall.S (_FORTIFY_SOURCE):
42 Undefine.
43
44 [BZ #16619]
45 [BZ #16740]
46 * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Use 1LL << 52
47 instead of 1L << 52.
48
49 * libio/bug-rewind.c (do_test): Check fwscanf return values.
50 * libio/bug-rewind2.c (do_test): Likewise.
51
52 * debug/test-stpcpy_chk-ifunc.c: Remove file.
53 * debug/test-strcpy_chk-ifunc.c: Likewise.
54 * wcsmbs/test-wcschr-ifunc.c: Likewise.
55 * wcsmbs/test-wcscmp-ifunc.c: Likewise.
56 * wcsmbs/test-wcscpy-ifunc.c: Likewise.
57 * wcsmbs/test-wcslen-ifunc.c: Likewise.
58 * wcsmbs/test-wcsrchr-ifunc.c: Likewise.
59 * wcsmbs/test-wmemcmp-ifunc.c: Likewise.
60 * Rules [$(multi-arch) = no] (tests): Do not filter out
61 $(tests-ifunc).
62 [$(multi-arch) = no] (xtests): Do not filter out $(xtests-ifunc).
63 * debug/Makefile (tests-ifunc): Remove variable.
64 (tests): Do not add $(tests-ifunc).
65 * wcsmbs/Makefile (tests-ifunc): Remove variable.
66 (tests): Do not add $(tests-ifunc).
67 * benchtests/bench-string.h (TEST_IFUNC): Remove macro.
68 [TEST_IFUNC]: Remove conditionals.
69 * string/test-string.h (TEST_IFUNC): Remove macro.
70 [TEST_IFUNC]: Remove conditionals.
71
72 * string/test-strchr.c [!WIDE] (L): New macro.
73 [WIDE] (L): Likewise.
74 (check1): Use CHAR instead of char. Use L on string and character
75 constants.
76
772014-11-26 Adhemerval Zanella <azanella@linux.ibm.com>
78
79 * csu/tst-atomic.c (do_test): Add atomic_exchange_and_add_{acq,rel}
80 tests.
81 * sysdeps/powerpc/bits/atomic.h
82 (__arch_atomic_exchange_and_add_32_acq): Add definition.
83 (__arch_atomic_exchange_and_add_32_rel): Likewise.
84 (atomic_exchange_and_add_acq): Likewise.
85 (atomic_exchange_and_add_rel): Likewise.
86 * sysdeps/powerpc/powerpc32/bits/atomic.h
87 (__arch_atomic_exchange_and_add_64_acq): Add definition.
88 (__arch_atomic_exchange_and_add_64_rel): Likewise.
89 * sysdeps/powerpc/powerpc64/bits/atomic.h
90 (__arch_atomic_exchange_and_add_64_acq): Add definition.
91 (__arch_atomic_exchange_and_add_64_rel): Likewise.
92
932014-11-26 Torvald Riegel <triegel@redhat.com>
94
95 * nptl/tpp.c (__init_sched_fifo_prio, __pthread_tpp_change_priority):
96 Change synchronization of __sched_fifo_min_prio and
97 __sched_fifo_max_prio.
98 * nptl/pthread_mutexattr_getprioceiling.c
99 (pthread_mutexattr_getprioceiling): Likewise.
100 * nptl/pthread_mutexattr_setprioceiling.c
101 (pthread_mutexattr_setprioceiling): Likewise.
102 * nptl/pthread_mutex_init.c (__pthread_mutex_init): Likewise.
103 * nptl/pthread_mutex_setprioceiling.c (pthread_mutex_setprioceiling):
104 Likewise.
105
1062014-11-26 Joseph Myers <joseph@codesourcery.com>
107
108 * setjmp/jmpbug.c (test): Make foo volatile and cast it to
109 void.
110
1112014-11-25 Joseph Myers <joseph@codesourcery.com>
112
113 * stdio-common/tst-printf-round.c (test_hex_in_one_mode): Make
114 third argument const.
115
1162014-11-25 Paul Eggert <eggert@cs.ucla.edu>
117
118 fnmatch: work around GCC compiler warning bug with uninit var
119 * posix/fnmatch_loop.c (FCT): Use a scalar not a one-item array.
120 This works around a bug with x86-64 GCC 4.9.2 and earlier
121 where 'gcc -O2 -Wmaybe-uninitialized' incorrectly complains
122 "../locale/weightwc.h:93:7: warning: '*((void *)&str+4)' may be
123 used uninitialized in this function [-Wmaybe-uninitialized]".
124
1252014-11-25 Joseph Myers <joseph@codesourcery.com>
126
127 * posix/bug-regex31.c (main): Return RES not 0.
128
1292014-11-25 Anton Blanchard <anton@samba.org>
130
131 * sysdeps/powerpc/bits/atomic.h
132 (__arch_compare_and_exchange_bool_64_rel): Load from mem.
133
1342014-11-24 Sterling Augustine <saugustine@google.com>
135
136 * sysdeps/x86_64/start.S (_start): Use ENTRY and END macros.
137
1382014-11-24 Ryan Cumming <etaoins@gmail.com>
139
140 [BZ #17608]
141 * sysdeps/unix/sysv/linux/bits/time.h: Define CLOCK_TAI.
142
1432014-11-24 Joseph Myers <joseph@codesourcery.com>
144
145 [BZ #17633]
146 * stdio-common/perror.c (perror): Call __fileno instead of fileno.
147 * conform/Makefile (test-xfail-ISO/stdio.h/linknamespace): Remove
148 variable.
149 (test-xfail-ISO99/stdio.h/linknamespace): Likewise.
150 (test-xfail-ISO11/stdio.h/linknamespace): Likewise.
151
1522014-11-24 Wilco Dijkstra <wdijkstr@arm.com>
153
154 * string/strncpy.c (strncpy): Improve performance by using memset.
155
1562014-11-24 Wilco Dijkstra <wdijkstr@arm.com>
157
158 * string/strcpy.c (strcpy):
159 Improve performance by using strlen and memcpy.
160
1612014-11-24 Leonhard Holz <leonhard.holz@web.de>
162
163 * string/strcoll_l.c (get_next_seq): __always_inline.
164 * string/strcoll_l.c (do_compare): __always_inline.
165
1662014-11-24 Siddhesh Poyarekar <siddhesh@redhat.com>
167
168 * include/bits/stdlib-float.h: Use IS_IN only if _ISOMAC is
169 defined.
170 * include/mqueue.h: Likewise.
171 * include/stdlib.h: Likewise.
172
173 * stdlib/isomac.c (fmt): Replace NOT_IN_libc with IN_MODULE.
174 (get_null_defines): Adjust.
175 * sunrpc/Makefile: Adjust comment.
176 * Makerules (CPPFLAGS-nonlib): Remove NOT_IN_libc.
177 * elf/Makefile (CPPFLAGS-sotruss-lib): Likewise.
178 (CFLAGS-interp.c): Likewise.
179 (CFLAGS-ldconfig.c): Likewise.
180 (CPPFLAGS-.os): Likewise.
181 * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
182 * extra-lib.mk (CPPFLAGS-$(lib)): Likewise.
183 * extra-modules.mk (extra-modules.mk): Likewise.
184 * iconv/Makefile (CPPFLAGS-iconvprogs): Likewise.
185 * locale/Makefile (CPPFLAGS-locale_programs): Likewise.
186 * malloc/Makefile (CPPFLAGS-memusagestat): Likewise.
187 * nscd/Makefile (CPPFLAGS-nscd): Likewise.
188 * nss/Makefile (CPPFLAGS-nss_test1): Likewise.
189 * stdlib/Makefile (CFLAGS-tst-putenvmod.c): Likewise.
190 * sysdeps/gnu/Makefile ($(objpfx)errlist-compat.c): Likewise.
191 * sysdeps/unix/sysv/linux/Makefile (CPPFLAGS-lddlibc4): Likewise.
192 * iconvdata/Makefile (CPPFLAGS): Likewise.
193 (cpp-srcs-left): Add libof for all iconvdata routines.
194 * bits/stdio-lock.h: Replace NOT_IN_libc with IS_IN.
195 * include/assert.h: Likewise.
196 * include/ctype.h: Likewise.
197 * include/errno.h: Likewise.
198 * include/libc-symbols.h: Likewise.
199 * include/math.h: Likewise.
200 * include/netdb.h: Likewise.
201 * include/resolv.h: Likewise.
202 * include/stdio.h: Likewise.
203 * include/stdlib.h: Likewise.
204 * include/string.h: Likewise.
205 * include/sys/stat.h: Likewise.
206 * include/wctype.h: Likewise.
207 * intl/l10nflist.c: Likewise.
208 * libidn/idn-stub.c: Likewise.
209 * libio/libioP.h: Likewise.
210 * nptl/libc_multiple_threads.c: Likewise.
211 * nptl/pthreadP.h: Likewise.
212 * posix/regex_internal.h: Likewise.
213 * resolv/res_hconf.c: Likewise.
214 * sysdeps/arm/armv7/multiarch/memcpy.S: Likewise.
215 * sysdeps/arm/memmove.S: Likewise.
216 * sysdeps/arm/sysdep.h: Likewise.
217 * sysdeps/generic/_itoa.h: Likewise.
218 * sysdeps/generic/symbol-hacks.h: Likewise.
219 * sysdeps/gnu/errlist.awk: Likewise.
220 * sysdeps/gnu/errlist.c: Likewise.
221 * sysdeps/i386/i586/memcpy.S: Likewise.
222 * sysdeps/i386/i586/memset.S: Likewise.
223 * sysdeps/i386/i686/memcpy.S: Likewise.
224 * sysdeps/i386/i686/memmove.S: Likewise.
225 * sysdeps/i386/i686/mempcpy.S: Likewise.
226 * sysdeps/i386/i686/memset.S: Likewise.
227 * sysdeps/i386/i686/multiarch/bcopy.S: Likewise.
228 * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
229 * sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S: Likewise.
230 * sysdeps/i386/i686/multiarch/memchr-sse2.S: Likewise.
231 * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
232 * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
233 * sysdeps/i386/i686/multiarch/memcmp-ssse3.S: Likewise.
234 * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
235 * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
236 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
237 * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
238 * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
239 * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
240 * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
241 * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
242 * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
243 * sysdeps/i386/i686/multiarch/memrchr-c.c: Likewise.
244 * sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S: Likewise.
245 * sysdeps/i386/i686/multiarch/memrchr-sse2.S: Likewise.
246 * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
247 * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
248 * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
249 * sysdeps/i386/i686/multiarch/memset.S: Likewise.
250 * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
251 * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
252 * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
253 * sysdeps/i386/i686/multiarch/strcat-ssse3.S: Likewise.
254 * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
255 * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Likewise.
256 * sysdeps/i386/i686/multiarch/strchr-sse2.S: Likewise.
257 * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
258 * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
259 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
260 * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
261 * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
262 * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Likewise.
263 * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
264 * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
265 * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
266 * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
267 * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
268 * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
269 * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
270 * sysdeps/i386/i686/multiarch/strrchr-sse2.S: Likewise.
271 * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
272 * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
273 * sysdeps/i386/i686/multiarch/wcschr-c.c: Likewise.
274 * sysdeps/i386/i686/multiarch/wcschr-sse2.S: Likewise.
275 * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
276 * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: Likewise.
277 * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
278 * sysdeps/i386/i686/multiarch/wcscpy-c.c: Likewise.
279 * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: Likewise.
280 * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
281 * sysdeps/i386/i686/multiarch/wcslen-c.c: Likewise.
282 * sysdeps/i386/i686/multiarch/wcslen-sse2.S: Likewise.
283 * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
284 * sysdeps/i386/i686/multiarch/wcsrchr-c.c: Likewise.
285 * sysdeps/i386/i686/multiarch/wcsrchr-sse2.S: Likewise.
286 * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
287 * sysdeps/i386/i686/multiarch/wmemcmp-c.c: Likewise.
288 * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
289 * sysdeps/ia64/fpu/libm-symbols.h: Likewise.
290 * sysdeps/nptl/bits/libc-lock.h: Likewise.
291 * sysdeps/nptl/bits/libc-lockP.h: Likewise.
292 * sysdeps/nptl/bits/stdio-lock.h: Likewise.
293 * sysdeps/posix/closedir.c: Likewise.
294 * sysdeps/posix/opendir.c: Likewise.
295 * sysdeps/posix/readdir.c: Likewise.
296 * sysdeps/posix/rewinddir.c: Likewise.
297 * sysdeps/powerpc/novmx-sigjmp.c: Likewise.
298 * sysdeps/powerpc/powerpc32/__longjmp.S: Likewise.
299 * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Likewise.
300 * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
301 * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
302 * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: Likewise.
303 * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c: Likewise.
304 * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S: Likewise.
305 * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c: Likewise.
306 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S: Likewise.
307 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c: Likewise.
308 * sysdeps/powerpc/powerpc32/power4/multiarch/memmove.c: Likewise.
309 * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c: Likewise.
310 * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c: Likewise.
311 * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c: Likewise.
312 * sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S: Likewise.
313 * sysdeps/powerpc/powerpc32/power4/multiarch/memset.c: Likewise.
314 * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c: Likewise.
315 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c: Likewise.
316 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c: Likewise.
317 * sysdeps/powerpc/powerpc32/power4/multiarch/strchr.c: Likewise.
318 * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c: Likewise.
319 * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S: Likewise.
320 * sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c: Likewise.
321 * sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c: Likewise.
322 * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c: Likewise.
323 * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S: Likewise.
324 * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c: Likewise.
325 * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c: Likewise.
326 * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c: Likewise.
327 * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c: Likewise.
328 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c: Likewise.
329 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c: Likewise.
330 * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c: Likewise.
331 * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c: Likewise.
332 * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c: Likewise.
333 * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
334 * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
335 * sysdeps/powerpc/powerpc64/__longjmp.S: Likewise.
336 * sysdeps/powerpc/powerpc64/multiarch/bzero.c: Likewise.
337 * sysdeps/powerpc/powerpc64/multiarch/memchr.c: Likewise.
338 * sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c: Likewise.
339 * sysdeps/powerpc/powerpc64/multiarch/memcmp.c: Likewise.
340 * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: Likewise.
341 * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: Likewise.
342 * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Likewise.
343 * sysdeps/powerpc/powerpc64/multiarch/memmove.c: Likewise.
344 * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c: Likewise.
345 * sysdeps/powerpc/powerpc64/multiarch/memrchr.c: Likewise.
346 * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S: Likewise.
347 * sysdeps/powerpc/powerpc64/multiarch/memset.c: Likewise.
348 * sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c: Likewise.
349 * sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.S: Likewise.
350 * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c: Likewise.
351 * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c: Likewise.
352 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c: Likewise.
353 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c: Likewise.
354 * sysdeps/powerpc/powerpc64/multiarch/strcat.c: Likewise.
355 * sysdeps/powerpc/powerpc64/multiarch/strchr.c: Likewise.
356 * sysdeps/powerpc/powerpc64/multiarch/strchrnul.c: Likewise.
357 * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: Likewise.
358 * sysdeps/powerpc/powerpc64/multiarch/strcmp.c: Likewise.
359 * sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.S: Likewise.
360 * sysdeps/powerpc/powerpc64/multiarch/strcpy.c: Likewise.
361 * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: Likewise.
362 * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: Likewise.
363 * sysdeps/powerpc/powerpc64/multiarch/strlen.c: Likewise.
364 * sysdeps/powerpc/powerpc64/multiarch/strncase.c: Likewise.
365 * sysdeps/powerpc/powerpc64/multiarch/strncase_l.c: Likewise.
366 * sysdeps/powerpc/powerpc64/multiarch/strncat.c: Likewise.
367 * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: Likewise.
368 * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: Likewise.
369 * sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c: Likewise.
370 * sysdeps/powerpc/powerpc64/multiarch/strncpy.c: Likewise.
371 * sysdeps/powerpc/powerpc64/multiarch/strnlen.c: Likewise.
372 * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: Likewise.
373 * sysdeps/powerpc/powerpc64/multiarch/strrchr-ppc64.c: Likewise.
374 * sysdeps/powerpc/powerpc64/multiarch/strrchr.c: Likewise.
375 * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: Likewise.
376 * sysdeps/powerpc/powerpc64/multiarch/strspn.c: Likewise.
377 * sysdeps/powerpc/powerpc64/multiarch/wcschr.c: Likewise.
378 * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c: Likewise.
379 * sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c: Likewise.
380 * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c: Likewise.
381 * sysdeps/powerpc/powerpc64/setjmp.S: Likewise.
382 * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Likewise.
383 * sysdeps/s390/s390-32/multiarch/memcmp.S: Likewise.
384 * sysdeps/s390/s390-32/multiarch/memcpy.S: Likewise.
385 * sysdeps/s390/s390-32/multiarch/memset.S: Likewise.
386 * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
387 * sysdeps/s390/s390-64/multiarch/memcmp.S: Likewise.
388 * sysdeps/s390/s390-64/multiarch/memcpy.S: Likewise.
389 * sysdeps/s390/s390-64/multiarch/memset.S: Likewise.
390 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S: Likewise.
391 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
392 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: Likewise.
393 * sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: Likewise.
394 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
395 * sysdeps/sparc/sparc64/multiarch/memset-niagara1.S: Likewise.
396 * sysdeps/sparc/sparc64/multiarch/memset-niagara4.S: Likewise.
397 * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
398 * sysdeps/unix/alpha/sysdep.S: Likewise.
399 * sysdeps/unix/alpha/sysdep.h: Likewise.
400 * sysdeps/unix/make-syscalls.sh: Likewise.
401 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
402 * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
403 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
404 * sysdeps/unix/sysv/linux/alpha/vfork.S: Likewise.
405 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
406 * sysdeps/unix/sysv/linux/arm/sysdep.h: Likewise.
407 * sysdeps/unix/sysv/linux/getpid.c: Likewise.
408 * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
409 * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
410 * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Likewise.
411 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
412 * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
413 * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
414 * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
415 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
416 * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise.
417 * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
418 * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Likewise.
419 * sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h: Likewise.
420 * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
421 * sysdeps/unix/sysv/linux/m68k/sysdep.h: Likewise.
422 * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
423 * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
424 * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
425 * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
426 * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
427 * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
428 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Likewise.
429 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
430 * sysdeps/unix/sysv/linux/s390/longjmp_chk.c: Likewise.
431 * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
432 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
433 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
434 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
435 * sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Likewise.
436 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
437 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
438 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
439 * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Likewise.
440 * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Likewise.
441 * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
442 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
443 * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
444 * sysdeps/unix/sysv/linux/sh/vfork.S: Likewise.
445 * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
446 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
447 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
448 * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
449 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
450 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
451 * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
452 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
453 * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
454 * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
455 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Likewise.
456 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
457 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
458 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
459 * sysdeps/wordsize-32/symbol-hacks.h: Likewise.
460 * sysdeps/x86_64/memcpy.S: Likewise.
461 * sysdeps/x86_64/memmove.c: Likewise.
462 * sysdeps/x86_64/memset.S: Likewise.
463 * sysdeps/x86_64/multiarch/init-arch.h: Likewise.
464 * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
465 * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
466 * sysdeps/x86_64/multiarch/memcmp.S: Likewise.
467 * sysdeps/x86_64/multiarch/memcpy-avx-unaligned.S: Likewise.
468 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
469 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
470 * sysdeps/x86_64/multiarch/memcpy.S: Likewise.
471 * sysdeps/x86_64/multiarch/memcpy_chk.S: Likewise.
472 * sysdeps/x86_64/multiarch/memmove.c: Likewise.
473 * sysdeps/x86_64/multiarch/mempcpy.S: Likewise.
474 * sysdeps/x86_64/multiarch/mempcpy_chk.S: Likewise.
475 * sysdeps/x86_64/multiarch/memset-avx2.S: Likewise.
476 * sysdeps/x86_64/multiarch/memset.S: Likewise.
477 * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
478 * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: Likewise.
479 * sysdeps/x86_64/multiarch/strcat-ssse3.S: Likewise.
480 * sysdeps/x86_64/multiarch/strcat.S: Likewise.
481 * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: Likewise.
482 * sysdeps/x86_64/multiarch/strchr.S: Likewise.
483 * sysdeps/x86_64/multiarch/strcmp-ssse3.S: Likewise.
484 * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
485 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
486 * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
487 * sysdeps/x86_64/multiarch/strcpy.S: Likewise.
488 * sysdeps/x86_64/multiarch/strcspn.S: Likewise.
489 * sysdeps/x86_64/multiarch/strspn.S: Likewise.
490 * sysdeps/x86_64/multiarch/wcscpy-c.c: Likewise.
491 * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: Likewise.
492 * sysdeps/x86_64/multiarch/wcscpy.S: Likewise.
493 * sysdeps/x86_64/multiarch/wmemcmp-c.c: Likewise.
494 * sysdeps/x86_64/multiarch/wmemcmp.S: Likewise.
495 * sysdeps/x86_64/strcmp.S: Likewise.
496
497 * extra-lib.mk (CPPFLAGS-$(lib)): Remove IS_IN_$(lib).
498
499 * elf/Makefile (CPPFLAGS-.os): Remove IS_IN_rtld.
500 * elf/dl-open.c: Use IS_IN (rtld) instead if IS_IN_rtld.
501 * elf/rtld-Rules: Likewise.
502 * elf/setup-vdso.h: Likewise.
503 * include/assert.h: Likewise.
504 * include/bits/stdlib-float.h: Likewise.
505 * include/errno.h: Likewise.
506 * include/sys/stat.h: Likewise.
507 * include/unistd.h: Likewise.
508 * sysdeps/aarch64/setjmp.S: Likewise.
509 * sysdeps/alpha/setjmp.S: Likewise.
510 * sysdeps/arm/__longjmp.S: Likewise.
511 * sysdeps/arm/aeabi_unwind_cpp_pr1.c: Likewise.
512 * sysdeps/arm/setjmp.S: Likewise.
513 * sysdeps/arm/sysdep.h: Likewise.
514 * sysdeps/generic/_itoa.h: Likewise.
515 * sysdeps/generic/dl-sysdep.h: Likewise.
516 * sysdeps/generic/ldsodefs.h: Likewise.
517 * sysdeps/i386/dl-tls.h: Likewise.
518 * sysdeps/i386/setjmp.S: Likewise.
519 * sysdeps/m68k/setjmp.c: Likewise.
520 * sysdeps/mach/hurd/dl-execstack.c: Likewise.
521 * sysdeps/mach/hurd/opendir.c: Likewise.
522 * sysdeps/posix/getcwd.c: Likewise.
523 * sysdeps/posix/opendir.c: Likewise.
524 * sysdeps/posix/profil.c: Likewise.
525 * sysdeps/powerpc/dl-procinfo.h: Likewise.
526 * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
527 * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
528 * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h: Likewise.
529 * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
530 * sysdeps/powerpc/powerpc64/__longjmp-common.S: Likewise.
531 * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
532 * sysdeps/s390/dl-tls.h: Likewise.
533 * sysdeps/s390/s390-32/setjmp.S: Likewise.
534 * sysdeps/s390/s390-64/setjmp.S: Likewise.
535 * sysdeps/sh/sh3/setjmp.S: Likewise.
536 * sysdeps/sh/sh4/setjmp.S: Likewise.
537 * sysdeps/unix/alpha/sysdep.h: Likewise.
538 * sysdeps/unix/arm/sysdep.S: Likewise.
539 * sysdeps/unix/i386/sysdep.S: Likewise.
540 * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
541 * sysdeps/unix/sysv/linux/getcwd.c: Likewise.
542 * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
543 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
544 * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
545 * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
546 * sysdeps/unix/sysv/linux/ia64/setjmp.S: Likewise.
547 * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
548 * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Likewise.
549 * sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h: Likewise.
550 * sysdeps/unix/sysv/linux/m68k/m68k-helpers.S: Likewise.
551 * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
552 * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
553 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
554 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
555 * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
556 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
557 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
558 * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
559 * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
560 * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
561 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
562 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
563 * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
564 * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
565 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
566 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
567 * sysdeps/unix/x86_64/sysdep.S: Likewise.
568 * sysdeps/x86_64/setjmp.S: Likewise.
569
570 * include/math.h: Use IS_IN instead of IS_IN_libm.
571 * sysdeps/alpha/fpu/s_copysign.c: Likewise.
572 * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
573 * sysdeps/ieee754/ldbl-128ibm/s_finitel.c: Likewise.
574 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
575 * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
576 * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c: Likewise.
577 * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c: Likewise.
578 * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
579 * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
580 * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c: Likewise.
581 * sysdeps/ieee754/ldbl-64-128/s_copysignl.c: Likewise.
582 * sysdeps/ieee754/ldbl-64-128/s_finitel.c: Likewise.
583 * sysdeps/ieee754/ldbl-64-128/s_frexpl.c: Likewise.
584 * sysdeps/ieee754/ldbl-64-128/s_isinfl.c: Likewise.
585 * sysdeps/ieee754/ldbl-64-128/s_isnanl.c: Likewise.
586 * sysdeps/ieee754/ldbl-64-128/s_modfl.c: Likewise.
587 * sysdeps/ieee754/ldbl-64-128/s_scalbnl.c: Likewise.
588 * sysdeps/ieee754/ldbl-64-128/s_signbitl.c: Likewise.
589 * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: Likewise.
590 * sysdeps/ieee754/ldbl-opt/s_copysign.c: Likewise.
591 * sysdeps/ieee754/ldbl-opt/s_finite.c: Likewise.
592 * sysdeps/ieee754/ldbl-opt/s_frexp.c: Likewise.
593 * sysdeps/ieee754/ldbl-opt/s_isinf.c: Likewise.
594 * sysdeps/ieee754/ldbl-opt/s_isnan.c: Likewise.
595 * sysdeps/ieee754/ldbl-opt/s_ldexp.c: Likewise.
596 * sysdeps/ieee754/ldbl-opt/s_ldexpl.c: Likewise.
597 * sysdeps/ieee754/ldbl-opt/s_modf.c: Likewise.
598 * sysdeps/ieee754/ldbl-opt/s_scalbln.c: Likewise.
599 * sysdeps/ieee754/ldbl-opt/s_scalbn.c: Likewise.
600 * sysdeps/powerpc/power5+/fpu/s_modf.c: Likewise.
601 * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Likewise.
602 * sysdeps/powerpc/powerpc32/fpu/s_copysignl.S: Likewise.
603 * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: Likewise.
604 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c:
605 Likewise.
606 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c:
607 Likewise.
608 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c:
609 Likewise.
610 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c:
611 Likewise.
612 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c:
613 Likewise.
614 * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: Likewise.
615 * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Likewise.
616 * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: Likewise.
617 * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
618 * sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
619 * sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
620 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: Likewise.
621 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c: Likewise.
622 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c: Likewise.
623 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c: Likewise.
624 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: Likewise.
625 * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
626 * sysdeps/powerpc/powerpc64/fpu/s_copysignl.S: Likewise.
627 * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: Likewise.
628 * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: Likewise.
629 * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Likewise.
630 * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: Likewise.
631 * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: Likewise.
632 * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Likewise.
633 * sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S: Likewise.
634 * sysdeps/powerpc/powerpc64/power7/fpu/s_isnan.S: Likewise.
635 * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S: Likewise.
636 * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S: Likewise.
637 * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S: Likewise.
638 * sysdeps/sparc/sparc32/fpu/s_signbitl.S: Likewise.
639 * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: Likewise.
640 * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S: Likewise.
641
642 * nptl/lowlevellock.c: Use IS_IN instead of IS_IN_libpthread.
643 * nptl/pthreadP.h: Likewise.
644 * nptl_db/structs.def: Likewise.
645 * sysdeps/arm/sysdep.h: Likewise.
646 * sysdeps/nptl/bits/libc-lock.h: Likewise.
647 * sysdeps/nptl/bits/libc-lockP.h: Likewise.
648 * sysdeps/sparc/sparc32/lowlevellock.c: Likewise.
649 * sysdeps/unix/alpha/sysdep.h: Likewise.
650 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
651 * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
652 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
653 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
654 * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
655 * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
656 * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
657 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
658 * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
659 * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
660 * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
661 * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
662 * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
663 * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
664 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Likewise.
665 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
666 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
667 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
668 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
669 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
670 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
671 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
672 * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
673 * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
674 * sysdeps/unix/sysv/linux/x86_64/cancellation.S: Likewise.
675 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
676
677 * include/mqueue.h: Use IS_IN instead of IS_IN_librt.
678 * nptl/pthreadP.h: Likewise.
679 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
680 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
681 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
682 * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
683 * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
684 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
685 * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
686 * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
687 * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
688 * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
689 * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
690 * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
691 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h:
692 Likewise.
693 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h:
694 Likewise.
695 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
696 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
697 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
698 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
699 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
700 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
701 * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
702 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
703
704 * dlfcn/dladdr.c: Use IS_IN.
705 * dlfcn/dladdr1.c: Likewise.
706 * dlfcn/dlclose.c: Likewise.
707 * dlfcn/dlerror.c: Likewise.
708 * dlfcn/dlinfo.c: Likewise.
709 * dlfcn/dlmopen.c: Likewise.
710 * dlfcn/dlopen.c: Likewise.
711 * dlfcn/dlsym.c: Likewise.
712 * dlfcn/dlvsym.c: Likewise.
713
714 * include/ifaddrs.h: Use IS_IN.
715 * inet/check_pf.c: Likewise.
716 * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
717 * nscd/Makefile (CPPFLAGS-nscd): Remove IS_IN_nscd.
718
719 * elf/Makefile (CFLAGS-ldconfig.c): Remove definition of
720 IS_IN_ldconfig.
721 * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.c: Use IS_IN.
722 * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.h: Likewise.
723
724 * include/shlib-compat.h [!NOT_IN_libc]: Remove.
725 * nss/nss_files/files-parse.c (IS_IN_libc): Replace with
726 IS_IN (libc).
727
728 * elf/Makefile (libof-sotruss-lib): Set as extramodules.
729
730 * elf/Makefile (CPPFLAGS-.os): Remove IN_LIB.
731 * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
732 * extra-lib.mk (CPPFLAGS-$(lib)): Likewise.
733 * include/libc-symbols.h (IS_IN_LIB): New macro.
734 * include/errno.h: Use IS_IN_LIB instead of IN_LIB.
735 * include/netdb.h: Likewise.
736 * include/stap-probe.h: Remove all uses of IN_LIB.
737
738 * Makeconfig (module-cppflags-real): Define MODULE_NAME
739 instead of IN_MODULE.
740 * include/libc-symbols.h (IN_MODULE): Define using
741 MODULE_NAME.
742 (PASTE_NAME, PASTE_NAME1): New macros.
743 * include/stap-probe.h (LIBC_PROBE_1): Use MODULE_NAME instead
744 of IN_LIB.
745 (STAP_PROBE_ASM): Likewise.
746
7472014-11-23 Samuel Thibault <samuel.thibault@ens-lyon.org>
748
749 * sysdeps/mach/hurd/i386/init-first.c (posixland_init): Call
750 __mach_init in dlopened libc.
751
7522014-11-22 Mike Frysinger <vapier@gentoo.org>
753
754 * sysdeps/arm/preconfigure.ac: Delete EABI check.
755 * sysdeps/arm/preconfigure: Regenerate.
756
7572014-11-21 Roland McGrath <roland@hack.frob.com>
758
759 * nptl/pthread_create.c (__pthread_create_2_1): Set
760 ATTR_FLAG_POLICY_SET and/or ATTR_FLAG_SCHED_SET in PD->flags
761 when copying values from IATTR into PD.
762
7632014-11-21 Will Newton <will.newton@linaro.org>
764 Andrew Pinski <andrew.pinski@caviumnetworks.com>
765
766 * sysdeps/aarch64/dl-machine.h (elf_machine_load_address):
767 Refactor inline-asm. Also add comment.
768
769 * sysdeps/aarch64/bits/link.h (la_aarch64_gnu_pltenter): Use
770 ElfW macro instead of hardcoded Elf64 types.
771 (la_aarch64_gnu_pltenter): Likewise.
772 * sysdeps/aarch64/dl-machine.h
773 (elf_machine_runtime_setup): Use ElfW(Addr).
774
775 * elf/elf.h (R_AARCH64_P32_ABS32, R_AARCH64_P32_COPY,
776 R_AARCH64_P32_GLOB_DAT, R_AARCH64_P32_JUMP_SLOT,
777 R_AARCH64_P32_RELATIVE, R_AARCH64_P32_TLS_DTPMOD,
778 R_AARCH64_P32_TLS_DTPREL, R_AARCH64_P32_TLS_TPREL,
779 R_AARCH64_P32_TLSDESC, R_AARCH64_P32_IRELATIVE): Define.
780 (R_AARCH64_TLS_DTPMOD64): Rename to ..
781 (R_AARCH64_TLS_DTPMOD): This.
782 (R_AARCH64_TLS_DTPREL64): Rename to ...
783 (R_AARCH64_TLS_DTPREL): This.
784 (R_AARCH64_TLS_TPREL64): Rename to ...
785 (R_AARCH64_TLS_TPREL): This.
786 * sysdeps/aarch64/dl-machine.h (elf_machine_type_class): Update
787 R_AARCH64_TLS_DTPMOD64, R_AARCH64_TLS_DTPREL64, and
788 R_AARCH64_TLS_TPREL64.
789 (elf_machine_rela): Likewise.
790
7912014-11-21 Torvald Riegel <triegel@redhat.com>
792
793 * sysdeps/microblaze/bits/atomic.h (__HAVE_64B_ATOMICS): Fix value
794 by setting it to 0. 64b atomics are not supported currently.
795
7962014-11-21 Alexandre Oliva <aoliva@redhat.com>
797
798 [BZ #16469]
799 * resolv/res_query.c (__libc_res_nsearch): Skip leading dot in
800 search domain names.
801
8022014-11-21 Alexandre Oliva <aoliva@redhat.com>
803
804 [BZ #16469]
805 * NEWS: Update.
806 * resolv/res_query.c (__libc_res_nquerydomain): Retain
807 trailing dot.
808 * posix/tst-getaddrinfo5.c: New.
809 * posix/Makefile (tests): Add it.
810
8112014-11-21 Alexandre Oliva <aoliva@redhat.com>
812
813 [BZ #14498]
814 * NEWS: Fixed.
815 * nss/nss_db/db-XXX.c (_nss_db_get##name##_r): Update hidx
816 after parsing line but before break_if_match.
817 * nss/nss_files/files-service (DB_LOOKUP): Don't "continue;"
818 if there is a protocol mismatch.
819
8202014-11-21 Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>
821
822 * manual/sysinfo.texi (addmntent): It is actually MT-Safe,
823 because the potential race is on the user-supplied stream.
824
8252014-11-21 Alexandre Oliva <aoliva@redhat.com>
826
827 * sysdeps/posix/ctermid.c (ctermid): Return a pointer to a
828 string literal if not passed a buffer.
829 * manual/job.texi (ctermid): Update reasoning, note deviation
830 from posix, suggest mtasurace when not passed a buffer, for
831 future non-preliminary safety notes.
832
8332014-11-21 Alexandre Oliva <aoliva@redhat.com>
834
835 * manual/users.texi (cuserid): Fix MT-Safety note for the case
836 of not passing it a buffer.
837 Reported by Peng Haitao.
838
8392014-11-21 Alexandre Oliva <aoliva@redhat.com>
840
841 * manual/Makefile ($(objpfx)stamp-summary): Require
842 check-safety.sh to pass.
843 * manual/check-safety.sh: Wish for verification that every
844 @deftypefn and @deftypefun is followed by a @safety remark.
845
8462014-11-20 Roland McGrath <roland@hack.frob.com>
847
848 * nptl/unwind.c (unwind_cleanup): Use __libc_fatal.
849
850 * nptl/pthread_setcanceltype.c [!SIGCANCEL]: Return ENOTSUP early for
851 PTHREAD_CANCEL_ASYNCHRONOUS.
852 * nptl/pthread_cancel.c [!SIGCANCEL]: Just abort rather than trying to
853 send SIGCANCEL.
854
855 * nptl/default-sched.h: New file.
856 * sysdeps/unix/sysv/linux/default-sched.h: New file.
857 * nptl/pthread_create.c: Include it.
858 (__pthread_create_2_1): Use collect_default_sched instead of making
859 Linux syscalls here directly.
860
8612014-11-20 Torvald Riegel <triegel@redhat.com>
862
863 * nptl/pthread_once.c (clear_once_control, __pthread_once_slow,
864 __pthread_once): Use C11 atomics.
865
8662014-11-20 Torvald Riegel <triegel@redhat.com>
867
868 * csu/tst-atomic.c (do_test): Add tests for C11-like atomics.
869
8702014-11-20 Torvald Riegel <triegel@redhat.com>
871
872 * include/atomic.h (__atomic_link_error, __atomic_check_size,
873 atomic_thread_fence_acquire, atomic_thread_fence_release,
874 atomic_thread_fence_seq_cst, atomic_load_relaxed,
875 atomic_load_acquire, atomic_store_relaxed, atomic_store_release,
876 atomic_compare_exchange_weak_relaxed,
877 atomic_compare_exchange_weak_acquire,
878 atomic_compare_exchange_weak_release,
879 atomic_exchange_acquire, atomic_exchange_release,
880 atomic_fetch_add_relaxed, atomic_fetch_add_acquire,
881 atomic_fetch_add_release, atomic_fetch_add_acq_rel,
882 atomic_fetch_and_acquire,
883 atomic_fetch_or_relaxed, atomic_fetch_or_acquire): New.
884
8852014-11-20 Torvald Riegel <triegel@redhat.com>
886
887 * sysdeps/aarch64/bits/atomic.h (__HAVE_64B_ATOMICS,
888 USE_ATOMIC_COMPILER_BUILTINS): Define.
889 * sysdeps/alpha/bits/atomic.h (__HAVE_64B_ATOMICS,
890 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
891 * sysdeps/arm/bits/atomic.h (__HAVE_64B_ATOMICS,
892 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
893 * sysdeps/i386/i486/bits/atomic.h (__HAVE_64B_ATOMICS,
894 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
895 * sysdeps/ia64/bits/atomic.h (__HAVE_64B_ATOMICS,
896 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
897 * sysdeps/m68k/coldfire/bits/atomic.h (__HAVE_64B_ATOMICS,
898 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
899 * sysdeps/m68k/m680x0/m68020/bits/atomic.h (__HAVE_64B_ATOMICS,
900 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
901 * sysdeps/microblaze/bits/atomic.h (__HAVE_64B_ATOMICS,
902 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
903 * sysdeps/mips/bits/atomic.h (__HAVE_64B_ATOMICS,
904 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
905 * sysdeps/powerpc/powerpc32/bits/atomic.h (__HAVE_64B_ATOMICS,
906 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
907 * sysdeps/powerpc/powerpc64/bits/atomic.h (__HAVE_64B_ATOMICS,
908 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
909 * sysdeps/s390/bits/atomic.h (__HAVE_64B_ATOMICS,
910 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
911 * sysdeps/sparc/sparc32/bits/atomic.h (__HAVE_64B_ATOMICS,
912 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
913 * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h (__HAVE_64B_ATOMICS,
914 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
915 * sysdeps/sparc/sparc64/bits/atomic.h (__HAVE_64B_ATOMICS,
916 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
917 * sysdeps/tile/tilegx/bits/atomic.h (__HAVE_64B_ATOMICS,
918 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
919 * sysdeps/tile/tilepro/bits/atomic.h (__HAVE_64B_ATOMICS,
920 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
921 * sysdeps/unix/sysv/linux/hppa/bits/atomic.h (__HAVE_64B_ATOMICS,
922 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
923 * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h
924 (__HAVE_64B_ATOMICS, USE_ATOMIC_COMPILER_BUILTINS): Likewise.
925 * sysdeps/unix/sysv/linux/sh/bits/atomic.h (__HAVE_64B_ATOMICS,
926 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
927 * sysdeps/x86_64/bits/atomic.h (__HAVE_64B_ATOMICS,
928 USE_ATOMIC_COMPILER_BUILTINS): Likewise.
929
9302014-11-19 Roland McGrath <roland@hack.frob.com>
931
932 * nptl/pthread_create.c (__pthread_create_2_1): Don't try to validate
933 the sched_priority value here. It was already checked when the user
934 called pthread_attr_setschedparam.
935
936 * nptl/tst-bad-schedattr.c: New file.
937 * nptl/Makefile (tests): Add it.
938
9392014-11-19 Carlos O'Donell <carlos@redhat.com>
940 Florian Weimer <fweimer@redhat.com>
941 Joseph Myers <joseph@codesourcery.com>
942 Adam Conrad <adconrad@0c3.net>
943 Andreas Schwab <schwab@suse.de>
944 Brooks <bmoses@google.com>
945
946 [BZ #17625]
947 * wordexp-test.c (__dso_handle): Add prototype.
948 (__register_atfork): Likewise.
949 (__app_register_atfork): New function.
950 (registered_forks): New global.
951 (register_fork): New function.
952 (test_case): Add 3 new tests for WRDE_CMDSUB.
953 (main): Call __app_register_atfork.
954 (testit): If WRDE_NOCMD set registered_forks to zero, run test, and if
955 fork count is non-zero fail the test.
956 * posix/wordexp.c (exec_comm): Return WRDE_CMDSUB if WRDE_NOCMD flag
957 is set.
958 (parse_dollars): Remove check for WRDE_NOCMD.
959 (parse_dquote): Likewise.
960
9612014-11-19 Siddhesh Poyarekar <siddhesh@redhat.com>
962
963 * Makeconfig (built-modules): List non-library modules to be
964 built.
965 (module-cppflags): Include libc-modules.h for
966 everything except shlib-versions.v.i.
967 (CPPFLAGS): Use it.
968 (before-compile): Add libc-modules.h.
969 ($(common-objpfx)libc-modules.h,
970 $(common-objpfx)libc-modules.stmp): New targets.
971 (common-generated): Add libc-modules.h and libc-modules.stmp.
972 ($(common-objpfx)Versions.v.i): Depend on libc-modules.h.
973 * include/libc-symbols.h: Don't include libc-modules.h.
974 * include/libc-modules.h: Remove file.
975 * scripts/gen-libc-modules.awk: New script to generate
976 libc-modules.h.
977 * sysdeps/unix/Makefile ($(common-objpfx)sysd-syscalls):
978 Depend on libc-modules.stmp.
979
980 * include/shlib-compat.h (_SHLIB_COMPAT): Use IS_IN.
981
982 * Makeconfig (in-module): Get value of libof set for the
983 translation unit.
984 (CPPFLAGS): Use $(in-module).
985 * Makerules: Don't suffix routine names for nonlib.
986 * include/libc-modules.h: New file.
987 * include/libc-symbols.h: Include libc-modules.h
988 (IS_IN): New macro to replace IS_IN_* macros.
989 * elf/Makefile: Set libof-* for each routine.
990 * elf/rtld-Rules: Likewise.
991 * extra-modules.mk: Likewise.
992 * iconv/Makefile: Likewise.
993 * iconvdata/Makefile: Likewise.
994 * locale/Makefile: Likewise.
995 * malloc/Makefile: Likewise.
996 * nss/Makefile: Likewise.
997 * sysdeps/gnu/Makefile: Likewise.
998 * sysdeps/ieee754/ldbl-opt/Makefile: Likewise.
999 * sysdeps/unix/sysv/linux/Makefile: Likewise.
1000 * sysdeps/s390/s390-64/Makefile: Likewise.
1001 * nscd/Makefile: Set libof-* for each routine. Set CFLAGS and
1002 CPPFLAGS for nscd instead of nonlib.
1003
10042014-11-18 Roland McGrath <roland@hack.frob.com>
1005
1006 * nptl/createthread.c: New file.
1007
1008 * nptl/createthread.c: Moved ...
1009 * sysdeps/unix/sysv/linux/createthread.c: ... here.
1010
1011 * nptl/createthread.c: Add proper top-line comment.
1012 (do_clone): Folded into ...
1013 (create_thread): ... here. Take new arguments STOPPED_START and
1014 THREAD_RAN. Always set PD->stopped_start to something here. Don't
1015 increment __nptl_threads, do event-reporting logic, do
1016 CHECK_THREAD_SYSINFO, or set THREAD_SELF->header.multiple_threads
1017 here. Set *THREAD_RAN after ARCH_CLONE call succeeds. Don't do any
1018 resource cleanup if sched_setaffinity or sched_setscheduler fails,
1019 just send SIGCANCEL.
1020 * nptl/pthread_create.c: Forward-declare create_thread before
1021 including createthread.c.
1022 (start_thread): Use new macro START_THREAD_DEFN to replace defining
1023 declaration, and new macro START_THREAD_SELF to replace argument.
1024 Remove return statement.
1025 (report_thread_creation): New function.
1026 (__pthread_create_2_1): Use it. Do TD_CREATE reporting,
1027 synchronization logic, and __nptl_nthreads increment here, around
1028 calling create_thread. Do CHECK_THREAD_SYSINFO and initialize
1029 PD->parent_cancelhandling here, before create_thread. When
1030 create_thread fails, do __nptl_nthreads decrement, setxid_futex wake,
1031 __deallocate_stack, and ENOMEM translation here.
1032
10332014-11-18 Joseph Myers <joseph@codesourcery.com>
1034
1035 [BZ #17616]
1036 * sysdeps/ieee754/dbl-64/mpa.c (mpone): Rename to __mpone.
1037 (mptwo): Rename to __mptwo.
1038 (__inv): Use __mptwo instead of mptwo.
1039 * sysdeps/ieee754/dbl-64/mpa.h (mpone): Rename to __mpone.
1040 (mptwo): Rename to __mptwo.
1041 * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Use __mpone instead
1042 of mpone and __mptwo instead of mptwo.
1043 * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Use __mpone
1044 instead of mpone.
1045 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
1046 * sysdeps/ieee754/dbl-64/mplog.c (__mplog): Likewise.
1047 * sysdeps/ieee754/dbl-64/sincos32.c (__c32): Use __mpone instead
1048 of mpone and __mptwo instead of mptwo.
1049 (__mpranred): Use __mpone instead of mpone.
1050 * conform/Makefile (test-xfail-ISO/math.h/linknamespace): Remove
1051 variable.
1052 (test-xfail-ISO99/complex.h/linknamespace): Likewise.
1053 (test-xfail-ISO99/math.h/linknamespace): Likewise.
1054 (test-xfail-ISO99/tgmath.h/linknamespace): Likewise.
1055 (test-xfail-ISO11/complex.h/linknamespace): Likewise.
1056 (test-xfail-ISO11/math.h/linknamespace): Likewise.
1057 (test-xfail-ISO11/tgmath.h/linknamespace): Likewise.
1058 (test-xfail-XPG3/math.h/linknamespace): Likewise.
1059 (test-xfail-XPG4/math.h/linknamespace): Likewise.
1060 (test-xfail-POSIX/math.h/linknamespace): Likewise.
1061 (test-xfail-UNIX98/math.h/linknamespace): Likewise.
1062 (test-xfail-XOPEN2K/complex.h/linknamespace): Likewise.
1063 (test-xfail-XOPEN2K/math.h/linknamespace): Likewise.
1064 (test-xfail-XOPEN2K/tgmath.h/linknamespace): Likewise.
1065 (test-xfail-POSIX2008/complex.h/linknamespace): Likewise.
1066 (test-xfail-POSIX2008/math.h/linknamespace): Likewise.
1067 (test-xfail-POSIX2008/tgmath.h/linknamespace): Likewise.
1068 (test-xfail-XOPEN2K8/complex.h/linknamespace): Likewise.
1069 (test-xfail-XOPEN2K8/math.h/linknamespace): Likewise.
1070 (test-xfail-XOPEN2K8/tgmath.h/linknamespace): Likewise.
1071
10722014-11-18 Tom de Vries <tom@codesoucery.com>
1073
1074 * manual/signal.texi (Primitives Interrupted by Signals): In section,
1075 replace BSD Handler xref with BSD Signal Handling.
1076
10772014-11-17 Richard Henderson <rth@redhat.com>
1078
1079 * sysdeps/alpha/soft-fp/local-soft-fp.h (_FP_UNPACK_RAW_2): Remove.
1080 (_FP_PACK_RAW_2): Remove.
1081 (AXP_DECL_RETURN_Q): Rename from FP_DECL_RETURN, use _FP_UNION_Q.
1082 (AXP_RETURN_Q): Rename from FP_RETURN, use _FP_UNION_Q.
1083 (AXP_UNPACK_RAW_Q, AXP_UNPACK_SEMIRAW_Q, AXP_UNPACK_Q): New.
1084 (AXP_PACK_RAW_Q, AXP_PACK_SEMIRAW_Q, AXP_PACK_Q): New.
1085 * sysdeps/alpha/soft-fp/ots_add.c (_OtsAddX): Update to match.
1086 * sysdeps/alpha/soft-fp/ots_cmp.c (internal_equality): Likewise.
1087 * sysdeps/alpha/soft-fp/ots_cmpe.c (internal_compare): Likewise.
1088 * sysdeps/alpha/soft-fp/ots_cvtqux.c (_OtsCvtQUX): Likewise.
1089 * sysdeps/alpha/soft-fp/ots_cvtqx.c (_OtsCvtQX): Likewise.
1090 * sysdeps/alpha/soft-fp/ots_cvttx.c (_OtsConvertFloatTX): Likewise.
1091 * sysdeps/alpha/soft-fp/ots_cvtxq.c (_OtsCvtXQ): Likewise.
1092 * sysdeps/alpha/soft-fp/ots_cvtxt.c (_OtsConvertFloatXT): Likewise.
1093 * sysdeps/alpha/soft-fp/ots_div.c (_OtsDivX): Likewise.
1094 * sysdeps/alpha/soft-fp/ots_mul.c (_OtsMulX): Likewise.
1095 * sysdeps/alpha/soft-fp/ots_nintxq.c (_OtsNintXQ): Likewise.
1096 * sysdeps/alpha/soft-fp/ots_sub.c (_OtsSubX): Likewise.
1097
10982014-11-14 Roland McGrath <roland@hack.frob.com>
1099
1100 * signal/signal.h [__USE_MISC]
1101 (struct sigvec): Remove type.
1102 (SV_ONSTACK, SV_INTERRUPT, SV_RESETHAND): Remove macros.
1103 (sigvec): Remove declaration.
1104 * sysdeps/posix/sigvec.c: Moved ...
1105 * signal/sigvec.c: ... here, replacing old file.
1106 (struct sigvec): New type, copied from old signal.h definition.
1107 (SV_ONSTACK, SV_INTERRUPT, SV_RESETHAND): New macros, likewise copied.
1108 (__sigvec): Convert definition to prototype.
1109 (sigvec): Replace weak_alias with compat_symbol.
1110 * signal/Versions (libc: GLIBC_2.21): New version set.
1111 * include/signal.h: Remove __sigvec declaration.
1112 * sysdeps/unix/bsd/sigvec.c: Remove file.
1113 * sysdeps/unix/bsd/syscalls.list: Remove sigvec.
1114 * manual/signal.texi (BSD Handler): Remove subsection.
1115 Move siginterrupt up to ...
1116 (BSD Signal Handling): ... here. Mark it as XPG rather than BSD.
1117 (Blocking in BSD): Fold subsection into its parent.
1118 * NEWS: Mention sigvec removal.
1119
11202014-11-14 Joseph Myers <joseph@codesourcery.com>
1121
1122 * sysdeps/x86_64/fpu/dla.h [__FMA4__ && __GNUC_PREREQ (4, 6)]
1123 (DLA_FMS): Make definition conditional only on [__FMA4__].
1124 [__FMA4__ && !__GNUC_PREREQ (4, 6)] (DLA_FMS): Remove conditional
1125 definition.
1126
1127 * sysdeps/arm/sysdep.h [PROF && __GNUC_PREREQ(4,4)] (CALL_MCOUNT):
1128 Make definition conditional only on [PROF].
1129 [PROF && !__GNUC_PREREQ(4,4)] (CALL_MCOUNT): Remove conditional
1130 definition.
1131 [__GNUC_PREREQ(4,4)] (mcount): Make definition unconditional.
1132 [!__GNUC_PREREQ(4,4)] (mcount): Remove conditional definition.
1133
1134 * signal/signal.h (__sigpause): Only declare if [__USE_XOPEN &&
1135 !__GNUC__].
1136 * include/signal.h (__sigpause): Move declaration above call to
1137 libc_hidden_proto.
1138 * conform/Makefile (test-xfail-ISO/signal.h/linknamespace): Remove
1139 variable.
1140 (test-xfail-ISO99/signal.h/linknamespace): Likewise.
1141 (test-xfail-ISO11/signal.h/linknamespace): Likewise.
1142
11432014-11-14 David S. Miller <davem@davemloft.net>
1144
1145 * sysdeps/sparc/sparc64/rtld-memcpy.c (NO_MEMPCPY_STPCPY_REDIRECT):
1146 Define before including <string/memcpy.c> and <string/mempcpy.c>.
1147
11482014-11-14 Joseph Myers <joseph@codesourcery.com>
1149
1150 * configure.ac (libc_cv_compiler_ok): Require GCC 4.6 or later.
1151 * configure: Regenerated.
1152 * manual/install.texi (Tools for Compilation): Document a
1153 requirement of GCC 4.6 or later and that GCC 4.9 is the newest
1154 compiler verified to work.
1155 * INSTALL: Regenerated.
1156
1157 * include/string.h [NO_MEMPCPY_STPCPY_REDIRECT] (mempcpy): Do not
1158 redeclare with asm name.
1159 [NO_MEMPCPY_STPCPY_REDIRECT] (stpcpy): Likewise.
1160 * string/mempcpy.c (NO_MEMPCPY_STPCPY_REDIRECT): Define before
1161 including <string.h>.
1162 * string/stpcpy.c (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
1163 * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c
1164 [!NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
1165 * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c
1166 [!NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
1167 * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c
1168 [SHARED && !NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
1169
11702014-11-13 Joseph Myers <joseph@codesourcery.com>
1171
1172 * stdlib/strtol.c (__strtol): Use prototype definition.
1173
1174 [BZ #17594]
1175 * stdlib/strtol.c (SYM__): New macro.
1176 (SYM__1): Likewise.
1177 (__strtol): Likewise.
1178 (strtol): Rename to __strtol and define as weak alias of
1179 __strtol. Use libc_hidden_weak.
1180
11812014-11-13 Stefan Liebler <stli@linux.vnet.ibm.com>
1182
1183 * sysdeps/s390/s390-32/dl-machine.h (RTLD_START):
1184 Use numbered labels in inline assembly.
1185
11862014-11-13 Stefan Liebler <stli@linux.vnet.ibm.com>
1187
1188 * sysdeps/s390/s390-32/setjmp.S (__sigsetjmp):
1189 Add setjmp LIBC_PROBE.
1190 * sysdeps/s390/s390-64/setjmp.S (__sigsetjmp):
1191 Likewise.
1192 * sysdeps/s390/s390-32/__longjmp.c (__longjmp):
1193 Add longjmp, longjmp_target LIBC_PROBE.
1194 * sysdeps/s390/s390-64/__longjmp.c (__longjmp):
1195 Likewise.
1196
11972014-11-13 Stefan Liebler <stli@linux.vnet.ibm.com>
1198
1199 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
1200 Gate the definition of refsym additionally with !RTLD_BOOTSTRAP
1201 to get rid of unused variable warning.
1202
12032014-11-13 Stefan Liebler <stli@linux.vnet.ibm.com>
1204
1205 * sysdeps/s390/s390-32/backtrace.c (__backtrace):
1206 Check for unwind_backtrace == NULL only in SHARED case.
1207 (__backchain_backtrace): Compile only in SHARED case.
1208 * sysdeps/s390/s390-64/backtrace.c (__backtrace):
1209 Likewise.
1210 (__backchain_backtrace): Declare as static.
1211
12122014-11-12 Roland McGrath <roland@hack.frob.com>
1213
1214 * nptl/createthread.c [!TLS_MULTIPLE_THREADS_IN_TCB]
1215 (__libc_multiple_threads_ptr): Variable moved ...
1216 * nptl/nptl-init.c [!TLS_MULTIPLE_THREADS_IN_TCB]: ... here.
1217
12182014-11-12 Joseph Myers <joseph@codesourcery.com>
1219
1220 * conform/GlibcConform.pm: New file.
1221 * conform/conformtest.pl: Use GlibcConform module.
1222 * conform/linknamespace.pl: New file.
1223 * conform/list-header-symbols.pl: Likewise.
1224 * conform/Makefile (linknamespace-symlists-base): New variable.
1225 (linknamespace-symlists-tests): Likewise.
1226 (linknamespace-header-base): Likewise.
1227 (linknamespace-header-tests): Likewise.
1228 (tests-special): Add new tests.
1229 ($(linknamespace-symlists-tests)): New rule.
1230 (linknamespace-libs): New variable.
1231 ($(objpfx)symlist-stdlibs): New rule.
1232 ($(linknamespace-header-tests)): Likewise.
1233 (test-xfail-XPG3/varargs.h/linknamespace): New variable.
1234 (test-xfail-XPG4/varargs.h/linknamespace): Likewise.
1235 (test-xfail-UNIX98/varargs.h/linknamespace): Likewise.
1236 (test-xfail-XPG4/ndbm.h/linknamespace): Likewise.
1237 (test-xfail-UNIX98/ndbm.h/linknamespace): Likewise.
1238 (test-xfail-XOPEN2K/ndbm.h/linknamespace): Likewise.
1239 (test-xfail-XOPEN2K8/ndbm.h/linknamespace): Likewise.
1240 (test-xfail-ISO/math.h/linknamespace): Likewise.
1241 (test-xfail-ISO/signal.h/linknamespace): Likewise.
1242 (test-xfail-ISO/stdio.h/linknamespace): Likewise.
1243 (test-xfail-ISO/time.h/linknamespace): Likewise.
1244 (test-xfail-ISO99/complex.h/linknamespace): Likewise.
1245 (test-xfail-ISO99/ctype.h/linknamespace): Likewise.
1246 (test-xfail-ISO99/math.h/linknamespace): Likewise.
1247 (test-xfail-ISO99/signal.h/linknamespace): Likewise.
1248 (test-xfail-ISO99/stdio.h/linknamespace): Likewise.
1249 (test-xfail-ISO99/tgmath.h/linknamespace): Likewise.
1250 (test-xfail-ISO11/complex.h/linknamespace): Likewise.
1251 (test-xfail-ISO11/ctype.h/linknamespace): Likewise.
1252 (test-xfail-ISO11/math.h/linknamespace): Likewise.
1253 (test-xfail-ISO11/signal.h/linknamespace): Likewise.
1254 (test-xfail-ISO11/stdio.h/linknamespace): Likewise.
1255 (test-xfail-ISO11/tgmath.h/linknamespace): Likewise.
1256 (test-xfail-XPG3/ctype.h/linknamespace): Likewise.
1257 (test-xfail-XPG3/fnmatch.h/linknamespace): Likewise.
1258 (test-xfail-XPG3/glob.h/linknamespace): Likewise.
1259 (test-xfail-XPG3/math.h/linknamespace): Likewise.
1260 (test-xfail-XPG3/regex.h/linknamespace): Likewise.
1261 (test-xfail-XPG3/search.h/linknamespace): Likewise.
1262 (test-xfail-XPG3/stdio.h/linknamespace): Likewise.
1263 (test-xfail-XPG3/time.h/linknamespace): Likewise.
1264 (test-xfail-XPG3/unistd.h/linknamespace): Likewise.
1265 (test-xfail-XPG3/wordexp.h/linknamespace): Likewise.
1266 (test-xfail-XPG4/ctype.h/linknamespace): Likewise.
1267 (test-xfail-XPG4/fmtmsg.h/linknamespace): Likewise.
1268 (test-xfail-XPG4/fnmatch.h/linknamespace): Likewise.
1269 (test-xfail-XPG4/glob.h/linknamespace): Likewise.
1270 (test-xfail-XPG4/grp.h/linknamespace): Likewise.
1271 (test-xfail-XPG4/libgen.h/linknamespace): Likewise.
1272 (test-xfail-XPG4/math.h/linknamespace): Likewise.
1273 (test-xfail-XPG4/netdb.h/linknamespace): Likewise.
1274 (test-xfail-XPG4/pwd.h/linknamespace): Likewise.
1275 (test-xfail-XPG4/regex.h/linknamespace): Likewise.
1276 (test-xfail-XPG4/search.h/linknamespace): Likewise.
1277 (test-xfail-XPG4/stdio.h/linknamespace): Likewise.
1278 (test-xfail-XPG4/stdlib.h/linknamespace): Likewise.
1279 (test-xfail-XPG4/sys/mman.h/linknamespace): Likewise.
1280 (test-xfail-XPG4/sys/statvfs.h/linknamespace): Likewise.
1281 (test-xfail-XPG4/syslog.h/linknamespace): Likewise.
1282 (test-xfail-XPG4/time.h/linknamespace): Likewise.
1283 (test-xfail-XPG4/unistd.h/linknamespace): Likewise.
1284 (test-xfail-XPG4/wordexp.h/linknamespace): Likewise.
1285 (test-xfail-POSIX/aio.h/linknamespace): Likewise.
1286 (test-xfail-POSIX/fnmatch.h/linknamespace): Likewise.
1287 (test-xfail-POSIX/glob.h/linknamespace): Likewise.
1288 (test-xfail-POSIX/math.h/linknamespace): Likewise.
1289 (test-xfail-POSIX/mqueue.h/linknamespace): Likewise.
1290 (test-xfail-POSIX/pthread.h/linknamespace): Likewise.
1291 (test-xfail-POSIX/regex.h/linknamespace): Likewise.
1292 (test-xfail-POSIX/sched.h/linknamespace): Likewise.
1293 (test-xfail-POSIX/semaphore.h/linknamespace): Likewise.
1294 (test-xfail-POSIX/sys/mman.h/linknamespace): Likewise.
1295 (test-xfail-POSIX/time.h/linknamespace): Likewise.
1296 (test-xfail-POSIX/unistd.h/linknamespace): Likewise.
1297 (test-xfail-POSIX/wordexp.h/linknamespace): Likewise.
1298 (test-xfail-UNIX98/aio.h/linknamespace): Likewise.
1299 (test-xfail-UNIX98/ctype.h/linknamespace): Likewise.
1300 (test-xfail-UNIX98/fmtmsg.h/linknamespace): Likewise.
1301 (test-xfail-UNIX98/fnmatch.h/linknamespace): Likewise.
1302 (test-xfail-UNIX98/glob.h/linknamespace): Likewise.
1303 (test-xfail-UNIX98/grp.h/linknamespace): Likewise.
1304 (test-xfail-UNIX98/libgen.h/linknamespace): Likewise.
1305 (test-xfail-UNIX98/math.h/linknamespace): Likewise.
1306 (test-xfail-UNIX98/mqueue.h/linknamespace): Likewise.
1307 (test-xfail-UNIX98/netdb.h/linknamespace): Likewise.
1308 (test-xfail-UNIX98/pthread.h/linknamespace): Likewise.
1309 (test-xfail-UNIX98/pwd.h/linknamespace): Likewise.
1310 (test-xfail-UNIX98/regex.h/linknamespace): Likewise.
1311 (test-xfail-UNIX98/sched.h/linknamespace): Likewise.
1312 (test-xfail-UNIX98/search.h/linknamespace): Likewise.
1313 (test-xfail-UNIX98/semaphore.h/linknamespace): Likewise.
1314 (test-xfail-UNIX98/stdio.h/linknamespace): Likewise.
1315 (test-xfail-UNIX98/stdlib.h/linknamespace): Likewise.
1316 (test-xfail-UNIX98/sys/mman.h/linknamespace): Likewise.
1317 (test-xfail-UNIX98/sys/statvfs.h/linknamespace): Likewise.
1318 (test-xfail-UNIX98/syslog.h/linknamespace): Likewise.
1319 (test-xfail-UNIX98/time.h/linknamespace): Likewise.
1320 (test-xfail-UNIX98/unistd.h/linknamespace): Likewise.
1321 (test-xfail-UNIX98/wchar.h/linknamespace): Likewise.
1322 (test-xfail-UNIX98/wordexp.h/linknamespace): Likewise.
1323 (test-xfail-XOPEN2K/aio.h/linknamespace): Likewise.
1324 (test-xfail-XOPEN2K/complex.h/linknamespace): Likewise.
1325 (test-xfail-XOPEN2K/fcntl.h/linknamespace): Likewise.
1326 (test-xfail-XOPEN2K/fmtmsg.h/linknamespace): Likewise.
1327 (test-xfail-XOPEN2K/fnmatch.h/linknamespace): Likewise.
1328 (test-xfail-XOPEN2K/glob.h/linknamespace): Likewise.
1329 (test-xfail-XOPEN2K/grp.h/linknamespace): Likewise.
1330 (test-xfail-XOPEN2K/libgen.h/linknamespace): Likewise.
1331 (test-xfail-XOPEN2K/math.h/linknamespace): Likewise.
1332 (test-xfail-XOPEN2K/mqueue.h/linknamespace): Likewise.
1333 (test-xfail-XOPEN2K/net/if.h/linknamespace): Likewise.
1334 (test-xfail-XOPEN2K/netdb.h/linknamespace): Likewise.
1335 (test-xfail-XOPEN2K/pthread.h/linknamespace): Likewise.
1336 (test-xfail-XOPEN2K/pwd.h/linknamespace): Likewise.
1337 (test-xfail-XOPEN2K/regex.h/linknamespace): Likewise.
1338 (test-xfail-XOPEN2K/search.h/linknamespace): Likewise.
1339 (test-xfail-XOPEN2K/semaphore.h/linknamespace): Likewise.
1340 (test-xfail-XOPEN2K/signal.h/linknamespace): Likewise.
1341 (test-xfail-XOPEN2K/spawn.h/linknamespace): Likewise.
1342 (test-xfail-XOPEN2K/stdlib.h/linknamespace): Likewise.
1343 (test-xfail-XOPEN2K/sys/mman.h/linknamespace): Likewise.
1344 (test-xfail-XOPEN2K/sys/statvfs.h/linknamespace): Likewise.
1345 (test-xfail-XOPEN2K/sys/wait.h/linknamespace): Likewise.
1346 (test-xfail-XOPEN2K/syslog.h/linknamespace): Likewise.
1347 (test-xfail-XOPEN2K/tgmath.h/linknamespace): Likewise.
1348 (test-xfail-XOPEN2K/time.h/linknamespace): Likewise.
1349 (test-xfail-XOPEN2K/ucontext.h/linknamespace): Likewise.
1350 (test-xfail-XOPEN2K/unistd.h/linknamespace): Likewise.
1351 (test-xfail-XOPEN2K/wordexp.h/linknamespace): Likewise.
1352 (test-xfail-POSIX2008/aio.h/linknamespace): Likewise.
1353 (test-xfail-POSIX2008/complex.h/linknamespace): Likewise.
1354 (test-xfail-POSIX2008/ctype.h/linknamespace): Likewise.
1355 (test-xfail-POSIX2008/dirent.h/linknamespace): Likewise.
1356 (test-xfail-POSIX2008/fcntl.h/linknamespace): Likewise.
1357 (test-xfail-POSIX2008/grp.h/linknamespace): Likewise.
1358 (test-xfail-POSIX2008/math.h/linknamespace): Likewise.
1359 (test-xfail-POSIX2008/mqueue.h/linknamespace): Likewise.
1360 (test-xfail-POSIX2008/net/if.h/linknamespace): Likewise.
1361 (test-xfail-POSIX2008/netdb.h/linknamespace): Likewise.
1362 (test-xfail-POSIX2008/pthread.h/linknamespace): Likewise.
1363 (test-xfail-POSIX2008/regex.h/linknamespace): Likewise.
1364 (test-xfail-POSIX2008/semaphore.h/linknamespace): Likewise.
1365 (test-xfail-POSIX2008/spawn.h/linknamespace): Likewise.
1366 (test-xfail-POSIX2008/sys/mman.h/linknamespace): Likewise.
1367 (test-xfail-POSIX2008/sys/statvfs.h/linknamespace): Likewise.
1368 (test-xfail-POSIX2008/tgmath.h/linknamespace): Likewise.
1369 (test-xfail-POSIX2008/time.h/linknamespace): Likewise.
1370 (test-xfail-POSIX2008/unistd.h/linknamespace): Likewise.
1371 (test-xfail-XOPEN2K8/aio.h/linknamespace): Likewise.
1372 (test-xfail-XOPEN2K8/complex.h/linknamespace): Likewise.
1373 (test-xfail-XOPEN2K8/dirent.h/linknamespace): Likewise.
1374 (test-xfail-XOPEN2K8/fcntl.h/linknamespace): Likewise.
1375 (test-xfail-XOPEN2K8/fmtmsg.h/linknamespace): Likewise.
1376 (test-xfail-XOPEN2K8/grp.h/linknamespace): Likewise.
1377 (test-xfail-XOPEN2K8/libgen.h/linknamespace): Likewise.
1378 (test-xfail-XOPEN2K8/math.h/linknamespace): Likewise.
1379 (test-xfail-XOPEN2K8/mqueue.h/linknamespace): Likewise.
1380 (test-xfail-XOPEN2K8/net/if.h/linknamespace): Likewise.
1381 (test-xfail-XOPEN2K8/netdb.h/linknamespace): Likewise.
1382 (test-xfail-XOPEN2K8/pthread.h/linknamespace): Likewise.
1383 (test-xfail-XOPEN2K8/pwd.h/linknamespace): Likewise.
1384 (test-xfail-XOPEN2K8/regex.h/linknamespace): Likewise.
1385 (test-xfail-XOPEN2K8/search.h/linknamespace): Likewise.
1386 (test-xfail-XOPEN2K8/semaphore.h/linknamespace): Likewise.
1387 (test-xfail-XOPEN2K8/spawn.h/linknamespace): Likewise.
1388 (test-xfail-XOPEN2K8/sys/mman.h/linknamespace): Likewise.
1389 (test-xfail-XOPEN2K8/sys/statvfs.h/linknamespace): Likewise.
1390 (test-xfail-XOPEN2K8/syslog.h/linknamespace): Likewise.
1391 (test-xfail-XOPEN2K8/tgmath.h/linknamespace): Likewise.
1392 (test-xfail-XOPEN2K8/time.h/linknamespace): Likewise.
1393 (test-xfail-XOPEN2K8/unistd.h/linknamespace): Likewise.
1394
1395 [BZ #17589]
1396 * intl/localealias.c [_LIBC] (FGETS): Use __fgets_unlocked instead
1397 of fgets_unlocked.
1398
1399 [BZ #17585]
1400 * string/memmem.c [!_LIBC] (__memmem): Define to memmem.
1401 (memmem): Rename to __memmem and define as weak alias of
1402 __memmem. Use libc_hidden_weak.
1403 (__memmem): Use libc_hidden_def.
1404 * include/string.h (__memmem): Declare. Use libc_hidden_proto.
1405 * locale/findlocale.c (valid_locale_name): Use __memmem instead of
1406 memmem.
1407
1408 [BZ #17582]
1409 * libio/iofgets.c [weak_alias && !_IO_MTSAFE_IO]
1410 (__fgets_unlocked): Add alias of _IO_fgets. Use libc_hidden_def.
1411 * libio/iofgets_u.c (fgets_unlocked): Rename to __fgets_unlocked
1412 and define as weak alias of __fgets_unlocked. Use
1413 libc_hidden_weak.
1414 (__fgets_unlocked): Use libc_hidden_def.
1415 * include/stdio.h (__fgets_unlocked): Declare. Use
1416 libc_hidden_proto.
1417 * sysdeps/unix/sysv/linux/getsysstats.c (phys_pages_info): Use
1418 __fgets_unlocked instead of fgets_unlocked.
1419 * sysdeps/unix/sysv/linux/alpha/getsysstats.c
1420 (GET_NPROCS_CONF_PARSER): Likewise.
1421 * sysdeps/unix/sysv/linux/sparc/getsysstats.c
1422 (GET_NPROCS_CONF_PARSER): Likewise.
1423
1424 [BZ #17574]
1425 * wcsmbs/wmemset.c (wmemset): Rename to __wmemset and define as
1426 weak alias of __wmemset. Use libc_hidden_weak.
1427 (__wmemset): Use libc_hidden_def.
1428 * include/wchar.h (__wmemset): Declare. Use libc_hidden_proto.
1429 * stdio-common/printf_fp.c (___printf_fp): Call __wmemset instead
1430 of wmemset.
1431
1432 [BZ #17573]
1433 * include/string.h [NOT_IN_libc || !SHARED] (mempcpy): Declare
1434 with asm name __mempcpy.
1435 [NOT_IN_libc || !SHARED] (stpcpy): Declare with asm name __stpcpy.
1436
1437 [BZ #17572]
1438 * sysdeps/x86_64/rawmemchr.S (rawmemchr): Rename to __rawmemchr
1439 and define as weak alias of __rawmemchr.
1440 (__rawmemchr): Do not define as strong alias of rawmemchr.
1441
1442 [BZ #17571]
1443 * stdlib/msort.c (qsort_r): Rename to __qsort_r and define as weak
1444 alias of __qsort_r.
1445 (qsort): Call __qsort_r instead of qsort_r.
1446 * include/stdlib.h (qsort_r): Do not call libc_hidden_proto.
1447 (__qsort_r): Declare. Call libc_hidden_proto.
1448 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Call __qsort_r
1449 instead of qsort_r.
1450 * nscd/gai.c (__qsort_r): Define to qsort_r.
1451 * posix/tst-rfc3484.c (__qsort_r): Likewise.
1452 * posix/tst-rfc3484-2.c (__qsort_r): Likewise.
1453 * posix/tst-rfc3484-3.c (__qsort_r): Likewise.
1454
1455 [BZ #17570]
1456 * malloc/malloc.c (malloc_info): Rename to __malloc_info and
1457 define as weak alias of __malloc_info.
1458
1459 [BZ #17584]
1460 * dirent/rewinddir.c (rewinddir): Rename to __rewinddir and define
1461 as weak alias of __rewinddir. Don't use libc_hidden_def.
1462 (__rewinddir): Use libc_hidden_def.
1463 * sysdeps/mach/hurd/rewinddir.c: Rename to __rewinddir and define
1464 as weak alias of __rewinddir. Don't use libc_hidden_def.
1465 (__rewinddir): Use libc_hidden_def.
1466 * sysdeps/posix/rewinddir.c: Rename to __rewinddir and define as
1467 weak alias of __rewinddir. Don't use libc_hidden_def.
1468 (__rewinddir): Use libc_hidden_def.
1469 * include/dirent.h (rewinddir): Don't use libc_hidden_proto.
1470 (__rewinddir): Use libc_hidden_proto.
1471 * sysdeps/posix/getcwd.c [!_LIBC] (__rewinddir): Define to
1472 rewinddir.
1473 (__getcwd): Use __rewinddir instead of rewinddir.
1474
1475 [BZ #17583]
1476 * libio/fileno.c (fileno): Rename to __fileno and define as weak
1477 alias of __fileno. Use libc_hidden_weak.
1478 (__fileno): Use libc_hidden_def.
1479 [weak_alias] (fileno_unlocked): Define as weak alias of __fileno.
1480 * libio/ftello.c (ftello): Rename to __ftello and define as weak
1481 alias of __ftello.
1482 [__OFF_T_MATCHES_OFF64_T] (ftello64): Define as weak alias of
1483 __ftello.
1484 * libio/iofread.c [weak_alias && !_IO_MTSAFE_IO]
1485 (__fread_unlocked): Define as strong alias of _IO_fread. Use
1486 libc_hidden_def.
1487 (fread_unlocked): Don't use libc_hidden_ver.
1488 * libio/iofread_u.c (fread_unlocked): Rename to __fread_unlocked
1489 and define as weak alias of __fread_unlocked. Don't use
1490 libc_hidden_def.
1491 (__fread_unlocked): Use libc_hidden_def.
1492 * include/stdio.h (__fileno): Declare. Use libc_hidden_proto.
1493 (ftello): Don't use libc_hidden_proto.
1494 (__ftello): Declare. Use libc_hidden_proto.
1495 (fread_unlocked): Don't use libc_hidden_proto.
1496 (__fread_unlocked): Declare. Use libc_hidden_proto.
1497 * time/tzfile.c (__tzfile_read): Use __fileno, __fread_unlocked
1498 and __ftello instead of fileno, fread_unlocked and ftello.
1499
15002012-11-12 Siddhesh Poyarekar <siddhesh@redhat.com>
1501
1502 * sysdeps/s390/s390-32/bcopy.S (__bcopy): Use GOT instead of
1503 GOT12.
1504 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_load_address):
1505 Likewise.
1506 (_dl_start_user): Likewise.
1507 * sysdeps/s390/s390-32/setjmp.S (__sigsetjmp): Likewise.
1508
15092014-11-12 Carlos O'Donell <carlos@redhat.com>
1510 Siddhesh Poyarekar <siddhesh@redhat.com>
1511
1512 * sysdeps/s390/s390-32/dl-machine.h (_dl_start_user):
1513 Move argv and envp down instead of moving argc up.
1514 * sysdeps/s390/s390-32/dl-sysdep.h: New file.
1515
15162014-11-12 Leonhard Holz <leonhard.holz@web.de>
1517
1518 [BZ #17506]
1519 * test-skeleton.c (main): Return successful if one of
1520 EXPECTED_SIGNAL or EXPECTED_STATUS is met when both given.
1521 * string/tst-strcoll-overflow.c: Define expected status.
1522
15232014-11-12 Tatiana Udalova <t.udalova@samsung.com>
1524
1525 [BZ #17475]
1526 * locale/iso-639.def: Define Bhili and Tulu language codes.
1527
15282014-11-11 Alan Hayward <alan.hayward@arm.com>
1529
1530 * sysdeps/unix/sysv/linux/aarch64/bits/ipc.h: New file.
1531
15322014-11-10 Renlin Li <Renlin.Li@arm.com>
1533
1534 [BZ #17555]
1535 * sysdeps/aarch64/start.S (_start): Delete x29 overwritten assignment.
1536
15372014-11-10 Andrew Senkevich <andrew.n.senkevich@gmail.com>
1538
1539 * configure.ac: Updated check of minimal required version to
1540 2.22.
1541 * manual/install.texi (Tools for Compilation): Updated version
1542 number.
1543 * configure: Regenerated.
1544 * INSTALL: Likewise.
1545
15462014-11-07 Andreas Schwab <schwab@linux-m68k.org>
1547
1548 * sysdeps/unix/sysv/linux/m68k/localplt.data (ld.so): Remove
1549 __tls_get_addr.
1550
15512014-11-07 Joseph Myers <joseph@codesourcery.com>
1552
1553 * include/sys/wait.h (__libc_waitpid): Remove declaration.
1554 * posix/waitpid.c (__libc_waitpid): Rename to __waitpid.
1555 (__waitpid): Don't define as alias. Use libc_hidden_def not
1556 libc_hidden_weak.
1557 (waitpid): Define as alias of __waitpid.
1558 * sysdeps/unix/bsd/waitpid.c (__libc_waitpid): Rename to
1559 __waitpid.
1560 (__waitpid): Don't define as alias. Use libc_hidden_def not
1561 libc_hidden_weak.
1562 (waitpid): Define as alias of __waitpid.
1563 * sysdeps/unix/sysv/linux/i386/syscalls.list (waitpid): Remove
1564 __libc_waitpid alias.
1565 * sysdeps/unix/sysv/linux/m68k/syscalls.list (waitpid): Likewise.
1566 * sysdeps/unix/sysv/linux/powerpc/syscalls.list (waitpid):
1567 Likewise.
1568 * sysdeps/unix/sysv/linux/sh/syscalls.list (waitpid): Likewise.
1569 * sysdeps/unix/sysv/linux/sparc/syscalls.list (waitpid): Likewise.
1570 * sysdeps/unix/sysv/linux/tile/waitpid.S (__libc_waitpid): Remove
1571 alias.
1572 * sysdeps/unix/sysv/linux/waitpid.c (__libc_waitpid): Rename to
1573 __waitpid.
1574 (__waitpid): Don't define as alias. Use libc_hidden_def not
1575 libc_hidden_weak.
1576 (waitpid): Define as alias of __waitpid.
1577
15782014-11-06 Carlos O'Donell <carlos@redhat.com>
1579
1580 * manual/llio.texi: Add comment that write safety has been
1581 fixed in Linux.
1582
1583 * elf/Makefile (all-built-dso): Add $(common-objpfx)elf/ld.so.
1584 (localplt-build-dso): Add elf/ld.so.
1585 * sysdeps/unix/sysv/linux/i386/localplt.data: Add ___tls_get_addr
1586 i.e. 3 underscore version, __libc_memalign, malloc, calloc, realloc,
1587 and free for ld.so.
1588 * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data: Add
1589 __libc_memalign, malloc, calloc, realloc, and free for ld.so.
1590 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data:
1591 Likewise.
1592 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data:
1593 Likewise.
1594 * sysdeps/unix/sysv/linux/s390/localplt.data: Likewise.
1595 * sysdeps/generic/localplt.data: Add __tls_get_addr i.e. 2 underscore
1596 version, __libc_memalign, malloc, calloc, realloc and free for ld.so.
1597 * sysdeps/unix/sysv/linux/aarch64/localplt.data: Likewise.
1598 * sysdeps/unix/sysv/linux/arm/localplt.data: Likewise.
1599 * sysdeps/unix/sysv/linux/alpha/localplt.data: Likewise.
1600 * sysdeps/unix/sysv/linux/ia64/localplt.data: Likewise.
1601 * sysdeps/unix/sysv/linux/m68k/localplt.data: Likewise.
1602 * sysdeps/unix/sysv/linux/microblaze/localplt.data: Likewise.
1603 * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: Likewise.
1604 * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data: Likewise.
1605
16062014-11-05 Joseph Myers <joseph@codesourcery.com>
1607
1608 [BZ #14132]
1609 * include/libc-symbols.h (INTUSE): Remove macro.
1610 (INTDEF): Likewise.
1611 (INTVARDEF): Likewise.
1612 (_INTVARDEF): Likewise.
1613 (INTDEF2): Likewise.
1614 (INTVARDEF2): Likewise.
1615 * elf/rtld.c [!HAVE_INLINED_SYSCALLS] (_dl_starting_up): Use
1616 rtld_hidden_def instead of INTVARDEF.
1617 * sysdeps/generic/ldsodefs.h [IS_IN_rtld]
1618 (_dl_starting_up_internal): Remove declaration.
1619 (_dl_starting_up): Use rtld_hidden_proto.
1620 * elf/dl-init.c [!HAVE_INLINED_SYSCALLS] (_dl_starting_up): Remove
1621 declaration.
1622 [!HAVE_INLINED_SYSCALLS] (_dl_starting_up_internal): Likewise.
1623 (_dl_init) [!HAVE_INLINED_SYSCALLS]: Don't use INTUSE with
1624 _dl_starting_up.
1625 * elf/dl-writev.h (_dl_writev): Likewise.
1626 * sysdeps/powerpc/powerpc64/dl-machine.h [!HAVE_INLINED_SYSCALLS]
1627 (DL_STARTING_UP_DEF): Use __GI__dl_starting_up instead of
1628 _dl_starting_up_internal.
1629
16302014-11-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
1631
1632 * stdio-common/tst-fmemopen.c (do_test): Refactor to use
1633 test-skeleton.c.
1634
16352014-11-05 Will Newton <will.newton@linaro.org>
1636
1637 * benchtests/Makefile: (bench-malloc): Add malloc thread
1638 scalability benchmark.
1639 * benchtests/bench-malloc-threads.c: New file.
1640
16412014-11-05 Richard Earnshaw <rearnsha@arm.com>
1642
1643 * sysdeps/aarch64/strchrnul.S: New file.
1644
16452014-11-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
1646
1647 * sysdeps/powerpc/powerpc64/power8/memset.S (MTVSRD_V1_R4): Simplify
1648 definition.
1649 * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S (MFVSRD_R3_V1):
1650 Likwise.
1651 * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S (MFVSRD_R3_V1):
1652 Likewise.
1653 * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (MFVSRD_R3_V1):
1654 Likewise.
1655 * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S (MFVSRD_R3_V1):
1656 Likewise.
1657 * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S (MFVSRD_R3_V1):
1658 Likewise.
1659
16602014-11-05 Arjun Shankar <arjun.is@lostca.se>
1661
1662 * catgets/test-gencat.c: Use test-skeleton.c.
1663 * catgets/tst-catgets.c: Likewise.
1664 * csu/tst-empty.c: Likewise.
1665 * elf/tst-audit2.c: Likewise.
1666 * elf/tst-global1.c: Likewise.
1667 * elf/tst-pathopt.c: Likewise.
1668 * elf/tst-piemod1.c: Likewise.
1669 * elf/tst-tls10.c: Likewise.
1670 * elf/tst-tls11.c: Likewise.
1671 * elf/tst-tls12.c: Likewise.
1672 * gnulib/tst-gcc.c: Likewise.
1673 * iconvdata/tst-e2big.c: Likewise.
1674 * iconvdata/tst-loading.c: Likewise.
1675 * iconv/tst-iconv1.c: Likewise.
1676 * iconv/tst-iconv2.c: Likewise.
1677 * inet/test-inet6_opt.c: Likewise.
1678 * inet/tst-gethnm.c: Likewise.
1679 * inet/tst-network.c: Likewise.
1680 * inet/tst-ntoa.c: Likewise.
1681 * intl/tst-codeset.c: Likewise.
1682 * intl/tst-gettext2.c: Likewise.
1683 * intl/tst-gettext3.c: Likewise.
1684 * intl/tst-ngettext.c: Likewise.
1685 * intl/tst-translit.c: Likewise.
1686 * io/test-stat.c: Likewise.
1687 * libio/test-fmemopen.c: Likewise.
1688 * libio/tst-freopen.c: Likewise.
1689 * libio/tst-sscanf.c: Likewise.
1690 * libio/tst-ungetwc1.c: Likewise.
1691 * libio/tst-ungetwc2.c: Likewise.
1692 * libio/tst-widetext.c: Likewise.
1693 * localedata/tst-ctype.c: Likewise.
1694 * localedata/tst-digits.c: Likewise.
1695 * localedata/tst-leaks.c: Likewise.
1696 * localedata/tst-mbswcs1.c: Likewise.
1697 * localedata/tst-mbswcs2.c: Likewise.
1698 * localedata/tst-mbswcs3.c: Likewise.
1699 * localedata/tst-mbswcs4.c: Likewise.
1700 * localedata/tst-mbswcs5.c: Likewise.
1701 * localedata/tst-setlocale.c: Likewise.
1702 * localedata/tst-trans.c: Likewise.
1703 * localedata/tst-wctype.c: Likewise.
1704 * localedata/tst-xlocale1.c: Likewise.
1705 * login/tst-grantpt.c: Likewise.
1706 * malloc/tst-calloc.c: Likewise.
1707 * malloc/tst-malloc.c: Likewise.
1708 * malloc/tst-mallocstate.c: Likewise.
1709 * malloc/tst-mcheck.c: Likewise.
1710 * malloc/tst-mtrace.c: Likewise.
1711 * malloc/tst-obstack.c: Likewise.
1712 * math/atest-exp2.c: Likewise.
1713 * math/atest-exp.c: Likewise.
1714 * math/atest-sincos.c: Likewise.
1715 * math/test-matherr.c: Likewise.
1716 * math/test-misc.c: Likewise.
1717 * math/test-powl.c: Likewise.
1718 * math/tst-definitions.c: Likewise.
1719 * misc/tst-dirname.c: Likewise.
1720 * misc/tst-efgcvt.c: Likewise.
1721 * misc/tst-fdset.c: Likewise.
1722 * misc/tst-hsearch.c: Likewise.
1723 * misc/tst-mntent2.c: Likewise.
1724 * nptl/tst-sem7.c: Likewise.
1725 * nptl/tst-sem8.c: Likewise.
1726 * nptl/tst-sem9.c: Likewise.
1727 * nss/test-netdb.c: Likewise.
1728 * posix/tst-fnmatch.c: Likewise.
1729 * posix/tst-getlogin.c: Likewise.
1730 * posix/tst-gnuglob.c: Likewise.
1731 * posix/tst-mmap.c: Likewise.
1732 * pwd/tst-getpw.c: Likewise.
1733 * resolv/tst-inet_ntop.c: Likewise.
1734 * rt/tst-timer.c: Likewise.
1735 * stdio-common/test-fseek.c: Likewise.
1736 * stdio-common/test-popen.c: Likewise.
1737 * stdio-common/test-vfprintf.c: Likewise.
1738 * stdio-common/tst-cookie.c: Likewise.
1739 * stdio-common/tst-fileno.c: Likewise.
1740 * stdio-common/tst-gets.c: Likewise.
1741 * stdio-common/tst-obprintf.c: Likewise.
1742 * stdio-common/tst-perror.c: Likewise.
1743 * stdio-common/tst-sprintf2.c: Likewise.
1744 * stdio-common/tst-sprintf3.c: Likewise.
1745 * stdio-common/tst-sprintf.c: Likewise.
1746 * stdio-common/tst-swprintf.c: Likewise.
1747 * stdio-common/tst-tmpnam.c: Likewise.
1748 * stdio-common/tst-unbputc.c: Likewise.
1749 * stdio-common/tst-wc-printf.c: Likewise.
1750 * stdlib/tst-environ.c: Likewise.
1751 * stdlib/tst-fmtmsg.c: Likewise.
1752 * stdlib/tst-limits.c: Likewise.
1753 * stdlib/tst-rand48-2.c: Likewise.
1754 * stdlib/tst-rand48.c: Likewise.
1755 * stdlib/tst-random2.c: Likewise.
1756 * stdlib/tst-random.c: Likewise.
1757 * stdlib/tst-strtol.c: Likewise.
1758 * stdlib/tst-strtoll.c: Likewise.
1759 * stdlib/tst-tls-atexit.c: Likewise.
1760 * stdlib/tst-xpg-basename.c: Likewise.
1761 * string/test-ffs.c: Likewise.
1762 * string/tst-bswap.c: Likewise.
1763 * string/tst-inlcall.c: Likewise.
1764 * string/tst-strtok.c: Likewise.
1765 * string/tst-strxfrm.c: Likewise.
1766 * sysdeps/x86_64/tst-audit10.c: Likewise.
1767 * sysdeps/x86_64/tst-audit3.c: Likewise.
1768 * sysdeps/x86_64/tst-audit4.c: Likewise.
1769 * sysdeps/x86_64/tst-audit5.c: Likewise.
1770 * time/tst-ftime_l.c: Likewise.
1771 * time/tst-getdate.c: Likewise.
1772 * time/tst-mktime3.c: Likewise.
1773 * time/tst-mktime.c: Likewise.
1774 * time/tst-posixtz.c: Likewise.
1775 * time/tst-strptime2.c: Likewise.
1776 * time/tst-strptime3.c: Likewise.
1777 * wcsmbs/tst-btowc.c: Likewise.
1778 * wcsmbs/tst-mbrtowc.c: Likewise.
1779 * wcsmbs/tst-mbsrtowcs.c: Likewise.
1780 * wcsmbs/tst-wchar-h.c: Likewise.
1781 * wcsmbs/tst-wcpncpy.c: Likewise.
1782 * wcsmbs/tst-wcrtomb.c: Likewise.
1783 * wcsmbs/tst-wcsnlen.c: Likewise.
1784 * wcsmbs/tst-wcstof.c: Likewise.
1785
17862014-11-04 Joseph Myers <joseph@codesourcery.com>
1787
1788 [BZ #14132]
1789 * elf/dl-profile.c (_dl_mcount): Use rtld_hidden_def instead of
1790 INTDEF.
1791 * sysdeps/generic/ldsodefs.h (_dl_mcount_internal): Remove
1792 declaration.
1793 (_dl_mcount): Use rtld_hidden_proto.
1794 * elf/dl-runtime.c (_dl_profile_fixup): Don't use INTUSE with
1795 _dl_mcount.
1796 * elf/rtld.c (_rtld_global_ro): Likewise.
1797
1798 [BZ #14132]
1799 * elf/dl-init.c (_dl_init): Don't use INTDEF.
1800 * sysdeps/aarch64/dl-machine.h (RTLD_START): Use _dl_init instead
1801 of _dl_init_internal.
1802 * sysdeps/alpha/dl-machine.h (RTLD_START): Likewise.
1803 * sysdeps/arm/dl-machine.h (RTLD_START): Likewise.
1804 * sysdeps/hppa/dl-machine.h (RTLD_START): Likewise.
1805 * sysdeps/i386/dl-machine.h (RTLD_START): Likewise.
1806 * sysdeps/ia64/dl-machine.h (RTLD_START): Likewise.
1807 * sysdeps/m68k/dl-machine.h (RTLD_START): Likewise.
1808 * sysdeps/microblaze/dl-machine.h (RTLD_START): Likewise.
1809 * sysdeps/mips/dl-machine.h (RTLD_START): Likewise.
1810 * sysdeps/powerpc/powerpc32/dl-start.S (_start): Likewise.
1811 * sysdeps/s390/s390-32/dl-machine.h (RTLD_START): Likewise.
1812 * sysdeps/s390/s390-64/dl-machine.h (RTLD_START): Likewise.
1813 * sysdeps/sh/dl-machine.h (RTLD_START): Likewise.
1814 * sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Likewise.
1815 * sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise.
1816 * sysdeps/tile/dl-start.S (_start): Likewise.
1817 * sysdeps/x86_64/dl-machine.h (RTLD_START): Likewise.
1818 * sysdeps/x86_64/x32/dl-machine.h (RTLD_START): Likewise.
1819
1820 [BZ #14132]
1821 * sysdeps/generic/ldsodefs.h (_dl_argv): Use rtld_hidden_proto.
1822 [IS_IN_rtld] (_dl_argv_internal): Do not declare.
1823 (rtld_progname): Make macro definition unconditional.
1824 * elf/rtld.c (_dl_argv): Use rtld_hidden_data_def instead of
1825 INTDEF.
1826 (dlmopen_doit): Do not use INTUSE with _dl_argv.
1827 (dl_main): Likewise.
1828 * elf/dl-sysdep.c (_dl_sysdep_start): Likewise.
1829 * sysdeps/alpha/dl-machine.h (RTLD_START): Use __GI__dl_argv
1830 instead of _dl_argv_internal.
1831 * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Use
1832 __GI__dl_argv instead of INTUSE(_dl_argv).
1833 * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Use
1834 __GI__dl_argv instead of _dl_argv_internal.
1835
1836 * soft-fp/op-common.h (_FP_TO_INT_ROUND): New macro.
1837 * soft-fp/double.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_D): New
1838 macro.
1839 [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_D): Likewise.
1840 * soft-fp/extended.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_E):
1841 New macro.
1842 [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_E): Likewise.
1843 * soft-fp/quad.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_Q): New
1844 macro.
1845 [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_Q): Likewise.
1846 * soft-fp/single.h (FP_TO_INT_ROUND_S): New macro.
1847
18482014-11-04 Andreas Schwab <schwab@suse.de>
1849
1850 * posix/regex_internal.h: Don't include <locale/elem-hash.h>.
1851
18522014-11-03 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
1853
1854 * sysdeps/powerpc/powerpc64/power8/memset.S (MTVSRD_V1_R4): Encode
1855 mtvsrd instruction in binary form.
1856
18572014-11-03 Andreas Schwab <schwab@suse.de>
1858
1859 [BZ #17522]
1860 * libio/wfileops.c (_IO_wdo_write): If the file buffer has room
1861 for less than MB_LEN_MAX use a local buffer of that size.
1862 * libio/tst-fputws.c: New file.
1863 * libio/Makefile (tests): Add tst-fputws.
1864
18652014-11-01 Jose E. Marchesi <jose.marchesi@oracle.com>
1866
1867 * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu): fix
1868 the size of the fpu_fr.fpu_dregs[] array.
1869
18702014-11-01 Joseph Myers <joseph@codesourcery.com>
1871
1872 * posix/nanosleep.c (__libc_nanosleep): Rename to __nanosleep.
1873 (__nanosleep): Do not define as alias.
1874 (nanosleep): Define as alias of __nanosleep.
1875 * sysdeps/unix/sysv/linux/syscalls.list (nanosleep): Remove
1876 __libc_nanosleep name.
1877
18782014-10-31 Joseph Myers <joseph@codesourcery.com>
1879
1880 * aclocal.m4 (GLIBC_AUTOCONF_VERSION): Mention need to update
1881 install.texi in comment.
1882
18832014-10-31 Torvald Riegel <triegel@redhat.com>
1884
1885 * sysdeps/powerpc/bits/atomic.h (atomic_write_barrier): Remove and...
1886 * sysdeps/powerpc/powerpc32/bits/atomic.h (atomic_write_barrier):
1887 ... add here and use lwsync or sync ...
1888 * sysdeps/powerpc/powerpc64/bits/atomic.h (atomic_write_barrier):
1889 ... and add here using lwsync.
1890
18912014-10-31 Matthew Fortune <matthew.fortune@imgtec.com>
1892
1893 * elf/dl-machine-reject-phdr.h: New file.
1894 * elf/dl-load.c: #include that.
1895 (open_verify): Call elf_machine_reject_phdr_p and ignore the file
1896 if that returned true.
1897
18982014-10-31 Roland McGrath <roland@hack.frob.com>
1899
1900 [BZ #17496]
1901 * Makerules: Move gnu/lib-names.h generation chunk up, to right after
1902 gen-as-const-headers chunk. Add a big scare comment after the last
1903 safe place to touch before-compile.
1904
19052014-10-31 Joseph Myers <joseph@codesourcery.com>
1906
1907 * manual/install.texi (Tools for Compilation): Update autoconf
1908 version requirements.
1909 * INSTALL: Regenerated.
1910
1911 * misc/pselect.c [!__pselect] (__libc_pselect): Remove alias.
1912 * sysdeps/unix/sysv/linux/pselect.c [__NR_pselect6]
1913 (__libc_pselect): Likewise.
1914
1915 [BZ #14138]
1916 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Remove file.
1917 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
1918 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
1919 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
1920
19212014-10-31 Torvald Riegel <triegel@redhat.com>
1922
1923 * sysdeps/sparc/sparc32/bits/atomic.h (atomic_write_barrier): Use
1924 correct barrier instruction.
1925 * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h (atomic_write_barrier):
1926 Likewise.
1927 * sysdeps/sparc/sparc64/bits/atomic.h (atomic_write_barrier):
1928 Likewise.
1929
19302014-10-30 Roland McGrath <roland@hack.frob.com>
1931
1932 * include/ctype.h: Include <ctype/ctype.h> first thing rather than
1933 after defining inlines. Instead, just use parens to defeat macro
1934 expansion of __isctype in its declaration.
1935
19362014-10-30 Joseph Myers <joseph@codesourcery.com>
1937
1938 * include/sys/uio.h (__libc_readv): Remove declaration.
1939 (__libc_writev): Likewise.
1940 * misc/readv.c (__libc_readv): Rename to __readv.
1941 (__readv): Do not define as alias.
1942 (readv): Define as alias of __readv.
1943 * misc/writev.c (__libc_writev): Rename to __writev.
1944 (__writev): Do not define as alias.
1945 (writev): Define as alias of __writev.
1946 * sysdeps/posix/readv.c (__libc_readv): Rename to __readv.
1947 (__readv): Do not define as alias.
1948 (readv): Define unconditionally as alias of __readv.
1949 * sysdeps/posix/writev.c (__libc_writev): Rename to __writev.
1950 (__writev): Do not define as alias.
1951 (writev): Define unconditionally as alias of __writev.
1952 * sysdeps/unix/syscalls.list (readv): Do not define __libc_readv
1953 name.
1954 (writev): Do not define __libc_writev name.
1955
19562014-10-30 Roland McGrath <roland@hack.frob.com>
1957
1958 * iconv/iconv_charmap.c (add_bytes): Make IN argument pointer to const.
1959 (convert_charseq): New function, broken out of ...
1960 (use_from_charmap): ... here. Call it.
1961 (use_to_charmap): Use convert_charseq and free instead of duplicating
1962 its code with a variable-length stack struct.
1963
19642014-10-30 Joseph Myers <joseph@codesourcery.com>
1965
1966 * include/fcntl.h (__libc_creat): Remove declaration.
1967 * io/creat.c (__libc_creat): Rename to creat.
1968 (creat): Do not define as alias.
1969 * sysdeps/unix/sysv/linux/alpha/creat.c (creat64): Define as alias
1970 of creat instead of __libc_creat.
1971 * sysdeps/unix/sysv/linux/generic/creat.c (__libc_creat): Rename
1972 to creat.
1973 (creat): Do not define as alias.
1974 [__WORDSIZE == 64] (creat64): Define as alias of creat instead of
1975 __libc_creat.
1976 * sysdeps/unix/sysv/linux/syscalls.list (creat): Do not define
1977 __libc_creat name.
1978 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list (creat):
1979 Likewise.
1980
19812014-10-29 Carlos O'Donell <carlos@redhat.com>
1982
1983 * manual/llio.texi: Add comments discussing why write() may be
1984 considered MT-unsafe on Linux.
1985
19862014-10-28 Carlos O'Donell <carlos@redhat.com>
1987
1988 * dl-load.c (local_strdup): Remove.
1989 (expand_dynamic_string_token): Use __strdup.
1990 (decompose_rpath): Likewise.
1991 (_dl_map_object): Likewise.
1992
19932014-10-28 Joseph Myers <joseph@codesourcery.com>
1994
1995 [BZ #14132]
1996 * sysdeps/generic/unwind-dw2-fde.c
1997 (__register_frame_info_bases_internal): Do not declare.
1998 (__register_frame_info_table_bases_internal): Likewise.
1999 (__deregister_frame_info_bases_internal): Likewise.
2000 (__register_frame_info_bases): Declare and use hidden_proto before
2001 definition. Use hidden_def instead of INTDEF.
2002 (__register_frame_info_table_bases): Likewise.
2003 (__deregister_frame_info_bases): Likewise.
2004 (__register_frame_info): Do not use INTUSE.
2005 (__register_frame): Likewise.
2006 (__register_frame_info_table): Likewise.
2007 (__register_frame_table): Likewise.
2008 (__deregister_frame_info): Likewise.
2009 (__deregister_frame): Likewise.
2010
20112014-10-27 Gratian Crisan <gratian.crisan@ni.com>
2012
2013 * sysdeps/unix/sysv/linux/arm/kernel-features.h
2014 [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_FUTEX_LOCK_PI): Do
2015 not undefine.
2016 [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_REQUEUE_PI):
2017 Likewise.
2018 [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_SET_ROBUST_LIST):
2019 Likewise.
2020
20212014-10-27 Joseph Myers <joseph@codesourcery.com>
2022
2023 [BZ #14138]
2024 * sysdeps/unix/sysv/linux/arm/setfsgid.c: Remove file.
2025 * sysdeps/unix/sysv/linux/arm/setfsuid.c: Likewise.
2026 * sysdeps/unix/sysv/linux/i386/setfsgid.c: Likewise.
2027 * sysdeps/unix/sysv/linux/i386/setfsuid.c: Likewise.
2028 * sysdeps/unix/sysv/linux/m68k/setfsgid.c: Likewise.
2029 * sysdeps/unix/sysv/linux/m68k/setfsuid.c: Likewise.
2030 * sysdeps/unix/sysv/linux/s390/s390-32/setfsgid.c: Likewise.
2031 * sysdeps/unix/sysv/linux/s390/s390-32/setfsuid.c: Likewise.
2032 * sysdeps/unix/sysv/linux/sh/setfsgid.c: Likewise.
2033 * sysdeps/unix/sysv/linux/sh/setfsuid.c: Likewise.
2034 * sysdeps/unix/sysv/linux/sparc/sparc32/setfsgid.c: Likewise.
2035 * sysdeps/unix/sysv/linux/sparc/sparc32/setfsuid.c: Likewise.
2036 * sysdeps/unix/sysv/linux/arm/syscalls.list (setfsgid): Add
2037 syscall.
2038 (setfsuid): Likewise.
2039 * sysdeps/unix/sysv/linux/i386/syscalls.list (setfsgid): Likewise.
2040 (setfsuid): Likewise.
2041 * sysdeps/unix/sysv/linux/m68k/syscalls.list (setfsgid): Likewise.
2042 (setfsuid): Likewise.
2043 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (setfsgid):
2044 Likewise.
2045 (setfsuid): Likewise.
2046 * sysdeps/unix/sysv/linux/sh/syscalls.list (setfsgid): Likewise.
2047 (setfsuid): Likewise.
2048 * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (setfsgid):
2049 Likewise.
2050 (setfsuid): Likewise.
2051
20522014-10-27 Andreas Schwab <schwab@suse.de>
2053
2054 [BZ #17501]
2055 * sysdeps/i386/i686/multiarch/strcasecmp.S (__strcasecmp): Fix
2056 check for Slow_SSE4_2 feature bit.
2057 * sysdeps/i386/i686/multiarch/strcmp.S (STRCMP): Likewise.
2058 * sysdeps/i386/i686/multiarch/strncase.S (__strncasecmp): Likewise.
2059 * sysdeps/x86_64/multiarch/strcmp.S (STRCMP, __strcascmp):
2060 Likewise. Fix check for Fast_Unaligned_Load feature bit.
2061
20622014-10-24 Roland McGrath <roland@hack.frob.com>
2063
2064 * configure.ac: Validate compiler version with a empirical test of
2065 __GNUC__ and __GNUC_MINOR__ predefined values, rather than by grepping
2066 $CC -v output.
2067 * configure: Regenerated.
2068
2069 * inet/htons.c (htons): Prototypify.
2070 * inet/htonl.c (htonl): Likewise.
2071
20722014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
2073
2074 * string/strncat.c (strncat): Improve performance by using strlen.
2075
20762014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
2077
2078 * string/strcat.c (strcat): Improve performance by using strlen/strcpy.
2079
20802014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
2081
2082 * sysdeps/aarch64/fpu/fgetexcptflg.c (fegetexceptflag):
2083 Call libc_fetestexcept_aarch64.
2084
20852014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
2086
2087 * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept):
2088 Call libc_feholdexcept_aarch64.
2089
20902014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
2091
2092 * sysdeps/aarch64/fpu/fegetround.c (fegetround):
2093 Call get_rounding_mode.
2094
20952014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
2096
2097 * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept):
2098 Simplify logic.
2099
21002014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
2101
2102 * sysdeps/aarch64/fpu/fedisblxcpt.c (fedisableexcept):
2103 Simplify logic.
2104
21052014-10-24 Joseph Myers <joseph@codesourcery.com>
2106
2107 [BZ #14138]
2108 * sysdeps/unix/sysv/linux/arm/getegid.c: Remove file.
2109 * sysdeps/unix/sysv/linux/arm/geteuid.c: Likewise.
2110 * sysdeps/unix/sysv/linux/arm/getgid.c: Likewise.
2111 * sysdeps/unix/sysv/linux/arm/getgroups.c: Likewise.
2112 * sysdeps/unix/sysv/linux/arm/getresgid.c: Likewise.
2113 * sysdeps/unix/sysv/linux/arm/getresuid.c: Likewise.
2114 * sysdeps/unix/sysv/linux/arm/getuid.c: Likewise.
2115 * sysdeps/unix/sysv/linux/i386/getegid.c: Likewise.
2116 * sysdeps/unix/sysv/linux/i386/geteuid.c: Likewise.
2117 * sysdeps/unix/sysv/linux/i386/getgid.c: Likewise.
2118 * sysdeps/unix/sysv/linux/i386/getgroups.c: Likewise.
2119 * sysdeps/unix/sysv/linux/i386/getresgid.c: Likewise.
2120 * sysdeps/unix/sysv/linux/i386/getresuid.c: Likewise.
2121 * sysdeps/unix/sysv/linux/i386/getuid.c: Likewise.
2122 * sysdeps/unix/sysv/linux/m68k/getegid.c: Likewise.
2123 * sysdeps/unix/sysv/linux/m68k/geteuid.c: Likewise.
2124 * sysdeps/unix/sysv/linux/m68k/getgid.c: Likewise.
2125 * sysdeps/unix/sysv/linux/m68k/getgroups.c: Likewise.
2126 * sysdeps/unix/sysv/linux/m68k/getresgid.c: Likewise.
2127 * sysdeps/unix/sysv/linux/m68k/getresuid.c: Likewise.
2128 * sysdeps/unix/sysv/linux/m68k/getuid.c: Likewise.
2129 * sysdeps/unix/sysv/linux/s390/s390-32/getegid.c: Likewise.
2130 * sysdeps/unix/sysv/linux/s390/s390-32/geteuid.c: Likewise.
2131 * sysdeps/unix/sysv/linux/s390/s390-32/getgid.c: Likewise.
2132 * sysdeps/unix/sysv/linux/s390/s390-32/getgroups.c: Likewise.
2133 * sysdeps/unix/sysv/linux/s390/s390-32/getresgid.c: Likewise.
2134 * sysdeps/unix/sysv/linux/s390/s390-32/getresuid.c: Likewise.
2135 * sysdeps/unix/sysv/linux/s390/s390-32/getuid.c: Likewise.
2136 * sysdeps/unix/sysv/linux/sh/getegid.c: Likewise.
2137 * sysdeps/unix/sysv/linux/sh/geteuid.c: Likewise.
2138 * sysdeps/unix/sysv/linux/sh/getgid.c: Likewise.
2139 * sysdeps/unix/sysv/linux/sh/getgroups.c: Likewise.
2140 * sysdeps/unix/sysv/linux/sh/getresgid.c: Likewise.
2141 * sysdeps/unix/sysv/linux/sh/getresuid.c: Likewise.
2142 * sysdeps/unix/sysv/linux/sh/getuid.c: Likewise.
2143 * sysdeps/unix/sysv/linux/sparc/sparc32/getegid.c: Likewise.
2144 * sysdeps/unix/sysv/linux/sparc/sparc32/geteuid.c: Likewise.
2145 * sysdeps/unix/sysv/linux/sparc/sparc32/getgid.c: Likewise.
2146 * sysdeps/unix/sysv/linux/sparc/sparc32/getgroups.c: Likewise.
2147 * sysdeps/unix/sysv/linux/sparc/sparc32/getuid.c: Likewise.
2148 * sysdeps/unix/sysv/linux/arm/syscalls.list (getegid): Add
2149 syscall.
2150 (geteuid): Likewise.
2151 (getgid): Likewise.
2152 (getuid): Likewise.
2153 (getresgid): Likewise.
2154 (getresuid): Likewise.
2155 (getgroups): Likewise.
2156 * sysdeps/unix/sysv/linux/i386/syscalls.list (getegid): Likewise.
2157 (geteuid): Likewise.
2158 (getgid): Likewise.
2159 (getuid): Likewise.
2160 (getresgid): Likewise.
2161 (getresuid): Likewise.
2162 (getgroups): Likewise.
2163 * sysdeps/unix/sysv/linux/m68k/syscalls.list (getegid): Likewise.
2164 (geteuid): Likewise.
2165 (getgid): Likewise.
2166 (getuid): Likewise.
2167 (getresgid): Likewise.
2168 (getresuid): Likewise.
2169 (getgroups): Likewise.
2170 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (getegid):
2171 Likewise.
2172 (geteuid): Likewise.
2173 (getgid): Likewise.
2174 (getuid): Likewise.
2175 (getresgid): Likewise.
2176 (getresuid): Likewise.
2177 (getgroups): Likewise.
2178 * sysdeps/unix/sysv/linux/sh/syscalls.list (getegid): Likewise.
2179 (geteuid): Likewise.
2180 (getgid): Likewise.
2181 (getuid): Likewise.
2182 (getresgid): Likewise.
2183 (getresuid): Likewise.
2184 (getgroups): Likewise.
2185 * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (getegid):
2186 Likewise.
2187 (geteuid): Likewise.
2188 (getgid): Likewise.
2189 (getuid): Likewise.
2190 (getgroups): Likewise.
2191
2192 [BZ #14138]
2193 * sysdeps/unix/sysv/linux/i386/chown.c: Remove file.
2194 * sysdeps/unix/sysv/linux/i386/fchown.c: Likewise.
2195 * sysdeps/unix/sysv/linux/i386/lchown.c: Likewise.
2196 * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
2197 * sysdeps/unix/sysv/linux/s390/s390-32/fchown.c: Remove file.
2198 * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Likewise.
2199 * sysdeps/unix/sysv/linux/sh/chown.c: Likewise.
2200 * sysdeps/unix/sysv/linux/sh/fchown.c: Likewise.
2201 * sysdeps/unix/sysv/linux/sh/lchown.c: Likewise.
2202 * sysdeps/unix/sysv/linux/sparc/sparc32/chown.c: Likewise.
2203 * sysdeps/unix/sysv/linux/sparc/sparc32/fchown.c: Likewise.
2204 * sysdeps/unix/sysv/linux/sparc/sparc32/lchown.c: Likewise.
2205 * sysdeps/unix/sysv/linux/s390/s390-32/Versions (GLIBC_2.1): Add
2206 __chown.
2207 * sysdeps/unix/sysv/linux/i386/syscalls.list (chown): Add syscall.
2208 (lchown): Likewise.
2209 (fchown): Likewise.
2210 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (chown):
2211 Likewise.
2212 (lchown): Likewise.
2213 (fchown): Likewise.
2214 * sysdeps/unix/sysv/linux/sh/syscalls.list (chown): Likewise.
2215 (lchown): Likewise.
2216 (fchown): Likewise.
2217 * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (chown):
2218 Likewise.
2219 (lchown): Likewise.
2220 (fchown): Likewise.
2221
22222014-10-23 Wilco Dijkstra <wdijkstr@arm.com>
2223
2224 * sysdeps/aarch64/fpu/fclrexcpt.c (feclearexcept):
2225 Simplify logic.
2226
22272014-10-23 Wilco Dijkstra <wdijkstr@arm.com>
2228
2229 * sysdeps/aarch64/fpu/fsetexcptflg.c (fsetexceptflag):
2230 Cleanup logic.
2231
22322014-10-23 Wilco Dijkstra <wdijkstr@arm.com>
2233
2234 * sysdeps/aarch64/fpu/fsetexcptflg.c (fsetexceptflag):
2235 Remove unused include.
2236
22372014-10-23 Wilco Dijkstra <wdijkstr@arm.com>
2238
2239 * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Remove spaces.
2240 * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Remove spaces.
2241 * sysdeps/aarch64/fpu/fesetround.c (fesetround): Remove spaces.
2242 * sysdeps/aarch64/fpu/fraiseexcpt.c (feraiseexcept): Remove spaces.
2243
22442014-10-23 Carlos O'Donell <carlos@systemhalted.org>
2245 Helge Deller <deller@gmx.de>
2246
2247 [BZ #17508]
2248 * sysdeps/unix/sysv/linux/hppa/bits/signum.h: Remove SIGEMT.
2249 Define SIGSTKFLT as 7. Define SIGSYS as 31. Define SIGXCPU as 12.
2250 Remove SIGLOST. Define SIGXFSZ as 30. Define __SIGRTMIN as 32.
2251
22522014-10-23 Joseph Myers <joseph@codesourcery.com>
2253
2254 [BZ #14132]
2255 * sysdeps/powerpc/powerpc32/libgcc-compat.S (__ashldi3_v_glibc20):
2256 Remove macro definition.
2257 (__ashrdi3_v_glibc20): Likewise.
2258 (__lshrdi3_v_glibc20): Likewise.
2259 (__cmpdi2_v_glibc20): Likewise.
2260 (__ucmpdi2_v_glibc20): Likewise.
2261 [!_SOFT_FLOAT && !__NO_FPRS__] (__fixdfdi_v_glibc20): Likewise.
2262 [!_SOFT_FLOAT && !__NO_FPRS__] (__fixsfdi_v_glibc20): Likewise.
2263 [!_SOFT_FLOAT && !__NO_FPRS__] (__fixunsdfdi_v_glibc20): Likewise.
2264 [!_SOFT_FLOAT && !__NO_FPRS__] (__fixunssfdi_v_glibc20): Likewise.
2265 [!_SOFT_FLOAT && !__NO_FPRS__] (__floatdidf_v_glibc20): Likewise.
2266 [!_SOFT_FLOAT && !__NO_FPRS__] (__floatdisf_v_glibc20): Likewise.
2267
22682014-10-22 Roland McGrath <roland@hack.frob.com>
2269
2270 * inet/netgroup.h (struct name_list): Use C99 [] syntax rather than
2271 old GNU extension [0] syntax.
2272 * nscd/nscd_helper.c (open_socket): Use a flexible array member and
2273 alloca rather than an array member with variable length.
2274 * nscd/netgroupcache.c (addgetnetgrentX): Likewise.
2275 * nscd/nscd.c (invalidate_db): New function, broken out of ...
2276 (parse_opt): ... here. Likewise use alloca there.
2277 Validate the -i argument before checking for rootness.
2278 (send_shutdown): New function, broken out of ...
2279 (parse_opt): ... here.
2280
22812014-10-22 Roland McGrath <roland@hack.frob.com>
2282
2283 * sysdeps/arm/__longjmp.S [NEED_HWCAP] [IS_IN_rtld]: Use LDST_PCREL
2284 macro to get at the _rt_local_ro field.
2285 [NEED_HWCAP] [!IS_IN_rtld]: Use LDR_GLOBAL to get at _rtld_global_ro
2286 ([PIC] case) or _dl_hwcap ([!PIC] case).
2287 * sysdeps/arm/setjmp.S: Likewise.
2288
2289 * config.h.in (ARM_PCREL_MOVW_OK): New macro.
2290 * sysdeps/arm/configure.ac: New check to define it.
2291 * sysdeps/arm/configure: Regenerated.
2292 * sysdeps/arm/sysdep.h [__ASSEMBLER__]: Include <arm-features.h>.
2293 (LDST_INDEXED_NOINDEX, LDST_INDEXED_INDEX): New macros.
2294 (LDST_INDEXED, LDST_PC_INDEXED): New macros, differing definitions
2295 depending on [ARM_NO_INDEX_REGISTER] and [__thumb2__].
2296 (LDST_PCREL) [!__thumb2__ && ARCH_HAS_T2 && ARM_PCREL_MOVW_OK]:
2297 Use move/movt pair instead of a load.
2298 (LDST_GLOBAL): Macro removed.
2299 (LDR_GLOBAL): New macro replaces it.
2300 (LDR_HIDDEN): New macro.
2301 (PTR_MANGLE_LOAD): Use LDR_GLOBAL rather than LDST_GLOBAL.
2302 Use LDR_HIDDEN instead for __pointer_chk_guard_local.
2303
2304 * setjmp/tst-setjmp-static.c: New file.
2305 * setjmp/Makefile (tests): Add it.
2306 (tests-static): New variable.
2307
23082014-10-22 Maciej W. Rozycki <macro@codesourcery.com>
2309
2310 [BZ #17485]
2311 * sysdeps/unix/sysv/linux/mips/vfork.S (__libc_vfork): Define.
2312
23132014-10-21 Joseph Myers <joseph@codesourcery.com>
2314
2315 [BZ #14132]
2316 * math/s_ldexpf.c (__ldexpf): Do not use INTDEF.
2317
23182014-10-21 Roland McGrath <roland@hack.frob.com>
2319
2320 * nptl/version.c (__nptl_main): Call __libc_write, not __write.
2321
23222014-10-20 Roland McGrath <roland@hack.frob.com>
2323
2324 * io/fts.c (dirent_not_directory): New function.
2325 (fts_build): Call it.
2326
23272014-10-20 Roland McGrath <roland@hack.frob.com>
2328
2329 * nptl/version.c (__nptl_main): Use normal __write rather than
2330 INTERNAL_SYSCALL.
2331 (banner): Update copyright years.
2332
2333 * nptl/pthread_rwlock_timedrdlock.c: #include <sys/time.h> before using
2334 gettimeofday.
2335 * nptl/pthread_rwlock_timedwrlock.c: Likewise.
2336 * nptl/pthread_cond_timedwait.c: Likewise.
2337 * nptl/pthread_mutex_timedlock.c: Likewise.
2338 * nptl/sem_timedwait.c: Likewise.
2339
2340 * sysdeps/nptl/bits/libc-lock.h
2341 [_LIBC && (!NOT_IN_libc || IS_IN_libpthread)]
2342 (__libc_lock_init_recursive): Return void, not 0.
2343 * sysdeps/nptl/bits/libc-lockP.h (__libc_lock_init): Likewise.
2344 (__libc_rwlock_init): Likewise.
2345 * sysdeps/nptl/bits/stdio-lock.h (_IO_lock_init): Likewise.
2346
23472014-10-20 Torvald Riegel <triegel@redhat.com>
2348
2349 [BZ #15215]
2350 * nptl/pthread_once.c (__pthread_once): Split out fast path to ...
2351 (__pthread_once_slow): ... here.
2352 * sysdeps/unix/sysv/linux/i386/pthread_once.S: Remove file.
2353 * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Remove file.
2354
23552014-10-20 Torvald Riegel <triegel@redhat.com>
2356
2357 [BZ #15215]
2358 * nptl/pthreadP.h (__PTHREAD_ONCE_INPROGRESS, __PTHREAD_ONCE_DONE,
2359 __PTHREAD_ONCE_FORK_GEN_INCR): New.
2360 * sysdeps/nptl/fork.c (__libc_fork): Use them.
2361 * nptl/pthread_once.c (__pthread_once): Likewise.
2362 Update comments.
2363
23642014-10-20 Joseph Myers <joseph@codesourcery.com>
2365
2366 [BZ #14138]
2367 * sysdeps/unix/syscalls.list (readv): Use __libc_readv as strong
2368 name.
2369 (writev): Use __libc_writev as strong name.
2370 * sysdeps/unix/sysv/linux/readv.c: Remove file.
2371 * sysdeps/unix/sysv/linux/writev.c: Likewise.
2372
23732014-10-17 Roland McGrath <roland@hack.frob.com>
2374
2375 * nptl/createthread.c (TLS_DEFINE_INIT_TP, TLS_VALUE): Macros removed.
2376
2377 * sysdeps/i386/nptl/tls.h
2378 (THREAD_SELF_SYSINFO, THREAD_SYSINFO): Macros removed.
2379 [NEED_DL_SYSINFO] (SETUP_THREAD_SYSINFO, CHECK_THREAD_SYSINFO):
2380 New macros.
2381 * sysdeps/ia64/nptl/tls.h [NEED_DL_SYSINFO]
2382 (SETUP_THREAD_SYSINFO, CHECK_THREAD_SYSINFO): New macros.
2383 * nptl/allocatestack.c (allocate_stack) [NEED_DL_SYSINFO]:
2384 Call SETUP_THREAD_SYSINFO instead of doing an assignment.
2385 * nptl/createthread.c (create_thread) [NEED_DL_SYSINFO]:
2386 Call CHECK_THREAD_SYSINFO instead of doing an assert.
2387
2388 * nptl/nptl-init.c (__pthread_initialize_minimal_internal):
2389 Conditionalize FUTEX_PRIVATE_FLAG and FUTEX_CLOCK_REALTIME probes
2390 on [__NR_futex].
2391 * nptl/pthread_mutex_init.c (prio_inherit_missing): New function,
2392 broken out of ...
2393 (__pthread_mutex_init): ... here. Call it.
2394 * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full):
2395 Conditionalize PI cases on [__NR_futex].
2396 * nptl/pthread_mutex_timedlock.c (pthread_mutex_timedlock): Likewise.
2397 * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock): Likewise.
2398 * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full): Likewise.
2399
2400 * nptl/nptl-init.c (sighandler_setxid, __xidcmd): Make definitions
2401 conditional on [SIGSETXID].
2402 (sigcancel_handler): Make definition conditional on [SIGCANCEL].
2403 (__pthread_initialize_minimal_internal): Set up SIGCANCEL only if it
2404 is defined. Likewise for SIGSETXID.
2405 * nptl/allocatestack.c (setxid_mark_thread, setxid_unmark_thread):
2406 Conditionalize definitions on [SIGSETXID].
2407 (setxid_signal_thread, __nptl_setxid_error, __nptl_setxid): Likewise.
2408 * nptl/pthread_create.c (start_thread): Conditionalize SIGCANCEL
2409 unblocking on [SIGCANCEL].
2410
2411 * nptl/nptl-init.c (__nptl_set_robust): Conditionalize body on
2412 [__NR_set_robust_list].
2413
24142014-10-17 Siddhesh Poyarekar <siddhesh@redhat.com>
2415
2416 * string/strcoll_l.c (get_next_seq): Fix up formatting.
2417 (do_compare): Likewise.
2418
24192014-10-17 Leonhard Holz <leonhard.holz@web.de>
2420
2421 [BZ #15884]
2422 * string/strcoll_l.c: Don't include stdio.h.
2423 (coll_seq): Remove members idxarr and rulearr.
2424 (get_next_seq_cached): Remove function.
2425 (get_next_seq): Likewise.
2426 (get_next_seq_nocache): Rename to get_next_seq.
2427 (do_compare): Remove function.
2428 (do_compare_nocache): Rename to do_compare.
2429 (STRCOLL): Remove weight and rules cache.
2430
24312014-10-16 Roland McGrath <roland@hack.frob.com>
2432
2433 * sysdeps/arm/soft-fp/sfp-machine.h: Filed moved ...
2434 * sysdeps/arm/sfp-machine.h: ... to here.
2435 * sysdeps/arm/Implies: Remove arm/soft-fp.
2436
24372014-10-14 Joseph Myers <joseph@codesourcery.com>
2438
2439 * conform/data/sys/utsname.h-data (*_t): Allow.
2440 * conform/data/sys/wait.h-data [POSIX] (uid_t): Do not define.
2441 [POSIX] (WEXITED): Do not expect constant.
2442 [POSIX] (WSTOPPED): Likewise.
2443 [POSIX] (WNOHANG): Likewise.
2444 [POSIX] (WNOWAIT): Likewise.
2445 [POSIX] (siginfo_t): Do not expect type or elements.
2446 [POSIX] (pid_t): Do not expect type.
2447 [POSIX] (signal.h): Do not allow header.
2448 [POSIX] (sys/resource.h): Likewise.
2449 [POSIX] (si_*): Do not allow pattern.
2450 [POSIX] (W*): Likewise.
2451 [POSIX] (P_*): Likewise.
2452 [POSIX] (BUS_*): Likewise.
2453 [POSIX] (CLD_*): Likewise.
2454 [POSIX] (FPE_*): Likewise.
2455 [POSIX] (ILL_*): Likewise.
2456 [POSIX] (POLL_*): Likewise.
2457 [POSIX] (SEGV_*): Likewise.
2458 [POSIX] (SI_*): Likewise.
2459 [POSIX] (TRAP_*): Likewise.
2460 * conform/Makefile (test-xfail-POSIX/sys/wait.h/conform): New
2461 variable.
2462
24632014-10-14 Paul Pluzhnikov <ppluzhnikov@google.com>
2464
2465 [BZ #12926]
2466 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Avoid
2467 infinite loop when __recvmsg returns 0.
2468
24692014-10-10 Joseph Myers <joseph@codesourcery.com>
2470
2471 * CANCEL-FCT-WAIVE: Remove file.
2472 * CANCEL-FILE-WAIVE: Likewise.
2473
2474 [BZ #14132]
2475 * elf/dl-sysdep.c (__libc_enable_secure): Use rtld_hidden_data_def
2476 instead of INTVARDEF.
2477 (_dl_sysdep_start): Do not use INTUSE with __libc_enable_secure.
2478 * sysdeps/mach/hurd/dl-sysdep.c (__libc_enable_secure): Use
2479 rtld_hidden_data_def instead of INTVARDEF.
2480 (_dl_sysdep_start): Do not use INTUSE with __libc_enable_secure.
2481 * elf/dl-deps.c (expand_dst): Likewise.
2482 * elf/dl-load.c (_dl_dst_count): Likewise.
2483 (_dl_dst_substitute): Likewise.
2484 (decompose_rpath): Likewise.
2485 (_dl_init_paths): Likewise.
2486 (open_path): Likewise.
2487 (_dl_map_object): Likewise.
2488 * elf/rtld.c (dl_main): Likewise.
2489 (process_dl_audit): Likewise.
2490 (process_envvars): Likewise.
2491 * include/unistd.h [IS_IN_rtld] (__libc_enable_secure_internal):
2492 Remove declaration.
2493 (__libc_enable_secure): Use rtld_hidden_proto.
2494
24952014-10-09 Kostya Serebryany <konstantin.s.serebryany@gmail.com>
2496
2497 * elf/dl-load.c
2498 (add_path): New function broken out of _dl_rtld_di_serinfo.
2499 (_dl_rtld_di_serinfo): Remove that nested function. Update call sites.
2500
25012014-10-09 Joseph Myers <joseph@codesourcery.com>
2502
2503 * soft-fp/double.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_D): Use
2504 parentheses around macro arguments.
2505 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_DP): Likewise.
2506 [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_D): Likewise.
2507 [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_DP): Likewise.
2508 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_D): Likewise.
2509 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_DP): Likewise.
2510 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_D): Likewise.
2511 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_DP): Likewise.
2512 [_FP_W_TYPE_SIZE < 64] (FP_PACK_D): Likewise.
2513 [_FP_W_TYPE_SIZE < 64] (FP_PACK_DP): Likewise.
2514 [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_D): Likewise.
2515 [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_DP): Likewise.
2516 [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_D): Likewise.
2517 [_FP_W_TYPE_SIZE < 64] (FP_CMP_D): Likewise.
2518 [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_D): Likewise.
2519 [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_D): Likewise.
2520 [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_D): Likewise.
2521 [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_D): Likewise.
2522 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_D): Likewise.
2523 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_DP): Likewise.
2524 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_D): Likewise.
2525 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_DP): Likewise.
2526 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_D): Likewise.
2527 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_DP): Likewise.
2528 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_D): Likewise.
2529 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_DP): Likewise.
2530 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_D): Likewise.
2531 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_DP): Likewise.
2532 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_D): Likewise.
2533 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_DP): Likewise.
2534 [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_D): Likewise.
2535 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_D): Likewise.
2536 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_D): Likewise.
2537 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_D): Likewise.
2538 [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_D): Likewise.
2539 [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_D): Likewise.
2540 * soft-fp/extended.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_E):
2541 Likewise.
2542 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_EP): Likewise.
2543 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_E): Likewise.
2544 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_EP): Likewise.
2545 [_FP_W_TYPE_SIZE < 64] (FP_PACK_E): Likewise.
2546 [_FP_W_TYPE_SIZE < 64] (FP_PACK_EP): Likewise.
2547 [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_E): Likewise.
2548 [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_EP): Likewise.
2549 [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_E): Likewise.
2550 [_FP_W_TYPE_SIZE < 64] (FP_CMP_E): Likewise.
2551 [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_E): Likewise.
2552 [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_E): Likewise.
2553 [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_E): Likewise.
2554 [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_E): Likewise.
2555 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_E): Likewise.
2556 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_EP): Likewise.
2557 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_E): Likewise.
2558 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_EP): Likewise.
2559 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_E): Likewise.
2560 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_EP): Likewise.
2561 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_E): Likewise.
2562 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_EP): Likewise.
2563 [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_E): Likewise.
2564 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_E): Likewise.
2565 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_E): Likewise.
2566 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_E): Likewise.
2567 [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_E): Likewise.
2568 [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_E): Likewise.
2569 * soft-fp/op-1.h (_FP_FRAC_SRST_1): Likewise.
2570 (_FP_FRAC_SRS_1): Likewise.
2571 (_FP_FRAC_CLZ_1): Likewise.
2572 (_FP_MUL_MEAT_1_imm): Likewise.
2573 (_FP_MUL_MEAT_1_wide): Likewise.
2574 (_FP_MUL_MEAT_1_hard): Likewise.
2575 (_FP_SQRT_MEAT_1): Likewise.
2576 (_FP_FRAC_ASSEMBLE_1): Likewise.
2577 (_FP_FRAC_DISASSEMBLE_1): Likewise.
2578 * soft-fp/op-2.h (_FP_FRAC_CLZ_2): Likewise.
2579 (__FP_CLZ_2): Likewise.
2580 (_FP_MUL_MEAT_2_wide): Likewise.
2581 (_FP_MUL_MEAT_2_wide_3mul): Likewise.
2582 (_FP_MUL_MEAT_2_gmp): Likewise.
2583 (_FP_MUL_MEAT_2_120_240_double): Likewise.
2584 (_FP_SQRT_MEAT_2): Likewise.
2585 (_FP_FRAC_ASSEMBLE_2): Likewise.
2586 (_FP_FRAC_DISASSEMBLE_2): Likewise.
2587 * soft-fp/op-4.h (_FP_FRAC_SRS_4): Likewise.
2588 (_FP_FRAC_CLZ_4): Likewise.
2589 (_FP_MUL_MEAT_4_wide): Likewise.
2590 (_FP_MUL_MEAT_4_gmp): Likewise.
2591 (_FP_SQRT_MEAT_4): Likewise.
2592 (_FP_FRAC_ASSEMBLE_4): Likewise.
2593 (_FP_FRAC_DISASSEMBLE_4): Likewise.
2594 * soft-fp/op-common.h (_FP_CMP): Likewise.
2595 (_FP_CMP_EQ): Likewise.
2596 (_FP_CMP_UNORD): Likewise.
2597 (_FP_TO_INT): Likewise.
2598 (_FP_FROM_INT): Likewise.
2599 [!__FP_CLZ] (__FP_CLZ): Likewise.
2600 (_FP_DIV_HELP_imm): Likewise.
2601 * soft-fp/quad.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_Q):
2602 Likewise.
2603 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_QP): Likewise.
2604 [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_Q): Likewise.
2605 [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_QP): Likewise.
2606 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_Q): Likewise.
2607 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_QP): Likewise.
2608 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_Q): Likewise.
2609 [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_QP): Likewise.
2610 [_FP_W_TYPE_SIZE < 64] (FP_PACK_Q): Likewise.
2611 [_FP_W_TYPE_SIZE < 64] (FP_PACK_QP): Likewise.
2612 [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_Q): Likewise.
2613 [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_QP): Likewise.
2614 [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_Q): Likewise.
2615 [_FP_W_TYPE_SIZE < 64] (FP_CMP_Q): Likewise.
2616 [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_Q): Likewise.
2617 [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_Q): Likewise.
2618 [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_Q): Likewise.
2619 [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_Q): Likewise.
2620 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_Q): Likewise.
2621 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_QP): Likewise.
2622 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_Q): Likewise.
2623 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_QP): Likewise.
2624 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_Q): Likewise.
2625 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_QP): Likewise.
2626 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_Q): Likewise.
2627 [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_QP): Likewise.
2628 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_Q): Likewise.
2629 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_QP): Likewise.
2630 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_Q): Likewise.
2631 [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_QP): Likewise.
2632 [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_Q): Likewise.
2633 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_Q): Likewise.
2634 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_Q): Likewise.
2635 [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_Q): Likewise.
2636 [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_Q): Likewise.
2637 [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_Q): Likewise.
2638 * soft-fp/single.h (FP_UNPACK_RAW_S): Likewise.
2639 (FP_UNPACK_RAW_SP): Likewise.
2640 (FP_PACK_RAW_S): Likewise.
2641 (FP_PACK_RAW_SP): Likewise.
2642 (FP_UNPACK_S): Likewise.
2643 (FP_UNPACK_SP): Likewise.
2644 (FP_UNPACK_SEMIRAW_S): Likewise.
2645 (FP_UNPACK_SEMIRAW_SP): Likewise.
2646 (FP_PACK_S): Likewise.
2647 (FP_PACK_SP): Likewise.
2648 (FP_PACK_SEMIRAW_S): Likewise.
2649 (FP_PACK_SEMIRAW_SP): Likewise.
2650 (_FP_SQRT_MEAT_S): Likewise.
2651 (FP_CMP_S): Likewise.
2652 (FP_CMP_EQ_S): Likewise.
2653 (FP_CMP_UNORD_S): Likewise.
2654 (FP_TO_INT_S): Likewise.
2655 (FP_FROM_INT_S): Likewise.
2656
2657 * soft-fp/op-common.h (_FP_TO_INT): Handle rsigned == 2.
2658
2659 * soft-fp/soft-fp.h (FP_EX_INVALID_SNAN): New macro.
2660 (FP_EX_INVALID_IMZ): Likewise.
2661 (FP_EX_INVALID_IMZ_FMA): Likewise.
2662 (FP_EX_INVALID_ISI): Likewise.
2663 (FP_EX_INVALID_ZDZ): Likewise.
2664 (FP_EX_INVALID_IDI): Likewise.
2665 (FP_EX_INVALID_SQRT): Likewise.
2666 (FP_EX_INVALID_CVI): Likewise.
2667 (FP_EX_INVALID_VC): Likewise.
2668 * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Specify more precise
2669 "invalid" exceptions.
2670 (_FP_CHECK_SIGNAN_SEMIRAW): Likewise.
2671 (_FP_ADD_INTERNAL): Likewise.
2672 (_FP_MUL): Likewise.
2673 (_FP_FMA): Likewise.
2674 (_FP_DIV): Likewise.
2675 (_FP_CMP_CHECK_NAN): Likewise.
2676 (_FP_SQRT): Likewise.
2677 (_FP_TO_INT): Likewise.
2678 (FP_EXTEND): Likewise.
2679
26802014-10-09 Allan McRae <allan@archlinux.org>
2681
2682 * po/fr.po: Update French translation from translation project.
2683
26842014-10-09 Joseph Myers <joseph@codesourcery.com>
2685
2686 [BZ #14132]
2687 * stdlib/cxa_atexit.c (__cxa_atexit): Use libc_hidden_def instead
2688 of INTDEF.
2689 * include/stdlib.h (__cxa_atexit_internal): Remove declaration.
2690 (__cxa_atexit): Use libc_hidden_proto.
2691 [!NOT_IN_libc] (__cxa_atexit): Remove macro definition.
2692
2693 [BZ #14132]
2694 * include/wctype.h [!_ISOMAC] (__iswalpha_l_internal): Remove
2695 declaration.
2696 [!_ISOMAC] (__iswdigit_l_internal): Likewise.
2697 [!_ISOMAC] (__iswspace_l_internal): Likewise.
2698 [!_ISOMAC] (__iswxdigit_l_internal): Likewise.
2699 [!_ISOMAC] (__iswctype_internal): Likewise.
2700 * stdio-common/siglist.c (_sys_siglist_internal): Remove alias.
2701 * sysdeps/unix/syscalls.list (chown): Remove __chown_internal
2702 alias.
2703 (fcntl): Remove __fcntl_internal alias.
2704 * sysdeps/unix/sysv/linux/hppa/syscalls.list (connect): Remove
2705 __connect_internal alias.
2706 * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (connect):
2707 Likewise.
2708
2709 * soft-fp/soft-fp.h (FP_DENORM_ZERO): New macro.
2710 * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Check
2711 FP_DENORM_ZERO.
2712 (_FP_CHECK_FLUSH_ZERO): New macro.
2713 (_FP_ADD_INTERNAL): Call _FP_CHECK_FLUSH_ZERO.
2714 (_FP_CMP): Likewise.
2715 (_FP_CMP_EQ): Likewise.
2716 (_FP_TO_INT): Do not set inexact for subnormal arguments if
2717 FP_DENORM_ZERO.
2718 (FP_EXTEND): Call _FP_CHECK_FLUSH_ZERO.
2719 (FP_TRUNC): Likewise.
2720
2721 * soft-fp/op-common.h (_FP_TO_INT): Ensure maximum exponent is
2722 treated as invalid conversion, not as normal exponent.
2723
2724 * soft-fp/op-common.h (_FP_CMP_CHECK_NAN): New macro.
2725 (_FP_CMP): Add extra argument EX. Call _FP_CMP_CHECK_NAN.
2726 (_FP_CMP_EQ): Likewise.
2727 (_FP_CMP_UNORD): Likewise.
2728 * soft-fp/double.h (FP_CMP_D): Add extra argument EX.
2729 (FP_CMP_EQ_D): Likewise.
2730 (FP_CMP_UNORD_D): Likewise.
2731 * soft-fp/extended.h (FP_CMP_E): Likewise.
2732 (FP_CMP_EQ_E): Likewise.
2733 (FP_CMP_UNORD_E): Likewise.
2734 * soft-fp/quad.h (FP_CMP_Q): Likewise.
2735 (FP_CMP_EQ_Q): Likewise.
2736 (FP_CMP_UNORD_Q): Likewise.
2737 * soft-fp/single.h (FP_CMP_S): Likewise.
2738 (FP_CMP_EQ_S): Likewise.
2739 (FP_CMP_UNORD_S): Likewise.
2740 * soft-fp/eqdf2.c (__eqdf2): Update call to FP_CMP_EQ_D.
2741 * soft-fp/eqsf2.c (__eqsf2): Update call to FP_CMP_EQ_S.
2742 * soft-fp/eqtf2.c (__eqtf2): Update call to FP_CMP_EQ_Q.
2743 * soft-fp/gedf2.c (__gedf2): Update call to FP_CMP_D.
2744 * soft-fp/gesf2.c (__gesf2): Update call to FP_CMP_S.
2745 * soft-fp/getf2.c (__getf2): Update call to FP_CMP_Q.
2746 * soft-fp/ledf2.c (__ledf2): Update call to FP_CMP_D.
2747 * soft-fp/lesf2.c (__lesf2): Update call to FP_CMP_S.
2748 * soft-fp/letf2.c (__letf2): Update call to FP_CMP_Q.
2749 * soft-fp/unorddf2.c (__unorddf2): Update call to FP_CMP_UNORD_D.
2750 * soft-fp/unordsf2.c (__unordsf2): Update call to FP_CMP_UNORD_S.
2751 * soft-fp/unordtf2.c (__unordtf2): Update call to FP_CMP_UNORD_Q.
2752 * sysdeps/alpha/soft-fp/ots_cmpe.c (internal_compare): Update call
2753 to FP_CMP_Q.
2754 * sysdeps/sparc/sparc32/soft-fp/q_cmp.c (_Q_cmp): Update call to
2755 FP_CMP_Q.
2756 * sysdeps/sparc/sparc32/soft-fp/q_cmpe.c (_Q_cmpe): Likewise.
2757 * sysdeps/sparc/sparc32/soft-fp/q_feq.c (_Q_feq): Update call to
2758 FP_CMP_EQ_Q.
2759 * sysdeps/sparc/sparc32/soft-fp/q_fge.c (_Q_fge): Update call to
2760 FP_CMP_Q.
2761 * sysdeps/sparc/sparc32/soft-fp/q_fgt.c (_Q_fgt): Likewise.
2762 * sysdeps/sparc/sparc32/soft-fp/q_fle.c (_Q_fle): Likewise.
2763 * sysdeps/sparc/sparc32/soft-fp/q_flt.c (_Q_flt): Likewise.
2764 * sysdeps/sparc/sparc32/soft-fp/q_fne.c (_Q_fne): Update call to
2765 FP_CMP_EQ_Q.
2766 * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c (_Qp_cmp): Update call to
2767 FP_CMP_Q.
2768 * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c (_Qp_cmpe): Likewise.
2769 * sysdeps/sparc/sparc64/soft-fp/qp_feq.c (_Qp_feq): Update call to
2770 FP_CMP_EQ_Q.
2771 * sysdeps/sparc/sparc64/soft-fp/qp_fge.c (_Qp_fge): Update call to
2772 FP_CMP_Q.
2773 * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c (_Qp_fgt): Likewise.
2774 * sysdeps/sparc/sparc64/soft-fp/qp_fle.c (_Qp_fle): Likewise.
2775 * sysdeps/sparc/sparc64/soft-fp/qp_flt.c (_Qp_flt): Likewise.
2776 * sysdeps/sparc/sparc64/soft-fp/qp_fne.c (_Qp_fne): Update call to
2777 FP_CMP_EQ_Q.
2778
2779 * soft-fp/op-common.h (FP_EXTEND): When a subnormal input produces
2780 a subnormal result, set the underflow exception if trapping on
2781 underflow is enabled.
2782 * soft-fp/soft-fp.h (FP_INIT_TRAPPING_EXCEPTIONS): New macro.
2783 (FP_INIT_EXCEPTIONS): Default to FP_INIT_TRAPPING_EXCEPTIONS.
2784 [FP_NO_EXACT_UNDERFLOW] (FP_TRAPPING_EXCEPTIONS): Undefine and
2785 redefine to 0.
2786 * soft-fp/extenddftf2.c (FP_NO_EXACT_UNDERFLOW): Define.
2787 * soft-fp/extendsfdf2.c (FP_NO_EXACT_UNDERFLOW): Likewise.
2788 * soft-fp/extendsftf2.c (FP_NO_EXACT_UNDERFLOW): Likewise.
2789 * soft-fp/extendxftf2.c (__extendxftf2): Use
2790 FP_INIT_TRAPPING_EXCEPTIONS instead of FP_INIT_ROUNDMODE.
2791
2792 * soft-fp/soft-fp.h (FP_CLEAR_EXCEPTIONS): Remove macro.
2793 * sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Define FP_NO_EXCEPTIONS.
2794 (_Q_itoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
2795 FP_HANDLE_EXCEPTIONS.
2796 * sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Define FP_NO_EXCEPTIONS.
2797 (_Q_lltoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
2798 FP_HANDLE_EXCEPTIONS.
2799 * sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Define FP_NO_EXCEPTIONS.
2800 (_Q_ulltoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
2801 FP_HANDLE_EXCEPTIONS.
2802 * sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Define FP_NO_EXCEPTIONS.
2803 (_Q_utoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
2804 FP_HANDLE_EXCEPTIONS.
2805
28062014-10-08 Joseph Myers <joseph@codesourcery.com>
2807
2808 [BZ #14132]
2809 * sysdeps/unix/sysv/linux/include/sys/timex.h: New file.
2810 * sysdeps/unix/sysv/linux/adjtime.c [!ADJTIMEX] (ADJTIMEX): Do not
2811 use INTUSE.
2812 [!ADJTIMEX] (INTUSE(__adjtimex)): Remove declaration.
2813 * sysdeps/unix/sysv/linux/alpha/adjtime.c (__adjtimex_internal):
2814 Remove alias.
2815 (__adjtimex): Define using libc_hidden_ver.
2816 * sysdeps/unix/sysv/linux/ntp_gettime.c (INTUSE(__adjtimex)):
2817 Remove declaration.
2818 (ntp_gettime): Call __adjtimex directly.
2819 * sysdeps/unix/sysv/linux/ntp_gettimex.c (INTUSE(__adjtimex)):
2820 Remove declaration.
2821 (ntp_gettimex): Call __adjtimex directly.
2822 * sysdeps/unix/sysv/linux/syscalls.list (adjtimex): Remove
2823 __adjtimex_internal alias.
2824
28252014-10-08 Roland McGrath <roland@hack.frob.com>
2826
2827 [BZ #17460]
2828 * nscd/nscd.c (more_help): Rewrite list of tables collection
2829 using xstrdup and asprintf.
2830
2831 * nscd/nscd_conf.c: Remove local xstrdup declaration.
2832
28332014-10-08 Kostya Serebryany <konstantin.s.serebryany@gmail.com>
2834 Roland McGrath <roland@hack.frob.com>
2835
2836 * elf/dl-lookup.c (enter_unique_sym): New function, broken out of ...
2837 (do_lookup_unique): ... local function 'enter' here; update callers.
2838
28392014-10-06 Joseph Myers <joseph@codesourcery.com>
2840
2841 * sysdeps/unix/make-syscalls.sh (emit_weak_aliases): Condition
2842 compat_symbol calls on [SHARED].
2843 * sysdeps/unix/sysv/linux/powerpc/lchown.S: Remove file.
2844 * sysdeps/unix/sysv/linux/i386/syscalls.list (oldsetrlimit):
2845 Remove.
2846 (setrlimit): Add setrlimit@GLIBC_2.0 alias.
2847 * sysdeps/unix/sysv/linux/m68k/m680x0/syscalls.list
2848 (oldsetrlimit): Remove.
2849 (setrlimit): Add setrlimit@GLIBC_2.0 alias.
2850 * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list
2851 (lchown): New syscall entry.
2852 (oldsetrlimit): Remove.
2853 (setrlimit): Add setrlimit@GLIBC_2.0 alias.
2854 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list
2855 (oldsetrlimit): Remove.
2856 (setrlimit): Add setrlimit@GLIBC_2.0 alias.
2857
2858 [BZ #14138]
2859 * sysdeps/unix/sysv/linux/arm/fchown.c: Remove file.
2860 * sysdeps/unix/sysv/linux/arm/lchown.c: Likewise.
2861 * sysdeps/unix/sysv/linux/m68k/fchown.c: Likewise.
2862 * sysdeps/unix/sysv/linux/m68k/lchown.c: Likewise.
2863 * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
2864 * sysdeps/unix/sysv/linux/arm/syscalls.list (lchown): Add syscall.
2865 (fchown): Likewise.
2866 * sysdeps/unix/sysv/linux/m68k/syscalls.list (lchown): Likewise.
2867 (fchown): Likewise.
2868 * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list (chown):
2869 Likewise.
2870
28712014-10-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
2872
2873 * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Remove file.
2874 * sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c
2875 (pthread_spin_unlock): Use __ARCH_REL_INSTR instead of
2876 __lll_rel_instr and __ARCH_ACQ_INSTR instead of __lll_acq_instr.
2877 * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post):
2878 Likewise.
2879 (__old_sem_post): Likewise.
2880
28812014-10-06 Chris Metcalf <cmetcalf@tilera.com>
2882
2883 * sysdeps/unix/sysv/linux/tile/sysdep.h (INLINE_VSYSCALL): Define
2884 INLINE_VSYSCALL, INTERNAL_VSYSCALL, and
2885 HAVE_CLOCK_GETTIME_VSYSCALL macros.
2886 * sysdeps/unix/sysv/linux/tile/gettimeofday.c (__gettimeofday):
2887 Use INLINE_VSYSCALL macro.
2888 * sysdeps/unix/sysv/linux/tile/bits/libc-vdso: Add declaration of
2889 __vdso_clock_gettime.
2890 * sysdeps/unix/sysv/linux/tile/init-first.c
2891 (_libc_vdso_platform_setup): Set new __vdso_clock_gettime global.
2892 * sysdeps/unix/sysv/linux/tile/Versions (GLIBC_PRIVATE): Add
2893 __vdso_clock_gettime.
2894
2895 * sysdeps/unix/sysv/linux/tile/clone.S (__clone): Fix code
2896 to set up frame more cleanly.
2897
2898 * sysdeps/tile/memcmp.c: New file.
2899
2900 * sysdeps/unix/sysv/linux/tile/sysconf.c: New file.
2901
2902 * sysdeps/tile/tilegx/string-endian.h (STRSHIFT): New macro.
2903 * sysdeps/tile/tilegx/strcasestr.c: New file.
2904 * sysdeps/tile/tilegx/strnlen.c: New file.
2905 * sysdeps/tile/tilegx/strstr.c: New file.
2906
2907 * sysdeps/tile/tilegx/string-endian.h (copy_byte): Optimize.
2908
29092014-10-06 Arjun Shankar <arjun.is@lostca.se>
2910
2911 * nptl/tst-setuid3.c: Write errors to stdout.
2912
29132014-10-01 Kostya Serebryany <konstantin.s.serebryany@gmail.com>
2914
2915 * elf/dl-deps.c
2916 (preload): New functions broken out of _dl_map_object_deps.
2917 (_dl_map_object_deps): Remove a nested function. Update call sites.
2918
29192014-10-01 Joseph Myers <joseph@codesourcery.com>
2920
2921 [BZ #14138]
2922 * sysdeps/unix/sysv/linux/execve.c: Remove file.
2923 * sysdeps/unix/sysv/linux/syscalls.list (execve): Add syscall.
2924
29252014-10-01 Steve Ellcey <sellcey@mips.com>
2926
2927 * sysdeps/mips/strcmp.S: New.
2928
29292014-09-30 Joseph Myers <joseph@codesourcery.com>
2930
2931 [BZ #14138]
2932 * sysdeps/unix/sysv/linux/syscalls.list (fchownat): New syscall.
2933 (linkat): Likewise.
2934 (mkdirat): Likewise.
2935 (readlinkat): Likewise.
2936 (renameat): Likewise.
2937 (symlinkat): Likewise.
2938 (unlinkat): Likewise.
2939 * sysdeps/unix/sysv/linux/fchownat.c: Remove file.
2940 * sysdeps/unix/sysv/linux/linkat.c: Likewise.
2941 * sysdeps/unix/sysv/linux/mkdirat.c: Likewise.
2942 * sysdeps/unix/sysv/linux/readlinkat.c: Likewise.
2943 * sysdeps/unix/sysv/linux/renameat.c: Likewise.
2944 * sysdeps/unix/sysv/linux/symlinkat.c: Likewise.
2945 * sysdeps/unix/sysv/linux/unlinkat.c: Likewise.
2946
29472014-09-30 Will Newton <will.newton@linaro.org>
2948
2949 * math/math.h: Define long double math functions if
2950 _LIBC_TEST is defined.
2951 * stdlib/tst-strtod-round.c: Define _LIBC_TEST.
2952
2953 * localedata/Makefile: Move assignment to tests-special
2954 into an ifdef testing run-built-tests.
2955 * timezone/Makefile: Likewise.
2956
29572014-09-29 Joseph Myers <joseph@codesourcery.com>
2958
2959 * sysdeps/x86/Makefile ($(objpfx)tst-ld-sse-use.out): Run script
2960 with $(BASH) not $(SHELL).
2961
29622014-09-29 Carlos O'Donell <carlos@redhat.com>
2963 Matthew LeGendre <legendre1@llnl.gov>
2964
2965 [BZ #17411]
2966 * elf/dl-reloc.c (_dl_relocate_object): Allocate correct amount for
2967 l_reloc_result.
2968
29692014-09-29 Kostya Serebryany <konstantin.s.serebryany@gmail.com>
2970
2971 * stdio-common/printf_fp.c
2972 (hack_digit): New function, broken out of ...
2973 (__printf_fp): ... local function here. Update call sites.
2974 hack_digit now takes an additional parameter that is a pointer
2975 to a struct of the referenced locals. Those locals moved inside
2976 the struct and references updated.
2977
29782014-09-29 H.J. Lu <hongjiu.lu@intel.com>
2979
2980 * aclocal.m4: Require autoconf 2.69.
2981 * configure: Regenerated.
2982 * sysdeps/aarch64/configure: Likewise.
2983 * sysdeps/alpha/configure: Likewise.
2984 * sysdeps/arm/armv7/configure: Likewise.
2985 * sysdeps/arm/configure: Likewise.
2986 * sysdeps/ia64/configure: Likewise.
2987 * sysdeps/mach/configure: Likewise.
2988 * sysdeps/mips/configure: Likewise.
2989 * sysdeps/s390/configure: Likewise.
2990 * sysdeps/unix/sysv/linux/mips/configure: Likewise.
2991 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Likewise.
2992
2993 * sysdeps/alpha/configure.ac: Avoid empty lines at the end of
2994 file.
2995 * sysdeps/ia64/configure.ac: Likewise.
2996
29972014-09-26 Joseph Myers <joseph@codesourcery.com>
2998
2999 * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: Do not
3000 specify symbol version for ld.so. Do not include entry for
3001 libpthread.
3002 * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
3003 * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Likewise.
3004 * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
3005
3006 [BZ #14171]
3007 * Makeconfig [$(build-shared) = yes]
3008 ($(common-objpfx)soversions.mk): Don't handle SONAMEs specified in
3009 makefiles.
3010 [$(build-shared) = yes && $(soversions.mk-done) = t]
3011 ($(common-objpfx)gnu/lib-names.h): Remove rule.
3012 [$(build-shared) = yes && $(soversions.mk-done) = t]
3013 ($(common-objpfx)gnu/lib-names.stmp): Likewise. Split and moved
3014 to Makerules.
3015 [$(build-shared) = yes && $(soversions.mk-done) = t]
3016 (before-compile): Don't append $(common-objpfx)gnu/lib-names.h
3017 here.
3018 [$(build-shared) = yes && $(soversions.mk-done) = t]
3019 (common-generated): Don't append gnu/lib-names.h and
3020 gnu/lib-names.stmp here.
3021 * Makerules [$(build-shared) = yes && $(soversions.mk-done) = t]
3022 (lib-names-h-abi): New variable.
3023 [$(build-shared) = yes && $(soversions.mk-done) = t]
3024 (lib-names-stmp-abi): Likewise.
3025 [$(build-shared) = yes && $(soversions.mk-done) = t &&
3026 abi-variants] (before-compile): Append
3027 $(common-objpfx)$(lib-names-h-abi).
3028 [$(build-shared) = yes && $(soversions.mk-done) = t &&
3029 abi-variants] (common-generated): Append gnu/lib-names.h.
3030 [$(build-shared) = yes && $(soversions.mk-done) = t &&
3031 abi-variants] (install-others-nosubdir): Depend on
3032 $(inst_includedir)/$(lib-names-h-abi).
3033 [$(build-shared) = yes && $(soversions.mk-done) = t &&
3034 abi-variants] ($(common-objpfx)gnu/lib-names.h): New rule.
3035 [$(build-shared) = yes && $(soversions.mk-done) = t]
3036 ($(common-objpfx)$(lib-names-h-abi)): New rule.
3037 [$(build-shared) = yes && $(soversions.mk-done) = t]
3038 ($(common-objpfx)$(lib-names-stmp-abi)): Likewise.
3039 [$(build-shared) = yes && $(soversions.mk-done) = t]
3040 (common-generated): Append $(lib-names-h-abi) and
3041 $(lib-names-stmp-abi).
3042 * scripts/lib-names.awk: Do not handle multi being set.
3043 * sysdeps/unix/sysv/linux/aarch64/Makefile (abi-lp64-ld-soname):
3044 Remove variable.
3045 (abi-lp64_be-ld-soname): Likewise.
3046 * sysdeps/unix/sysv/linux/arm/Makefile (abi-soft-ld-soname):
3047 Likewise.
3048 (abi-hard-ld-soname): Likewise.
3049 * sysdeps/unix/sysv/linux/i386/shlib-versions: New file.
3050 * sysdeps/unix/sysv/linux/mips/Makefile (abi-o32_soft-ld-soname):
3051 Remove variable.
3052 (abi-o32_hard-ld-soname): Likewise.
3053 (abi-o32_soft_2008-ld-soname): Likewise.
3054 (abi-o32_hard_2008-ld-soname): Likewise.
3055 (abi-n32_soft-ld-soname): Likewise.
3056 (abi-n32_hard-ld-soname): Likewise.
3057 (abi-n32_soft_2008-ld-soname): Likewise.
3058 (abi-n32_hard_2008-ld-soname): Likewise.
3059 (abi-n64_soft-ld-soname): Likewise.
3060 (abi-n64_hard-ld-soname): Likewise.
3061 (abi-n64_soft_2008-ld-soname): Likewise.
3062 (abi-n64_hard_2008-ld-soname): Likewise.
3063 * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-64-v1-ld-soname):
3064 Likewise.
3065 (abi-64-v2-ld-soname): Likewise.
3066 * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: Add
3067 ld.so entries.
3068 * sysdeps/unix/sysv/linux/s390/Makefile (abi-64-ld-soname): Remove
3069 variable.
3070 * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Add ld.so
3071 entry.
3072 * sysdeps/unix/sysv/linux/x86/Makefile (abi-32-ld-soname): Remove
3073 variable.
3074 (abi-64-ld-soname): Likewise.
3075 (abi-x32-ld-soname): Likewise.
3076 * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Add ld.so
3077 entry.
3078 * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
3079
30802014-09-23 Joseph Myers <joseph@codesourcery.com>
3081
3082 [BZ #14138]
3083 * sysdeps/unix/sysv/linux/arm/setrlimit.c: Remove file.
3084 * sysdeps/unix/sysv/linux/i386/setrlimit.c: Likewise.
3085 * sysdeps/unix/sysv/linux/m68k/setrlimit.c: Likewise.
3086 * sysdeps/unix/sysv/linux/powerpc/setrlimit.c: Likewise.
3087 * sysdeps/unix/sysv/linux/s390/s390-32/setrlimit.c: Likewise.
3088 * sysdeps/unix/sysv/linux/sh/setrlimit.c: Likewise.
3089 * sysdeps/unix/sysv/linux/i386/syscalls.list (setrlimit): Add
3090 syscall entry for GLIBC_2.2 symbol version.
3091 * sysdeps/unix/sysv/linux/m68k/m680x0/syscalls.list (setrlimit):
3092 Likewise.
3093 * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list
3094 (setrlimit): Likewise.
3095 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (setrlimit):
3096 Likewise.
3097
30982014-09-23 Will Newton <will.newton@linaro.org>
3099
3100 * sysdeps/unix/sysv/linux/arm/bits/hwcap.h: Check for
3101 _LINUX_ARM_SYSDEP_H include guard too.
3102 * sysdeps/unix/sysv/linux/arm/sysdep.h (_SYS_AUXV_H): Remove
3103 define.
3104
31052014-09-20 Rasmus Villemoes <rv@rasmusvillemoes.dk>
3106
3107 * sysdeps/unix/sysv/linux/eventfd.c:
3108 Make first argument unsigned.
3109 * sysdeps/unix/sysv/linux/hppa/sys/eventfd.h: Likewise.
3110 * sysdeps/unix/sysv/linux/sys/eventfd.h: Likewise.
3111
31122014-09-20 Ondřej Bílka <neleai@seznam.cz>
3113
3114 * socket/recvmmsg.c (recvmmsg): Drop const argument.
3115 * socket/sys/socket.h: Likewise
3116 * sysdeps/unix/sysv/linux/recvmmsg.c: Likewise.
3117
31182014-09-19 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
3119
3120 * stdlib/longlong.h: Add __udiv_w_sdiv prototype.
3121
31222014-09-17 Arjun Shankar <arjun.is@lostca.se>
3123
3124 * time/tst-ftime.c: New test.
3125 * time/Makefile (tests): Add tst-ftime.
3126
31272014-09-17 Joseph Myers <joseph@codesourcery.com>
3128
3129 * soft-fp/extended.h: Fix comment formatting.
3130 * soft-fp/op-1.h: Likewise.
3131 * soft-fp/op-2.h: Likewise.
3132 * soft-fp/op-4.h: Likewise.
3133 * soft-fp/op-8.h: Likewise.
3134 * soft-fp/op-common.h: Likewise.
3135 * soft-fp/soft-fp.h: Likewise.
3136
3137 * soft-fp/op-common.h (_FP_TO_INT): Correct formatting.
3138
31392014-09-16 Joseph Myers <joseph@codesourcery.com>
3140
3141 [BZ #6652]
3142 * Makeconfig (soversions-default-setname): Remove variable.
3143 ($(common-objpfx)soversions.i): Don't pass default_setname to
3144 soversions.awk.
3145 * Makerules ($(common-objpfx)abi-versions.h): Don't pass
3146 oldest_abi to abi-versions.awk.
3147 * config.h.in (GLIBC_OLDEST_ABI): Remove macro undefine.
3148 * config.make.in (oldest-abi): Remove variable.
3149 * configure.ac (--enable-oldest-abi): Remove configure option.
3150 * configure: Regenerated.
3151 * csu/version.c (banner) [GLIBC_OLDEST_ABI]: Remove conditional
3152 text.
3153 * scripts/abi-versions.awk: Do not handle oldest_abi variable.
3154 * scripts/soversions.awk: Do not handle default_setname variable.
3155 * sysdeps/mach/hurd/configure.ac: Do not handle oldest_abi
3156 variable.
3157 * sysdeps/mach/hurd/configure: Regenerated.
3158 * sysdeps/unix/sysv/linux/configure.ac: Do not handle oldest_abi
3159 variable.
3160 * sysdeps/unix/sysv/linux/configure: Regenerated.
3161
31622014-09-16 Siddhesh Poyarekar <siddhesh@redhat.com>
3163
3164 * elf/Makefile (CFLAGS-interp.c): Remove.
3165 ($(elf-objpfx)runtime-linker.h): Generate header with linker
3166 path string.
3167 * elf/interp.c: Include generated runtime-linker.h
3168
3169 * Makerules (lib%.so): Don't include $(+interp) in
3170 prerequisites.
3171 * elf/Makefile (CFLAGS-interp.c): Don't define NOT_IN_libc.
3172 * dlfcn/eval.c: Remove file.
3173
3174 * posix/getconf.c (vars): Don't check for _[SP]C_* and _CS
3175 macros.
3176
3177 [BZ #17266]
3178 * misc/sys/cdefs.h: Define __extern_always_inline for clang
3179 4.2 and newer.
3180
3181 [BZ #17370]
3182 * libio/wfileops.c (do_ftell_wide): Free OUT on error path.
3183
31842014-09-16 Siddhesh Poyarekar <siddhesh@redhat.com>
3185 Jakub Jelinek <jakub@redhat.com>
3186
3187 [BZ #17266]
3188 * libio/stdio.h: Check definition of __fortify_function
3189 instead of __extern_always_inline to include bits/stdio2.h.
3190 * math/bits/math-finite.h [__USE_XOPEN || __USE_ISOC99]: Also
3191 check if __extern_always_inline is defined.
3192 [__USE_MISC || __USE_XOPEN]: Likewise.
3193 [__USE_ISOC99] Likewise.
3194 * misc/sys/cdefs.h (__fortify_function): Define only if
3195 __extern_always_inline is defined.
3196 [!__cplusplus || __GNUC_PREREQ (4,3)]: Revert to defining
3197 __extern_always_inline and __extern_inline only for g++-4.3
3198 and newer or a compatible gcc.
3199
32002014-09-15 Andreas Schwab <schwab@linux-m68k.org>
3201
3202 [BZ #17371]
3203 * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Fix
3204 last change to handle zero prefix length.
3205
32062014-09-15 Siddhesh Poyarekar <siddhesh@redhat.com>
3207
3208 * sysdeps/posix/sysconf.c (__sysconf): Return -1 for
3209 _SC_REGEX_VERSION.
3210
3211 * posix/getconf.c (vars): Add _POSIX_IPV6 and
3212 _POSIX_RAW_SOCKETS.
3213
32142014-09-13 Allan McRae <allan@archlinux.org>
3215
3216 * po/ru.po: Update Russian translation from translation project.
3217
32182014-09-12 Roland McGrath <roland@hack.frob.com>
3219
3220 * locale/programs/locale.c (show_locale_vars): Inline local function
3221 into its sole call site. Clean up some style nits.
3222 (print_item): New function, broken out of ...
3223 (show_info): ... local function here. Clean up style nits.
3224
3225 * locale/programs/ld-ctype.c (set_one_default): New function, broken
3226 out of ...
3227 (set_class_defaults): ... local function set_default here.
3228 Define set_default as a macro locally to pass constant parameters.
3229 (allocate_arrays, set_class_defaults): Use C99 for scope for each CNT,
3230 rather than a shared local.
3231
3232 * stdlib/rpmatch.c (try): New function, broken out of ...
3233 (rpmatch): ... local function here. Also, prototypify definition.
3234
32352014-09-12 Joseph Myers <joseph@codesourcery.com>
3236
3237 * scripts/soversions.awk: Do not handle configuration names.
3238 * Makeconfig ($(common-objpfx)soversions.i): Do not pass cpu,
3239 vendor and os variables to soversions.awk.
3240 * configure.ac: Do not modify gnu-* host_os.
3241 * configure: Regenerated
3242 * shlib-versions: Remove first column with configuration names.
3243 * nptl/shlib-versions: Likewise.
3244 * nptl_db/shlib-versions: Likewise.
3245 * sysdeps/hppa/shlib-versions: Likewise.
3246 * sysdeps/m68k/shlib-versions: Likewise.
3247 * sysdeps/mach/hurd/shlib-versions: Likewise.
3248 * sysdeps/unix/sysv/linux/aarch64/shlib-versions: Likewise.
3249 * sysdeps/unix/sysv/linux/alpha/shlib-versions: Likewise.
3250 * sysdeps/unix/sysv/linux/arm/shlib-versions: Likewise.
3251 * sysdeps/unix/sysv/linux/hppa/shlib-versions: Likewise.
3252 * sysdeps/unix/sysv/linux/ia64/shlib-versions: Likewise.
3253 * sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions: Likewise.
3254 * sysdeps/unix/sysv/linux/microblaze/shlib-versions: Likewise.
3255 * sysdeps/unix/sysv/linux/mips/shlib-versions: Likewise.
3256 * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions:
3257 Likewise.
3258 * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
3259 * sysdeps/unix/sysv/linux/sh/shlib-versions: Likewise.
3260 * sysdeps/unix/sysv/linux/shlib-versions: Likewise.
3261 * sysdeps/unix/sysv/linux/sparc/sparc32/shlib-versions: Likewise.
3262 * sysdeps/unix/sysv/linux/sparc/sparc64/shlib-versions: Likewise.
3263 * sysdeps/unix/sysv/linux/tile/shlib-versions: Likewise.
3264 * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Likewise.
3265 * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
3266
3267 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
3268 (HAVE_ELFV2_ABI): AC_DEFINE in ELFv2 case.
3269 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure:
3270 Regenerated.
3271 * config.h.in (HAVE_ELFV2_ABI): New macro undefine.
3272 * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions:
3273 Condition symbol version definitions on [HAVE_ELFV2_ABI].
3274
3275 * shlib-versions: Remove OS-specific entries. Moved to files in
3276 sysdeps.
3277 * sysdeps/mach/hurd/shlib-versions: New file.
3278 * sysdeps/unix/sysv/linux/shlib-versions: Likewise.
3279
3280 * nptl/shlib-versions: Remove architecture-specific entries.
3281 Moved to files in sysdeps.
3282 * shlib-versions: Likewise.
3283 * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: New
3284 file.
3285 * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
3286 * sysdeps/unix/sysv/linux/sh/shlib-versions: Likewise.
3287 * sysdeps/unix/sysv/linux/sparc/sparc32/shlib-versions: Likewise.
3288 * sysdeps/unix/sysv/linux/sparc/sparc64/shlib-versions: Likewise.
3289
3290 * sysdeps/gnu/netinet/udp.h (UDP_NO_CHECK6_TX): New macro.
3291 (UDP_NO_CHECK6_RX): Likewise.
3292
32932014-09-12 Siddhesh Poyarekar <siddhesh@redhat.com>
3294
3295 * sysdeps/posix/sysconf.c (__sysconf): Spell
3296 _POSIX_DEVICE_SPECIFIC and _POSIX_DEVICE_SPECIFIC_R correctly.
3297
32982014-08-12 Florian Weimer <fweimer@redhat.com>
3299
3300 * iconv/gconv_open.c (__gconv_open): Remove transliteration module
3301 loading.
3302 * iconv/Versions (__gconv_transliterate): Export for use from
3303 gconv modules.
3304 * iconv/gconv.h (__GCONV_TRANSLIT): New flag.
3305 (struct __gconv_trans_data, __gconv_trans_fct,
3306 __gconv_trans_context_fct, __gconv_trans_query_fct,
3307 __gconv_trans_init_fct, __gconv_trans_end_fct): Remove type
3308 definitions.
3309 (struct __gconv_step_data): Remove __trans member.
3310 (__gconv_transliterate): Declaration moved from gconv_int.h. No
3311 longer hidden. Remove unused trans_data argument.
3312 * iconv/gconv_int.h (struct trans_struct): Remove definition.
3313 (__gconv_translit_find): Remove declaration.
3314 (__gconv_transliterate): Declaration moved to gconv.h. Add hidden
3315 prototype.
3316 * iconv/gconv_close.c (__gconv_close): Remove __trans cleanup.
3317 * iconv/gconv_trans.c (__gconv_transliterate): Remove unused
3318 trans_data argument. Add hidden definition.
3319 (__gconv_translit_find): Remove.
3320 * iconv/loop.c (STANDARD_TO_LOOP_ERR_HANDLER): Call
3321 __gconv_transliterate directly if __GCONV_TRANSLIT is set.
3322 * iconv/skeleton.c: Remove transliteration initialization.
3323 * libio/fileops.c (_IO_new_file_fopen): Adjust struct
3324 __gconv_step_data initialization.
3325 * libio/iofwide.c (__libio_translit_): Remove.
3326 (_IO_fwide): Adjust struct __gconv_step_data initialization.
3327 * wcsmbs/btowc.c (__btowc): Likewise.
3328 * wcsmbs/mbrtoc16.c (mbrtoc16): Likewise.
3329 * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
3330 * wcsmbs/mbsnrtowcs.c (__mbsnrtowcs): Likewise.
3331 * wcsmbs/mbsrtowcs_l.c (__mbsrtowcs_l): Likewise.
3332 * wcsmbs/wcrtomb.c (__wcrtomb): Likewise.
3333 * wcsmbs/wcsnrtombs.c (__wcsnrtombs): Likewise.
3334 * wcsmbs/wcsrtombs.c (__wcsrtombs): Likewise.
3335 * wcsmbs/wctob.c (wctob): Likewise.
3336
33372014-09-12 Siddhesh Poyarekar <siddhesh@redhat.com>
3338
3339 [BZ #16194]
3340 * sysdeps/x86/tst-xmmymm.sh: Rename file to...
3341 * sysdeps/x86/tst-ld-sse-use.sh: ... this. Check for zmm
3342 register usage.
3343 * sysdeps/x86/Makefile: Adjust.
3344
33452014-09-11 Kostya Serebryany <konstantin.s.serebryany@gmail.com>
3346 Roland McGrath <roland@hack.frob.com>
3347
3348 * locale/weight.h: Add include guard.
3349 (findidx): Make static rather than auto; take new parameters
3350 TABLE, INDIRECT, and EXTRA instead of getting them as outer locals.
3351 * locale/weightwc.h: Likewise.
3352 * posix/fnmatch_loop.c
3353 (FCT): Change type of EXTRA from int32_t to wint_t.
3354 Don't include either header inside the function.
3355 Call FINDIDX rather than findidx, and pass new arguments.
3356 #undef FINDIDX at the end of the file.
3357 * posix/fnmatch.c [_LIBC]: #include <locale/weight.h> and define
3358 FINDIDX before including fnmatch_loop.c for the non-wide version.
3359 [_LIBC] [HANDLE_MULTIBYTE]: #define findidx to findidxwc around
3360 #include <locale/weightwc.h>, and define FINDIDX to findidxwc
3361 for the wide version.
3362 * posix/regcomp.c [_LIBC]: #include <locale/weight.h>.
3363 (build_equiv_class) [_LIBC]: Don't #include it inside the function.
3364 Pass new arguments to findidx.
3365 * posix/regexec.c [RE_ENABLE_I18N] [_LIBC]: #include <locale/weight.h>.
3366 [RE_ENABLE_I18N] (check_node_accept_bytes) [_LIBC]:
3367 Don't #include it inside the function. Pass new arguments to findidx.
3368 * posix/regex_internal.h
3369 [!NOT_IN_libc] [_LIBC]: #include <locale/weight.h>.
3370 (re_string_elem_size_at): Don't #include it inside the function.
3371 Pass new arguments to findidx.
3372 * string/strcoll_l.c: #include WEIGHT_H at top level.
3373 (get_next_seq): Don't #include it inside the function.
3374 Pass new arguments to findidx.
3375 (get_next_seq_nocache): Likewise.
3376 * string/strxfrm_l.c: #include WEIGHT_H at top level.
3377 (STRXFRM): Don't #include it inside the function.
3378 Pass new arguments to findidx.
3379
33802014-09-11 Florian Weimer <fweimer@redhat.com>
3381
3382 [BZ #17344]
3383 * malloc/malloc.c (unlink): Turn asserts into a call to
3384 malloc_printerr.
3385
33862014-09-11 Tim Lammens <tim.lammens@gmail.com>
3387
3388 [BZ #17370]
3389 * libio/wfileops (do_ftell_wide): Free OUT.
3390
33912014-09-10 Chris Metcalf <cmetcalf@tilera.com>
3392
3393 * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Remove file.
3394
33952014-09-10 Siddhesh Poyarekar <siddhesh@redhat.com>
3396
3397 [BZ #17363]
3398 * inet/getnetgrent_r.c (__internal_getnetgrent_r): Try next
3399 group if the current group is empty.
3400
34012014-09-10 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
3402
3403 * benchtests/bench-memset.c (test_main): Add more test from size
3404 from 32 to 512 bytes.
3405 * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
3406 Add POWER8 memset object.
3407 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
3408 (__libc_ifunc_impl_list): Add POWER8 memset and bzero implementations.
3409 * sysdeps/powerpc/powerpc64/multiarch/bzero.c (__bzero): Add POWER8
3410 implementation.
3411 * sysdeps/powerpc/powerpc64/multiarch/memset.c (__libc_memset):
3412 Likewise.
3413 * sysdeps/powerpc/powerpc64/multiarch/memset-power8.S: New file:
3414 multiarch POWER8 memset optimization.
3415 * sysdeps/powerpc/powerpc64/power8/memset.S: New file: optimized
3416 POWER8 memset optimization.
3417
3418 * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
3419 Remove bzero multiarch objects.
3420 * sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S: Remove file.
3421 * sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S: Likewise.
3422 * sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S: Likewise.
3423 * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S [NO_BZERO_IMPL]:
3424 Remove define.
3425 [__bzero]: Redefine to specific name.
3426 * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: Likewise.
3427 * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: Likewise.
3428 * sysdeps/powerpc/powerpc64/power4/memset.S [NO_BZERO_IMPL]: Remove
3429 define.
3430 * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
3431 * sysdeps/powerpc/powerpc64/power7/memset.S: Likewise.
3432
34332014-09-10 Florian Weimer <fweimer@redhat.com>
3434
3435 * Makeconfig (gccwarn-c): Turn implicit-function-declaration
3436 warnings into errors.
3437
3438 * stdlib/tst-tls-atexit-lib.c: Include <stdlib.h>, for the
3439 __cxa_thread_atexit_impl prototype.
3440
34412014-09-09 Steve Ellcey <sellcey@mips.com>
3442
3443 * sysdeps/mips/preconfigure: Put code inside mips* case statement.
3444 Fix capitalization of error message.
3445
34462014-09-09 Steve Ellcey <sellcey@mips.com>
3447
3448 * sysdeps/mips/preconfigure: Modify ABI tests.
3449
34502014-09-07 Carlos O'Donell <carlos@systemhalted.org>
3451
3452 * sysdeps/unix/sysv/linux/hppa/c++-types.data: New file.
3453
34542014-09-07 Roland McGrath <roland@hack.frob.com>
3455 Carlos O'Donell <carlos@systemhalted.org>
3456
3457 * sysdeps/unix/sysv/linux/hppa/nptl/libc-lowlevellock.c: File removed.
3458 * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Moved ...
3459 * sysdeps/unix/sysv/linux/hppa/lowlevellock.h: ... here.
3460 * sysdeps/unix/sysv/linux/hppa/nptl/pt-vfork.S: Moved ...
3461 * sysdeps/unix/sysv/linux/hppa/pt-vfork.S: ... here.
3462 * sysdeps/unix/sysv/linux/hppa/nptl/pthread.h: Moved ...
3463 * sysdeps/unix/sysv/linux/hppa/pthread.h: ... here.
3464 * sysdeps/unix/sysv/linux/hppa/nptl/pthreadP.h: Moved ...
3465 * sysdeps/unix/sysv/linux/hppa/pthreadP.h: ... here.
3466 * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_broadcast.c: Moved ...
3467 * sysdeps/unix/sysv/linux/hppa/pthread_cond_broadcast.c: ... here.
3468 * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_destroy.c: Moved ...
3469 * sysdeps/unix/sysv/linux/hppa/pthread_cond_destroy.c: ... here.
3470 * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_init.c: Moved ...
3471 * sysdeps/unix/sysv/linux/hppa/pthread_cond_init.c: ... here.
3472 * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_signal.c: Moved ...
3473 * sysdeps/unix/sysv/linux/hppa/pthread_cond_signal.c: ... here.
3474 * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_timedwait.c: Moved ...
3475 * sysdeps/unix/sysv/linux/hppa/pthread_cond_timedwait.c: ... here.
3476 * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_wait.c: Moved ...
3477 * sysdeps/unix/sysv/linux/hppa/pthread_cond_wait.c: ... here.
3478 * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Moved ...
3479 * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h: ... here.
3480 * sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h: Moved ...
3481 * sysdeps/hppa/nptl/bits/pthreadtypes.h: ... here.
3482 * sysdeps/unix/sysv/linux/hppa/nptl/bits/semaphore.h: Moved ...
3483 * sysdeps/hppa/nptl/bits/semaphore.h: ... here.
3484 * sysdeps/unix/sysv/linux/hppa/clone.S: Include <tcb-offsets.h>.
3485 Deconditionalize the code that was previously under [RESET_PID].
3486 * sysdeps/unix/sysv/linux/hppa/nptl/clone.S: File removed.
3487 * sysdeps/unix/sysv/linux/hppa/arch-fork.h: New file.
3488 * sysdeps/unix/sysv/linux/hppa/nptl/fork.c: File removed.
3489 * sysdeps/hppa/nptl/tcb-offsets.sym: Include pthread.h and don't
3490 include sysdep.h.
3491
34922014-09-08 Allan McRae <allan@archlinux.org>
3493
3494 * version.h (RELEASE): Set to "development".
3495 (VERSION): Set to "2.20.90"
3496
34972014-09-07 Allan McRae <allan@archlinux.org
3498
3499 * version.h (RELEASE): Set to "stable".
3500 (VERSION): Set to "2.20"
3501 * include/features.h (__GLIBC_MINOR__): Set to 20.
3502
3503 * manual/contrib.texi: Add entries for Wilco Dijkstra and Stefan
3504 Liebler.
3505
3506 * po/ko.po: Update Korean translation from translation project.
3507
35082014-09-06 Chris Metcalf <cmetcalf@tilera.com>
3509
3510 [BZ #17354]
3511 * sysdeps/tile/dl-machine.h (elf_machine_rela): Add a MUNGE_SIGNED
3512 macro for handling signed relocations.
3513
35142014-09-03 Florian Weimer <fweimer@redhat.com>
3515
3516 [BZ #17325]
3517 * iconvdata/ibm1364.c (BODY): Fix check for sentinel.
3518 * iconvdata/ibm932.c (BODY): Replace invalid sentinel check with
3519 assert.
3520 * iconvdata/ibm933.c (BODY): Fix check for sentinel.
3521 * iconvdata/ibm935.c (BODY): Likewise.
3522 * iconvdata/ibm937.c (BODY): Likewise.
3523 * iconvdata/ibm939.c (BODY): Likewise.
3524 * iconvdata/ibm943.c (BODY): Replace invalid sentinel check with
3525 assert.
3526 * iconvdata/Makefile (iconv-test.out): Pass module list to test
3527 script.
3528 * iconvdata/run-iconv-test.sh: New test loop for checking for
3529 decoder crashers.
3530
35312014-09-02 Khem Raj <raj.khem@gmail.com>
3532
3533 * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c (fegetenv): Add
3534 libm_hidden_ver.
3535
35362014-09-01 Allan McRae <allan@archlinux.org>
3537
3538 * po/eo.po: Update Esperanto translation from translation project.
3539
3540 * po/ca.po: Update Catalan translation from translation project.
3541
35422014-08-28 Samuel Thibault <samuel.thibault@ens-lyon.org>
3543
3544 * sysdeps/mach/hurd/fork.c (__fork): Lock SS->lock around
3545 __proc_dostop call.
3546
35472014-08-27 Mark Wielaard <mjw@redhat.com>
3548
3549 [BZ #17319]
3550 * sysdeps/i386/nptl/tls.h (TLS_INIT_TP): Use INTERNAL_SYSCALL
3551 to call set_thread_area instead of hand written asm.
3552 (__NR_set_thread_area): Removed define.
3553 (TLS_FLAG_WRITABLE): Likewise.
3554 (__ASSUME_SET_THREAD_AREA): Remove check.
3555 (TLS_EBX_ARG): Remove define.
3556 (TLS_LOAD_EBX): Likewise.
3557
35582014-08-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
3559
3560 Simplify atomicity of socket creation in bind.
3561
3562 * sysdeps/mach/hurd/bind.c (__bind): Use dir_lookup(node, "") instead of
3563 looking up the name after linking the file.
3564
35652014-08-27 Allan McRae <allan@archlinux.org>
3566
3567 * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
3568
35692014-08-26 Florian Weimer <fweimer@redhat.com>
3570
3571 [BZ #17187]
3572 * iconv/gconv_trans.c (struct known_trans, search_tree, lock,
3573 trans_compare, open_translit, __gconv_translit_find):
3574 Remove module loading code.
3575
35762014-08-26 Allan McRae <allan@archlinux.org>
3577
3578 * po/vi.po: Update Vietnamese translation from translation project.
3579
3580 * po/uk.po: Update Ukrainian translation from translation project.
3581
3582 * po/fr.po: Update French translation from translation project.
3583
3584 * po/ru.po: Update Russian translation from translation project.
3585
3586 * po/pl.po: Update Polish translation from translation project.
3587
3588 * po/cs.po: Update Czech translation from translation project.
3589
3590 * po/de.po: Update German translation from translation project.
3591
3592 * po/bg.po: Update Bulgarian translation from translation project.
3593
3594 * po/sv.po: Update Sweedish translation from translation project.
3595
3596 * po/nl.po: Update Dutch translation from translation project.
3597
3598 * po/es.po: Update Spanish translation from translation project.
3599
36002014-08-21 Siddhesh Poyarekar <siddhesh@redhat.com>
3601
3602 * nptl/Makefile (CFLAGS-pthread_atfork.c): Remove.
3603
3604 * catgets/Makefile (CPPFLAGS-gencat): Remove.
3605 * iconv/Makefile (CPPFLAGS-iconv_prog): Likewise.
3606 (CPPFLAGS-iconvconfig): Likewise.
3607 * timezone/Makefile (CPPFLAGS-zic): Likewise.
3608
3609 * include/libc-symbols.h: Remove unnecessary check for
3610 NOT_IN_libc.
3611 * nptl/pthreadP.h: Likewise.
3612 * sysdeps/aarch64/setjmp.S: Likewise.
3613 * sysdeps/alpha/setjmp.S: Likewise.
3614 * sysdeps/arm/sysdep.h: Likewise.
3615 * sysdeps/i386/setjmp.S: Likewise.
3616 * sysdeps/m68k/setjmp.c: Likewise.
3617 * sysdeps/posix/getcwd.c: Likewise.
3618 * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
3619 * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
3620 * sysdeps/s390/s390-32/setjmp.S: Likewise.
3621 * sysdeps/s390/s390-64/setjmp.S: Likewise.
3622 * sysdeps/sh/sh3/setjmp.S: Likewise.
3623 * sysdeps/sh/sh4/setjmp.S: Likewise.
3624 * sysdeps/unix/alpha/sysdep.h: Likewise.
3625 * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
3626 * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
3627 * sysdeps/unix/sysv/linux/ia64/setjmp.S: Likewise.
3628 * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
3629 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
3630 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
3631 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
3632 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
3633 * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
3634 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
3635 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
3636 * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
3637 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
3638 * sysdeps/x86_64/setjmp.S: Likewise.
3639
36402014-08-13 Joseph Myers <joseph@codesourcery.com>
3641
3642 [BZ #17263]
3643 * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Include
3644 <stdint.h>.
3645 (__get_clockfreq): Use uint64_t instead of hp_timing_t in
3646 INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK call.
3647
36482014-08-13 Siddhesh Poyarekar <siddhesh@redhat.com>
3649
3650 * sysdeps/x86/fpu/bits/mathinline.h: Fix typo in comment.
3651
3652 [BZ #17262]
3653 * sysdeps/x86/fpu/bits/mathinline.h: Check both __SSE2_MATH__
3654 and __x86_64__ when disabling x87 inline functions.
3655
36562014-08-12 H.J. Lu <hongjiu.lu@intel.com>
3657
3658 [BZ #17259]
3659 * sysdeps/x86_64/cacheinfo.c (intel_check_word): Replace cpuid
3660 asm statement with __cpuid_count.
3661
36622014-08-12 Mike Frysinger <vapier@gentoo.org>
3663
3664 * configure.ac: Change __ehdr_start code to dereference the struct.
3665 Run readelf on the output to look for relocations.
3666 * configure: Regenerated.
3667
36682014-08-12 Joseph Myers <joseph@codesourcery.com>
3669
3670 [BZ #17261]
3671 * sysdeps/powerpc/nofpu/fenv_const.c (__fe_enabled_env): Change
3672 value to 0.
3673 (__fe_nonieee_env): Define as an alias for __fe_dfl_env.
3674
36752014-08-12 Roland McGrath <roland@hack.frob.com>
3676
3677 * NEWS: Mention x86-64 ld.so use of Intel MPX instructions.
3678
36792014-08-12 Bernard Ogden <bernie.ogden@linaro.org>
3680
3681 [BZ #16892]
3682 * sysdeps/nptl/lowlevellock.h (__lll_timedlock): Use
3683 atomic_compare_and_exchange_bool_acq rather than atomic_exchange_acq.
3684
36852014-08-12 Sean Anderson <seanga2@gmail.com>
3686
3687 * malloc/malloc.c: Fix typo in comment.
3688
36892014-08-09 Allan McRae <allan@archlinux.org>
3690
3691 * Regenerate libc.po.
3692
36932014-08-08 Mike Frysinger <vapier@gentoo.org>
3694
3695 * intl/tst-gettext2.sh: Check every lang file for creation.
3696
36972014-08-07 Wilco Dijkstra <wdijkstr@arm.com>
3698
3699 * sysdeps/aarch64/fpu/math_private.h
3700 (libc_feholdsetround_noex_aarch64_ctx): New function.
3701
37022014-08-07 Wilco Dijkstra <wdijkstr@arm.com>
3703
3704 * sysdeps/arm/armv6/strcpy.S (strcpy):
3705 Fix performance issue in misaligned cases.
3706
37072014-08-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
3708
3709 * sysdeps/unix/sysv/linux/powerpc/bits/ioctl-types.h (struct winsize):
3710 Move definition from termios.h.
3711 (struct termio): Likewise.
3712 (NCC, TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
3713 TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI, N_TTY, N_SLIP,
3714 N_MOUSE, N_PPP, N_STRIP, N_AX25, N_X25, N_6PACK, N_MASC, N_R3964,
3715 N_PROFIBUS_FDL, N_IRDA, N_SMSBLOCK, N_HDLC, N_SYNC_PPP, N_HCI):
3716 Likewise.
3717 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h (struct winsize):
3718 Move definition to ioctl-types.h
3719 (struct termio): Likewise.
3720 (NCC, TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
3721 TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI, N_TTY, N_SLIP,
3722 N_MOUSE, N_PPP, N_STRIP, N_AX25, N_X25, N_6PACK, N_MASC, N_R3964,
3723 N_PROFIBUS_FDL, N_IRDA, N_SMSBLOCK, N_HDLC, N_SYNC_PPP, N_HCI):
3724 Likewise.
3725
37262014-08-05 Richard Henderson <rth@redhat.com>
3727
3728 * sysdeps/alpha/soft-fp/ots_cvtxq.c (_OtsCvtXQ): Always raise
3729 exceptions.
3730 * sysdeps/alpha/soft-fp/Makefile [soft-fp] (sysdep_routines):
3731 Add fraiseexcpt.
3732 * sysdeps/alpha/soft-fp/sfp-machine.h (FP_HANDLE_EXCEPTIONS):
3733 Use __feraiseexcept.
3734 * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S (feraiseexcept):
3735 Protect libm symbols with IS_IN_libm.
3736
3737 * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Remove file.
3738
37392014-08-04 Bernard Ogden <bernie.ogden@linaro.org>
3740
3741 * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Remove file.
3742
37432014-08-04 Will Newton <will.newton@linaro.org>
3744
3745 * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: Remove
3746 file.
3747
37482014-08-04 Mike Frysinger <vapier@gentoo.org>
3749
3750 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (PSEUDO): Add nocancel
3751 variants for each function.
3752
37532014-08-04 Roland McGrath <roland@hack.frob.com>
3754
3755 * sysdeps/unix/sysv/linux/ia64/nptl/Makefile: File removed, contents
3756 appended ...
3757 * sysdeps/unix/sysv/linux/ia64/Makefile: ... here.
3758 * sysdeps/unix/sysv/linux/ia64/nptl/Versions: File removed, contents
3759 appended ...
3760 * sysdeps/unix/sysv/linux/ia64/Versions: ... here.
3761 * sysdeps/unix/sysv/linux/ia64/nptl/__ia64_longjmp.S: Moved ...
3762 * sysdeps/unix/sysv/linux/ia64/__ia64_longjmp.S: ... here.
3763 * sysdeps/unix/sysv/linux/ia64/nptl/__sigstack_longjmp.c: Moved ...
3764 * sysdeps/unix/sysv/linux/ia64/__sigstack_longjmp.c: ... here.
3765 * sysdeps/unix/sysv/linux/ia64/nptl/c++-types.data: Moved ...
3766 * sysdeps/unix/sysv/linux/ia64/c++-types.data: ... here.
3767 * sysdeps/unix/sysv/linux/ia64/nptl/dl-sysdep.h: Moved ...
3768 * sysdeps/unix/sysv/linux/ia64/dl-sysdep.h: ... here.
3769 * sysdeps/unix/sysv/linux/ia64/nptl/ld.abilist: Moved ...
3770 * sysdeps/unix/sysv/linux/ia64/ld.abilist: ... here.
3771 * sysdeps/unix/sysv/linux/ia64/nptl/libBrokenLocale.abilist: Moved ...
3772 * sysdeps/unix/sysv/linux/ia64/libBrokenLocale.abilist: ... here.
3773 * sysdeps/unix/sysv/linux/ia64/nptl/libanl.abilist: Moved ...
3774 * sysdeps/unix/sysv/linux/ia64/libanl.abilist: ... here.
3775 * sysdeps/unix/sysv/linux/ia64/nptl/libc.abilist: Moved ...
3776 * sysdeps/unix/sysv/linux/ia64/libc.abilist: ... here.
3777 * sysdeps/unix/sysv/linux/ia64/nptl/libcrypt.abilist: Moved ...
3778 * sysdeps/unix/sysv/linux/ia64/libcrypt.abilist: ... here.
3779 * sysdeps/unix/sysv/linux/ia64/nptl/libdl.abilist: Moved ...
3780 * sysdeps/unix/sysv/linux/ia64/libdl.abilist: ... here.
3781 * sysdeps/unix/sysv/linux/ia64/nptl/libm.abilist: Moved ...
3782 * sysdeps/unix/sysv/linux/ia64/libm.abilist: ... here.
3783 * sysdeps/unix/sysv/linux/ia64/nptl/libnsl.abilist: Moved ...
3784 * sysdeps/unix/sysv/linux/ia64/libnsl.abilist: ... here.
3785 * sysdeps/unix/sysv/linux/ia64/nptl/libpthread.abilist: Moved ...
3786 * sysdeps/unix/sysv/linux/ia64/libpthread.abilist: ... here.
3787 * sysdeps/unix/sysv/linux/ia64/nptl/libresolv.abilist: Moved ...
3788 * sysdeps/unix/sysv/linux/ia64/libresolv.abilist: ... here.
3789 * sysdeps/unix/sysv/linux/ia64/nptl/librt.abilist: Moved ...
3790 * sysdeps/unix/sysv/linux/ia64/librt.abilist: ... here.
3791 * sysdeps/unix/sysv/linux/ia64/nptl/libthread_db.abilist: Moved ...
3792 * sysdeps/unix/sysv/linux/ia64/libthread_db.abilist: ... here.
3793 * sysdeps/unix/sysv/linux/ia64/nptl/libutil.abilist: Moved ...
3794 * sysdeps/unix/sysv/linux/ia64/libutil.abilist: ... here.
3795 * sysdeps/unix/sysv/linux/ia64/nptl/localplt.data: Moved ...
3796 * sysdeps/unix/sysv/linux/ia64/localplt.data: ... here.
3797 * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Moved ...
3798 * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: ... here.
3799 * sysdeps/unix/sysv/linux/ia64/nptl/sysdep-cancel.h: Moved ...
3800 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: ... here.
3801 * sysdeps/unix/sysv/linux/ia64/nptl/timer_create.c: Moved ...
3802 * sysdeps/unix/sysv/linux/ia64/timer_create.c: ... here.
3803 * sysdeps/unix/sysv/linux/ia64/nptl/timer_delete.c: Moved ...
3804 * sysdeps/unix/sysv/linux/ia64/timer_delete.c: ... here.
3805 * sysdeps/unix/sysv/linux/ia64/nptl/timer_getoverr.c: Moved ...
3806 * sysdeps/unix/sysv/linux/ia64/timer_getoverr.c: ... here.
3807 * sysdeps/unix/sysv/linux/ia64/nptl/timer_gettime.c: Moved ...
3808 * sysdeps/unix/sysv/linux/ia64/timer_gettime.c: ... here.
3809 * sysdeps/unix/sysv/linux/ia64/nptl/timer_settime.c: Moved ...
3810 * sysdeps/unix/sysv/linux/ia64/timer_settime.c: ... here.
3811 * sysdeps/unix/sysv/linux/ia64/nptl/unwind-forcedunwind.c: Moved ...
3812 * sysdeps/unix/sysv/linux/ia64/unwind-forcedunwind.c: ... here.
3813 Update #include.
3814 * sysdeps/unix/sysv/linux/ia64/nptl/unwind_longjmp.c: Moved ...
3815 * sysdeps/unix/sysv/linux/ia64/unwind_longjmp.c: ... here.
3816
38172014-08-04 Roland McGrath <roland@hack.frob.com>
3818
3819 * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h: Moved ...
3820 * sysdeps/ia64/nptl/bits/pthreadtypes.h: ... here.
3821 * sysdeps/unix/sysv/linux/ia64/nptl/bits/semaphore.h: Moved ...
3822 * sysdeps/ia64/nptl/bits/semaphore.h: ... here.
3823 * sysdeps/unix/sysv/linux/ia64/nptl/bits/local_lim.h: Moved ...
3824 * sysdeps/unix/sysv/linux/ia64/bits/local_lim.h: ... here.
3825
38262014-08-04 Roland McGrath <roland@hack.frob.com>
3827
3828 * nptl/sysdeps/pthread/createthread.c: Include <arch-fork.h>.
3829 * sysdeps/unix/sysv/linux/ia64/arch-fork.h (ARCH_CLONE): New macro.
3830 * sysdeps/ia64/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
3831 * sysdeps/unix/sysv/linux/ia64/nptl/createthread.c: File removed.
3832
38332014-08-04 Roland McGrath <roland@hack.frob.com>
3834
3835 * sysdeps/unix/sysv/linux/ia64/nptl/vfork.S: Moved ...
3836 * sysdeps/unix/sysv/linux/ia64/vfork.S: ... here.
3837 (__libc_vfork): Define function under this name.
3838 (__vfork): Define as an alias.
3839 * sysdeps/unix/sysv/linux/ia64/pt-vfork.S: New file.
3840 * sysdeps/unix/sysv/linux/ia64/nptl/pt-vfork.S: File removed.
3841
38422014-08-04 Roland McGrath <roland@hack.frob.com>
3843
3844 * sysdeps/unix/sysv/linux/ia64/clone2.S: Deconditionalize the code
3845 that was previously under [RESET_PID].
3846 * sysdeps/unix/sysv/linux/ia64/nptl/clone2.S: File removed.
3847
38482014-08-04 Andreas Schwab <schwab@suse.de>
3849
3850 * sysdeps/ieee754/ldbl-96/s_fma.c: Include <math_private.h>.
3851
38522014-08-03 Mike Frysinger <vapier@gentoo.org>
3853
3854 * stdlib/tst-setcontext.c (test_stack): Fix coding style.
3855 (main): Likewise.
3856
38572014-08-01 Roland McGrath <roland@hack.frob.com>
3858
3859 * sysdeps/unix/sysv/linux/arm/lowlevellock.h: File removed.
3860
38612014-08-01 Richard Henderon <rth@redhat.com>
3862
3863 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use math_force_eval before
3864 feclearexcept; use math_opt_barrier instead of open-coded asm; fix
3865 typo in exact zero test.
3866 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
3867 * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
3868 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
3869
38702014-08-01 Roland McGrath <roland@hack.frob.com>
3871
3872 * sysdeps/unix/sysv/linux/arm/sysdep.h (PTR_MANGLE_LOAD, PTR_MANGLE)
3873 (PTR_MANGLE2, PTR_DEMANGLE, PTR_DEMANGLE2): Move these macros...
3874 * sysdeps/arm/sysdep.h: ... here.
3875 [!__ASSEMBLER__]: Include <stdint.h>.
3876
38772014-08-01 Siddhesh Poyarekar <siddhesh@redhat.com>
3878
3879 * include/libc-symbols.h (HAVE_LIBINTL_H): Define macro.
3880 (HAVE_WCTYPE_H): Likewise.
3881 (HAVE_ISWCTYPE): Likewise.
3882 (ENABLE_NLS): Likewise.
3883 * posix/regex_internal.h [(defined MB_CUR_MAX && HAVE_WCTYPE_H
3884 && HAVE_ISWCTYPE) || _LIBC]: Sync up with gnulib.
3885
3886 * posix/regex_internal.c: Check if DEBUG is defined and is
3887 set.
3888
3889 * include/libc-symbols.h (HAVE_MBSTATE_T): Define macro.
3890 (HAVE_MBSRTOWCS): Likewise.
3891 * posix/fnmatch.c: Include string.h unconditionally.
3892
38932014-08-01 Stefan Liebler <stli@linux.vnet.ibm.com>
3894
3895 * NEWS: Explain the s390 jmp_buf / ucontext_t ABI change
3896 reversal.
3897
38982014-07-31 Roland McGrath <roland@hack.frob.com>
3899
3900 * sysdeps/generic/safe-fatal.h: New file.
3901 * sysdeps/unix/sysv/linux/safe-fatal.h: New file.
3902 * nptl/forward.c: Include it.
3903 (__pthread_unwind): Use __safe_fatal as default action, rather
3904 than a bogus use of INTERNAL_SYSCALL that could never work.
3905
3906 * config.h.in (HAVE_BUILTIN_TRAP): New #define to 0.
3907 * configure.ac (libc_cv_builtin_trap): New test.
3908 * configure: Regenerated.
3909 * sysdeps/generic/abort-instr.h [HAVE_BUILTIN_TRAP]
3910 (ABORT_INSTRUCTION): Define using __builtin_trap.
3911
3912 * nptl/pthreadP.h (SIGCANCEL, SIGTIMER, SIGSETXID, __xidcmd): Moved ...
3913 * sysdeps/unix/sysv/linux/nptl-signals.h: ... to this new file.
3914 * sysdeps/nptl/nptl-signals.h: New file.
3915 * nptl/pthreadP.h: Include <nptl-signals.h>.
3916
39172014-07-31 Stefan Liebler <stli@linux.vnet.ibm.com>
3918
3919 * sysdeps/s390/s390-64/utf16-utf32-z9.c
3920 (ONE_DIRECTION): Define.
3921 * sysdeps/s390/s390-64/utf8-utf16-z9.c
3922 (ONE_DIRECTION): Define.
3923 * sysdeps/s390/s390-64/utf8-utf32-z9.c
3924 (ONE_DIRECTION): Define.
3925
39262014-07-31 Stefan Liebler <stli@linux.vnet.ibm.com>
3927
3928 * sysdeps/s390/Makefile: Delete file.
3929 * sysdeps/s390/Versions (GLIBC_2.19): Remove __setjmp.
3930 * sysdeps/s390/__longjmp.c: Delete file.
3931 * sysdeps/s390/bits/setjmp.h (__s390_jmp_buf):
3932 Remove fields __flags and __reserved.
3933 * sysdeps/s390/longjmp.c: Include setjmp/longjmp.c
3934 and add versioning.
3935 * sysdeps/s390/rtld-__longjmp.c: Delete file.
3936 * sysdeps/s390/rtld-global-offsets.sym: Likewise.
3937 * sysdeps/s390/rtld-setjmp.S: Likewise.
3938 * sysdeps/s390/s390-32/__longjmp-common.c: Move to ...
3939 * sysdeps/s390/s390-32/__longjmp.c: ... here.
3940 * sysdeps/s390/s390-32/setjmp-common.S: Move to ...
3941 * sysdeps/s390/s390-32/setjmp.S: ... here.
3942 Add versioning.
3943 (__sigsetjmp): Remove setting __flags field.
3944 * sysdeps/s390/s390-64/__longjmp-common.c:Move to ...
3945 * sysdeps/s390/s390-64/__longjmp.c: ... here.
3946 * sysdeps/s390/s390-64/setjmp-common.S: Move to ...
3947 * sysdeps/s390/s390-64/setjmp.S: ... here.
3948 Add versioning.
3949 (__sigsetjmp): Remove setting __flags field.
3950 * sysdeps/s390/setjmp.S: Delete file.
3951 * sysdeps/s390/sigjmp.c: Likewise.
3952 * sysdeps/s390/v1-longjmp.c: Likewise.
3953 * sysdeps/s390/v1-setjmp.h: Likewise.
3954 * sysdeps/s390/v1-sigjmp.c: Likewise.
3955 * sysdeps/unix/sysv/linux/s390/Makefile (sysdep_routines):
3956 Remove v1-longjmp_chk.
3957 * sysdeps/unix/sysv/linux/s390/getcontext.S: Delete file.
3958 * sysdeps/unix/sysv/linux/s390/longjmp_chk.c:
3959 Include debug/longjmp_chk.c and add versioning.
3960 * sysdeps/unix/sysv/linux/s390/pt-longjmp.c:
3961 Include nptl/pt-longjmp.c and add versioning.
3962 * sysdeps/unix/sysv/linux/s390/rtld-getcontext.S: Delete file.
3963 * sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c:
3964 Include __longjmp.c.
3965 * sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S:
3966 Move to ...
3967 * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: ... here.
3968 (__getcontext): Remove setting __flags field.
3969 Add versioning.
3970 * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S:
3971 Don't restore upper high grps.
3972 * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S:
3973 Likewise.
3974 (__swapcontext): Remove setting uc_flags field.
3975 * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym:
3976 Delete file.
3977 * sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c:
3978 Include __longjmp.c.
3979 * sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S:
3980 Move to ...
3981 * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: ... here.
3982 (__getcontext): Remove setting __flags field.
3983 Add versioning.
3984 * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S:
3985 (__swapcontext): Remove setting uc_flags field.
3986 * unix/sysv/linux/s390/s390-64/ucontext_i.sym: Delete file.
3987 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (ucontext):
3988 Remove fields uc_high_gprs and __reserved.
3989 * sysdeps/unix/sysv/linux/s390/ucontext_i.sym:
3990 New file with reverted content.
3991 * sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c: Delete file.
3992 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist:
3993 Regenerated.
3994 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist:
3995 Regenerated.
3996
39972014-07-31 Andreas Schwab <schwab@suse.de>
3998
3999 * config.h.in (HAVE_IFUNC): Define to 0.
4000 * rt/clock-compat.c [HAVE_IFUNC]: Check for value, not
4001 definedness.
4002
40032014-07-30 Ling Ma <ling.ml@alibaba-inc.com>
4004
4005 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
4006 memmove-avx-unaligned, memcpy-avx-unaligned and
4007 mempcpy-avx-unaligned.
4008 * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
4009 Add tests for AVX memcpy functions.
4010 * sysdeps/x86_64/multiarch/memcpy.S: Add support for AVX memcpy.
4011 * sysdeps/x86_64/multiarch/memcpy_chk.S: Add support for AVX
4012 memcpy_chk.
4013 * sysdeps/x86_64/multiarch/memmove.c: Add support for AVX memmove.
4014 * sysdeps/x86_64/multiarch/memmove_chk.c: Add support for AVX
4015 memmove_chk.
4016 * sysdeps/x86_64/multiarch/mempcpy.S: Add support for AVX mempcpy.
4017 * sysdeps/x86_64/multiarch/mempcpy_chk.S: Add support for AVX
4018 mempcpy_chk.
4019 * sysdeps/x86_64/multiarch/memcpy-avx-unaligned.S: New file.
4020 * sysdeps/x86_64/multiarch/mempcpy-avx-unaligned.S: New file.
4021 * sysdeps/x86_64/multiarch/memmove-avx-unaligned.S: New file.
4022
40232013-07-29 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
4024
4025 [BZ #17213]
4026 * sysdeps/powerpc/powerpc64/entry.h: Fix TEXT_START definition for
4027 powerpc64le.
4028
40292014-07-29 Jeff Layton <jlayton@poochiereds.net>
4030
4031 [BZ #16839]
4032 * manual/llio.texi: Add section about open file description locks.
4033 * manual/examples/ofdlocks.c: Example of open file description
4034 lock usage.
4035 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: Define F_OFD_GETLK,
4036 F_OFD_SETLK, and F_OFD_SETLKW.
4037
40382014-07-23 Allan McRae <allan@archlinux.org>
4039
4040 * po/es.po: Update Spanish translation from translation project.
4041
40422014-07-18 Andreas Schwab <schwab@linux-m68k.org>
4043
4044 * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Removed.
4045
40462014-07-17 Maciej W. Rozycki <macro@codesourcery.com>
4047
4048 [BZ #17078]
4049 * sysdeps/arm/dl-machine.h (elf_machine_rela)
4050 [RESOLVE_CONFLICT_FIND_MAP]: Handle R_ARM_TLS_DESC relocation.
4051 (elf_machine_lazy_rel): Handle prelinked R_ARM_TLS_DESC entries.
4052
40532014-07-17 Joseph Myers <joseph@codesourcery.com>
4054
4055 [BZ #17088]
4056 * math/fesetenv.c (__fesetenv)
4057 [FE_NOMASK_ENV && FE_ALL_EXCEPT != 0]: Return 1 for FE_NOMASK_ENV.
4058 * math/feupdateenv.c (__feupdateenv)
4059 [FE_NOMASK_ENV && FE_ALL_EXCEPT != 0]: Likewise.
4060
4061 * sysdeps/unix/sysv/linux/s390/kernel-features.h: New file.
4062 * sysdeps/unix/sysv/linux/kernel-features.h [__s390__]
4063 (__ASSUME_SOCKETCALL): Do not define.
4064
4065 * sysdeps/unix/sysv/linux/sh/kernel-features.h: New file.
4066 * sysdeps/unix/sysv/linux/kernel-features.h [__sh__]
4067 (__ASSUME_SOCKETCALL): Do not define.
4068 (__ASSUME_ST_INO_64_BIT): Define unconditionally.
4069 [__LINUX_KERNEL_VERSION >= 0x020625 && __sh__]
4070 (__ASSUME_ACCEPT4_SYSCALL): Do not define.
4071 [__LINUX_KERNEL_VERSION >= 0x020625 && __sh__]
4072 (__ASSUME_RECVMMSG_SYSCALL): Likewise.
4073 [__LINUX_KERNEL_VERSION >= 0x030000 && __sh__]
4074 (__ASSUME_SENDMMSG_SYSCALL): Likewise.
4075 [__sh__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
4076
4077 * sysdeps/unix/sysv/linux/powerpc/kernel-features.h: New file.
4078 * sysdeps/unix/sysv/linux/kernel-features.h [__powerpc__]
4079 (__ASSUME_SOCKETCALL): Do not define.
4080 (__ASSUME_IPC64): Define unconditionally.
4081 [__LINUX_KERNEL_VERSION >= 0x020625 && __powerpc__]
4082 (__ASSUME_ACCEPT4_SYSCALL): Do not define.
4083 [__LINUX_KERNEL_VERSION >= 0x020625 && __powerpc__]
4084 (__ASSUME_RECVMMSG_SYSCALL): Likewise.
4085 [__LINUX_KERNEL_VERSION >= 0x030000 && __powerpc__]
4086 (__ASSUME_SENDMMSG_SYSCALL): Likewise.
4087 [__powerpc__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL):
4088 Likewise.
4089
4090 * sysdeps/unix/sysv/linux/sparc/kernel-features.h: New file.
4091 * sysdeps/unix/sysv/linux/kernel-features.h [__sparc__]
4092 (__ASSUME_SOCKETCALL): Do not define.
4093 (__ASSUME_SET_ROBUST_LIST): Define unconditionally.
4094 (__ASSUME_FUTEX_LOCK_PI): Likewise.
4095 [__sparc__] (__ASSUME_ACCEPT4_SYSCALL): Do not define.
4096 [__sparc__] (__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL): Likewise.
4097 (__ASSUME_REQUEUE_PI): Define unconditionally.
4098 [__LINUX_KERNEL_VERSION >= 0x020621 && __sparc__]
4099 (__ASSUME_RECVMMSG_SYSCALL): Do not define.
4100 [__sparc__] (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
4101 [__LINUX_KERNEL_VERSION >= 0x030000 && __sparc__]
4102 (__ASSUME_SENDMMSG_SYSCALL): Likewise.
4103 [__sparc__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
4104
4105 * sysdeps/unix/sysv/linux/i386/kernel-features.h: New file.
4106 * sysdeps/unix/sysv/linux/kernel-features.h [__i386__]
4107 (__ASSUME_SOCKETCALL): Do not define.
4108 [__LINUX_KERNEL_VERSION >= 0x020621 && __i386__]
4109 (__ASSUME_RECVMMSG_SYSCALL): Likewise.
4110 [__i386__] (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
4111 [__LINUX_KERNEL_VERSION >= 0x030000 && __i386__]
4112 (__ASSUME_SENDMMSG_SYSCALL): Likewise.
4113 [__i386__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
4114
4115 * sysdeps/unix/sysv/linux/x86_64/kernel-features.h: New file.
4116 * sysdeps/unix/sysv/linux/kernel-features.h [__x86_64__]
4117 (__ASSUME_ACCEPT4_SYSCALL): Do not define.
4118 [__LINUX_KERNEL_VERSION >= 0x020621 && __x86_64__]
4119 (__ASSUME_RECVMMSG_SYSCALL): Likewise.
4120 [__LINUX_KERNEL_VERSION >= 0x030000 && __x86_64__]
4121 (__ASSUME_SENDMMSG_SYSCALL): Likewise.
4122 [__x86_64__ && __LINUX_KERNEL_VERSION >= 0x030100]
4123 (__ASSUME_GETCPU_SYSCALL): Likewise.
4124
4125 * aclocal.m4 (LIBC_SLIBDIR_RTLDDIR): New macro.
4126 * sysdeps/gnu/configure.ac: Use LIBC_SLIBDIR_RTLDDIR. Remove
4127 cases for individual architectures.
4128 * sysdeps/gnu/configure: Regenerated.
4129 * sysdeps/unix/sysv/linux/aarch64/configure.ac: Use
4130 LIBC_SLIBDIR_RTLDDIR.
4131 * sysdeps/unix/sysv/linux/aarch64/configure: Regenerated.
4132 * sysdeps/unix/sysv/linux/mips/configure.ac: Use
4133 LIBC_SLIBDIR_RTLDDIR.
4134 * sysdeps/unix/sysv/linux/mips/configure: Regenerated.
4135 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac: Use
4136 LIBC_SLIBDIR_RTLDDIR.
4137 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure:
4138 Regenerated.
4139 * sysdeps/unix/sysv/linux/s390/s390-64/configure.ac: New file.
4140 * sysdeps/unix/sysv/linux/s390/s390-64/configure: New generated
4141 file.
4142 * sysdeps/unix/sysv/linux/sparc/sparc64/configure.ac: New file.
4143 * sysdeps/unix/sysv/linux/sparc/sparc64/configure: New generated
4144 file.
4145 * sysdeps/unix/sysv/linux/x86_64/64/configure.ac: New file.
4146 * sysdeps/unix/sysv/linux/x86_64/64/configure: New generated file.
4147 * sysdeps/unix/sysv/linux/x86_64/x32/configure.ac: New file.
4148 * sysdeps/unix/sysv/linux/x86_64/x32/configure: Generate.
4149
4150 * sysdeps/aarch64/shlib-versions: Move to ...
4151 * sysdeps/unix/sysv/linux/aarch64/shlib-versions: ... here.
4152 * sysdeps/alpha/shlib-versions: Move to ...
4153 * sysdeps/unix/sysv/linux/alpha/shlib-versions: ... here.
4154 * sysdeps/arm/shlib-versions: Move to ...
4155 * sysdeps/unix/sysv/linux/arm/shlib-versions: ... here.
4156 * sysdeps/hppa/shlib-versions: Move all contents except for
4157 libgcc_s entry to ...
4158 * sysdeps/unix/sysv/linux/hppa/shlib-versions: ... here. Merge in
4159 entry from ...
4160 * sysdeps/hppa/nptl/shlib-versions: ... here. Remove file.
4161 * sysdeps/ia64/shlib-versions: Move to ...
4162 * sysdeps/unix/sysv/linux/ia64/shlib-versions: ... here. Merge in
4163 entry from ...
4164 * sysdeps/ia64/nptl/shlib-versions: ... here. Remove file.
4165 * sysdeps/m68k/coldfire/shlib-versions: Move to ...
4166 * sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions: ... here.
4167 * sysdeps/microblaze/shlib-versions: Move to ...
4168 * sysdeps/unix/sysv/linux/microblaze/shlib-versions: ... here.
4169 * sysdeps/mips/shlib-versions: Move to ...
4170 * sysdeps/unix/sysv/linux/mips/shlib-versions: ... here. Merge in
4171 entry from ...
4172 * sysdeps/mips/nptl/shlib-versions: ... here. Remove file.
4173 * sysdeps/tile/shlib-versions: Move to ...
4174 * sysdeps/unix/sysv/linux/tile/shlib-versions: ... here.
4175 * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Merge in entry
4176 from ...
4177 * sysdeps/x86_64/64/shlib-versions: ... here. Remove file.
4178 * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Merge in
4179 entry from ...
4180 * sysdeps/x86_64/x32/shlib-versions: ... here. Remove file.
4181
41822014-07-17 Will Newton <will.newton@linaro.org>
4183
4184 * sysdeps/arm/bits/atomic.h
4185 (__arch_compare_and_exchange_bool_8_int): Evaluate to zero.
4186 (__arch_compare_and_exchange_bool_16_int): Likewise.
4187 (__arch_compare_and_exchange_bool_64_int): Likewise.
4188
4189 * iconv/loop.c: Move definition of LOOPFCT and gconv_btowc
4190 into an #else block.
4191
41922014-07-16 Roland McGrath <roland@hack.frob.com>
4193
4194 * sysdeps/arm/preconfigure.ac: Apply EABI sanity check to arm*, not
4195 just Linux configurations. Test empirically that the compiler sets
4196 __ARM_EABI__, rather than using the tuple to decide.
4197 * sysdeps/arm/preconfigure: Regenerated.
4198 * sysdeps/unix/sysv/linux/arm/configure: File removed.
4199 * sysdeps/unix/sysv/linux/arm/configure.ac: File removed,
4200 contents appended ...
4201 * sysdeps/arm/configure.ac: ... here.
4202 * sysdeps/arm/configure: Regenerated.
4203
42042014-07-15 Roland McGrath <roland@hack.frob.com>
4205
4206 * nptl/pthread_kill.c: New file.
4207 * nptl/pthread_sigmask.c: New file.
4208 * nptl/pthread_sigqueue.c: New file.
4209
4210 * sysdeps/nptl/lowlevellock.h: New file.
4211 * sysdeps/unix/sysv/linux/lowlevellock-futex.h: New file.
4212 * sysdeps/nptl/lowlevellock-futex.h: New file.
4213
4214 * nptl/pthreadP.h (__current_sigrtmin, __current_sigrtmax):
4215 Remove dead declarations.
4216
42172014-07-14 H.J. Lu <hongjiu.lu@intel.com>
4218
4219 * config.h.in (HAVE_AVX2_SUPPORT): New #undef.
4220 * sysdeps/i386/configure.ac: Set HAVE_AVX2_SUPPORT and
4221 config-cflags-avx2.
4222 * sysdeps/x86_64/configure.ac: Likewise.
4223 * sysdeps/i386/configure: Regenerated.
4224 * sysdeps/x86_64/configure: Likewise.
4225 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
4226 memset-avx2 only if config-cflags-avx2 is yes.
4227 * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
4228 Tests for memset_chk and memset only if HAVE_AVX2_SUPPORT is
4229 defined.
4230 * sysdeps/x86_64/multiarch/memset.S: Define multiple versions
4231 only if HAVE_AVX2_SUPPORT is defined.
4232 * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
4233
42342014-07-14 Alan Modra <amodra@gmail.com>
4235
4236 [BZ #17153]
4237 * elf/elf.h (DT_PPC64_NUM): Correct value.
4238 * NEWS: Add to fixed bug list.
4239
42402014-07-13 Jim Meyering <meyering@fb.com>
4241
4242 [BZ 17150]
4243 regex: don't deref NULL upon heap allocation failure
4244 * posix/regcomp.c: (parse_dup_op): Handle duplicate_tree
4245 failure in one more place.
4246 To trigger the segfault, configure grep -with-included-regex,
4247 build it, and run these commands:
4248 ( ulimit -v 300000; echo a|src/grep -E a+++++++++++++++++++++ )
4249
42502014-07-13 Andreas Schwab <schwab@linux-m68k.org>
4251
4252 * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
4253
42542014-07-11 Richard Henderson <rth@redhat.com>
4255
4256 * sysdeps/aarch64/libm-test-ulps: Update.
4257
42582014-07-10 Florian Weimer <fweimer@redhat.com>
4259
4260 [BZ #17135]
4261 * nptl/pthreadP.h (__nptl_setxid_error): Declare function.
4262 * nptl/allocatestack.c (__nptl_setxid_error): New function.
4263 (__nptl_setxid): Initialize error member. Call
4264 __nptl_setxid_error.
4265 * nptl/nptl-init.c (sighandler_setxid): Call __nptl_setxid_error.
4266 * nptl/descr.h (struct xid_command): Add error member.
4267 * nptl/tst-setuid3.c: New file.
4268 * nptl/Makefile (tests): Add it.
4269
42702014-07-10 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
4271
4272 * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h (__lll_base_trylock):
4273 New define.
4274 (__lll_trylock): Use __lll_base_trylock.
4275 (__lll_cond_trylock): Likewise.
4276
42772014-07-10 Roland McGrath <roland@hack.frob.com>
4278
4279 * nptl/pthread_create.c (start_thread): Use atomic_or and
4280 lll_futex_wake directly rather than lll_robust_dead.
4281 * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h
4282 (lll_robust_dead): Macro removed.
4283 * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: Likewise.
4284 * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Likewise.
4285 * sysdeps/unix/sysv/linux/arm/lowlevellock.h: Likewise.
4286 * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
4287 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
4288 * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Likewise.
4289 * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Likewise.
4290 * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
4291 * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Likewise.
4292 * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
4293 * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
4294 * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
4295 * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
4296 * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
4297 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
4298
4299 * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
4300 Use atomic_compare_and_exchange_val_acq directly rather than
4301 lll_robust_trylock.
4302 * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h
4303 (__lll_robust_trylock, lll_robust_trylock): Removed.
4304 * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Likewise.
4305 * sysdeps/unix/sysv/linux/arm/lowlevellock.h: Likewise.
4306 * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
4307 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
4308 * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Likewise.
4309 * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Likewise.
4310 * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
4311 * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Likewise.
4312 * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
4313 * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
4314 * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
4315 * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
4316 * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
4317 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
4318
43192014-07-02 Florian Weimer <fweimer@redhat.com>
4320
4321 * manual/locale.texi (Locale Names): New section documenting
4322 locale name syntax. Adjust menu and node chaining accordingly.
4323 (Choosing Locale): Reference Locale Names, Locale Categories.
4324 Mention setting LC_ALL=C. Reflect that name syntax is now
4325 documented.
4326 (Locale Categories): New section title. Reference Locale Names.
4327 LC_ALL is an environment variable, but not a category.
4328 (Setting the Locale): Remove "locale -a" invocation and LOCPATH
4329 description, now in Locale Name. Reference that section. Locale
4330 name syntax is now documented.
4331
43322014-07-02 Florian Weimer <fweimer@redhat.com>
4333
4334 [BZ #17137]
4335 * locale/findlocale.c (name_present, valid_locale_name): New
4336 functions.
4337 (_nl_find_locale): Use the loc_name variable to store name
4338 candidates. Call name_present and valid_locale_name to check and
4339 validate locale names. Return an error if the locale is invalid.
4340
43412014-07-02 Florian Weimer <fweimer@redhat.com>
4342
4343 * locale/setlocale.c (setlocale): Use strdup for allocating
4344 composite name copy.
4345
43462014-07-10 Siddhesh Poyarekar <siddhesh@redhat.com>
4347
4348 Sync up with gnulib.
4349 * misc/error.c: Use !_LIBC instead of HAVE_CONFIG_H.
4350 [!_LIBC && ENABLE_NLS]: Include gettext.h.
4351 [_LIBC]: Define USE_UNLOCKED_IO, _GL_ATTRIBUTE_FORMAT_PRINTF
4352 and _GL_ARG_NONNULL.
4353 [USE_UNLOCKED_IO]: Include unlocked-io.h.
4354 [!_LIBC]: Include code for Windows and Cygwin.
4355 [!_LIBC && !HAVE_DECL_STRERROR_R && !STRERROR_R_CHAR_P]:
4356 Include prototype for int strerror_r.
4357 [!_LIBC] (is_open): New function.
4358 (flush_stdout): New function.
4359 (print_errno_message): Use it.
4360 (error): Likewise.
4361 (error_at_line): Likewise.
4362 (error_tail) Add function attribute macros. Use
4363 __builtin_expect.
4364
4365 * time/strptime_l.c [_LIBC]: Define HAVE_LOCALTIME_R.
4366
4367 * time/strftime_l.c [_LIBC]: Define HAVE_STRFTIME.
4368
4369 * io/ftw.c: Include sys/param.h unconditionally.
4370
4371 * locale/programs/simple-hash.c [!HAVE_OBSTACK]: Remove code.
4372
4373 [BZ #17125]
4374 * sysdeps/unix/sysv/linux/check_pf.c (cache): Don't use
4375 libc_freeres_ptr.
4376 (freecache): New function to free CACHE on exit.
4377
4378 * sunrpc/xdr.c (xdr_string): Add comment about SIZE
4379 initialization.
4380
43812014-07-09 David S. Miller <davem@davemloft.net>
4382
4383 * sysdeps/sparc/fpu/libm-test-ulps: Update.
4384
4385 * sysdeps/sparc/nptl/internaltypes.h: Delete.
4386 * sysdeps/sparc/nptl/sparc-nptl.h: New file.
4387 * sysdeps/sparc/nptl/pthread_barrier_destroy.c: Include it.
4388 * sysdeps/sparc/nptl/pthread_barrier_init.c: Likewise.
4389 * sysdeps/sparc/nptl/pthread_barrier_wait.c: Likewise.
4390 * sysdeps/sparc/nptl/sem_init.c: Likewise.
4391 * sysdeps/sparc/nptl/sem_post.c: Likewise.
4392 * sysdeps/sparc/nptl/sem_timedwait.c: Likewise.
4393 * sysdeps/sparc/nptl/sem_wait.c: Likewise.
4394 * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: Likewise.
4395 * sysdeps/sparc/sparc32/nptl/sem_post.c: Likewise.
4396 * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: Likewise.
4397 * sysdeps/sparc/sparc32/nptl/sem_wait.c: Likewise.
4398
43992014-07-09 Andreas Schwab <schwab@suse.de>
4400
4401 * sysdeps/powerpc/test-gettimebase.c (do_test): Add newline to
4402 output.
4403 * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c
4404 (do_test): Likewise.
4405
4406 * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
4407
44082014-07-09 Will Newton <will.newton@linaro.org>
4409
4410 * sysdeps/aarch64/tlsdesc.c (_dl_unmap): Test SHARED with #ifdef.
4411 * sysdeps/arm/tlsdesc.c (_dl_unmap): Likewise.
4412 * sysdeps/i386/tlsdesc.c (_dl_unmap): Likewise.
4413 * sysdeps/x86_64/tlsdesc.c (_dl_unmap): Likewise.
4414 * sysdeps/hppa/start.S (_start): Likewise.
4415
44162014-07-09 Siddhesh Poyarekar <siddhesh@redhat.com>
4417
4418 * sunrpc/xdr.c (xdr_string): Initialize SIZE to 0.
4419
4420 * sysdeps/generic/unwind-pe.h: Only check if __cplusplus is
4421 defined.
4422
44232014-07-08 Siddhesh Poyarekar <siddhesh@redhat.com>
4424
4425 * resolv/res_query.c (__libc_res_nsearch): Dereference resplen2
4426 after checking that it is non-NULL.
4427
4428 * sysdeps/i386/dl-machine.h: Define ELF_MACHINE_NO_REL.
4429
44302014-07-08 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
4431
4432 * sysdeps/powerpc/memmove.c: Remove file.
4433 * sysdeps/powerpc/powerpc32/power4/memcopy.h
4434 [MEMCPY_OK_FOR_FWD_MEMMOVE]: Define it to 1.
4435 * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c
4436 [MEMCPY_OK_FOR_FWD_MEMMOVE]: Remove define.
4437 * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c:
4438 [MEMCPY_OK_FOR_FWD_MEMMOVE]: Likewise.
4439 * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Include default
4440 string memmove instead of removed powerpc one.
4441
4442 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S:
4443 [weak_alias]: Fix compiler warning due trailing data.
4444 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S:
4445 [weak_alias]: Likewise.
4446 * sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c: Fix compile
4447 warnigs due missing definition of __strcpy_power7 and __strlen_power7.
4448
4449 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
4450 (__libc_ifunc_impl_list): Add memmove functions.
4451
44522014-07-08 Siddhesh Poyarekar <siddhesh@redhat.com>
4453
4454 * localedata/tests-mbwc/dat_iswalnum.c [SHOJI_IS_RIGHT]:
4455 Remove code.
4456 * localedata/tests-mbwc/dat_iswalpha.c [SHOJI_IS_RIGHT]:
4457 Likewise
4458 * localedata/tests-mbwc/dat_iswctype.c [SHOJI_IS_RIGHT]:
4459 Likewise
4460 * localedata/tests-mbwc/dat_iswgraph.c [SHOJI_IS_RIGHT]:
4461 Likewise
4462 * localedata/tests-mbwc/dat_iswprint.c [SHOJI_IS_RIGHT]:
4463 Likewise
4464 * localedata/tests-mbwc/dat_iswpunct.c [SHOJI_IS_RIGHT]:
4465 Likewise
4466 * localedata/tests-mbwc/dat_mbrlen.c [SHOJI_IS_RIGHT]:
4467 Likewise
4468 * localedata/tests-mbwc/dat_mbstowcs.c [SHOJI_IS_RIGHT]:
4469 Likewise
4470 * localedata/tests-mbwc/dat_mbtowc.c [SHOJI_IS_RIGHT]:
4471 Likewise
4472 * localedata/tests-mbwc/dat_strcoll.c [SHOJI_IS_RIGHT]:
4473 Likewise
4474 * localedata/tests-mbwc/dat_swscanf.c [SHOJI_IS_RIGHT]:
4475 Likewise
4476 * localedata/tests-mbwc/dat_towctrans.c [SHOJI_IS_RIGHT]:
4477 Likewise
4478 * localedata/tests-mbwc/dat_wcscoll.c [SHOJI_IS_RIGHT]:
4479 Likewise
4480 * localedata/tests-mbwc/dat_wcswidth.c [SHOJI_IS_RIGHT]:
4481 Likewise
4482 * localedata/tests-mbwc/dat_wctob.c [SHOJI_IS_RIGHT]:
4483 Likewise
4484 * localedata/tests-mbwc/dat_wcwidth.c [SHOJI_IS_RIGHT]:
4485 Likewise
4486 * localedata/tests-mbwc/tst_towctrans.c [SHOJI_IS_RIGHT]:
4487 Likewise
4488
44892014-07-07 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
4490
4491 * sysdeps/powerpc/powerpc64/power7/memcpy.S: Align VSX copies to 16B
4492 to avoid alignment traps in non-cacheable memory.
4493 * sysdeps/powerpc/powerpc32/power7/memcpy.S: Likewise.
4494
4495 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memmove
4496 multiarch objects.
4497 * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c: New
4498 file: multiarch power7 memmove.
4499 * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c: New file:
4500 multiarch default memmove.
4501 * sysdeps/powerpc/powerpc32/power4/multiarch/memmove.c: New file:
4502 multiarch memove for powerpc32/power4.
4503
4504 * string/bcopy.c: Use full path to include memmove.c.
4505 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memmove and bcopy
4506 multiarch objects.
4507 * sysdeps/powerpc/powerpc64/multiarch/bcopy-ppc64.c: New file: default
4508 bcopy for powerpc64.
4509 * sysdeps/powerpc/powerpc64/multiarch/bcopy.c: New file: multiarch
4510 bcopy for powerpc64.
4511 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Add bcopy
4512 and memmove implementations.
4513 * sysdeps/powerpc/powerpc64/multiarch/memmove-power7.S: New file:
4514 optimized multiarch memmove for POWER7/powerpc64.
4515 * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: New file:
4516 default multiarch memmove for powerpc64.
4517 * sysdeps/powerpc/powerpc64/multiarch/memmove.c: New file: memmove
4518 multiarch for powerpc64.
4519 * sysdeps/powerpc/powerpc64/power7/bcopy.c: New file: optimized bcopy
4520 for POWER7/powerpc64.
4521 * sysdeps/powerpc/powerpc64/power7/memmove.S: New file: optimized
4522 memmove for POWER7/powerpc64.
4523
4524 * sysdeps/powerpc/memmove.c (memmove): Cleanup impplementation to use
4525 glibc default one.
4526
4527 * sysdeps/powerpc/bits/link.h [_CALL_ELF]: Guard check for
4528 __ELF_NATIVE_CLASS equal to 64.
4529
45302014-07-07 Roland McGrath <roland@hack.frob.com>
4531
4532 * sysdeps/nptl/lowlevellock.h: File removed.
4533
4534 * NEWS: NPTL is no longer an add-on!
4535 * nptl/internaltypes.h: Moved ...
4536 * sysdeps/nptl/internaltypes.h: ... here.
4537 * sysdeps/nptl/aio_misc.h: Use <nptl/pthreadP.h> in #include.
4538 * sysdeps/nptl/fork.c: Likewise.
4539 * sysdeps/nptl/gai_misc.h: Likewise.
4540 * sysdeps/nptl/librt-cancellation.c: Likewise.
4541 * sysdeps/nptl/jmp-unwind.c: Likewise.
4542 * sysdeps/nptl/setxid.h: Likewise.
4543 * sysdeps/unix/sysv/linux/aarch64/Implies: New file.
4544 * sysdeps/unix/sysv/linux/alpha/Implies: Add alpha/nptl.
4545 * sysdeps/unix/sysv/linux/arm/Implies: New file.
4546 * sysdeps/unix/sysv/linux/hppa/Implies: New file.
4547 * sysdeps/unix/sysv/linux/i386/Implies: Add i386/nptl.
4548 * sysdeps/unix/sysv/linux/i386/i686/Implies: New file.
4549 * sysdeps/unix/sysv/linux/ia64/Implies: Add ia64/nptl.
4550 * sysdeps/unix/sysv/linux/m68k/Implies: New file.
4551 * sysdeps/unix/sysv/linux/microblaze/Implies: New file.
4552 * sysdeps/unix/sysv/linux/mips/Implies: New file.
4553 * sysdeps/unix/sysv/linux/powerpc/Implies: New file.
4554 * sysdeps/unix/sysv/linux/s390/Implies: Add s390/nptl.
4555 * sysdeps/unix/sysv/linux/sh/Implies: New file.
4556 * sysdeps/unix/sysv/linux/sparc/Implies: New file.
4557 * sysdeps/unix/sysv/linux/tile/Implies: New file.
4558 * sysdeps/unix/sysv/linux/x86_64/Implies: Add x86_64/nptl.
4559 * sysdeps/unix/sysv/linux/x86_64/x32/Implies: New file.
4560 * nptl/Makeconfig: Moved ...
4561 * sysdeps/nptl/Makeconfig: ... here.
4562 * nptl/configure: File removed.
4563 * nptl/ANNOUNCE: File removed.
4564 * sysdeps/unix/sysv/linux/configure.ac: Remove nptl sanity check.
4565 * sysdeps/unix/sysv/linux/configure: Regenerated.
4566
4567 * nptl/Makefile (routines): Add libc_pthread_init,
4568 libc_multiple_threads, register-atfork and unregister-atfork.
4569 (libpthread-routines): Add pthread_mutex_cond_lock and pt-fork here.
4570 (gen-as-const-headers): Add lowlevelcond.sym, lowlevelrwlock.sym,
4571 lowlevelbarrier.sym, unwindbuf.sym, lowlevelrobustlock.sym,
4572 pthread-pi-defines.sym, structsem.sym.
4573 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = posix]
4574 (CFLAGS-fork.c, CFLAGS-getpid.o, CFLAGS-getpid.os): New variables.
4575 [$(subdir) = nptl] (tests): Add tst-setgetname.
4576 * nptl/sysdeps/unix/sysv/linux/Makefile: File removed.
4577 * sysdeps/unix/sysv/linux/sigaction.c: Just include
4578 <nptl/sigaction.c> directly here, instead of WRAPPER_INCLUDE.
4579 [!LIBC_SIGACTION]: Remove aliases.
4580 * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Likewise.
4581 * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
4582 * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
4583 * sysdeps/unix/sysv/linux/ia64/sigaction.c: Likewise.
4584 * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
4585 * sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c: Likewise.
4586 * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
4587 * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
4588 * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
4589 * nptl/Versions (libc: GLIBC_2.3.2): Add __register_atfork.
4590 (libc: GLIBC_PRIVATE): Add __libc_pthread_init,
4591 __libc_current_sigrtmin_private, __libc_current_sigrtmax_private,
4592 __libc_allocate_rtsig_private.
4593 * nptl/sysdeps/unix/sysv/linux/Versions: File removed.
4594 * sysdeps/unix/sysv/linux/sigtimedwait.c: Include <nptl/pthreadP.h>.
4595 * sysdeps/unix/sysv/linux/sigwait.c: Likewise.
4596 * sysdeps/unix/sysv/linux/sigwaitinfo.c: Likewise.
4597 * sysdeps/unix/sysv/linux/sleep.c: Likewise.
4598 * nptl/sysdeps/unix/sysv/linux/sigwait.c: File removed.
4599 * nptl/sysdeps/unix/sysv/linux/sigtimedwait.c: File removed.
4600 * nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c: File removed.
4601 * nptl/sysdeps/unix/sysv/linux/sleep.c: File removed.
4602 * nptl/sysdeps/unix/sysv/linux/createthread.c: File removed.
4603 * sysdeps/unix/sysv/linux/ia64/fork.S: File removed.
4604 * nptl/sysdeps/unix/sysv/linux/internaltypes.h: Moved ...
4605 * nptl/internaltypes.h: ... here.
4606 * nptl/sysdeps/unix/sysv/linux/jmp-unwind.c: Moved ...
4607 * sysdeps/nptl/jmp-unwind.c: ... here.
4608 * nptl/sysdeps/unix/sysv/linux/libc-lowlevellock.c: Moved ...
4609 * nptl/libc-lowlevellock.c: ... here.
4610 * nptl/sysdeps/unix/sysv/linux/libc_multiple_threads.c: Moved ...
4611 * nptl/libc_multiple_threads.c: ... here.
4612 * nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c: Moved ...
4613 * nptl/libc_pthread_init.c: ... here.
4614 * nptl/sysdeps/unix/sysv/linux/lowlevelbarrier.sym: Moved ...
4615 * nptl/lowlevelbarrier.sym: ... here.
4616 * nptl/sysdeps/unix/sysv/linux/lowlevelcond.sym: Moved ...
4617 * nptl/lowlevelcond.sym: ... here.
4618 * nptl/sysdeps/unix/sysv/linux/lowlevellock.c: Moved ...
4619 * nptl/lowlevellock.c: ... here.
4620 * nptl/lowlevellock.h: Moved ...
4621 * sysdeps/nptl/lowlevellock.h: ... here.
4622 * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c: Moved ...
4623 * nptl/lowlevelrobustlock.c: ... here.
4624 * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.sym: Moved ...
4625 * nptl/lowlevelrobustlock.sym: ... here.
4626 * nptl/sysdeps/unix/sysv/linux/lowlevelrwlock.sym: Moved ...
4627 * nptl/lowlevelrwlock.sym: ... here.
4628 * nptl/sysdeps/unix/sysv/linux/pt-fork.c: Moved ...
4629 * nptl/pt-fork.c: ... here.
4630 * nptl/sysdeps/unix/sysv/linux/pthread-pi-defines.sym: Moved ...
4631 * nptl/pthread-pi-defines.sym: ... here.
4632 * nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Moved ...
4633 * nptl/pthread_attr_getaffinity.c: ... here.
4634 * nptl/sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c: Moved ...
4635 * nptl/pthread_attr_setaffinity.c: ... here.
4636 * nptl/sysdeps/unix/sysv/linux/pthread_mutex_cond_lock.c: Moved ...
4637 * nptl/pthread_mutex_cond_lock.c: ... here.
4638 * sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c:
4639 Update #include.
4640 * sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: Likewise.
4641 * nptl/sysdeps/unix/sysv/linux/pthread_once.c: Moved ...
4642 * nptl/pthread_once.c: ... here, replacing old file.
4643 * nptl/sysdeps/unix/sysv/linux/pthread_yield.c: Moved ...
4644 * nptl/pthread_yield.c: ... here.
4645 * nptl/sysdeps/unix/sysv/linux/register-atfork.c: Moved ...
4646 * nptl/register-atfork.c: ... here.
4647 * nptl/sysdeps/unix/sysv/linux/sem_post.c: Moved ...
4648 * nptl/sem_post.c: ... here.
4649 * sysdeps/unix/sysv/linux/alpha/sem_post.c: Update #include.
4650 * nptl/sysdeps/unix/sysv/linux/sem_timedwait.c: Moved ...
4651 * nptl/sem_timedwait.c: ... here.
4652 * nptl/sysdeps/unix/sysv/linux/sem_trywait.c: Moved ...
4653 * nptl/sem_trywait.c: ... here.
4654 * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: Update #include.
4655 * nptl/sysdeps/unix/sysv/linux/sem_wait.c: Moved ...
4656 * nptl/sem_wait.c: ... here.
4657 * nptl/sysdeps/unix/sysv/linux/structsem.sym: Moved ...
4658 * nptl/structsem.sym: ... here.
4659 * nptl/sysdeps/unix/sysv/linux/mq_notify.c: Moved ...
4660 * sysdeps/unix/sysv/linux/mq_notify.c: ... here, replacing old file.
4661 * nptl/sysdeps/unix/sysv/linux/unregister-atfork.c: Moved ...
4662 * nptl/unregister-atfork.c: ... here.
4663 * nptl/sysdeps/unix/sysv/linux/unwindbuf.sym: Moved ...
4664 * nptl/unwindbuf.sym: ... here.
4665 * nptl/sysdeps/unix/sysv/linux/fork.c: Moved ...
4666 * sysdeps/nptl/fork.c: ... here.
4667 * nptl/sysdeps/unix/sysv/linux/fork.h: Moved ...
4668 * sysdeps/nptl/fork.h: ... here.
4669 * sysdeps/unix/sysv/linux/syscalls.list: Remove fork.
4670 * nptl/sysdeps/unix/sysv/linux/aio_misc.h: Moved ...
4671 * sysdeps/unix/sysv/linux/aio_misc.h: ... here.
4672 * nptl/sysdeps/unix/sysv/linux/allocrtsig.c: Moved ...
4673 * sysdeps/unix/sysv/linux/allocrtsig.c: ... here.
4674 * nptl/sysdeps/unix/sysv/linux/getpid.c: Moved ...
4675 * sysdeps/unix/sysv/linux/getpid.c: ... here.
4676 * nptl/sysdeps/unix/sysv/linux/kernel-posix-timers.h: Moved ...
4677 * sysdeps/unix/sysv/linux/kernel-posix-timers.h: ... here.
4678 * nptl/sysdeps/unix/sysv/linux/pt-raise.c: Moved ...
4679 * sysdeps/unix/sysv/linux/pt-raise.c: ... here.
4680 * nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c: Moved ...
4681 * sysdeps/unix/sysv/linux/pthread_getaffinity.c: ... here.
4682 * nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: Moved ...
4683 * sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: ... here.
4684 * nptl/sysdeps/unix/sysv/linux/pthread_getname.c: Moved ...
4685 * sysdeps/unix/sysv/linux/pthread_getname.c: ... here.
4686 * nptl/sysdeps/unix/sysv/linux/pthread_kill.c: Moved ...
4687 * sysdeps/unix/sysv/linux/pthread_kill.c: ... here.
4688 * nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c: Moved ...
4689 * sysdeps/unix/sysv/linux/pthread_setaffinity.c: ... here.
4690 * nptl/sysdeps/unix/sysv/linux/pthread_setname.c: Moved ...
4691 * sysdeps/unix/sysv/linux/pthread_setname.c: ... here.
4692 * nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c: Moved ...
4693 * sysdeps/unix/sysv/linux/pthread_sigqueue.c: ... here.
4694 * nptl/sysdeps/unix/sysv/linux/raise.c: Moved ...
4695 * sysdeps/unix/sysv/linux/raise.c: ... here.
4696 * nptl/sysdeps/unix/sysv/linux/timer_create.c: Moved ...
4697 * sysdeps/unix/sysv/linux/timer_create.c: ... here.
4698 * nptl/sysdeps/unix/sysv/linux/timer_delete.c: Moved ...
4699 * sysdeps/unix/sysv/linux/timer_delete.c: ... here.
4700 * nptl/sysdeps/unix/sysv/linux/timer_getoverr.c: Moved ...
4701 * sysdeps/unix/sysv/linux/timer_getoverr.c: ... here.
4702 * nptl/sysdeps/unix/sysv/linux/timer_gettime.c: Moved ...
4703 * sysdeps/unix/sysv/linux/timer_gettime.c: ... here.
4704 * nptl/sysdeps/unix/sysv/linux/timer_routines.c: Moved ...
4705 * sysdeps/unix/sysv/linux/timer_routines.c: ... here.
4706 * nptl/sysdeps/unix/sysv/linux/timer_settime.c: Moved ...
4707 * sysdeps/unix/sysv/linux/timer_settime.c: ... here.
4708 * nptl/sysdeps/unix/sysv/linux/tst-setgetname.c: Moved ...
4709 * sysdeps/unix/sysv/linux/tst-setgetname.c: ... here.
4710 * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Update #include.
4711
47122014-07-04 Siddhesh Poyarekar <siddhesh@redhat.com>
4713
4714 * sysdeps/generic/memcopy.h: Add comment for
4715 MEMCPY_OK_FOR_FWD_MEMMOVE.
4716
47172014-07-04 Will Newton <will.newton@linaro.org>
4718
4719 * string/memchr.c: Merge from gnulib.
4720 [_LIBC]: Remove conditionals.
4721 (__ptr_t): Remove define.
4722 (LONG_MAX_32_BITS): Likewise.
4723 (LONG_MAX): Likewise.
4724 (MEMCHR): Use ANSI prototype and optimize algorithm.
4725
4726 * sysdeps/arm/dl-machine.h (ELF_MACHINE_NO_REL): Define.
4727
47282014-07-03 Roland McGrath <roland@hack.frob.com>
4729
4730 * sysdeps/unix/sysv/linux/ia64/lowlevellock.h
4731 (lll_futex_timed_wait_bitset): Fix syscall argument count.
4732
4733 * sysdeps/nptl/configure.ac (libc_cv_forced_unwind):
4734 Use -Dinhibit_libc=1 for unwind.h check to prevent false failure
4735 in a bare environment with no <stdlib.h> installed.
4736 * sysdeps/nptl/configure: Regenerated.
4737
4738 * sysdeps/alpha/fpu/s_nearbyint.c: Include <math_ldbl_opt.h>.
4739
4740 * sysdeps/unix/sysv/linux/configure.ac: Use AC_TRY_COMPILE rather than
4741 AC_EGREP_CPP for kernel header checks, so they only succeed if
4742 including <linux/version.h> actually works right.
4743 * sysdeps/unix/sysv/linux/configure: Regenerated.
4744
4745 * sysdeps/s390/nptl/tls.h (THREAD_SET_POINTER_GUARD): Refer to the
4746 value so it's not diagnosed as unused.
4747
4748 * sysdeps/pthread/Makefile: Conditionalize tst-timer bits (the only
4749 thing) with "ifeq ($(subdir),rt)".
4750
47512014-07-03 Richard Henderson <rth@redhat.com>
4752
4753 * sysdeps/alpha/fpu/s_nearbyintf.c: Remove file.
4754 * sysdeps/alpha/fpu/s_nearbyint.c (__nearbyint): Remove;
4755 include sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c.
4756
4757 * sysdeps/alpha/fpu/math_private.h (math_opt_barrier): New.
4758 (math_force_eval): New.
4759
4760 * sysdeps/alpha/fpu/s_lround.c: Add 0.5 with chopped rounding.
4761 * sysdeps/alpha/fpu/s_lroundf.c: Likewise.
4762
4763 * sysdeps/alpha/fpu/s_round.c: Remove file.
4764 * sysdeps/alpha/fpu/s_roundf.c: Remove file.
4765
4766 * elf/dl-support.c (HP_TIMING_AVAIL): Do not redefine.
4767 (_dl_non_dynamic_init): Check HP_SMALL_TIMING_AVAIL instead.
4768 * elf/rtld.c (HP_TIMING_AVAIL): Do not redefine.
4769 (_dl_start_final): Check HP_SMALL_TIMING_AVAIL instead.
4770 (_dl_start, print_statistics): Likewise.
4771 * sysdeps/generic/ldsodefs.h (struct rtld_global): Only check
4772 HP_SMALL_TIMING_AVAIL in defining _dl_cpuclock_offset.
4773
4774 * sysdeps/aarch64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
4775 * sysdeps/generic/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
4776 * sysdeps/i386/i686/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
4777 * sysdeps/ia64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
4778 * sysdeps/powerpc/powerpc32/power4/hp-timing.h
4779 (HP_SMALL_TIMING_AVAIL): Define.
4780 * sysdeps/powerpc/powerpc64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
4781 * sysdeps/sparc/sparc32/sparcv9/hp-timing.h
4782 (HP_SMALL_TIMING_AVAIL): Define.
4783 * sysdeps/sparc/sparc64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
4784 * sysdeps/x86_64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
4785
4786 * sysdeps/aarch64/hp-timing.h: New file.
4787
4788 * sysdeps/generic/hp-timing.h: Remove dead comment.
4789 * sysdeps/generic/hp-timing-common.h: New file.
4790 * sysdeps/alpha/hp-timing.h: Include it.
4791 (HP_TIMING_DIFF, HP_TIMING_ACCUM_NT, HP_TIMING_PRINT): Remove.
4792 * sysdeps/i386/i686/hp-timing.h: Likewise.
4793 * sysdeps/ia64/hp-timing.h: Likewise.
4794 * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
4795 * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
4796 * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
4797 * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
4798 * sysdeps/x86_64/hp-timing.h: Don't include the i686 version.
4799 (HP_TIMING_AVAIL, HP_TIMING_INLINE): Define.
4800 (hp_timing_t): New.
4801
4802 * benchtests/bench-string.h (_dl_hp_timing_overhead): Remove.
4803 * benchtests/bench-timing.h (_dl_hp_timing_overhead): Remove.
4804 (TIMING_INIT): Remove call to HP_TIMING_DIFF_INIT.
4805 * elf/rtld.c (_dl_start_final): Likewise.
4806 * sysdeps/generic/ldsodefs.h (_dl_hp_timing_overhead): Remove.
4807 * sysdeps/alpha/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
4808 * sysdeps/generic/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
4809 * sysdeps/i386/i686/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
4810 * sysdeps/ia64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
4811 * sysdeps/powerpc/powerpc32/power4/hp-timing.h
4812 (HP_TIMING_DIFF_INIT): Remove.
4813 * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
4814 * sysdeps/sparc/sparc32/sparcv9/hp-timing.h
4815 (HP_TIMING_DIFF_INIT): Remove.
4816 * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
4817 * sysdeps/i386/i686/hp-timing.c: Remove file.
4818 * sysdeps/x86_64/hp-timing.c: Remove file.
4819 * sysdeps/ia64/hp-timing.c: Remove file.
4820 * sysdeps/powerpc/powerpc32/power4/hp-timing.c: Remove file.
4821 * sysdeps/powerpc/powerpc64/hp-timing.c: Remove file.
4822 * sysdeps/sparc/sparc32/sparcv9/hp-timing.c: Remove file.
4823 * sysdeps/sparc/sparc64/hp-timing.c: Remove file.
4824
4825 * sysdeps/alpha/hp-timing.h (HP_TIMING_ACCUM): Remove.
4826 * sysdeps/generic/hp-timing.h (HP_TIMING_ACCUM): Remove.
4827 * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ACCUM): Remove.
4828 * sysdeps/ia64/hp-timing.h (HP_TIMING_ACCUM): Remove.
4829 * sysdeps/powerpc/powerpc32/power4/hp-timing.h
4830 (HP_TIMING_ACCUM): Remove.
4831 * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_ACCUM): Remove.
4832 * sysdeps/sparc/sparc32/sparcv9/hp-timing.h (HP_TIMING_ACCUM): Remove.
4833 * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_ACCUM): Remove.
4834
4835 * sysdeps/alpha/hp-timing.h (HP_TIMING_ZERO): Remove.
4836 * sysdeps/generic/hp-timing.h (HP_TIMING_ZERO): Remove.
4837 * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ZERO): Remove.
4838 * sysdeps/ia64/hp-timing.h (HP_TIMING_ZERO): Remove.
4839 * sysdeps/powerpc/powerpc32/power4/hp-timing.h (HP_TIMING_ZERO): Remove.
4840 * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_ZERO): Remove.
4841 * sysdeps/sparc/sparc32/sparcv9/hp-timing.h (HP_TIMING_ZERO): Remove.
4842 * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_ZERO): Remove.
4843
4844 * sysdeps/powerpc/powerpc32/hp-timing.h: Remove file.
4845
48462014-07-03 Maciej W. Rozycki <macro@codesourcery.com>
4847
4848 * stdlib/tst-strtod-overflow.c (TIMEOUT): Bump up to 30.
4849
48502014-07-02 Siddhesh Poyarekar <siddhesh@redhat.com>
4851
4852 Sync up with gettext.
4853 * intl/loadmsgcat.c: Define O_BINARY if not defined.
4854 [_MSC_VER]: Include malloc.h
4855 [_LIBC]: Define PRI_MACROS_BROKEN if it is not defined.
4856 (get_sysdep_segment_value) [!__UCLIBC__]: Return "I" flag.
4857 (_nl_load_domain): Open DOMAIN_FILE in binary mode. Don't use
4858 TEMP_FAILURE_RETRY. Cast return of alloca.
4859 [!_LIBC] Call gl_rwlock_init.
4860 [IN_LIBGLOCALE]: Call _nl_find_msg with one less argument.
4861
48622014-07-02 Roland McGrath <roland@hack.frob.com>
4863
4864 * misc/sys/cdefs.h: Check if __STDC_VERSION__ is defined
4865 before checking its value.
4866
48672014-07-02 Siddhesh Poyarekar <siddhesh@redhat.com>
4868
4869 * intl/loadmsgcat.c (_nl_load_domain): Use __builtin_expect.
4870
4871 * debug/memcpy_chk.c: Don't include pagecopy.h.
4872 * debug/mempcpy_chk.c: Likewise.
4873 * string/memcpy.c: Likewise.
4874 * string/memmove.c: Likewise.
4875 * sysdeps/powerpc/memmove.c: Likewise.
4876 * sysdeps/generic/memcopy.h: Include pagecopy.h. Move
4877 definition of PAGE_COPY_FWD_MAYBE here...
4878 * sysdeps/generic/pagecopy.h: ... from here.
4879 * sysdeps/mach/pagecopy.h: Don't include generic pagecopy.h.
4880
48812014-07-02 Vidya Ranganathan <vidya@linux.vnet.ibm.com>
4882 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
4883
4884 * sysdeps/powerpc/strcat.c: Using macro to redefine symbol name.
4885 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcat multiarch
4886 optimizations.
4887 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
4888 (__libc_ifunc_impl_list): Likewise.
4889 * sysdeps/powerpc/powerpc64/multiarch/strcat.c: New file:
4890 multiarch strcat for PPC64.
4891 * sysdeps/powerpc/powerpc64/multiarch/strcat-ppc64.c: New file/
4892 * sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c: New file.
4893
48942014-07-02 Roland McGrath <roland@hack.frob.com>
4895
4896 * sysdeps/unix/sysv/linux/dl-sysdep.c: Include <sys/param.h>.
4897
48982014-07-02 Siddhesh Poyarekar <siddhesh@redhat.com>
4899
4900 * intl/loadmsgcat.c: Remove declaration of
4901 get_sysdep_segment_value.
4902 (get_sysdep_segment_value): Use ISO C style.
4903 (_nl_load_domain): Use ISO C style. Get rid of redundant
4904 semicolon. Fix typo and formatting in comment.
4905 (_nl_unload_domain): Use ISO C style.
4906
4907 * sysdeps/posix/sysconf.c (__sysconf): Fix typo in macro name.
4908
49092014-07-02 Will Newton <will.newton@linaro.org>
4910
4911 * malloc/obstack.c: Merge from gnulib master.
4912 [HAVE_CONFIG_H]: Remove conditional code.
4913 [!_LIBC]: Include config.h.
4914 [!ELIDE_CODE]: Don't include inttypes.h, include
4915 stdint.h unconditionally.
4916 (print_and_abort): Mark as _Noreturn.
4917 (_obstack_allocated_p): Mark as __attribute_pure__.
4918 (obstack_free): Rename to __obstack_free.
4919 [!__attribute__]: Remove conditional code.
4920 * malloc/obstack.h: Merge from gnulib master.
4921 [__cplusplus]: Move conditional down.
4922 [!__attribute_pure__]: Define __attribute_pure__ here
4923 if it is not already defined.
4924 (_obstack_memory_used): Mark as __attribute_pure__.
4925 [!__obstack_free]: Define as obstack_free.
4926 [__GNUC__]: Remove check for ancient NeXT gcc.
4927
49282014-07-02 Will Newton <will.newton@linaro.org>
4929 Paul Eggert <eggert@cs.ucla.edu>
4930
4931 * misc/sys/cdefs.h (_Noreturn): New macro, for pre-C11 compilers.
4932
49332014-07-02 Siddhesh Poyarekar <siddhesh@redhat.com>
4934
4935 * resolv/gethnamaddr.c: Add comment warning that the file is
4936 not maintained.
4937
49382014-07-01 Carlos O'Donell <carlos@redhat.com>
4939
4940 * sysdeps/unix/sysv/linux/hppa/librt.abilist: Remove GLIBC_2.3
4941 entries.
4942
4943 * sysdeps/unix/sysv/linux/hppa/Versions: Remove librt GLIBC_2.3
4944 entry for aio_cancel and aio_cancel64.
4945 * sysdeps/unix/sysv/linux/hppa/ld.abilist: New file.
4946 * sysdeps/unix/sysv/linux/hppa/libBrokenLocale.abilist: New file.
4947 * sysdeps/unix/sysv/linux/hppa/libanl.abilist: New file.
4948 * sysdeps/unix/sysv/linux/hppa/libc.abilist: New file.
4949 * sysdeps/unix/sysv/linux/hppa/libcrypt.abilist: New file.
4950 * sysdeps/unix/sysv/linux/hppa/libdl.abilist: New file.
4951 * sysdeps/unix/sysv/linux/hppa/libm.abilist: New file.
4952 * sysdeps/unix/sysv/linux/hppa/libnsl.abilist: New file.
4953 * sysdeps/unix/sysv/linux/hppa/libpthread.abilist: New file.
4954 * sysdeps/unix/sysv/linux/hppa/libresolv.abilist: New file.
4955 * sysdeps/unix/sysv/linux/hppa/librt.abilist: New file.
4956 * sysdeps/unix/sysv/linux/hppa/libthread_db.abilist: New file.
4957 * sysdeps/unix/sysv/linux/hppa/libutil.abilist: New file.
4958
49592014-07-01 Roland McGrath <roland@hack.frob.com>
4960
4961 * sysdeps/unix/sysv/linux/sysconf.c: Include <sys/param.h>.
4962 * nptl/pthread_mutex_lock.c: Likewise.
4963 * nptl/pthread_mutex_timedlock.c: Likewise.
4964 * nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Likewise.
4965
49662014-07-01 Richard henderson <rth@redhat.com>
4967
4968 * sysdeps/alpha/fpu/bits/mathinline.h (__isnanf): Remove.
4969 (__isnan, __isnanl): Remove.
4970 * sysdeps/alpha/fpu/s_isnan.c (__isnan): Use integer arithmetic.
4971
4972 * sysdeps/alpha/fpu/libm-test-ulps: Update.
4973
49742014-07-01 Stefan Liebler <stli@linux.vnet.ibm.com>
4975
4976 * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
4977
49782014-07-01 Siddhesh Poyarekar <siddhesh@redhat.com>
4979
4980 * resolv/nss_dns/dns-host.c (getanswer_r)
4981 [MULTI_PTRS_ARE_ALIASES]: Remove code.
4982
49832014-07-01 Joseph Myers <joseph@codesourcery.com>
4984
4985 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
4986 [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PSELECT): Do not
4987 undefine.
4988 [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PREADV): Likewise.
4989 [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PWRITEV): Likewise.
4990
49912014-07-01 Roland McGrath <roland@hack.frob.com>
4992
4993 * sysdeps/unix/sysv/linux/microblaze/arch-fork.h: New file.
4994 * sysdeps/unix/sysv/linux/microblaze/nptl/fork.c: File removed.
4995
4996 * sysdeps/microblaze/nptl/tls.h: Define TLS_DEFINE_INIT_TP.
4997 * sysdeps/unix/sysv/linux/microblaze/nptl/createthread.c: File removed.
4998
4999 * sysdeps/microblaze/nptl/bits/pthreadtypes.h: Moved ...
5000 * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h:
5001 ... here.
5002 * sysdeps/microblaze/nptl/bits/semaphore.h: Moved ...
5003 * sysdeps/unix/sysv/linux/microblaze/nptl/bits/semaphore.h: ... here.
5004
5005 * sysdeps/unix/sysv/linux/microblaze/pt-vfork.S: Moved ...
5006 * sysdeps/unix/sysv/linux/microblaze/nptl/pt-vfork.S: ... here.
5007 * sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S: Moved ...
5008 * sysdeps/unix/sysv/linux/microblaze/vfork.S: ... here.
5009
5010 * sysdeps/unix/sysv/linux/microblaze/c++-types.data: Moved ...
5011 * sysdeps/unix/sysv/linux/microblaze/nptl/c++-types.data: ... here.
5012 * sysdeps/unix/sysv/linux/microblaze/ld.abilist: Moved ...
5013 * sysdeps/unix/sysv/linux/microblaze/nptl/ld.abilist: ... here.
5014 * sysdeps/unix/sysv/linux/microblaze/libBrokenLocale.abilist:
5015 Moved ...
5016 * sysdeps/unix/sysv/linux/microblaze/nptl/libBrokenLocale.abilist:
5017 ... here.
5018 * sysdeps/unix/sysv/linux/microblaze/libanl.abilist: Moved ...
5019 * sysdeps/unix/sysv/linux/microblaze/nptl/libanl.abilist: ... here.
5020 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Moved ...
5021 * sysdeps/unix/sysv/linux/microblaze/nptl/libc.abilist: ... here.
5022 * sysdeps/unix/sysv/linux/microblaze/libcrypt.abilist: Moved ...
5023 * sysdeps/unix/sysv/linux/microblaze/nptl/libcrypt.abilist: ... here.
5024 * sysdeps/unix/sysv/linux/microblaze/libdl.abilist: Moved ...
5025 * sysdeps/unix/sysv/linux/microblaze/nptl/libdl.abilist: ... here.
5026 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Moved ...
5027 * sysdeps/unix/sysv/linux/microblaze/nptl/libm.abilist: ... here.
5028 * sysdeps/unix/sysv/linux/microblaze/libnsl.abilist: Moved ...
5029 * sysdeps/unix/sysv/linux/microblaze/nptl/libnsl.abilist: ... here.
5030 * sysdeps/unix/sysv/linux/microblaze/libpthread.abilist: Moved ...
5031 * sysdeps/unix/sysv/linux/microblaze/nptl/libpthread.abilist: ... here.
5032 * sysdeps/unix/sysv/linux/microblaze/libresolv.abilist: Moved ...
5033 * sysdeps/unix/sysv/linux/microblaze/nptl/libresolv.abilist: ... here.
5034 * sysdeps/unix/sysv/linux/microblaze/librt.abilist: Moved ...
5035 * sysdeps/unix/sysv/linux/microblaze/nptl/librt.abilist: ... here.
5036 * sysdeps/unix/sysv/linux/microblaze/libthread_db.abilist: Moved ...
5037 * sysdeps/unix/sysv/linux/microblaze/nptl/libthread_db.abilist:
5038 ... here.
5039 * sysdeps/unix/sysv/linux/microblaze/libutil.abilist: Moved ...
5040 * sysdeps/unix/sysv/linux/microblaze/nptl/libutil.abilist: ... here.
5041 * sysdeps/unix/sysv/linux/microblaze/localplt.data: Moved ...
5042 * sysdeps/unix/sysv/linux/microblaze/nptl/localplt.data: ... here.
5043 * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Moved ...
5044 * sysdeps/unix/sysv/linux/microblaze/nptl/lowlevellock.h: ... here.
5045 * sysdeps/unix/sysv/linux/microblaze/nptl/pthread_once.c: Moved ...
5046 * sysdeps/unix/sysv/linux/microblaze/pthread_once.c: ... here.
5047
50482014-07-01 David Holsgrove <david.holsgrove@xilinx.com>
5049
5050 * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: New file.
5051 * sysdeps/unix/sysv/linux/microblaze/socket.S: Update SINGLE_THREAD_P use.
5052 * sysdeps/unix/sysv/linux/microblaze/Makefile(libpthread-routines):
5053 Add sysdep.
5054
50552014-06-30 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
5056
5057 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
5058
50592014-06-30 Joseph Myers <joseph@codesourcery.com>
5060
5061 * sysdeps/mips/mips32/libm-test-ulps: Regenerated.
5062 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
5063
5064 * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
5065
5066 * sysdeps/arm/libm-test-ulps: Regenerated.
5067
50682014-06-30 Maciej W. Rozycki <macro@codesourcery.com>
5069 Roland McGrath <roland@hack.frob.com>
5070
5071 * test-skeleton.c (signal_handler): Kill the whole process group
5072 before killing the child individually.
5073 (main): Report any failure on `setpgid'.
5074
50752014-06-30 Roland McGrath <roland@hack.frob.com>
5076
5077 * sysdeps/arm/nptl/tls.h: Rename the multiple inclusion guard
5078 from _TLS_H to _ARM_NPTL_TLS_H.
5079 (TLS_INIT_TP): Move macro, and #include of <sysdep.h>, to ...
5080 * sysdeps/unix/sysv/linux/arm/tls.h: ... this new file.
5081
50822014-06-30 Joseph Myers <joseph@codesourcery.com>
5083
5084 [BZ #16539]
5085 * sysdeps/ieee754/ldbl-128/s_expm1l.c: Include <float.h>.
5086 (__expm1l): Return argument unchanged when small but not
5087 subnormal.
5088
5089 * soft-fp/op-1.h (_FP_UNPACK_RAW_1): Rename local variables to
5090 include macro name.
5091 (_FP_UNPACK_RAW_1_P): Likewise.
5092 (_FP_PACK_RAW_1): Likewise.
5093 (_FP_PACK_RAW_1_P): Likewise.
5094 (_FP_MUL_MEAT_1_wide): Likewise.
5095 (_FP_MUL_MEAT_DW_1_hard): Likewise.
5096 (_FP_MUL_MEAT_1_hard): Likewise.
5097 (_FP_DIV_MEAT_1_imm): Likewise.
5098 (_FP_DIV_MEAT_1_udiv_norm): Likewise.
5099 (_FP_DIV_MEAT_1_udiv): Likewise.
5100 * soft-fp/op-2.h (__FP_FRAC_DEC_2): Likewise.
5101 (_FP_UNPACK_RAW_2): Likewise.
5102 (_FP_UNPACK_RAW_2_P): Likewise.
5103 (_FP_PACK_RAW_2): Likewise.
5104 (_FP_PACK_RAW_2_P): Likewise.
5105 (_FP_MUL_MEAT_DW_2_wide): Likewise.
5106 (_FP_MUL_MEAT_2_wide): Likewise.
5107 (_FP_MUL_MEAT_DW_2_wide_3mul): Likewise.
5108 (_FP_MUL_MEAT_2_wide_3mul): Likewise.
5109 (_FP_MUL_MEAT_DW_2_gmp): Likewise.
5110 (_FP_MUL_MEAT_2_gmp): Likewise.
5111 (_FP_DIV_MEAT_2_udiv): Likewise.
5112 * soft-fp/op-4.h (_FP_FRAC_SLL_4): Likewise.
5113 (_FP_FRAC_SRL_4): Likewise.
5114 (_FP_FRAC_SRST_4): Likewise.
5115 (_FP_FRAC_SRS_4): Likewise.
5116 (_FP_UNPACK_RAW_4): Likewise.
5117 (_FP_UNPACK_RAW_4_P): Likewise.
5118 (_FP_PACK_RAW_4): Likewise.
5119 (_FP_PACK_RAW_4_P): Likewise.
5120 (_FP_MUL_MEAT_DW_4_wide): Likewise.
5121 (_FP_MUL_MEAT_4_wide): Likewise.
5122 (_FP_MUL_MEAT_4_gmp): Likewise.
5123 (umul_ppppmnnn): Likewise.
5124 (_FP_DIV_MEAT_4_udiv): Likewise.
5125 (__FP_FRAC_ADD_4): Likewise.
5126 (__FP_FRAC_SUB_3): Likewise.
5127 (__FP_FRAC_SUB_4): Likewise.
5128 (__FP_FRAC_DEC_3): Likewise.
5129 (__FP_FRAC_DEC_4): Likewise.
5130 (__FP_FRAC_ADDI_4): Likewise.
5131 * soft-fp/op-8.h (_FP_FRAC_SLL_8): Likewise.
5132 (_FP_FRAC_SRL_8): Likewise.
5133 (_FP_FRAC_SRS_8): Likewise.
5134
5135 * soft-fp/extended.h (FP_UNPACK_RAW_E): Rename local variables to
5136 include macro name.
5137 (FP_UNPACK_RAW_EP): Likewise.
5138 (FP_PACK_RAW_E): Likewise.
5139 (FP_PACK_RAW_EP): Likewise.
5140 * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Likewise.
5141 (_FP_ISSIGNAN): Likewise.
5142 (_FP_ADD_INTERNAL): Likewise.
5143 (_FP_FMA): Likewise.
5144 (_FP_CMP): Likewise.
5145 (_FP_SQRT): Likewise.
5146 (_FP_TO_INT): Likewise.
5147 (_FP_FROM_INT): Likewise.
5148 (FP_EXTEND): Likewise.
5149 (_FP_DIV_MEAT_N_loop): Likewise.
5150
51512014-06-30 Maciej W. Rozycki <macro@codesourcery.com>
5152
5153 * sysdeps/unix/sysv/linux/bits/socket.h: Adjust macro formatting
5154 throughout.
5155
51562014-06-29 Joseph Myers <joseph@codesourcery.com>
5157
5158 [BZ #17097]
5159 * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Return
5160 result with correct sign in case of exponents that produce
5161 overflow except for X very close to 1.
5162
51632014-06-28 Paul Eggert <eggert@cs.ucla.edu>
5164
5165 mktime: merge #if/#ifdef usage from glibc
5166 * lib/mktime.c: Use "#if defined DEBUG && DEBUG", not "#if DEBUG",
5167 as that works with both Glibc's and Gnulib's style.
5168 See thread starting at Siddhesh Poyarekar's bug report at:
5169 http://lists.gnu.org/archive/html/bug-gnulib/2014-06/msg00102.html
5170
51712014-06-28 Siddhesh Poyarekar <siddhesh@redhat.com>
5172
5173 * sysdeps/generic/memcopy.h: Define MEMCPY_OK_FOR_FWD_MEMMOVE.
5174 * sysdeps/tile/memcopy.h: Redefine MEMCPY_OK_FOR_FWD_MEMMOVE.
5175 * sysdeps/tile/tilegx/memmove.c: Remove file.
5176
51772014-06-27 Joseph Myers <joseph@codesourcery.com>
5178
5179 * Makeconfig ($(common-objpfx)soversions.mk): Do not generate
5180 abi-name definition.
5181 * scripts/soversions.awk: Do not handle or generate ABI lines.
5182 * shlib-versions: Remove ABI entries.
5183 * sysdeps/powerpc/nofpu/shlib-versions: Remove file.
5184 * sysdeps/x86_64/x32/shlib-versions: Remove ABI entry.
5185
51862014-06-27 Roland McGrath <roland@hack.frob.com>
5187
5188 * sysdeps/unix/sysv/linux/mips/mips32/nptl/c++-types.data: Moved ...
5189 * sysdeps/unix/sysv/linux/mips/mips32/c++-types.data: ... here.
5190 * sysdeps/unix/sysv/linux/mips/mips32/fpu/nptl/libc.abilist: Moved ...
5191 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: ... here.
5192 * sysdeps/unix/sysv/linux/mips/mips32/nptl/ld.abilist: Moved ...
5193 * sysdeps/unix/sysv/linux/mips/mips32/ld.abilist: ... here.
5194 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libBrokenLocale.abilist:
5195 Moved ...
5196 * sysdeps/unix/sysv/linux/mips/mips32/libBrokenLocale.abilist:
5197 ... here.
5198 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libanl.abilist: Moved ...
5199 * sysdeps/unix/sysv/linux/mips/mips32/libanl.abilist: ... here.
5200 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libcidn.abilist: Moved ...
5201 * sysdeps/unix/sysv/linux/mips/mips32/libcidn.abilist: ... here.
5202 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libcrypt.abilist: Moved ...
5203 * sysdeps/unix/sysv/linux/mips/mips32/libcrypt.abilist: ... here.
5204 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libdl.abilist: Moved ...
5205 * sysdeps/unix/sysv/linux/mips/mips32/libdl.abilist: ... here.
5206 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libm.abilist: Moved ...
5207 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: ... here.
5208 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnsl.abilist: Moved ...
5209 * sysdeps/unix/sysv/linux/mips/mips32/libnsl.abilist: ... here.
5210 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_compat.abilist:
5211 Moved ...
5212 * sysdeps/unix/sysv/linux/mips/mips32/libnss_compat.abilist: ... here.
5213 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_db.abilist: Moved ...
5214 * sysdeps/unix/sysv/linux/mips/mips32/libnss_db.abilist: ... here.
5215 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_dns.abilist: Moved ...
5216 * sysdeps/unix/sysv/linux/mips/mips32/libnss_dns.abilist: ... here.
5217 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_files.abilist:
5218 Moved ...
5219 * sysdeps/unix/sysv/linux/mips/mips32/libnss_files.abilist: ... here.
5220 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_hesiod.abilist:
5221 Moved ...
5222 * sysdeps/unix/sysv/linux/mips/mips32/libnss_hesiod.abilist: ... here.
5223 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_nis.abilist: Moved ...
5224 * sysdeps/unix/sysv/linux/mips/mips32/libnss_nis.abilist: ... here.
5225 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_nisplus.abilist:
5226 Moved ...
5227 * sysdeps/unix/sysv/linux/mips/mips32/libnss_nisplus.abilist: ... here.
5228 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libpthread.abilist: Moved ...
5229 * sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist: ... here.
5230 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libresolv.abilist: Moved ...
5231 * sysdeps/unix/sysv/linux/mips/mips32/libresolv.abilist: ... here.
5232 * sysdeps/unix/sysv/linux/mips/mips32/nptl/librt.abilist: Moved ...
5233 * sysdeps/unix/sysv/linux/mips/mips32/librt.abilist: ... here.
5234 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libthread_db.abilist:
5235 Moved ...
5236 * sysdeps/unix/sysv/linux/mips/mips32/libthread_db.abilist: ... here.
5237 * sysdeps/unix/sysv/linux/mips/mips32/nptl/libutil.abilist: Moved ...
5238 * sysdeps/unix/sysv/linux/mips/mips32/libutil.abilist: ... here.
5239 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/nptl/libc.abilist:
5240 Moved ...
5241 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: ... here.
5242 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/c++-types.data:
5243 Moved ...
5244 * sysdeps/unix/sysv/linux/mips/mips64/n32/c++-types.data: ... here.
5245 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/ld.abilist: Moved ...
5246 * sysdeps/unix/sysv/linux/mips/mips64/n32/ld.abilist: ... here.
5247 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libBrokenLocale.abilist:
5248 Moved ...
5249 * sysdeps/unix/sysv/linux/mips/mips64/libBrokenLocale.abilist:
5250 ... here.
5251 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libBrokenLocale.abilist:
5252 Identical file removed.
5253 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libanl.abilist:
5254 Moved ...
5255 * sysdeps/unix/sysv/linux/mips/mips64/libanl.abilist: ... here.
5256 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libanl.abilist:
5257 Identical file removed.
5258 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libc.abilist: Moved ...
5259 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: ... here.
5260 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libcrypt.abilist:
5261 Moved ...
5262 * sysdeps/unix/sysv/linux/mips/mips64/libcrypt.abilist: ... here.
5263 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libcrypt.abilist:
5264 Identical file removed.
5265 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libdl.abilist: Moved ...
5266 * sysdeps/unix/sysv/linux/mips/mips64/libdl.abilist: ... here.
5267 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libdl.abilist:
5268 Identical file removed.
5269 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libm.abilist: Moved ...
5270 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: ... here.
5271 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libm.abilist:
5272 Identical file removed.
5273 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libnsl.abilist: Moved ...
5274 * sysdeps/unix/sysv/linux/mips/mips64/libnsl.abilist: ... here.
5275 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libnsl.abilist:
5276 Identical file removed.
5277 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libpthread.abilist:
5278 Moved ...
5279 * sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist: ... here.
5280 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libpthread.abilist:
5281 Identical file removed.
5282 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libresolv.abilist:
5283 Moved ...
5284 * sysdeps/unix/sysv/linux/mips/mips64/n32/libresolv.abilist: ... here.
5285 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/librt.abilist: Moved ...
5286 * sysdeps/unix/sysv/linux/mips/mips64/librt.abilist: ... here.
5287 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/librt.abilist:
5288 Identical file removed.
5289 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libthread_db.abilist:
5290 Moved ...
5291 * sysdeps/unix/sysv/linux/mips/mips64/libthread_db.abilist:
5292 ... here.
5293 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libthread_db.abilist:
5294 Identical file removed.
5295 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libutil.abilist:
5296 Moved ...
5297 * sysdeps/unix/sysv/linux/mips/mips64/libutil.abilist: ... here.
5298 * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libutil.abilist:
5299 Identical file removed.
5300 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/c++-types.data:
5301 Moved ...
5302 * sysdeps/unix/sysv/linux/mips/mips64/n64/c++-types.data: ... here.
5303 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/ld.abilist: Moved ...
5304 * sysdeps/unix/sysv/linux/mips/mips64/n64/ld.abilist: ... here.
5305 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libc.abilist: Moved ...
5306 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: ... here.
5307 * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libresolv.abilist:
5308 Moved ...
5309 * sysdeps/unix/sysv/linux/mips/mips64/n64/libresolv.abilist: ... here.
5310 * sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h: Moved ...
5311 * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: ... here.
5312
5313 * sysdeps/unix/sysv/linux/mips/vfork.S: Incorporate
5314 SAVE_PID and RESTORE_PID blocks from nptl/pt-vfork.S.
5315 * sysdeps/unix/sysv/linux/mips/nptl/vfork.S: File removed.
5316 * sysdeps/unix/sysv/linux/mips/nptl/pt-vfork.S: File removed.
5317 * sysdeps/unix/sysv/linux/mips/pt-vfork.S: New file.
5318
53192014-06-27 Arjun Shankar <arjun.is@lostca.se>
5320
5321 [BZ #17092]
5322 * nscd/nscd.c (monitor_child): Return exit status of child
5323 instead of return value from wait syscall.
5324
53252014-06-27 Joseph Myers <joseph@codesourcery.com>
5326
5327 * configure.ac (libc_commonpagesize): Remove variable.
5328 (libc_relro_required): Likewise.
5329 (libc_cv_z_relro): Remove configure test.
5330 * configure: Regenerated.
5331 * sysdeps/aarch64/preconfigure (libc_commonpagesize): Do not set
5332 variable.
5333 (libc_relro_required): Likewise.
5334 * sysdeps/alpha/preconfigure (libc_commonpagesize): Likewise.
5335 (libc_relro_required): Likewise.
5336 * sysdeps/arm/preconfigure.ac (libc_commonpagesize): Likewise.
5337 (libc_relro_required): Likewise.
5338 * sysdeps/arm/preconfigure: Regenerated.
5339 * sysdeps/ia64/preconfigure: Remove file.
5340 * sysdeps/tile/preconfigure (libc_commonpagesize): Do not set
5341 variable.
5342 (libc_relro_required): Likewise.
5343
5344 [BZ #16561]
5345 [BZ #16562]
5346 * sysdeps/ieee754/dbl-64/e_jn.c: Include <float.h>.
5347 (__ieee754_yn): Set FE_TONEAREST mode internally and then
5348 recompute overflowing results in original rounding mode.
5349 * sysdeps/ieee754/flt-32/e_jnf.c: Include <float.h>.
5350 (__ieee754_ynf): Set FE_TONEAREST mode internally and then
5351 recompute overflowing results in original rounding mode.
5352 * sysdeps/ieee754/ldbl-128/e_jnl.c: Include <float.h>.
5353 (__ieee754_ynl): Set FE_TONEAREST mode internally and then
5354 recompute overflowing results in original rounding mode.
5355 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Include <float.h>.
5356 (__ieee754_ynl): Set FE_TONEAREST mode internally and then
5357 recompute overflowing results in original rounding mode.
5358 * sysdeps/ieee754/ldbl-96/e_jnl.c: Include <float.h>.
5359 (__ieee754_ynl): Set FE_TONEAREST mode internally and then
5360 recompute overflowing results in original rounding mode.
5361 * sysdeps/i386/fpu/fenv_private.h [!__SSE2_MATH__]
5362 (libc_feholdsetround_ctx): New macro.
5363 * math/libm-test.inc (yn_test): Use ALL_RM_TEST.
5364 * sysdeps/i386/fpu/libm-test-ulps: Update.
5365 * sysdeps/x86_64/fpu/libm-test-ulps : Likewise.
5366
53672014-06-26 Joseph Myers <joseph@codesourcery.com>
5368
5369 * sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h
5370 [__PIC__] (PSEUDO): Use name of _nocancel entry point in
5371 corresponding .cpsetup call.
5372
53732014-06-26 Roland McGrath <roland@hack.frob.com>
5374
5375 * sysdeps/unix/sysv/linux/arm/libc-aeabi_read_tp.S: Moved ...
5376 * sysdeps/arm/libc-aeabi_read_tp.S: ... here.
5377 * sysdeps/arm/Makefile [$(subdir) = csu]
5378 (aeabi_routines): Add aeabi_read_tp and libc-aeabi_read_tp here.
5379 (static-only-routines): Add aeabi_read_tp here.
5380 (shared-only-routines): Add libc-aeabi_read_tp here.
5381 (CFLAGS-libc-start.c): Add -fexceptions here.
5382 * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = csu]
5383 (sysdep_routines, static-only-routines, shared-only-routines):
5384 Don't add to these here.
5385 (CFLAGS-libc-start.c): Likewise.
5386
5387 * sysdeps/unix/sysv/linux/arm/nptl-aeabi_unwind_cpp_pr1.c: Moved ...
5388 * sysdeps/arm/nptl-aeabi_unwind_cpp_pr1.c: ... here.
5389 * sysdeps/unix/sysv/linux/arm/rt-aeabi_unwind_cpp_pr1.c: Moved ...
5390 * sysdeps/arm/rt-aeabi_unwind_cpp_pr1.c: ... here.
5391 * sysdeps/arm/Makefile [$(subdir) = rt]
5392 (librt-sysdep_routines, librt-shared-only-routines):
5393 Append rt-aeabi_unwind_cpp_pr1 here.
5394 * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = rt]
5395 (librt-sysdep_routines, librt-shared-only-routines): Don't do it here.
5396 * sysdeps/arm/nptl/Makefile [$(subdir) = nptl]
5397 (libpthread-sysdep_routines, libpthread-shared-only-routines):
5398 Append nptl-aeabi_unwind_cpp_pr1 here.
5399 (tests): Filter out tst-cleanupx4 here.
5400 * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = nptl]
5401 (libpthread-sysdep_routines, libpthread-shared-only-routines, tests):
5402 Don't do those here.
5403
54042014-06-26 Joseph Myers <joseph@codesourcery.com>
5405
5406 * scripts/list-sources.sh: Do not handle ports specially.
5407
54082014-06-26 Roland McGrath <roland@hack.frob.com>
5409
5410 * sysdeps/arm/fesetenv.c: Include <fpu_control.h>.
5411 * sysdeps/arm/feupdateenv.c: Likewise.
5412
5413 * posix/spawn_faction_addopen.c: Include <stdlib.h> for free decl.
5414
54152014-06-26 Joseph Myers <joseph@codesourcery.com>
5416
5417 * manual/texinfo.tex: Update to version 2014-05-05.10 with
5418 trailing whitespace removed.
5419 * scripts/config.guess: Update to version 2014-03-23.
5420 * scripts/config.sub: Update to version 2014-05-01
5421 * scripts/install-sh: Update to version 2013-12-25.23.
5422 * scripts/move-if-change: Update from gnulib.
5423
54242014-06-26 Siddhesh Poyarekar <siddhesh@redhat.com>
5425
5426 * debug/memmove_chk.c: Remove pagecopy.h include.
5427
54282014-06-26 Paul Eggert <eggert@cs.ucla.edu>
5429
5430 * time/mktime.c (leapyear): Remove inline keyword. The code is now
5431 identical to gnulib mktime.
5432
54332014-06-26 Joseph Myers <joseph@codesourcery.com>
5434
5435 * configure.ac: Do not test for machine being rs6000. Do not test
5436 for powerpc*-*soft.
5437 * configure: Regenerated.
5438
5439 * configure.ac (libc_cv_asm_cfi_directives): Remove configure
5440 test.
5441 * configure: Regenerated.
5442 * config.h.in (HAVE_ASM_CFI_DIRECTIVES): Remove macro undefine.
5443 * sysdeps/arm/configure.ac (libc_cv_asm_cfi_directive_sections):
5444 Remove configure test.
5445 * sysdeps/arm/configure: Regenerated.
5446 * sysdeps/nptl/configure.ac: Do not check
5447 libc_cv_asm_cfi_directives.
5448 * sysdeps/nptl/configure: Regenerated.
5449 * sysdeps/x86_64/nptl/configure.ac: Remove file.
5450 * sysdeps/x86_64/nptl/configure: Remove generated file.
5451 * b/sysdeps/generic/sysdep.h [HAVE_ASM_CFI_DIRECTIVES]: Make code
5452 unconditional.
5453 [!HAVE_ASM_CFI_DIRECTIVES]: Remove conditional code.
5454
54552014-06-26 Siddhesh Poyarekar <siddhesh@redhat.com>
5456
5457 * posix/fnmatch.c: Define WIDE_CHAR_VERSION.
5458 * posix/fnmatch_loop.c: Undefine WIDE_CHAR_VERSION.
5459 (FCT): Check value of WIDE_CHAR_VERSION instead of checking if
5460 it is defined.
5461
5462 * elf/dl-runtime.c: Check for value of ELF_MACHINE_NO_RELA
5463 instead of whether it is defined.
5464 * sysdeps/aarch64/dl-machine.h: Define ELF_MACHINE_NO_RELA.
5465 * sysdeps/hppa/dl-machine.h: Likewise.
5466 * sysdeps/ia64/dl-machine.h: Likewise.
5467 * sysdeps/m68k/dl-machine.h: Likewise.
5468 * sysdeps/microblaze/dl-machine.h: Likewise.
5469 * sysdeps/mips/dl-machine.: Likewise.
5470 * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
5471 * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
5472 * sysdeps/s390/s390-32/dl-machine.h: Likewise.
5473 * sysdeps/s390/s390-64/dl-machine.h: Likewise.
5474 * sysdeps/sh/dl-machine.h: Likewise.
5475 * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
5476 * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
5477 * sysdeps/tile/dl-machine.h: Likewise.
5478 * sysdeps/x86_64/dl-machine.h: Likewise.
5479
5480 * nscd/connections.c (enum usekey) [SEPARATE_KEY]: Remove
5481 code.
5482 (verify_persistent_db): Likewise.
5483
54842014-06-26 Roland McGrath <roland@hack.frob.com>
5485
5486 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/c++-types.data: Moved ...
5487 * sysdeps/unix/sysv/linux/s390/s390-32/c++-types.data: ... here.
5488 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: Moved ...
5489 * sysdeps/unix/sysv/linux/s390/s390-32/ld.abilist: ... here.
5490 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libBrokenLocale.abilist:
5491 Moved ...
5492 * sysdeps/unix/sysv/linux/s390/s390-32/libBrokenLocale.abilist:
5493 ... here.
5494 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libanl.abilist: Moved ...
5495 * sysdeps/unix/sysv/linux/s390/libanl.abilist: ... here.
5496 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libanl.abilist:
5497 Identical file removed.
5498 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Moved ...
5499 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: ... here.
5500 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist: Moved ...
5501 * sysdeps/unix/sysv/linux/s390/s390-32/libcrypt.abilist: ... here.
5502 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libdl.abilist: Moved ...
5503 * sysdeps/unix/sysv/linux/s390/s390-32/libdl.abilist: ... here.
5504 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: Moved ...
5505 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: ... here.
5506 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libnsl.abilist: Moved ...
5507 * sysdeps/unix/sysv/linux/s390/s390-32/libnsl.abilist: ... here.
5508 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
5509 Moved ...
5510 * sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist: ... here.
5511 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libresolv.abilist: Moved ...
5512 * sysdeps/unix/sysv/linux/s390/s390-32/libresolv.abilist: ... here.
5513 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: Moved ...
5514 * sysdeps/unix/sysv/linux/s390/s390-32/librt.abilist: ... here.
5515 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libthread_db.abilist:
5516 Moved ...
5517 * sysdeps/unix/sysv/linux/s390/s390-32/libthread_db.abilist: ... here.
5518 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: Moved ...
5519 * sysdeps/unix/sysv/linux/s390/s390-32/libutil.abilist: ... here.
5520 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/localplt.data: Moved ...
5521 * sysdeps/unix/sysv/linux/s390/localplt.data: ... here.
5522 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/localplt.data:
5523 Identical file removed.
5524 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/c++-types.data: Moved ...
5525 * sysdeps/unix/sysv/linux/s390/s390-64/c++-types.data: ... here.
5526 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: Moved ...
5527 * sysdeps/unix/sysv/linux/s390/s390-64/ld.abilist: ... here.
5528 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libBrokenLocale.abilist:
5529 Moved ...
5530 * sysdeps/unix/sysv/linux/s390/s390-64/libBrokenLocale.abilist:
5531 ... here.
5532 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Moved ...
5533 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: ... here.
5534 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist: Moved ...
5535 * sysdeps/unix/sysv/linux/s390/s390-64/libcrypt.abilist: ... here.
5536 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libdl.abilist: Moved ...
5537 * sysdeps/unix/sysv/linux/s390/s390-64/libdl.abilist: ... here.
5538 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: Moved ...
5539 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: ... here.
5540 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libnsl.abilist: Moved ...
5541 * sysdeps/unix/sysv/linux/s390/s390-64/libnsl.abilist: ... here.
5542 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
5543 Moved ...
5544 * sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist: ... here.
5545 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libresolv.abilist:
5546 Moved ...
5547 * sysdeps/unix/sysv/linux/s390/s390-64/libresolv.abilist: ... here.
5548 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/librt.abilist: Moved ...
5549 * sysdeps/unix/sysv/linux/s390/s390-64/librt.abilist: ... here.
5550 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libthread_db.abilist:
5551 Moved ...
5552 * sysdeps/unix/sysv/linux/s390/s390-64/libthread_db.abilist: ... here.
5553 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libutil.abilist: Moved ...
5554 * sysdeps/unix/sysv/linux/s390/s390-64/libutil.abilist: ... here.
5555
5556 * nptl/sysdeps/unix/sysv/linux/s390/Makefile: File removed, contents
5557 folded into ...
5558 * sysdeps/unix/sysv/linux/s390/Makefile [$(subdir) = nptl]: ... here.
5559 * sysdeps/unix/sysv/linux/s390/Versions
5560 (libpthread: GLIBC_2.19): New version set.
5561 * nptl/sysdeps/unix/sysv/linux/s390/Versions: File removed.
5562 * sysdeps/unix/sysv/linux/s390/s390-64/Versions
5563 (librt: GLIBC_2.3.3): New version set.
5564 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/Versions: File removed.
5565 * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.c: Moved ...
5566 * sysdeps/unix/sysv/linux/s390/elision-conf.c: ... here.
5567 * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.h: Moved ...
5568 * sysdeps/unix/sysv/linux/s390/elision-conf.h: ... here.
5569 * nptl/sysdeps/unix/sysv/linux/s390/elision-lock.c: Moved ...
5570 * sysdeps/unix/sysv/linux/s390/elision-lock.c: ... here.
5571 * nptl/sysdeps/unix/sysv/linux/s390/elision-timed.c: Moved ...
5572 * sysdeps/unix/sysv/linux/s390/elision-timed.c: ... here.
5573 * nptl/sysdeps/unix/sysv/linux/s390/elision-trylock.c: Moved ...
5574 * sysdeps/unix/sysv/linux/s390/elision-trylock.c: ... here.
5575 * nptl/sysdeps/unix/sysv/linux/s390/elision-unlock.c: Moved ...
5576 * sysdeps/unix/sysv/linux/s390/elision-unlock.c: ... here.
5577 * nptl/sysdeps/unix/sysv/linux/s390/force-elision.h: Moved ...
5578 * sysdeps/unix/sysv/linux/s390/force-elision.h: ... here.
5579 * nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Moved ...
5580 * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: ... here.
5581 * nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h: Moved ...
5582 * sysdeps/unix/sysv/linux/s390/lowlevellock.h: ... here.
5583 * nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c: Moved ...
5584 * sysdeps/unix/sysv/linux/s390/pt-longjmp.c: ... here.
5585 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c: Moved ...
5586 * sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c: ... here.
5587 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c: Moved ...
5588 * sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c: ... here.
5589 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c: Moved ...
5590 * sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c: ... here.
5591 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c: Moved ...
5592 * sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c: ... here.
5593 * nptl/sysdeps/unix/sysv/linux/s390/pthread_once.c: Moved ...
5594 * sysdeps/unix/sysv/linux/s390/pthread_once.c: ... here.
5595 * nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Moved ...
5596 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: ... here.
5597 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Moved ...
5598 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: ... here.
5599 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: Moved ...
5600 * sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: ... here.
5601 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: Moved ...
5602 * sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: ... here.
5603 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: Moved ...
5604 * sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: ... here.
5605 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: Moved ...
5606 * sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: ... here.
5607 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: Moved ...
5608 * sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: ... here.
5609
5610 * nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Moved ...
5611 * sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: ... here.
5612 (__libc_vfork): Define the function under this name.
5613 [!NOT_IN_libc] (__vfork): Make this an alias.
5614 [!NOT_IN_libc] (vfork): Conditionalize the weak_alias.
5615 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Moved ...
5616 * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: ... here.
5617 (__libc_vfork): Define the function under this name.
5618 [!NOT_IN_libc] (__vfork): Make this an alias.
5619 [!NOT_IN_libc] (vfork): Conditionalize the weak_alias.
5620 * sysdeps/unix/sysv/linux/s390/pt-vfork.S: New file.
5621 * nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: File removed.
5622 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: File removed.
5623 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Remove vfork.
5624 * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
5625
5626 * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Deconditionalize the
5627 code that was previously under [RESET_PID].
5628 * sysdeps/unix/sysv/linux/s390/s390-64/clone.S: Likewise.
5629 * nptl/sysdeps/unix/sysv/linux/s390/s390-32/clone.S: File removed.
5630 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/clone.S: File removed.
5631
5632 * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h: Moved ...
5633 * sysdeps/aarch64/nptl/bits/pthreadtypes.h: ... here.
5634 * sysdeps/unix/sysv/linux/aarch64/nptl/bits/semaphore.h: Moved ...
5635 * sysdeps/aarch64/nptl/bits/semaphore.h: ... here.
5636 * sysdeps/unix/sysv/linux/aarch64/nptl/bits/local_lim.h: Moved ...
5637 * sysdeps/unix/sysv/linux/aarch64/bits/local_lim.h: ... here.
5638 * sysdeps/unix/sysv/linux/aarch64/nptl/c++-types.data: Moved ...
5639 * sysdeps/unix/sysv/linux/aarch64/c++-types.data: ... here.
5640 * sysdeps/unix/sysv/linux/aarch64/nptl/ld.abilist: Moved ...
5641 * sysdeps/unix/sysv/linux/aarch64/ld.abilist: ... here.
5642 * sysdeps/unix/sysv/linux/aarch64/nptl/libBrokenLocale.abilist:
5643 Moved ...
5644 * sysdeps/unix/sysv/linux/aarch64/libBrokenLocale.abilist: ... here.
5645 * sysdeps/unix/sysv/linux/aarch64/nptl/libanl.abilist: Moved ...
5646 * sysdeps/unix/sysv/linux/aarch64/libanl.abilist: ... here.
5647 * sysdeps/unix/sysv/linux/aarch64/nptl/libc.abilist: Moved ...
5648 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: ... here.
5649 * sysdeps/unix/sysv/linux/aarch64/nptl/libcrypt.abilist: Moved ...
5650 * sysdeps/unix/sysv/linux/aarch64/libcrypt.abilist: ... here.
5651 * sysdeps/unix/sysv/linux/aarch64/nptl/libdl.abilist: Moved ...
5652 * sysdeps/unix/sysv/linux/aarch64/libdl.abilist: ... here.
5653 * sysdeps/unix/sysv/linux/aarch64/nptl/libm.abilist: Moved ...
5654 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: ... here.
5655 * sysdeps/unix/sysv/linux/aarch64/nptl/libnsl.abilist: Moved ...
5656 * sysdeps/unix/sysv/linux/aarch64/libnsl.abilist: ... here.
5657 * sysdeps/unix/sysv/linux/aarch64/nptl/libpthread.abilist: Moved ...
5658 * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist: ... here.
5659 * sysdeps/unix/sysv/linux/aarch64/nptl/libresolv.abilist: Moved ...
5660 * sysdeps/unix/sysv/linux/aarch64/libresolv.abilist: ... here.
5661 * sysdeps/unix/sysv/linux/aarch64/nptl/librt.abilist: Moved ...
5662 * sysdeps/unix/sysv/linux/aarch64/librt.abilist: ... here.
5663 * sysdeps/unix/sysv/linux/aarch64/nptl/libthread_db.abilist: Moved ...
5664 * sysdeps/unix/sysv/linux/aarch64/libthread_db.abilist: ... here.
5665 * sysdeps/unix/sysv/linux/aarch64/nptl/libutil.abilist: Moved ...
5666 * sysdeps/unix/sysv/linux/aarch64/libutil.abilist: ... here.
5667 * sysdeps/unix/sysv/linux/aarch64/nptl/localplt.data: Moved ...
5668 * sysdeps/unix/sysv/linux/aarch64/localplt.data: ... here.
5669 * sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h: Moved ...
5670 * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: ... here.
5671 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h: Moved ...
5672 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: ... here.
5673
56742014-06-25 Roland McGrath <roland@hack.frob.com>
5675
5676 * sysdeps/unix/sysv/linux/mips/clone.S: Deconditionalize the code
5677 that was previously under [RESET_PID].
5678 * sysdeps/unix/sysv/linux/mips/nptl/clone.S: File removed.
5679
56802014-06-25 Joseph Myers <joseph@codesourcery.com>
5681
5682 * sysdeps/unix/sysv/linux/dl-opendir.c (__ASSUME_O_CLOEXEC): Do
5683 not undefine and redefine.
5684 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs)
5685 [O_CLOEXEC]: Make code unconditional.
5686 (__get_nprocs) [!O_CLOEXEC]: Remove conditional code.
5687 * sysdeps/unix/sysv/linux/shm_open.c: Do not include
5688 <kernel-features.h>.
5689 [O_CLOEXEC && !__ASSUME_O_CLOEXEC] (have_o_cloexec): Remove
5690 conditional variable definition.
5691 (shm_open) [O_CLOEXEC]: Make code unconditional.
5692 (shm_open) [!O_CLOEXEC || !__ASSUME_O_CLOEXEC]: Remove conditional
5693 code.
5694
5695 * configure.ac (USE_REGPARMS): Don't define here.
5696 * configure: Regenerated.
5697 * sysdeps/i386/configure.ac (USE_REGPARMS): Define here.
5698 * sysdeps/i386/configure: Regenerated.
5699
5700 * nptl/createthread.c: Don't include kernel-features.h.
5701 * nptl/pthread_cancel.c: Likewise.
5702 * nptl/pthread_condattr_setclock.c: Likewise.
5703 * nptl/sysdeps/unix/sysv/linux/pt-raise.c: Likewise.
5704 * nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: Likewise.
5705 * nptl/sysdeps/unix/sysv/linux/pthread_kill.c: Likewise.
5706 * nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c: Likewise.
5707 * nptl/sysdeps/unix/sysv/linux/raise.c: Likewise.
5708 * nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: Likewise.
5709 * nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Likewise.
5710 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: Likewise.
5711 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Likewise.
5712 * nptl/sysdeps/unix/sysv/linux/timer_create.c: Likewise.
5713 * nptl/sysdeps/unix/sysv/linux/timer_delete.c: Likewise.
5714 * nptl/sysdeps/unix/sysv/linux/timer_getoverr.c: Likewise.
5715 * nptl/sysdeps/unix/sysv/linux/timer_gettime.c: Likewise.
5716 * nptl/sysdeps/unix/sysv/linux/timer_routines.c: Likewise.
5717 * nptl/sysdeps/unix/sysv/linux/timer_settime.c: Likewise.
5718 * nscd/gai.c: Likewise.
5719 * nss/nss_db/db-open.c: Likewise.
5720 * sysdeps/generic/ldsodefs.h: Likewise.
5721 * sysdeps/sh/nptl/tls.h: Likewise.
5722 * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Likewise.
5723 * sysdeps/unix/sysv/linux/aarch64/sigcontextinfo.h: Likewise.
5724 * sysdeps/unix/sysv/linux/aarch64/vfork.S: Likewise.
5725 * sysdeps/unix/sysv/linux/adjtime.c: Likewise.
5726 * sysdeps/unix/sysv/linux/alpha/xstatconv.h: Likewise.
5727 * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
5728 * sysdeps/unix/sysv/linux/arm/sigcontextinfo.h: Likewise.
5729 * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
5730 * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: Likewise.
5731 * sysdeps/unix/sysv/linux/clock_getres.c: Likewise.
5732 * sysdeps/unix/sysv/linux/clock_gettime.c: Likewise.
5733 * sysdeps/unix/sysv/linux/clock_nanosleep.c: Likewise.
5734 * sysdeps/unix/sysv/linux/clock_settime.c: Likewise.
5735 * sysdeps/unix/sysv/linux/dl-execstack.c: Likewise.
5736 * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
5737 * sysdeps/unix/sysv/linux/dl-sysdep.c: Likewise.
5738 * sysdeps/unix/sysv/linux/generic/futimesat.c: Likewise.
5739 * sysdeps/unix/sysv/linux/generic/poll.c: Likewise.
5740 * sysdeps/unix/sysv/linux/generic/wordsize-32/fcntl.c: Likewise.
5741 * sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c: Likewise.
5742 * sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c: Likewise.
5743 * sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c: Likewise.
5744 * sysdeps/unix/sysv/linux/generic/wordsize-32/preadv.c: Likewise.
5745 * sysdeps/unix/sysv/linux/generic/wordsize-32/preadv64.c: Likewise.
5746 * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c: Likewise.
5747 * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c: Likewise.
5748 * sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev.c: Likewise.
5749 * sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev64.c: Likewise.
5750 * sysdeps/unix/sysv/linux/getcwd.c: Likewise.
5751 * sysdeps/unix/sysv/linux/getpagesize.c: Likewise.
5752 * sysdeps/unix/sysv/linux/getsysstats.c: Likewise.
5753 * sysdeps/unix/sysv/linux/i386/fxstat.c: Likewise.
5754 * sysdeps/unix/sysv/linux/i386/lxstat.c: Likewise.
5755 * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
5756 * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
5757 * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
5758 * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
5759 * sysdeps/unix/sysv/linux/i386/xstat.c: Likewise.
5760 * sysdeps/unix/sysv/linux/ia64/system.c: Likewise.
5761 * sysdeps/unix/sysv/linux/if_index.c: Likewise.
5762 * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
5763 * sysdeps/unix/sysv/linux/ifreq.c: Likewise.
5764 * sysdeps/unix/sysv/linux/ldsodefs.h: Likewise.
5765 * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
5766 * sysdeps/unix/sysv/linux/m68k/vfork.S: Likewise.
5767 * sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S: Likewise.
5768 * sysdeps/unix/sysv/linux/mips/mips32/accept4.c: Likewise.
5769 * sysdeps/unix/sysv/linux/mips/mips32/recvmmsg.c: Likewise.
5770 * sysdeps/unix/sysv/linux/mips/mips32/sendmmsg.c: Likewise.
5771 * sysdeps/unix/sysv/linux/mips/pread.c: Likewise.
5772 * sysdeps/unix/sysv/linux/mips/pread64.c: Likewise.
5773 * sysdeps/unix/sysv/linux/mips/pwrite.c: Likewise.
5774 * sysdeps/unix/sysv/linux/mips/pwrite64.c: Likewise.
5775 * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
5776 * sysdeps/unix/sysv/linux/mmap64.c: Likewise.
5777 * sysdeps/unix/sysv/linux/netlinkaccess.h: Likewise.
5778 * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
5779 * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c: Likewise.
5780 * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
5781 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c: Likewise.
5782 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: Likewise.
5783 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Likewise.
5784 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c: Likewise.
5785 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c: Likewise.
5786 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c: Likewise.
5787 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c: Likewise.
5788 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
5789 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
5790 * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Likewise.
5791 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c: Likewise.
5792 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: Likewise.
5793 * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S: Likewise.
5794 * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
5795 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Likewise.
5796 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
5797 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
5798 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
5799 * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Likewise.
5800 * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
5801 * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Likewise.
5802 * sysdeps/unix/sysv/linux/pread.c: Likewise.
5803 * sysdeps/unix/sysv/linux/pread64.c: Likewise.
5804 * sysdeps/unix/sysv/linux/prof-freq.c: Likewise.
5805 * sysdeps/unix/sysv/linux/pwrite.c: Likewise.
5806 * sysdeps/unix/sysv/linux/pwrite64.c: Likewise.
5807 * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S: Likewise.
5808 * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S: Likewise.
5809 * sysdeps/unix/sysv/linux/s390/system.c: Likewise.
5810 * sysdeps/unix/sysv/linux/sh/pread.c: Likewise.
5811 * sysdeps/unix/sysv/linux/sh/pread64.c: Likewise.
5812 * sysdeps/unix/sysv/linux/sh/pwrite.c: Likewise.
5813 * sysdeps/unix/sysv/linux/sh/pwrite64.c: Likewise.
5814 * sysdeps/unix/sysv/linux/sigaction.c: Likewise.
5815 * sysdeps/unix/sysv/linux/sigpending.c: Likewise.
5816 * sysdeps/unix/sysv/linux/sigprocmask.c: Likewise.
5817 * sysdeps/unix/sysv/linux/sigsuspend.c: Likewise.
5818 * sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c: Likewise.
5819 * sysdeps/unix/sysv/linux/sparc/system.c: Likewise.
5820 * sysdeps/unix/sysv/linux/syslog.c: Likewise.
5821 * sysdeps/unix/sysv/linux/system.c: Likewise.
5822 * sysdeps/unix/sysv/linux/testrtsig.h: Likewise.
5823 * sysdeps/unix/sysv/linux/timespec_get.c: Likewise.
5824 * sysdeps/unix/sysv/linux/ttyname.c: Likewise.
5825 * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
5826 * sysdeps/unix/sysv/linux/utimensat.c: Likewise.
5827 * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
5828 * sysdeps/unix/sysv/linux/xstatconv.h: Likewise.
5829
5830 * configure.ac (libc_cv_c_asmcr0_bug): Remove configure test.
5831 * configure: Regenerated.
5832 * config.h.in (BROKEN_PPC_ASM_CR0): Remove macro.
5833
5834 * configure.ac (base_machine): Do not set specially for particular
5835 machines here.
5836 * configure: Regenerated.
5837 * sysdeps/powerpc/preconfigure: Move machine and base_machine
5838 settings from configure.ac.
5839 * sysdeps/i386/preconfigure: New file.
5840 * sysdeps/s390/preconfigure: Likewise.
5841 * sysdeps/sh/preconfigure: Likewise.
5842 * sysdeps/sparc/preconfigure: Likewise.
5843
58442014-06-25 Roland McGrath <roland@hack.frob.com>
5845
5846 * sysdeps/sparc/sparc64/nptl/cpu_relax.S: Moved ...
5847 * sysdeps/sparc/sparc64/cpu_relax.S: ... here.
5848 * sysdeps/sparc/sparc64/nptl/pthread_spin_init.c: Moved ...
5849 * sysdeps/sparc/sparc64/pthread_spin_init.c: ... here.
5850 * sysdeps/sparc/sparc64/nptl/pthread_spin_lock.S: Moved ...
5851 * sysdeps/sparc/sparc64/pthread_spin_lock.S: ... here.
5852 * sysdeps/sparc/sparc64/nptl/pthread_spin_trylock.S: Moved ...
5853 * sysdeps/sparc/sparc64/pthread_spin_trylock.S: ... here.
5854 * sysdeps/sparc/sparc64/nptl/pthread_spin_unlock.S: Moved ...
5855 * sysdeps/sparc/sparc64/pthread_spin_unlock.S: ... here.
5856 * sysdeps/sparc/sparc64/nptl/pthreaddef.h: Moved ...
5857 * sysdeps/sparc/sparc64/pthreaddef.h: ... here.
5858 * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: Update #include.
5859 * sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: Likewise.
5860 * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: Likewise.
5861 * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: Likewise.
5862 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: Likewise.
5863 * sysdeps/sparc/sparc64/nptl/Makefile: File removed, its contents ...
5864 * sysdeps/sparc/sparc64/Makefile: ... appended here.
5865
5866 * sysdeps/sparc/sparc32/nptl/lowlevellock.c: Moved ...
5867 * sysdeps/sparc/sparc32/lowlevellock.c: ... here.
5868 * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: Moved ...
5869 * sysdeps/sparc/sparc32/pthread_barrier_wait.c: ... here.
5870 * sysdeps/sparc/sparc32/nptl/pthread_spin_lock.S: Moved ...
5871 * sysdeps/sparc/sparc32/pthread_spin_lock.S: ... here.
5872 * sysdeps/sparc/sparc32/nptl/pthread_spin_trylock.S: Moved ...
5873 * sysdeps/sparc/sparc32/pthread_spin_trylock.S: ... here.
5874 * sysdeps/sparc/sparc32/nptl/pthreaddef.h: Moved ...
5875 * sysdeps/sparc/sparc32/pthreaddef.h: ... here.
5876 * sysdeps/sparc/sparc32/nptl/sem_post.c: Moved ...
5877 * sysdeps/sparc/sparc32/sem_post.c: ... here.
5878 * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: Moved ...
5879 * sysdeps/sparc/sparc32/sem_timedwait.c: ... here.
5880 * sysdeps/sparc/sparc32/nptl/sem_trywait.c: Moved ...
5881 * sysdeps/sparc/sparc32/sem_trywait.c: ... here.
5882 * sysdeps/sparc/sparc32/nptl/sem_wait.c: Moved ...
5883 * sysdeps/sparc/sparc32/sem_wait.c: ... here.
5884 * sysdeps/sparc/sparc32/sparcv9/nptl/cpu_relax.S: Moved ...
5885 * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: ... here.
5886 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_barrier_wait.c: Moved ...
5887 * sysdeps/sparc/sparc32/sparcv9/pthread_barrier_wait.c: ... here.
5888 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_init.c: Moved ...
5889 * sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: ... here.
5890 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_lock.S: Moved ...
5891 * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: ... here.
5892 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_trylock.S: Moved ...
5893 * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: ... here.
5894 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: Moved ...
5895 * sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.S: ... here.
5896 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_post.c: Moved ...
5897 * sysdeps/sparc/sparc32/sparcv9/sem_post.c: ... here.
5898 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_timedwait.c: Moved ...
5899 * sysdeps/sparc/sparc32/sparcv9/sem_timedwait.c: ... here.
5900 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_trywait.c: Moved ...
5901 * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: ... here.
5902 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_wait.c: Moved ...
5903 * sysdeps/sparc/sparc32/sparcv9/sem_wait.c: ... here.
5904
5905 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/c++-types.data: Moved ...
5906 * sysdeps/unix/sysv/linux/sparc/sparc32/c++-types.data: ... here.
5907 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/ld.abilist: Moved ...
5908 * sysdeps/unix/sysv/linux/sparc/sparc32/ld.abilist: ... here.
5909 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libBrokenLocale.abilist:
5910 Moved ...
5911 * sysdeps/unix/sysv/linux/sparc/sparc32/libBrokenLocale.abilist:
5912 ... here.
5913 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libanl.abilist: Moved ...
5914 * sysdeps/unix/sysv/linux/sparc/sparc32/libanl.abilist: ... here.
5915 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Moved ...
5916 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: ... here.
5917 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist:
5918 Moved ...
5919 * sysdeps/unix/sysv/linux/sparc/sparc32/libcrypt.abilist: ... here.
5920 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libdl.abilist: Moved ...
5921 * sysdeps/unix/sysv/linux/sparc/sparc32/libdl.abilist: ... here.
5922 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libm.abilist: Moved ...
5923 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: ... here.
5924 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libnsl.abilist: Moved ...
5925 * sysdeps/unix/sysv/linux/sparc/sparc32/libnsl.abilist: ... here.
5926 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
5927 Moved ...
5928 * sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist: ... here.
5929 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libresolv.abilist:
5930 Moved ...
5931 * sysdeps/unix/sysv/linux/sparc/sparc32/libresolv.abilist: ... here.
5932 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/librt.abilist: Moved ...
5933 * sysdeps/unix/sysv/linux/sparc/sparc32/librt.abilist: ... here.
5934 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libthread_db.abilist:
5935 Moved ...
5936 * sysdeps/unix/sysv/linux/sparc/sparc32/libthread_db.abilist: ... here.
5937 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libutil.abilist: Moved ...
5938 * sysdeps/unix/sysv/linux/sparc/sparc32/libutil.abilist: ... here.
5939 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/localplt.data: Moved ...
5940 * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: ... here.
5941 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/c++-types.data: Moved ...
5942 * sysdeps/unix/sysv/linux/sparc/sparc64/c++-types.data: ... here.
5943 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/ld.abilist: Moved ...
5944 * sysdeps/unix/sysv/linux/sparc/sparc64/ld.abilist: ... here.
5945 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libBrokenLocale.abilist:
5946 Moved ...
5947 * sysdeps/unix/sysv/linux/sparc/sparc64/libBrokenLocale.abilist:
5948 ... here.
5949 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libanl.abilist: Moved ...
5950 * sysdeps/unix/sysv/linux/sparc/sparc64/libanl.abilist: ... here.
5951 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Moved ...
5952 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: ... here.
5953 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist:
5954 Moved ...
5955 * sysdeps/unix/sysv/linux/sparc/sparc64/libcrypt.abilist: ... here.
5956 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libdl.abilist: Moved ...
5957 * sysdeps/unix/sysv/linux/sparc/sparc64/libdl.abilist: ... here.
5958 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libm.abilist: Moved ...
5959 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: ... here.
5960 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libnsl.abilist: Moved ...
5961 * sysdeps/unix/sysv/linux/sparc/sparc64/libnsl.abilist: ... here.
5962 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
5963 Moved ...
5964 * sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist: ... here.
5965 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libresolv.abilist:
5966 Moved ...
5967 * sysdeps/unix/sysv/linux/sparc/sparc64/libresolv.abilist: ... here.
5968 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/librt.abilist: Moved ...
5969 * sysdeps/unix/sysv/linux/sparc/sparc64/librt.abilist: ... here.
5970 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libthread_db.abilist:
5971 Moved ...
5972 * sysdeps/unix/sysv/linux/sparc/sparc64/libthread_db.abilist: ... here.
5973 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libutil.abilist: Moved ...
5974 * sysdeps/unix/sysv/linux/sparc/sparc64/libutil.abilist: ... here.
5975 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/localplt.data: Moved ...
5976 * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data: ... here.
5977
59782014-06-25 Joseph Myers <joseph@codesourcery.com>
5979
5980 * timezone/checktab.awk: Update from tzcode 2014e.
5981 * timezone/private.h: Likewise.
5982 * timezone/tzfile.h: Likewise.
5983 * timezone/zdump.c: Likewise.
5984 * timezone/zic.c: Likewise.
5985
5986 * sysdeps/unix/sysv/linux/kernel-features.h
5987 (__ASSUME_XFS_RESTRICTED_CHOWN): Remove macro.
5988 * sysdeps/unix/sysv/linux/pathconf.c (__statfs_chown_restricted)
5989 [__ASSUME_XFS_RESTRICTED_CHOWN]: Make code unconditional.
5990 (__statfs_chown_restricted) [!__ASSUME_XFS_RESTRICTED_CHOWN]:
5991 Remove conditional code.
5992
59932014-06-25 Will Newton <will.newton@linaro.org>
5994
5995 * sysdeps/unix/sysv/linux/arm/dl-procinfo.c
5996 (_dl_arm_cap_flags): Add HWCAP2 values.
5997 * sysdeps/unix/sysv/linux/arm/dl-procinfo.h
5998 (_DL_HWCAP_COUNT): Increase to 37.
5999 (_DL_HWCAP_LAST): New define.
6000 (_DL_HWCAP2_LAST): New define.
6001 (_dl_procinfo): Add support for printing
6002 AT_HWCAP2 entries.
6003 (_dl_string_hwcap): Use _dl_hwcap_string.
6004
60052014-06-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
6006
6007 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
6008
60092014-06-25 Joseph Myers <joseph@codesourcery.com>
6010
6011 * README: Do not mention ports directory.
6012
6013 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMENSAT):
6014 Remove macro.
6015 * sysdeps/unix/sysv/linux/futimes.c: Do not include
6016 <kernel-features.h>.
6017 [__NR_utimensat && !__ASSUME_UTIMENSAT] (miss_utimensat): Remove
6018 conditional variable definition.
6019 (__futimes): Update comment.
6020 (__futimes) [__ASSUME_UTIMENSAT]: Make code unconditional.
6021 (__futimes) [!__ASSUME_UTIMENSAT]: Remove conditional code.
6022
6023 [BZ #16560]
6024 * sysdeps/ieee754/dbl-64/e_exp10.c (__ieee754_exp10): Return 1 for
6025 arguments close to 0.
6026 * sysdeps/ieee754/ldbl-128/e_exp10l.c (__ieee754_exp10l):
6027 Likewise.
6028 * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c (__ieee754_exp10l):
6029 Likewise.
6030 * math/auto-libm-test-in: Add more tests of exp10.
6031 * math/auto-libm-test-out: Regenerated.
6032 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
6033
6034 * sysdeps/unix/sysv/linux/kernel-features.h
6035 (__ASSUME_COMPLETE_READV_WRITEV): Remove macro.
6036 * sysdeps/unix/sysv/linux/readv.c: Do not include
6037 <kernel-features.h>.
6038 [!__ASSUME_COMPLETE_READV_WRITEV]: Remove conditional code.
6039 [!UIO_FASTIOV] (UIO_FASTIOV): Remove macro.
6040 (__libc_readv) [__ASSUME_COMPLETE_READV_WRITEV]: Make code
6041 unconditional.
6042 (__libc_readv) [!__ASSUME_COMPLETE_READV_WRITEV]: Remove
6043 conditional code.
6044 * sysdeps/unix/sysv/linux/writev.c: Do not include
6045 <kernel-features.h>.
6046 [!__ASSUME_COMPLETE_READV_WRITEV]: Remove conditional code.
6047 [!UIO_FASTIOV] (UIO_FASTIOV): Remove macro.
6048 (__libc_writev) [__ASSUME_COMPLETE_READV_WRITEV]: Make code
6049 unconditional.
6050 (__libc_writev) [!__ASSUME_COMPLETE_READV_WRITEV]: Remove
6051 conditional code.
6052
60532014-06-25 Will Newton <will.newton@linaro.org>
6054
6055 * sysdeps/posix/tempname.c: Merge from gnulib, cosmetic
6056 comment changes throughout the file. Remove checks
6057 for HAVE_*_H definitions that are not required.
6058 (__gen_tempname): Call abort if an unknown kind value is
6059 passed.
6060
60612014-06-25 Andreas Schwab <schwab@suse.de>
6062
6063 [BZ #17086]
6064 * sysdeps/m68k/m680x0/fpu/s_scalbn.c: Add compat symbols for
6065 scalbln, scalblnf, scalblnl in libc.
6066
60672014-06-25 Siddhesh Poyarekar <siddhesh@redhat.com>
6068
6069 [BZ #17086]
6070 * sysdeps/i386/fpu/s_scalbn.S: Add compat symbol for libc.so.
6071 * sysdeps/i386/fpu/s_scalbnf.S: Likewise.
6072 * sysdeps/i386/fpu/s_scalbnl.S: Likewise.
6073
60742014-06-24 Roland McGrath <roland@hack.frob.com>
6075
6076 * sysdeps/i386/i486/nptl/pthread_spin_trylock.S: Moved ...
6077 * sysdeps/i386/i486/pthread_spin_trylock.S: ... here.
6078 * sysdeps/i386/i586/nptl/pthread_spin_trylock.S: Moved ...
6079 * sysdeps/i386/i586/pthread_spin_trylock.S: ... here.
6080 Update #include.
6081 * sysdeps/i386/i686/nptl/pthread_spin_trylock.S: Moved ...
6082 * sysdeps/i386/i686/pthread_spin_trylock.S: ... here.
6083 Update #include.
6084 * sysdeps/x86_64/64/nptl/shlib-versions: Moved ...
6085 * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: ... here.
6086 * sysdeps/x86_64/x32/nptl/shlib-versions: Moved ...
6087 * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: ... here.
6088 * sysdeps/x86/nptl/bits/pthreadtypes.h: Moved ...
6089 * sysdeps/x86/bits/pthreadtypes.h: ... here.
6090 * sysdeps/x86/nptl/bits/semaphore.h: Moved ...
6091 * sysdeps/x86/bits/semaphore.h: ... here.
6092 * sysdeps/x86/nptl/elide.h: Moved ...
6093 * sysdeps/x86/elide.h: ... here.
6094 * sysdeps/x86_64/nptl/Implies: File removed.
6095 * sysdeps/i386/nptl/Implies: File removed.
6096
60972014-06-24 Joseph Myers <joseph@codesourcery.com>
6098
6099 [BZ #16539]
6100 * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]: Just
6101 return the argument for normal arguments with exponent below -64.
6102 * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]:
6103 Likewise.
6104 * math/auto-libm-test-in: Add another test of expm1.
6105 * math/auto-libm-test-out: Regenerated.
6106
6107 [BZ #16287]
6108 * sysdeps/ieee754/ldbl-128/s_erfl.c (__erfl): Return 1 without
6109 calling __erfcl for arguments at least 16.
6110 * math/auto-libm-test-in: Add more tests of erf.
6111 * math/auto-libm-test-out: Regenerated.
6112
6113 * sysdeps/unix/sysv/linux/configure.ac: Remove cases for
6114 individual architectures.
6115 * sysdeps/unix/sysv/linux/configure: Regenerated.
6116 * sysdeps/unix/sysv/linux/i386/configure.ac: New file.
6117 * sysdeps/unix/sysv/linux/i386/configure: New generated file.
6118 * sysdeps/unix/sysv/linux/powerpc/configure.ac
6119 (ldd_rewrite_script): Define variable.
6120 * sysdeps/unix/sysv/linux/powerpc/configure: Regenerated.
6121 * sysdeps/unix/sysv/linux/powerpc/powerpc32/configure.ac: New
6122 file.
6123 * sysdeps/unix/sysv/linux/powerpc/powerpc32/configure: New
6124 generated file.
6125 * sysdeps/unix/sysv/linux/s390/configure.ac: New file.
6126 * sysdeps/unix/sysv/linux/s390/configure: New generated file.
6127 * sysdeps/unix/sysv/linux/sh/configure.ac: New file.
6128 * sysdeps/unix/sysv/linux/sh/configure: New generated file.
6129 * sysdeps/unix/sysv/linux/sparc/configure.ac: New file.
6130 * sysdeps/unix/sysv/linux/sparc/configure: New generated file.
6131 * sysdeps/unix/sysv/linux/x86_64/configure.ac: New file.
6132 * sysdeps/unix/sysv/linux/x86_64/configure: New generated file.
6133
61342014-06-24 Siddhesh Poyarekar <siddhesh@redhat.com>
6135
6136 [BZ #17084]
6137 * sysdeps/x86/nptl/bits/pthreadtypes.h (pthread_mutex_t):
6138 Rename member __data.d to __data.__elision_data.
6139
61402014-06-24 Wilco <wdijkstr@arm.com>
6141
6142 * NEWS: Add 16918 to fixed bug list.
6143
61442014-06-24 Wilco <wdijkstr@arm.com>
6145
6146 * sysdeps/arm/fesetenv.c (fesetenv): Optimize implementation.
6147
61482014-06-24 Wilco <wdijkstr@arm.com>
6149
6150 * sysdeps/arm/fpu_control.h (_FPU_MASK_RM): Define.
6151 * sysdeps/arm/fenv_private.h (libc_fesetround_vfp)
6152 (libc_feholdexcept_setround_vfp) (libc_feholdsetround_vfp)
6153 (libc_feresetround_vfp) (libc_feholdsetround_vfp_ctx)
6154 (libc_feresetround_vfp_ctx): Use _FPU_MASK_RM.
6155 * sysdeps/arm/fesetround.c (fesetround): Use _FPU_MASK_RM.
6156 * sysdeps/arm/get-rounding-mode.h (get_rounding_mode):
6157 Use _FPU_MASK_RM.
6158
61592014-06-24 Wilco <wdijkstr@arm.com>
6160
6161 * sysdeps/arm/fsetexcptflg.c (fesetexceptflag): Remove unused include.
6162
61632014-06-24 Wilco <wdijkstr@arm.com>
6164
6165 * sysdeps/arm/feholdexcpt.c (feholdexcept): Remove space.
6166 * sysdeps/arm/fesetenv.c (fesetenv): Remove space.
6167 * sysdeps/arm/fesetround.c (fesetround): Remove space.
6168 * sysdeps/arm/fraiseexcpt.c (feraiseexcept): Remove space.
6169
61702014-06-24 Wilco <wdijkstr@arm.com>
6171
6172 [BZ #16918]
6173 * sysdeps/arm/feupdateenv.c (feupdateenv):
6174 Rewrite to reduce FPSCR accesses and fix return value.
6175
61762014-06-24 Wilco <wdijkstr@arm.com>
6177
6178 * sysdeps/arm/fclrexcpt.c (feclearexcept):
6179 Optimize to avoid unnecessary FPSCR writes.
6180 * sysdeps/arm/fedisblxcpt.c (fedisableexcept): Likewise.
6181 * sysdeps/arm/feenablxcpt.c (feenableexcept): Likewise.
6182 * sysdeps/arm/fsetexcptflg.c (fesetexceptflag): Likewise.
6183 * sysdeps/arm/setfpucw.c (__setfpucw): Likewise.
6184
61852014-06-24 Wilco <wdijkstr@arm.com>
6186
6187 * sysdeps/arm/fegetround.c (fegetround): Call get_rounding_mode.
6188 * sysdeps/arm/feholdexcpt.c (feholdexcept): Call libc_feholdexcept_vfp.
6189 * sysdeps/arm/fesetround.c (fesetround): Call libc_fesetround_vfp.
6190 * sysdeps/arm/fgetexcptflg.c (fegetexceptflag):
6191 Call libc_fetestexcept_vfp.
6192 * sysdeps/arm/ftestexcept.c (fetestexcept): Call libc_fetestexcept_vfp.
6193 * sysdeps/arm/fenv_private.h: Move libc_*_vfp functions outside of
6194 __SOFTFP__ ifdef so that they can be built for softfp.
6195
61962014-06-24 Siddhesh Poyarekar <siddhesh@redhat.com>
6197
6198 * sysdeps/x86/nptl/elide.h (elision_adapt): Make first
6199 argument type signed char.
6200
6201 * Makerules (check-abi): Dump diff of symlist if the test
6202 fails.
6203
62042014-06-23 Roland McGrath <roland@hack.frob.com>
6205
6206 * sysdeps/generic/get-rounding-mode.h: Include <stdlib.h> before
6207 using abort.
6208
6209 * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
6210 Remove unused variable ST.
6211
62122014-06-23 Joseph Myers <joseph@codesourcery.com>
6213
6214 [BZ #16354]
6215 [BZ #17061]
6216 * sysdeps/ieee754/dbl-64/e_cosh.c (__ieee754_cosh): Check for
6217 small arguments before calling __expm1.
6218 * sysdeps/ieee754/flt-32/e_coshf.c (__ieee754_coshf): Check for
6219 small arguments before calling __expm1f.
6220 * sysdeps/ieee754/ldbl-128/e_coshl.c (__ieee754_coshl): Check for
6221 small arguments before calling __expm1l.
6222 * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl):
6223 Likewise.
6224 * sysdeps/ieee754/ldbl-96/e_coshl.c (__ieee754_coshl): Likewise.
6225 * math/auto-libm-test-in: Add more cosh tests. Do not allow
6226 spurious underflow for some cosh tests.
6227 * math/auto-libm-test-out: Regenerated.
6228 * sysdeps/i386/fpu/libm-test-ulps: Update.
6229
6230 [BZ #17050]
6231 * sysdeps/ieee754/dbl-64/e_j1.c: Include <errno.h>.
6232 (__ieee754_y1): Set errno if return value overflows.
6233 * sysdeps/ieee754/flt-32/e_j1f.c: Include <errno.h>.
6234 (__ieee754_y1f): Set errno if return value overflows.
6235 * sysdeps/ieee754/ldbl-128/e_j1l.c: Include <errno.h>.
6236 (__ieee754_y1l): Set errno if return value overflows.
6237 * sysdeps/ieee754/ldbl-96/e_j1l.c: Include <errno.h>.
6238 (__ieee754_y1l): Set errno if return value overflows.
6239 * math/auto-libm-test-in: Add more tests of y0, y1 and yn.
6240 * math/auto-libm-test-out: Regenerated.
6241
6242 * math/gen-auto-libm-tests.c: Document use of
6243 ignore-zero-inf-sign.
6244 (input_flag_type): Add value flag_ignore_zero_inf_sign.
6245 (input_flags): Add ignore-zero-inf-sign.
6246 (output_for_one_input_case): Handle flag_ignore_zero_inf_sign.
6247 * math/gen-libm-test.pl (generate_testfile): Handle
6248 ignore-zero-inf-sign.
6249 * math/auto-libm-test-in: Mark some cpow tests with
6250 ignore-zero-inf-sign and some with xfail-rounding.
6251 * math/auto-libm-test-out: Regenerated.
6252 * math/libm-test.inc (cpow_test): Use ALL_RM_TEST.
6253 * sysdeps/i386/fpu/libm-test-ulps: Update.
6254 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
6255
6256 [BZ #16315]
6257 * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Ensure possibly
6258 overflowing or underflowing operations take place with sign of
6259 result.
6260 * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
6261 * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
6262 * sysdeps/ieee754/dbl-64/e_pow.c: Include <math.h>.
6263 (__ieee754_pow): Recompute overflowing and underflowing results in
6264 original rounding mode.
6265 * sysdeps/x86/fpu/powl_helper.c: Include <stdbool.h>.
6266 (__powl_helper): Allow negative argument X and scale negated value
6267 as needed. Avoid passing value outside [-1, 1] to f2xm1.
6268 * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Ensure possibly
6269 overflowing or underflowing operations take place with sign of
6270 result.
6271 * sysdeps/x86_64/fpu/multiarch/e_pow.c [HAVE_FMA4_SUPPORT]:
6272 Include <math.h>.
6273 * math/auto-libm-test-in: Add more tests of pow.
6274 * math/auto-libm-test-out: Regenerated.
6275 * math/libm-test.inc (pow_test): Use ALL_RM_TEST.
6276 (pow_tonearest_test_data): Remove.
6277 (pow_test_tonearest): Likewise.
6278 (pow_towardzero_test_data): Likewise.
6279 (pow_test_towardzero): Likewise.
6280 (pow_downward_test_data): Likewise.
6281 (pow_test_downward): Likewise.
6282 (pow_upward_test_data): Likewise.
6283 (pow_test_upward): Likewise.
6284 (main): Don't call removed functions.
6285 * sysdeps/i386/fpu/libm-test-ulps: Update.
6286 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
6287
62882014-06-23 Roland McGrath <roland@hack.frob.com>
6289
6290 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/c++-types.data:
6291 Moved ...
6292 * sysdeps/unix/sysv/linux/powerpc/powerpc32/c++-types.data: ... here.
6293 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
6294 Moved ...
6295 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist: ... here.
6296 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libm.abilist:
6297 Moved ...
6298 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: ... here.
6299 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/localplt.data:
6300 Moved ...
6301 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data: ... here.
6302 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/c++-types.data:
6303 File removed.
6304 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/ld.abilist:
6305 File removed.
6306 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libBrokenLocale.abilist:
6307 File removed.
6308 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libanl.abilist:
6309 File removed.
6310 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libcrypt.abilist:
6311 File removed.
6312 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libdl.abilist:
6313 File removed.
6314 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libnsl.abilist:
6315 File removed.
6316 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
6317 File removed.
6318 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libresolv.abilist:
6319 File removed.
6320 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/librt.abilist:
6321 File removed.
6322 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libthread_db.abilist:
6323 File removed.
6324 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libutil.abilist:
6325 File removed.
6326 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/ld.abilist:
6327 Moved ...
6328 * sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist: ... here.
6329 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libBrokenLocale.abilist:
6330 Moved ...
6331 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libBrokenLocale.abilist:
6332 ... here.
6333 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libanl.abilist:
6334 Moved ...
6335 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libanl.abilist: ... here.
6336 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libcrypt.abilist:
6337 Moved ...
6338 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libcrypt.abilist: ... here.
6339 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libdl.abilist:
6340 Moved ...
6341 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libdl.abilist: ... here.
6342 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libnsl.abilist:
6343 Moved ...
6344 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libnsl.abilist: ... here.
6345 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libpthread.abilist:
6346 Moved ...
6347 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist: ... here.
6348 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libresolv.abilist:
6349 Moved ...
6350 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libresolv.abilist: ... here.
6351 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/librt.abilist:
6352 Moved ...
6353 * sysdeps/unix/sysv/linux/powerpc/powerpc32/librt.abilist: ... here.
6354 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libthread_db.abilist: Moved ...
6355 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libthread_db.abilist:
6356 ... here.
6357 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libutil.abilist:
6358 Moved ...
6359 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libutil.abilist: ... here.
6360 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libc.abilist:
6361 Moved ...
6362 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
6363 ... here.
6364 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libm.abilist:
6365 Moved ...
6366 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
6367 ... here.
6368 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
6369 Moved ...
6370 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data:
6371 ... here.
6372 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/c++-types.data:
6373 Moved ...
6374 * sysdeps/unix/sysv/linux/powerpc/powerpc64/c++-types.data: ... here.
6375 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist:
6376 Moved ...
6377 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist: ... here.
6378 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist: Moved ...
6379 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist: ... here.
6380 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist:
6381 Moved ...
6382 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale-le.abilist:
6383 ... here.
6384 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale.abilist:
6385 Moved ...
6386 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale.abilist:
6387 ... here.
6388 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist:
6389 Moved ...
6390 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl-le.abilist: ... here.
6391 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl.abilist:
6392 Moved ...
6393 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl.abilist: ... here.
6394 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist:
6395 Moved ...
6396 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist: ... here.
6397 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
6398 Moved ...
6399 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: ... here.
6400 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist:
6401 Moved ...
6402 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt-le.abilist:
6403 ... here.
6404 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist:
6405 Moved ...
6406 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt.abilist: ... here.
6407 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist:
6408 Moved ...
6409 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl-le.abilist: ... here.
6410 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl.abilist:
6411 Moved ...
6412 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl.abilist: ... here.
6413 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist:
6414 Moved ...
6415 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: ... here.
6416 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist: Moved ...
6417 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: ... here.
6418 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist:
6419 Moved ...
6420 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl-le.abilist: ... here.
6421 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl.abilist:
6422 Moved ...
6423 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl.abilist: ... here.
6424 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist:
6425 Moved ...
6426 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread-le.abilist:
6427 ... here.
6428 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
6429 Moved ...
6430 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread.abilist:
6431 ... here.
6432 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist:
6433 Moved ...
6434 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv-le.abilist:
6435 ... here.
6436 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv.abilist:
6437 Moved ...
6438 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv.abilist: ... here.
6439 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist:
6440 Moved ...
6441 * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt-le.abilist: ... here.
6442 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt.abilist:
6443 Moved ...
6444 * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt.abilist: ... here.
6445 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist:
6446 Moved ...
6447 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db-le.abilist:
6448 ... here.
6449 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db.abilist:
6450 Moved ...
6451 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db.abilist:
6452 ... here.
6453 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist:
6454 Moved ...
6455 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil-le.abilist:
6456 ... here.
6457 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil.abilist:
6458 Moved ...
6459 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil.abilist: ... here.
6460 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/localplt.data:
6461 Moved ...
6462 * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data: ... here.
6463
64642014-06-23 Will Newton <will.newton@linaro.org>
6465 Wilco <wdijkstr@arm.com>
6466
6467 * sysdeps/generic/math_private.h: Add generic HAVE_RM_CTX
6468 implementation. Include get-rounding-mode.h.
6469 [!HAVE_RM_CTX]: Define HAVE_RM_CTX to zero.
6470 [!libc_feholdsetround_noex_ctx]: Define
6471 libc_feholdsetround_noex_ctx.
6472 [!libc_feholdsetround_noexf_ctx]: Define
6473 libc_feholdsetround_noexf_ctx.
6474 [!libc_feholdsetround_noexl_ctx]: Define
6475 libc_feholdsetround_noexl_ctx.
6476 (libc_feholdsetround_ctx): New function.
6477 (libc_feresetround_ctx): New function.
6478 (libc_feholdsetround_noex_ctx): New function.
6479 (libc_feresetround_noex_ctx): New function.
6480
64812014-06-23 Roland McGrath <roland@hack.frob.com>
6482
6483 * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h: Moved ...
6484 * sysdeps/mips/nptl/bits/pthreadtypes.h: ... here.
6485 * sysdeps/unix/sysv/linux/mips/nptl/bits/semaphore.h: Moved ...
6486 * sysdeps/mips/nptl/bits/semaphore.h: ... here.
6487 * sysdeps/unix/sysv/linux/mips/nptl/bits/local_lim.h: Moved ...
6488 * sysdeps/unix/sysv/linux/mips/bits/local_lim.h: ... here.
6489
6490 * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h: Moved ...
6491 * sysdeps/m68k/nptl/bits/pthreadtypes.h: ... here.
6492 * sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h: Moved ...
6493 * sysdeps/m68k/nptl/bits/semaphore.h: ... here.
6494 * sysdeps/unix/sysv/linux/m68k/nptl/c++-types.data: Moved ...
6495 * sysdeps/unix/sysv/linux/m68k/c++-types.data: ... here.
6496 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/bits/atomic.h: Moved ...
6497 * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h: ... here.
6498 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/ld.abilist: Moved ...
6499 * sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist: ... here.
6500 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libBrokenLocale.abilist:
6501 Moved ...
6502 * sysdeps/unix/sysv/linux/m68k/coldfire/libBrokenLocale.abilist:
6503 ... here.
6504 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libanl.abilist: Moved ...
6505 * sysdeps/unix/sysv/linux/m68k/coldfire/libanl.abilist: ... here.
6506 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libc.abilist: Moved ...
6507 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: ... here.
6508 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libcrypt.abilist:
6509 Moved ...
6510 * sysdeps/unix/sysv/linux/m68k/coldfire/libcrypt.abilist: ... here.
6511 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libdl.abilist: Moved ...
6512 * sysdeps/unix/sysv/linux/m68k/coldfire/libdl.abilist: ... here.
6513 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libm.abilist: Moved ...
6514 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: ... here.
6515 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libnsl.abilist: Moved ...
6516 * sysdeps/unix/sysv/linux/m68k/coldfire/libnsl.abilist: ... here.
6517 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libpthread.abilist:
6518 Moved ...
6519 * sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist: ... here.
6520 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libresolv.abilist:
6521 Moved ...
6522 * sysdeps/unix/sysv/linux/m68k/coldfire/libresolv.abilist: ... here.
6523 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/librt.abilist: Moved ...
6524 * sysdeps/unix/sysv/linux/m68k/coldfire/librt.abilist: ... here.
6525 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libthread_db.abilist:
6526 Moved ...
6527 * sysdeps/unix/sysv/linux/m68k/coldfire/libthread_db.abilist: ... here.
6528 * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libutil.abilist: Moved ...
6529 * sysdeps/unix/sysv/linux/m68k/coldfire/libutil.abilist: ... here.
6530 * sysdeps/unix/sysv/linux/m68k/nptl/localplt.data: Moved ...
6531 * sysdeps/unix/sysv/linux/m68k/localplt.data: ... here.
6532 * sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h: Moved ...
6533 * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: ... here.
6534 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/ld.abilist: Moved ...
6535 * sysdeps/unix/sysv/linux/m68k/m680x0/ld.abilist: ... here.
6536 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libBrokenLocale.abilist:
6537 Moved ...
6538 * sysdeps/unix/sysv/linux/m68k/m680x0/libBrokenLocale.abilist:
6539 ... here.
6540 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libanl.abilist: Moved ...
6541 * sysdeps/unix/sysv/linux/m68k/m680x0/libanl.abilist: ... here.
6542 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libc.abilist: Moved ...
6543 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: ... here.
6544 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libcrypt.abilist: Moved ...
6545 * sysdeps/unix/sysv/linux/m68k/m680x0/libcrypt.abilist: ... here.
6546 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libdl.abilist: Moved ...
6547 * sysdeps/unix/sysv/linux/m68k/m680x0/libdl.abilist: ... here.
6548 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libm.abilist: Moved ...
6549 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: ... here.
6550 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libnsl.abilist: Moved ...
6551 * sysdeps/unix/sysv/linux/m68k/m680x0/libnsl.abilist: ... here.
6552 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libpthread.abilist:
6553 Moved ...
6554 * sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist: ... here.
6555 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libresolv.abilist: Moved ...
6556 * sysdeps/unix/sysv/linux/m68k/m680x0/libresolv.abilist: ... here.
6557 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/librt.abilist: Moved ...
6558 * sysdeps/unix/sysv/linux/m68k/m680x0/librt.abilist: ... here.
6559 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libthread_db.abilist:
6560 Moved ...
6561 * sysdeps/unix/sysv/linux/m68k/m680x0/libthread_db.abilist: ... here.
6562 * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libutil.abilist: Moved ...
6563 * sysdeps/unix/sysv/linux/m68k/m680x0/libutil.abilist: ... here.
6564 * sysdeps/unix/sysv/linux/m68k/nptl/sysdep-cancel.h: Moved ...
6565 * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: ... here.
6566
6567 * sysdeps/unix/sysv/linux/sh/nptl/c++-types.data: Moved ...
6568 * sysdeps/unix/sysv/linux/sh/c++-types.data: ... here.
6569 * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: Moved ...
6570 * sysdeps/unix/sysv/linux/sh/ld.abilist: ... here.
6571 * sysdeps/unix/sysv/linux/sh/nptl/libBrokenLocale.abilist: Moved ...
6572 * sysdeps/unix/sysv/linux/sh/libBrokenLocale.abilist: ... here.
6573 * sysdeps/unix/sysv/linux/sh/nptl/libanl.abilist: Moved ...
6574 * sysdeps/unix/sysv/linux/sh/libanl.abilist: ... here.
6575 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Moved ...
6576 * sysdeps/unix/sysv/linux/sh/libc.abilist: ... here.
6577 * sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist: Moved ...
6578 * sysdeps/unix/sysv/linux/sh/libcrypt.abilist: ... here.
6579 * sysdeps/unix/sysv/linux/sh/nptl/libdl.abilist: Moved ...
6580 * sysdeps/unix/sysv/linux/sh/libdl.abilist: ... here.
6581 * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: Moved ...
6582 * sysdeps/unix/sysv/linux/sh/libm.abilist: ... here.
6583 * sysdeps/unix/sysv/linux/sh/nptl/libnsl.abilist: Moved ...
6584 * sysdeps/unix/sysv/linux/sh/libnsl.abilist: ... here.
6585 * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist: Moved ...
6586 * sysdeps/unix/sysv/linux/sh/libpthread.abilist: ... here.
6587 * sysdeps/unix/sysv/linux/sh/nptl/libresolv.abilist: Moved ...
6588 * sysdeps/unix/sysv/linux/sh/libresolv.abilist: ... here.
6589 * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: Moved ...
6590 * sysdeps/unix/sysv/linux/sh/librt.abilist: ... here.
6591 * sysdeps/unix/sysv/linux/sh/nptl/libthread_db.abilist: Moved ...
6592 * sysdeps/unix/sysv/linux/sh/libthread_db.abilist: ... here.
6593 * sysdeps/unix/sysv/linux/sh/nptl/libutil.abilist: Moved ...
6594 * sysdeps/unix/sysv/linux/sh/libutil.abilist: ... here.
6595
65962014-06-23 Joseph Myers <joseph@codesourcery.com>
6597
6598 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_GNU]
6599 (FALLOC_FL_COLLAPSE_RANGE): New macro.
6600 [__USE_GNU] (FALLOC_FL_ZERO_RANGE): Likewise.
6601 * sysdeps/unix/sysv/linux/bits/in.h (IP_PMTUDISC_OMIT): Likewise.
6602 (IPV6_PMTUDISC_INTERFACE): Likewise.
6603 (IPV6_PMTUDISC_OMIT): Likewise.
6604
66052014-06-23 Andreas Schwab <schwab@suse.de>
6606
6607 * nptl/sysdeps/unix/sysv/linux/mq_notify.c (init_mq_netlink):
6608 Remove unused errout label.
6609
66102014-06-23 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
6611
6612 * sysdeps/powerpc/bits/hwcap.h [PPC_FEATURE2_HAS_VEC_CRYPTO]: New
6613 macro: hardware supports Vector Crypto instructions.
6614
66152014-06-23 Will Newton <will.newton@linaro.org>
6616
6617 * elf/dl-lookup.c: Use __glibc_unlikely and __glibc_likely
6618 rather than __builtin_expect.
6619
6620 * elf/dl-lookup.c (undefined_msg): Remove variable.
6621 (_dl_lookup_symbol_x): Replace undefined_msg with string
6622 literal.
6623
6624 * elf/dl-lookup.c (do_lookup_unique): New function.
6625 (do_lookup_x): Move STB_GNU_UNIQUE handling code
6626 to a separate function.
6627
66282014-06-23 Andreas Schwab <schwab@suse.de>
6629
6630 [BZ #17079]
6631 * nss/nss_files/files-XXX.c (get_contents): Store overflow marker
6632 before reading the next line.
6633
66342014-06-23 Will Newton <will.newton@linaro.org>
6635
6636 * test-skeleton.c (signal_handler): Use printf and %m
6637 rather than perror. Use printf rather than fprintf to
6638 stderr. Use puts rather than fputs to stderr.
6639 (main): Likewise.
6640
66412014-06-22 Ludovic Courtès <ludo@gnu.org>
6642
6643 * nscd/nscd.c (thread_info_t): Remove typedef.
6644 (thread_info): Remove variable.
6645
66462014-06-21 Allan McRae <allan@archlinux.org>
6647
6648 * NEWS: Mention CVE-2014-4043.
6649
66502014-06-20 Roland McGrath <roland@hack.frob.com>
6651
6652 * nptl/sysdeps/unix/sysv/linux/smp.h: Moved ...
6653 * nptl/smp.h: ... here.
6654
6655 * nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h: File removed.
6656
6657 * include/libc-symbols.h (HAVE_CONFIG_H, STDC_HEADERS): New macros.
6658 * catgets/Makefile (catgets-CPPFLAGS): Remove -DHAVE_CONFIG_H.
6659 * locale/Makefile (CPPFLAGS-locale-programs): Likewise.
6660 * stdlib/strtol_l.c [_LIBC] (STDC_HEADERS): Don't define it.
6661
6662 * nptl/allocatestack.c: Include <stack-aliasing.h>.
6663 * nptl/stack-aliasing.h: New file.
6664 * sysdeps/i386/i686/stack-aliasing.h: New file.
6665 * sysdeps/i386/i686/nptl/Makefile: File removed.
6666 * sysdeps/x86_64/stack-aliasing.h: New file.
6667 * sysdeps/x86_64/nptl/Makefile
6668 (CFLAGS-pthread_create.c): Variable removed.
6669
6670 * nptl/sysdeps/unix/sysv/linux/bits/local_lim.h: Moved ...
6671 * sysdeps/unix/sysv/linux/bits/local_lim.h: ... here, replacing the
6672 old file.
6673 * nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h: Moved ...
6674 * sysdeps/unix/sysv/linux/bits/posix_opt.h: ... here, replacing the
6675 old file.
6676
66772014-06-21 Joseph Myers <joseph@codesourcery.com>
6678
6679 * sysdeps/unix/sysv/linux/arm/kernel-features.h
6680 (__ASSUME_SIGFRAME_V2): Remove macro.
6681 * sysdeps/unix/sysv/linux/arm/sigrestorer.S: Update comment.
6682 [!__ASSUME_SIGFRAME_V2]: Remove conditional code.
6683 (__default_sa_restorer_v2): Rename to __default_sa_restorer.
6684 (__default_rt_sa_restorer_v2): Rename to __default_rt_sa_restorer.
6685 * sysdeps/unix/sysv/linux/arm/sigaction.c (__default_sa_restorer):
6686 Declare as function. Remove conditional macro definitions.
6687 (__default_rt_sa_restorer): Likewise.
6688 (__default_sa_restorer_v1): Remove declaration.
6689 (__default_sa_restorer_v2): Likewise.
6690 (__default_rt_sa_restorer_v1): Likewise.
6691 (__default_rt_sa_restorer_v2): Likewise.
6692 * sysdeps/unix/sysv/linux/arm/Versions (GLIBC_PRIVATE): Remove
6693 __default_sa_restorer_v1, __default_rt_sa_restorer_v1,
6694 __default_sa_restorer_v2 and __default_rt_sa_restorer_v2.
6695
66962014-06-20 Roland McGrath <roland@hack.frob.com>
6697
6698 * sysdeps/unix/sysv/linux/sparc/Makefile [$(subdir) = nptl]
6699 (libpthread-routines): Add sysdep.
6700 * nptl/sysdeps/unix/sysv/linux/sparc/Makefile: File removed.
6701 * sysdeps/unix/sysv/linux/sparc/Versions
6702 (libpthread: GLIBC_2.3.3): New version set.
6703 * nptl/sysdeps/unix/sysv/linux/sparc/Versions: File removed.
6704 * nptl/sysdeps/unix/sysv/linux/sparc/aio_cancel.c: Moved ...
6705 * sysdeps/unix/sysv/linux/sparc/aio_cancel.c: ... here.
6706 * nptl/sysdeps/unix/sysv/linux/sparc/internaltypes.h: Moved ...
6707 * sysdeps/sparc/nptl/internaltypes.h: ... here. Use #include_next.
6708 * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_destroy.c:
6709 Moved ...
6710 * sysdeps/sparc/nptl/pthread_barrier_destroy.c: ... here.
6711 * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_init.c: Moved ...
6712 * sysdeps/sparc/nptl/pthread_barrier_init.c: ... here.
6713 * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_wait.c: Moved ...
6714 * sysdeps/sparc/nptl/pthread_barrier_wait.c: ... here.
6715 * nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c: Moved ...
6716 * sysdeps/sparc/nptl/sem_init.c: ... here.
6717 * nptl/sysdeps/unix/sysv/linux/sparc/sem_post.c: Moved ...
6718 * sysdeps/sparc/nptl/sem_post.c: ... here.
6719 * nptl/sysdeps/unix/sysv/linux/sparc/sem_timedwait.c: Moved ...
6720 * sysdeps/sparc/nptl/sem_timedwait.c: ... here.
6721 * nptl/sysdeps/unix/sysv/linux/sparc/sem_wait.c: Moved ...
6722 * sysdeps/sparc/nptl/sem_wait.c: ... here.
6723 * nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Moved ...
6724 * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: ... here.
6725 * sysdeps/sparc/sparc32/sparcv9/Makefile [$(subdir) = nptl]
6726 (libpthread-routines): Add cpu_relax.
6727 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/Makefile:
6728 File removed.
6729 * sysdeps/unix/sysv/linux/sparc/sparc64/Versions
6730 (librt: GLIBC_2.3.3): New version set.
6731 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Versions: File removed.
6732 * sysdeps/sparc/sparc64/nptl/Makefile: New file.
6733 * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile [$(subdir) = nptl]
6734 (CFLAGS-pause.c, CFLAGS-sigsuspend.c): New variables.
6735 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Makefile: File removed.
6736 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/lowlevellock.c: Moved ...
6737 * sysdeps/sparc/sparc32/nptl/lowlevellock.c: ... here.
6738 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_wait.c:
6739 Moved ...
6740 * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: ... here.
6741 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c: Moved ...
6742 * sysdeps/sparc/sparc32/nptl/sem_post.c: ... here.
6743 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_timedwait.c: Moved ...
6744 * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: ... here.
6745 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_trywait.c: Moved ...
6746 * sysdeps/sparc/sparc32/nptl/sem_trywait.c: ... here.
6747 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c: Moved ...
6748 * sysdeps/sparc/sparc32/nptl/sem_wait.c: ... here.
6749 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/cpu_relax.S:
6750 Moved ...
6751 * sysdeps/sparc/sparc32/sparcv9/nptl/cpu_relax.S: ... here.
6752 Update #include.
6753 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/pthread_barrier_wait.c:
6754 Moved ...
6755 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_barrier_wait.c: ... here.
6756 Update #include.
6757 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_post.c:
6758 Moved ...
6759 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_post.c: ... here.
6760 Update #include.
6761 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_timedwait.c:
6762 Moved ...
6763 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_timedwait.c: ... here.
6764 Update #include.
6765 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_trywait.c:
6766 Moved ...
6767 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_trywait.c: ... here.
6768 Update #include.
6769 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_wait.c:
6770 Moved ...
6771 * sysdeps/sparc/sparc32/sparcv9/nptl/sem_wait.c: ... here.
6772 Update #include.
6773 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/cpu_relax.S: Moved ...
6774 * sysdeps/sparc/sparc64/nptl/cpu_relax.S: ... here.
6775 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Moved ...
6776 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: ... here.
6777 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Moved ...
6778 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: ... here.
6779 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c: Moved ...
6780 * sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c: ... here.
6781 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c: Moved ...
6782 * sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c: ... here.
6783 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c:
6784 Moved ...
6785 * sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c: ... here.
6786 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c: Moved ...
6787 * sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c: ... here.
6788 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c: Moved ...
6789 * sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c: ... here.
6790
67912014-06-20 Joseph Myers <joseph@codesourcery.com>
6792
6793 * nptl/pthread_cond_wait.c: Include <kernel-features.h>.
6794 * nptl/pthread_rwlock_timedrdlock.c: Likewise.
6795 * nptl/pthread_rwlock_timedwrlock.c: Likewise.
6796 * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c: Likewise.
6797 * nscd/nscd.c: Likewise.
6798 * sysdeps/i386/nptl/tcb-offsets.sym: Likewise.
6799 * sysdeps/powerpc/nptl/tcb-offsets.sym: Likewise.
6800 * sysdeps/sh/nptl/tcb-offsets.sym: Likewise.
6801 * sysdeps/x86_64/nptl/tcb-offsets.sym: Likewise.
6802
6803 * nptl/sysdeps/unix/sysv/linux/mq_notify.c: Do not include
6804 <kernel-features.h>.
6805 (init_mq_netlink): Remove conditional have_sock_cloexec
6806 definitions. Remove code conditional on have_sock_cloexec < 0.
6807 (init_mq_netlink) [!SOCK_CLOEXEC]: Remove conditional code.
6808 (init_mq_netlink) [!__ASSUME_SOCK_CLOEXEC]: Likewise.
6809 * sysdeps/unix/sysv/linux/opensock.c: Do not include
6810 <kernel-features.h>.
6811 (__opensock) [SOCK_CLOEXEC]: Make code unconditional.
6812 (__opensock) [!__ASSUME_SOCK_CLOEXEC]: Remove conditional code.
6813
68142014-06-20 H.J. Lu <hongjiu.lu@intel.com>
6815
6816 * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
6817 Add tests for memset_chk and memset.
6818
6819 * sysdeps/x86_64/multiarch/init-arch.h (HAS_AVX2): Defined
6820 with AVX2_Usable.
6821
68222014-06-20 Maciej W. Rozycki <macro@codesourcery.com>
6823
6824 [BZ #16046]
6825 * elf/tst-dl-iter-static.c: New file.
6826 * elf/Makefile (tests-static): Add tst-dl-iter-static.
6827
6828 * stdlib/tst-qsort2.c (main): Fix off-by-one argc interpretation
6829 error.
6830
68312014-06-20 Joseph Myers <joseph@codesourcery.com>
6832
6833 * sysdeps/unix/sysv/linux/kernel-features.h
6834 (__ASSUME_F_GETOWN_EX): Remove macro.
6835 * sysdeps/unix/sysv/linux/fcntl.c: Do not include
6836 <kernel-features.h>.
6837 (miss_F_GETOWN_EX): Remove variable or macro.
6838 (do_fcntl): Do not check miss_F_GETOWN_EX.
6839 (do_fcntl) [!__ASSUME_F_GETOWN_EX]: Remove conditional code.
6840
6841 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_RANDOM):
6842 Remove macro.
6843 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard)
6844 [!__ASSUME_AT_RANDOM]: Remove conditional code.
6845 (_dl_setup_pointer_guard) [!__ASSUME_AT_RANDOM]: Likewise.
6846
6847 * sysdeps/unix/sysv/linux/kernel-features.h
6848 (__ASSUME_ADJ_OFFSET_SS_READ): Remove macro.
6849 * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME)
6850 [ADJ_OFFSET_SS_READ]: Make code unconditional.
6851 (ADJTIME) [!ADJ_OFFSET_SS_READ]: Remove conditional code.
6852
68532014-06-20 Maciej W. Rozycki <macro@codesourcery.com>
6854
6855 [BZ #17075]
6856 * sysdeps/arm/dl-machine.h (elf_machine_rel) <R_ARM_TLS_DESC>:
6857 Fix calculation of the symbol's value.
6858 * sysdeps/arm/tst-armtlsdescloc.c: New file.
6859 * sysdeps/arm/tst-armtlsdesclocmod.c: New file.
6860 * sysdeps/arm/tst-armtlsdescextnow.c: New file.
6861 * sysdeps/arm/tst-armtlsdescextlazymod.c: New file.
6862 * sysdeps/arm/tst-armtlsdescextlazy.c: New file.
6863 * sysdeps/arm/tst-armtlsdescextnowmod.c: New file.
6864 * sysdeps/arm/Makefile (tests): Add `tst-armtlsdesc',
6865 `tst-armtlsdescextnow' and `tst-armtlsdescextlazy'.
6866 (modules-names): Add `tst-armtlsdescmod',
6867 `tst-armtlsdescextlazymod' and `tst-armtlsdescextnowmod'.
6868 (CPPFLAGS-tst-armtlsdescextnowmod.c): New variable.
6869 (CPPFLAGS-tst-armtlsdescextlazymod.c): Likewise.
6870 (CFLAGS-tst-armtlsdesclocmod.c): Likewise.
6871 (CFLAGS-tst-armtlsdescextnowmod.c): Likewise.
6872 (CFLAGS-tst-armtlsdescextlazymod.c): Likewise.
6873 (LDFLAGS-tst-armtlsdescextnowmod.so): Likewise.
6874 ($(objpfx)tst-armtlsdescloc): New dependency.
6875 ($(objpfx)tst-armtlsdescextnow): Likewise.
6876 ($(objpfx)tst-armtlsdescextlazy): Likewise.
6877 * sysdeps/arm/configure.ac: Add a check for tools' GNU descriptor
6878 TLS scheme support.
6879 * sysdeps/arm/configure: Regenerate.
6880
68812014-06-20 Joseph Myers <joseph@codesourcery.com>
6882
6883 * include/fcntl.h (__atfct_seterrno): Remove prototype.
6884 (__atfct_seterrno_2): Likewise.
6885 * sysdeps/unix/sysv/linux/alpha/dl-fxstatat64.c: Do not include
6886 <kernel-features.h>.
6887 (__ASSUME_ATFCTS): Do not undefine and redefine.
6888 * sysdeps/unix/sysv/linux/alpha/fxstatat.c [__ASSUME_ATFCTS]
6889 (__have_atfcts): Remove conditional definition.
6890 (__fxstatat([__NR_fstatat64]: Make code unconditional.
6891 (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code and code
6892 unreachable if [__ASSUME_ATFCTS].
6893 * sysdeps/unix/sysv/linux/dl-fxstatat64.c (__ASSUME_ATFCTS): Do
6894 not undefine and redefine.
6895 * sysdeps/unix/sysv/linux/faccessat.c: Do not include
6896 <kernel-features.h>.
6897 (faccessat) [__NR_faccessat]: Make code unconditional.
6898 (faccessat) [!__ASSUME_ATFCTS]: Remove conditional code.
6899 * sysdeps/unix/sysv/linux/fchmodat.c: Do not include
6900 <kernel-features.h>.
6901 (fchmodat) [__NR_fchmodat]: Make code unconditional.
6902 (fchmodat) [!__ASSUME_ATFCTS]: Remove conditional code.
6903 * sysdeps/unix/sysv/linux/fchownat.c: Do not include
6904 <kernel-features.h>.
6905 (fchownat) [__NR_fchownat]: Make code unconditional.
6906 (fchownat) [!__ASSUME_ATFCTS]: Remove conditional code.
6907 * sysdeps/unix/sysv/linux/futimesat.c: Do not include
6908 <kernel-features.h>.
6909 (futimesat) [__NR_futimesat]: Make code unconditional.
6910 (futimesat) [!__ASSUME_ATFCTS]: Remove conditional code.
6911 * sysdeps/unix/sysv/linux/fxstatat.c: Do not include
6912 <kernel-features.h>.
6913 (__fxstatat) [__NR_newfstatat]: Make code unconditional.
6914 (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
6915 * sysdeps/unix/sysv/linux/fxstatat64.c: Do not include
6916 <kernel-features.h>.
6917 (__fxstatat64) [__NR_fstatat64]: Make code unconditional.
6918 (__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
6919 * sysdeps/unix/sysv/linux/i386/fchownat.c: Remove file.
6920 * sysdeps/unix/sysv/linux/i386/fxstatat.c: Do not include
6921 <kernel-features.h>.
6922 (__fxstatat) [__NR_fstatat64]: Make code unconditional.
6923 (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
6924 * sysdeps/unix/sysv/linux/linkat.c: Do not include
6925 <kernel-features.h>.
6926 (linkat) [__NR_linkat]: Make code unconditional.
6927 (linkat) [!__ASSUME_ATFCTS]: Remove conditional code.
6928 * sysdeps/unix/sysv/linux/m68k/fchownat.c: Remove file.
6929 * sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c: Do not include
6930 <kernel-features.h>.
6931 (__fxstatat64) [__NR_newfstatat]: Make code unconditional.
6932 (__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
6933 * sysdeps/unix/sysv/linux/mkdirat.c: Do not include
6934 <kernel-features.h>.
6935 (mkdirat) [__NR_mkdirat]: Make code unconditional.
6936 (mkdirat) [!__ASSUME_ATFCTS]: Remove conditional code.
6937 * sysdeps/unix/sysv/linux/openat.c: Do not include
6938 <kernel-features.h>.
6939 [!__ASSUME_ATFCTS] (__atfct_seterrno): Remove function.
6940 [!__ASSUME_ATFCTS] (__have_atfcts): Remove variable.
6941 (OPENAT_NOT_CANCEL) [__NR_openat]: Make code unconditional.
6942 (OPENAT_NOT_CANCEL) [!__ASSUME_ATFCTS]: Remove conditional code.
6943 * sysdeps/unix/sysv/linux/powerpc/fchownat.c: Remove file.
6944 * sysdeps/unix/sysv/linux/readlinkat.c: Do not include
6945 <kernel-features.h>.
6946 (readlinkat) [__NR_readlinkat]: Make code unconditional.
6947 (readlinkat) [!__ASSUME_ATFCTS]: Remove conditional code. Return
6948 result of INLINE_SYSCALL directly, not via int variable.
6949 * sysdeps/unix/sysv/linux/renameat.c: Do not include
6950 <kernel-features.h>.
6951 [!__ASSUME_ATFCTS] (__atfct_seterrno_2): Remove function.
6952 (renameat) [__NR_renameat]: Make code unconditional.
6953 (renameat) [!__ASSUME_ATFCTS]: Remove conditional code.
6954 * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Remove file.
6955 * sysdeps/unix/sysv/linux/sh/fchownat.c: Remove file.
6956 * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Remove file.
6957 * sysdeps/unix/sysv/linux/sparc/sparc64/dl-fxstatat64.c
6958 (__ASSUME_ATFCTS): Do not undefine and redefine.
6959 * sysdeps/unix/sysv/linux/symlinkat.c: Do not include
6960 <kernel-features.h>.
6961 (symlinkat) [__NR_symlinkat]: Make code unconditional.
6962 (symlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
6963 * sysdeps/unix/sysv/linux/unlinkat.c: Do not include
6964 <kernel-features.h>.
6965 (unlinkat) [__NR_unlinkat]: Make code unconditional.
6966 (unlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
6967 * sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c
6968 (__ASSUME_ATFCTS): Do not undefine and redefine.
6969 * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Do not include
6970 <kernel-features.h>.
6971 (__fxstatat) [__NR_newfstatat]: Make code unconditional.
6972 (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
6973 * sysdeps/unix/sysv/linux/xmknodat.c: Do not include
6974 <kernel-features.h>.
6975 (__xmknodat) [__NR_mknodat]: Make code unconditional.
6976 (__xmknodat) [!__ASSUME_ATFCTS]: Remove conditional code.
6977
69782014-06-20 H.J. Lu <hongjiu.lu@intel.com>
6979
6980 * sysdeps/x86_64/multiarch/rtld-strlen.S: Removed.
6981
69822014-06-20 Andreas Schwab <schwab@linux-m68k.org>
6983
6984 [BZ #17069]
6985 * posix/regcomp.c (parse_reg_exp): Deallocate partially
6986 constructed tree before returning error.
6987 * posix/bug-regexp36.c: Expand test case.
6988
69892014-06-20 Stefan Liebler <stli@linux.vnet.ibm.com>
6990
6991 [BZ #6803]
6992 * math/libm-test.inc (scalbln_test_date):
6993 Add errno expectations.
6994 * math/w_scalblnf.c: New File.
6995 Add wrapper which checks for setting errno to ERANGE.
6996 Add weak_alias for corresponding scalbln function.
6997 * math/w_scalbln.c: Likewise.
6998 * math/w_scalblnl.c: Likewise.
6999 * math/Makefile (libm-calls): Add w_scalbln.
7000 * sysdeps/ieee754/flt-32/s_scalblnf.c:
7001 Remove weak_alias for corresponding scalbln function.
7002 * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
7003 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: Likewise.
7004 * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
7005 * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
7006 * sysdeps/sparc/sparc64/soft-fp/s_scalblnl.c: Likewise.
7007 * sysdeps/i386/fpu/s_scalbnf.S: Likewise.
7008 * sysdeps/i386/fpu/s_scalbn.S: Likewise.
7009 * sysdeps/i386/fpu/s_scalbnl.S: Likewise.
7010 * sysdeps/m68k/m680x0/fpu/s_scalbn.c: Likewise.
7011 * sysdeps/ieee754/ldbl-64-128/s_scalblnl.c:
7012 Remove long_double_symbol for scalblnl function in libm, libc.
7013 * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: New File.
7014 Add wrapper which checks for setting errno to ERANGE.
7015 Add long_double_symbol for scalblnl function in libm, libc.
7016 * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c:
7017 Remove long_double_symbol for scalblnl in libm.
7018 * sysdeps/ieee754/ldbl-128ibm/w_scalblnl.c: New File.
7019 Add wrapper which checks for setting errno to ERANGE.
7020 Add long_double_symbol for scalblnl function in libm.
7021 * sysdeps/ia64/fpu/w_scalblnf.c: New File.
7022 Do not use wrapper because of own implementation.
7023
70242014-06-19 H.J. Lu <hongjiu.lu@intel.com>
7025
7026 * sysdeps/x86/nptl/bits/pthreadtypes.h (pthread_rwlock_t): Use
7027 3 bytes for __pad1 for x32.
7028 (__PTHREAD_RWLOCK_ELISION_EXTRA): Likewise.
7029
70302014-06-19 Ling Ma <ling.ml@alibaba-inc.com>
7031 H.J. Lu <hongjiu.lu@intel.com>
7032
7033 * sysdeps/x86_64/multiarch/Makefile: Add memset-avx2.
7034 * sysdeps/x86_64/multiarch/memset-avx2.S: New file.
7035 * sysdeps/x86_64/multiarch/memset.S: Likewise.
7036 * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
7037 * sysdeps/x86_64/multiarch/rtld-memset.S: Likewise.
7038
70392014-06-19 Andreas Schwab <schwab@linux-m68k.org>
7040
7041 [BZ #17069]
7042 * posix/regcomp.c (parse_expression): Deallocate partially
7043 constructed tree before returning error.
7044 * posix/Makefile.c (tests): Add bug-regex36.
7045 (generated): Add bug-regex36.mtrace.
7046 (tests-special): Add $(objpfx)bug-regex36-mem.out
7047 (bug-regex36-ENV): New variable.
7048 ($(objpfx)bug-regex36-mem.out): New rule.
7049 * posix/bug-regex36.c: New file.
7050
70512014-06-19 Will Newton <will.newton@linaro.org>
7052
7053 * malloc/malloc.c (systrim): If extra is zero then return
7054 early.
7055
70562014-06-19 Siddhesh Poyarekar <siddhesh@redhat.com>
7057
7058 * benchtests/Makefile ($(objpfx)bench-%.c): Remove $(.).
7059
70602014-06-19 Richard Earnshaw <rearnsha@arm.com>
7061
7062 * sysdeps/aarch64/strchr.S: New file.
7063
70642014-06-18 Joseph Myers <joseph@codesourcery.com>
7065
7066 [BZ #17022]
7067 * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Do not subtract 1
7068 from arguments -2 or below.
7069 * sysdeps/i386/i686/fpu/e_logl.S (__ieee754_logl): Likewise.
7070 * sysdeps/x86_64/fpu/e_logl.S (__ieee754_logl): Likewise.
7071
70722014-06-18 Andreas Schwab <schwab@suse.de>
7073
7074 [BZ #17062]
7075 * posix/fnmatch_loop.c (FCT): Rerrange loop for skipping over rest
7076 of a bracket expr not to run off the end of the string.
7077 * posix/Makefile (tests): Add tst-fnmatch3.
7078 * posix/tst-fnmatch3.c: New file.
7079
70802014-06-18 Joseph Myers <joseph@codesourcery.com>
7081
7082 * elf/Makefile ($(objpfx)tst-unused-dep.out): Use $(rtld-prefix).
7083 * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
7084 [$(cross-compiling) = no]: Likewise.
7085 * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
7086 [$(cross-compiling) = no]: Likewise.
7087
70882014-16-17 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
7089
7090 [BZ #17031]
7091 * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Consider the low
7092 double, adjusted for any remainder from the high double.
7093 * math/libm-test.inc (nearbyint): Add tests.
7094 (rint): Likewise.
7095
70962014-06-17 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
7097
7098 * nptl/sysdeps/powerpc/Makefile: Moved ...
7099 * sysdeps/powerpc/nptl/Makefile: ... here.
7100 * nptl/sysdeps/powerpc/pthread_spin_lock.c: Moved ...
7101 * sysdeps/powerpc/nptl/pthread_spin_lock.c: .. here.
7102 * nptl/sysdeps/powerpc/pthread_spin_trylock.c: Moved ...
7103 * sysdeps/powerpc/nptl/pthread_spin_trylock.c: ... here.
7104 * nptl/sysdeps/powerpc/pthreaddef.h: Moved ...
7105 * sysdeps/powerpc/nptl/pthreaddef.h: ... here.
7106 * nptl/sysdeps/powerpc/tcb-offsets.sym: Moved ...
7107 * sysdeps/powerpc/nptl/tcb-offsets.sym: ... here.
7108 * nptl/sysdeps/powerpc/tls.h: Moved ...
7109 * sysdeps/powerpc/nptl/tls.h: ... here.
7110
71112014-06-16 Joseph Myers <joseph@codesourcery.com>
7112
7113 [BZ #16681]
7114 * sysdeps/i386/fpu/s_ceil.S (__ceil): Add CFI.
7115 * sysdeps/i386/fpu/s_ceilf.S (__ceilf): Likewise.
7116 * sysdeps/i386/fpu/s_ceill.S (__ceill): Likewise.
7117 * sysdeps/i386/fpu/s_floor.S (__floor): Likewise.
7118 * sysdeps/i386/fpu/s_floorf.S (__floorf): Likewise.
7119 * sysdeps/i386/fpu/s_floorl.S (__floorl): Likewise.
7120 * sysdeps/i386/fpu/s_trunc.S (__trunc): Likewise.
7121 * sysdeps/i386/fpu/s_truncf.S (__truncf): Likewise.
7122 * sysdeps/i386/fpu/s_truncl.S (__truncl): Likewise.
7123
71242014-06-17 Andreas Schwab <schwab@linux-m68k.org>
7125
7126 * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
7127
71282014-06-16 Andreas Schwab <schwab@linux-m68k.org>
7129
7130 * sysdeps/m68k/m680x0/bits/huge_vall.h: Fix missing space after
7131 defined operator.
7132
7133 * scripts/cross-test-ssh.sh (timeoutfactor): Default to
7134 $TIMEOUTFACTOR.
7135
71362014-06-16 Florian Weimer <fweimer@redhat.com>
7137
7138 [BZ #17058]
7139 * nptl/tst-setuid2.c (do_test): Fix tautological comparison in
7140 non-executed part of the test.
7141
71422014-06-16 Andreas Schwab <schwab@suse.de>
7143
7144 * string/bits/string2.h (strdup, strndup): Update feature guard.
7145
71462014-06-14 David S. Miller <davem@davemloft.net>
7147
7148 * sysdeps/sparc/fpu/libm-test-ulps: Update.
7149
71502014-06-14 Andreas Schwab <schwab@linux-m68k.org>
7151
7152 * sysdeps/unix/sysv/linux/m68k/clone.S: Deconditionalize the code
7153 that was previously under [RESET_PID].
7154 * sysdeps/unix/sysv/linux/m68k/nptl/clone.S: Remove file.
7155
7156 * sysdeps/unix/sysv/linux/m68k/pt-vfork.c: New file.
7157 * sysdeps/unix/sysv/linux/m68k/nptl/pt-vfork.S: Remove file.
7158 * sysdeps/unix/sysv/linux/m68k/vfork.S: Include <tcb-offsets.h>.
7159 (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
7160 (__libc_vfork): New strong alias.
7161 * sysdeps/unix/sysv/linux/m68k/nptl/vfork.S: Remove file.
7162
71632014-06-14 Andi Kleen <ak@linux.intel.com>
7164
7165 * sysdeps/generic/elide.h: New file.
7166
71672014-06-13 Stefan Liebler <stli@linux.vnet.ibm.com>
7168
7169 * Makefile (installed-headers): Adjust path of pthread.h header.
7170
71712014-06-13 Roland McGrath <roland@hack.frob.com>
7172
7173 * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Moved ...
7174 * sysdeps/s390/nptl/bits/pthreadtypes.h: ... here.
7175 * nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h: Moved ...
7176 * sysdeps/s390/nptl/bits/semaphore.h: ... here.
7177
7178 * nptl/sysdeps/s390/Makefile: Moved ...
7179 * sysdeps/s390/nptl/Makefile: ... here.
7180 * nptl/sysdeps/s390/pthread_spin_init.c: Moved ...
7181 * sysdeps/s390/nptl/pthread_spin_init.c: ... here.
7182 * nptl/sysdeps/s390/pthread_spin_lock.c: Moved ...
7183 * sysdeps/s390/nptl/pthread_spin_lock.c: ... here.
7184 * nptl/sysdeps/s390/pthread_spin_trylock.c: Moved ...
7185 * sysdeps/s390/nptl/pthread_spin_trylock.c: ... here.
7186 * nptl/sysdeps/s390/pthread_spin_unlock.c: Moved ...
7187 * sysdeps/s390/nptl/pthread_spin_unlock.c: ... here.
7188 * nptl/sysdeps/s390/pthreaddef.h: Moved ...
7189 * sysdeps/s390/nptl/pthreaddef.h: ... here.
7190 * nptl/sysdeps/s390/tcb-offsets.sym: Moved ...
7191 * sysdeps/s390/nptl/tcb-offsets.sym: ... here.
7192 * nptl/sysdeps/s390/tls.h: Moved ...
7193 * sysdeps/s390/nptl/tls.h: ... here.
7194
7195 * sysdeps/unix/sysv/linux/s390/arch-fork.h: New file.
7196 * nptl/sysdeps/unix/sysv/linux/s390/fork.c: File removed.
7197
71982014-06-13 David S. Miller <davem@davemloft.net>
7199
7200 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: Delete.
7201 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pt-vfork.S: Delete.
7202 * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: Moved ...
7203 * sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: ... here.
7204 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Delete.
7205 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/pt-vfork.S: Delete.
7206 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: Moved ...
7207 * sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: ... here.
7208 * sysdeps/unix/sysv/linux/sparc/fork.S: Delete.
7209 * sysdeps/unix/sysv/linux/sparc/pt-vfork.S: New file.
7210 * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__thread_start):
7211 Remove RESET_PID cpp guards.
7212 * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__thread_start):
7213 Remove RESET_PID cpp guards.
7214 * sysdeps/unix/sysv/linux/sparc/vfork.S: Delete.
7215
72162014-06-13 Andreas Schwab <schwab@linux-m68k.org>
7217
7218 * sysdeps/m68k/jmpbuf-unwind.h (_JMPBUF_UNWINDS, _jmpbuf_sp): Cast
7219 __sp to uintptr_t.
7220
72212014-06-13 Andi Kleen <ak@linux.intel.com>
7222
7223 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: Remove.
7224 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S: dito.
7225 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S: dito.
7226 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: dito.
7227 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: dito.
7228 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S: dito.
7229 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S: dito.
7230 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S: dito.
7231 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S: dito.
7232 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S: dito.
7233 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S: dito.
7234 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S: dito.
7235 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S: dito.
7236 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S: dito.
7237 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S: dito.
7238 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: dito.
7239 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: dito.
7240 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S: dito.
7241 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: dito.
7242 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: dito.
7243
7244 * nptl/pthread_rwlock_rdlock.c: Include elide.h.
7245 (pthread_rwlock_rdlock): Add elision.
7246 * nptl/pthread_rwlock_wrlock.c: Include elide.h.
7247 (pthread_rwlock_wrlock): Add elision.
7248 * nptl/pthread_rwlock_trywrlock.c: Include elide.h.
7249 (pthread_rwlock_trywrlock): Add elision.
7250 * nptl/pthread_rwlock_tryrdlock.c: Include elide.h.
7251 (pthread_rwlock_tryrdlock): Add elision.
7252 * nptl/pthread_rwlock_unlock.c: Include elide.h.
7253 (pthread_rwlock_tryrdlock): Add elision unlock.
7254 * nptl/sysdeps/pthread/pthread.h:
7255 (__PTHREAD_RWLOCK_ELISION_EXTRA): Handle new define
7256 (PTHREAD_RWLOCK_INITIALIZER,
7257 PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP):
7258 Handle new elision field.
7259 * sysdeps/x86/nptl/elide.h: New file. Add generic elision macros.
7260 * sysdeps/arm/nptl/bits/pthreadtypes.h
7261 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
7262 * sysdeps/sh/nptl/bits/pthreadtypes.h
7263 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
7264 * sysdeps/tile/nptl/bits/pthreadtypes.h
7265 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
7266 * sysdeps/a/nptl/bits/pthreadtypes.h
7267 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
7268 * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h
7269 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
7270 * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h
7271 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
7272 * sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h
7273 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
7274 * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h
7275 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
7276 * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h
7277 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
7278 * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h
7279 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
7280 * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h
7281 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
7282 * sysdeps/unix/sysv/linux/powerpc/nptl/bits/pthreadtypes.h
7283 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
7284 * sysdeps/unix/sysv/linux/x86/elision-conf.c:
7285 (elision_init): Set try_xbegin to zero when no RTM.
7286 * sysdeps/x86/nptl/bits/pthreadtypes.h
7287 (pthread_rwlock_t): Change __pad1 to __rwelision.
7288 (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
7289
72902014-06-13 Andi Kleen <ak@linux.intel.com>
7291
7292 * nptl/pthread_rwlock_rdlock (__pthread_rwlock_rdlock):
7293 Split into __do_pthread_rwlock_rdlock and __pthread_rwlock_rdlock.
7294 * nptl/pthread_rwlock_wrlock (__pthread_rwlock_wrlock):
7295 Split into __do_pthread_rwlock_wrlock and __pthread_wrlock_rdlock.
7296
72972014-06-13 Meador Inge <meadori@codesourcery.com>
7298
7299 [BZ #16996]
7300 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Ensure
7301 that the cached result has been set before returning it.
7302
73032014-06-12 Roland McGrath <roland@hack.frob.com>
7304
7305 * nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Moved ...
7306 * sysdeps/sparc/nptl/bits/pthreadtypes.h: ... here.
7307 * nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h: Moved ...
7308 * sysdeps/sparc/nptl/bits/semaphore.h: ... here.
7309 * nptl/sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: Moved ...
7310 * sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: ... here.
7311
7312 * nptl/sysdeps/sparc/Makefile: Moved ...
7313 * sysdeps/sparc/nptl/Makefile: ... here.
7314 * nptl/sysdeps/sparc/tcb-offsets.sym: Moved ...
7315 * sysdeps/sparc/nptl/tcb-offsets.sym: ... here.
7316 * nptl/sysdeps/sparc/tls.h: Moved ...
7317 * sysdeps/sparc/nptl/tls.h: ... here.
7318 * nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S: Moved ...
7319 * sysdeps/sparc/sparc32/nptl/pthread_spin_lock.S: ... here.
7320 * nptl/sysdeps/sparc/sparc32/pthread_spin_trylock.S: Moved ...
7321 * sysdeps/sparc/sparc32/nptl/pthread_spin_trylock.S: ... here.
7322 * nptl/sysdeps/sparc/sparc32/pthreaddef.h: Moved ...
7323 * sysdeps/sparc/sparc32/nptl/pthreaddef.h: ... here.
7324 * nptl/sysdeps/sparc/sparc64/pthread_spin_init.c: Moved ...
7325 * sysdeps/sparc/sparc64/nptl/pthread_spin_init.c: ... here.
7326 * nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S: Moved ...
7327 * sysdeps/sparc/sparc64/nptl/pthread_spin_lock.S: ... here.
7328 * nptl/sysdeps/sparc/sparc64/pthread_spin_trylock.S: Moved ...
7329 * sysdeps/sparc/sparc64/nptl/pthread_spin_trylock.S: ... here.
7330 * nptl/sysdeps/sparc/sparc64/pthread_spin_unlock.S: Moved ...
7331 * sysdeps/sparc/sparc64/nptl/pthread_spin_unlock.S: ... here.
7332 * nptl/sysdeps/sparc/sparc64/pthreaddef.h: Moved ...
7333 * sysdeps/sparc/sparc64/nptl/pthreaddef.h: ... here.
7334 * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: Moved ...
7335 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_init.c: ... here.
7336 Update #include.
7337 * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: Moved ...
7338 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_lock.S: ... here.
7339 Update #include.
7340 * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: Moved ...
7341 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_trylock.S: ... here.
7342 Update #include.
7343 * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.S: Moved ...
7344 * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: ... here.
7345 Update #include.
7346
7347 * nptl/sysdeps/sparc/tls.h (TLS_DEFINE_INIT_TP): New macro.
7348
7349 * sysdeps/unix/sysv/linux/sparc/arch-fork.h: New file.
7350 * nptl/sysdeps/unix/sysv/linux/sparc/fork.c: File removed.
7351
7352 * sysdeps/pthread/posix-timer.h: Include <list.h>.
7353 (struct list_links): Type removed.
7354 (struct thread_node, struct timer_node): Replace struct list_links
7355 with struct list_head.
7356 (list_unlink_ip): Likewise.
7357 * sysdeps/pthread/timer_routines.c
7358 (timer_free_list, thread_free_list, thread_active_list): Likewise.
7359 (list_append, list_insbefore): Likewise.
7360 (list_init): Function removed.
7361 (thread_init, init_module): Use INIT_LIST_HEAD instead.
7362 * sysdeps/nptl/Makefile: Move tst-timer bits to ...
7363 * sysdeps/pthread/Makefile: ... here, new file.
7364
7365 * nptl/sysdeps/unix/sysv/linux/Implies: Moved ...
7366 * sysdeps/nptl/Implies: ... here.
7367 * sysdeps/unix/sysv/linux/Implies: Add nptl.
7368 * nptl/sysdeps/pthread/list.h: Moved ...
7369 * include/list.h: ... here.
7370 * nptl/sysdeps/pthread/createthread.c: Moved ...
7371 * nptl/createthread.c: ... here.
7372 * nptl/sysdeps/unix/sysv/linux/createthread.c: Update #include.
7373 * nptl/sysdeps/pthread/pt-longjmp.c: Moved ...
7374 * nptl/pt-longjmp.c: ... here.
7375 * nptl/sysdeps/pthread/Makefile: Moved ...
7376 * sysdeps/nptl/Makefile: ... here.
7377 * nptl/sysdeps/pthread/Subdirs: Moved ...
7378 * sysdeps/nptl/Subdirs: ... here.
7379 * nptl/sysdeps/pthread/aio_misc.h: Moved ...
7380 * sysdeps/nptl/aio_misc.h: ... here.
7381 * nptl/sysdeps/pthread/bits/libc-lock.h: Moved ...
7382 * sysdeps/nptl/bits/libc-lock.h: ... here.
7383 * nptl/sysdeps/pthread/bits/libc-lockP.h: Moved ...
7384 * sysdeps/nptl/bits/libc-lockP.h: ... here.
7385 * nptl/sysdeps/pthread/bits/stdio-lock.h: Moved ...
7386 * sysdeps/nptl/bits/stdio-lock.h: ... here.
7387 * nptl/sysdeps/pthread/configure: Moved ...
7388 * sysdeps/nptl/configure: ... here.
7389 * nptl/sysdeps/pthread/configure.ac: Moved ...
7390 * sysdeps/nptl/configure.ac: ... here.
7391 * nptl/sysdeps/pthread/gai_misc.h: Moved ...
7392 * sysdeps/nptl/gai_misc.h: ... here.
7393 * nptl/sysdeps/pthread/librt-cancellation.c: Moved ...
7394 * sysdeps/nptl/librt-cancellation.c: ... here.
7395 * nptl/sysdeps/pthread/malloc-machine.h: Moved ...
7396 * sysdeps/nptl/malloc-machine.h: ... here.
7397 * nptl/sysdeps/pthread/pthread-functions.h: Moved ...
7398 * sysdeps/nptl/pthread-functions.h: ... here.
7399 * nptl/sysdeps/pthread/pthread.h: Moved ...
7400 * sysdeps/nptl/pthread.h: ... here.
7401 * nptl/sysdeps/pthread/setxid.h: Moved ...
7402 * sysdeps/nptl/setxid.h: ... here.
7403 * nptl/sysdeps/pthread/sigfillset.c: Moved ...
7404 * sysdeps/nptl/sigfillset.c: ... here.
7405 * nptl/sysdeps/pthread/tcb-offsets.h: Moved ...
7406 * sysdeps/nptl/tcb-offsets.h: ... here.
7407 * nptl/sysdeps/pthread/tst-mqueue8x.c: Moved ...
7408 * sysdeps/nptl/tst-mqueue8x.c: ... here.
7409 * nptl/sysdeps/pthread/unwind-forcedunwind.c: Moved ...
7410 * sysdeps/nptl/unwind-forcedunwind.c: ... here.
7411 * nptl/sysdeps/pthread/allocalim.h: Moved ...
7412 * sysdeps/pthread/allocalim.h: ... here.
7413 * nptl/sysdeps/pthread/bits/sigthread.h: Moved ...
7414 * sysdeps/pthread/bits/sigthread.h: ... here.
7415 * nptl/sysdeps/pthread/flockfile.c: Moved ...
7416 * sysdeps/pthread/flockfile.c: ... here.
7417 * nptl/sysdeps/pthread/ftrylockfile.c: Moved ...
7418 * sysdeps/pthread/ftrylockfile.c: ... here.
7419 * nptl/sysdeps/pthread/funlockfile.c: Moved ...
7420 * sysdeps/pthread/funlockfile.c: ... here.
7421 * nptl/sysdeps/pthread/posix-timer.h: Moved ...
7422 * sysdeps/pthread/posix-timer.h: ... here.
7423 * nptl/sysdeps/pthread/timer_create.c: Moved ...
7424 * sysdeps/pthread/timer_create.c: ... here.
7425 * nptl/sysdeps/pthread/timer_delete.c: Moved ...
7426 * sysdeps/pthread/timer_delete.c: ... here.
7427 * nptl/sysdeps/pthread/timer_getoverr.c: Moved ...
7428 * sysdeps/pthread/timer_getoverr.c: ... here.
7429 * nptl/sysdeps/pthread/timer_gettime.c: Moved ...
7430 * sysdeps/pthread/timer_gettime.c: ... here.
7431 * nptl/sysdeps/pthread/timer_routines.c: Moved ...
7432 * sysdeps/pthread/timer_routines.c: ... here.
7433 * nptl/sysdeps/pthread/timer_settime.c: Moved ...
7434 * sysdeps/pthread/timer_settime.c: ... here.
7435 * nptl/sysdeps/pthread/tst-timer.c: Moved ...
7436 * sysdeps/pthread/tst-timer.c: ... here.
7437 * nptl/sysdeps/pthread/pthread_sigmask.c: Moved ...
7438 * sysdeps/unix/sysv/linux/pthread_sigmask.c: ... here.
7439
7440 * sysdeps/unix/sysv/linux/sigprocmask.c: Include <nptl/pthreadP.h>.
7441 * nptl/sysdeps/pthread/sigprocmask.c: File removed.
7442
7443 * nptl/sysdeps/i386/i486/pthread_spin_trylock.S: Moved ...
7444 * sysdeps/i386/i486/nptl/pthread_spin_trylock.S: ... here.
7445 * nptl/sysdeps/i386/i586/pthread_spin_trylock.S: Moved ...
7446 * sysdeps/i386/i586/nptl/pthread_spin_trylock.S: ... here.
7447 Update #include target.
7448 * nptl/sysdeps/i386/i686/Makefile: Moved ...
7449 * sysdeps/i386/i686/nptl/Makefile: ... here.
7450 * nptl/sysdeps/i386/i686/pthread_spin_trylock.S: Moved ...
7451 * sysdeps/i386/i686/nptl/pthread_spin_trylock.S: ... here.
7452 Update #include target.
7453 * nptl/sysdeps/i386/i686/tls.h: Moved ...
7454 * sysdeps/i386/i686/nptl/tls.h: ... here. Use #include_next.
7455 * nptl/sysdeps/i386/Makefile: Moved ...
7456 * sysdeps/i386/nptl/Makefile: ... here.
7457 * nptl/sysdeps/i386/pthread_spin_init.c: Moved ...
7458 * sysdeps/i386/nptl/pthread_spin_init.c: ... here.
7459 * sysdeps/x86_64/nptl/pthread_spin_init.c: Update #include target.
7460 * nptl/sysdeps/i386/pthread_spin_lock.S: Moved ...
7461 * sysdeps/i386/nptl/pthread_spin_lock.S: ... here.
7462 * nptl/sysdeps/i386/pthread_spin_unlock.S: Moved ...
7463 * sysdeps/i386/nptl/pthread_spin_unlock.S: ... here.
7464 * nptl/sysdeps/i386/pthreaddef.h: Moved ...
7465 * sysdeps/i386/nptl/pthreaddef.h: ... here.
7466 * nptl/sysdeps/i386/tcb-offsets.sym: Moved ...
7467 * sysdeps/i386/nptl/tcb-offsets.sym: ... here.
7468 * nptl/sysdeps/i386/tls.h: Moved ...
7469 * sysdeps/i386/nptl/tls.h: ... here.
7470
7471 * sysdeps/sh/Makefile [$(subdir) = csu]
7472 (gen-as-const-headers): Add tcb-offsets.sym.
7473 * nptl/sysdeps/sh/Makefile: File removed.
7474 * nptl/sysdeps/sh/pthread_spin_init.c: Moved ...
7475 * sysdeps/sh/nptl/pthread_spin_init.c: ... here.
7476 * nptl/sysdeps/sh/pthread_spin_lock.c: Moved ...
7477 * sysdeps/sh/nptl/pthread_spin_lock.c: ... here.
7478 * nptl/sysdeps/sh/pthread_spin_trylock.S: Moved ...
7479 * sysdeps/sh/nptl/pthread_spin_trylock.S: ... here.
7480 * nptl/sysdeps/sh/pthread_spin_unlock.S: Moved ...
7481 * sysdeps/sh/nptl/pthread_spin_unlock.S: ... here.
7482 * nptl/sysdeps/sh/pthreaddef.h: Moved ...
7483 * sysdeps/sh/nptl/pthreaddef.h: ... here.
7484 * nptl/sysdeps/sh/tcb-offsets.sym: Moved ...
7485 * sysdeps/sh/nptl/tcb-offsets.sym: ... here.
7486 * nptl/sysdeps/sh/tls.h: Moved ...
7487 * sysdeps/sh/nptl/tls.h: ... here.
7488 * nptl/sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: Moved ...
7489 * sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: ... here.
7490 * nptl/sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h: Moved ...
7491 * sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h: ... here.
7492 * nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.S: Moved ...
7493 * sysdeps/unix/sysv/linux/sh/lowlevellock.S: ... here.
7494 * nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.h: Moved ...
7495 * sysdeps/unix/sysv/linux/sh/lowlevellock.h: ... here.
7496 * nptl/sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: Moved ...
7497 * sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: ... here.
7498 * nptl/sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: Moved ...
7499 * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: ... here.
7500 * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: Moved ...
7501 * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: ... here.
7502 * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: Moved ...
7503 * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: ... here.
7504 * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Moved ...
7505 * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: ... here.
7506 * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Moved ...
7507 * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: ... here.
7508 * nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S: Moved ...
7509 * sysdeps/unix/sysv/linux/sh/pthread_once.S: ... here.
7510 * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Moved ...
7511 * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: ... here.
7512 * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S:
7513 Moved ...
7514 * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: ... here.
7515 * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S:
7516 Moved ...
7517 * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: ... here.
7518 * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: Moved ...
7519 * sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: ... here.
7520 * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Moved ...
7521 * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: ... here.
7522 * nptl/sysdeps/unix/sysv/linux/sh/sem_post.S: Moved ...
7523 * sysdeps/unix/sysv/linux/sh/sem_post.S: ... here.
7524 * nptl/sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Moved ...
7525 * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: ... here.
7526 * nptl/sysdeps/unix/sysv/linux/sh/sem_trywait.S: Moved ...
7527 * sysdeps/unix/sysv/linux/sh/sem_trywait.S: ... here.
7528 * nptl/sysdeps/unix/sysv/linux/sh/sem_wait.S: Moved ...
7529 * sysdeps/unix/sysv/linux/sh/sem_wait.S: ... here.
7530 * nptl/sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: Moved ...
7531 * sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: ... here.
7532 * nptl/sysdeps/unix/sysv/linux/sh/smp.h: Moved ...
7533 * sysdeps/unix/sysv/linux/sh/smp.h: ... here.
7534 * nptl/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Moved ...
7535 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: ... here.
7536
75372014-06-12 Stefan Liebler <stli@linux.vnet.ibm.com>
7538
7539 * posix/spawn_faction_addopen.c: Include string.h.
7540
75412014-06-11 Roland McGrath <roland@hack.frob.com>
7542
7543 * nptl/sysdeps/x86_64/64/shlib-versions: Moved ...
7544 * sysdeps/x86_64/64/nptl/shlib-versions: ... here.
7545 * nptl/sysdeps/x86_64/Makefile: Moved ...
7546 * sysdeps/x86_64/nptl/Makefile: ... here.
7547 * nptl/sysdeps/x86_64/configure: Moved ...
7548 * sysdeps/x86_64/nptl/configure: ... here.
7549 * nptl/sysdeps/x86_64/configure.ac: Moved ...
7550 * sysdeps/x86_64/nptl/configure.ac: ... here.
7551 * nptl/sysdeps/x86_64/pthread_spin_init.c: Moved ...
7552 * sysdeps/x86_64/nptl/pthread_spin_init.c: ... here.
7553 * nptl/sysdeps/x86_64/pthread_spin_lock.S: Moved ...
7554 * sysdeps/x86_64/nptl/pthread_spin_lock.S: ... here.
7555 * nptl/sysdeps/x86_64/pthread_spin_trylock.S: Moved ...
7556 * sysdeps/x86_64/nptl/pthread_spin_trylock.S: ... here.
7557 * nptl/sysdeps/x86_64/pthread_spin_unlock.S: Moved ...
7558 * sysdeps/x86_64/nptl/pthread_spin_unlock.S: ... here.
7559 * nptl/sysdeps/x86_64/pthreaddef.h: Moved ...
7560 * sysdeps/x86_64/nptl/pthreaddef.h: ... here.
7561 * nptl/sysdeps/x86_64/tcb-offsets.sym: Moved ...
7562 * sysdeps/x86_64/nptl/tcb-offsets.sym: ... here.
7563 * nptl/sysdeps/x86_64/tls.h: Moved ...
7564 * sysdeps/x86_64/nptl/tls.h: ... here.
7565 * nptl/sysdeps/x86_64/x32/shlib-versions: Moved ...
7566 * sysdeps/x86_64/x32/nptl/shlib-versions: ... here.
7567 * nptl/sysdeps/x86_64/x32/tls.h: Moved ...
7568 * sysdeps/x86_64/x32/nptl/tls.h: ... here.
7569
7570 * sysdeps/x86_64/x32/nptl/tls.h: Use #include_next.
7571
75722014-06-11 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
7573
7574 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
7575
75762014-06-11 Joseph Myers <joseph@codesourcery.com>
7577
7578 * conform/data/sys/mman.h-data [POSIX] (size_t): Do not require
7579 type.
7580 [POSIX] (off_t): Likewise.
7581 * conform/data/sys/stat.h-data (S_IRGRP): Require constant.
7582 [POSIX] (S_ISBLK): Require macro.
7583 [POSIX] (S_ISCHR): Likewise.
7584 [POSIX] (S_ISDIR): Likewise.
7585 [POSIX] (S_ISFIFO): Likewise.
7586 [POSIX] (S_ISREG): Likewise.
7587 [POSIX || XPG3 || XPG4 || UNIX98] (S_TYPEISTMO): Do not list
7588 optional-macro.
7589 * conform/data/sys/types.h-data [POSIX] (blkcnt_t): Do not require
7590 type.
7591 [POSIX] (time_t): Likewise.
7592 [POSIX] (timer_t): Likewise.
7593
75942014-06-11 Florian Weimer <fweimer@redhat.com>
7595
7596 [BZ #17048]
7597 * posix/spawn_int.h (struct __spawn_action): Make the path string
7598 non-const to support deallocation.
7599 * posix/spawn_faction_addopen.c
7600 (posix_spawn_file_actions_addopen): Make a copy of the pathname.
7601 * posix/spawn_faction_destroy.c
7602 (posix_spawn_file_actions_destroy): Adjust comment. Deallocate
7603 path in all spawn_do_open actions.
7604 * posix/tst-spawn.c (do_test): Exercise the copy operation in
7605 posix_spawn_file_actions_addopen.
7606
76072014-06-11 Chris Metcalf <cmetcalf@tilera.com>
7608
7609 * sysdeps/unix/sysv/linux/tile/pt-vfork.c: New file.
7610 * sysdeps/unix/sysv/linux/tile/pt-vfork.S: Remove file.
7611 * sysdeps/unix/sysv/linux/tile/vfork.S (__vfork): Make PT_VFORK
7612 conditional code always true.
7613 (__libc_vfork): New alias.
7614
76152014-06-11 Roland McGrath <roland@hack.frob.com>
7616
7617 * sysdeps/tile/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
7618 * sysdeps/unix/sysv/linux/tile/createthread.c: File removed.
7619
7620 * nptl/sysdeps/s390/tls.h (TLS_DEFINE_INIT_TP): New macro.
7621
7622 * sysdeps/alpha/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
7623 * sysdeps/unix/sysv/linux/alpha/createthread.c: File removed.
7624
7625 * nptl/sysdeps/powerpc/tls.h (TLS_DEFINE_INIT_TP): New macro.
7626 * sysdeps/unix/sysv/linux/powerpc/createthread.c: File removed.
7627
7628 * sysdeps/aarch64/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
7629 * sysdeps/unix/sysv/linux/aarch64/nptl/createthread.c: File removed.
7630
76312014-06-11 Vidya Ranganathan <vidya@linux.vnet.ibm.com>
7632
7633 * sysdeps/powerpc/powerpc64/power7/strcmp.S: New file: Optimization.
7634 * sysdeps/powerpc/powerpc64/multiarch/strcmp.c: New file:
7635 multiarch strcmp for PPC64.
7636 * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: New file.
7637 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power7.S: New file.
7638 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcmp
7639 multiarch optimizations.
7640 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
7641 (__libc_ifunc_impl_list): Likewise.
7642
76432014-06-11 Siddhesh Poyarekar <siddhesh@redhat.com>
7644
7645 * benchtests/scripts/validate_benchout.py: New script.
7646 * benchtests/Makefile (bench-func): Call it.
7647 * benchtests/scripts/benchout.schema.json: New file.
7648
76492014-06-10 Chris Metcalf <cmetcalf@tilera.com>
7650
7651 * sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h: Moved ...
7652 * sysdeps/tile/nptl/bits/pthreadtypes.h: ... here.
7653 * sysdeps/unix/sysv/linux/tile/nptl/bits/semaphore.h: Moved ...
7654 * sysdeps/tile/nptl/bits/semaphore.h: ... here.
7655 * sysdeps/unix/sysv/linux/tile/nptl/Makefile: Removed, merged into ...
7656 * sysdeps/unix/sysv/linux/tile/Makefile: ... here.
7657 * sysdeps/unix/sysv/linux/tile/nptl/clone.S: Moved ...
7658 * sysdeps/unix/sysv/linux/tile/clone.S: ... here.
7659 * sysdeps/unix/sysv/linux/tile/nptl/createthread.c: Moved ...
7660 * sysdeps/unix/sysv/linux/tile/createthread.c: ... here.
7661 * sysdeps/unix/sysv/linux/tile/nptl/lowlevellock.h: Moved ...
7662 * sysdeps/unix/sysv/linux/tile/lowlevellock.h: ... here.
7663 * sysdeps/unix/sysv/linux/tile/nptl/pt-vfork.S: Moved ...
7664 * sysdeps/unix/sysv/linux/tile/pt-vfork.S: ... here.
7665 * sysdeps/unix/sysv/linux/tile/nptl/sysdep-cancel.h: Moved ...
7666 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: ... here.
7667 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/c++-types.data:
7668 Moved ...
7669 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/c++-types.data:
7670 ... here.
7671 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/ld.abilist:
7672 Moved ...
7673 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/ld.abilist: ... here.
7674 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libBrokenLocale.abilist:
7675 Moved ...
7676 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libBrokenLocale.abilist:
7677 ... here.
7678 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libanl.abilist:
7679 Moved ...
7680 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libanl.abilist:
7681 ... here.
7682 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libc.abilist:
7683 Moved ...
7684 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist: ... here.
7685 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libcrypt.abilist:
7686 Moved ...
7687 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libcrypt.abilist:
7688 ... here.
7689 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libdl.abilist:
7690 Moved ...
7691 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libdl.abilist:
7692 ... here.
7693 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libm.abilist:
7694 Moved ...
7695 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist: ... here.
7696 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libnsl.abilist:
7697 Moved ...
7698 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libnsl.abilist:
7699 ... here.
7700 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libpthread.abilist:
7701 Moved ...
7702 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libpthread.abilist:
7703 ... here.
7704 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libresolv.abilist:
7705 Moved ...
7706 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libresolv.abilist:
7707 ... here.
7708 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/librt.abilist:
7709 Moved ...
7710 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/librt.abilist: ... here.
7711 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libthread_db.abilist:
7712 Moved ...
7713 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libthread_db.abilist:
7714 ... here.
7715 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libutil.abilist:
7716 Moved ...
7717 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libutil.abilist:
7718 ... here.
7719 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/c++-types.data:
7720 Moved ...
7721 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/c++-types.data:
7722 ... here.
7723 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/ld.abilist:
7724 Moved ...
7725 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/ld.abilist: ... here.
7726 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libBrokenLocale.abilist:
7727 Moved ...
7728 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libBrokenLocale.abilist:
7729 ... here.
7730 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libanl.abilist:
7731 Moved ...
7732 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libanl.abilist:
7733 ... here.
7734 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libc.abilist:
7735 Moved ...
7736 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist: ... here.
7737 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libcrypt.abilist:
7738 Moved ...
7739 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libcrypt.abilist:
7740 ... here.
7741 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libdl.abilist:
7742 Moved ...
7743 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libdl.abilist: ... here.
7744 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libm.abilist:
7745 Moved ...
7746 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist: ... here.
7747 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libnsl.abilist:
7748 Moved ...
7749 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libnsl.abilist:
7750 ... here.
7751 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libpthread.abilist:
7752 Moved ...
7753 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libpthread.abilist:
7754 ... here.
7755 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libresolv.abilist:
7756 Moved ...
7757 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libresolv.abilist:
7758 ... here.
7759 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/librt.abilist:
7760 Moved ...
7761 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/librt.abilist: ... here.
7762 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libthread_db.abilist:
7763 Moved ...
7764 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libthread_db.abilist:
7765 ... here.
7766 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libutil.abilist:
7767 Moved ...
7768 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libutil.abilist:
7769 ... here.
7770 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/c++-types.data: Moved ...
7771 * sysdeps/unix/sysv/linux/tile/tilepro/c++-types.data: ... here.
7772 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/ld.abilist: Moved ...
7773 * sysdeps/unix/sysv/linux/tile/tilepro/ld.abilist: ... here.
7774 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libBrokenLocale.abilist:
7775 Moved ...
7776 * sysdeps/unix/sysv/linux/tile/tilepro/libBrokenLocale.abilist:
7777 ... here.
7778 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libanl.abilist: Moved ...
7779 * sysdeps/unix/sysv/linux/tile/tilepro/libanl.abilist: ... here.
7780 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libc.abilist: Moved ...
7781 * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: ... here.
7782 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libcrypt.abilist: Moved ...
7783 * sysdeps/unix/sysv/linux/tile/tilepro/libcrypt.abilist: ... here.
7784 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libdl.abilist: Moved ...
7785 * sysdeps/unix/sysv/linux/tile/tilepro/libdl.abilist: ... here.
7786 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libm.abilist: Moved ...
7787 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: ... here.
7788 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libnsl.abilist: Moved ...
7789 * sysdeps/unix/sysv/linux/tile/tilepro/libnsl.abilist: ... here.
7790 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libpthread.abilist:
7791 Moved ...
7792 * sysdeps/unix/sysv/linux/tile/tilepro/libpthread.abilist: ... here.
7793 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libresolv.abilist:
7794 Moved ...
7795 * sysdeps/unix/sysv/linux/tile/tilepro/libresolv.abilist: ... here.
7796 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/librt.abilist: Moved ...
7797 * sysdeps/unix/sysv/linux/tile/tilepro/librt.abilist: ... here.
7798 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libthread_db.abilist:
7799 Moved ...
7800 * sysdeps/unix/sysv/linux/tile/tilepro/libthread_db.abilist: ... here.
7801 * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libutil.abilist: Moved ...
7802 * sysdeps/unix/sysv/linux/tile/tilepro/libutil.abilist: ... here.
7803 * sysdeps/unix/sysv/linux/tile/nptl/vfork.S: Moved ...
7804 * sysdeps/unix/sysv/linux/tile/vfork.S: ... here.
7805 * sysdeps/unix/sysv/linux/tile/nptl/waitpid.S: Moved ...
7806 * sysdeps/unix/sysv/linux/tile/waitpid.S: ... here.
7807
78082014-06-10 Wilco <wdijkstr@arm.com>
7809
7810 * math/test-fenv-return.c: New file.
7811 * math/Makefile: Add new test test-fenv-return.
7812
78132014-06-10 Joseph Myers <joseph@codesourcery.com>
7814
7815 [BZ #17042]
7816 * sysdeps/i386/fpu/e_log2.S (__ieee754_log2): Take absolete value
7817 when x - 1 is zero.
7818 * sysdeps/i386/fpu/e_log2f.S (__ieee754_log2f): Likewise.
7819 * sysdeps/i386/fpu/e_log2l.S (__ieee754_log2l): Likewise.
7820 * sysdeps/ieee754/ldbl-128/e_log2l.c (__ieee754_log2l): Return
7821 0.0L for an argument of 1.0L.
7822 * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l):
7823 Likewise.
7824 * sysdeps/x86_64/fpu/e_log2l.S (__ieee754_log2l): Take absolute
7825 value when x - 1 is zero.
7826 * math/libm-test.inc (log2_test): Use ALL_RM_TEST.
7827 * sysdeps/i386/fpu/libm-test-ulps: Update.
7828 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
7829
78302014-06-09 Bernard Ogden <bernie.ogden@linaro.org>
7831
7832 [BZ #15119]
7833 * ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.c: Remove file.
7834
78352014-06-09 Roland McGrath <roland@hack.frob.com>
7836
7837 * nptl/sysdeps/sh/tls.h (TLS_DEFINE_INIT_TP): New macro.
7838 * nptl/sysdeps/unix/sysv/linux/sh/createthread.c: File removed.
7839
78402014-06-09 Roland McGrath <roland@hack.frob.com>
7841
7842 * sysdeps/m68k/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
7843 * sysdeps/unix/sysv/linux/m68k/nptl/createthread.c: File removed.
7844
7845 * sysdeps/hppa/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
7846 * sysdeps/unix/sysv/linux/hppa/nptl/createthread.c: File removed.
7847
7848 * sysdeps/mips/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
7849 * sysdeps/unix/sysv/linux/mips/nptl/createthread.c: File removed.
7850
7851 * sysdeps/arm/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
7852 * sysdeps/unix/sysv/linux/arm/createthread.c: File removed.
7853
7854 * nptl/sysdeps/pthread/createthread.c (TLS_DEFINE_INIT_TP): New macro,
7855 if not already defined.
7856 (do_clone): Use that in place of PREPARE_CREATE and TLS_VALUE.
7857 * nptl/sysdeps/x86_64/tls.h (TLS_DEFINE_INIT_TP): New macro.
7858 * nptl/sysdeps/i386/tls.h (tls_fill_user_desc): New function.
7859 (TLS_INIT_TP): Use it.
7860 (TLS_DEFINE_INIT_TP): New macro.
7861 * sysdeps/unix/sysv/linux/i386/createthread.c: File removed.
7862
78632014-06-09 Joseph Myers <joseph@codesourcery.com>
7864
7865 * conform/data/termios.h-data [POSIX] (IUCLC): Do not expect
7866 constant.
7867 [POSIX] (IXANY): Likewise.
7868 [POSIX] (OLCUC): Likewise.
7869 [POSIX || POSIX2008] (CBAUD): Do not allow.
7870 [POSIX || POSIX2008] (DEFECHO): Likewise.
7871 [POSIX || POSIX2008] (ECHOCTL): Likewise.
7872 [POSIX || POSIX2008] (ECHOKE): Likewise.
7873 [POSIX || POSIX2008] (ECHOPRT): Likewise.
7874 [POSIX || POSIX2008] (EXTA): Likewise.
7875 [POSIX || POSIX2008] (EXTB): Likewise.
7876 [POSIX || POSIX2008] (FLUSHO): Likewise.
7877 [POSIX || POSIX2008] (LOBLK): Likewise.
7878 [POSIX || POSIX2008] (PENDIN): Likewise.
7879 [POSIX || POSIX2008] (SWTCH): Likewise.
7880 [POSIX || POSIX2008] (VDISCARD): Likewise.
7881 [POSIX || POSIX2008] (VDSUSP): Likewise.
7882 [POSIX || POSIX2008] (VLNEXT): Likewise.
7883 [POSIX || POSIX2008] (VREPRINT): Likewise.
7884 [POSIX || POSIX2008] (VSTATUS): Likewise.
7885 [POSIX || POSIX2008] (VWERASE): Likewise.
7886 (B*): Change to B[0123456789]*.
7887 * conform/data/time.h-data [POSIX || UNIX98]
7888 (CLOCK_PROCESS_CPUTIME_ID): Do not expect constant.
7889 [POSIX || UNIX98] (CLOCK_THREAD_CPUTIME_ID): Likewise.
7890 [POSIX || UNIX98] (CLOCK_MONOTONIC): Likewise.
7891 [POSIX] (tm_*): Do not allow.
7892
78932014-06-07 Joseph Myers <joseph@codesourcery.com>
7894
7895 * Makefile (install): Don't set LANGUAGE.
7896 * Makefile.in (install): Likewise.
7897 * assert/Makefile (test-assert-ENV): Remove variable.
7898 (test-assert-perr-ENV): Likewise.
7899 * elf/Makefile (neededtest4-ENV): Likewise.
7900 * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
7901 [$(cross-compiling) = no]: Don't set LANGUAGE.
7902 * io/ftwtest-sh (LANG): Remove variable.
7903 * libio/Makefile (tst-widetext-ENV): Likewise.
7904 * manual/install.texi (Running make install): Don't refer to
7905 environment settings for make install.
7906 * INSTALL: Regenerated.
7907 * nptl/tst-tls6.sh: Don't set LANG.
7908 * posix/globtest.sh (LANG): Remove variable.
7909 * string/Makefile (tester-ENV): Likewise.
7910 (inl-tester-ENV): Likewise.
7911 (noinl-tester-ENV): Likewise.
7912 * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
7913 [$(cross-compiling) = no]: Don't set LANGUAGE.
7914 * timezone/Makefile (build-testdata): Use $(built-program-cmd)
7915 without explicit environment settings.
7916
79172014-06-06 Roland McGrath <roland@hack.frob.com>
7918
7919 * nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Moved ...
7920 * sysdeps/sh/nptl/bits/pthreadtypes.h: ... here.
7921 * nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h: Moved ...
7922 * sysdeps/sh/nptl/bits/semaphore.h: ... here.
7923
79242014-06-06 Chris Metcalf <cmetcalf@tilera.com>
7925
7926 * crypt/crypt-private.h [DOS]: Add some includes taken from the
7927 other files in the crypt directory.
7928 * crypt/crypt.c: Remove duplicate includes.
7929 * crypt/crypt-entry.c: Likewise.
7930 * crypt/crypt_util.c: Likewise.
7931
79322014-06-06 Joseph Myers <joseph@codesourcery.com>
7933
7934 * Makeconfig (run-program-env): New variable.
7935 (run-program-prefix-before-env): Likewise.
7936 (run-program-prefix-after-env): Likewise.
7937 (run-program-prefix): Define in terms of new variables.
7938 (built-program-cmd-before-env): New variable.
7939 (built-program-cmd-after-env): Likewise.
7940 (built-program-cmd): Define in terms of new variables.
7941 (test-program-prefix-before-env): New variable.
7942 (test-program-prefix-after-env): Likewise.
7943 (test-program-prefix): Define in terms of new variables.
7944 (test-program-cmd-before-env): New variable.
7945 (test-program-cmd-after-env): Likewise.
7946 (test-program-cmd): Define in terms of new variables.
7947 * Rules (make-test-out): Use $(run-program-env).
7948 * scripts/cross-test-ssh.sh (env_blacklist): Remove variable.
7949 (help): Do not mention environment variables. Mention
7950 --timeoutfactor option.
7951 (timeoutfactor): New variable.
7952 (blacklist_exports): Remove function.
7953 (exports): Remove variable.
7954 (command): Do not include ${exports}.
7955 * manual/install.texi (Configuring and compiling): Do not mention
7956 test wrappers preserving environment variables. Mention that last
7957 assignment to a variable must take precedence.
7958 * INSTALL: Regenerated.
7959 * benchtests/Makefile (run-bench): Use $(run-program-env).
7960 * catgets/Makefile ($(objpfx)test1.cat): Use
7961 $(built-program-cmd-before-env), $(run-program-env) and
7962 $(built-program-cmd-after-env).
7963 ($(objpfx)test2.cat): Do not specify environment variables
7964 explicitly.
7965 ($(objpfx)de/libc.cat): Use $(built-program-cmd-before-env),
7966 $(run-program-env) and $(built-program-cmd-after-env).
7967 ($(objpfx)test-gencat.out): Use $(test-program-cmd-before-env),
7968 $(run-program-env) and $(test-program-cmd-after-env).
7969 ($(objpfx)sample.SJIS.cat): Do not specify environment variables
7970 explicitly.
7971 * catgets/test-gencat.sh: Use test_program_cmd_before_env,
7972 run_program_env and test_program_cmd_after_env arguments.
7973 * elf/Makefile ($(objpfx)tst-pathopt.out): Use $(run-program-env).
7974 * elf/tst-pathopt.sh: Use run_program_env argument.
7975 * iconvdata/Makefile ($(objpfx)iconv-test.out): Use
7976 $(test-wrapper-env) and $(run-program-env).
7977 * iconvdata/run-iconv-test.sh: Use test_wrapper_env and
7978 run_program_env arguments.
7979 * iconvdata/tst-table.sh: Do not set GCONV_PATH explicitly.
7980 * intl/Makefile ($(objpfx)tst-gettext.out): Use
7981 $(test-program-prefix-before-env), $(run-program-env) and
7982 $(test-program-prefix-after-env).
7983 ($(objpfx)tst-gettext2.out): Likewise.
7984 * intl/tst-gettext.sh: Use test_program_prefix_before_env,
7985 run_program_env and test_program_prefix_after_env arguments.
7986 * intl/tst-gettext2.sh: Likewise.
7987 * intl/tst-gettext4.sh: Do not set environment variables
7988 explicitly.
7989 * intl/tst-gettext6.sh: Likewise.
7990 * intl/tst-translit.sh: Likewise.
7991 * malloc/Makefile ($(objpfx)tst-mtrace.out): Use
7992 $(test-program-prefix-before-env), $(run-program-env) and
7993 $(test-program-prefix-after-env).
7994 * malloc/tst-mtrace.sh: Use test_program_prefix_before_env,
7995 run_program_env and test_program_prefix_after_env arguments.
7996 * math/Makefile (run-regen-ulps): Use $(run-program-env).
7997 * nptl/Makefile ($(objpfx)tst-tls6.out): Use $(run-program-env).
7998 * nptl/tst-tls6.sh: Use run_program_env argument. Set LANG=C
7999 explicitly with each use of ${test_wrapper_env}.
8000 * posix/Makefile ($(objpfx)wordexp-tst.out): Use
8001 $(test-program-prefix-before-env), $(run-program-env) and
8002 $(test-program-prefix-after-env).
8003 * posix/tst-getconf.sh: Do not set environment variables
8004 explicitly.
8005 * posix/wordexp-tst.sh: Use test_program_prefix_before_env,
8006 run_program_env and test_program_prefix_after_env arguments.
8007 * stdio-common/tst-printf.sh: Do not set environment variables
8008 explicitly.
8009 * stdlib/Makefile ($(objpfx)tst-fmtmsg.out): Use
8010 $(test-program-prefix-before-env), $(run-program-env) and
8011 $(test-program-prefix-after-env).
8012 * stdlib/tst-fmtmsg.sh: Use test_program_prefix_before_env,
8013 run_program_env and test_program_prefix_after_env arguments.
8014 Split $test calls into $test_pre and $test.
8015 * timezone/Makefile (build-testdata): Use
8016 $(built-program-cmd-before-env), $(run-program-env) and
8017 $(built-program-cmd-after-env).
8018
80192014-06-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
8020
8021 * sysdeps/powerpc/powerpc64/power7/strncat.S [STRLEN]: Define it as
8022 strlen for non SHARED builds.
8023
80242014-06-05 Siddhesh Poyarekar <siddhesh@redhat.com>
8025
8026 * nptl/allocatestack.c (check_list): Inlined function...
8027 (__reclaim_stacks): ... here.
8028
80292014-06-05 Ondřej Bílka <neleai@seznam.cz>
8030
8031 [BZ #15698]
8032 * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Fix
8033 memory overrun.
8034
80352014-06-05 Joseph Myers <joseph@codesourcery.com>
8036
8037 * Rules (make-test-out): Include
8038 LOCPATH=$(common-objpfx)localedata in default environment.
8039 * debug/Makefile (tst-chk1-ENV): Remove variable.
8040 (tst-chk2-ENV): Likewise.
8041 (tst-chk3-ENV): Likewise.
8042 (tst-chk4-ENV): Likewise.
8043 (tst-chk5-ENV): Likewise.
8044 (tst-chk6-ENV): Likewise.
8045 (tst-lfschk1-ENV): Likewise.
8046 (tst-lfschk2-ENV): Likewise.
8047 (tst-lfschk3-ENV): Likewise.
8048 (tst-lfschk4-ENV): Likewise.
8049 (tst-lfschk5-ENV): Likewise.
8050 (tst-lfschk6-ENV): Likewise.
8051 * iconvdata/Makefile (bug-iconv6-ENV): Likewise.
8052 (tst-iconv7-ENV): Likewise.
8053 * intl/Makefile (LOCPATH-ENV): Likewise.
8054 (tst-codeset-ENV): Likewise.
8055 (tst-gettext3-ENV): Likewise.
8056 (tst-gettext5-ENV): Likewise.
8057 * libio/Makefile (tst-widetext-ENV): Don't set LOCPATH.
8058 (tst-fopenloc-ENV): Likewise.
8059 (tst-fgetws-ENV): Remove variable.
8060 (tst-ungetwc1-ENV): Likewise.
8061 (tst-ungetwc2-ENV): Likewise.
8062 (bug-ungetwc2-ENV): Likewise.
8063 (tst-swscanf-ENV): Likewise.
8064 (bug-ftell-ENV): Likewise.
8065 (tst-fgetwc-ENV): Likewise.
8066 (tst-fseek-ENV): Likewise.
8067 (tst-ftell-partial-wide-ENV): Likewise.
8068 (tst-ftell-active-handler-ENV): Likewise.
8069 (tst-ftell-append-ENV): Likewise.
8070 * posix/Makefile (tst-fnmatch-ENV): Likewise.
8071 (tst-regexloc-ENV): Likewise.
8072 (bug-regex1-ENV): Likewise.
8073 (tst-regex-ENV): Likewise.
8074 (tst-regex2-ENV): Likewise.
8075 (bug-regex5-ENV): Likewise.
8076 (bug-regex6-ENV): Likewise.
8077 (bug-regex17-ENV): Likewise.
8078 (bug-regex18-ENV): Likewise.
8079 (bug-regex19-ENV): Likewise.
8080 (bug-regex20-ENV): Likewise.
8081 (bug-regex22-ENV): Likewise.
8082 (bug-regex23-ENV): Likewise.
8083 (bug-regex25-ENV): Likewise.
8084 (bug-regex26-ENV): Likewise.
8085 (bug-regex30-ENV): Likewise.
8086 (bug-regex32-ENV): Likewise.
8087 (bug-regex33-ENV): Likewise.
8088 (bug-regex34-ENV): Likewise.
8089 (bug-regex35-ENV): Likewise.
8090 (tst-rxspencer-ENV): Likewise.
8091 (tst-rxspencer-no-utf8-ENV): Likewise.
8092 * stdio-common/Makefile (tst-sprintf-ENV): Likewise.
8093 (tst-sscanf-ENV): Likewise.
8094 (tst-swprintf-ENV): Likewise.
8095 (tst-swscanf-ENV): Likewise.
8096 (test-vfprintf-ENV): Likewise.
8097 (scanf13-ENV): Likewise.
8098 (bug14-ENV): Likewise.
8099 (tst-grouping-ENV): Likewise.
8100 * stdlib/Makefile (tst-strtod-ENV): Likewise.
8101 (tst-strtod3-ENV): Likewise.
8102 (tst-strtod4-ENV): Likewise.
8103 (tst-strtod5-ENV): Likewise.
8104 (testmb2-ENV): Likewise./
8105 * string/Makefile (tst-strxfrm-ENV): Likewise.
8106 (tst-strxfrm2-ENV): Likewise.
8107 (bug-strcoll1-ENV): Likewise.
8108 (test-strcasecmp-ENV): Likewise.
8109 (test-strncasecmp-ENV): Likewise.
8110 * time/Makefile (tst-strptime-ENV): Likewise.
8111 (tst-ftime_l-ENV): Likewise.
8112 * wcsmbs/Makefile (tst-btowc-ENV): Likewise.
8113 (tst-mbrtowc-ENV): Likewise.
8114 (tst-wcrtomb-ENV): Likewise.
8115 (tst-mbrtowc2-ENV): Likewise.
8116 (tst-c16c32-1-ENV): Likewise.
8117 (tst-mbsnrtowcs-ENV): Likewise.
8118
81192014-06-05 Ondřej Bílka <neleai@seznam.cz>
8120
8121 * manual/resource.texi (How to get information about the memory
8122 subsystem?): Fix typo.
8123 Reported by Peon de la Parra Ivan <peon@keba.com>
8124
81252014-06-03 Guo Yixuan <culu.gyx@gmail.com>
8126
8127 [BZ #16882]
8128 * nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S
8129 (pthread_spin_lock): Branch out of spin loop to proper location.
8130 * nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S
8131 (pthread_spin_lock): Likewise.
8132
8133 * nptl/tst-spin4.c: New test.
8134 * nptl/Makefile (tests): Add tst-spin4.
8135
81362014-06-03 Andreas Schwab <schwab@suse.de>
8137
8138 [BZ #15946]
8139 * resolv/res_send.c (send_dg): Reload file descriptor after
8140 calling reopen.
8141
81422014-06-03 Stefan Liebler <stli@linux.vnet.ibm.com>
8143
8144 * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
8145
81462014-06-03 Richard Henderson <rth@redhat.com>
8147
8148 * sysdeps/unix/sysv/linux/aarch64/pt-vfork.c: New file.
8149 * sysdeps/unix/sysv/linux/aarch64/nptl/pt-vfork.S: Remove file.
8150 * sysdeps/unix/sysv/linux/aarch64/vfork.S (__vfork): Incorporate
8151 SAVE_PID and RESTORE_PID blocks from pt-vfork.S. Map 0 to INT_MIN
8152 in the SAVE_PID block.
8153 (__libc_vfork): New alias.
8154 * sysdeps/unix/sysv/linux/aarch64/nptl/vfork.S: Remove file.
8155
8156 * sysdeps/unix/sysv/linux/aarch64/clone.S (__clone): Save args for
8157 child in registers, not on the stack. Remove RESET_PID conditionals.
8158 * sysdeps/unix/sysv/linux/aarch64/nptl/clone.S: Remove file.
8159
81602014-06-03 Marcus Shawcroft <marcus.shawcroft@arm.com>
8161
8162 * sysdeps/aarch64/libm-test-ulps: Regenerate.
8163
81642014-06-03 Wilco <wdijkstr@arm.com>
8165
8166 * sysdeps/aarch64/fpu/math_private.h (libc_fesetround_aarch64)
8167 (libc_feholdexcept_setround_aarch64) (libc_feholdsetround_aarch64)
8168 (libc_feresetround_aarch64) (libc_feholdsetround_aarch64_ctx):
8169 Use _FPU_FPCR_RM_MASK for rounding mask rather than FE_TOWARDZERO.
8170 * sysdeps/aarch64/fpu/get-rounding-mode.h (get_rounding_mode):
8171 Likewise.
8172
81732014-06-03 Wilco <wdijkstr@arm.com>
8174
8175 * sysdeps/aarch64/fpu/math_private.h
8176 (libc_feholdexcept_aarch64) (libc_feholdexcept_setround_aarch64)
8177 (libc_fetestexcept_aarch64) (libc_fesetenv_aarch64)
8178 (libc_feupdateenv_test_aarch64) (libc_feholdsetround_aarch64)
8179 (libc_feresetround_aarch64) (libc_feholdsetround_aarch64_ctx):
8180 Fix declarations.
8181
81822014-06-03 Kostya Serebryany <konstantin.s.serebryany@gmail.com>
8183
8184 * crypt/crypt-private.h: Include ufc-crypt.h.
8185 (__b64_from_24bit): Declare extern.
8186 * crypt/crypt_util.c(__b64_from_24bit): New function.
8187 (b64t): New static const variable.
8188 * crypt/md5-crypt.c (b64_from_24bit): Remove function.
8189 (b64t): Remove variable.
8190 (__md5_crypt_r): Replace b64_from_24bit with __b64_from_24bit.
8191 * crypt/sha256-crypt.c: Include crypt-private.h.
8192 (b64t): Remove variable.
8193 (__sha256_crypt_r): Remove b64_from_24bit and replace
8194 with __b64_from_24bit.
8195 * crypt/sha512-crypt.c: Likewise.
8196
81972014-06-02 Roland McGrath <roland@hack.frob.com>
8198
8199 * nptl/sysdeps/unix/sysv/linux/sh/vfork.S: Moved ...
8200 * sysdeps/unix/sysv/linux/sh/vfork.S: ... here.
8201 Label the code __libc_vfork rather than __vfork.
8202 [!NOT_IN_libc] (vfork): Define as weak alias.
8203 [!NOT_IN_libc] (__vfork): Define as strong alias, and libc_hidden_def.
8204 * sysdeps/unix/sysv/linux/sh/pt-vfork.S: New file.
8205 * nptl/sysdeps/unix/sysv/linux/sh/pt-vfork.S: File removed.
8206
82072014-06-02 Siddhesh Poyarekar <siddhesh@redhat.com>
8208
8209 * malloc/malloc.c (malloc_info): Fix format specifier for
8210 n_mmaps.
8211
82122014-06-02 Wilco <wdijkstr@arm.com>
8213
8214 * sysdeps/aarch64/fpu/fpu_control.h (_FPU_SETCW): Remove ISB after
8215 FPCR write.
8216
82172014-06-02 Wilco <wdijkstr@arm.com>
8218
8219 [BZ #17009]
8220 * sysdeps/aarch64/fpu/feupdateenv (feupdateenv):
8221 Rewrite to reduce FPCR/FPSR accesses.
8222
82232014-06-01 David S. Miller <davem@davemloft.net>
8224
8225 * sysdeps/sparc/fpu/libm-test-ulps: Update.
8226
82272014-05-31 David S. Miller <davem@davemloft.net>
8228
8229 * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_y1f): Force computations
8230 to occur in round to nearest mode when |x| >= 2.0
8231
82322014-05-30 Richard Henderson <rth@twiddle.net>
8233
8234 * sysdeps/unix/sysv/linux/aarch64/sysdep.h (PSEUDO_RET): Remove.
8235 (PSEUDO_RET_NOERRNO): Remove.
8236 (ret): Don't redefine.
8237 (ret_NOERRNO): Define in terms of ret.
8238 (ret_ERRVAL): Likewise.
8239
8240 * sysdeps/unix/sysv/linux/aarch64/ioctl.S (__ioctl): Remove the
8241 use of PSEUDO_RET; perform the error check directly.
8242
82432014-05-30 Marko Myllynen <myllynen@redhat.com>
8244
8245 * sysdeps/x86_64/link-defines.sym (BND_SIZE): Replace __int128
8246 with __int128_t.
8247
82482014-05-30 Siddhesh Poyarekar <siddhesh@redhat.com>
8249
8250 * malloc/malloc (malloc_info): Fix formatting.
8251
82522014-05-30 Siddhesh Poyarekar <siddhesh@redhat.com>
8253 Roland McGrath <roland@hack.frob.com>
8254
8255 * malloc/malloc (malloc_info): Also print mmapped statistics.
8256
82572014-05-30 Roland McGrath <roland@hack.frob.com>
8258
8259 * sysdeps/unix/sysv/linux/m68k/arch-fork.h: New file.
8260 * sysdeps/unix/sysv/linux/m68k/nptl/fork.c: File removed.
8261
82622014-05-30 Ondřej Bílka <neleai@seznam.cz>
8263
8264 * malloc/malloc.c (malloc_info): Inline mi_arena.
8265
82662014-05-29 Richard Henderson <rth@twiddle.net>
8267
8268 * sysdeps/unix/sysv/linux/aarch64/sysdep.h (INTERNAL_VSYSCALL_NCS):
8269 Remove comma before expanding ASM_ARGS_##nr.
8270 (INTERNAL_SYSCALL_RAW): Make _sys_result signed, instead of casting.
8271 Make _x0 a strict output; make _x8 a strict input; adjust expansion
8272 of ASM_ARGS_##nr.
8273 (CLOBBER_ARGS_0, CLOBBER_ARGS_1, CLOBBER_ARGS_2): Remove.
8274 (CLOBBER_ARGS_3, CLOBBER_ARGS_4, CLOBBER_ARGS_5): Remove.
8275 (CLOBBER_ARGS_6, CLOBBER_ARGS_7): Remove.
8276 (ASM_ARGS_1): Add leading comma.
8277
8278 * sysdeps/unix/sysv/linux/aarch64/sysdep.h [NOT_IN_libc]
8279 (SYSCALL_ERROR_HANDLER): Use tpidr_el0 instead of a call
8280 to __errno_location.
8281 * sysdeps/unix/sysv/linux/aarch64/nptl/localplt.data (libpthread.so):
8282 Remove the expected plt for __errno_location.
8283
8284 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
8285 [NOT_IN_libc] (SINGLE_THREAD_P): Use tpidr_el0 instead of a
8286 call to __read_tp.
8287
8288 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
8289 Always allocate 64 bytes of stack frame. Use ldp/stp to create
8290 it and break it down.
8291 (DOCARGS_0, DOCARGS_1): Do nothing.
8292 (DOCARGS_2): Update to store into the new stack frame.
8293 (DOCARGS_3, DOCARGS_4, DOCARGS_5, DOCARGS_6): Likewise.
8294 (UNDOCARGS_1): Update to restore from the new stack frame.
8295 (UNDOCARGS_2, UNDOCARGS_3, UNDOCARGS_4): Likewise.
8296 (UNDOCARGS_5, UNDOCARGS_6): Likewise.
8297
8298 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
8299 (SINGLE_THREAD_P): New parameter for result regno.
8300 (PSEUDO): Update to match; use cbz instead of beq.
8301
8302 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
8303 Use ENTRY to define the _nocancel entry point. Share the syscall
8304 and syscall error check paths with the cancel path.
8305 (PSEUDO_END): New.
8306
8307 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h: Adjust
8308 whitespace; tabs before and after asm mnemonics.
8309
83102014-05-29 Eric Wong <normalperson@yhbt.net>
8311
8312 [BZ #15132]
8313 * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
8314 Call fstat64 or stat64 internally, depending on arguments passed.
8315 Replace stat buffer argument with file descriptor argument.
8316 (INTERNAL_STATVFS): Update arguments to match __statvfs_getflags.
8317 * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
8318 Pass fd to __internal_statvfs instead of calling fstat64.
8319 * sysdeps/unix/sysv/linux/fstatvfs64.c (__fstatvfs64):
8320 Pass fd to __internal_statvfs64 instead of calling fstat64.
8321 * sysdeps/unix/sysv/linux/statvfs.c (statvfs):
8322 Pass -1 to __internal_statvfs instead of calling stat64.
8323 * sysdeps/unix/sysv/linux/statvfs64.c (__statvfs64):
8324 Pass -1 to __internal_statvfs64 instead of calling stat64.
8325
83262014-05-28 Roland McGrath <roland@hack.frob.com>
8327
8328 * sysdeps/unix/sysv/linux/sh/clone.S: Deconditionalize the code
8329 that was previously under [RESET_PID].
8330 * nptl/sysdeps/unix/sysv/linux/sh/clone.S: File removed.
8331
8332 * sysdeps/unix/sysv/linux/tile/arch-fork.h: New file.
8333 * sysdeps/unix/sysv/linux/tile/nptl/fork.c: File removed.
8334
83352014-05-27 Roland McGrath <roland@hack.frob.com>
8336
8337 * sysdeps/unix/sysv/linux/ia64/arch-fork.h: New file.
8338
8339 * sysdeps/unix/sysv/linux/sh/arch-fork.h: New file.
8340 * nptl/sysdeps/unix/sysv/linux/sh/fork.c: File removed.
8341
83422014-05-27 Ondřej Bílka <neleai@seznam.cz>
8343
8344 * elf/dl-deps.c (_dl_map_object_deps): Remove duplicate code.
8345
83462014-05-27 Andreas Schwab <schwab@suse.de>
8347
8348 * csu/libc-tls.c (__libc_setup_tls): Remove second argument from
8349 TLS_INIT_TP macro.
8350 * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
8351 * elf/rtld.c (init_tls, dl_main): Likewise.
8352 * nptl/sysdeps/i386/tls.h (TLS_INIT_TP): Likewise.
8353 * nptl/sysdeps/powerpc/tls.h (TLS_INIT_TP): Likewise.
8354 * nptl/sysdeps/s390/tls.h (TLS_INIT_TP): Likewise.
8355 * nptl/sysdeps/sh/tls.h (TLS_INIT_TP): Likewise.
8356 * nptl/sysdeps/sparc/tls.h (TLS_INIT_TP): Likewise.
8357 * nptl/sysdeps/x86_64/tls.h (TLS_INIT_TP): Likewise.
8358 * sysdeps/aarch64/nptl/tls.h (TLS_INIT_TP): Likewise.
8359 * sysdeps/alpha/nptl/tls.h (TLS_INIT_TP): Likewise.
8360 * sysdeps/arm/nptl/tls.h (TLS_INIT_TP): Likewise.
8361 * sysdeps/hppa/nptl/tls.h (TLS_INIT_TP): Likewise.
8362 * sysdeps/ia64/nptl/tls.h (TLS_INIT_TP): Likewise.
8363 * sysdeps/m68k/nptl/tls.h (TLS_INIT_TP): Likewise.
8364 * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Likewise.
8365 * sysdeps/microblaze/nptl/tls.h (TLS_INIT_TP): Likewise.
8366 * sysdeps/mips/nptl/tls.h (TLS_INIT_TP): Likewise.
8367 * sysdeps/tile/nptl/tls.h (TLS_INIT_TP): Likewise.
8368 * sysdeps/generic/tls.h: Update description.
8369
83702014-05-27 Will Newton <will.newton@linaro.org>
8371
8372 [BZ #16990]
8373 * sysdeps/arm/dl-tlsdesc.S (_dl_tlsdesc_resolve_hold): Save
8374 and restore r2 rather than just restoring.
8375
83762014-05-27 Siddhesh Poyarekar <siddhesh@redhat.com>
8377
8378 [BZ #16724]
8379 * libio/tst-ftell-append.c: New test case.
8380 * libio/Makefile (tests): Add test case.
8381 * libio/fileops.c (do_ftell): Don't trust _IO_read_end when in
8382 append mode.
8383 * libio/wfileops.c (do_ftell_wide): Likewise.
8384
83852014-05-26 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
8386
8387 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
8388
8389 * nptl/sysdeps/unix/sysv/linux/powerpc/Versions: Remove, merge into
8390 ...
8391 * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions: ... here.
8392 * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Likewise.
8393 * nptl/sysdeps/unix/sysv/linux/powerpc/Makefile: Moved rules to ...
8394 * sysdeps/unix/sysv/linux/powerpc/Makefile: ... here.
8395 * nptl/sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h: Moved ...
8396 * sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h: ... here.
8397 * nptl/sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Moved ...
8398 * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: ...here.
8399 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h:
8400 Moved ...
8401 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: ... here.
8402 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h:
8403 Moved ...
8404 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: ... here.
8405 * nptl/sysdeps/unix/sysv/linux/powerpc/createthread.c: Moved ...
8406 * sysdeps/unix/sysv/linux/powerpc/createthread.c: ... here.
8407 * nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Moved ...
8408 * sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: ... here.
8409 * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstack.c: Moved
8410 ...
8411 * sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstack.c: ... here.
8412 * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c:
8413 Moved ...
8414 * sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c: ...
8415 here.
8416 * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c: Moved
8417 ...
8418 * sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c: ... here.
8419 * nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c: Moved ...
8420 * sysdeps/unix/sysv/linux/powerpc/sem_post.c: ... here.
8421
8422 * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Moved ...
8423 * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: ... here.
8424 * nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: Moved ...
8425 * sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: ... here.
8426
8427 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Remove,
8428 merge into ...
8429 * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: ... here.
8430 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c: Moved
8431 ...
8432 * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c: ... here.
8433 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c: Moved
8434 ...
8435 * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c: ... here.
8436 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c:
8437 Moved ...
8438 * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c: ...
8439 here.
8440 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c:
8441 Moved ...
8442 * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c: ... here.
8443 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c:
8444 Moved ...
8445 * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c: ... here.
8446
8447 * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Remove
8448 conditional [RESET_PID].
8449 * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Likewise.
8450 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: File
8451 removed.
8452 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: File
8453 removed.
8454
8455 * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Include
8456 <tcb-offsets.h>.
8457 (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
8458 (__libc_vfork): New strong alias.
8459 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S: File
8460 removed.
8461 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: File
8462 Removed.
8463
8464 * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Include
8465 <tcb-offsets.h>.
8466 (__vfork): Incorporate save/retore of PID from nptl/vfork.S here.
8467 (__libc_vfork): New strong alias.
8468 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S: File
8469 removed.
8470 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: File
8471 removed.
8472
84732014-05-26 Carlos O'Donell <carlos@redhat.com>
8474
8475 * malloc/malloc.c (mi_arena): New function.
8476 (malloc_info): Remove nested function mi_arena. Call non-nosted
8477 function mi_arena.
8478
84792014-05-26 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
8480
8481 * sysdeps/powerpc/powerpc32/power4/memset.S (memset): Replace insrdi
8482 by insrwi.
8483 * sysdeps/powerpc/powerpc32/power6/memset.S (memset): Likewise.
8484 * sysdeps/powerpc/powerpc32/power7/memset.S (memset): Likewise.
8485 * sysdeps/powerpc/powerpc32/power7/memchr.S (memchr): Likewise.
8486 * sysdeps/powerpc/powerpc32/power7/memrchr.S (memrchr): Likewise.
8487 * sysdeps/powerpc/powerpc32/power7/rawmemchr.S (rawmemchr): Likewise.
8488 * sysdeps/powerpc/powerpc32/power7/strchr.S (strchr): Likewise.
8489 * sysdeps/powerpc/powerpc32/power7/strchrnul.S (strchrnul): Likewise.
8490
84912014-05-26 Andreas Schwab <schwab@suse.de>
8492
8493 [BZ #16984]
8494 * locale/programs/repertoire.c (repertoire_read): Add slash
8495 between I18NPATH element and file name.
8496 * locale/programs/locfile.c (locfile_read): Likewise.
8497
84982014-05-26 Stefan Liebler <stli@linux.vnet.ibm.com>
8499
8500 * nptl/pthread_mutexattr_settype.c
8501 (__pthread_mutexattr_settype):
8502 Disable lock elision for PTHREAD_MUTEX_NORMAL.
8503
85042014-05-26 Stefan Liebler <stli@linux.vnet.ibm.com>
8505
8506 * nptl/tst-mutex5 (do_test):
8507 Use #ifndef ENABLE_LOCK_ELISION instead of #ifdef.
8508
85092014-05-26 Siddhesh Poyarekar <siddhesh@redhat.com>
8510
8511 * benchtests/README: Document 'init' directive.
8512 * benchtests/bench-skeleton.c (main) [BENCH_INIT]: Call
8513 BENCH_INIT.
8514 * scripts/bench.py (gen_source): Define BENCH_INIT macro.
8515 (parse_file): Recognize 'init' directive.
8516
85172014-05-26 Kyle McMartin <kyle@redhat.com>
8518
8519 [BZ #16796]
8520 * sysdeps/aarch64/nptl/tls.h: increase TCB alignment to the
8521 alignment of struct pthread.
8522
85232014-05-26 Siddhesh Poyarekar <siddhesh@redhat.com>
8524
8525 [BZ #16878]
8526 * nscd/netgroupcache.c (addgetnetgrentX): Look for
8527 NSS_STATUS_TRYAGAIN to indicate insufficient buffer space.
8528 * nscd/nss_files/files-netgrp.c (_nss_netgroup_parseline): Use
8529 NSS_STATUS_TRYAGAIN to indicate insufficient buffer space.
8530
85312014-05-25 Richard Henderson <rth@twiddle.net>
8532
8533 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
8534 (SINGLE_THREAD_P_PIC): Remove.
8535 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h
8536 (SINGLE_THREAD_P_PIC): Remove.
8537
8538 * sysdeps/unix/sysv/linux/aarch64/sysdep.h (PSEUDO_RET): Move
8539 branch to syscall error ...
8540 (PSEUDO): ... here.
8541 [NOT_IN_libc] (SYSCALL_ERROR_HANDLER): Rename the label
8542 from __local_syscall_error to .Lsyscall_error.
8543 [!NOT_IN_libc] (SYSCALL_ERROR_HANDLER): Branch to __syscall_error.
8544 (SYSCALL_ERROR): Update label name.
8545
8546 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
8547 Do not use DOARGS/UNDOARGS.
8548 * sysdeps/unix/sysv/linux/aarch64/sysdep.h (DO_CALL): Likewise.
8549 (DOARGS_0, DOARGS_1, DOARGS_2, DOARGS_3): Remove.
8550 (DOARGS_4, DOARGS_5, DOARGS_6, DOARGS_7): Remove.
8551 (UNDOARGS_0, UNDOARGS_1, UNDOARGS_2, UNDOARGS_3): Remove.
8552 (UNDOARGS_4, UNDOARGS_5, UNDOARGS_6, UNDOARGS_7): Remove.
8553
8554 * sysdeps/unix/sysv/linux/aarch64/sysdep.h (DO_CALL): Fix
8555 block comment.
8556
8557 * sysdeps/unix/sysv/linux/alpha/vfork.S (vfork, __vfork): Only
8558 define if !NOT_IN_libc.
8559 * sysdeps/unix/sysv/linux/alpha/pt-vfork.S (vfork, __vfork): Only
8560 define with non-default symbol versions.
8561
85622014-05-23 Richard Henderson <rth@twiddle.net>
8563
8564 * nptl/pt-vfork.c (vfork_resolve): Rename from vfork_ifunc.
8565 (vfork, __vfork): Define via compat_symbol.
8566
8567 * nptl/pt-vfork.c: Error if !HAVE_IFUNC.
8568 [!HAVE_IFUNC] (vfork_compat): Remove.
8569 [!HAVE_IFUNC] (DEFINE_VFORK): Remove.
8570
85712014-05-23 Joseph Myers <joseph@codesourcery.com>
8572
8573 [BZ #16978]
8574 * posix/tar.h [!__USE_XOPEN2K] (TSVTX): Define macro.
8575 * conform/Makefile (test-xfail-POSIX/tar.h/conform): Remove
8576 variable.
8577
85782014-05-23 Richard Henderson <rth@twiddle.net>
8579
8580 * sysdeps/unix/sysv/linux/alpha/nptl/Makefile: Merge into...
8581 * sysdeps/unix/sysv/linux/alpha/Makefile: ... here.
8582 * sysdeps/unix/sysv/linux/alpha/nptl/Versions: Merge into...
8583 * sysdeps/unix/sysv/linux/alpha/Versions: ... here.
8584
8585 * sysdeps/unix/sysv/linux/alpha/nptl/aio_cancel.c: Moved ...
8586 * sysdeps/unix/sysv/linux/alpha/aio_cancel.c: ... here.
8587 * sysdeps/unix/sysv/linux/alpha/nptl/bits/local_lim.h: Moved ...
8588 * sysdeps/unix/sysv/linux/alpha/bits/local_lim.h: ... here.
8589 * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h: Moved ...
8590 * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h: ... here.
8591 * sysdeps/unix/sysv/linux/alpha/nptl/bits/semaphore.h: Moved ...
8592 * sysdeps/unix/sysv/linux/alpha/bits/semaphore.h: ... here.
8593 * sysdeps/unix/sysv/linux/alpha/nptl/c++-types.data: Moved ...
8594 * sysdeps/unix/sysv/linux/alpha/c++-types.data: ... here.
8595 * sysdeps/unix/sysv/linux/alpha/nptl/createthread.c: Moved ...
8596 * sysdeps/unix/sysv/linux/alpha/createthread.c: ... here.
8597 * sysdeps/unix/sysv/linux/alpha/nptl/ld.abilist: Moved ...
8598 * sysdeps/unix/sysv/linux/alpha/ld.abilist: ... here.
8599 * sysdeps/unix/sysv/linux/alpha/nptl/libBrokenLocale.abilist: Moved ...
8600 * sysdeps/unix/sysv/linux/alpha/libBrokenLocale.abilist: ... here.
8601 * sysdeps/unix/sysv/linux/alpha/nptl/libanl.abilist: Moved ...
8602 * sysdeps/unix/sysv/linux/alpha/libanl.abilist: ... here.
8603 * sysdeps/unix/sysv/linux/alpha/nptl/libc.abilist: Moved ...
8604 * sysdeps/unix/sysv/linux/alpha/libc.abilist: ... here.
8605 * sysdeps/unix/sysv/linux/alpha/nptl/libcrypt.abilist: Moved ...
8606 * sysdeps/unix/sysv/linux/alpha/libcrypt.abilist: ... here.
8607 * sysdeps/unix/sysv/linux/alpha/nptl/libdl.abilist: Moved ...
8608 * sysdeps/unix/sysv/linux/alpha/libdl.abilist: ... here.
8609 * sysdeps/unix/sysv/linux/alpha/nptl/libm.abilist: Moved ...
8610 * sysdeps/unix/sysv/linux/alpha/libm.abilist: ... here.
8611 * sysdeps/unix/sysv/linux/alpha/nptl/libnsl.abilist: Moved ...
8612 * sysdeps/unix/sysv/linux/alpha/libnsl.abilist: ... here.
8613 * sysdeps/unix/sysv/linux/alpha/nptl/libpthread.abilist: Moved ...
8614 * sysdeps/unix/sysv/linux/alpha/libpthread.abilist: ... here.
8615 * sysdeps/unix/sysv/linux/alpha/nptl/libresolv.abilist: Moved ...
8616 * sysdeps/unix/sysv/linux/alpha/libresolv.abilist: ... here.
8617 * sysdeps/unix/sysv/linux/alpha/nptl/librt.abilist: Moved ...
8618 * sysdeps/unix/sysv/linux/alpha/librt.abilist: ... here.
8619 * sysdeps/unix/sysv/linux/alpha/nptl/libthread_db.abilist: Moved ...
8620 * sysdeps/unix/sysv/linux/alpha/libthread_db.abilist: ... here.
8621 * sysdeps/unix/sysv/linux/alpha/nptl/libutil.abilist: Moved ...
8622 * sysdeps/unix/sysv/linux/alpha/libutil.abilist: ... here.
8623 * sysdeps/unix/sysv/linux/alpha/nptl/localplt.data: Moved ...
8624 * sysdeps/unix/sysv/linux/alpha/localplt.data: ... here.
8625 * sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h: Moved ...
8626 * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: ... here.
8627 * sysdeps/unix/sysv/linux/alpha/nptl/sem_post.c: Moved ...
8628 * sysdeps/unix/sysv/linux/alpha/sem_post.c: ... here.
8629 * sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h: Moved ...
8630 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: ... here.
8631 * sysdeps/unix/sysv/linux/alpha/nptl/timer_create.c: Moved ...
8632 * sysdeps/unix/sysv/linux/alpha/timer_create.c: ... here.
8633 * sysdeps/unix/sysv/linux/alpha/nptl/timer_delete.c: Moved ...
8634 * sysdeps/unix/sysv/linux/alpha/timer_delete.c: ... here.
8635 * sysdeps/unix/sysv/linux/alpha/nptl/timer_getoverr.c: Moved ...
8636 * sysdeps/unix/sysv/linux/alpha/timer_getoverr.c: ... here.
8637 * sysdeps/unix/sysv/linux/alpha/nptl/timer_gettime.c: Moved ...
8638 * sysdeps/unix/sysv/linux/alpha/timer_gettime.c: ... here.
8639 * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Moved ...
8640 * sysdeps/unix/sysv/linux/alpha/timer_settime.c: ... here.
8641
8642 * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove vfork.
8643 * sysdeps/unix/sysv/linux/alpha/nptl/vfork.S: Move file ...
8644 * sysdeps/unix/sysv/linux/alpha/vfork.S: ... here. Restore PID
8645 before exiting on error.
8646 (__libc_vfork): New strong alias.
8647 * sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S: Remove file.
8648 * sysdeps/unix/sysv/linux/alpha/pt-vfork.S: New file.
8649
8650 * sysdeps/unix/sysv/linux/alpha/clone.S: Deconditionalize the code
8651 that was previously under [RESET_PID].
8652 * sysdeps/unix/sysv/linux/alpha/nptl/clone.S: File removed.
8653
8654 * sysdeps/unix/sysv/linux/alpha/nptl/fork.c: Remove file.
8655
86562014-05-23 Joseph Myers <joseph@codesourcery.com>
8657
8658 [BZ #16977]
8659 * sysdeps/i386/fpu/e_log10.S (__ieee754_log10): Take absolute
8660 value when x - 1 is zero.
8661 * sysdeps/i386/fpu/e_log10f.S (__ieee754_log10f): Likewise.
8662 * sysdeps/i386/fpu/e_log10l.S (__ieee754_log10l): Likewise.
8663 * sysdeps/ieee754/ldbl-128/e_log10l.c (__ieee754_log10l): Return
8664 0.0L for an argument of 1.0L.
8665 * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l):
8666 Likewise.
8667 * sysdeps/x86_64/fpu/e_log10l.S (__ieee754_log10l): Take absolute
8668 value when x - 1 is zero.
8669 * math/libm-test.inc (log10_test): Use ALL_RM_TEST.
8670 * sysdeps/i386/fpu/libm-test-ulps: Update.
8671 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
8672
86732014-05-23 Rasmus Villemoes <rv@rasmusvillemoes.dk>
8674
8675 * manual/filesys.texi (Scanning Directory Content): Fix prototype of
8676 alphasort and versionsort.
8677
86782014-05-22 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
8679
8680 * sysdeps/powerpc/fpu/math_private.h [copysign]: Remove unneeded
8681 macro.
8682 [copysignf]: Likewise.
8683
86842014-05-22 Siddhesh Poyarekar <siddhesh@redhat.com>
8685
8686 * crypt/md5-crypt.c: Fix formatting.
8687
86882014-05-22 Kostya Serebryany <konstantin.s.serebryany@gmail.com>
8689
8690 * crypt/md5-crypt.c (__md5_crypt_r): Remove a nested function.
8691 (b64_from_24bit): New function.
8692
86932014-05-22 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
8694
8695 * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c (memchr): Remove
8696 libc_hidden_builtin_def to ifunc.
8697 * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
8698 [libc_hidden_builtin_def]: Define hidden definition to __memchr_ppc32.
8699
87002014-05-21 Roland McGrath <roland@hack.frob.com>
8701
8702 * sysdeps/unix/sysv/linux/aarch64/arch-fork.h: New file.
8703 * sysdeps/unix/sysv/linux/aarch64/nptl/fork.c: File removed.
8704
87052014-05-21 Joseph Myers <joseph@codesourcery.com>
8706
8707 * nscd/Depend (linuxthreads): Remove.
8708 (nptl): Add.
8709 * resolv/Depend (linuxthreads): Remove.
8710 * rt/Depend (linuxthreads): Remove.
8711
8712 * Makeconfig [$(build-hardcoded-path-in-tests) = yes]
8713 (rtld-tests-LDFLAGS): Use $(elf-objpfx) instead of
8714 $(common-objpfx)elf/.
8715 (link-libc-before-gnulib): Likewise.
8716 (elfobjdir): Remove variable.
8717 * Makefile (install): Use $(elf-objpfx) instead of
8718 $(common-objpfx)elf/.
8719 * Makerules (link-libc-args): Use $(elf-objpfx) instead of
8720 $(elfobjdir)/.
8721 (link-libc-deps): Likewise.
8722 ($(common-objpfx)libc.so): Likewise.
8723 ($(common-objpfx)linkobj/libc.so): Likewise.
8724 [$(cross-compiling) = no] (symbolic-link-prog): Use $(elf-objpfx)
8725 instead of $(common-objpfx)elf/.
8726 (symbolic-link-list): Likewise.
8727 * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
8728 [$(cross-compiling) = no]: Likewise.
8729 * sysdeps/arm/Makefile (gnulib-arch): Use $(elf-objpfx) instead of
8730 $(elfobjdir)/.
8731 (static-gnulib-arch): Likewise.
8732 * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
8733 [$(cross-compiling) = no]: Use $(elf-objpfx) instead of
8734 $(common-objpfx)elf/.
8735
87362014-05-21 Richard Henderson <rth@redhat.com>
8737
8738 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
8739 (SINGLE_THREAD_P): Use the correct width load. Fold
8740 into the ldr offset.
8741
8742 * sysdeps/unix/sysv/linux/aarch64/sysdep.h [RTLD_PRIVATE_ERRNO]
8743 (SYSCALL_ERROR_HANDLER): Fold add insn into str offset.
8744
87452014-05-20 Joseph Myers <joseph@codesourcery.com>
8746
8747 * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c
8748 (libgcc_s_resume): Use __attribute_used__.
8749 * sysdeps/unix/sysv/linux/arm/unwind-resume.c (libgcc_s_resume):
8750 Likewise.
8751
87522014-05-20 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
8753
8754 * sysdeps/powerpc/fpu/math_private.h [__copysignf]: Fix copysign macro
8755 optimization when used with float constants.
8756
8757 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
8758
87592014-05-20 Aurelien Jarno <aurelien@aurel32.net>
8760
8761 [BZ #16915]
8762 * locale/nl_langinfo_l.c: Make direct reference to every
8763 _nl_current_CATEGORY symbol.
8764 * localedata/Makefile (test-srcs): Add tst-langinfo-static.
8765 (tests-static): Add tst-langinfo-static.
8766 (tests-special): Add tst-langinfo-static.out.
8767 ($(objpfx)tst-langinfo.out): Redirect output.
8768 ($(objpfx)tst-langinfo-static.out): New.
8769 * localedata/tst-langinfo.sh: Send output to stdout.
8770 * localedata/tst-langinfo-static.c: New file.
8771
8772 [BZ #16965]
8773 * stdlib/strtod_l.c (round_and_return): Add code to shift limbs
8774 when the shift amount is modulo the limb size.
8775
87762014-05-20 Richard Henderson <rth@redhat.com>
8777
8778 [BZ #16967]
8779 * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h (struct sigaction):
8780 Change type of sa_flags from unsigned int to int.
8781
8782 [BZ #16966]
8783 * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h: Remove file.
8784
8785 * sysdeps/alpha/dl-machine.h (ELF_MACHINE_NO_RELA): Define.
8786
87872014-05-20 Will Newton <will.newton@linaro.org>
8788
8789 * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
8790 Test the return value of the system call in the nocancel case.
8791
87922014-05-20 Will Newton <will.newton@linaro.org>
8793 Yvan Roux <yvan.roux@linaro.org>
8794
8795 * sysdeps/unix/sysv/linux/aarch64/sys/user.h: Remove unused
8796 #include of asm/ptrace.h.
8797 (PTRACE_GET_THREAD_AREA): Remove #undef.
8798 (PTRACE_GETHBPREGS): Likewise.
8799 (PTRACE_SETHBPREGS): Likewise.
8800 (struct user_regs_struct): New structure.
8801 (struct user_fpsimd_struct): New structure.
8802 * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h: Remove unused
8803 #include of asm/ptrace.h and second #include of sys/user.h.
8804 (PTRACE_GET_THREAD_AREA): Remove #undef.
8805 (PTRACE_GETHBPREGS): Likewise.
8806 (PTRACE_SETHBPREGS): Likewise.
8807 (ELF_NGREG): Use new struct user_regs_struct.
8808 (elf_fpregset_t): Use new struct user_fpsimd_struct.
8809
88102014-05-19 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
8811
8812 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypof.c: Moved ...
8813 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c: ... here.
8814
88152014-05-17 Jose E. Marchesi <jose.marchesi@oracle.com>
8816
8817 [BZ #16958]
8818 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Add missing
8819 membar to avoid block loads/stores to overlap previous stores.
8820
88212014-05-17 Richard Henderson <rth@redhat.com>
8822
8823 * sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h (PSEUDO):
8824 Create the __##syscall_name##_nocancel entry point.
8825 * sysdeps/unix/sysv/linux/alpha/sigsuspend.S (__sigsuspend_nocancel):
8826 Remove; let the sysdep-cancel.h code create it.
8827
88282014-05-17 David S. Miller <davem@davemloft.net>
8829
8830 * sysdeps/unix/sysv/linux/sparc/bits/termios.h (PAGEOUT, WRAP):
8831 Protect with __USE_GNU.
8832 (TIOCSET_TEMPT): Likewise.
8833 (TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
8834 TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI): Remove as
8835 these are already provided in bits/ioctl-types.h
8836
88372014-05-16 Roland McGrath <roland@hack.frob.com>
8838
8839 * sysdeps/unix/sysv/linux/alpha/arch-fork.h: New file.
8840 * sysdeps/unix/sysv/linux/ia64/nptl/fork.c: File removed.
8841
8842 * sysdeps/unix/sysv/linux/not-cancel.h (waitpid_not_cancel):
8843 Use wait4 regardless of [__NR_waitpid].
8844
88452014-05-16 Maciej W. Rozycki <macro@codesourcery.com>
8846
8847 PR libgcc/60166
8848 * sysdeps/arm/soft-fp/sfp-machine.h (_FP_NANFRAC_S, _FP_NANFRAC_D)
8849 (_FP_NANSIGN_Q): Set the quiet bit.
8850
88512014-05-16 Joseph Myers <joseph@codesourcery.com>
8852
8853 * benchtests/Makefile
8854 ($(addprefix $(objpfx)bench-,$(bench-math))): Depend on $(libm),
8855 not $(common-objpfx)math/libm.so.
8856 ($(addprefix $(objpfx)bench-,$(bench-pthread))): Depend on
8857 $(shared-thread-library), not $(common-objpfx)nptl/libpthread.so.
8858 * elf/Makefile ($(objpfx)noload): Depend on $(libdl), not
8859 $(common-objpfx)dlfcn/libdl.so.
8860 ($(objpfx)tst-audit8): Depend on $(libm), not
8861 $(common-objpfx)math/libm.so.
8862 * malloc/Makefile ($(objpfx)libmemusage.so): Depend on $(libdl),
8863 not $(common-objpfx)dlfcn/libdl.so.
8864 * math/Makefile
8865 ($(addprefix $(objpfx),$(filter-out $(tests-static),$(tests)))):
8866 Depend on $(libm), not $(objpfx)libm.so. Do not condition on
8867 [$(build-shared) = yes].
8868 ($(objpfx)test-fenv-tls): Depend on $(shared-thread-library), not
8869 $(common-objpfx)nptl/libpthread.so.
8870 * misc/Makefile ($(objpfx)tst-tsearch): Depend on $(libm), not
8871 $(common-objpfx)math/libm.so$(libm.so-version) or
8872 $(common-objpfx)math/libm.a depending on [$(build-shared) = yes].
8873 * nptl/Makefile ($(objpfx)tst-unload): Depend on $(libdl), not
8874 $(common-objpfx)dlfcn/libdl.so.
8875 * setjmp/Makefile (link-libm): Remove variable.
8876 ($(objpfx)tst-setjmp-fp): Depend on $(libm), not $(link-libm).
8877 * stdio-common/Makefile (link-libm): Remove variable.
8878 ($(objpfx)tst-printf-round): Depend on $(libm), not $(link-libm).
8879 * stdlib/Makefile (link-libm): Remove variable.
8880 ($(objpfx)bug-getcontext): Depend on $(libm), not $(link-libm).
8881 ($(objpfx)tst-strtod-round): Likewise.
8882 ($(objpfx)tst-tininess): Likewise.
8883 ($(objpfx)tst-strtod-underflow): Likewise.
8884 ($(objpfx)tst-strtod6): Likewise.
8885 ($(objpfx)tst-tls-atexit): Depend on $(shared-thread-library) and
8886 $(libdl), not $(common-objpfx)nptl/libpthread.so and
8887 $(common-objpfx)dlfcn/libdl.so.
8888
88892014-05-16 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
8890
8891 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_MISC]: Guard
8892 BSD terminal modes definitions.
8893
88942014-05-16 Roland McGrath <roland@hack.frob.com>
8895
8896 * sysdeps/unix/sysv/linux/arm/arch-fork.h: New file.
8897 * sysdeps/unix/sysv/linux/arm/fork.c: File removed.
8898
8899 * sysdeps/unix/sysv/linux/arch-fork.h: New file.
8900 * sysdeps/unix/sysv/linux/i386/fork.h: Moved ...
8901 * sysdeps/unix/sysv/linux/i386/arch-fork.h: ... here.
8902 Don't do #include_next.
8903 * sysdeps/unix/sysv/linux/x86_64/fork.h: Moved ...
8904 * sysdeps/unix/sysv/linux/x86_64/arch-fork.h: ... here.
8905 Don't do #include_next.
8906 * sysdeps/unix/sysv/linux/mips/arch-fork.h: New file.
8907 * sysdeps/unix/sysv/linux/mips/fork.h: File removed.
8908 * sysdeps/unix/sysv/linux/powerpc/arch-fork.h: New file.
8909 * sysdeps/unix/sysv/linux/powerpc/fork.h: File removed.
8910
89112014-05-16 Allan McRae <allan@archlinux.org>
8912
8913 * po/sv.po: Update Swedish translation from translation project.
8914
8915 * timezone/Makefile ($(objpfx)tzselect): Use correct variable
8916 in sed expression.
8917
89182014-05-16 Aurelien Jarno <aurelien@aurel32.net>
8919
8920 [BZ #16917]
8921 * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_internal): Return
8922 errno if the TIOCGPTN ioctl fails with an error different than
8923 EINVAL.
8924 * login/tst-ptsname.c: New file.
8925 * login/Makefile (tests): Add tst-ptsname.
8926
8927 [BZ #16943]
8928 * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Declare prlimit
8929 and prlimit64.
8930
89312014-05-15 Siddhesh Poyarekar <siddhesh@redhat.com>
8932
8933 [BZ #16849]
8934 * sysdeps/posix/getaddrinfo.c (gaih_inet): Only check for
8935 herrno to return EAI_AGAIN.
8936
89372014-05-14 Roland McGrath <roland@hack.frob.com>
8938
8939 * sysdeps/unix/sysv/linux/i386/nptl/c++-types.data: Moved ...
8940 * sysdeps/unix/sysv/linux/i386/c++-types.data: ... here.
8941 * sysdeps/unix/sysv/linux/i386/nptl/ld.abilist: Moved ...
8942 * sysdeps/unix/sysv/linux/i386/ld.abilist: ... here.
8943 * sysdeps/unix/sysv/linux/i386/nptl/libBrokenLocale.abilist: Moved ...
8944 * sysdeps/unix/sysv/linux/i386/libBrokenLocale.abilist: ... here.
8945 * sysdeps/unix/sysv/linux/i386/nptl/libanl.abilist: Moved ...
8946 * sysdeps/unix/sysv/linux/i386/libanl.abilist: ... here.
8947 * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Moved ...
8948 * sysdeps/unix/sysv/linux/i386/libc.abilist: ... here.
8949 * sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist: Moved ...
8950 * sysdeps/unix/sysv/linux/i386/libcrypt.abilist: ... here.
8951 * sysdeps/unix/sysv/linux/i386/nptl/libdl.abilist: Moved ...
8952 * sysdeps/unix/sysv/linux/i386/libdl.abilist: ... here.
8953 * sysdeps/unix/sysv/linux/i386/nptl/libm.abilist: Moved ...
8954 * sysdeps/unix/sysv/linux/i386/libm.abilist: ... here.
8955 * sysdeps/unix/sysv/linux/i386/nptl/libnsl.abilist: Moved ...
8956 * sysdeps/unix/sysv/linux/i386/libnsl.abilist: ... here.
8957 * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: Moved ...
8958 * sysdeps/unix/sysv/linux/i386/libpthread.abilist: ... here.
8959 * sysdeps/unix/sysv/linux/i386/nptl/libresolv.abilist: Moved ...
8960 * sysdeps/unix/sysv/linux/i386/libresolv.abilist: ... here.
8961 * sysdeps/unix/sysv/linux/i386/nptl/librt.abilist: Moved ...
8962 * sysdeps/unix/sysv/linux/i386/librt.abilist: ... here.
8963 * sysdeps/unix/sysv/linux/i386/nptl/libthread_db.abilist: Moved ...
8964 * sysdeps/unix/sysv/linux/i386/libthread_db.abilist: ... here.
8965 * sysdeps/unix/sysv/linux/i386/nptl/libutil.abilist: Moved ...
8966 * sysdeps/unix/sysv/linux/i386/libutil.abilist: ... here.
8967 * sysdeps/unix/sysv/linux/i386/nptl/localplt.data: Moved ...
8968 * sysdeps/unix/sysv/linux/i386/localplt.data: ... here.
8969 * sysdeps/unix/sysv/linux/x86_64/64/nptl/c++-types.data: Moved ...
8970 * sysdeps/unix/sysv/linux/x86_64/64/c++-types.data: ... here.
8971 * sysdeps/unix/sysv/linux/x86_64/64/nptl/ld.abilist: Moved ...
8972 * sysdeps/unix/sysv/linux/x86_64/64/ld.abilist: ... here.
8973 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libBrokenLocale.abilist:
8974 Moved ...
8975 * sysdeps/unix/sysv/linux/x86_64/64/libBrokenLocale.abilist: ... here.
8976 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libanl.abilist: Moved ...
8977 * sysdeps/unix/sysv/linux/x86_64/64/libanl.abilist: ... here.
8978 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Moved ...
8979 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: ... here.
8980 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist: Moved ...
8981 * sysdeps/unix/sysv/linux/x86_64/64/libcrypt.abilist: ... here.
8982 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libdl.abilist: Moved ...
8983 * sysdeps/unix/sysv/linux/x86_64/64/libdl.abilist: ... here.
8984 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libm.abilist: Moved ...
8985 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: ... here.
8986 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libnsl.abilist: Moved ...
8987 * sysdeps/unix/sysv/linux/x86_64/64/libnsl.abilist: ... here.
8988 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist: Moved ...
8989 * sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist: ... here.
8990 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libresolv.abilist: Moved ...
8991 * sysdeps/unix/sysv/linux/x86_64/64/libresolv.abilist: ... here.
8992 * sysdeps/unix/sysv/linux/x86_64/64/nptl/librt.abilist: Moved ...
8993 * sysdeps/unix/sysv/linux/x86_64/64/librt.abilist: ... here.
8994 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libthread_db.abilist: Moved ...
8995 * sysdeps/unix/sysv/linux/x86_64/64/libthread_db.abilist: ... here.
8996 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libutil.abilist: Moved ...
8997 * sysdeps/unix/sysv/linux/x86_64/64/libutil.abilist: ... here.
8998 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/c++-types.data: Moved ...
8999 * sysdeps/unix/sysv/linux/x86_64/x32/c++-types.data: ... here.
9000 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/ld.abilist: Moved ...
9001 * sysdeps/unix/sysv/linux/x86_64/x32/ld.abilist: ... here.
9002 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libBrokenLocale.abilist:
9003 Moved ...
9004 * sysdeps/unix/sysv/linux/x86_64/x32/libBrokenLocale.abilist: ... here.
9005 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libanl.abilist: Moved ...
9006 * sysdeps/unix/sysv/linux/x86_64/x32/libanl.abilist: ... here.
9007 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Moved ...
9008 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: ... here.
9009 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist: Moved ...
9010 * sysdeps/unix/sysv/linux/x86_64/x32/libcrypt.abilist: ... here.
9011 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libdl.abilist: Moved ...
9012 * sysdeps/unix/sysv/linux/x86_64/x32/libdl.abilist: ... here.
9013 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libm.abilist: Moved ...
9014 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: ... here.
9015 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libnsl.abilist: Moved ...
9016 * sysdeps/unix/sysv/linux/x86_64/x32/libnsl.abilist: ... here.
9017 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist: Moved ...
9018 * sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist: ... here.
9019 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libresolv.abilist: Moved ...
9020 * sysdeps/unix/sysv/linux/x86_64/x32/libresolv.abilist: ... here.
9021 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/librt.abilist: Moved ...
9022 * sysdeps/unix/sysv/linux/x86_64/x32/librt.abilist: ... here.
9023 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libthread_db.abilist:
9024 Moved ...
9025 * sysdeps/unix/sysv/linux/x86_64/x32/libthread_db.abilist: ... here.
9026 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libutil.abilist: Moved ...
9027 * sysdeps/unix/sysv/linux/x86_64/x32/libutil.abilist: ... here.
9028
9029 * nptl/sysdeps/unix/sysv/linux/x86/Makefile: File removed.
9030 * sysdeps/unix/sysv/linux/x86/Makefile [$(subdir) = nptl]
9031 (libpthread-sysdep_routines): Add elision-related stuff here instead.
9032 * nptl/sysdeps/unix/sysv/linux/x86/elision-conf.c: Moved ...
9033 * sysdeps/unix/sysv/linux/x86/elision-conf.c: ... here.
9034 * nptl/sysdeps/unix/sysv/linux/x86/elision-conf.h: Moved ...
9035 * sysdeps/unix/sysv/linux/x86/elision-conf.h: ... here.
9036 * nptl/sysdeps/unix/sysv/linux/x86/elision-lock.c: Moved ...
9037 * sysdeps/unix/sysv/linux/x86/elision-lock.c: ... here.
9038 * nptl/sysdeps/unix/sysv/linux/x86/elision-timed.c: Moved ...
9039 * sysdeps/unix/sysv/linux/x86/elision-timed.c: ... here.
9040 * nptl/sysdeps/unix/sysv/linux/x86/elision-trylock.c: Moved ...
9041 * sysdeps/unix/sysv/linux/x86/elision-trylock.c: ... here.
9042 * nptl/sysdeps/unix/sysv/linux/x86/elision-unlock.c: Moved ...
9043 * sysdeps/unix/sysv/linux/x86/elision-unlock.c: ... here.
9044 * nptl/sysdeps/unix/sysv/linux/x86/force-elision.h: Moved ...
9045 * sysdeps/unix/sysv/linux/x86/force-elision.h: ... here.
9046 * nptl/sysdeps/unix/sysv/linux/x86/hle.h: Moved ...
9047 * sysdeps/unix/sysv/linux/x86/hle.h: ... here.
9048 * nptl/sysdeps/unix/sysv/linux/x86/init-arch.c: Moved ...
9049 * sysdeps/unix/sysv/linux/x86/init-arch.c: ... here.
9050 * nptl/sysdeps/unix/sysv/linux/x86/init-arch.h: Moved ...
9051 * sysdeps/unix/sysv/linux/x86/init-arch.h: ... here.
9052 * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: Moved ...
9053 * sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: ... here.
9054 * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c: Moved ...
9055 * sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c: ... here.
9056 * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c: Moved ...
9057 * sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c: ... here.
9058 * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c: Moved ...
9059 * sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c: ... here.
9060
9061 * sysdeps/unix/sysv/linux/mips/fork.h: New file.
9062 * sysdeps/unix/sysv/linux/mips/nptl/fork.c: File removed.
9063
9064 * nptl/sysdeps/unix/sysv/linux/i386/Implies: File removed.
9065 * nptl/sysdeps/unix/sysv/linux/i386/i786/Implies: Moved ...
9066 * sysdeps/unix/sysv/linux/i386/i786/Implies: ... here.
9067 * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: Moved ...
9068 * sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: ... here.
9069 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S:
9070 Moved ...
9071 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S: ... here.
9072 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S:
9073 Moved ...
9074 * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S: ... here.
9075 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S:
9076 Moved ...
9077 * sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S: ... here.
9078 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S:
9079 Moved ...
9080 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S: ... here.
9081 * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: Moved ...
9082 * sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: ... here.
9083 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S:
9084 Moved ...
9085 * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S: ... here.
9086 * nptl/sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: Moved ...
9087 * sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: ... here.
9088 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S: Moved ...
9089 * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S: ... here.
9090 * nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S: Moved ...
9091 * sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S: ... here.
9092 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S:
9093 Moved ...
9094 * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S: ... here.
9095 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S:
9096 Moved ...
9097 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S:
9098 ... here.
9099 * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: Moved ...
9100 * sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: ... here.
9101 * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_post.S: Moved ...
9102 * sysdeps/unix/sysv/linux/i386/i586/sem_post.S: ... here.
9103 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S:
9104 Moved ...
9105 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S:
9106 ... here.
9107 * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S:
9108 Moved ...
9109 * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S: ... here.
9110 * nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S: Moved ...
9111 * sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S: ... here.
9112 * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: Moved ...
9113 * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: ... here.
9114 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S:
9115 Moved ...
9116 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: ... here.
9117 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S:
9118 Moved ...
9119 * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: ... here.
9120 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S:
9121 Moved ...
9122 * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S: ... here.
9123 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S:
9124 Moved ...
9125 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: ... here.
9126 * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: Moved ...
9127 * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: ... here.
9128 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S:
9129 Moved ...
9130 * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S: ... here.
9131 * nptl/sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: Moved ...
9132 * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: ... here.
9133 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Moved ...
9134 * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: ... here.
9135 * nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: Moved ...
9136 * sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: ... here.
9137 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S:
9138 Moved ...
9139 * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S: ... here.
9140 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
9141 Moved ...
9142 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
9143 ... here.
9144 * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: Moved ...
9145 * sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: ... here.
9146 * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Moved ...
9147 * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: ... here.
9148 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
9149 Moved ...
9150 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
9151 ... here.
9152 * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S:
9153 Moved ...
9154 * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: ... here.
9155 * nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Moved ...
9156 * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: ... here.
9157 * nptl/sysdeps/unix/sysv/linux/i386/dl-sysdep.h: Moved ...
9158 * sysdeps/unix/sysv/linux/i386/dl-sysdep.h: ... here.
9159 * nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h: Moved ...
9160 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: ... here.
9161 * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: Moved ...
9162 * sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: ... here.
9163 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S:
9164 Moved ...
9165 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S: ... here.
9166 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S:
9167 Moved ...
9168 * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S: ... here.
9169 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S:
9170 Moved ...
9171 * sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S: ... here.
9172 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S:
9173 Moved ...
9174 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S: ... here.
9175 * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: Moved ...
9176 * sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: ... here.
9177 * nptl/sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: Moved ...
9178 * sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: ... here.
9179 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S:
9180 Moved ...
9181 * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S: ... here.
9182 * nptl/sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: Moved ...
9183 * sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: ... here.
9184 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S: Moved ...
9185 * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S: ... here.
9186 * nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S: Moved ...
9187 * sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S: ... here.
9188 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S:
9189 Moved ...
9190 * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S: ... here.
9191 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S:
9192 Moved ...
9193 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S:
9194 ... here.
9195 * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: Moved ...
9196 * sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: ... here.
9197 * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_post.S: Moved ...
9198 * sysdeps/unix/sysv/linux/i386/i686/sem_post.S: ... here.
9199 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S:
9200 Moved ...
9201 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S:
9202 ... here.
9203 * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S:
9204 Moved ...
9205 * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S: ... here.
9206 * nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S: Moved ...
9207 * sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S: ... here.
9208 * nptl/sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Moved ...
9209 * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: ... here.
9210 * nptl/sysdeps/unix/sysv/linux/i386/smp.h: Moved ...
9211 * sysdeps/unix/sysv/linux/i386/smp.h: ... here.
9212 * nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S: Moved ...
9213 * sysdeps/unix/sysv/linux/i386/pthread_once.S: ... here.
9214 * nptl/sysdeps/unix/sysv/linux/i386/createthread.c: Moved ...
9215 * sysdeps/unix/sysv/linux/i386/createthread.c: ... here.
9216
9217 * sysdeps/unix/sysv/linux/powerpc/fork.h: New file.
9218 * nptl/sysdeps/unix/sysv/linux/powerpc/fork.c: File removed.
9219
9220 * nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_init.c: File removed.
9221 * nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_unlock.S: File removed.
9222
9223 * nptl/sysdeps/unix/sysv/linux/x86_64/Implies: File removed.
9224 * nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S: Moved ...
9225 * sysdeps/unix/sysv/linux/x86_64/cancellation.S: ... here.
9226 * nptl/sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S: Moved ...
9227 * sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S: ... here.
9228 * nptl/sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: Moved ...
9229 * sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: ... here.
9230 * nptl/sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S: Moved ...
9231 * sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S: ... here.
9232 * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Moved ...
9233 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: ... here.
9234 * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Moved ...
9235 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: ... here.
9236 * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: Moved ...
9237 * sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: ... here.
9238 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: Moved ...
9239 * sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: ... here.
9240 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S:
9241 Moved ...
9242 * sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S: ... here.
9243 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: Moved ...
9244 * sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: ... here.
9245 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:
9246 Moved ...
9247 * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: ... here.
9248 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Moved ...
9249 * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: ... here.
9250 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Moved ...
9251 * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: ... here.
9252 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: Moved ...
9253 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: ... here.
9254 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S:
9255 Moved ...
9256 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: ... here.
9257 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S:
9258 Moved ...
9259 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S: ... here.
9260 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: Moved ...
9261 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: ... here.
9262 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: Moved ...
9263 * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: ... here.
9264 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c: Moved ...
9265 * sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c: ... here.
9266 * nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S: Moved ...
9267 * sysdeps/unix/sysv/linux/x86_64/sem_post.S: ... here.
9268 * nptl/sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Moved ...
9269 * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: ... here.
9270 * nptl/sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Moved ...
9271 * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: ... here.
9272 * nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Moved ...
9273 * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: ... here.
9274 * nptl/sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Moved ...
9275 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: ... here.
9276
9277 * nptl/sysdeps/unix/sysv/linux/fork.c: Use <> for fork.h #include.
9278 * nptl/sysdeps/unix/sysv/linux/x86_64/fork.c: File removed.
9279 * sysdeps/unix/sysv/linux/x86_64/fork.h: New file.
9280 * nptl/sysdeps/unix/sysv/linux/i386/fork.c: File removed.
9281 * sysdeps/unix/sysv/linux/i386/fork.h: New file.
9282
9283 * nptl/sysdeps/unix/sysv/linux/i386/not-cancel.h: Moved ...
9284 * sysdeps/unix/sysv/linux/not-cancel.h: ... here.
9285 * nptl/sysdeps/unix/sysv/linux/sparc/not-cancel.h: File removed.
9286 * nptl/sysdeps/unix/sysv/linux/sh/not-cancel.h: File removed.
9287 * nptl/sysdeps/unix/sysv/linux/powerpc/not-cancel.h: File removed.
9288 * nptl/sysdeps/unix/sysv/linux/x86_64/not-cancel.h: File removed.
9289 * nptl/sysdeps/unix/sysv/linux/s390/not-cancel.h: File removed.
9290 * sysdeps/unix/sysv/linux/generic/not-cancel.h: File removed.
9291 * sysdeps/unix/sysv/linux/generic/nptl/not-cancel.h: File removed.
9292 * sysdeps/unix/sysv/linux/m68k/nptl/not-cancel.h: File removed.
9293
9294 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_init.c: File removed.
9295 * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_unlock.S: Likewise.
9296
9297 * nptl/sysdeps/unix/sysv/linux/x86_64/compat-timer.h: Moved ...
9298 * sysdeps/unix/sysv/linux/x86_64/compat-timer.h: ... here.
9299 * nptl/sysdeps/unix/sysv/linux/x86_64/Versions: Remove, merge into ...
9300 * sysdeps/unix/sysv/linux/x86_64/Versions: ... here.
9301 * nptl/sysdeps/unix/sysv/linux/x86_64/timer_create.c: Moved ...
9302 * sysdeps/unix/sysv/linux/x86_64/timer_create.c: here.
9303 * nptl/sysdeps/unix/sysv/linux/x86_64/timer_delete.c: Moved ...
9304 * sysdeps/unix/sysv/linux/x86_64/timer_delete.c: ... here
9305 * nptl/sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c: Moved ...
9306 * sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c: ... here
9307 * nptl/sysdeps/unix/sysv/linux/x86_64/timer_gettime.c: Moved ...
9308 * sysdeps/unix/sysv/linux/x86_64/timer_gettime.c: ... here
9309 * nptl/sysdeps/unix/sysv/linux/x86_64/timer_settime.c: Moved ...
9310 * sysdeps/unix/sysv/linux/x86_64/timer_settime.c: ... here
9311 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c:
9312 Update #include.
9313 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c:
9314 Likewise.
9315 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c:
9316 Likewise.
9317 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c:
9318 Likewise.
9319 * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c:
9320 Likewise.
9321 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c:
9322 Likewise.
9323 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c:
9324 Likewise.
9325 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c:
9326 Likewise.
9327 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c:
9328 Likewise.
9329 * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c:
9330 Likewise.
9331 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: Likewise.
9332 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: Likewise.
9333 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: Likewise.
9334 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: Likewise.
9335 * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: Likewise.
9336 * sysdeps/unix/sysv/linux/alpha/nptl/timer_create.c: Likewise.
9337 * sysdeps/unix/sysv/linux/alpha/nptl/timer_delete.c: Likewise.
9338 * sysdeps/unix/sysv/linux/alpha/nptl/timer_getoverr.c: Likewise.
9339 * sysdeps/unix/sysv/linux/alpha/nptl/timer_gettime.c: Likewise.
9340 * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Likewise.
9341 * sysdeps/unix/sysv/linux/ia64/nptl/timer_create.c: Likewise.
9342 * sysdeps/unix/sysv/linux/ia64/nptl/timer_delete.c: Likewise.
9343 * sysdeps/unix/sysv/linux/ia64/nptl/timer_getoverr.c: Likewise.
9344 * sysdeps/unix/sysv/linux/ia64/nptl/timer_gettime.c: Likewise.
9345 * sysdeps/unix/sysv/linux/ia64/nptl/timer_settime.c: Likewise.
9346
9347 * sysdeps/unix/sysv/linux/x86_64/clone.S: Deconditionalize the code
9348 that was previously under [RESET_PID].
9349 * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
9350 * nptl/sysdeps/unix/sysv/linux/x86_64/clone.S: File removed.
9351 * nptl/sysdeps/unix/sysv/linux/i386/clone.S: File removed.
9352
9353 * sysdeps/i386/nptl/Implies: New file.
9354 * sysdeps/x86_64/nptl/Implies: New file.
9355 * nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h: Moved ...
9356 * sysdeps/x86/nptl/bits/pthreadtypes.h: ... here.
9357 * nptl/sysdeps/unix/sysv/linux/x86/bits/semaphore.h: Moved ...
9358 * sysdeps/x86/nptl/bits/semaphore.h: ... here.
9359
9360 * sysdeps/unix/sysv/linux/i386/vfork.S: Include <tcb-offsets.h>.
9361 (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
9362 (__libc_vfork): New strong alias.
9363 * nptl/sysdeps/unix/sysv/linux/i386/vfork.S: File removed.
9364 * nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S: File removed.
9365
9366 * sysdeps/unix/sysv/linux/x86_64/vfork.S: Include <tcb-offsets.h>.
9367 (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
9368 (__libc_vfork): New strong alias.
9369 * nptl/sysdeps/unix/sysv/linux/x86_64/vfork.S: File removed.
9370 * nptl/sysdeps/unix/sysv/linux/x86_64/pt-vfork.S: File removed.
9371
9372 * sysdeps/unix/sysv/linux/arm/vfork.S: Include <tcb-offsets.h>.
9373 (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
9374 (__libc_vfork): New strong alias.
9375 * sysdeps/unix/sysv/linux/arm/nptl/vfork.S: File removed.
9376 * sysdeps/unix/sysv/linux/arm/nptl/pt-vfork.S: File removed.
9377 * nptl/pt-vfork.c: New file.
9378 * nptl/Versions (libc: GLIBC_PRIVATE): Add __libc_vfork.
9379 (libpthread: GLIBC_2.20): New version set (empty).
9380
93812014-05-14 Will Newton <will.newton@linaro.org>
9382
9383 * stdlib/gmp-impl.h: Test USE_STACK_ALLOC #ifdef
9384 rather than #if.
9385
93862014-05-14 Joseph Myers <joseph@codesourcery.com>
9387
9388 [BZ #16564]
9389 * sysdeps/i386/fpu/s_log1pl.S (__log1pl): Do not add 1 to positive
9390 arguments with exponent 65 or above.
9391 * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): Do not add 1 to
9392 arguments 0x1p113L or above.
9393 * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Do not add 1
9394 to arguments 0x1p107L or above.
9395 * sysdeps/x86_64/fpu/s_log1pl.S (__log1pl): Do not add 1 to
9396 positive arguments with exponent 65 or above.
9397 * math/auto-libm-test-in: Add more tests of log1p.
9398 * math/auto-libm-test-out: Regenerated.
9399
9400 [BZ #16928]
9401 * math/s_cacos.c (__cacos): Ensure zero real part of result from
9402 non-finite arguments is +0.
9403 * math/s_cacosf.c (__cacosf): Likewise.
9404 * math/s_cacosl.c (__cacosl): Likewise.
9405 * math/libm-test.inc (cacos_test): Use ALL_RM_TEST.
9406 * sysdeps/i386/fpu/libm-test-ulps: Update.
9407 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
9408
9409 [BZ #16927]
9410 * sysdeps/i386/fpu/e_acosh.S (__ieee754_acosh): Use fabs on x-1
9411 value.
9412 * sysdeps/i386/fpu/e_acoshf.S (__ieee754_acoshf): Likewise.
9413 * sysdeps/i386/fpu/e_acoshl.S (__ieee754_acoshl): Likewise.
9414 * sysdeps/ieee754/ldbl-96/e_acoshl.c (__ieee754_acoshl): Correct
9415 for explicit high bit of mantissa when testing for argument equal
9416 to 1.
9417 * math/libm-test.inc (acosh_test): Use ALL_RM_TEST.
9418 * sysdeps/i386/fpu/libm-test-ulps: Update.
9419 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
9420
9421 [BZ #16516]
9422 * sysdeps/ieee754/dbl-64/s_erf.c (efx8): Remove variable.
9423 (__erf): Scale by 16 instead of 8 in potentially underflowing
9424 case. Ensure exception if result actually underflows.
9425 * sysdeps/ieee754/flt-32/s_erff.c (efx8): Remove variable.
9426 (__erff): Scale by 16 instead of 8 in potentially underflowing
9427 case. Ensure exception if result actually underflows.
9428 * sysdeps/ieee754/ldbl-128/s_erfl.c: Include <float.h>.
9429 (efx8): Remove variable.
9430 (__erfl): Scale by 16 instead of 8 in potentially underflowing
9431 case. Ensure exception if result actually underflows.
9432 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Include <float.h>.
9433 (efx8): Remove variable.
9434 (__erfl): Scale by 16 instead of 8 in potentially underflowing
9435 case. Ensure exception if result actually underflows.
9436 * sysdeps/ieee754/ldbl-96/s_erfl.c: Include <float.h>.
9437 (efx8): Remove variable.
9438 (__erfl): Scale by 16 instead of 8 in potentially underflowing
9439 case. Ensure exception if result actually underflows.
9440 * math/auto-libm-test-in: Add more tests of erf.
9441 * math/auto-libm-test-out: Regenerated.
9442
94432014-05-14 Andreas Schwab <schwab@suse.de>
9444
9445 * elf/rtld.c (_dl_start_final, _dl_start, init_tls, dl_main):
9446 Remove code conditionalized on USE___THREAD.
9447
9448 * config.h.in (HAVE_PT_CHOWN): Define as 0.
9449 * sysdeps/unix/grantpt.c (grantpt): Check HAVE_PT_CHOWN for value,
9450 not definedness.
9451
94522014-05-14 Joseph Myers <joseph@codesourcery.com>
9453
9454 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES):
9455 Define unconditionally.
9456 (__ASSUME_O_CLOEXEC): Likewise.
9457 (__ASSUME_SOCK_CLOEXEC): Likewise.
9458 (__ASSUME_IN_NONBLOCK): Likewise.
9459 (__ASSUME_PIPE2): Likewise.
9460 (__ASSUME_EVENTFD2): Likewise.
9461 (__ASSUME_SIGNALFD4): Likewise.
9462 (__ASSUME_DUP3): Likewise.
9463 * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
9464 (__ASSUME_DUP3): Do not define.
9465 (__ASSUME_EVENTFD2): Likewise.
9466 (__ASSUME_IN_NONBLOCK): Likewise.
9467 (__ASSUME_O_CLOEXEC): Likewise.
9468 (__ASSUME_PIPE2): Likewise.
9469 (__ASSUME_SIGNALFD4): Likewise.
9470 (__ASSUME_SOCK_CLOEXEC): Likewise.
9471 (__ASSUME_UTIMES): Undefine.
9472 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
9473 (__ASSUME_UTIMES): Do not define.
9474 (__ASSUME_O_CLOEXEC): Likewise.
9475 (__ASSUME_SOCK_CLOEXEC): Likewise.
9476 (__ASSUME_IN_NONBLOCK): Undefine if [__LINUX_KERNEL_VERSION <
9477 0x020621] instead of defining if [__LINUX_KERNEL_VERSION >=
9478 0x020621].
9479 (__ASSUME_PIPE2): Likewise.
9480 (__ASSUME_EVENTFD2): Likewise.
9481 (__ASSUME_SIGNALFD4): Likewise.
9482 [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_DUP3): Undefine.
9483 * sysdeps/unix/sysv/linux/arm/kernel-features.h (__ASSUME_UTIMES):
9484 Do not define.
9485 (__ASSUME_EVENTFD2): Likewise.
9486 (__ASSUME_SIGNALFD4): Likewise.
9487 * sysdeps/unix/sysv/linux/hppa/kernel-features.h
9488 (__ASSUME_32BITUIDS): Likewise.
9489 (__ASSUME_TRUNCATE64_SYSCALL): Likewise.
9490 (__ASSUME_IPC64): Likewise.
9491 (__ASSUME_ST_INO_64_BIT): Likewise.
9492 (__ASSUME_GETDENTS64_SYSCALL): Likewise.
9493 [__LINUX_KERNEL_VERSION < 0x030e00] (__ASSUME_UTIMES): Undefine.
9494 * sysdeps/unix/sysv/linux/ia64/kernel-features.h
9495 (__ASSUME_UTIMES): Do not define.
9496 (__ASSUME_PSELECT): Likewise.
9497 (__ASSUME_PPOLL): Likewise.
9498 (__ASSUME_O_CLOEXEC): Likewise.
9499 (__ASSUME_SOCK_CLOEXEC): Likewise.
9500 (__ASSUME_IN_NONBLOCK): Likewise.
9501 (__ASSUME_PIPE2): Likewise.
9502 (__ASSUME_EVENTFD2): Likewise.
9503 (__ASSUME_SIGNALFD4): Likewise.
9504 (__ASSUME_DUP3): Likewise.
9505 * sysdeps/unix/sysv/linux/m68k/kernel-features.h
9506 (__ASSUME_UTIMES): Likewise.
9507 (__ASSUME_O_CLOEXEC): Likewise.
9508 (__ASSUME_SOCK_CLOEXEC): Likewise.
9509 (__ASSUME_IN_NONBLOCK): Likewise.
9510 (__ASSUME_PIPE2): Likewise.
9511 (__ASSUME_EVENTFD2): Likewise.
9512 (__ASSUME_SIGNALFD4): Likewise.
9513 (__ASSUME_DUP3): Likewise.
9514 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
9515 (__ASSUME_UTIMES): Likewise.
9516 (__ASSUME_O_CLOEXEC): Likewise.
9517 (__ASSUME_SOCK_CLOEXEC): Likewise.
9518 (__ASSUME_IN_NONBLOCK): Likewise.
9519 (__ASSUME_PIPE2): Likewise.
9520 (__ASSUME_EVENTFD2): Likewise.
9521 (__ASSUME_SIGNALFD4): Likewise.
9522 (__ASSUME_DUP3): Likewise.
9523 * sysdeps/unix/sysv/linux/mips/kernel-features.h (__ASSUME_IPC64):
9524 Likewise.
9525 (__ASSUME_UTIMES): Likewise.
9526 (__ASSUME_EVENTFD2): Likewise.
9527 (__ASSUME_SIGNALFD4): Likewise.
9528 * sysdeps/unix/sysv/linux/tile/kernel-features.h
9529 (__ASSUME_O_CLOEXEC): Likewise.
9530 (__ASSUME_SOCK_CLOEXEC): Likewise.
9531 (__ASSUME_IN_NONBLOCK): Likewise.
9532 (__ASSUME_PIPE2): Likewise.
9533 (__ASSUME_EVENTFD2): Likewise.
9534 (__ASSUME_SIGNALFD4): Likewise.
9535 (__ASSUME_DUP3): Likewise.
9536 (__ASSUME_UTIMES): Undefine.
9537
9538 * sysdeps/arm/fclrexcpt.c (__feclearexcept): Rename to
9539 feclearexcept. Remove symbol versioning code.
9540 * sysdeps/arm/fegetenv.c (__fegetenv): Rename to fegetenv. Remove
9541 symbol versioning code.
9542 * sysdeps/arm/fesetenv.c (__fesetenv): Rename to fesetenv. Remove
9543 symbol versioning code.
9544 * sysdeps/arm/feupdateenv.c (__feupdateenv): Rename to
9545 feupdateenv. Remove symbol versioning code.
9546 * sysdeps/arm/fgetexcptflg.c (__fegetexceptflag): Rename to
9547 fegetexceptflag. Remove symbol versioning code.
9548 * sysdeps/arm/fsetexcptflg.c (__fesetexceptflag): Rename to
9549 fesetexceptflag. Remove symbol versioning code.
9550 * sysdeps/unix/sysv/linux/arm/Versions (libc): Remove GLIBC_2.0,
9551 GLIBC_2.2 and GLIBC_2.3.3 entries. Change GLIBC_2.1 to GLIBC_2.4.
9552 * sysdeps/unix/sysv/linux/arm/posix_fadvise64.c
9553 (__posix_fadvise64_l32): Remove prototype.
9554 [SHLIB_COMPAT(libc, GLIBC_2_2, GLIBC_2_3_3)]: Remove conditional
9555 code.
9556
95572014-05-13 Roland McGrath <roland@hack.frob.com>
9558
9559 * sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h: Moved ...
9560 * sysdeps/arm/nptl/bits/pthreadtypes.h: ... here.
9561 * sysdeps/unix/sysv/linux/arm/nptl/bits/semaphore.h: Moved ...
9562 * sysdeps/arm/nptl/bits/semaphore.h: ... here.
9563
95642014-05-13 Sami Kerola <kerolasa@iki.fi>
9565
9566 * timezone/Makefile ($(objpfx)tzselect): Use zonedir instead
9567 current working directory
9568
95692014-05-13 Roland McGrath <roland@hack.frob.com>
9570
9571 * sysdeps/unix/sysv/linux/arm/nptl/c++-types.data: Moved ...
9572 * sysdeps/unix/sysv/linux/arm/c++-types.data: ... here.
9573 * sysdeps/unix/sysv/linux/arm/nptl/createthread.c: Moved ...
9574 * sysdeps/unix/sysv/linux/arm/createthread.c: ... here.
9575 * sysdeps/unix/sysv/linux/arm/nptl/fork.c: Moved ...
9576 * sysdeps/unix/sysv/linux/arm/fork.c: ... here.
9577 * sysdeps/unix/sysv/linux/arm/nptl/ld.abilist: Moved ...
9578 * sysdeps/unix/sysv/linux/arm/ld.abilist: ... here.
9579 * sysdeps/unix/sysv/linux/arm/nptl/libBrokenLocale.abilist: Moved ...
9580 * sysdeps/unix/sysv/linux/arm/libBrokenLocale.abilist: ... here.
9581 * sysdeps/unix/sysv/linux/arm/nptl/libanl.abilist: Moved ...
9582 * sysdeps/unix/sysv/linux/arm/libanl.abilist: ... here.
9583 * sysdeps/unix/sysv/linux/arm/nptl/libc.abilist: Moved ...
9584 * sysdeps/unix/sysv/linux/arm/libc.abilist: ... here.
9585 * sysdeps/unix/sysv/linux/arm/nptl/libcrypt.abilist: Moved ...
9586 * sysdeps/unix/sysv/linux/arm/libcrypt.abilist: ... here.
9587 * sysdeps/unix/sysv/linux/arm/nptl/libdl.abilist: Moved ...
9588 * sysdeps/unix/sysv/linux/arm/libdl.abilist: ... here.
9589 * sysdeps/unix/sysv/linux/arm/nptl/libm.abilist: Moved ...
9590 * sysdeps/unix/sysv/linux/arm/libm.abilist: ... here.
9591 * sysdeps/unix/sysv/linux/arm/nptl/libnsl.abilist: Moved ...
9592 * sysdeps/unix/sysv/linux/arm/libnsl.abilist: ... here.
9593 * sysdeps/unix/sysv/linux/arm/nptl/libpthread.abilist: Moved ...
9594 * sysdeps/unix/sysv/linux/arm/libpthread.abilist: ... here.
9595 * sysdeps/unix/sysv/linux/arm/nptl/libresolv.abilist: Moved ...
9596 * sysdeps/unix/sysv/linux/arm/libresolv.abilist: ... here.
9597 * sysdeps/unix/sysv/linux/arm/nptl/librt.abilist: Moved ...
9598 * sysdeps/unix/sysv/linux/arm/librt.abilist: ... here.
9599 * sysdeps/unix/sysv/linux/arm/nptl/libthread_db.abilist: Moved ...
9600 * sysdeps/unix/sysv/linux/arm/libthread_db.abilist: ... here.
9601 * sysdeps/unix/sysv/linux/arm/nptl/libutil.abilist: Moved ...
9602 * sysdeps/unix/sysv/linux/arm/libutil.abilist: ... here.
9603 * sysdeps/unix/sysv/linux/arm/nptl/localplt.data: Moved ...
9604 * sysdeps/unix/sysv/linux/arm/localplt.data: ... here.
9605 * sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.h: Moved ...
9606 * sysdeps/unix/sysv/linux/arm/lowlevellock.h: ... here.
9607 * sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h: Moved ...
9608 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: ... here.
9609 * sysdeps/unix/sysv/linux/arm/nptl/unwind-forcedunwind.c: Moved ...
9610 * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c: ... here.
9611 * sysdeps/unix/sysv/linux/arm/nptl/unwind-resume.c: Moved ...
9612 * sysdeps/unix/sysv/linux/arm/unwind-resume.c: ... here.
9613
9614 * sysdeps/unix/sysv/linux/arm/Versions (libc: GLIBC_PRIVATE): New set.
9615 * sysdeps/unix/sysv/linux/arm/nptl/Versions: File removed.
9616
9617 * sysdeps/unix/sysv/linux/arm/Makefile
9618 [$(subdir) = rt] (librt-sysdep_routines, librt-shared-only-routines):
9619 Add rt-aeabi_unwind_cpp_pr1.
9620 [$(subdir) = nptl] (librt-sysdep_routines, librt-shared-only-routines):
9621 Add nptl-aeabi_unwind_cpp_pr1.
9622 [$(subdir) = nptl] (tests): Filter out tst-cleanupx4.
9623 * sysdeps/unix/sysv/linux/arm/nptl/Makefile: File removed.
9624 * sysdeps/unix/sysv/linux/arm/nptl/rt-aeabi_unwind_cpp_pr1.c: Move ...
9625 * sysdeps/unix/sysv/linux/arm/rt-aeabi_unwind_cpp_pr1.c: ... here.
9626 * sysdeps/unix/sysv/linux/arm/nptl/nptl-aeabi_unwind_cpp_pr1.c: Move ...
9627 * sysdeps/unix/sysv/linux/arm/nptl-aeabi_unwind_cpp_pr1.c: ... here.
9628
9629 * sysdeps/unix/sysv/linux/arm/configure.ac: Force -fexceptions here.
9630 * sysdeps/unix/sysv/linux/arm/configure: Regenerated.
9631 * sysdeps/unix/sysv/linux/arm/nptl/configure.ac: File removed.
9632 * sysdeps/unix/sysv/linux/arm/nptl/configure: File removed.
9633
9634 * sysdeps/unix/sysv/linux/arm/clone.S: Include <tcb-offsets.h>.
9635 Deconditionalize the code that was previously under [RESET_PID].
9636 * sysdeps/unix/sysv/linux/arm/nptl/clone.S: File removed.
9637
9638 * sysdeps/generic/exit-thread.h: New file.
9639 * sysdeps/unix/sysv/linux/exit-thread.h: New file.
9640 * include/unistd.h (__exit_thread): Remove declaration.
9641 * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Drop exit-thread.
9642 * sysdeps/unix/sysv/linux/exit-thread.S: File removed.
9643 * csu/libc-start.c: Include <exit-thread.h>.
9644 (LIBC_START_MAIN): Pass no argument to __exit_thread.
9645 * nptl/pthread_create.c: Include <exit-thread.h>.
9646 (start_thread): Call __exit_thread in place of __exit_thread_inline.
9647 * nptl/sysdeps/i386/pthreaddef.h (__exit_thread_inline): Macro removed.
9648 * nptl/sysdeps/powerpc/pthreaddef.h: Likewise.
9649 * nptl/sysdeps/s390/pthreaddef.h: Likewise.
9650 * nptl/sysdeps/sh/pthreaddef.h: Likewise.
9651 * nptl/sysdeps/sparc/sparc32/pthreaddef.h: Likewise.
9652 * nptl/sysdeps/sparc/sparc64/pthreaddef.h: Likewise.
9653 * nptl/sysdeps/x86_64/pthreaddef.h: Likewise.
9654 * sysdeps/aarch64/nptl/pthreaddef.h: Likewise.
9655 * sysdeps/alpha/nptl/pthreaddef.h: Likewise.
9656 * sysdeps/arm/nptl/pthreaddef.h: Likewise.
9657 * sysdeps/hppa/nptl/pthreaddef.h: Likewise.
9658 * sysdeps/ia64/nptl/pthreaddef.h: Likewise.
9659 * sysdeps/m68k/nptl/pthreaddef.h: Likewise.
9660 * sysdeps/microblaze/nptl/pthreaddef.h: Likewise.
9661 * sysdeps/mips/nptl/pthreaddef.h: Likewise.
9662 * sysdeps/tile/nptl/pthreaddef.h: Likewise.
9663
96642014-05-13 Andreas Schwab <schwab@suse.de>
9665
9666 * sysdeps/unix/grantpt.c (grantpt): Fix typo in assertion.
9667
96682014-05-12 Joseph Myers <joseph@codesourcery.com>
9669
9670 * sysdeps/unix/sysv/linux/kernel-features.h [__s390__]
9671 (__ASSUME_UTIMES): Do not condition on kernel version.
9672 (__ASSUME_PSELECT): Define unconditionally.
9673 (__ASSUME_PPOLL): Likewise.
9674 (__ASSUME_ATFCTS): Likewise.
9675 (__ASSUME_SET_ROBUST_LIST): Do not condition on kernel version.
9676 (__ASSUME_COMPLETE_READV_WRITEV): Define unconditionally.
9677 (__ASSUME_FUTEX_LOCK_PI): Do not condition on kernel version.
9678 (__ASSUME_UTIMENSAT): Define unconditionally.
9679 (__ASSUME_PRIVATE_FUTEX): Likewise.
9680 (__ASSUME_FALLOCATE): Likewise.
9681 (__ASSUME_O_CLOEXEC): Likewise.
9682 (__LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL): Remove.
9683 (__ASSUME_ARG_MAX_STACK_BASED): Likewise.
9684 (__ASSUME_ADJ_OFFSET_SS_READ): Define unconditionally.
9685 (__ASSUME_SOCK_CLOEXEC): Do not condition on kernel version.
9686 (__ASSUME_IN_NONBLOCK): Likewise.
9687 (__ASSUME_PIPE2): Likewise.
9688 (__ASSUME_EVENTFD2): Likewise.
9689 (__ASSUME_SIGNALFD4): Likewise.
9690 (__ASSUME_DUP3): Likewise.
9691 [__x86_64__ || __sparc__] (__ASSUME_ACCEPT4_SYSCALL): Likewise.
9692 (__ASSUME_FUTEX_CLOCK_REALTIME): Define unconditionally.
9693 (__ASSUME_AT_RANDOM): Likewise.
9694 (__ASSUME_PREADV): Likewise.
9695 (__ASSUME_PWRITEV): Likewise.
9696 (__ASSUME_REQUEUE_PI): Do not condition on kernel version.
9697 (__ASSUME_F_GETOWN_EX): Define unconditionally.
9698 (__ASSUME_XFS_RESTRICTED_CHOWN): Likewise.
9699 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
9700 [!__ASSUME_ARG_MAX_STACK_BASED]: Remove conditional code.
9701 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
9702 (__ASSUME_O_CLOEXEC): Define unconditionally.
9703 (__ASSUME_PSELECT): Do not undefine conditionally.
9704 (__ASSUME_PPOLL): Likewise.
9705 (__ASSUME_ATFCTS): Likewise.
9706 (__ASSUME_SET_ROBUST_LIST): Likewise.
9707 (__ASSUME_UTIMENSAT): Likewise.
9708 (__ASSUME_FDATASYNC): Define unconditionally.
9709 * sysdeps/unix/sysv/linux/arm/kernel-features.h
9710 (__ASSUME_SIGFRAME_V2): Likewise.
9711 )__ASSUME_EVENTFD2): Likewise.
9712 (__ASSUME_SIGNALFD4): Likewise.
9713 (__ASSUME_PSELECT): Do not undefine conditionally.
9714 (__ASSUME_PPOLL): Likewise.
9715 * sysdeps/unix/sysv/linux/ia64/kernel-features.h
9716 (__ASSUME_PSELECT): Define unconditionally.
9717 (__ASSUME_PPOLL): Likewise.
9718 (__ASSUME_O_CLOEXEC): Likewise.
9719 (__ASSUME_SOCK_CLOEXEC): Likewise.
9720 (__ASSUME_IN_NONBLOCK): Likewise.
9721 (__ASSUME_PIPE2): Likewise.
9722 (__ASSUME_EVENTFD2): Likewise.
9723 (__ASSUME_SIGNALFD4): Likewise.
9724 (__ASSUME_DUP3): Likewise.
9725 * sysdeps/unix/sysv/linux/m68k/kernel-features.h
9726 (__ASSUME_O_CLOEXEC): Likewise.
9727 (__ASSUME_SOCK_CLOEXEC): Likewise.
9728 (__ASSUME_IN_NONBLOCK): Likewise.
9729 (__ASSUME_PIPE2): Likewise.
9730 (__ASSUME_EVENTFD2): Likewise.
9731 (__ASSUME_SIGNALFD4): Likewise.
9732 (__ASSUME_DUP3): Likewise.
9733 * sysdeps/unix/sysv/linux/mips/kernel-features.h
9734 (__ASSUME_EVENTFD2): Likewise.
9735 (__ASSUME_SIGNALFD4): Likewise.
9736 (__ASSUME_ACCEPT4_SYSCALL): Likewise.
9737
97382014-05-12 Andreas Schwab <schwab@suse.de>
9739
9740 [BZ #16932]
9741 * nis/nss_nis/nis-hosts.c (internal_gethostbyname2_r)
9742 (_nss_nis_gethostbyname4_r): Return error if item length is larger
9743 than maximum RPC packet size.
9744 * nis/nss_nis/nis-initgroups.c (initgroups_netid): Likewise.
9745 * nis/nss_nis/nis-network.c (_nss_nis_getnetbyname_r): Likewise.
9746 * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r)
9747 (_nss_nis_getservbyport_r): Likewise.
9748
97492014-05-12 Will Newton <will.newton@linaro.org>
9750
9751 * malloc/Makefile (tests): Add tst-mallopt.
9752 * malloc/tst-mallopt.c: New file.
9753
97542014-05-09 Roland McGrath <roland@hack.frob.com>
9755
9756 * sysdeps/arm/armv7/strcmp.S: Use sfi_breg prefix on loads not from sp.
9757 [NO_THUMB]: Cope without cbz, cnbz, and orn instructions.
9758
97592014-05-09 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
9760
9761 * elf/Makefile (tst-tlsmod5.so): Add $(no-as-needed).
9762 (tst-tlsmod6.so): Likewise.
9763
97642014-05-09 Roland McGrath <roland@hack.frob.com>
9765
9766 * sysdeps/gnu/unwind-resume.c (libgcc_s_resume): Mark as noreturn.
9767
97682014-05-09 Joseph Myers <joseph@codesourcery.com>
9769
9770 [BZ #16064]
9771 * sysdeps/i386/fpu/fegetenv.c: Include <unistd.h>, <ldsodefs.h>
9772 and <dl-procinfo.h>.
9773 (__fegetenv): Save SSE state in envp->__eip if supported.
9774 * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Save SSE state in
9775 envp->__eip if supported.
9776 * sysdeps/i386/fpu/fesetenv.c: Include <unistd.h>, <ldsodefs.h>
9777 and <dl-procinfo.h>.
9778 (__fesetenv): Always set __eip, __cs_selector, __opcode,
9779 __data_offset and __data_selector in environment to 0. Set SSE
9780 state if supported.
9781 * sysdeps/x86/fpu/Makefile [$(subdir) = math] (tests): Add
9782 test-fenv-sse.
9783 [$(subdir) = math] (CFLAGS-test-fenv-sse.c): Add -msse2
9784 -mfpmath=sse.
9785 * sysdeps/x86/fpu/test-fenv-sse.c: New file.
9786
97872014-05-09 Will Newton <will.newton@linaro.org>
9788
9789 * sysdeps/arm/preconfigure.ac: Set libc_commonpagesize
9790 and libc_relro_required for ARM.
9791 * sysdeps/arm/preconfigure: Regenerate.
9792
97932014-05-09 Dominik Vogt <vogt@linux.vnet.ibm.com>
9794 Stefan Liebler <stli@linux.vnet.ibm.com>
9795
9796 * config.make.in (enable-lock-elision): New Makefile variable.
9797 * configure.ac: Likewise.
9798 * configure: Regenerate.
9799 * sysdeps/s390/configure.ac:
9800 Add check for gcc transactions support.
9801 * sysdeps/s390/configure: Regenerate.
9802 * nptl/sysdeps/unix/sysv/linux/s390/Makefile: New file.
9803 Build elision files if enabled.
9804 * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.c: New file.
9805 Add lock elision support for s390.
9806 * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.h: Likewise.
9807 * nptl/sysdeps/unix/sysv/linux/s390/elision-lock.c: Likewise.
9808 * nptl/sysdeps/unix/sysv/linux/s390/elision-timed.c: Likewise.
9809 * nptl/sysdeps/unix/sysv/linux/s390/elision-trylock.c: Likewise.
9810 * nptl/sysdeps/unix/sysv/linux/s390/elision-unlock.c: Likewise.
9811 * nptl/sysdeps/unix/sysv/linux/s390/force-elision.h: Likewise.
9812 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c:
9813 Likewise.
9814 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c:
9815 Likewise.
9816 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c:
9817 Likewise.
9818 * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c:
9819 Likewise.
9820 * nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h:
9821 (__lll_timedlock_elision, __lll_lock_elision)
9822 (__lll_unlock_elision, __lll_trylock_elision)
9823 (lll_timedlock_elision, lll_lock_elision)
9824 (lll_unlock_elision, lll_trylock_elision): Add.
9825 * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
9826 (pthread_mutex_t): Add lock elision support for s390.
9827
98282014-05-14 Wilco <wdijkstr@arm.com>
9829
9830 * sysdeps/arm/fclrexcpt.c: Cleanup.
9831 * sysdeps/arm/fedisblxcpt.c: Cleanup.
9832 * sysdeps/arm/feenablxcpt.c: Cleanup.
9833 * sysdeps/arm/fegetenv.c: Cleanup.
9834 * sysdeps/arm/fegetexcept.c: Cleanup.
9835 * sysdeps/arm/fegetround.c: Cleanup.
9836 * sysdeps/arm/feholdexcpt.c: Cleanup.
9837 * sysdeps/arm/fesetenv.c: Cleanup.
9838 * sysdeps/arm/fesetround.c: Cleanup.
9839 * sysdeps/arm/feupdateenv.c: Cleanup.
9840 * sysdeps/arm/fgetexcptflg.c: Cleanup.
9841 * sysdeps/arm/fraiseexcpt.c: Cleanup.
9842 * sysdeps/arm/fsetexcptflg.c: Cleanup.
9843 * sysdeps/arm/ftestexcept.c: Cleanup.
9844 * sysdeps/arm/get-rounding-mode.h: Cleanup.
9845 * sysdeps/arm/setfpucw.c: Cleanup.
9846
98472014-05-09 Will Newton <will.newton@linaro.org>
9848
9849 * sysdeps/arm/armv7/strcmp.S: New file.
9850 * NEWS: Mention addition of ARMv7 optimized strcmp.
9851
98522014-05-08 Roland McGrath <roland@hack.frob.com>
9853
9854 * Makeconfig ($(common-objpfx)config.status): Fix patsubst uses to
9855 look for %.ac rather than %.in.
9856
9857 * sysdeps/mach/hurd/configure.ac (inhibit_glue): Remove variable.
9858 * sysdeps/unix/sysv/linux/configure.ac: Likewise.
9859 * sysdeps/mach/hurd/configure: Regenerated.
9860 * sysdeps/unix/sysv/linux/configure: Regenerated.
9861
9862 * bits/utsname.h (_UTSNAME_DOMAIN_LENGTH): New macro, set to 0.
9863
98642014-05-07 Steve Ellcey <sellcey@mips.com>
9865
9866 [BZ# 16922]
9867 * sysdeps/mips/sys/asm.h (INT_SUB): Fix definition.
9868 (LONG_SUB): Ditto.
9869 (PTR_SUB): Ditto.
9870
98712014-05-07 Andreas Schwab <schwab@suse.de>
9872
9873 * sysdeps/posix/getaddrinfo.c (gaih_inet): Advance address pointer
9874 when skipping over non-matching result from nscd.
9875
98762014-05-07 Ondřej Bílka <neleai@seznam.cz>
9877
9878 [BZ #16876]
9879 * nptl/sockperf.c (client): Check socket return value.
9880
9881 [BZ #16877]
9882 * nscd/selinux.c (nscd_request_avc_has_perm): Check if there is
9883 nscd security class.
9884
98852014-05-06 Roland McGrath <roland@hack.frob.com>
9886
9887 * sysdeps/unix/sysv/linux/arm/nptl/unwind.h: File moved to ...
9888 * sysdeps/arm/unwind.h: ... here.
9889
98902014-05-06 Aurelien Jarno <aurelien@aurel32.net>
9891
9892 [BZ# 16916]
9893 * sysdeps/unix/sysv/linux/sparc/bits/eventfd.h (EFD_SEMAPHORE):
9894 Define.
9895
98962014-05-06 Vidya Ranganathan <vidya@linux.vnet.ibm.com>
9897
9898 * sysdeps/powerpc/powerpc64/power7/strncpy.S: New file: Optimization.
9899 * sysdeps/powerpc/powerpc64/multiarch/strncpy.c: New file:
9900 multiarch strncpy for PPC64.
9901 * sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c: New file
9902 * sysdeps/powerpc/powerpc64/multiarch/strncpy-power7.S: New file
9903 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strpcpy, stpncpy
9904 multiarch optimizations.
9905 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
9906 (__libc_ifunc_impl_list): Likewise.
9907 * sysdeps/powerpc/powerpc64/power7/stpncpy.S: New file: Optimization.
9908 * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c: New file:
9909 multiarch stpncpy for PPC64.
9910 * sysdeps/powerpc/powerpc64/multiarch/stpncpy-ppc64.c: New file
9911 * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power7.S: New file
9912
99132014-05-06 Andreas Schwab <schwab@suse.de>
9914
9915 [BZ #16912]
9916 * gmon/mcount.c (_MCOUNT_DECL): Use
9917 atomic_compare_and_exchange_bool_acq instead of
9918 catomic_compare_and_exchange_bool_acq.
9919
99202014-05-05 Roland McGrath <roland@hack.frob.com>
9921
9922 * elf/Makefile (others, install-bin): Remove pldd.
9923 (pldd-modules): Variable removed.
9924 ($(objpfx)pldd): Target removed.
9925 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = elf]
9926 (others, install-bin): Append pldd here.
9927 ($(objpfx)pldd): New target.
9928
9929 * sysdeps/gnu/errlist.awk (BEGIN): Emit an initial #define of ERR_MAX
9930 to 0, so the first #if test emitted later doesn't see it undefined.
9931 (END): Emit "!defined ERRLIST_NO_COMPAT" to match what BEGIN does.
9932 * sysdeps/gnu/errlist.c: Regenerated.
9933
99342014-05-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
9935
9936 * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
9937 [libc_hidden_builtin_def]: Define to empty value.
9938 * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S:
9939 [libc_hidden_builtin_def]: Likewise.
9940 * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S:
9941 [libc_hidden_builtin_def]: Likewise.
9942 * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S:
9943 [libc_hidden_builtin_def]: Likewise.
9944 * sysdeps/powerpc/powerpc64/multiarch/memcpy.c (memcpy): Redefined to
9945 __redirect_memcpy and define ifunc as default hidden symbol.
9946 * sysdeps/powerpc/powerpc64/multiarch/memset.c (memset): Likewise.
9947 * sysdeps/powerpc/powerpc64/multiarch/strlen.c (strlen): Likewise.
9948
99492014-05-04 Adam Conrad <adconrad@0c3.net>
9950
9951 * locale/iso-4217.def: Reintroduce XDR currency.
9952
99532014-05-04 Allan McRae <allan@archlinux.org>
9954
9955 * po/eo.po: Update Esperanto translation from translation project.
9956
99572014-05-02 Carlos O'Donell <carlos@redhat.com>
9958
9959 * sysdeps/x86_64/multiarch/init-arch.h: Define FEATURE_INDEX_1 to 0,
9960 and FEATURE_INDEX_MAX to 1.
9961 [!__ASSEMBLER__]: Remove anonymous enum for FEATURE_INDEX_*.
9962
99632014-05-01 Steve Ellcey <sellcey@mips.com>
9964
9965 * iconvdata/ansi_x3.110.c (ONE_DIRECTION): Define.
9966 * iconvdata/armscii-8.c (ONE_DIRECTION): Define.
9967 * iconvdata/big5.c (ONE_DIRECTION): Define.
9968 * iconvdata/big5hkscs.c (ONE_DIRECTION): Define.
9969 * iconvdata/cp1255.c (ONE_DIRECTION): Define.
9970 * iconvdata/cp1258.c (ONE_DIRECTION): Define.
9971 * iconvdata/cp932.c (ONE_DIRECTION): Define.
9972 * iconvdata/euc-cn.c (ONE_DIRECTION): Define.
9973 * iconvdata/euc-jisx0213.c (ONE_DIRECTION): Define.
9974 * iconvdata/euc-jp-ms.c (ONE_DIRECTION): Define.
9975 * iconvdata/euc-jp.c (ONE_DIRECTION): Define.
9976 * iconvdata/euc-kr.c (ONE_DIRECTION): Define.
9977 * iconvdata/euc-tw.c (ONE_DIRECTION): Define.
9978 * iconvdata/gb18030.c (ONE_DIRECTION): Define.
9979 * iconvdata/gbbig5.c (ONE_DIRECTION): Define.
9980 * iconvdata/gbgbk.c (ONE_DIRECTION): Define.
9981 * iconvdata/gbk.c (ONE_DIRECTION): Define.
9982 * iconvdata/ibm1364.c (ONE_DIRECTION): Define.
9983 * iconvdata/ibm930.c (ONE_DIRECTION): Define.
9984 * iconvdata/ibm932.c (ONE_DIRECTION): Define.
9985 * iconvdata/ibm933.c (ONE_DIRECTION): Define.
9986 * iconvdata/ibm935.c (ONE_DIRECTION): Define.
9987 * iconvdata/ibm937.c (ONE_DIRECTION): Define.
9988 * iconvdata/ibm939.c (ONE_DIRECTION): Define.
9989 * iconvdata/ibm943.c (ONE_DIRECTION): Define.
9990 * iconvdata/iso-2022-cn-ext.c (ONE_DIRECTION): Define.
9991 * iconvdata/iso-2022-cn.c (ONE_DIRECTION): Define.
9992 * iconvdata/iso-2022-jp-3.c (ONE_DIRECTION): Define.
9993 * iconvdata/iso-2022-jp.c (ONE_DIRECTION): Define.
9994 * iconvdata/iso-2022-kr.c (ONE_DIRECTION): Define.
9995 * iconvdata/iso646.c (ONE_DIRECTION): Define.
9996 * iconvdata/iso8859-1.c (ONE_DIRECTION): Define.
9997 * iconvdata/iso_11548-1.c (ONE_DIRECTION): Define.
9998 * iconvdata/iso_6937-2.c (ONE_DIRECTION): Define.
9999 * iconvdata/iso_6937.c (ONE_DIRECTION): Define.
10000 * iconvdata/johab.c (ONE_DIRECTION): Define.
10001 * iconvdata/shift_jisx0213.c (ONE_DIRECTION): Define.
10002 * iconvdata/sjis.c (ONE_DIRECTION): Define.
10003 * iconvdata/t.61.c (ONE_DIRECTION): Define.
10004 * iconvdata/tcvn5712-1.c (ONE_DIRECTION): Define.
10005 * iconvdata/tscii.c (ONE_DIRECTION): Define.
10006 * iconvdata/uhc.c (ONE_DIRECTION): Define.
10007 * iconvdata/unicode.c (ONE_DIRECTION): Define.
10008 * iconvdata/utf-16.c (ONE_DIRECTION): Define.
10009 * iconvdata/utf-32.c (ONE_DIRECTION): Define.
10010 * iconvdata/utf-7.c (ONE_DIRECTION): Define.
10011
100122014-05-01 Roland McGrath <roland@hack.frob.com>
10013
10014 * libio/libioP.h [!_IO_USE_OLD_IO_FILE && !_G_IO_NO_BACKWARD_COMPAT]
10015 (_IO_JUMPS_OFFSET): Define to 0.
10016
10017 * nptl/sysdeps/pthread/bits/libc-lock.h
10018 [_LIBC && (!NOT_IN_libc || IS_IN_libpthread)]
10019 (__libc_lock_define_initialized_recursive): Always define using
10020 initializer. Modern compilers treat uninitialized (implicit zero) and
10021 explicit zero initializers the same (i.e. put the datum in bss).
10022
100232014-05-01 Andreas Schwab <schwab@linux-m68k.org>
10024
10025 * nscd/nscd-client.h: Include <string.h>.
10026
100272014-05-01 David S. Miller <davem@davemloft.net>
10028
10029 [BZ #16885]
10030 * sysdeps/sparc/sparc64/strcmp.S: Fix end comparison handling when
10031 multiple zero bytes exist at the end of a string.
10032 Reported by Aurelien Jarno <aurelien@aurel32.net>
10033
10034 * string/test-strcmp.c (check): Add explicit test for situations where
10035 there are multiple zero bytes after the first.
10036
100372014-05-01 Andreas Schwab <schwab@linux-m68k.org>
10038
10039 [BZ #16890]
10040 * stdio-common/vfprintf.c (process_arg) [%p]: Mark string as wide
10041 when compiling wprintf.
10042 * stdio-common/tstdiomisc.c (t3): New function.
10043 (main): Call it.
10044
100452014-05-01 Steve Ellcey <sellcey@mips.com>
10046
10047 * intl/iconv/skeleton.c (ONE_DIRECTION): Remove define.
10048 * iconv/gconv_simple.c (ONE_DIRECTION): Define.
10049 * iconvdata/8bit-gap.c (ONE_DIRECTION): Ditto.
10050 * iconvdata/8bit-generic.c (ONE_DIRECTION): Ditto.
10051
100522014-05-01 Steve Ellcey <sellcey@mips.com>
10053
10054 * stdlib/longlong.h: Updated from GCC.
10055
100562014-05-01 Will Newton <will.newton@linaro.org>
10057 Bernard Ogden <bernie.ogden@linaro.org>
10058
10059 * NEWS: Update fixed bug list.
10060
10061 [BZ #15119]
10062 * sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.c: Remove file.
10063
100642014-04-30 David S. Miller <davem@davemloft.net>
10065
10066 * sysdeps/sparc/fpu/fenv_private.h (HAVE_RM_CTX): Define.
10067 (libc_feholdexcept_setround_sparc_ctx): New function.
10068 (libc_fesetenv_sparc_ctx): Likewise.
10069 (libc_feupdateenv_sparc_ctx): Likewise.
10070 (libc_feholdsetround_sparc_ctx): Likewise.
10071 (libc_feholdexcept_setround_ctx): Define.
10072 (libc_feholdexcept_setroundf_ctx): Likewise.
10073 (libc_feholdexcept_setroundl_ctx): Likewise.
10074 (libc_fesetenv_ctx): Likewise.
10075 (libc_fesetenvf_ctx): Likewise.
10076 (libc_fesetenvl_ctx): Likewise.
10077 (libc_feupdateenv_ctx): Likewise.
10078 (libc_feupdateenvf_ctx): Likewise.
10079 (libc_feupdateenvl_ctx): Likewise.
10080 (libc_feresetround_ctx): Likewise.
10081 (libc_feresetroundf_ctx): Likewise.
10082 (libc_feresetroundl_ctx): Likewise.
10083 (libc_feholdsetround_ctx): Likewise.
10084 (libc_feholdsetroundf_ctx): Likewise.
10085 (libc_feholdsetroundl_ctx): Likewise.
10086
10087 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect
10088 with __USE_GNU instead of XOPEN cpp guards.
10089
10090 * sysdeps/sparc/bits/string.h (_STRING_ARCH_unaligned): Define to
10091 0.
10092
10093 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect
10094 with XOPEN cpp guards.
10095
100962014-04-30 Julian Brown <julian@codesourcery.com>
10097
10098 [BZ #16888]
10099 * sysdeps/arm/dl-machine.h (elf_machine_rela): Fix R_ARM_IRELATIVE
10100 handling.
10101
101022014-04-30 Joseph Myers <joseph@codesourcery.com>
10103
10104 [BZ #9894]
10105 * sysdeps/unix/sysv/linux/configure.ac (LIBC_LINUX_VERSION):
10106 Change to 2.6.32.
10107 (arch_minimum_kernel): Change all 2.6.16 settings to 2.6.32.
10108 * sysdeps/unix/sysv/linux/configure: Regenerated.
10109 * sysdeps/unix/sysv/linux/microblaze/configure.ac: Remove file.
10110 * sysdeps/unix/sysv/linux/microblaze/configure: Likewise.
10111 * sysdeps/unix/sysv/linux/tile/configure.ac: Likewise.
10112 * sysdeps/unix/sysv/linux/tile/configure: Likewise.
10113 * README: Update reference to required Linux kernel version.
10114 * manual/install.texi (Linux): Update reference to required Linux
10115 kernel headers version.
10116 * INSTALL: Regenerated.
10117
10118 * conform/data/stdlib.h-data [POSIX] (stddef.h): Do not allow
10119 header inclusion.
10120 [POSIX] (limits.h): Likewise.
10121 [POSIX] (math.h): Likewise.
10122 [POSIX] (sys/wait.h): Likewise.
10123 * conform/data/string.h-data [POSIX || UNIX98] (strtok_r): Require
10124 function.
10125 [POSIX] (stddef.h): Do not allow header inclusion.
10126
101272014-04-30 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
10128
10129 * sysdeps/generic/symbol-hacks.h (memcpy): Add internal alias.
10130
101312014-04-30 Yang Yingliang <yangyingliang@huawei.com>
10132
10133 * nptl/pthread_cond_broadcast.c (__pthread_cond_broadcast):
10134 Return immediately after lll_futex_wake.
10135
101362014-04-30 Siddhesh Poyarekar <siddhesh@redhat.com>
10137
10138 [BZ #16791]
10139 * nscd/nscd-client.h (datahead_init_common): Initialize entire
10140 structure.
10141 (datahead_init_pos): Call datahead_init_common early.
10142 (datahead_init_neg): Likewise.
10143
10144 * nscd/nscd-client.h (datahead_init_common, datahead_init_pos,
10145 datahead_init_neg): New functions.
10146 * nscd/aicache.c (addhstaiX): Use them.
10147 * nscd/grpcache.c (cache_addgr): Likewise.
10148 * nscd/hstcache.c (cache_addhst): Likewise.
10149 * nscd/initgrcache.c (addinitgroupsX): Likewise.
10150 * nscd/netgroupcache.c (do_notfound): Likewise.
10151 (addgetnetgrentX): Likewise.
10152 (addinnetgrX): Likewise.
10153 * nscd/pwdcache.c (cache_addpw): Likewise.
10154 * nscd/servicescache.c (cache_addserv): Likewise.
10155
101562014-04-30 Siddhesh Poyarekar <siddhesh@redhat.com>
10157 Atsushi Onoe <atsushi@onoe.org>
10158
10159 [BZ #14308]
10160 [BZ #12994]
10161 [BZ #13651]
10162 * resolv/res_query.c (__libc_res_nsearch): Return if at least
10163 one response is valid.
10164 * resolv/res_send.c (send_dg): Check for validity of other
10165 response if the current response is a referral.
10166
101672014-04-29 Steve Ellcey <sellcey@mips.com>
10168
10169 * iconv/skeleton.c (ONE_DIRECTION): Set default value if not set.
10170
101712014-04-29 Stefan Liebler <stli@linux.vnet.ibm.com>
10172
10173 [BZ #16823]
10174 * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl):
10175 Always divide by positive zero when computing -Inf result.
10176 * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Likewise.
10177 * sysdeps/ieee754/flt-32/s_log1pf.c (__log1pf): Likewise.
10178
101792014-04-28 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
10180
10181 * sysdeps/powerpc/fpu/fclrexcpt.c (__feclearexcept): Do not update
10182 FPSCR if value do not change.
10183 * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
10184 * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Likewise.
10185 * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Likewise.
10186 * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Likewise.
10187 * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Likewise.
10188 * sysdeps/powerpc/fpu/fenv_libc.h (fenv_reg_to_exceptions): New helper
10189 function.
10190
101912014-05-29 Carlos O'Donell <carlos@systemhalted.org>
10192
10193 * sysdeps/hppa: Move directory from ports/sysdeps/hppa.
10194 * sysdeps/unix/sysv/linux/hppa: Move directory from
10195 ports/systeps/unix/sysv/linux/hppa.
10196 * README: Update listing for hppa-*-linux-gnu.
10197
101982014-04-28 Ondřej Bílka <neleai@seznam.cz>
10199
10200 [BZ #16754]
10201 * manual/stdio.texi (Hook functions): Fix types of stream hook
10202 functions.
10203 [BZ #16854]
10204 * socket/sys/socket.h: Fix typo in comment.
10205
102062014-04-28 Wilco <wdijkstr@arm.com>
10207
10208 * sysdeps/arm/fenv_private.h: New file.
10209 * sysdeps/arm/math_private.h: New file.
10210 * sysdeps/arm/fpu_control.h: Add _FPU_MASK_NCZV and _FPU_MASK_EXCEPT.
10211
102122014-04-25 H.J. Lu <hongjiu.lu@intel.com>
10213
10214 * sysdeps/x86/bits/link.h (La_x86_64_regs): Replace __int128
10215 with __int128_t.
10216 (La_x86_64_retval): Likewise.
10217
102182014-04-24 Ian Bolton <ian.bolton@arm.com>
10219
10220 * sysdeps/aarch64/fpu/fclrexcpt.c (feclearexcept): Don't write to
10221 fpsr if value didn't change.
10222 * sysdeps/aarch64/fpu/fedisblxcpt.c (fedisableexcept): Don't write
10223 to fpcr if value didn't change.
10224 * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept): Likewise.
10225 * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Don't write to
10226 fpsr or fpcr if value didn't change.
10227 * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Likewise.
10228 * sysdeps/aarch64/fpu/fesetround.c (fesetround): Don't write to
10229 fpcr if value didn't change.
10230 * sysdeps/aarch64/fpu/fsetexcptflg.c (fesetexceptflag): Don't write
10231 to fpsr if value didn't change.
10232
102332014-02-23 Siddhesh Poyarekar <siddhesh@redhat.com>
10234
10235 * nptl/tst-sem3.c: Use test-skeleton.c
10236 (main): Rename to do_test. Use return instead of
10237 exit.
10238 * nptl/tst-sem4.c: Use test-skeleton.c
10239 (main): Rename to do_test.
10240
102412014-04-22 David S. Miller <davem@davemloft.net>
10242
10243 * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h
10244 (struct sigaction): New struct member __glibc_reserved0, change
10245 type of sa_flags to int.
10246
102472014-04-22 Yufeng Zhang <yufeng.zhang@arm.com>
10248
10249 * stdlib/longlong.h (count_leading_zeros, count_trailing_zeros)
10250 (COUNT_LEADING_ZEROS_0): Define for AArch64.
10251
102522014-04-22 Siddhesh Poyarekar <siddhesh@redhat.com>
10253
10254 * nptl/sysdeps/unix/sysv/linux/sem_trywait.c: Include atomic.h.
10255 * nptl/sysdeps/unix/sysv/linux/sem_wait.c: Likewise.
10256
102572014-04-22 Will Newton <will.newton@linaro.org>
10258 Venkataramanan Kumar <venkataramanan.kumar@linaro.org>
10259
10260 * sysdeps/aarch64/__longjmp.S: Include stap-probe.h.
10261 (__longjmp): Add longjmp and longjmp_target SystemTap
10262 probes.
10263 * sysdeps/aarch64/setjmp.S: Include stap-probe.h.
10264 (__sigsetjmp): Add setjmp SystemTap probe.
10265
102662014-04-17 Carlos O'Donell <carlos@redhat.com>
10267
10268 * manual/intro.texi (Roadmap to the manual): Sort chapter listing to
10269 match manual order.
10270
102712014-04-17 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
10272
10273 * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c: Remove file.
10274
10275 * sysdeps/powerpc/fpu/fenv_private.h
10276 (libc_feholdexcept_setroundl_ctx): Define to
10277 libc_feholdexcept_setround_ppc_ctx.
10278 (libc_fesetenvl_ctx): Define to libc_fesetenv_ppc_ctx.
10279 (libc_feholdsetroundl_ctx): Define to libc_feholdsetround_ppc_ctx.
10280 (libc_feresetroundl_ctx): Define to libc_feresetround_ppc_ctx.
10281 (libc_feupdateenvl_ctx): libc_feupdateenv_ppc_ctx.
10282
102832014-04-17 Ian Bolton <ian.bolton@arm.com>
10284
10285 * sysdeps/aarch64/math-tests.h: New file.
10286
102872014-04-17 Sihai Yao <sihai.ysh@alibaba-inc.com>
10288
10289 * sysdeps/x86_64/multiarch/ifunc-defines.sym (COMMON_CPUID_INDEX_7):
10290 New.
10291 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
10292 Check and set bit_AVX2_Usable.
10293 * sysdeps/x86_64/multiarch/init-arch.h (bit_AVX2_Usable): New
10294 macro.
10295 (bit_AVX2): Likewise.
10296 (index_AVX2_Usable): Likewise.
10297 (CPUID_AVX2): Likewise.
10298 (HAS_AVX2): Likewise.
10299
103002014-04-17 Will Newton <will.newton@linaro.org>
10301
10302 * manual/setjmp.texi (System V contexts): Add note that
10303 calling setcontext on a context created by a call to a
10304 signal handler is undefined. Update text to note that
10305 setcontext from a signal handler is possible but not
10306 recommended.
10307
10308 [BZ #16629]
10309 * stdlib/tst-setcontext.c: Include signal.h.
10310 (main): Check that the signal stack before and
10311 after swapcontext is the same.
10312
10313 * sysdeps/unix/sysv/linux/aarch64/setcontext.S (__setcontext):
10314 Re-implement to restore registers in user code and avoid
10315 rt_sigreturn system call.
10316
103172014-04-17 Wilco <wdijkstr@arm.com>
10318
10319 * sysdeps/arm/math-tests.h: New file: Set ARM math-test settings.
10320 * sysdeps/generic/math-tests.h: Add macro (EXCEPTION_ENABLE_SUPPORTED).
10321 * math/test-fenv.c: Skip exception trap tests on targets which only
10322 support non-stop mode.
10323
103242014-04-17 Ian Bolton <ian.bolton@arm.com>
10325 Wilco Dijkstra <wilco.dijkstra@arm.com>
10326
10327 * sysdeps/aarch64/fpu/math_private.h (HAVE_RM_CTX)
10328 (libc_feholdsetround_aarch64_ctx)
10329 (libc_feholdsetround_ctx, libc_feholdsetroundf_ctx)
10330 (libc_feholdsetroundl_ctx, libc_feresetround_aarch64_ctx)
10331 (libc_feresetround_ctx, libc_feresetroundf_ctx)
10332 (libc_feresetroundl_ctx, libc_feresetround_noex_aarch64_ctx)
10333 (libc_feresetround_noex_ctx, libc_feresetround_noexf_ctx)
10334 (libc_feresetround_noexl_ctx): Define.
10335
103362014-04-16 Richard Henderson <rth@redhat.com>
10337
10338 * sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c: Remove.
10339
10340 * sysdeps/alpha/Makefile [debug] (CFLAGS-backtrace.c): Enable
10341 unwind tables.
10342
10343 * sysdeps/unix/alpha/sysdep.h (__pointer_chk_guard): Remove
10344 const from the non-libc, non-ldso copy.
10345
10346 * sysdeps/alpha/libm-test-ulps: Regenerate.
10347
103482014-04-16 Ian Bolton <ian.bolton@arm.com>
10349 Wilco Dijkstra <wilco.dijkstra@arm.com>
10350
10351 * sysdeps/aarch64/fpu/math_private.h: New file.
10352
103532014-04-16 Marcus Shawcroft <marcus.shawcroft@arm.com>
10354
10355 * sysdeps/aarch64/libm-test-ulps: Regenerate.
10356
103572014-04-16 Igor Zamyatin <igor.zamyatin@intel.com>
10358
10359 [BZ #16275]
10360 * sysdeps/x86_64/bits/link.h (La_x86_64_regs): Add lr_bnd.
10361 (La_x86_64_retval): Add lrv_bnd0 and lrv_bnd1.
10362 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Save
10363 Intel MPX bound registers before _dl_profile_fixup.
10364 * sysdeps/x86_64/dl-trampoline.h: Restore Intel MPX bound
10365 registers after _dl_profile_fixup. Save and restore bound
10366 registers bnd0/bnd1 when calling _dl_call_pltexit.
10367 * sysdeps/x86_64/link-defines.sym (BND_SIZE): New.
10368 (LR_BND_OFFSET): Likewise.
10369 (LRV_BND0_OFFSET): Likewise.
10370 (LRV_BND1_OFFSET): Likewise.
10371
103722014-04-16 Samuel Thibault <samuel.thibault@ens-lyon.org>
10373
10374 * sysdeps/mach/hurd/tls.h (dtv, dtv_t, tcbhead_t): Move declarations
10375 to...
10376 * sysdeps/mach/hurd/i386/tls.h: ... here.
10377 (tcbhead_t): Add multiple_threads, sysinfo, stack_guard,
10378 pointer_guard, gscope_flag, private_futex, __private_tm, __private_ss
10379 fields.
10380
103812014-04-16 Samuel Thibault <samuel.thibault@ens-lyon.org>
10382
10383 * sysdeps/mach/munmap.c (__munmap): Return EINVAL if `addr' is 0.
10384
103852014-04-16 Stefan Liebler <stli@linux.vnet.ibm.com>
10386
10387 * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
10388
103892014-04-16 Stefan Liebler <stli@linux.vnet.ibm.com>
10390
10391 [BZ #14770]
10392 * sysdeps/s390/configure.ac: Check for Binutils >= 2.24.
10393 * sysdeps/s390/configure: Regenerate.
10394
10395 [BZ #16824]
10396 * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_y1l):
10397 Set round-to-nearest internally to reduce error accumulation.
10398
103992014-04-16 Alan Modra <amodra@gmail.com>
10400
10401 [BZ #16740]
10402 [BZ #16619]
10403 * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Rewrite.
10404 * math/libm-test.inc (frexp_test_data): Add tests.
10405 * NEWS: Update fixed bug list.
10406
104072014-04-15 Siddhesh Poyarekar <siddhesh@redhat.com>
10408
10409 * benchtests/Makefile: Depend on libraries in build directory.
10410 (bench-math): Separate out math tests.
10411 (bench-pthread): Separate out pthread tests.
10412 (bench): Include math and pthread tests.
10413
104142014-04-14 Carlos O'Donell <carlos@redhat.com>
10415
10416 [BZ #16831]
10417 * csu/libc-start.c (LIBC_START_MAIN) [!SHARED]: Call
10418 _dl_debug_initialize.
10419
10420 * configure.ac: Remove SELinux header check.
10421 * configure: Regenerate.
10422 * nscd/selinux.c (perms): Array of const char* to permission names.
10423 (nscd_request_avc_has_perm): Call security_deny_unknown to find
10424 default policy. Call string_to_security_class and string_to_av_perm to
10425 translate strings. Enforce default policy and call avs_has_perm with
10426 results of translated strings.
10427
104282014-04-13 David S. Miller <davem@davemloft.net>
10429
10430 * sysdeps/sparc/fpu/libm-test-ulps: Update.
10431
104322014-04-12 Allan McRae <allan@archlinux.org>
10433
10434 [BZ #16838]
10435 * manual/string.texi (Collation Functions): Fix qsort argument
10436 order in example.
10437 Reported by David C. Rankin <drankinatty@suddenlinkmail.com>.
10438
104392014-04-11 Chris Metcalf <cmetcalf@tilera.com>
10440
10441 * math/test-fenv-preserve.c [FE_ALL_EXCEPT == 0] (do_test):
10442 Make the test a no-op if there are no exceptions defined.
10443
104442014-04-11 Paul Pluzhnikov <ppluzhnikov@google.com>
10445
10446 * elf/Makefile (tests): make tst-dlopen-aout conditional on
10447 enable-hardcoded-path-in-tests
10448
104492014-04-11 Will Newton <will.newton@linaro.org>
10450
10451 * benchtests/Makefile (extra-objs): Add json-lib.o.
10452 (bench-func): Tidy up JSON output.
10453 * benchtests/bench-skeleton.c: Include json-lib.h.
10454 (main): Use JSON library functions to do output of
10455 benchmark results.
10456 * benchtests/bench-timing-type.c (main): Output the
10457 timing type simply, leaving formatting to the user.
10458 * benchtests/json-lib.c: New file.
10459 * benchtests/json-lib.h: Likewise.
10460
104612014-04-11 Torvald Riegel <triegel@redhat.com>
10462
10463 [BZ #15215]
10464 * nptl/sysdeps/unix/sysv/linux/sparc/pthread_once.c: Moved to ...
10465 * nptl/sysdeps/unix/sysv/linux/pthread_once.c: ... here. Add missing
10466 memory barriers. Add comments.
10467 * sysdeps/unix/sysv/linux/aarch64/nptl/pthread_once.c: Remove file.
10468 * sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c: Remove file.
10469 * sysdeps/unix/sysv/linux/ia64/nptl/pthread_once.c: Remove file.
10470 * sysdeps/unix/sysv/linux/m68k/nptl/pthread_once.c: Remove file.
10471 * sysdeps/unix/sysv/linux/mips/nptl/pthread_once.c: Remove file.
10472 * sysdeps/unix/sysv/linux/tile/nptl/pthread_once.c: Remove file.
10473
104742014-04-11 Stefan Liebler <stli@linux.vnet.ibm.com>
10475
10476 * sysdeps/s390/s390-32/configure.ac: Unify file with ...
10477 * sysdeps/s390/s390-64/configure.ac: ... this ...
10478 * sysdeps/s390/configure.ac: ... to here.
10479 * sysdeps/s390/s390-32/configure: Delete file.
10480 * sysdeps/s390/s390-64/configure: Delete file.
10481 * sysdeps/s390/configure: Regenerate.
10482
104832014-04-11 Joseph Anthony Pasquale Holsten <joseph@josephholsten.com>
10484
10485 * resolv/res_query.c (__libc_res_nsearch): Fix typo in comment.
10486
104872014-04-11 Will Newton <will.newton@linaro.org>
10488
10489 * malloc/malloc.c [!MALLOC_DEBUG]: #define MALLOC_DEBUG
10490 to zero if it is not defined elsewhere. (mtrim): Test
10491 the value of MALLOC_DEBUG with #if rather than #ifdef.
10492
104932014-04-10 Torvald Riegel <triegel@redhat.com>
10494
10495 * benchtests/pthread_once-inputs: New file.
10496 * benchtests/pthread_once-source.c: New file.
10497 * benchtests/README: Update documentation.
10498
104992014-04-09 Igor Zamyatin <igor.zamyatin@intel.com>
10500 H.J. Lu <hongjiu.lu@intel.com>
10501
10502 [BZ #16275]
10503 * config.h.in (HAVE_MPX_SUPPORT): New #undef.
10504 * sysdeps/x86_64/configure.ac: Set HAVE_MPX_SUPPORT.
10505 * sysdeps/x86_64/configure: Regenerated.
10506 * sysdeps/x86_64/dl-trampoline.S (REGISTER_SAVE_AREA): New
10507 macro.
10508 (REGISTER_SAVE_RAX): Likewise.
10509 (REGISTER_SAVE_RCX): Likewise.
10510 (REGISTER_SAVE_RDX): Likewise.
10511 (REGISTER_SAVE_RSI): Likewise.
10512 (REGISTER_SAVE_RDI): Likewise.
10513 (REGISTER_SAVE_R8): Likewise.
10514 (REGISTER_SAVE_R9): Likewise.
10515 (REGISTER_SAVE_BND0): Likewise.
10516 (REGISTER_SAVE_BND1): Likewise.
10517 (REGISTER_SAVE_BND2): Likewise.
10518 (_dl_runtime_resolve): Use them. Save and restore Intel MPX
10519 bound registers when calling _dl_fixup.
10520
105212014-04-09 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
10522
10523 * bits/string.h (_STRING_ARCH_unaligned): Define it to 0.
10524 * crypt/sha256.c (_STRING_ARCH_unaligned): Check its value instead
10525 of its definition.
10526 * iconv/gconv_simple.c (_STRING_ARCH_unaligned): Likewise.
10527 * iconv/loop.c (_STRING_ARCH_unaligned): Likewise.
10528 * iconv/skeleton.c (_STRING_ARCH_unaligned): Likewise.
10529 * nscd/nscd_gethst_r.c (_STRING_ARCH_unaligned): Likewise.
10530 * nscd/nscd_getserv_r.c (_STRING_ARCH_unaligned): Likewise.
10531 * nscd/nscd_helper.c (_STRING_ARCH_unaligned): Likewise.
10532 * resolv/res_send.c (_STRING_ARCH_unaligned): Likewise.
10533
105342014-04-09 Peter Brett <peter@peter-b.co.uk>
10535
10536 [BZ #15514]
10537 * sysdeps/posix/pathconf.c (__pathconf): Use statvfs64() for
10538 pathconf(_PC_NAME_MAX).
10539
105402014-04-09 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
10541
10542 * nptl/sysdeps/pthread/pthread.h (__PTHREAD_MUTEX_HAVE_ELISION):
10543 Remove macro usage.
10544 (__PTHREAD_SPINS): Move definition to ...
10545 * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
10546 (__PTHREAD_SPINS): ... here.
10547 * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
10548 (__PTHREAD_SPIN): Likewise.
10549 * nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h
10550 (__PTHREAD_SPIN): Likewise.
10551 * nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h
10552 (__PTHREAD_SPIN): Likewise.
10553 * nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h
10554 (__PTHREAD_SPIN): Likewise.
10555 * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h
10556 (__PTHREAD_SPIN): Likewise.
10557 * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h
10558 (__PTHREAD_SPIN): Likewise.
10559 * sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h
10560 (__PTHREAD_SPIN): Likewise.
10561 * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h
10562 (__PTHREAD_SPIN): Likewise.
10563 * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h
10564 (__PTHREAD_SPIN): Likewise.
10565 * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h
10566 (__PTHREAD_SPIN): Likewise.
10567 * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h
10568 (__PTHREAD_SPIN): Likewise.
10569 * sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h
10570 (__PTHREAD_SPIN): Likewise.
10571
10572 * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
10573 * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: new file.
10574 * sysdeps/powerpc/powerpc64/power6x/multiarch/Implies: New file.
10575 * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Remove multiarch
10576 imply folder.
10577 * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Likewise.
10578 * sysdeps/powerpc/powerpc64/power7/fpu/Implies: Likewise.
10579 * sysdeps/powerpc/powerpc64/power8/fpu/Implies: Likewise.
10580 * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: Adjust
10581 correct imply path.
10582 * sysdeps/powerpc/powerpc64/power7/strncat.S (STRLEN): Define correct
10583 strlen symbol for non multi-arch builds.
10584 * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (__isnan): Add
10585 missing hidden_def and weak_alias.
10586
105872014-04-08 Carlos O'Donell <carlos@redhat.com>
10588
10589 * manual/ipc.texi (sem_close): AC-unsafe because of aculock.
10590
105912014-04-07 Will Newton <will.newton@linaro.org>
10592
10593 * string/basename.c [HAVE_CONFIG_H]: Remove #ifdef and
10594 and contents. [!_LIBC] Remove #ifndef and contents.
10595 (basename): Use ANSI prototype. [_LIBC] Remove #idef.
10596 * string/memccpy.c (__memccpy): Use ANSI prototype.
10597 * string/memfrob.c (memfrob): Likewise.
10598 * string/strcoll.c (STRCOLL): Likewise.
10599 * string/strlen.c (strlen): Likewise.
10600 * string/strtok.c (STRTOK): Likewise.
10601 * string/strcat.c: Remove unused #include of memcopy.h.
10602 (strcat): Use ANSI prototype.
10603 * string/strchr.c: Remove unused #include of memcopy.h.
10604 (strchr): Use ANSI prototype.
10605 * string/strcmp.c: Remove unused #include of memcopy.h.
10606 (strcmp): Use ANSI prototype.
10607 * string/strcpy.c: Remove unused #include of memcopy.h.
10608 (strcpy): Use ANSI prototype.
10609
106102014-04-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
10611
10612 * Makeconfig (CPPFLAGS): Add config-extra-cppflags to list.
10613 * config.make.in (config-extra-cppflags): Set it from
10614 libc_extra_cppflags.
10615 * configure.ac (libc_extra_cflags): Make it accumulate over
10616 configure fragments.
10617 (libc_extra_cppflags): New flag.
10618 * configure. Regenerate.
10619 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
10620 (libc_cv_ppc64_def_call_elf): Define it to yes if compiler does
10621 not set _CALL_ELF and add -D_CALL_ELF=1 to libc_extra_cppflags.
10622 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Regenerate.
10623
10624 [BZ #16815]
10625 * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S (__nearbyint): Fix
10626 result for FE_DOWNWARD rounding mode.
10627 * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S (__nearbyintf):
10628 Likewise.
10629 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
10630
106312014-04-04 Chris Metcalf <cmetcalf@tilera.com>
10632
10633 * sysdeps/tile/dl-runtime.c (_dl_unmap): Fix cut-and-paste bug
10634 in function argument name.
10635
106362014-04-03 David Svoboda <svoboda@cert.org>
10637
10638 [BZ #5666]
10639 * manual/stdio.texi (Line-Oriented Input): Document buffer allocation
10640 explicitly.
10641
106422014-04-03 Roland McGrath <roland@hack.frob.com>
10643
10644 * elf/dl-unmap-segments.h: New file.
10645 * sysdeps/generic/ldsodefs.h
10646 (DL_UNMAP): Use _dl_unmap_segments in place of __munmap.
10647 * elf/dl-close.c: Include <dl-unmap-segments.h>.
10648 * elf/dl-fptr.c: Likewise.
10649 (_dl_unmap): Use _dl_unmap_segments in place of __munmap.
10650 * sysdeps/aarch64/tlsdesc.c: Likewise.
10651 * sysdeps/arm/tlsdesc.c: Likewise.
10652 * sysdeps/i386/tlsdesc.c: Likewise.
10653 * sysdeps/tile/dl-runtime.c: Likewise.
10654 * sysdeps/x86_64/tlsdesc.c: Likewise.
10655 * elf/dl-load.h: New file.
10656 * elf/dl-load.c: Include it.
10657 (MAP_FILE, MAP_COPY, MAP_BASE_ADDR):
10658 Macros moved to dl-load.h.
10659 (ELF_PREFERRED_ADDRESS_DATA, ELF_PREFERRED_ADDRESS): Likewise.
10660 (_dl_map_object_from_fd): Type 'struct loadcmd' moved to dl-load.h.
10661 Use _dl_unmap_segments in place of __munmap.
10662 Break out segment-mapping loop into ...
10663 * elf/dl-map-segments.h (_dl_map_segments): ... here, in new file.
10664
106652014-04-03 Will Newton <will.newton@linaro.org>
10666
10667 * elf/dl-lookup.c (do_lookup_x): Remove comment
10668 referring to nested function and move variable
10669 declarations down to before first use.
10670
106712014-04-02 Joseph Myers <joseph@codesourcery.com>
10672
10673 [BZ #16799]
10674 [BZ #16800]
10675 * math/s_catan.c (__catan): Avoid passing -0 denominator to atan2
10676 with 0 numerator.
10677 * math/s_catanf.c (__catanf): Likewise.
10678 * math/s_catanh.c (__catanh): Likewise.
10679 * math/s_catanhf.c (__catanhf): Likewise.
10680 * math/s_catanhl.c (__catanhl): Likewise.
10681 * math/s_catanl.c (__catanl): Likewise.
10682 * sysdeps/ieee754/flt-32/e_logf.c (__ieee754_logf): Always divide
10683 by positive zero when computing -Inf result.
10684 * math/libm-test.inc (catan_test): Use ALL_RM_TEST.
10685 (catanh_test): Likewise.
10686 * sysdeps/i386/fpu/libm-test-ulps: Update.
10687 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
10688
10689 [BZ #16789]
10690 * math/s_clog.c (__clog): Use math_force_eval to ensure underflow
10691 instead of using underflowing value in computing result.
10692 * math/s_clog10.c (__clog10): Likewise.
10693 * math/s_clog10f.c (__clog10f): Likewise.
10694 * math/s_clog10l.c (__clog10l): Likewise.
10695 * math/s_clogf.c (__clogf): Likewise.
10696 * math/s_clogl.c (__clogl): Likewise.
10697 * math/libm-test.inc (clog_test): Use ALL_RM_TEST.
10698 (clog10_test): Likewise.
10699 * sysdeps/i386/fpu/libm-test-ulps: Update.
10700 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
10701
107022014-04-02 Alan Modra <amodra@gmail.com>
10703
10704 [BZ #16739]
10705 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Correct
10706 output when value is near a power of two. Use int64_t for lx and
10707 remove casts. Use decimal rather than hex exponent constants.
10708 Don't use long double multiplication when double will suffice.
10709 * math/libm-test.inc (nextafter_test_data): Add tests.
10710 * NEWS: Add 16739 and 16786 to bug list.
10711
10712 * sysdeps/powerpc/powerpc64/power7/memrchr.S: Correct stream hint.
10713
10714 * sysdeps/powerpc/powerpc64/start.S: Add @toc to toc symbol reference.
10715
107162014-04-01 Will Newton <will.newton@linaro.org>
10717
10718 * benchtests/Makefile (CFLAGS-bench-ffs.c): Add
10719 -fno-builtin. (CFLAGS-bench-ffsll.c): Likewise.
10720
107212014-04-01 Florian Weimer <fweimer@redhat.com>
10722
10723 [BZ #13347]
10724 * nptl/nptl-init.c (sighandler_setxid): Check system call result.
10725 * nptl/tst-setuid2.c: New file.
10726 * nptl/Makefile (xtests): Add tst-setuid2.
10727
107282014-04-01 Alan Modra <amodra@gmail.com>
10729
10730 [BZ #16786]
10731 * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Don't trash stack.
10732
107332014-03-31 Joseph Myers <joseph@codesourcery.com>
10734
10735 [BZ #6803]
10736 [BZ #6804]
10737 * math/w_scalb.c (__scalb): For non-SVID mode, check result and
10738 set errno as appropriate.
10739 * math/w_scalbf.c (__scalbf): Likewise.
10740 * math/w_scalbl.c (__scalbl): Likewise.
10741 * math/gen-libm-test.pl (parse_args): Handle ERRNO_PLUS_OFLOW,
10742 ERRNO_MINUS_OFLOW, ERRNO_PLUS_UFLOW and ERRNO_MINUS_UFLOW.
10743 * math/libm-test.inc (scalb_test_data): Add errno expectations.
10744 Add more NaN tests.
10745
10746 [BZ #16349]
10747 * math/w_atan2.c: Include <errno.h>.
10748 (__atan2): Set errno for result underflowing to zero.
10749 * math/w_atan2f.c: Include <errno.h>.
10750 (__atan2f): Set errno for result underflowing to zero.
10751 * math/w_atan2l.c: Include <errno.h>.
10752 (__atan2l): Set errno for result underflowing to zero.
10753 * math/auto-libm-test-in: Don't allow missing errno for some atan2
10754 tests.
10755 * math/auto-libm-test-out: Regenerated.
10756
107572014-03-31 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
10758
10759 * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S (MFVSRD_R3_V1):
10760 Encode instruction correctly in little endian.
10761 * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S (MFVSRD_R3_V1):
10762 Likewise.
10763 * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (MFVSRD_R3_V1):
10764 Likewise.
10765 * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S (MFVSRD_R3_V1):
10766 Likewise.
10767 * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S (MFVSRD_R3_V1):
10768 Likewise.
10769
107702014-03-31 Joseph Myers <joseph@codesourcery.com>
10771
10772 [BZ #9894]
10773 * sysdeps/unix/sysv/linux/kernel-features.h
10774 [__sparc__ && !__arch64__ && !__sparc_v9__]
10775 (__ASSUME_SET_ROBUST_LIST): Do not define.
10776 [__sparc__ && !__arch64__ && !__sparc_v9__]
10777 (__ASSUME_FUTEX_LOCK_PI): Likewise.
10778 [__sparc__ && !__arch64__ && !__sparc_v9__] (__ASSUME_REQUEUE_PI):
10779 Likewise.
10780 * sysdeps/unix/sysv/linux/arm/kernel-features.h
10781 (__ASSUME_FUTEX_LOCK_PI): Undefine.
10782 (__ASSUME_REQUEUE_PI): Likewise.
10783 (__ASSUME_SET_ROBUST_LIST): Likewise.
10784 * sysdeps/unix/sysv/linux/m68k/kernel-features.h
10785 [__LINUX_KERNEL_VERSION < 0x030a00] (__ASSUME_FUTEX_LOCK_PI):
10786 Undefine.
10787 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
10788 [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_FUTEX_LOCK_PI):
10789 Likewise.
10790 [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_REQUEUE_PI):
10791 Likewise.
10792 [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_SET_ROBUST_LIST):
10793 Likewise.
10794 * sysdeps/unix/sysv/linux/mips/kernel-features.h
10795 [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_FUTEX_LOCK_PI):
10796 Undefine.
10797 [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_REQUEUE_PI): Likewise.
10798 [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_SET_ROBUST_LIST):
10799 Likewise.
10800
10801 [BZ #16648]
10802 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
10803 [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_FUTIMESAT): Define.
10804 * sysdeps/unix/sysv/linux/microblaze/futimesat.c: New file.
10805
108062014-03-31 Will Newton <will.newton@linaro.org>
10807
10808 * benchtests/Makefile (bench): Add ffs and ffsll to list
10809 of tests.
10810 * benchtests/ffs-inputs: New file.
10811 * benchtests/ffsll-inputs: Likewise.
10812
108132014-03-29 Joseph Myers <joseph@codesourcery.com>
10814
10815 [BZ #16770]
10816 * math/e_scalb.c (__ieee754_scalb): Check second argument is not
10817 too large before casting to int.
10818 * math/e_scalbf.c (__ieee754_scalbf): Likewise.
10819 * math/e_scalbl.c (__ieee754_scalbl): Likewise.
10820 * math/libm-test.inc (scalb_test_data): Add more tests.
10821
108222014-03-29 Siddhesh Poyarekar <siddhesh@redhat.com>
10823
10824 * benchtests/Makefile (DETAILED_OPT): New make option.
10825 (bench-func): Run benchmark program with -d if DETAILED_OPT is
10826 set.
10827 * benchtests/bench-skeleton.c: Include stdbool.h.
10828 (main): Store and print timings per input.
10829 * benchtests/scripts/bench.py (STRUCT_TEMPLATE): Add timing
10830 member to each argument value.
10831 (EPILOGUE): Define new macros RESULT and RESULT_ACCUM.
10832 (_print_arg_data): Initialize per-input timing to 0.
10833
10834 * benchtests/Makefile (timing-type): New binary.
10835 (bench-clean): Also remove bench-timing-type.
10836 (bench): New target for timing-type.
10837 (bench-func): Print output in JSON format.
10838 * benchtests/bench-skeleton.c (main): Print output in JSON
10839 format.
10840 * benchtests/bench-timing-type.c: New file.
10841 * benchtests/bench-timing.h (TIMING_TYPE): New macro.
10842 (TIMING_PRINT_STATS): Remove.
10843 * benchtests/scripts/bench.py (_print_arg_data): Store variant
10844 name separately.
10845
10846 * benchtests/bench-modf.c: Remove.
10847 * benchtests/modf-inputs: New inputs file.
10848
108492014-03-28 Joseph Myers <joseph@codesourcery.com>
10850
10851 [BZ #16362]
10852 * math/s_clog10.c (M_PI_LOG10E): New macro.
10853 (__clog10): Use M_PI_LOG10E instead of M_PI when real and
10854 imaginary parts are 0.
10855 * math/s_clog10f.c (M_PI_LOG10Ef): New macro.
10856 (__clog10f): Use M_PI_LOG10Ef instead of M_PI when real and
10857 imaginary parts are 0.
10858 * math/s_clog10l.c (M_PI_LOG10El): New macro.
10859 (__clog10l): Use M_PI_LOG10El instead of M_PIl when real and
10860 imaginary parts are 0.
10861 * math/libm-test.inc (clog10_test_data): Update expected results
10862 for when real and imaginary parts are 0.
10863
108642014-03-27 Paul Pluzhnikov <ppluzhnikov@google.com>
10865
10866 * elf/dl-load.c: Finish conversion of __builtin_expect into
10867 __glibc_{un}likely.
10868
108692014-03-27 Joseph Myers <joseph@codesourcery.com>
10870
10871 [BZ #16348]
10872 * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [!USE_AS_EXPM1L]: Use
10873 1+x for argument with exponent below -67.
10874 * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [!USE_AS_EXPM1L]:
10875 Likewise.
10876 * math/auto-libm-test-in: Add more tests of exp.
10877 * math/auto-libm-test-out: Regenerated.
10878
108792014-03-27 Siddhesh Poyarekar <siddhesh@redhat.com>
10880
10881 [BZ #16759]
10882 * inet/getnetgrent_r.c (get_nonempty_val): New function.
10883 (nscd_getnetgrent): Use it.
10884
10885 [BZ #16760]
10886 * nscd/netgroupcache.c (addgetnetgrentX): Use memmove instead
10887 of stpcpy.
10888
108892014-03-27 Andi Kleen <ak@linux.intel.com>
10890
10891 * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (lll_lock)
10892 (lll_robust_lock, lll_cond_lock, lll_timedlock)
10893 (lll_robust_cond_lock, lll_robust_timedlock, lll_unlock)
10894 (lll_robust_unlock): Remove out of line section. Use cfi
10895 intrinsics.
10896 (LLL_STUB_UNWIND_INFO*): Remove.
10897 * nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_lock)
10898 (lll_robust_lock, lll_cond_lock, lll_timedlock)
10899 (lll_robust_cond_lock, lll_robust_timedlock, lll_unlock)
10900 (lll_robust_unlock): Remove out of line section. Use cfi
10901 intrinsics.
10902 (LLL_STUB_UNWIND_INFO*): Remove.
10903
109042014-03-27 Siddhesh Poyarekar <siddhesh@redhat.com>
10905
10906 [BZ #16758]
10907 * nscd/netgroupcache.c (addinnetgrX): Succeed if triplet has
10908 blank values.
10909
109102014-03-26 Paul Pluzhnikov <ppluzhnikov@google.com>
10911
10912 * elf/dl-load.c: Convert __builtin_expect into __glibc_{un}likely.
10913
109142014-03-26 Joseph Myers <joseph@codesourcery.com>
10915
10916 [BZ #16198]
10917 * sysdeps/x86_64/fpu/fegetenv.c (fegetenv): Use fldenv after
10918 fnstenv.
10919 * math/test-fenv-preserve.c: New file.
10920 * math/Makefile (tests): Add test-fenv-preserve.
10921
109222014-03-26 Will Newton <will.newton@linaro.org>
10923
10924 * benchtests/bench-strtod.c (TIMEOUT): Define to 10.
10925
109262014-03-25 Roland McGrath <roland@hack.frob.com>
10927
10928 * scripts/versionlist.awk: Partition the version sets and emit all
10929 GLIBC_* (sorted) before all others (sorted).
10930
109312014-03-25 Joseph Myers <joseph@codesourcery.com>
10932
10933 * elf/Versions (libc) [EXPORT_UNWIND_FIND_FDE]: Add empty
10934 GLIBC_2.2.5 version.
10935
109362014-03-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
10937
10938 * scripts/localplt.awk: Check for PLT generated by internal IFUNC
10939 calls.
10940
10941 * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Revert
10942 previous change.
10943
10944 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
10945
109462014-03-25 Andreas Schwab <schwab@suse.de>
10947
10948 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Add out_fail2
10949 label to be used after in6ailist is initialized.
10950
109512014-03-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
10952
10953 * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
10954 (__PTHREAD_MUTEX_HAVE_ELISION): New define.
10955
109562014-03-25 Joseph Myers <joseph@codesourcery.com>
10957
10958 [BZ #16357]
10959 [BZ #16599]
10960 * math/gen-auto-libm-tests.c (fp_format_desc): Add field
10961 min_plus_half.
10962 (fp_formats): Update initializers.
10963 (init_fp_formats): Initialize new field.
10964 (output_for_one_input_case): Allow underflow for results up to
10965 min_plus_half.
10966 * math/libm-test.inc (log1p_test): Use ALL_RM_TEST.
10967 * math/auto-libm-test-in: Don't mark some underflows from asin and
10968 atanh as spurious.
10969 * math/auto-libm-test-out: Regenerated.
10970 * sysdeps/i386/fpu/libm-test-ulps: Update.
10971 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
10972
109732014-03-25 Andreas Schwab <schwab@suse.de>
10974
10975 * libio/Makefile (tst-ftell-partial-wide-ENV)
10976 (tst-ftell-active-handler-ENV): Define.
10977
109782014-03-25 Stefan Liebler <stli@linux.vnet.ibm.com>
10979
10980 * NEWS: Add 16712, 16713, 16714 to fixed bug list.
10981
109822014-03-24 Paul Pluzhnikov <ppluzhnikov@google.com>
10983
10984 * elf/tst-dlopen-aout.c: Adjust comments. Use test-skeleton.c
10985
109862014-03-24 Joseph Myers <joseph@codesourcery.com>
10987
10988 * sysdeps/ieee754/dbl-64/e_exp.c: Include <math.h>.
10989 * sysdeps/x86_64/fpu/multiarch/e_exp.c
10990 [HAVE_FMA4_SUPPORT || HAVE_AVX_SUPPORT]: Likewise.
10991
109922014-03-24 Paul Pluzhnikov <ppluzhnikov@google.com>
10993
10994 [BZ #16634]
10995 * elf/dl-load.c (open_verify): Add mode parameter.
10996 Error early when ET_EXEC and mode does not have __RTLD_OPENEXEC.
10997 (open_path): Change from boolean 'secure' to complete flag 'mode'
10998 (_dl_map_object): Adjust.
10999 * elf/Makefile (tests): Add tst-dlopen-aout.
11000 * elf/tst-dlopen-aout.c: New test.
11001
110022014-03-24 Stefan Liebler <stli@linux.vnet.ibm.com>
11003
11004 [BZ #16714]
11005 * sysdeps/unix/sysv/linux/s390/bits/stat.h
11006 (struct stat): Rename member pad0 to __glibc_reserved0.
11007
11008 [BZ #16712]
11009 * sysdeps/s390/s390-32/bits/wordsize.h
11010 (__WORDSIZE32_SIZE_ULONG): New define.
11011 * sysdeps/s390/s390-64/bits/wordsize.h
11012 (__WORDSIZE32_SIZE_ULONG): Likewise.
11013 * sysdeps/generic/stdint.h (SIZE_MAX):
11014 Define as UL if __WORDSIZE32_SIZE_ULONG.
11015
11016 [BZ #16713]
11017 * sysdeps/unix/sysv/linux/s390/bits/sigaction.h
11018 (__glibc_reserved0): New variable.
11019 (sa_flags): Change type to int.
11020
11021 * posix/Makefile (before-compile): Use += before-compile instead
11022 of a :=.
11023
11024 * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
11025 (__PTHREAD_MUTEX_HAVE_ELISION): New define.
11026
110272014-03-20 Andreas Schwab <schwab@suse.de>
11028
11029 [BZ #16743]
11030 * sysdeps/posix/getaddrinfo.c (gaih_inet): Properly skip over
11031 non-matching result from nscd.
11032
110332014-03-24 Siddhesh Poyarekar <siddhesh@redhat.com>
11034
11035 * scripts/bench.py: Moved to ...
11036 * benchtests/scripts/bench.py: ... here.
11037 * benchtests/Makefile ($(objpfx)bench-%.c): Adjust.
11038
110392014-03-24 Andreas Schwab <schwab@suse.de>
11040
11041 [BZ #16002]
11042 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Use
11043 alloca_account and account alloca use for struct in6ailist.
11044
110452014-03-24 Joseph Myers <joseph@codesourcery.com>
11046
11047 [BZ #16284]
11048 * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Use original
11049 rounding mode to recompute results that overflow to infinity or
11050 underflow to zero.
11051 * math/auto-libm-test-in: Don't mark tests as expected to fail for
11052 bug 16284.
11053 * math/auto-libm-test-out: Regenerated.
11054 * math/libm-test.inc (ccos_test): Use ALL_RM_TEST.
11055 (ccosh_test): Likewise.
11056 (csin_test_data): Use plus_oflow.
11057 (csin_test): Use ALL_RM_TEST.
11058 (csinh_test_data): Use plus_oflow.
11059 (csinh_test): Use ALL_RM_TEST.
11060 * sysdeps/i386/fpu/libm-test-ulps: Update.
11061 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11062
110632014-03-21 Joseph Myers <joseph@codesourcery.com>
11064
11065 * sysdeps/mips/bits/wordsize.h: Include <sgidefs.h>.
11066 * sysdeps/unix/sysv/linux/mips/getrlimit64.c: Likewise.
11067 * sysdeps/unix/sysv/linux/mips/setrlimit64.c: Likewise.
11068
11069 [BZ #16731]
11070 * sysdeps/i386/fpu/e_log.S (__ieee754_log): Take absolute value
11071 when x - 1 is zero.
11072 * sysdeps/i386/fpu/e_logf.S (__ieee754_logf): Likewise.
11073 * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Likewise.
11074 * sysdeps/i386/i686/fpu/e_logl.S (__ieee754_logl): Likewise.
11075 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Return +0 when
11076 argument is 1.
11077 * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Likewise.
11078 * sysdeps/x86_64/fpu/e_logl.S: Take absolute value when x - 1 is
11079 zero.
11080 * math/libm-test.inc (log_test): Use ALL_RM_TEST.
11081 * sysdeps/i386/fpu/libm-test-ulps: Update.
11082 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11083
110842014-03-21 Siddhesh Poyarekar <siddhesh@redhat.com>
11085
11086 * scripts/bench.pl: Remove file.
11087 * scripts/bench.py: New benchmark script.
11088 * benchtests/Makefile ($(objpfx)bench-%.c): Use it.
11089 * benchtests/README: Mention python dependency.
11090 * scripts/pylintrc: New file.
11091 * scripts/pylint: New file.
11092
11093 * bits/mathdef.h: Use #ifdef instead of #if.
11094 * sysdeps/arm/bits/mathdef.h [defined __USE_ISOC99 && defined
11095 _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
11096 * sysdeps/tile/bits/mathdef.h [defined __USE_ISOC99 && defined
11097 _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
11098 * sysdeps/x86/bits/mathdef.h [defined __USE_ISOC99 && defined
11099 _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
11100
111012014-03-20 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11102 Vidya Ranganathan <vidya@linux.vnet.ibm.com>
11103
11104 * string/strpbrk.c (strpbrk): Using macro to redefine symbol name.
11105 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strpbrk-power7
11106 and strpbrk-ppc64 objects.
11107 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
11108 (__libc_ifunc_impl_list): Add new strpbrk optimized symbols.
11109 * sysdeps/powerpc/powerpc64/multiarch/strpbrk-power7.S: New file:
11110 multiarch strpbrk for POWER7.
11111 * sysdeps/powerpc/powerpc64/multiarch/strpbrk-ppc64.c: New file:
11112 multiarch strpbrk for PPC64.
11113 * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: New file: strpbrk
11114 ifunc selector.
11115 * sysdeps/powerpc/powerpc64/power7/strpbrk.S: New file: optimited
11116 strpbrk for POWER7.
11117
111182014-03-20 Joseph Myers <joseph@codesourcery.com>
11119
11120 * math/libm-test.inc (asinh_test): Use ALL_RM_TEST.
11121 (atan_test): Likewise.
11122 (atanh_test_data): Use NO_TEST_INLINE for two tests.
11123 (atanh_test): Use ALL_RM_TEST.
11124 (atan2_test_data): Likewise.
11125 (cabs_test): Likewise.
11126 (cacosh_test): Likewise.
11127 (carg_test): Likewise.
11128 (casin_test): Likewise.
11129 (casinh_test): Likewise.
11130 (cbrt_test): Likewise.
11131 (csqrt_test): Likewise.
11132 (erf_test): Likewise.
11133 (erfc_test): Likewise.
11134 (pow10_test): Likewise.
11135 (exp2_test): Likewise.
11136 (hypot_test): Likewise.
11137 (j0_test): Likewise.
11138 (j1_test): Likewise.
11139 (lgamma_test): Likewise.
11140 (gamma_test): Likewise.
11141 (sincos_test): Likewise.
11142 (tanh_test): Likewise.
11143 (y0_test): Likewise.
11144 (y1_test): Likewise.
11145 * sysdeps/i386/fpu/libm-test-ulps: Update.
11146 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11147
111482014-03-20 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11149
11150 * string/strcspn.c (strcspn): Using macro to redefine symbol name.
11151 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcspn-power7
11152 and strcspn-ppc64 objects.
11153 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
11154 (__libc_ifunc_impl_list): Add new strcspn optimized symbols.
11155 * sysdeps/powerpc/powerpc64/multiarch/strcspn-power7.S: New file:
11156 multiarch strcspn for POWER7.
11157 * sysdeps/powerpc/powerpc64/multiarch/strcspn-ppc64.c: New file:
11158 multiarch strcspn for PPC64.
11159 * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: New file: strcspn
11160 ifunc selector.
11161 * sysdeps/powerpc/powerpc64/power7/strcspn.S: New file: optimited
11162 strcspn for POWER7.
11163
111642014-03-20 Joseph Myers <joseph@codesourcery.com>
11165
11166 * math/gen-libm-test.pl (generate_testfile): Expect only function
11167 name as argument to AUTO_TESTS_* and pass results for all rounding
11168 modes to parse_args.
11169 (parse_auto_input): Separate inputs of automatic tests from
11170 outputs before storing in %auto_tests.
11171 * math/libm-test.inc (acos_test_data): Update call to
11172 AUTO_TESTS_f_f.
11173 (acos_test): Use ALL_RM_TEST.
11174 (acos_tonearest_test_data): Remove.
11175 (acos_test_tonearest): Likewise.
11176 (acos_towardzero_test_data): Likewise.
11177 (acos_test_towardzero): Likewise.
11178 (acos_downward_test_data): Likewise.
11179 (acos_test_downward): Likewise.
11180 (acos_upward_test_data): Likewise.
11181 (acos_test_upward): Likewise.
11182 (acosh_test_data): Update call to AUTO_TESTS_f_f.
11183 (asin_test_data): Likewise.
11184 (asin_test): Use ALL_RM_TEST.
11185 (asin_tonearest_test_data): Remove.
11186 (asin_test_tonearest): Likewise.
11187 (asin_towardzero_test_data): Likewise.
11188 (asin_test_towardzero): Likewise.
11189 (asin_downward_test_data): Likewise.
11190 (asin_test_downward): Likewise.
11191 (asin_upward_test_data): Likewise.
11192 (asin_test_upward): Likewise.
11193 (asinh_test_data): Update call to AUTO_TESTS_f_f.
11194 (atan_test_data): Likewise.
11195 (atanh_test_data): Likewise.
11196 (atan2_test_data): Update call to AUTO_TESTS_ff_f.
11197 (cabs_test_data): Update call to AUTO_TESTS_c_f.
11198 (carg_test_data): Likewise.
11199 (cbrt_test_data): Update call to AUTO_TESTS_f_f.
11200 (ccos_test_data): Update call to AUTO_TESTS_c_c.
11201 (ccosh_test_data): Likewise.
11202 (cexp_test_data): Likewise.
11203 (clog_test_data): Likewise.
11204 (clog10_test_data): Likewise.
11205 (cos_test_data): Update call to AUTO_TESTS_f_f.
11206 (cos_test): Use ALL_RM_TEST.
11207 (cos_tonearest_test_data): Remove.
11208 (cos_test_tonearest): Likewise.
11209 (cos_towardzero_test_data): Likewise.
11210 (cos_test_towardzero): Likewise.
11211 (cos_downward_test_data): Likewise.
11212 (cos_test_downward): Likewise.
11213 (cos_upward_test_data): Likewise.
11214 (cos_test_upward): Likewise.
11215 (cosh_test_data): Update call to AUTO_TESTS_f_f.
11216 (cosh_test): Use ALL_RM_TEST.
11217 (cosh_tonearest_test_data): Remove.
11218 (cosh_test_tonearest): Likewise.
11219 (cosh_towardzero_test_data): Likewise.
11220 (cosh_test_towardzero): Likewise.
11221 (cosh_downward_test_data): Likewise.
11222 (cosh_test_downward): Likewise.
11223 (cosh_upward_test_data): Likewise.
11224 (cosh_test_upward): Likewise.
11225 (cpow_test_data): Update call to AUTO_TESTS_cc_c.
11226 (csqrt_test_data): Update call to AUTO_TESTS_c_c.
11227 (ctan_test_data): Likewise.
11228 (ctan_test): Use ALL_RM_TEST.
11229 (ctan_tonearest_test_data): Remove.
11230 (ctan_test_tonearest): Likewise.
11231 (ctan_towardzero_test_data): Likewise.
11232 (ctan_test_towardzero): Likewise.
11233 (ctan_downward_test_data): Likewise.
11234 (ctan_test_downward): Likewise.
11235 (ctan_upward_test_data): Likewise.
11236 (ctan_test_upward): Likewise.
11237 (ctanh_test_data): Update call to AUTO_TESTS_c_c.
11238 (ctanh_test): Use ALL_RM_TEST.
11239 (ctanh_tonearest_test_data): Remove.
11240 (ctanh_test_tonearest): Likewise.
11241 (ctanh_towardzero_test_data): Likewise.
11242 (ctanh_test_towardzero): Likewise.
11243 (ctanh_downward_test_data): Likewise.
11244 (ctanh_test_downward): Likewise.
11245 (ctanh_upward_test_data): Likewise.
11246 (ctanh_test_upward): Likewise.
11247 (erf_test_data): Update call to AUTO_TESTS_f_f.
11248 (erfc_test_data): Likewise.
11249 (exp_test_data): Likewise.
11250 (exp_test): Use ALL_RM_TEST.
11251 (exp_tonearest_test_data): Remove.
11252 (exp_test_tonearest): Likewise.
11253 (exp_towardzero_test_data): Likewise.
11254 (exp_test_towardzero): Likewise.
11255 (exp_downward_test_data): Likewise.
11256 (exp_test_downward): Likewise.
11257 (exp_upward_test_data): Likewise.
11258 (exp_test_upward): Likewise.
11259 (exp10_test_data): Update call to AUTO_TESTS_f_f.
11260 (exp10_test): Use ALL_RM_TEST.
11261 (exp10_tonearest_test_data): Remove.
11262 (exp10_test_tonearest): Likewise.
11263 (exp10_towardzero_test_data): Likewise.
11264 (exp10_test_towardzero): Likewise.
11265 (exp10_downward_test_data): Likewise.
11266 (exp10_test_downward): Likewise.
11267 (exp10_upward_test_data): Likewise.
11268 (exp10_test_upward): Likewise.
11269 (exp2_test_data): Update call to AUTO_TESTS_f_f.
11270 (expm1_test_data): Likewise.
11271 (expm1_test): Use ALL_RM_TEST.
11272 (expm1_tonearest_test_data): Remove.
11273 (expm1_test_tonearest): Likewise.
11274 (expm1_towardzero_test_data): Likewise.
11275 (expm1_test_towardzero): Likewise.
11276 (expm1_downward_test_data): Likewise.
11277 (expm1_test_downward): Likewise.
11278 (expm1_upward_test_data): Likewise.
11279 (expm1_test_upward): Likewise.
11280 (fma_test_data): Update call to AUTO_TESTS_fff_f.
11281 (fma_test): Use ALL_RM_TEST.
11282 (fma_towardzero_test_data): Remove.
11283 (fma_test_towardzero): Likewise.
11284 (fma_downward_test_data): Likewise.
11285 (fma_test_downward): Likewise.
11286 (fma_upward_test_data): Likewise.
11287 (fma_test_upward): Likewise.
11288 (hypot_test_data): Update call to AUTO_TESTS_ff_f.
11289 (j0_test_data): Update call to AUTO_TESTS_f_f.
11290 (j1_test_data): Likewise.
11291 (jn_test_data): Update call to AUTO_TESTS_if_f.
11292 (lgamma_test_data): Update call to AUTO_TESTS_f_f1.
11293 (log_test_data): Update call to AUTO_TESTS_f_f.
11294 (log10_test_data): Likewise.
11295 (log1p_test_data): Likewise.
11296 (log2_test_data): Likewise.
11297 (pow_test_data): Update call to AUTO_TESTS_ff_f.
11298 (pow_tonearest_test_data): Likewise.
11299 (sin_test_data): Update call to AUTO_TESTS_f_f.
11300 (sin_test): Use ALL_RM_TEST.
11301 (sin_tonearest_test_data): Remove.
11302 (sin_test_tonearest): Likewise.
11303 (sin_towardzero_test_data): Likewise.
11304 (sin_test_towardzero): Likewise.
11305 (sin_downward_test_data): Likewise.
11306 (sin_test_downward): Likewise.
11307 (sin_upward_test_data): Likewise.
11308 (sin_test_upward): Likewise.
11309 (sincos_test_data): Update call to AUTO_TESTS_fFF_11.
11310 (sinh_test_data): Update call to AUTO_TESTS_f_f.
11311 (sinh_test): Use ALL_RM_TEST.
11312 (sinh_tonearest_test_data): Remove.
11313 (sinh_test_tonearest): Likewise.
11314 (sinh_towardzero_test_data): Likewise.
11315 (sinh_test_towardzero): Likewise.
11316 (sinh_downward_test_data): Likewise.
11317 (sinh_test_downward): Likewise.
11318 (sinh_upward_test_data): Likewise.
11319 (sinh_test_upward): Likewise.
11320 (sqrt_test_data): Update call to AUTO_TESTS_f_f.
11321 (sqrt_test): Use ALL_RM_TEST.
11322 (sqrt_tonearest_test_data): Remove.
11323 (sqrt_test_tonearest): Likewise.
11324 (sqrt_towardzero_test_data): Likewise.
11325 (sqrt_test_towardzero): Likewise.
11326 (sqrt_downward_test_data): Likewise.
11327 (sqrt_test_downward): Likewise.
11328 (sqrt_upward_test_data): Likewise.
11329 (sqrt_test_upward): Likewise.
11330 (tan_test_data): Update call to AUTO_TESTS_f_f.
11331 (tan_test): Use ALL_RM_TEST.
11332 (tan_tonearest_test_data): Remove.
11333 (tan_test_tonearest): Likewise.
11334 (tan_towardzero_test_data): Likewise.
11335 (tan_test_towardzero): Likewise.
11336 (tan_downward_test_data): Likewise.
11337 (tan_test_downward): Likewise.
11338 (tan_upward_test_data): Likewise.
11339 (tan_test_upward): Likewise.
11340 (tanh_test_data): Update call to AUTO_TESTS_f_f.
11341 (tgamma_test_data): Likewise.
11342 (y0_test_data): Likewise.
11343 (y1_test_data): Likewise.
11344 (yn_test_data): Update call to AUTO_TESTS_if_f.
11345 (main): Do not call removed functions.
11346
113472014-03-19 Joseph Myers <joseph@codesourcery.com>
11348
11349 * math/libm-test.inc (fdim_test): Use ALL_RM_TEST.
11350 (ldexp_test_data): Remove.
11351 (ldexp_test): Move to after scalbn_test. Use ALL_RM_TEST with
11352 scalbn_test_data.
11353 (scalb_test): Use ALL_RM_TEST.
11354
113552014-03-19 Andreas Schwab <schwab@suse.de>
11356
11357 * nscd/nscd.service: Also invalidate netgroup cache on reload.
11358
113592014-03-19 Joseph Myers <joseph@codesourcery.com>
11360
11361 [BZ #16649]
11362 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
11363 [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_PREADV): Undefine.
11364 [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_PWRITEV): Likewise.
11365 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
11366 (__ASSUME_PREADV): Undefine.
11367 (__ASSUME_PWRITEV): Likewise.
11368
113692014-03-18 Roland McGrath <roland@hack.frob.com>
11370
11371 * bits/mman-linux.h: Add comment about non-Linux use.
11372 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add comment about
11373 bits/mman-linux.h resting place.
11374
11375 * sysdeps/unix/sysv/linux/bits/mman-linux.h: Moved to ...
11376 * bits/mman-linux.h: ... here.
11377
113782014-03-18 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11379
11380 * conform/conformtest.pl: Add standard definition when calling C
11381 preprocessor on data files.
11382 (checknamespace): Remove unused variable.
11383
113842014-03-18 Joseph Myers <joseph@codesourcery.com>
11385
11386 * math/gen-libm-test.pl (parse_args): Handle plus_oflow,
11387 minus_oflow, plus_uflow and minus_uflow in expected results.
11388 * math/libm-test.inc (scalbn_test_data): Add more tests of
11389 negative arguments. Use plus_oflow, minus_oflow, plus_uflow and
11390 minus_uflow.
11391 (scalbn_test): Use ALL_RM_TEST.
11392 (scalbln_test_data): Add more tests of negative arguments. Use
11393 plus_oflow, minus_oflow, plus_uflow and minus_uflow.
11394 (scalbln_test): Use ALL_RM_TEST.
11395
113962014-03-18 Roland McGrath <roland@hack.frob.com>
11397
11398 * scripts/abilist.awk: Ignore symbols marked with .hidden.
11399
114002014-03-18 Will Newton <will.newton@linaro.org>
11401
11402 * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Remove
11403 inaccurate comment.
11404
114052014-03-18 Joseph Myers <joseph@codesourcery.com>
11406
11407 * Makerules [!subdir] (check-abi): Exit with error status if a
11408 test failed.
11409
114102014-03-17 Joseph Myers <joseph@codesourcery.com>
11411
11412 * math/libm-test.inc (nearbyint_test_data): Include all tests used
11413 for rint. Include results for all rounding modes.
11414 (nearbyint_test): Use ALL_RM_TEST.
11415 (rint_test_data): Include all tests used for nearbyint.
11416
114172014-03-17 Will Newton <will.newton@linaro.org>
11418
11419 * nptl/sysdeps/pthread/pthread.h: Revert previous
11420 change.
11421
11422 * sysdeps/generic/ldsodefs.h: Revert previous
11423 change.
11424
11425 * libio/genops.c: Revert previous change.
11426 * libio/libioP.h: Likewise.
11427 * stdio-common/vfprintf.c: Likewise.
11428
11429 * sysdeps/generic/math_private.h: Revert previous
11430 change.
11431
11432 * sysdeps/generic/math_private.h: Check whether
11433 HAVE_RM_CTX is defined with #ifdef rather
11434 than #if.
11435
11436 * argp/argp-fmtstream.h: Check whether
11437 __STRICT_ANSI__ is defined with #ifdef rather
11438 than #if.
11439 * argp/argp.h: Likewise.
11440
11441 * libio/genops.c: Check whether
11442 _IO_JUMPS_OFFSET is defined with #ifdef rather
11443 than #if.
11444 * libio/libioP.h: Likewise.
11445 * stdio-common/vfprintf.c: Likewise.
11446
11447 * sysdeps/generic/ldsodefs.h: Check whether
11448 HP_SMALL_TIMING_AVAIL is defined with #ifdef rather
11449 than #if.
11450
11451 * nptl/sysdeps/pthread/pthread.h: Check
11452 __PTHREAD_MUTEX_HAVE_ELISION is defined before testing
11453 its value.
11454
114552014-03-17 Siddhesh Poyarekar <siddhesh@redhat.com>
11456
11457 * libio/iofdopen.c (_IO_new_fdopen): Seek to end only if
11458 setting O_APPEND.
11459 * libio/tst-ftell-active-handler.c (do_append_test): Add a
11460 test case.
11461
11462 [BZ #16680]
11463 * libio/fileops.c (_IO_file_open): Seek to end of file but
11464 don't cache the offset.
11465 (get_file_offset): Remove function.
11466 (do_ftell): Use cached offset when available.
11467 * libio/iofdopen.c (_IO_new_fdopen): Seek to end of file but
11468 don't cache the offset.
11469 * libio/tst-ftell-active-handler.c (do_rewind_test): New test
11470 case.
11471 (do_one_test): Call it.
11472 (do_ftell_test): Fix up expected old offset for a+ mode.
11473 * libio/wfileops.c (do_ftell_wide): Used cached offset when
11474 available.
11475
11476 * libio/tst-ftell-active-handler.c (do_ftell_test): Don't mix
11477 up test status with function return status.
11478 (do_write_test): Likewise.
11479 (do_append_test): Likewise.
11480
11481 * nptl/sysdeps/pthread/bits/libc-lockP.h [defined NOT_IN_libc
11482 && !defined IS_IN_libpthread && __LT_SPINNOCK_INIT != 0]:
11483 Remove.
11484
114852014-03-17 Joseph Myers <joseph@codesourcery.com>
11486
11487 * math/gen-libm-test.pl (parse_args): Handle results specified for
11488 each rounding mode separately.
11489 * math/libm-test.inc (lrint_test_data): Merge in per-rounding-mode
11490 tests and results from lrint_tonearest_test_data,
11491 lrint_towardzero_test_data, lrint_downward_test_data and
11492 lrint_upward_test_data.
11493 (lrint_test): Use ALL_RM_TEST.
11494 (lrint_tonearest_test_data): Remove.
11495 (lrint_test_tonearest): Likewise.
11496 (lrint_towardzero_test_data): Likewise.
11497 (lrint_test_towardzero): Likewise.
11498 (lrint_downward_test_data): Likewise.
11499 (lrint_test_downward): Likewise.
11500 (lrint_upward_test_data): Likewise.
11501 (lrint_test_upward): Likewise.
11502 (llrint_test_data): Merge in per-rounding-mode tests and results
11503 from llrint_tonearest_test_data, llrint_towardzero_test_data,
11504 llrint_downward_test_data and llrint_upward_test_data.
11505 (llrint_test): Use ALL_RM_TEST.
11506 (llrint_tonearest_test_data): Remove.
11507 (llrint_test_tonearest): Likewise.
11508 (llrint_towardzero_test_data): Likewise.
11509 (llrint_test_towardzero): Likewise.
11510 (llrint_downward_test_data): Likewise.
11511 (llrint_test_downward): Likewise.
11512 (llrint_upward_test_data): Likewise.
11513 (llrint_test_upward): Likewise.
11514 (rint_test_data): Merge in per-rounding-mode tests and results
11515 from rint_tonearest_test_data, rint_towardzero_test_data,
11516 rint_downward_test_data and rint_upward_test_data. Add
11517 per-rounding-mode results for tests not in those arrays.
11518 (rint_test): Use ALL_RM_TEST.
11519 (rint_tonearest_test_data): Remove.
11520 (rint_test_tonearest): Likewise.
11521 (rint_towardzero_test_data): Likewise.
11522 (rint_test_towardzero): Likewise.
11523 (rint_downward_test_data): Likewise.
11524 (rint_test_downward): Likewise.
11525 (rint_upward_test_data): Likewise.
11526 (rint_test_upward): Likewise.
11527 (main): Don't call removed functions.
11528
115292014-03-14 Roland McGrath <roland@hack.frob.com>
11530
11531 * csu/Makefile ($(objpfx)version-info.h): Remove linux-specific
11532 "Compiled on ..." crapola. It is anti-useful.
11533
115342014-03-14 Joseph Myers <joseph@codesourcery.com>
11535
11536 * scripts/evaluate-test.sh: Handle fourth argument to determine
11537 whether test run should stop on failure.
11538 * Makeconfig (stop-on-test-failure): New variable.
11539 (evaluate-test): Pass fourth argument to evaluate-test.sh based on
11540 $(stop-on-test-failure).
11541 * Makefile (tests): Give a summary of results from testing and
11542 exit with failure status if they include an ERROR or FAIL.
11543 (xtests): Likewise.
11544 * manual/install.texi (Configuring and compiling): Mention
11545 stop-on-test-failure=y.
11546 * INSTALL: Regenerated.
11547
115482014-03-14 Roland McGrath <roland@hack.frob.com>
11549
11550 * scripts/versionlist.awk: New file.
11551 * Makerules [$(build-shared) = yes]
11552 (postclean-generated): Add Versions.def, not Versions.def.v and
11553 Versions.def.v.i.
11554 ($(common-objpfx)Versions.def.v.i): Target removed.
11555 ($(common-objpfx)Versions.def): New target.
11556 ($(common-objpfx)Versions.all): Depend on that rather that
11557 $(common-objpfx)Versions.def.v.
11558 * Versions.def: File removed.
11559
11560 * Makeconfig (+gccwarn): Add -Wundef.
11561 * include/errno.h [IS_IN_rtld] [!RTLD_PRIVATE_ERRNO]: #error to catch
11562 a dl-sysdep.h breaking its contract.
11563 [!IS_IN_rtld] (RTLD_PRIVATE_ERRNO): Define it to 0.
11564 * include/stackinfo.h: New file.
11565 * nptl/sysdeps/i386/tls.h (TLS_DTV_AT_TP): New macro.
11566 * nptl/sysdeps/powerpc/tls.h (TLS_TCB_AT_TP): New macro.
11567 * nptl/sysdeps/s390/tls.h (TLS_DTV_AT_TP): New macro.
11568 * nptl/sysdeps/sh/tls.h (TLS_TCB_AT_TP): New macro.
11569 * nptl/sysdeps/sparc/tls.h (TLS_DTV_AT_TP): New macro.
11570 * nptl/sysdeps/x86_64/tls.h (TLS_DTV_AT_TP): New macro.
11571 * sysdeps/aarch64/nptl/tls.h (TLS_TCB_AT_TP): New macro.
11572 * sysdeps/alpha/nptl/tls.h (TLS_TCB_AT_TP): New macro.
11573 * sysdeps/arm/nptl/tls.h (TLS_TCB_AT_TP): New macro.
11574 * sysdeps/ia64/nptl/tls.h (TLS_TCB_AT_TP): New macro.
11575 * sysdeps/m68k/nptl/tls.h (TLS_TCB_AT_TP): New macro.
11576 * sysdeps/mach/hurd/i386/tls.h (TLS_DTV_AT_TP): New macro.
11577 * sysdeps/microblaze/nptl/tls.h (TLS_TCB_AT_TP): New macro.
11578 * sysdeps/mips/nptl/tls.h (TLS_TCB_AT_TP): New macro.
11579 * sysdeps/tile/nptl/tls.h (TLS_TCB_AT_TP): New macro.
11580
115812014-03-14 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11582
11583 [BZ #16707]
11584 * sysdeps/powerpc/powerpc64/fpu/s_roundl.S: Remove wrong
11585 implementation.
11586 * math/libm-test.inc (round_test_data): Add more tests.
11587
11588 [BZ #16706]
11589 * sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S: Remove wrong
11590 implementation.
11591 * math/libm-test.inc (nearbyint_test_data): Add more tests.
11592
11593 [BZ #16701]
11594 * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Remove wrong
11595 implementation.
11596 * math/libm-test.inc (ceil_test_data): Add more tests.
11597
11598 * math/libm-test.inc (trunc_test_data): Add more tests related to
11599 BZ#16414.
11600
116012014-03-14 Roland McGrath <roland@hack.frob.com>
11602
11603 * nptl/pthread_create.c (__pthread_create_2_1): Test TLS_TCB_AT_TP
11604 with #if rather than #ifdef.
11605 * nptl/sysdeps/pthread/createthread.c (create_thread): Likewise.
11606
116072014-03-14 H.J. Lu <hongjiu.lu@intel.com>
11608
11609 * sysdeps/x86_64/configure.ac: Check AVX-512 assembler support
11610 first. Disable AVX-512 GCC support if assembler doesn't support
11611 it.
11612 * sysdeps/x86_64/configure: Regenerated.
11613
116142014-03-13 Carlos O'Donell <carlos@redhat.com>
11615
11616 * nptl/pthread_attr_setstack.c (__pthread_attr_setstack)
11617 [!_STACK_GROWS_DOWN]: Don't add stacksize to stackaddr.
11618 (__old_pthread_attr_setstack): Likewise.
11619 * nptl/pthread_attr_getstack.c (__pthread_attr_getstack)
11620 [!_STACK_GROWS_DOWN]: Likewise.
11621
116222014-03-13 Mike Frysinger <vapier@gentoo.org>
11623
11624 * config.make.in (have-bash2): Delete.
11625 * configure.ac (libc_cv_have_bash2): Delete.
11626 * configure: Regenerate.
11627 * elf/Makefile (common-ldd-rewrite): Rename to ...
11628 (ldd-rewrite): ... this. Move bash-ldd-rewrite content to end.
11629 (sh-ldd-rewrite): Delete.
11630 (bash-ldd-rewrite): Delete.
11631 (have-bash2): Delete checks.
11632 [ldd-rewrite-script]: Change $(ldd-shell)-ldd-rewrite to
11633 ldd-rewrite.
11634
11635 * config.make.in (have-ksh): Delete.
11636 (KSH): Delete.
11637 * configure.ac (libc_cv_have_ksh): Delete.
11638 * configure: Regenerate.
11639
11640 * elf/Makefile: Delete $(have-ksh) check.
11641 ($(objpfx)sotruss): Change KSH to BASH.
11642 * elf/sotruss.ksh: Rename to ...
11643 * elf/sotruss.sh: ... this. Change @KSH@ to @BASH@. Change
11644 function style to match POSIX. Drop ksh vim mode setting.
11645
11646 * manual/time.texi (Specifying the Time Zone with TZ): Change
11647 Tuesday to Thursday.
11648
11649 * debug/tst-longjmp_chk2.c: Update header comment.
11650 (stackoverflow_handler): Add comment. Call assert on pass value.
11651
116522014-03-13 Igor Zamyatin <igor.zamyatin@intel.com>
11653
11654 [BZ #16194]
11655 * config.h.in (HAVE_AVX512_SUPPORT): New #undef.
11656 (HAVE_AVX512_ASM_SUPPORT): Likewise.
11657 * sysdeps/x86_64/bits/link.h (La_x86_64_zmm): New.
11658 (La_x86_64_vector): Add zmm.
11659 * sysdeps/x86_64/Makefile (tests): Add tst-audit10.
11660 (modules-names): Add tst-auditmod10a and tst-auditmod10b.
11661 ($(objpfx)tst-audit10): New target.
11662 ($(objpfx)tst-audit10.out): Likewise.
11663 (tst-audit10-ENV): New.
11664 (AVX512-CFLAGS): Likewise.
11665 (CFLAGS-tst-audit10.c): Likewise.
11666 (CFLAGS-tst-auditmod10a.c): Likewise.
11667 (CFLAGS-tst-auditmod10b.c): Likewise.
11668 * sysdeps/x86_64/configure.ac: Set config-cflags-avx512,
11669 HAVE_AVX512_SUPPORT and HAVE_AVX512_ASM_SUPPORT.
11670 * sysdeps/x86_64/configure: Regenerated.
11671 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Add
11672 AVX-512 zmm register support.
11673 (_dl_x86_64_save_sse): Likewise.
11674 (_dl_x86_64_restore_sse): Likewise.
11675 * sysdeps/x86_64/dl-trampoline.h: Updated to support different
11676 size vector registers.
11677 * sysdeps/x86_64/link-defines.sym (YMM_SIZE): New.
11678 (ZMM_SIZE): Likewise.
11679 * sysdeps/x86_64/tst-audit10.c: New file.
11680 * sysdeps/x86_64/tst-auditmod10a.c: Likewise.
11681 * sysdeps/x86_64/tst-auditmod10b.c: Likewise.
11682
116832014-03-13 Roland McGrath <roland@hack.frob.com>
11684
11685 * configure.ac (HAVE_EHDR_START): New check.
11686 * configure: Regenerated.
11687 * config.h.in (HAVE_EHDR_START): New #undef.
11688 * elf/rtld.c (dl_main) [HAVE_EHDR_START]: Use __ehdr_start rather than
11689 assuming the lowest-addressed segment maps the start of the file.
11690
116912014-03-13 Joseph Myers <joseph@codesourcery.com>
11692
11693 * INSTALL: Regenerated.
11694
116952014-03-13 Will Newton <will.newton@linaro.org>
11696
11697 * manual/setjmp.texi (System V contexts): Improve
11698 clarity and grammar of documentation.
11699
117002014-03-12 Paul Pluzhnikov <ppluzhnikov@google.com>
11701
11702 [BZ #16381]
11703 * elf/Makefile (tests): Add tst-pie2.
11704 (tests-pie): Add tst-pie2.
11705 * elf/tst-pie2.c: New file.
11706 * elf/dl-load.c (_dl_map_object_from_fd): Assert correct l_type
11707 for ET_EXEC.
11708 * elf/rtld.c (map_doit): Load executable as lt_executable.
11709 (dl_main): Likewise.
11710
117112014-03-12 Joseph Myers <joseph@codesourcery.com>
11712
11713 [BZ #16642]
11714 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
11715 (__ASSUME_PSELECT): Undefine.
11716
117172014-03-12 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11718
11719 [BZ #16689]
11720 * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S
11721 (__bzero_ppc): Call memset@local instead of __memset_ppc@local for
11722 static build.
11723 * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: Build IFUNC
11724 selector for static builds.
11725
117262014-03-12 Siddhesh Poyarekar <siddhesh@redhat.com>
11727
11728 [BZ #16695]
11729 * nscd/netgroupcache.c (addgetnetgrentX): Factor in space for
11730 key in the buffer.
11731
117322014-03-12 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11733
11734 * sysdeps/powerpc/powerpc64/multiarch/strspn.c (strspn): Build
11735 IFUNC selector for static builds.
11736
117372014-03-11 Joseph Myers <joseph@codesourcery.com>
11738
11739 * sysdeps/mips/math_private.h [__mips_hard_float]
11740 (libc_feresetround_ctx): Define to libc_feupdateenv_mips_ctx not
11741 libc_feresetround_mips_ctx.
11742 [__mips_hard_float] (libc_feresetroundf_ctx): Likewise.
11743 [__mips_hard_float] (libc_feresetroundl_ctx): Likewise.
11744 [__mips_hard_float] (libc_feresetround_mips_ctx): Remove.
11745
11746 [BZ #16677]
11747 * math/s_nextafter.c (__nextafter): Do not return value from
11748 overflowing computation.
11749 * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Likewise.
11750 * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise.
11751 * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl):
11752 Likewise.
11753 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl):
11754 Likewise.
11755 * sysdeps/m68k/m680x0/fpu/s_nextafterl.c (__nextafterl): Likewise.
11756 * math/libm-test.inc (nextafter_test): Use ALL_RM_TEST.
11757
117582014-03-11 Roland McGrath <roland@hack.frob.com>
11759
11760 * sysdeps/arm/setjmp.S: Use sfi_breg on stores of mangled registers.
11761 * sysdeps/arm/__longjmp.S: Use sfi_breg on loads of mangled registers.
11762 Move sfi_sp use from the load-multiple (that no longer sets sp) to
11763 the new mov targetting sp.
11764
117652014-03-11 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11766
11767 [BZ #16683]
11768 * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S (__bzero_ppc):
11769 Define it for static builds as well.
11770 (NO_BZERO_IMPL): Likewise.
11771
117722014-03-11 Vidya Ranganathan <vidya@linux.vnet.ibm.com>
11773
11774 * sysdeps/powerpc/powerpc64/power7/strspn.S: New file: Optimization.
11775 * sysdeps/powerpc/powerpc64/multiarch/strspn.c: New file:
11776 multiarch strspn for PPC64.
11777 * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: New file
11778 * sysdeps/powerpc/powerpc64/multiarch/strspn-power7.S: New file
11779 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
11780 (__libc_ifunc_impl_list): Likewise.
11781 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strspn
11782 multiarch optimizations
11783 * string/strspn.c (strspn): Using macro to redefine symbol name.
11784
117852014-03-10 Vidya Ranganathan <vidya@linux.vnet.ibm.com>
11786 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11787
11788 * sysdeps/powerpc/powerpc64/power7/strncat.S: New file: Optimization.
11789 * sysdeps/powerpc/powerpc64/multiarch/strncat.c: New file:
11790 multiarch strncat for PPC64.
11791 * sysdeps/powerpc/powerpc64/multiarch/strncat-ppc64.c: New file
11792 * sysdeps/powerpc/powerpc64/multiarch/strncat-power7.S: New file
11793 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
11794 (__libc_ifunc_impl_list): Likewise.
11795 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncat
11796 multiarch optimizations
11797
117982014-03-10 Siddhesh Poyarekar <siddhesh@redhat.com>
11799
11800 [BZ #16639]
11801 * nscd/nscd.service: Make service type forking.
11802
118032014-03-03 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
11804
11805 * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Fix to return correct
11806 sign in non default rounding modes.
11807 * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
11808
118092014-03-08 Joseph Myers <joseph@codesourcery.com>
11810
11811 * math/libm-test.inc (ALL_RM_TEST): New macro.
11812 (ceil_test): Use ALL_RM_TEST.
11813 (cimag_test): Likewise.
11814 (conj_test): Likewise.
11815 (copysign_test): Likewise.
11816 (cproj_test): Likewise.
11817 (creal_test): Likewise.
11818 (fabs_test): Likewise.
11819 (floor_test): Likewise.
11820 (fmax_test): Likewise.
11821 (fmin_test): Likewise.
11822 (fmod_test): Likewise.
11823 (fpclassify_test): Likewise.
11824 (frexp_test): Likewise.
11825 (ilogb_test): Likewise.
11826 (isfinite_test): Likewise.
11827 (finite_test): Likewise.
11828 (isgreater_test): Likewise.
11829 (isgreaterequal_test): Likewise.
11830 (isinf_test): Likewise.
11831 (isless_test): Likewise.
11832 (islessequal_test): Likewise.
11833 (islessgreater_test): Likewise.
11834 (isnan_test): Likewise.
11835 (isnormal_test): Likewise.
11836 (issignaling_test): Likewise.
11837 (isunordered_test): Likewise.
11838 (logb_test): Likewise.
11839 (logb_downward_test_data): Remove.
11840 (logb_test_downward): Likewise.
11841 (lround_test): Use ALL_RM_TEST.
11842 (llround_test): Likewise.
11843 (modf_test): Likewise.
11844 (nexttoward_test): Likewise.
11845 (remainder_test): Likewise.
11846 (drem_test): Likewise.
11847 (remainder_tonearest_test_data): Likewise.
11848 (remainder_test_tonearest): Likewise.
11849 (drem_test_tonearest): Likewise.
11850 (remainder_towardzero_test_data): Likewise.
11851 (remainder_test_towardzero): Likewise.
11852 (drem_test_towardzero): Likewise.
11853 (remainder_downward_test_data): Likewise.
11854 (remainder_test_downward): Likewise.
11855 (drem_test_downward): Likewise.
11856 (remainder_upward_test_data): Likewise.
11857 (remainder_test_upward): Likewise.
11858 (drem_test_upward): Likewise.
11859 (remquo_test): Use ALL_RM_TEST. Remove comment about x.
11860 (round_test): Use ALL_RM_TEST.
11861 (signbit_test): Likewise.
11862 (trunc_test): Likewise.
11863 (significand_test): Likewise.
11864 (main): Don't call removed functions.
11865
118662014-03-07 Joseph Myers <joseph@codesourcery.com>
11867
11868 [BZ #16674]
11869 * bits/siginfo.h (ILL_ILLOPC): Condition on [__USE_XOPEN_EXTENDED
11870 || __USE_XOPEN2K8].
11871 (ILL_ILLOPN): Likewise.
11872 (ILL_ILLADR): Likewise.
11873 (ILL_ILLTRP): Likewise.
11874 (ILL_PRVOPC): Likewise.
11875 (ILL_PRVREG): Likewise.
11876 (ILL_COPROC): Likewise.
11877 (ILL_BADSTK): Likewise.
11878 (FPE_INTDIV): Likewise.
11879 (FPE_INTOVF): Likewise.
11880 (FPE_FLTDIV): Likewise.
11881 (FPE_FLTOVF): Likewise.
11882 (FPE_FLTUND): Likewise.
11883 (FPE_FLTRES): Likewise.
11884 (FPE_FLTINV): Likewise.
11885 (FPE_FLTSUB): Likewise.
11886 (SEGV_MAPERR): Likewise.
11887 (SEGV_ACCERR): Likewise.
11888 (BUS_ADRALN): Likewise.
11889 (BUS_ADRERR): Likewise.
11890 (BUS_OBJERR): Likewise.
11891 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
11892 (TRAP_TRACE): Likewise.
11893 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
11894 __USE_XOPEN2K8].
11895 (CLD_KILLED): Likewise.
11896 (CLD_DUMPED): Likewise.
11897 (CLD_TRAPPED): Likewise.
11898 (CLD_STOPPED): Likewise.
11899 (CLD_CONTINUED): Likewise.
11900 (POLL_IN): Likewise.
11901 (POLL_OUT): Likewise.
11902 (POLL_MSG): Likewise.
11903 (POLL_ERR): Likewise.
11904 (POLL_PRI): Likewise.
11905 (POLL_HUP): Likewise.
11906 * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h (ILL_ILLOPC):
11907 Likewise.
11908 (ILL_ILLOPN): Likewise.
11909 (ILL_ILLADR): Likewise.
11910 (ILL_ILLTRP): Likewise.
11911 (ILL_PRVOPC): Likewise.
11912 (ILL_PRVREG): Likewise.
11913 (ILL_COPROC): Likewise.
11914 (ILL_BADSTK): Likewise.
11915 (FPE_INTDIV): Likewise.
11916 (FPE_INTOVF): Likewise.
11917 (FPE_FLTDIV): Likewise.
11918 (FPE_FLTOVF): Likewise.
11919 (FPE_FLTUND): Likewise.
11920 (FPE_FLTRES): Likewise.
11921 (FPE_FLTINV): Likewise.
11922 (FPE_FLTSUB): Likewise.
11923 (SEGV_MAPERR): Likewise.
11924 (SEGV_ACCERR): Likewise.
11925 (BUS_ADRALN): Likewise.
11926 (BUS_ADRERR): Likewise.
11927 (BUS_OBJERR): Likewise.
11928 (BUS_MCEERR_AR): Likewise.
11929 (BUS_MCEERR_AO): Likewise.
11930 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
11931 (TRAP_TRACE): Likewise.
11932 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
11933 __USE_XOPEN2K8].
11934 (CLD_KILLED): Likewise.
11935 (CLD_DUMPED): Likewise.
11936 (CLD_TRAPPED): Likewise.
11937 (CLD_STOPPED): Likewise.
11938 (CLD_CONTINUED): Likewise.
11939 (POLL_IN): Likewise.
11940 (POLL_OUT): Likewise.
11941 (POLL_MSG): Likewise.
11942 (POLL_ERR): Likewise.
11943 (POLL_PRI): Likewise.
11944 (POLL_HUP): Likewise.
11945 * sysdeps/unix/sysv/linux/bits/siginfo.h (ILL_ILLOPC): Likewise.
11946 (ILL_ILLOPN): Likewise.
11947 (ILL_ILLADR): Likewise.
11948 (ILL_ILLTRP): Likewise.
11949 (ILL_PRVOPC): Likewise.
11950 (ILL_PRVREG): Likewise.
11951 (ILL_COPROC): Likewise.
11952 (ILL_BADSTK): Likewise.
11953 (FPE_INTDIV): Likewise.
11954 (FPE_INTOVF): Likewise.
11955 (FPE_FLTDIV): Likewise.
11956 (FPE_FLTOVF): Likewise.
11957 (FPE_FLTUND): Likewise.
11958 (FPE_FLTRES): Likewise.
11959 (FPE_FLTINV): Likewise.
11960 (FPE_FLTSUB): Likewise.
11961 (SEGV_MAPERR): Likewise.
11962 (SEGV_ACCERR): Likewise.
11963 (BUS_ADRALN): Likewise.
11964 (BUS_ADRERR): Likewise.
11965 (BUS_OBJERR): Likewise.
11966 (BUS_MCEERR_AR): Likewise.
11967 (BUS_MCEERR_AO): Likewise.
11968 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
11969 (TRAP_TRACE): Likewise.
11970 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
11971 __USE_XOPEN2K8].
11972 (CLD_KILLED): Likewise.
11973 (CLD_DUMPED): Likewise.
11974 (CLD_TRAPPED): Likewise.
11975 (CLD_STOPPED): Likewise.
11976 (CLD_CONTINUED): Likewise.
11977 (POLL_IN): Likewise.
11978 (POLL_OUT): Likewise.
11979 (POLL_MSG): Likewise.
11980 (POLL_ERR): Likewise.
11981 (POLL_PRI): Likewise.
11982 (POLL_HUP): Likewise.
11983 * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h (ILL_ILLOPC):
11984 Likewise.
11985 (ILL_ILLOPN): Likewise.
11986 (ILL_ILLADR): Likewise.
11987 (ILL_ILLTRP): Likewise.
11988 (ILL_PRVOPC): Likewise.
11989 (ILL_PRVREG): Likewise.
11990 (ILL_COPROC): Likewise.
11991 (ILL_BADSTK): Likewise.
11992 (ILL_BADIADDR): Likewise.
11993 (ILL_BREAK): Likewise.
11994 (FPE_INTDIV): Likewise.
11995 (FPE_INTOVF): Likewise.
11996 (FPE_FLTDIV): Likewise.
11997 (FPE_FLTOVF): Likewise.
11998 (FPE_FLTUND): Likewise.
11999 (FPE_FLTRES): Likewise.
12000 (FPE_FLTINV): Likewise.
12001 (FPE_FLTSUB): Likewise.
12002 (FPE_DECOVF): Likewise.
12003 (FPE_DECDIV): Likewise.
12004 (FPE_DECERR): Likewise.
12005 (FPE_INVASC): Likewise.
12006 (FPE_INVDEC): Likewise.
12007 (SEGV_MAPERR): Likewise.
12008 (SEGV_ACCERR): Likewise.
12009 (SEGV_PSTKOVF): Likewise.
12010 (BUS_ADRALN): Likewise.
12011 (BUS_ADRERR): Likewise.
12012 (BUS_OBJERR): Likewise.
12013 (BUS_MCEERR_AR): Likewise.
12014 (BUS_MCEERR_AO): Likewise.
12015 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
12016 (TRAP_TRACE): Likewise.
12017 (TRAP_BRANCH): Likewise.
12018 (TRAP_HWBKPT): Likewise.
12019 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
12020 __USE_XOPEN2K8].
12021 (CLD_KILLED): Likewise.
12022 (CLD_DUMPED): Likewise.
12023 (CLD_TRAPPED): Likewise.
12024 (CLD_STOPPED): Likewise.
12025 (CLD_CONTINUED): Likewise.
12026 (POLL_IN): Likewise.
12027 (POLL_OUT): Likewise.
12028 (POLL_MSG): Likewise.
12029 (POLL_ERR): Likewise.
12030 (POLL_PRI): Likewise.
12031 (POLL_HUP): Likewise.
12032 * sysdeps/unix/sysv/linux/mips/bits/siginfo.h (ILL_ILLOPC): Likewise.
12033 (ILL_ILLOPN): Likewise.
12034 (ILL_ILLADR): Likewise.
12035 (ILL_ILLTRP): Likewise.
12036 (ILL_PRVOPC): Likewise.
12037 (ILL_PRVREG): Likewise.
12038 (ILL_COPROC): Likewise.
12039 (ILL_BADSTK): Likewise.
12040 (FPE_INTDIV): Likewise.
12041 (FPE_INTOVF): Likewise.
12042 (FPE_FLTDIV): Likewise.
12043 (FPE_FLTOVF): Likewise.
12044 (FPE_FLTUND): Likewise.
12045 (FPE_FLTRES): Likewise.
12046 (FPE_FLTINV): Likewise.
12047 (FPE_FLTSUB): Likewise.
12048 (SEGV_MAPERR): Likewise.
12049 (SEGV_ACCERR): Likewise.
12050 (BUS_ADRALN): Likewise.
12051 (BUS_ADRERR): Likewise.
12052 (BUS_OBJERR): Likewise.
12053 (BUS_MCEERR_AR): Likewise.
12054 (BUS_MCEERR_AO): Likewise.
12055 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
12056 (TRAP_TRACE): Likewise.
12057 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
12058 __USE_XOPEN2K8].
12059 (CLD_KILLED): Likewise.
12060 (CLD_DUMPED): Likewise.
12061 (CLD_TRAPPED): Likewise.
12062 (CLD_STOPPED): Likewise.
12063 (CLD_CONTINUED): Likewise.
12064 (POLL_IN): Likewise.
12065 (POLL_OUT): Likewise.
12066 (POLL_MSG): Likewise.
12067 (POLL_ERR): Likewise.
12068 (POLL_PRI): Likewise.
12069 (POLL_HUP): Likewise.
12070 * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (ILL_ILLOPC): Likewise.
12071 (ILL_ILLOPN): Likewise.
12072 (ILL_ILLADR): Likewise.
12073 (ILL_ILLTRP): Likewise.
12074 (ILL_PRVOPC): Likewise.
12075 (ILL_PRVREG): Likewise.
12076 (ILL_COPROC): Likewise.
12077 (ILL_BADSTK): Likewise.
12078 (FPE_INTDIV): Likewise.
12079 (FPE_INTOVF): Likewise.
12080 (FPE_FLTDIV): Likewise.
12081 (FPE_FLTOVF): Likewise.
12082 (FPE_FLTUND): Likewise.
12083 (FPE_FLTRES): Likewise.
12084 (FPE_FLTINV): Likewise.
12085 (FPE_FLTSUB): Likewise.
12086 (SEGV_MAPERR): Likewise.
12087 (SEGV_ACCERR): Likewise.
12088 (BUS_ADRALN): Likewise.
12089 (BUS_ADRERR): Likewise.
12090 (BUS_OBJERR): Likewise.
12091 (BUS_MCEERR_AR): Likewise.
12092 (BUS_MCEERR_AO): Likewise.
12093 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
12094 (TRAP_TRACE): Likewise.
12095 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
12096 __USE_XOPEN2K8].
12097 (CLD_KILLED): Likewise.
12098 (CLD_DUMPED): Likewise.
12099 (CLD_TRAPPED): Likewise.
12100 (CLD_STOPPED): Likewise.
12101 (CLD_CONTINUED): Likewise.
12102 (POLL_IN): Likewise.
12103 (POLL_OUT): Likewise.
12104 (POLL_MSG): Likewise.
12105 (POLL_ERR): Likewise.
12106 (POLL_PRI): Likewise.
12107 (POLL_HUP): Likewise.
12108 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (ILL_ILLOPC): Likewise.
12109 (ILL_ILLOPN): Likewise.
12110 (ILL_ILLADR): Likewise.
12111 (ILL_ILLTRP): Likewise.
12112 (ILL_PRVOPC): Likewise.
12113 (ILL_PRVREG): Likewise.
12114 (ILL_COPROC): Likewise.
12115 (ILL_BADSTK): Likewise.
12116 (FPE_INTDIV): Likewise.
12117 (FPE_INTOVF): Likewise.
12118 (FPE_FLTDIV): Likewise.
12119 (FPE_FLTOVF): Likewise.
12120 (FPE_FLTUND): Likewise.
12121 (FPE_FLTRES): Likewise.
12122 (FPE_FLTINV): Likewise.
12123 (FPE_FLTSUB): Likewise.
12124 (SEGV_MAPERR): Likewise.
12125 (SEGV_ACCERR): Likewise.
12126 (BUS_ADRALN): Likewise.
12127 (BUS_ADRERR): Likewise.
12128 (BUS_OBJERR): Likewise.
12129 (BUS_MCEERR_AR): Likewise.
12130 (BUS_MCEERR_AO): Likewise.
12131 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
12132 (TRAP_TRACE): Likewise.
12133 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
12134 __USE_XOPEN2K8].
12135 (CLD_KILLED): Likewise.
12136 (CLD_DUMPED): Likewise.
12137 (CLD_TRAPPED): Likewise.
12138 (CLD_STOPPED): Likewise.
12139 (CLD_CONTINUED): Likewise.
12140 (POLL_IN): Likewise.
12141 (POLL_OUT): Likewise.
12142 (POLL_MSG): Likewise.
12143 (POLL_ERR): Likewise.
12144 (POLL_PRI): Likewise.
12145 (POLL_HUP): Likewise.
12146 * sysdeps/unix/sysv/linux/tile/bits/siginfo.h (ILL_ILLOPC): Likewise.
12147 (ILL_ILLOPN): Likewise.
12148 (ILL_ILLADR): Likewise.
12149 (ILL_ILLTRP): Likewise.
12150 (ILL_PRVOPC): Likewise.
12151 (ILL_PRVREG): Likewise.
12152 (ILL_COPROC): Likewise.
12153 (ILL_BADSTK): Likewise.
12154 (ILL_DBLFLT): Likewise.
12155 (ILL_HARDWALL): Likewise.
12156 (FPE_INTDIV): Likewise.
12157 (FPE_INTOVF): Likewise.
12158 (FPE_FLTDIV): Likewise.
12159 (FPE_FLTOVF): Likewise.
12160 (FPE_FLTUND): Likewise.
12161 (FPE_FLTRES): Likewise.
12162 (FPE_FLTINV): Likewise.
12163 (FPE_FLTSUB): Likewise.
12164 (SEGV_MAPERR): Likewise.
12165 (SEGV_ACCERR): Likewise.
12166 (BUS_ADRALN): Likewise.
12167 (BUS_ADRERR): Likewise.
12168 (BUS_OBJERR): Likewise.
12169 (BUS_MCEERR_AR): Likewise.
12170 (BUS_MCEERR_AO): Likewise.
12171 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
12172 (TRAP_TRACE): Likewise.
12173 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
12174 __USE_XOPEN2K8].
12175 (CLD_KILLED): Likewise.
12176 (CLD_DUMPED): Likewise.
12177 (CLD_TRAPPED): Likewise.
12178 (CLD_STOPPED): Likewise.
12179 (CLD_CONTINUED): Likewise.
12180 (POLL_IN): Likewise.
12181 (POLL_OUT): Likewise.
12182 (POLL_MSG): Likewise.
12183 (POLL_ERR): Likewise.
12184 (POLL_PRI): Likewise.
12185 (POLL_HUP): Likewise.
12186 * sysdeps/unix/sysv/linux/x86/bits/siginfo.h (ILL_ILLOPC): Likewise.
12187 (ILL_ILLOPN): Likewise.
12188 (ILL_ILLADR): Likewise.
12189 (ILL_ILLTRP): Likewise.
12190 (ILL_PRVOPC): Likewise.
12191 (ILL_PRVREG): Likewise.
12192 (ILL_COPROC): Likewise.
12193 (ILL_BADSTK): Likewise.
12194 (FPE_INTDIV): Likewise.
12195 (FPE_INTOVF): Likewise.
12196 (FPE_FLTDIV): Likewise.
12197 (FPE_FLTOVF): Likewise.
12198 (FPE_FLTUND): Likewise.
12199 (FPE_FLTRES): Likewise.
12200 (FPE_FLTINV): Likewise.
12201 (FPE_FLTSUB): Likewise.
12202 (SEGV_MAPERR): Likewise.
12203 (SEGV_ACCERR): Likewise.
12204 (BUS_ADRALN): Likewise.
12205 (BUS_ADRERR): Likewise.
12206 (BUS_OBJERR): Likewise.
12207 (BUS_MCEERR_AR): Likewise.
12208 (BUS_MCEERR_AO): Likewise.
12209 (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
12210 (TRAP_TRACE): Likewise.
12211 (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
12212 __USE_XOPEN2K8].
12213 (CLD_KILLED): Likewise.
12214 (CLD_DUMPED): Likewise.
12215 (CLD_TRAPPED): Likewise.
12216 (CLD_STOPPED): Likewise.
12217 (CLD_CONTINUED): Likewise.
12218 (POLL_IN): Likewise.
12219 (POLL_OUT): Likewise.
12220 (POLL_MSG): Likewise.
12221 (POLL_ERR): Likewise.
12222 (POLL_PRI): Likewise.
12223 (POLL_HUP): Likewise.
12224 * conform/Makefile (test-xfail-POSIX/signal.h/conform): Remove.
12225 (test-xfail-POSIX/sys/wait.h/conform): Likewise.
12226
12227 [BZ #16670]
12228 * posix/sched.h [!__USE_XOPEN2K] (__need_time_t): Don't define
12229 before #include of <time.h>.
12230 [!__USE_XOPEN2K] (__need_timespec): Likewise.
12231 * conform/Makefile (test-xfail-POSIX/sched.h/conform): Remove.
12232 (test-xfail-UNIX98/sched.h/conform): Likewise.
12233
122342014-03-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
12235
12236 * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept): Detect and
12237 error absence of trapping exception support.
12238 * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Likewise.
12239
122402014-03-07 Joseph Myers <joseph@codesourcery.com>
12241
12242 * catgets/Makefile (tests-special): Add $(objpfx)sample.SJIS.cat.
12243 ($(objpfx)sample.SJIS.cat): Use $(evaluate-test).
12244 * timezone/Makefile (testdata): Move definition above include of
12245 Rules.
12246 (test-zones): New variable.
12247 (tests-special): Add zone files.
12248 (build-testdata): Use $(evaluate-test).
12249
12250 * elf/Makefile (tests-special): Rename tests to end with .out.
12251 ($(objpfx)noload-mem): Likewise.
12252 ($(objpfx)tst-leaks1-mem): Likewise.
12253 ($(objpfx)tst-leaks1-static-mem.out): Likewise.
12254 * iconv/Makefile (xtests-special): Change test-iconvconfig to
12255 $(objpfx)test-iconvconfig.out.
12256 (test-iconvconfig): Change to $(objpfx)test-iconvconfig.out. Use
12257 set -e inside subshell and redirect output to file.
12258 * iconvdata/Makefile (generated): Rename tests to end with .out.
12259 Correct type.
12260 (tests-special): Rename tests to end with .out.
12261 ($(objpfx)mtrace-tst-loading): Likewise.
12262 * intl/Makefile (generated): Likewise.
12263 (tests-special): Likewise.
12264 ($(objpfx)mtrace-tst-gettext): Likewise.
12265 * misc/Makefile (generated): Likewise.
12266 (tests-special): Likewise.
12267 ($(objpfx)tst-error1-mem): Likewise.
12268 * nptl/Makefile (tests-special): Likewise.
12269 ($(objpfx)tst-stack3-mem): Likewise.
12270 (generated): Likewise.
12271 * posix/Makefile (generated): Likewise.
12272 (tests-special): Likewise.
12273 (xtests-special): Likewise.
12274 ($(objpfx)tst-fnmatch-mem): Likewise.
12275 ($(objpfx)bug-regex2-mem): Likewise.
12276 ($(objpfx)bug-regex14-mem): Likewise.
12277 ($(objpfx)bug-regex21-mem): Likewise.
12278 ($(objpfx)bug-regex31-mem): Likewise.
12279 ($(objpfx)tst-vfork3-mem): Likewise.
12280 ($(objpfx)tst-rxspencer-no-utf8-mem): Likewise.
12281 ($(objpfx)tst-pcre-mem): Likewise.
12282 ($(objpfx)tst-boost-mem): Likewise.
12283 ($(objpfx)bug-ga2-mem): Likewise.
12284 ($(objpfx)bug-glob2-mem): Likewise.
12285 * resolv/Makefile (generate): Likewise.
12286 (tests-special): Likewise.
12287 (xtests-special): Likewise.
12288 (generated): Likewise.
12289 ($(objpfx)mtrace-tst-leaks): Likewise.
12290 ($(objpfx)mtrace-tst-leaks2): Likewise.
12291
12292 * scripts/merge-test-results.sh: New file.
12293 * Makefile (tests-special-notdir): New variable.
12294 (tests): Run merge-test-results.sh.
12295 (xtests): Likewise.
12296 * Rules (tests-special-notdir): New variable.
12297 (xtests-special-notdir): Likewise.
12298 (tests): Run merge-test-results.sh
12299 (xtests): Likewise.
12300
12301 * Makeconfig (test-xfail-name): New variable.
12302 (evaluate-test): Use $(test-xfail-name) instead of $(@F:.out=) to
12303 compute variable name for expected failures.
12304 * conform/Makefile (conformtest-headers-data): New variable.
12305 (conformtest-standards): Likewise.
12306 (conformtest-headers-ISO): Likewise.
12307 (conformtest-headers-ISO99): Likewise.
12308 (conformtest-headers-ISO11): Likewise.
12309 (conformtest-headers-POSIX): Likewise.
12310 (conformtest-headers-XPG3): Likewise.
12311 (conformtest-headers-XPG4): Likewise.
12312 (conformtest-headers-UNIX98): Likewise.
12313 (conformtest-headers-XOPEN2K): Likewise.
12314 (conformtest-headers-POSIX2008): Likewise.
12315 (conformtest-headers-XOPEN2K8): Likewise.
12316 (conformtest-header-list-base): Likewise.
12317 (conformtest-header-list-tests): Likewise.
12318 (conformtest-header-base): Likewise.
12319 (conformtest-header-tests): Likewise.
12320 (tests-special): Add $(conformtest-header-list-tests). If
12321 [$(fast-check) && !$(cross-compiling)], add
12322 $(conformtest-header-tests) instead of
12323 $(objpfx)run-conformtest.out.
12324 (generated): Add $(conformtest-header-list-base). If
12325 [$(fast-check) && !$(cross-compiling)], add
12326 $(conformtest-header-base). Remove previous setting.
12327 ($(conformtest-header-list-tests)): New target.
12328 (test-xfail-run-conformtest): Remove variable.
12329 ($(objpfx)run-conformtest.out): Remove target.
12330 (test-xfail-ISO11/complex.h/conform): New variable.
12331 (test-xfail-ISO11/stdalign.h/conform): Likewise.
12332 (test-xfail-ISO11/stdnoreturn.h/conform): Likewise.
12333 (test-xfail-XPG3/varargs.h/conform): Likewise.
12334 (test-xfail-XPG4/varargs.h/conform): Likewise.
12335 (test-xfail-UNIX98/varargs.h/conform): Likewise.
12336 (test-xfail-XPG4/ndbm.h/conform): Likewise.
12337 (test-xfail-UNIX98/ndbm.h/conform): Likewise.
12338 (test-xfail-XOPEN2K/ndbm.h/conform): Likewise.
12339 (test-xfail-XOPEN2K8/ndbm.h/conform): Likewise.
12340 (test-xfail-XPG3/fcntl.h/conform): Likewise.
12341 (test-xfail-XPG3/ftw.h/conform): Likewise.
12342 (test-xfail-XPG3/grp.h/conform): Likewise.
12343 (test-xfail-XPG3/langinfo.h/conform): Likewise.
12344 (test-xfail-XPG3/limits.h/conform): Likewise.
12345 (test-xfail-XPG3/pwd.h/conform): Likewise.
12346 (test-xfail-XPG3/search.h/conform): Likewise.
12347 (test-xfail-XPG3/signal.h/conform): Likewise.
12348 (test-xfail-XPG3/stdio.h/conform): Likewise.
12349 (test-xfail-XPG3/stdlib.h/conform): Likewise.
12350 (test-xfail-XPG3/string.h/conform): Likewise.
12351 (test-xfail-XPG3/sys/ipc.h/conform): Likewise.
12352 (test-xfail-XPG3/sys/msg.h/conform): Likewise.
12353 (test-xfail-XPG3/sys/sem.h/conform): Likewise.
12354 (test-xfail-XPG3/sys/shm.h/conform): Likewise.
12355 (test-xfail-XPG3/sys/stat.h/conform): Likewise.
12356 (test-xfail-XPG3/sys/types.h/conform): Likewise.
12357 (test-xfail-XPG3/sys/wait.h/conform): Likewise.
12358 (test-xfail-XPG3/termios.h/conform): Likewise.
12359 (test-xfail-XPG3/time.h/conform): Likewise.
12360 (test-xfail-XPG3/unistd.h/conform): Likewise.
12361 (test-xfail-XPG4/arpa/inet.h/conform): Likewise.
12362 (test-xfail-XPG4/fcntl.h/conform): Likewise.
12363 (test-xfail-XPG4/langinfo.h/conform): Likewise.
12364 (test-xfail-XPG4/netdb.h/conform): Likewise.
12365 (test-xfail-XPG4/netinet/in.h/conform): Likewise.
12366 (test-xfail-XPG4/signal.h/conform): Likewise.
12367 (test-xfail-XPG4/stdio.h/conform): Likewise.
12368 (test-xfail-XPG4/stdlib.h/conform): Likewise.
12369 (test-xfail-XPG4/stropts.h/conform): Likewise.
12370 (test-xfail-XPG4/sys/ipc.h/conform): Likewise.
12371 (test-xfail-XPG4/sys/msg.h/conform): Likewise.
12372 (test-xfail-XPG4/sys/sem.h/conform): Likewise.
12373 (test-xfail-XPG4/sys/shm.h/conform): Likewise.
12374 (test-xfail-XPG4/sys/socket.h/conform): Likewise.
12375 (test-xfail-XPG4/sys/stat.h/conform): Likewise.
12376 (test-xfail-XPG4/sys/time.h/conform): Likewise.
12377 (test-xfail-XPG4/sys/types.h/conform): Likewise.
12378 (test-xfail-XPG4/sys/wait.h/conform): Likewise.
12379 (test-xfail-XPG4/termios.h/conform): Likewise.
12380 (test-xfail-XPG4/ucontext.h/conform): Likewise.
12381 (test-xfail-XPG4/unistd.h/conform): Likewise.
12382 (test-xfail-XPG4/utmpx.h/conform): Likewise.
12383 (test-xfail-POSIX/sched.h/conform): Likewise.
12384 (test-xfail-POSIX/signal.h/conform): Likewise.
12385 (test-xfail-POSIX/sys/wait.h/conform): Likewise.
12386 (test-xfail-POSIX/tar.h/conform): Likewise.
12387 (test-xfail-UNIX98/arpa/inet.h/conform): Likewise.
12388 (test-xfail-UNIX98/fcntl.h/conform): Likewise.
12389 (test-xfail-UNIX98/langinfo.h/conform): Likewise.
12390 (test-xfail-UNIX98/netdb.h/conform): Likewise.
12391 (test-xfail-UNIX98/netinet/in.h/conform): Likewise.
12392 (test-xfail-UNIX98/sched.h/conform): Likewise.
12393 (test-xfail-UNIX98/signal.h/conform): Likewise.
12394 (test-xfail-UNIX98/stdio.h/conform): Likewise.
12395 (test-xfail-UNIX98/stdlib.h/conform): Likewise.
12396 (test-xfail-UNIX98/stropts.h/conform): Likewise.
12397 (test-xfail-UNIX98/sys/ipc.h/conform): Likewise.
12398 (test-xfail-UNIX98/sys/msg.h/conform): Likewise.
12399 (test-xfail-UNIX98/sys/sem.h/conform): Likewise.
12400 (test-xfail-UNIX98/sys/shm.h/conform): Likewise.
12401 (test-xfail-UNIX98/sys/socket.h/conform): Likewise.
12402 (test-xfail-UNIX98/sys/time.h/conform): Likewise.
12403 (test-xfail-UNIX98/sys/wait.h/conform): Likewise.
12404 (test-xfail-UNIX98/ucontext.h/conform): Likewise.
12405 (test-xfail-UNIX98/unistd.h/conform): Likewise.
12406 (test-xfail-UNIX98/utmpx.h/conform): Likewise.
12407 (test-xfail-XOPEN2K/aio.h/conform): Likewise.
12408 (test-xfail-XOPEN2K/arpa/inet.h/conform): Likewise.
12409 (test-xfail-XOPEN2K/fcntl.h/conform): Likewise.
12410 (test-xfail-XOPEN2K/langinfo.h/conform): Likewise.
12411 (test-xfail-XOPEN2K/math.h/conform): Likewise.
12412 (test-xfail-XOPEN2K/mqueue.h/conform): Likewise.
12413 (test-xfail-XOPEN2K/netdb.h/conform): Likewise.
12414 (test-xfail-XOPEN2K/netinet/in.h/conform): Likewise.
12415 (test-xfail-XOPEN2K/semaphore.h/conform): Likewise.
12416 (test-xfail-XOPEN2K/signal.h/conform): Likewise.
12417 (test-xfail-XOPEN2K/stdarg.h/conform): Likewise.
12418 (test-xfail-XOPEN2K/stdio.h/conform): Likewise.
12419 (test-xfail-XOPEN2K/stropts.h/conform): Likewise.
12420 (test-xfail-XOPEN2K/sys/ipc.h/conform): Likewise.
12421 (test-xfail-XOPEN2K/sys/msg.h/conform): Likewise.
12422 (test-xfail-XOPEN2K/sys/sem.h/conform): Likewise.
12423 (test-xfail-XOPEN2K/sys/shm.h/conform): Likewise.
12424 (test-xfail-XOPEN2K/sys/socket.h/conform): Likewise.
12425 (test-xfail-XOPEN2K/sys/wait.h/conform): Likewise.
12426 (test-xfail-XOPEN2K/termios.h/conform): Likewise.
12427 (test-xfail-XOPEN2K/tgmath.h/conform): Likewise.
12428 (test-xfail-XOPEN2K/ucontext.h/conform): Likewise.
12429 (test-xfail-XOPEN2K/utmpx.h/conform): Likewise.
12430 (test-xfail-POSIX2008/arpa/inet.h/conform): Likewise.
12431 (test-xfail-POSIX2008/fcntl.h/conform): Likewise.
12432 (test-xfail-POSIX2008/netdb.h/conform): Likewise.
12433 (test-xfail-POSIX2008/netinet/in.h/conform): Likewise.
12434 (test-xfail-POSIX2008/signal.h/conform): Likewise.
12435 (test-xfail-POSIX2008/stropts.h/conform): Likewise.
12436 (test-xfail-POSIX2008/sys/socket.h/conform): Likewise.
12437 (test-xfail-POSIX2008/sys/wait.h/conform): Likewise.
12438 (test-xfail-XOPEN2K8/arpa/inet.h/conform): Likewise.
12439 (test-xfail-XOPEN2K8/fcntl.h/conform): Likewise.
12440 (test-xfail-XOPEN2K8/limits.h/conform): Likewise.
12441 (test-xfail-XOPEN2K8/math.h/conform): Likewise.
12442 (test-xfail-XOPEN2K8/netdb.h/conform): Likewise.
12443 (test-xfail-XOPEN2K8/netinet/in.h/conform): Likewise.
12444 (test-xfail-XOPEN2K8/signal.h/conform): Likewise.
12445 (test-xfail-XOPEN2K8/stdio.h/conform): Likewise.
12446 (test-xfail-XOPEN2K8/stropts.h/conform): Likewise.
12447 (test-xfail-XOPEN2K8/sys/ipc.h/conform): Likewise.
12448 (test-xfail-XOPEN2K8/sys/msg.h/conform): Likewise.
12449 (test-xfail-XOPEN2K8/sys/select.h/conform): Likewise.
12450 (test-xfail-XOPEN2K8/sys/sem.h/conform): Likewise.
12451 (test-xfail-XOPEN2K8/sys/shm.h/conform): Likewise.
12452 (test-xfail-XOPEN2K8/sys/socket.h/conform): Likewise.
12453 (test-xfail-XOPEN2K8/sys/time.h/conform): Likewise.
12454 (test-xfail-XOPEN2K8/sys/wait.h/conform): Likewise.
12455 (test-xfail-XOPEN2K8/termios.h/conform): Likewise.
12456 (test-xfail-XOPEN2K8/tgmath.h/conform): Likewise.
12457 (test-xfail-XOPEN2K8/utmpx.h/conform): Likewise.
12458 (conformtest-cc-flags): Likewise.
12459 ($(conformtest-header-tests): New target.
12460 * conform/check-header-lists.sh: New file.
12461 * conform/run-conformtest.sh: Remove.
12462
12463 * conform/conformtest.pl: Allow ' and \ in values given for
12464 constants.
12465 * conform/data/semaphore.h-data [POSIX] (fcntl.h): Allow header
12466 inclusion.
12467 [POSIX] (sys/types.h): Likewise.
12468 [POSIX2008 || XOPEN2K8] (sys/types.h): Don't allow header
12469 inclusion.
12470 [POSIX || UNIX98 || XOPEN2K] (time.h): Don't allow header
12471 inclusion.
12472 * conform/data/signal.h-data (SIGIO): Remove expectation.
12473 [XPG3] (SIGBUS): Do not expect.
12474 [POSIX || XPG3] (SIGPOLL): Likewise.
12475 [POSIX || XPG3] (SIGPROF): Likewise.
12476 [POSIX || XPG3] (SIGSYS): Likewise.
12477 [XPG3] (SIGTRAP): Likewise.
12478 [POSIX || XPG3] (SIGURG): Likewise.
12479 [POSIX || XPG3] (SIGVTALRM): Likewise.
12480 [POSIX || XPG3] (SIGXCPU): Likewise.
12481 [POSIX || XPG3] (SIGXFSZ): Likewise.
12482 [POSIX] (SA_SIGINFO): Expect.
12483 [XPG3] (siginfo_t): Do not expect type or contents.
12484 [POSIX] (si_pid): Do not expect element.
12485 [POSIX] (si_uid): Likewise.
12486 [POSIX] (si_addr): Likewise.
12487 [POSIX] (si_status): Likewise.
12488 [POSIX] (si_band): Likewise.
12489 [XPG4] (si_value): Likewise.
12490 [POSIX || XPG3] (ILL_ILLOPC): Do not expect.
12491 [POSIX || XPG3] (ILL_ILLOPN): Likewise.
12492 [POSIX || XPG3] (ILL_ILLADR): Likewise.
12493 [POSIX || XPG3] (ILL_ILLTRP): Likewise.
12494 [POSIX || XPG3] (ILL_PRVOPC): Likewise.
12495 [POSIX || XPG3] (ILL_PRVREG): Likewise.
12496 [POSIX || XPG3] (ILL_COPROC): Likewise.
12497 [POSIX || XPG3] (ILL_BADSTK): Likewise.
12498 [POSIX || XPG3] (FPE_INTDIV): Likewise.
12499 [POSIX || XPG3] (FPE_INTOVF): Likewise.
12500 [POSIX || XPG3] (FPE_FLTDIV): Likewise.
12501 [POSIX || XPG3] (FPE_FLTOVF): Likewise.
12502 [POSIX || XPG3] (FPE_FLTUND): Likewise.
12503 [POSIX || XPG3] (FPE_FLTRES): Likewise.
12504 [POSIX || XPG3] (FPE_FLTINV): Likewise.
12505 [POSIX || XPG3] (FPE_FLTSUB): Likewise.
12506 [POSIX || XPG3] (SEGV_MAPERR): Likewise.
12507 [POSIX || XPG3] (SEGV_ACCERR): Likewise.
12508 [POSIX || XPG3] (BUS_ADRALN): Likewise.
12509 [POSIX || XPG3] (BUS_ADRERR): Likewise.
12510 [POSIX || XPG3] (BUS_OBJERR): Likewise.
12511 [POSIX || XPG3] (CLD_EXITED): Likewise.
12512 [POSIX || XPG3] (CLD_KILLED): Likewise.
12513 [POSIX || XPG3] (CLD_DUMPED): Likewise.
12514 [POSIX || XPG3] (CLD_TRAPPED): Likewise.
12515 [POSIX || XPG3] (CLD_STOPPED): Likewise.
12516 [POSIX || XPG3] (CLD_CONTINUED): Likewise.
12517 [POSIX || XPG3] (POLL_IN): Likewise.
12518 [POSIX || XPG3] (POLL_OUT): Likewise.
12519 [POSIX || XPG3] (POLL_MSG): Likewise.
12520 [POSIX || XPG3] (POLL_ERR): Likewise.
12521 [POSIX || XPG3] (POLL_PRI): Likewise.
12522 [POSIX || XPG3] (POLL_HUP): Likewise.
12523 [POSIX || XPG3 || POSIX2008] (TRAP_BRKPT): Likewise.
12524 [POSIX || XPG3 || POSIX2008] (TRAP_TRACE): Likewise.
12525 (SIG*): Do not allow.
12526 [XPG3] (si_*): Likewise.
12527 [XPG3] (SI_*): Likewise.
12528 [XPG3 || XPG4] (sigev_*): Likewise.
12529 [XPG3 || XPG4] (SIGEV_*): Likewise.
12530 [XPG3 || XPG4] (sival_*): Likewise.
12531 [POSIX || XPG3 || XPG4] (uc_*): Likewise.
12532 [POSIX || XPG3] (BUS_*): Likewise.
12533 [POSIX || XPG3] (CLD_*): Likewise.
12534 [POSIX || XPG3] (FPE_*): Likewise.
12535 [POSIX || XPG3] (ILL_*): Likewise.
12536 [POSIX || XPG3] (POLL_*): Likewise.
12537 [POSIX || XPG3] (SEGV_*): Likewise.
12538 [POSIX || XPG3 || POSIX2008] (SS_*): Likewise.
12539 [POSIX || XPG3 || POSIX2008] (SV_*): Likewise.
12540 [POSIX || XPG3 || POSIX2008] (TRAP_*): Likewise.
12541 [POSIX || XPG3 || POSIX2008] (ss_*): Likewise.
12542 [POSIX || XPG3 || POSIX2008] (sv_*): Likewise.
12543 * conform/data/tar.h-data (TMAGLEN): Use macro-int-constant.
12544 Specify type and value.
12545 (TVERSLEN): Likewise.
12546 (REGTYPE): Likewise.
12547 (AREGTYPE): Likewise.
12548 (LNKTYPE): Likewise.
12549 (SYMTYPE): Likewise.
12550 (CHRTYPE): Likewise.
12551 (BLKTYPE): Likewise.
12552 (DIRTYPE): Likewise.
12553 (FIFOTYPE): Likewise.
12554 (CONTTYPE): Likewise.
12555 (TSUID): Likewise.
12556 (TSGID): Likewise.
12557 (TSVTX): Likewise.
12558 (TUREAD): Likewise.
12559 (TUWRITE): Likewise.
12560 (TUEXEC): Likewise.
12561 (TGREAD): Likewise.
12562 (TGWRITE): Likewise.
12563 (TGEXEC): Likewise.
12564 (TOREAD): Likewise.
12565 (TOWRITE): Likewise.
12566 (TOEXEC): Likewise.
12567 [POSIX] (TSVTX): Expect constant.
12568
125692014-03-06 Joseph Myers <joseph@codesourcery.com>
12570
12571 * Makefile (tests): Change dependencies to ....
12572 (tests-special): ... additions to this variable.
12573 (tests): Depend on $(tests-special).
12574 * Makerules (check-abi-list): New variable.
12575 (check-abi): Depend on $(check-abi-list).
12576 [$(subdir) = elf] (tests-special): Add
12577 $(objpfx)check-abi-libc.out.
12578 [$(build-shared) = yes && subdir] (tests-special): Add
12579 $(check-abi-list).
12580 [$(build-shared) = yes && subdir] (tests): Do not depend on
12581 check-abi.
12582 * Rules (tests): Depend on $(tests-special).
12583 (xtests): Depend on $(xtests-special).
12584 * catgets/Makefile (tests): Change dependencies to ....
12585 (tests-special): ... additions to this variable.
12586 * conform/Makefile (tests): Change dependencies to ....
12587 (tests-special): ... additions to this variable.
12588 * elf/Makefile (tests): Change dependencies to ....
12589 (tests-special): ... additions to this variable.
12590 * grp/Makefile (tests): Change dependencies to ....
12591 (tests-special): ... additions to this variable.
12592 * iconv/Makefile (xtests): Change dependencies to ....
12593 (xtests-special): ... additions to this variable.
12594 * iconvdata/Makefile (tests): Change dependencies to ....
12595 (tests-special): ... additions to this variable.
12596 * intl/Makefile (tests): Change dependencies to ....
12597 (tests-special): ... additions to this variable. Also add
12598 $(objpfx)tst-gettext.out.
12599 * io/Makefile (tests): Change dependencies to ....
12600 (tests-special): ... additions to this variable.
12601 * libio/Makefile (tests): Change dependencies to ....
12602 (tests-special): ... additions to this variable.
12603 * malloc/Makefile (tests): Change dependencies to ....
12604 (tests-special): ... additions to this variable.
12605 * misc/Makefile (tests): Change dependencies to ....
12606 (tests-special): ... additions to this variable.
12607 * nptl/Makefile (tests): Change dependencies to ....
12608 (tests-special): ... additions to this variable.
12609 * nptl_db/Makefile (tests): Change dependencies to ....
12610 (tests-special): ... additions to this variable.
12611 * posix/Makefile (tests): Change dependencies to ....
12612 (tests-special): ... additions to this variable.
12613 (xtests): Change dependencies to ....
12614 (xtests-special): ... additions to this variable.
12615 * resolv/Makefile (tests): Change dependencies to ....
12616 (tests-special): ... additions to this variable.
12617 (xtests): Change dependencies to ....
12618 (xtests-special): ... additions to this variable.
12619 * stdio-common/Makefile (tests): Change dependencies to ....
12620 (tests-special): ... additions to this variable.
12621 (do-tst-unbputc): Remove target.
12622 (do-tst-printf): Likewise.
12623 * stdlib/Makefile (tests): Change dependencies to ....
12624 (tests-special): ... additions to this variable.
12625 * string/Makefile (tests): Change dependencies to ....
12626 (tests-special): ... additions to this variable.
12627 * sysdeps/x86/Makefile (tests): Change dependencies to ....
12628 (tests-special): ... additions to this variable.
12629
12630 * conform/data/netinet/tcp.h-data [POSIX2008 || XOPEN2K8]: Enable
12631 whole file.
12632 * conform/data/sys/timeb.h-data [POSIX2008 || XOPEN2K8]: Disable
12633 whole file.
12634 * conform/data/sys/uio.h-data [POSIX2008]: Likewise.
12635 * conform/data/ucontext.h-data [POSIX2008 || XOPEN2K8]: Likewise.
12636
12637 * conform/data/aio.h-data [XPG3 || XPG4]: Disable whole file.
12638 * conform/data/arpa/inet.h-data [XPG3]: Likewise.
12639 * conform/data/dlfcn.h-data [XPG3 || XPG4]: Likewise.
12640 * conform/data/fmtmsg.h-data [XPG3]: Likewise.
12641 * conform/data/libgen.h-data [XPG3]: Likewise.
12642 * conform/data/mqueue.h-data [XPG3 || XPG4]: Likewise.
12643 * conform/data/ndbm.h-data [XPG3]: Likewise.
12644 * conform/data/net/if.h-data [XPG3 || XPG4 || UNIX98]: Likewise.
12645 * conform/data/netdb.h-data [XPG3]: Likewise.
12646 * conform/data/netinet/in.h-data [XPG3]: Likewise.
12647 * conform/data/poll.h-data [XPG3]: Likewise.
12648 * conform/data/spawn.h-data [XPG3 || XPG4 || UNIX98]: Likewise.
12649 * conform/data/strings.h-data [XPG3]: Likewise.
12650 * conform/data/stropts.h-data [XPG3]: Likewise.
12651 * conform/data/sys/mman.h-data [XPG3]: Likewise.
12652 * conform/data/sys/resource.h-data [XPG3]: Likewise.
12653 * conform/data/sys/select.h-data [XPG3 || XPG4 || UNIX98]:
12654 Likewise.
12655 * conform/data/sys/statvfs.h-data [XPG3]: Likewise.
12656 * conform/data/sys/time.h-data [XPG3]: Likewise.
12657 * conform/data/sys/timeb.h-data [XPG3]: Likewise.
12658 * conform/data/sys/uio.h-data [XPG3]: Likewise.
12659 * conform/data/sys/un.h-data [XPG3]: Likewise.
12660 * conform/data/syslog.h-data [XPG3]: Likewise.
12661 * conform/data/ucontext.h-data [XPG3]: Likewise.
12662 * conform/data/utmpx.h-data [XPG3]: Likewise.
12663 * conform/data/varargs.h-data [UNIX98]: Enable file.
12664
12665 * manual/Makefile (INSTALL_INFO): Remove variable setting.
12666
12667 * math/libm-test.inc (struct test_f_f_data): Move expected results
12668 into structure for each rounding mode.
12669 (struct test_ff_f_data): Likewise.
12670 (struct test_ff_f_data_nexttoward): Likewise.
12671 (struct test_fi_f_data): Likewise.
12672 (struct test_fl_f_data): Likewise.
12673 (struct test_if_f_data): Likewise.
12674 (struct test_fff_f_data): Likewise.
12675 (struct test_c_f_data): Likewise.
12676 (struct test_f_f1_data): Likewise.
12677 (struct test_fF_f1_data): Likewise.
12678 (struct test_ffI_f1_data): Likewise.
12679 (struct test_c_c_data): Likewise.
12680 (struct test_cc_c_data): Likewise.
12681 (struct test_f_i_data): Likewise.
12682 (struct test_ff_i_data): Likewise.
12683 (struct test_f_l_data): Likewise.
12684 (struct test_f_L_data): Likewise.
12685 (struct test_fFF_11_data): Likewise.
12686 (RM_): New macro.
12687 (RM_FE_DOWNWARD): Likewise.
12688 (RM_FE_TONEAREST): Likewise.
12689 (RM_FE_TOWARDZERO): Likewise.
12690 (RM_FE_UPWARD): Likewise.
12691 (RUN_TEST_LOOP_f_f): Update references to expected results.
12692 (RUN_TEST_LOOP_2_f): Likewise.
12693 (RUN_TEST_LOOP_fff_f): Likewise.
12694 (RUN_TEST_LOOP_c_f): Likewise.
12695 (RUN_TEST_LOOP_f_f1): Likewise.
12696 (RUN_TEST_LOOP_fF_f1): Likewise.
12697 (RUN_TEST_LOOP_fI_f1): Likewise.
12698 (RUN_TEST_LOOP_ffI_f1): Likewise.
12699 (RUN_TEST_LOOP_c_c): Likewise.
12700 (RUN_TEST_LOOP_cc_c): Likewise.
12701 (RUN_TEST_LOOP_f_i): Likewise.
12702 (RUN_TEST_LOOP_f_i_tg): Likewise.
12703 (RUN_TEST_LOOP_ff_i_tg): Likewise.
12704 (RUN_TEST_LOOP_f_b): Likewise.
12705 (RUN_TEST_LOOP_f_b_tg): Likewise.
12706 (RUN_TEST_LOOP_f_l): Likewise.
12707 (RUN_TEST_LOOP_f_L): Likewise.
12708 (RUN_TEST_LOOP_fFF_11): Likewise.
12709 * math/gen-libm-test.pl (parse_args): Output four copies of
12710 expected results for each test.
12711
12712 * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
12713 (__ASSUME_UTIMES): Remove.
12714 * sysdeps/unix/sysv/linux/tile/kernel-features.h
12715 (__ASSUME_UTIMES): Likewise.
12716
12717 * math/gen-auto-libm-tests.c: Update comment on output format.
12718 (output_for_one_input_case): Generate before-rounding and
12719 after-rounding information as conditions on output flags not
12720 floating-point format.
12721 * math/auto-libm-test-out: Regenerated.
12722 * math/gen-libm-test.pl (cond_value): New function.
12723 (or_cond_value): Use cond_value.
12724 (generate_testfile): Handle conditional exceptions.
12725
127262014-03-05 Joseph Myers <joseph@codesourcery.com>
12727
12728 * math/libm-test.inc (max_valid_error): New variable.
12729 (init_max_error): Take new argument specifying whether function
12730 results are exactly determined. Set max_valid_error and bound
12731 other variables for errors based on this argument.
12732 (set_max_error): Do not record results above max_valid_error.
12733 (check_float_internal): Only accept errors of up to 0.5ulps if
12734 also at most max_valid_error.
12735 (START): Take new argument EXACT and pass it to init_max_error.
12736 (acos_test): Update call to START.
12737 (acos_test_tonearest): Likewise.
12738 (acos_test_towardzero): Likewise.
12739 (acos_test_downward): Likewise.
12740 (acos_test_upward): Likewise.
12741 (acosh_test): Likewise.
12742 (asin_test): Likewise.
12743 (asin_test_tonearest): Likewise.
12744 (asin_test_towardzero): Likewise.
12745 (asin_test_downward): Likewise.
12746 (asin_test_upward): Likewise.
12747 (asinh_test): Likewise.
12748 (atan_test): Likewise.
12749 (atanh_test): Likewise.
12750 (atan2_test): Likewise.
12751 (cabs_test): Likewise.
12752 (cacos_test): Likewise.
12753 (cacosh_test): Likewise.
12754 (carg_test): Likewise.
12755 (casin_test): Likewise.
12756 (casinh_test): Likewise.
12757 (catan_test): Likewise.
12758 (catanh_test): Likewise.
12759 (cbrt_test): Likewise.
12760 (ccos_test): Likewise.
12761 (ccosh_test): Likewise.
12762 (ceil_test): Likewise.
12763 (cexp_test): Likewise.
12764 (cimag_test): Likewise.
12765 (clog_test): Likewise.
12766 (clog10_test): Likewise.
12767 (conj_test): Likewise.
12768 (copysign_test): Likewise.
12769 (cos_test): Likewise.
12770 (cos_test_tonearest): Likewise.
12771 (cos_test_towardzero): Likewise.
12772 (cos_test_downward): Likewise.
12773 (cos_test_upward): Likewise.
12774 (cosh_test): Likewise.
12775 (cosh_test_tonearest): Likewise.
12776 (cosh_test_towardzero): Likewise.
12777 (cosh_test_downward): Likewise.
12778 (cosh_test_upward): Likewise.
12779 (cpow_test): Likewise.
12780 (cproj_test): Likewise.
12781 (creal_test): Likewise.
12782 (csin_test): Likewise.
12783 (csinh_test): Likewise.
12784 (csqrt_test): Likewise.
12785 (ctan_test): Likewise.
12786 (ctan_test_tonearest): Likewise.
12787 (ctan_test_towardzero): Likewise.
12788 (ctan_test_downward): Likewise.
12789 (ctan_test_upward): Likewise.
12790 (ctanh_test): Likewise.
12791 (ctanh_test_tonearest): Likewise.
12792 (ctanh_test_towardzero): Likewise.
12793 (ctanh_test_downward): Likewise.
12794 (ctanh_test_upward): Likewise.
12795 (erf_test): Likewise.
12796 (erfc_test): Likewise.
12797 (exp_test): Likewise.
12798 (exp_test_tonearest): Likewise.
12799 (exp_test_towardzero): Likewise.
12800 (exp_test_downward): Likewise.
12801 (exp_test_upward): Likewise.
12802 (exp10_test): Likewise.
12803 (exp10_test_tonearest): Likewise.
12804 (exp10_test_towardzero): Likewise.
12805 (exp10_test_downward): Likewise.
12806 (exp10_test_upward): Likewise.
12807 (pow10_test): Likewise.
12808 (exp2_test): Likewise.
12809 (expm1_test): Likewise.
12810 (expm1_test_tonearest): Likewise.
12811 (expm1_test_towardzero): Likewise.
12812 (expm1_test_downward): Likewise.
12813 (expm1_test_upward): Likewise.
12814 (fabs_test): Likewise.
12815 (fdim_test): Likewise.
12816 (floor_test): Likewise.
12817 (fma_test): Likewise.
12818 (fma_test_towardzero): Likewise.
12819 (fma_test_downward): Likewise.
12820 (fma_test_upward): Likewise.
12821 (fmax_test): Likewise.
12822 (fmin_test): Likewise.
12823 (fmod_test): Likewise.
12824 (fpclassify_test): Likewise.
12825 (frexp_test): Likewise.
12826 (hypot_test): Likewise.
12827 (ilogb_test): Likewise.
12828 (isfinite_test): Likewise.
12829 (finite_test): Likewise.
12830 (isgreater_test): Likewise.
12831 (isgreaterequal_test): Likewise.
12832 (isinf_test): Likewise.
12833 (isless_test): Likewise.
12834 (islessequal_test): Likewise.
12835 (islessgreater_test): Likewise.
12836 (isnan_test): Likewise.
12837 (isnormal_test): Likewise.
12838 (issignaling_test): Likewise.
12839 (isunordered_test): Likewise.
12840 (j0_test): Likewise.
12841 (j1_test): Likewise.
12842 (jn_test): Likewise.
12843 (ldexp_test): Likewise.
12844 (lgamma_test): Likewise.
12845 (gamma_test): Likewise.
12846 (lrint_test): Likewise.
12847 (lrint_test_tonearest): Likewise.
12848 (lrint_test_towardzero): Likewise.
12849 (lrint_test_downward): Likewise.
12850 (lrint_test_upward): Likewise.
12851 (llrint_test): Likewise.
12852 (llrint_test_tonearest): Likewise.
12853 (llrint_test_towardzero): Likewise.
12854 (llrint_test_downward): Likewise.
12855 (llrint_test_upward): Likewise.
12856 (log_test): Likewise.
12857 (log10_test): Likewise.
12858 (log1p_test): Likewise.
12859 (log2_test): Likewise.
12860 (logb_test): Likewise.
12861 (logb_test_downward): Likewise.
12862 (lround_test): Likewise.
12863 (llround_test): Likewise.
12864 (modf_test): Likewise.
12865 (nearbyint_test): Likewise.
12866 (nextafter_test): Likewise.
12867 (nexttoward_test): Likewise.
12868 (pow_test): Likewise.
12869 (pow_test_tonearest): Likewise.
12870 (pow_test_towardzero): Likewise.
12871 (pow_test_downward): Likewise.
12872 (pow_test_upward): Likewise.
12873 (remainder_test): Likewise.
12874 (drem_test): Likewise.
12875 (remainder_test_tonearest): Likewise.
12876 (drem_test_tonearest): Likewise.
12877 (remainder_test_towardzero): Likewise.
12878 (drem_test_towardzero): Likewise.
12879 (remainder_test_downward): Likewise.
12880 (drem_test_downward): Likewise.
12881 (remainder_test_upward): Likewise.
12882 (drem_test_upward): Likewise.
12883 (remquo_test): Likewise.
12884 (rint_test): Likewise.
12885 (rint_test_tonearest): Likewise.
12886 (rint_test_towardzero): Likewise.
12887 (rint_test_downward): Likewise.
12888 (rint_test_upward): Likewise.
12889 (round_test): Likewise.
12890 (scalb_test): Likewise.
12891 (scalbn_test): Likewise.
12892 (scalbln_test): Likewise.
12893 (signbit_test): Likewise.
12894 (sin_test): Likewise.
12895 (sin_test_tonearest): Likewise.
12896 (sin_test_towardzero): Likewise.
12897 (sin_test_downward): Likewise.
12898 (sin_test_upward): Likewise.
12899 (sincos_test): Likewise.
12900 (sinh_test): Likewise.
12901 (sinh_test_tonearest): Likewise.
12902 (sinh_test_towardzero): Likewise.
12903 (sinh_test_downward): Likewise.
12904 (sinh_test_upward): Likewise.
12905 (sqrt_test): Likewise.
12906 (sqrt_test_tonearest): Likewise.
12907 (sqrt_test_towardzero): Likewise.
12908 (sqrt_test_downward): Likewise.
12909 (sqrt_test_upward): Likewise.
12910 (tan_test): Likewise.
12911 (tan_test_tonearest): Likewise.
12912 (tan_test_towardzero): Likewise.
12913 (tan_test_downward): Likewise.
12914 (tan_test_upward): Likewise.
12915 (tanh_test): Likewise.
12916 (tgamma_test): Likewise.
12917 (trunc_test): Likewise.
12918 (y0_test): Likewise.
12919 (y1_test): Likewise.
12920 (yn_test): Likewise.
12921 (significand_test): Likewise.
12922
12923 * math/libm-test.inc (struct ulp_data): Don't refer to ulps for
12924 individual tests in comment.
12925 (libm-test-ulps.h): Don't refer to test_ulps in #include comment.
12926 (prev_max_error): New variable.
12927 (prev_real_max_error): Likewise.
12928 (prev_imag_max_error): Likewise.
12929 (compare_ulp_data): Don't refer to test names in comment.
12930 (find_test_ulps): Remove function.
12931 (find_function_ulps): Likewise.
12932 (find_complex_function_ulps): Likewise.
12933 (init_max_error): Take function name as argument. Look up ulps
12934 for that function.
12935 (print_ulps): Remove function.
12936 (print_max_error): Use prev_max_error instead of calling
12937 find_function_ulps.
12938 (print_complex_max_error): Use prev_real_max_error and
12939 prev_imag_max_error instead of calling find_complex_function_ulps.
12940 (check_float_internal): Take max_ulp parameter instead of calling
12941 find_test_ulps. Don't call print_ulps.
12942 (check_float): Update call to check_float_internal.
12943 (check_complex): Update calls to check_float_internal.
12944 (START): Pass argument to init_max_error.
12945 * math/gen-libm-test.pl (%results): Don't include "kind"
12946 information.
12947 (parse_ulps): Don't handle ulps of individual tests.
12948 (print_ulps_file): Likewise.
12949 (output_ulps): Likewise.
12950 * math/README.libm-test: Update.
12951 * manual/libm-err-tab.pl (parse_ulps): Don't handle ulps of
12952 individual tests.
12953 * sysdeps/aarch64/libm-test-ulps: Remove individual test ulps.
12954 * sysdeps/alpha/fpu/libm-test-ulps: Likewise.
12955 * sysdeps/arm/libm-test-ulps: Likewise.
12956 * sysdeps/i386/fpu/libm-test-ulps: Likewise.
12957 * sysdeps/ia64/fpu/libm-test-ulps: Likewise.
12958 * sysdeps/m68k/coldfire/fpu/libm-test-ulps: Likewise.
12959 * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Likewise.
12960 * sysdeps/microblaze/libm-test-ulps: Likewise.
12961 * sysdeps/mips/mips32/libm-test-ulps: Likewise.
12962 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
12963 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
12964 * sysdeps/powerpc/nofpu/libm-test-ulps: Likewise.
12965 * sysdeps/s390/fpu/libm-test-ulps: Likewise.
12966 * sysdeps/sh/libm-test-ulps: Likewise.
12967 * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
12968 * sysdeps/tile/libm-test-ulps: Likewise.
12969 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
12970
129712014-03-04 Joseph Myers <joseph@codesourcery.com>
12972
12973 * math/libm-test.inc (print_complex_max_error): Check separately
12974 whether real and imaginary errors are within allowed range and
12975 pass 0 to print_complex_function_ulps instead of value within
12976 allowed range.
12977
129782014-03-04 Siddhesh Poyarekar <siddhesh@redhat.com>
12979
12980 * libio/tst-ftell-active-handler.c (get_handles_fdopen): Fix
12981 formatting.
12982 (get_handles_fopen): Likewise.
12983 (do_write_test): Likewise.
12984
12985 * libio/wfileops.c (do_ftell_wide): Fix up formatting.
12986
12987 * libio/fileops.c (do_ftell): Use cached offset when
12988 available.
12989 * libio/iofwide.c (do_ftell_wide): Likewise.
12990 * libio/iofdopen.c (_IO_new_fdopen): Don't use
12991 _IO_file_attach.
12992 * libio/wfileops.c (_IO_fwide): Don't cache offset.
12993
12994 [BZ #16532]
12995 * libio/libioP.h (get_file_offset): New function.
12996 * libio/fileops.c (get_file_offset): Likewise.
12997 (do_ftell): Likewise.
12998 (_IO_new_file_seekoff): Split out ftell logic.
12999 * libio/wfileops.c (do_ftell_wide): Likewise.
13000 (_IO_wfile_seekoff): Split out ftell logic.
13001 * libio/tst-ftell-active-handler.c: New test case.
13002 * libio/Makefile (tests): Add it.
13003
130042014-03-03 Roland McGrath <roland@hack.frob.com>
13005
13006 * nptl/ChangeLog: Renamed to nptl/ChangeLog.old, no longer used.
13007 * nptl_db/ChangeLog: Renamed to nptl_db/ChangeLog.old, no longer used.
13008
130092014-03-03 Siddhesh Poyarekar <siddhesh@redhat.com>
13010
13011 [BZ #16639]
13012 * nscd/connections.c (nscd_init): Call do_exit.
13013 (start_threads): Call do_exit and notify_parent.
13014 (begin_drop_privileges): Call do_exit.
13015 (finish_drop_privileges): Likewise.
13016 * nscd/selinux.c (preserve_capabilities): Likewise.
13017 (install_real_capabilities): Likewise.
13018 (nscd_selinux_enabled): Likewise.
13019 (avc_create_thread): Likewise.
13020 (avc_alloc_lock): Likewise.
13021 (nscd_avc_init): Likewise.
13022 * nscd/nscd.c (parent_fd): New static variable.
13023 (main): Create a pipe between parent and child processes.
13024 Skip closing parent_fd.
13025 (monitor_child): New function.
13026 (do_exit): Likewise.
13027 (notify_parent): Likewise.
13028 * nscd/nscd.h (notify_parent): Likewise.
13029 (do_exit): Likewise.
13030
130312014-03-03 Carlos O'Donell <carlos@redhat.com>
13032
13033 * malloc/malloc.c (__libc_calloc): Revert last change.
13034
130352014-03-03 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
13036
13037 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
13038
130392014-03-03 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
13040
13041 * sysdeps/powerpc/powerpc64/power7/strrchr.S: New file.
13042 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strrchr multiarch
13043 implementation.
13044 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
13045 (__libc_ifunc_impl_list): Likewise.
13046 * sysdeps/powerpc/powerpc64/multiarch/strrchr.c: New file.
13047 * sysdeps/powerpc/powerpc64/multiarch/strrchr-ppc64.c: New file.
13048 * sysdeps/powerpc/powerpc64/multiarch/strrchr-power7.S: New file.
13049 * string/strrchr.c: Define STRRCHR.
13050
130512014-02-28 Ondřej Bílka <neleai@seznam.cz>
13052
13053 * benchtest/bench-strtok.c (simple_strtok): Delete.
13054 (strtok_string): Use as benchmark.
13055 * string/strtok (STRTOK): New macro.
13056
130572014-02-28 Carlos O'Donell <carlos@redhat.com>
13058
13059 * manual/threads.texi: Add header and standard comments to all
13060 functions.
13061
13062 * elf/dl-lookup.c (check_match): New function.
13063 (ELF_MACHINE_SYM_NO_MATCH): Adjust comment.
13064 (do_lookup_x): Remove nested function check_match. Use non-nested
13065 function check_match.
13066
130672014-02-28 Roland McGrath <roland@hack.frob.com>
13068
13069 * csu/Makefile (generated, before-compile): Use += rather than =.
13070 * catgets/Makefile (generated, generated-dirs): Likewise.
13071 * debug/Makefile (generated): Likewise.
13072 * dlfcn/Makefile (generated): Likewise.
13073 * elf/Makefile (before-compile, generated, generated-dirs): Likewise.
13074 * iconvdata/Makefile (before-compile, generated): Likewise.
13075 * intl/Makefile (before-compile, generated, generated-dirs): Likewise.
13076 * libio/Makefile (generated): Likewise.
13077 * malloc/Makefile (generated): Likewise.
13078 * manual/Makefile (generated, generated-dirs): Likewise.
13079 * misc/Makefile (generated): Likewise.
13080 * posix/Makefile (generated): Likewise.
13081 * resolv/Makefile (generated): Likewise.
13082 * sunrpc/Makefile (generated, generated-dirs): Likewise.
13083 * timezone/Makefile (generated, generated-dirs): Likewise.
13084
13085 * stdio-common/Versions (libc: GLIBC_PRIVATE): Add missing }.
13086
130872014-02-27 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
13088
13089 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llround
13090 power8 implementation.
13091 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power8.S: New
13092 file: POWER8 llround ifunc implementation.
13093 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c
13094 (__lllround): Add POWER8 implementation.
13095 * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S: New file:
13096 POWER8 llround implementation.
13097
13098 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llrint
13099 power8 implementation.
13100 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power8.S: New
13101 file: POWER8 llrint ifunc implementation.
13102 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c (__lllrint):
13103 Add POWER8 implementation.
13104 * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S: New file:
13105 POWER8 llrint implementation.
13106
13107 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add finite
13108 power8 implementation.
13109 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power8.S: New
13110 file: POWER8 finite ifunc implementation.
13111 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c (__finite):
13112 Add POWER8 implementation.
13113 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c (__finitef):
13114 Likewise.
13115 * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S: New file:
13116 POWER8 finite implementation.
13117 * sysdeps/powerpc/powerpc64/power8/fpu/s_finitef.S: New file.
13118
13119 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isinf
13120 power8 implementation.
13121 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power8.S: New
13122 file: POWER8 isinf ifunc implementation.
13123 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c (__isinf): Add
13124 POWER8 implementation.
13125 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c (__isinff):
13126 Likewise.
13127 * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S: New file: POWER8
13128 isinf implementation.
13129 * sysdeps/powerpc/powerpc64/power8/fpu/s_isinff.S: New file.
13130
13131 * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h
13132 (INIT_ARCH): Add hwcap2 initialization.
13133 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isnan
13134 power8 implementation.
13135 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power8.S: New
13136 file: POWER8 isnan ifunc implementation.
13137 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c (__isnan): Add
13138 POWER8 implementation.
13139 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c (__isnanf):
13140 Likewise.
13141 * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S: New file: POWER8
13142 isnan implementation.
13143 * sysdeps/powerpc/powerpc64/power8/fpu/s_isnanf.S: New file.
13144
131452014-02-27 Joey Ye <joey.ye@arm.com>
13146
13147 * sysdeps/arm/soft-fp/sfp-machine.h (_FP_NANFRAC_S, _FP_NANFRAC_D)
13148 (_FP_NANFRAC_Q): Set to zero.
13149
131502014-02-27 Siddhesh Poyarekar <siddhesh@redhat.com>
13151
13152 [BZ #16623]
13153 * math/auto-libm-test-in: New test inputs.
13154 * math/auto-libm-test-out: Regenerate.
13155 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Preserve sign of A
13156 and DA.
13157 (__cos): Likewise.
13158 * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate.
13159
131602014-02-27 Joseph Myers <joseph@codesourcery.com>
13161
13162 * scripts/evaluate-test.sh: Take new argument indicating whether
13163 failure is expected.
13164 * Makeconfig (evaluate-test): Pass argument to evaluate-test.sh
13165 indicating whether failure is expected.
13166 * conform/Makefile (test-xfail-run-conformtest): New variable.
13167 ($(objpfx)run-conformtest.out): Don't expect to fail at makefile
13168 level.
13169 * posix/Makefile (test-xfail-annexc): New variable.
13170 ($(objpfx)annexc.out): Don't expect to fail at makefile level.
13171
131722014-02-26 Joseph Myers <joseph@codesourcery.com>
13173
13174 * argp/Makefile: Include Makeconfig immediately after defining
13175 subdir.
13176 * assert/Makefile: Likewise.
13177 * benchtests/Makefile: Likewise.
13178 * catgets/Makefile: Likewise.
13179 * conform/Makefile: Likewise.
13180 * crypt/Makefile: Likewise.
13181 * csu/Makefile: Likewise.
13182 (all): Remove target.
13183 * ctype/Makefile: Include Makeconfig immediately after defining
13184 subdir.
13185 * debug/Makefile: Likewise.
13186 * dirent/Makefile: Likewise.
13187 * dlfcn/Makefile: Likewise.
13188 * gmon/Makefile: Likewise.
13189 * gnulib/Makefile: Likewise.
13190 * grp/Makefile: Likewise.
13191 * gshadow/Makefile: Likewise.
13192 * hesiod/Makefile: Likewise.
13193 * hurd/Makefile: Likewise.
13194 (all): Remove target.
13195 * iconvdata/Makefile: Include Makeconfig immediately after
13196 defining subdir.
13197 * inet/Makefile: Likewise.
13198 * intl/Makefile: Likewise.
13199 * io/Makefile: Likewise.
13200 * libio/Makefile: Likewise.
13201 (all): Remove target.
13202 * locale/Makefile: Include Makeconfig immediately after defining
13203 subdir.
13204 * login/Makefile: Likewise.
13205 * mach/Makefile: Likewise.
13206 (all): Remove target.
13207 * malloc/Makefile: Include Makeconfig immediately after defining
13208 subdir.
13209 (all): Remove target.
13210 * manual/Makefile: Include Makeconfig immediately after defining
13211 subdir.
13212 * math/Makefile: Likewise.
13213 * misc/Makefile: Likewise.
13214 * nis/Makefile: Likewise.
13215 * nss/Makefile: Likewise.
13216 * po/Makefile: Likewise.
13217 (all): Remove target.
13218 * posix/Makefile: Include Makeconfig immediately after defining
13219 subdir.
13220 * pwd/Makefile: Likewise.
13221 * resolv/Makefile: Likewise.
13222 * resource/Makefile: Likewise.
13223 * rt/Makefile: Likewise.
13224 * setjmp/Makefile: Likewise.
13225 * shadow/Makefile: Likewise.
13226 * signal/Makefile: Likewise.
13227 * socket/Makefile: Likewise.
13228 * soft-fp/Makefile: Likewise.
13229 * stdio-common/Makefile: Likewise.
13230 * stdlib/Makefile: Likewise.
13231 * streams/Makefile: Likewise.
13232 * string/Makefile: Likewise.
13233 * sunrpc/Makefile: Likewise.
13234 (all): Remove target.
13235 * sysvipc/Makefile: Include Makeconfig immediately after defining
13236 subdir.
13237 * termios/Makefile: Likewise.
13238 * time/Makefile: Likewise.
13239 * timezone/Makefile: Likewise.
13240 (all): Remove target.
13241 * wcsmbs/Makefile: Include Makeconfig immediately after defining
13242 subdir.
13243 * wctype/Makefile: Likewise.
13244
132452014-02-26 Steve Ellcey <sellcey@mips.com>
13246
13247 * sysdeps/mips/math_private.h (_FPU_MASK_ALL) New.
13248 (libc_feholdexcept_mips): Use _FPU_MASK_ALL.
13249 (libc_feholdexcept_setround_mips): Ditto.
13250 (libc_feholdsetround): New.
13251 (libc_feholdsetroundf): New.
13252 (libc_feholdsetroundl): New.
13253 (libc_feupdateenv_test_mips): New.
13254 (libc_feupdateenv_test): New.
13255 (libc_feupdateenv_testf): New.
13256 (libc_feupdateenv_testl): New.
13257 (libc_feresetround): New.
13258 (libc_feresetroundf): New.
13259 (libc_feresetroundl): New.
13260 (libc_fetestexcept_mips): New.
13261 (libc_fetestexcept): New.
13262 (libc_fetestexceptf): New.
13263 (libc_fetestexceptl): New.
13264 (HAVE_RM_CTX): New.
13265 (libc_feholdexcept_setround_mips_ctx): New.
13266 (libc_feholdexcept_setround_ctx): New.
13267 (libc_feholdexcept_setroundf_ctx): New.
13268 (libc_feholdexcept_setroundl_ctx): New.
13269 (libc_fesetenv_mips_ctx): New.
13270 (libc_fesetenv_ctx): New.
13271 (libc_fesetenv_ctxf): New.
13272 (libc_fesetenv_ctxl): New.
13273 (libc_feupdateenv_mips_ctx): New.
13274 (libc_feupdateenv_ctx): New.
13275 (libc_feupdateenvf_ctx): New.
13276 (libc_feupdateenvl_ctx): New.
13277 (libc_feholdsetround_mips_ctx): New.
13278 (libc_feholdsetround_ctx): New.
13279 (libc_feholdsetroundf_ctx): New.
13280 (libc_feholdsetroundl_ctx): New.
13281 (libc_feresetround_mips_ctx): New.
13282 (libc_feresetround_ctx): New.
13283 (libc_feresetroundf_ctx): New.
13284 (libc_feresetroundl_ctx): New.
13285
132862014-02-26 Carlos O'Donell <carlos@redhat.com>
13287
13288 * manual/ipc.texi (Semaphores): Use @Theglibc{}.
13289
13290 * manual/ipc.texi: New file.
13291 * manual/Makefile (chapters): Add ipc.
13292 * manual/job.texi: Add "Inter-Process Communication" to next.
13293 * manual/process.texi: Add "Inter-Process Communication" to prev.
13294
132952014-02-26 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
13296
13297 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
13298
132992014-02-26 Ondřej Bílka <neleai@seznam.cz>
13300
13301 * malloc/malloc.c (__libc_calloc): Simplify implementation.
13302
13303 * manual/arith.texi: Fix spaces after sentences.
13304 * manual/charset.texi: Likewise.
13305 * manual/errno.texi: Likewise.
13306 * manual/install.texi: Likewise.
13307 * manual/llio.texi: Likewise.
13308 * manual/locale.texi: Likewise.
13309 * manual/maint.texi: Likewise.
13310 * manual/math.texi: Likewise.
13311 * manual/memory.texi: Likewise.
13312 * manual/message.texi: Likewise.
13313 * manual/probes.texi: Likewise.
13314 * manual/resource.texi: Likewise.
13315 * manual/signal.texi: Likewise.
13316 * manual/socket.texi: Likewise.
13317 * manual/stdio.texi: Likewise.
13318 * manual/string.texi: Likewise.
13319 * manual/time.texi: Likewise.
13320 * manual/users.texi: Likewise.
13321
133222014-02-25 Carlos O'Donell <carlos@redhat.com>
13323
13324 [BZ #16632]
13325 * include/features.h: Don't warn about _BSD_SOURCE or _SVID_SOURCE if
13326 _DEFAULT_SOURCE is defined.
13327
133282014-02-25 Ulrich Drepper <drepper@gmail.com>
13329 Carlos O'Donell <carlos@redhat.com>
13330
13331 [BZ #16613]
13332 * elf/dl-tls.c (_dl_count_modids): New function.
13333 * sysdeps/generic/ldsodefs.h: Declare _dl_count_modids.
13334 * elf/rtld.c (dl_main): Call _dl_count_modids to track TLS usage in
13335 audit library and increment generation counter.
13336 (_dl_allocate_tls_init): Add assertion to check TLS generation count.
13337 * elf/tst-audit9.c: New file.
13338 * elf/tst-auditmod9a.c: New file.
13339 * elf/tst-auditmod9b.c: New file.
13340 * elf/Makefile: Add rules to build and run tst-audit9.
13341
133422014-02-25 Florian Weimer <fweimer@redhat.com>
13343
13344 [BZ #15347]
13345 * misc/sys/select.h (__FD_MASK): Avoid signed integer overflow.
13346
133472014-02-25 Will Newton <will.newton@linaro.org>
13348
13349 * sysdeps/arm/__longjmp.S: Include stap-probe.h.
13350 (__longjmp): Restore sp and lr before restoring callee
13351 saved registers. Add longjmp and longjmp_target
13352 SystemTap probe point.
13353 * sysdeps/arm/bits/setjmp.h (__jmp_buf): Update comment.
13354 * sysdeps/arm/include/bits/setjmp.h (__JMP_BUF_SP):
13355 Define to zero to match jmpbuf layout.
13356 * sysdeps/arm/setjmp.S: Include stap-probe.h.
13357 (__sigsetjmp): Save sp and lr before saving callee
13358 saved registers. Add setjmp SystemTap probe point.
13359
133602014-02-24 Stefan Liebler <stli@linux.vnet.ibm.com>
13361
13362 * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
13363
133642014-02-24 Andreas Schwab <schwab@suse.de>
13365
13366 [BZ #15804]
13367 * elf/pldd.c (wait_for_ptrace_stop): New function.
13368 (main): Call it after attaching.
13369
133702014-02-22 Roland McGrath <roland@hack.frob.com>
13371
13372 * Makerules ($(common-objpfx)Versions.v.i): No longer depend
13373 on $(common-objpfx)abi-versions.h; using <shlib-compat.h> inside
13374 Versions files is now verboten.
13375 * hurd/Versions (libc: GLIBC_2.0):
13376 Remove various [SHLIB_COMPAT (libc, GLIBC_2_0, ...)] sections.
13377 (libc: HURD_CTHREADS_0.3): Remove conditionalization, was under
13378 [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)].
13379 * mach/Versions: Likewise.
13380
13381 * csu/Versions: Remove unused %include.
13382 * resolv/Versions: Likewise.
13383
133842014-02-21 Joseph Myers <joseph@codesourcery.com>
13385
13386 * Makefile ($(objpfx)c++-types-check.out): Use $(evaluate-test).
13387 ($(objpfx)check-local-headers.out): Likewise.
13388 ($(objpfx)begin-end-check.out): Likewise.
13389 * Makerules (check-abi-%.out): Likewise.
13390 * catgets/Makefile ($(objpfx)test1.cat): Likewise.
13391 ($(objpfx)test2.cat): Likewise.
13392 ($(objpfx)de/libc.cat): Likewise.
13393 ($(objpfx)test-gencat.out): Likewise.
13394 * conform/Makefile ($(objpfx)run-conformtest.out): Likewise.
13395 * elf/Makefile ($(objpfx)order-cmp.out): Likewise.
13396 ($(objpfx)noload-mem): Likewise.
13397 ($(objpfx)tst-pathopt.out): Likewise.
13398 ($(objpfx)tst-rtld-load-self.out): Likewise.
13399 ($(objpfx)tst-array1-cmp.out): Likewise.
13400 ($(objpfx)tst-array1-static-cmp.out): Likewise.
13401 ($(objpfx)tst-array2-cmp.out): Likewise.
13402 ($(objpfx)tst-array3-cmp.out): Likewise.
13403 ($(objpfx)tst-array4-cmp.out): Likewise.
13404 ($(objpfx)tst-array5-cmp.out): Likewise.
13405 ($(objpfx)tst-array5-static-cmp.out): Likewise.
13406 ($(objpfx)check-textrel.out): Likewise.
13407 ($(objpfx)check-execstack.out): Likewise.
13408 ($(objpfx)check-localplt.out): Likewise.
13409 ($(objpfx)order2-cmp.out): Likewise.
13410 ($(objpfx)tst-leaks1-mem): Likewise.
13411 ($(objpfx)tst-leaks1-static-mem): Likewise.
13412 ($(objpfx)tst-initorder-cmp.out): Likewise.
13413 ($(objpfx)tst-initorder2-cmp.out): Likewise.
13414 ($(objpfx)tst-unused-dep.out): Likewise.
13415 ($(objpfx)tst-unused-dep-cmp.out): Likewise.
13416 * grp/Makefile ($(objpfx)tst_fgetgrent.out): Likewise.
13417 * iconv/Makefile (test-iconvconfig): Likewise.
13418 * iconvdata/Makefile ($(objpfx)mtrace-tst-loading): Likewise.
13419 ($(objpfx)iconv-test.out): Likewise.
13420 ($(objpfx)tst-tables.out): Likewise.
13421 * intl/Makefile ($(objpfx)mtrace-tst-gettext): Likewise.
13422 ($(objpfx)tst-gettext.out): Likewise.
13423 ($(objpfx)tst-translit.out): Likewise.
13424 ($(objpfx)tst-gettext2.out): Likewise.
13425 ($(objpfx)tst-gettext4.out): Likewise.
13426 ($(objpfx)tst-gettext6.out): Likewise.
13427 * io/Makefile ($(objpfx)ftwtest.out): Likewise.
13428 * libio/Makefile ($(objpfx)test-freopen.out): Likewise.
13429 ($(objpfx)tst-fopenloc-cmp.out): Likewise.
13430 ($(objpfx)tst-fopenloc-mem.out): Likewise.
13431 * malloc/Makefile ($(objpfx)tst-mtrace.out): Likewise.
13432 * misc/Makefile ($(objpfx)tst-error1-mem): Likewise.
13433 * posix/Makefile ($(objpfx)globtest.out): Likewise.
13434 ($(objpfx)wordexp-tst.out): Likewise.
13435 ($(objpfx)annexc.out): Likewise.
13436 ($(objpfx)tst-fnmatch-mem): Likewise.
13437 ($(objpfx)bug-regex2-mem): Likewise.
13438 ($(objpfx)bug-regex14-mem): Likewise.
13439 ($(objpfx)bug-regex21-mem): Likewise.
13440 ($(objpfx)bug-regex31-mem): Likewise.
13441 ($(objpfx)tst-vfork3-mem): Likewise.
13442 ($(objpfx)tst-rxspencer-no-utf8-mem): Likewise.
13443 ($(objpfx)tst-pcre-mem): Likewise.
13444 ($(objpfx)tst-boost-mem): Likewise.
13445 ($(objpfx)tst-getconf.out): Likewise.
13446 ($(objpfx)bug-ga2-mem): Likewise.
13447 ($(objpfx)bug-glob2-mem): Likewise.
13448 * resolv/Makefile ($(objpfx)mtrace-tst-leaks): Likewise.
13449 ($(objpfx)mtrace-tst-leaks2): Likewise.
13450 * stdio-common/Makefile ($(objpfx)tst-unbputc.out): Likewise.
13451 ($(objpfx)tst-printf.out): Likewise.
13452 ($(objpfx)tst-setvbuf1.out): Likewise.
13453 ($(objpfx)tst-setvbuf1-cmp.out): Likewise.
13454 * stdlib/Makefile ($(objpfx)isomac.out): Likewise.
13455 ($(objpfx)tst-fmtmsg.out): Likewise.
13456 * string/Makefile ($(objpfx)tst-svc-cmp.out): Likewise.
13457 * sysdeps/x86/Makefile ($(objpfx)tst-xmmymm.out): Likewise.
13458
13459 * bits/fcntl.h [__USE_MISC]: Remove redundant conditionals.
13460 * bits/sigaction.h [__USE_MISC]: Likewise.
13461 * bits/waitstatus.h: Update #endif comments.
13462 * ctype/ctype.h: Likewise.
13463 * dirent/dirent.h: Likewise.
13464 [__USE_MISC]: Remove redundant conditionals.
13465 * grp/grp.h: Update #endif comments.
13466 [__USE_GNU]: Remove redundant conditionals.
13467 [__USE_MISC]: Likewise.
13468 * inet/netinet/in.h [__USE_GNU]: Likewise.
13469 * io/sys/stat.h [__USE_MISC]: Likewise.
13470 * libio/bits/stdio-ldbl.h [__USE_MISC]: Likewise.
13471 * libio/bits/stdio.h: Update #endif comments.
13472 [__USE_MISC]: Remove redundant conditionals.
13473 * libio/bits/stdio2.h [__USE_MISC]: Likewise.
13474 * libio/stdio.h: Update #endif comments.
13475 [__USE_MISC]: Remove redundant conditionals.
13476 * math/bits/math-finite.h [__USE_MISC]: Likewise.
13477 * math/bits/mathcalls.h [__USE_MISC]: Likewise.
13478 * math/math.h: Update #else and #endif comments.
13479 [__USE_MISC]: Remove redundant conditionals.
13480 * misc/sys/uio.h: Update #endif comments.
13481 * posix/bits/unistd.h [__USE_MISC]: Remove redundant conditionals.
13482 * posix/glob.h [__USE_MISC]: Likewise.
13483 * posix/sys/types.h: Update #endif comments.
13484 [__USE_MISC]: Remove redundant conditionals.
13485 * posix/sys/wait.h: Update #endif comments.
13486 [__USE_MISC]: Remove redundant conditionals.
13487 * posix/unistd.h: Update #endif comments.
13488 [__USE_MISC]: Remove redundant conditionals.
13489 * pwd/pwd.h [__USE_GNU]: Likewise.
13490 [__USE_MISC]: Likewise.
13491 * resolv/netdb.h [__USE_GNU]: Likewise.
13492 * signal/signal.h: Update #endif comments.
13493 [__USE_MISC]: Remove redundant conditionals.
13494 * stdlib/stdlib.h: Update #else and #endif comments.
13495 [__USE_MISC]: Remove redundant conditionals.
13496 [__USE_GNU]: Likewise.
13497 * string/bits/string2.h [__USE_MISC]: Likewise.
13498 * string/string.h: Update #endif comments.
13499 [__USE_MISC]: Remove redundant conditionals.
13500 * sysdeps/m68k/m680x0/fpu/bits/mathinline.h [__USE_MISC]:
13501 Likewise.
13502 * sysdeps/mach/hurd/bits/fcntl.h [__USE_MISC]: Likewise.
13503 * sysdeps/mach/hurd/bits/stat.h [__USE_MISC]: Likewise.
13504 * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h [__USE_MISC]:
13505 Likewise.
13506 * sysdeps/unix/sysv/linux/alpha/bits/stat.h [__USE_MISC]:
13507 Likewise.
13508 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: Update #endif
13509 comments.
13510 [__USE_MISC]: Remove redundant conditionals.
13511 * sysdeps/unix/sysv/linux/bits/in.h [__USE_GNU]: Likewise.
13512 * sysdeps/unix/sysv/linux/bits/sigaction.h [__USE_MISC]: Likewise.
13513 * sysdeps/unix/sysv/linux/bits/socket.h [__USE_GNU]: Likewise.
13514 * sysdeps/unix/sysv/linux/bits/stat.h [__USE_MISC]: Likewise.
13515 * sysdeps/unix/sysv/linux/ia64/bits/sigaction.h [__USE_MISC]:
13516 Likewise.
13517 * sysdeps/unix/sysv/linux/m68k/bits/stat.h [__USE_MISC]: Likewise.
13518 * sysdeps/unix/sysv/linux/mips/bits/sigaction.h [__USE_MISC]:
13519 Likewise.
13520 * sysdeps/unix/sysv/linux/mips/bits/stat.h [__USE_MISC]: Likewise.
13521 * sysdeps/unix/sysv/linux/powerpc/bits/stat.h [__USE_MISC]:
13522 Likewise.
13523 * sysdeps/unix/sysv/linux/s390/bits/sigaction.h [__USE_MISC]:
13524 Likewise.
13525 * sysdeps/unix/sysv/linux/s390/bits/stat.h [__USE_MISC]: Likewise.
13526 * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h [__USE_MISC]:
13527 Likewise.
13528 * sysdeps/unix/sysv/linux/sparc/bits/stat.h [__USE_MISC]:
13529 Likewise.
13530 * sysdeps/unix/sysv/linux/x86/bits/stat.h [__USE_MISC]: Likewise.
13531 * sysdeps/x86/bits/string.h: Update #endif comments.
13532 * sysdeps/x86/fpu/bits/mathinline.h [__USE_MISC]: Remove redundant
13533 conditionals.
13534 * time/sys/time.h: Update #endif comments.
13535 * time/time.h: Likewise.
13536 [__USE_MISC]: Remove redundant conditionals.
13537
135382014-02-21 Yury Gribov <y.gribov@samsung.com>
13539
13540 [BZ #16600]
13541 * sysdeps/arm/libm-test-ulps: Update for VFPv4.
13542
135432014-02-21 Andreas Schwab <schwab@linux-m68k.org>
13544
13545 * Versions.def (librt): Add GLIBC_2.17.
13546
135472014-02-21 Adam Conrad <adconrad@0c3.net>
13548
13549 * sysdeps/powerpc/bits/hwcap.h: Allow _SYSDEPS_SYSDEP_H guard as a
13550 synonym for _SYS_AUXV_H to allow direct inclusion.
13551 * sysdeps/sparc/bits/hwcap.h: Likewise.
13552 * sysdeps/powerpc/sysdep.h: Define _SYSDEPS_SYSDEP_H instead of
13553 _SYS_AUXV_H so we can include sysdep.h and sys/auxv.h together.
13554 * sysdeps/sparc/sysdep.h: Likewise.
13555
135562014-02-21 Siddhesh Poyarekar <siddhesh@redhat.com>
13557
13558 * benchtests/bench-strrchr.c (do_test): Fix minor formatting.
13559
135602014-02-21 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
13561
13562 * benchtests/bench-strrchr.c: Print length instead of position.
13563
135642014-02-20 Joseph Myers <joseph@codesourcery.com>
13565
13566 [BZ #16611]
13567 * sysdeps/unix/sysv/linux/kernel-features.h
13568 [__LINUX_KERNEL_VERSION >= 0x030000 && __ASSUME_SOCKETCALL]
13569 (__ASSUME_SENDMMSG_SOCKETCALL): Define.
13570 [__LINUX_KERNEL_VERSION >= 0x030000 && (__i386__ || __x86_64__ ||
13571 __powerpc__ || __sh__ || __sparc__)] (__ASSUME_SENDMMSG_SYSCALL):
13572 Likewise.
13573 [__i386__ || __powerpc__ || __sh__ || __sparc__]
13574 (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
13575 [__ASSUME_SENDMMSG_SOCKETCALL || __ASSUME_SENDMMSG_SYSCALL]
13576 (__ASSUME_SENDMMSG): Define instead of using previous
13577 [__LINUX_KERNEL_VERSION >= 0x020627] condition.
13578 * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
13579 (__ASSUME_SENDMMSG_SYSCALL): Define.
13580 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
13581 [__LINUX_KERNEL_VERSION >= 0x030200] (__ASSUME_SENDMMSG_SYSCALL):
13582 Likewise.
13583 * sysdeps/unix/sysv/linux/arm/kernel-features.h
13584 [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
13585 Likewise.
13586 * sysdeps/unix/sysv/linux/ia64/kernel-features.h
13587 [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
13588 Likewise.
13589 * sysdeps/unix/sysv/linux/internal_sendmmsg.S [__ASSUME_SOCKETCALL
13590 && !__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL &&
13591 !__ASSUME_SENDMMSG_SYSCALL] (__NR_sendmmsg): Undefine.
13592 [__ASSUME_SENDMMSG]: Change conditionals to
13593 [__ASSUME_SENDMMSG_SOCKETCALL].
13594 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
13595 [__LINUX_KERNEL_VERSION >= 0x030300] (__ASSUME_SENDMMSG_SYSCALL):
13596 Define.
13597 * sysdeps/unix/sysv/linux/mips/kernel-features.h
13598 [__LINUX_KERNEL_VERSION >= 0x030100] (__ASSUME_SENDMMSG_SYSCALL):
13599 Likewise.
13600 * sysdeps/unix/sysv/linux/sendmmsg.c [__ASSUME_SOCKETCALL &&
13601 !__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL &&
13602 !__ASSUME_SENDMMSG_SYSCALL] (__NR_sendmmsg): Undefine.
13603 [!__ASSUME_SENDMMSG]: Change conditional to
13604 [!__ASSUME_SENDMMSG_SOCKETCALL].
13605 * sysdeps/unix/sysv/linux/tile/kernel-features.h
13606 [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
13607 Define.
13608
13609 [BZ #16610]
13610 * sysdeps/unix/sysv/linux/kernel-features.h
13611 [__LINUX_KERNEL_VERSION >= 0x020621 && __ASSUME_SOCKETCALL]
13612 (__ASSUME_RECVMMSG_SOCKETCALL): Define.
13613 [(__LINUX_KERNEL_VERSION >= 0x020621 && (__i386__ || __x86_64__ ||
13614 __sparc__)) || (__LINUX_KERNEL_VERSION >= 0x020625 && (__powerpc__
13615 || __sh__))] (__ASSUME_RECVMMSG_SYSCALL): Likewise.
13616 [__i386__ || __sparc__]
13617 (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
13618 [__ASSUME_RECVMMSG_SOCKETCALL || __ASSUME_RECVMMSG_SYSCALL]
13619 (__ASSUME_RECVMMSG): Define instead of using previous
13620 [__LINUX_KERNEL_VERSION >= 0x020621] condition.
13621 * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
13622 (__ASSUME_RECVMMSG_SYSCALL): Define.
13623 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
13624 [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
13625 Likewise.
13626 * sysdeps/unix/sysv/linux/arm/kernel-features.h
13627 [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
13628 Likewise.
13629 * sysdeps/unix/sysv/linux/ia64/kernel-features.h
13630 [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
13631 Likewise.
13632 * sysdeps/unix/sysv/linux/internal_recvmmsg.S [__ASSUME_SOCKETCALL
13633 && !__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL &&
13634 !__ASSUME_RECVMMSG_SYSCALL] (__NR_recvmmsg): Undefine.
13635 [__ASSUME_RECVMMSG]: Change condition to
13636 [__ASSUME_RECVMMSG_SOCKETCALL].
13637 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
13638 [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
13639 Define.
13640 (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
13641 * sysdeps/unix/sysv/linux/mips/kernel-features.h
13642 [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
13643 Likewise.
13644 * sysdeps/unix/sysv/linux/recvmmsg.c [__ASSUME_SOCKETCALL &&
13645 !__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL &&
13646 !__ASSUME_RECVMMSG_SYSCALL] (__NR_recvmmsg): Undefine.
13647 [!__ASSUME_RECVMMSG]: Change condition to
13648 [!__ASSUME_RECVMMSG_SOCKETCALL].
13649 * sysdeps/unix/sysv/linux/tile/kernel-features.h
13650 (__ASSUME_RECVMMSG_SYSCALL): Define.
13651
13652 [BZ #16609]
13653 * sysdeps/unix/sysv/linux/kernel-features.h [__i386__ ||
13654 __powerpc__ || __s390__ || __sh__ || __sparc__]
13655 (__ASSUME_SOCKETCALL): Define.
13656 [__LINUX_KERNEL_VERSION && __ASSUME_SOCKETCALL]
13657 (__ASSUME_ACCEPT4_SOCKETCALL): Likewise.
13658 [(__LINUX_KERNEL_VERSION >= 0x02061c && (__x86_64__ || __sparc__))
13659 || (__LINUX_KERNEL_VERSION >= 0x020625 && (__powerpc__ ||
13660 __sh__))] (__ASSUME_ACCEPT4_SYSCALL): Likewise.
13661 [__sparc__] (__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL): Likewise.
13662 [__ASSUME_ACCEPT4_SOCKETCALL || __ASSUME_ACCEPT4_SYSCALL]
13663 (__ASSUME_ACCEPT4): Define instead of using previous
13664 [__LINUX_KERNEL_VERSION >= 0x02061c && (__i386__ || __x86_64__ ||
13665 __powerpc__ || __sparc__ || __s390__)] condition.
13666 * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
13667 (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.
13668 * sysdeps/unix/sysv/linux/accept4.c [__ASSUME_SOCKETCALL &&
13669 !__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
13670 !__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
13671 [!__ASSUME_ACCEPT4]: Change condition to
13672 [!__ASSUME_ACCEPT4_SOCKETCALL].
13673 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
13674 (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL. Correct
13675 condition to [__LINUX_KERNEL_VERSION >= 0x030200].
13676 * sysdeps/unix/sysv/linux/arm/kernel-features.h
13677 [__LINUX_KERNEL_VERSION >= 0x020624] (__ASSUME_ACCEPT4): Change to
13678 __ASSUME_ACCEPT4_SYSCALL.
13679 * sysdeps/unix/sysv/linux/i386/accept4.S [__ASSUME_ACCEPT4]:
13680 Change conditions to [__ASSUME_ACCEPT4_SOCKETCALL].
13681 * sysdeps/unix/sysv/linux/ia64/kernel-features.h
13682 [__LINUX_KERNEL_VERSION >= 0x030300] (__ASSUME_ACCEPT4): Change to
13683 __ASSUME_ACCEPT4_SYSCALL.
13684 * sysdeps/unix/sysv/linux/internal_accept4.S [__ASSUME_SOCKETCALL
13685 && !__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
13686 !__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
13687 [__ASSUME_ACCEPT4]: Change condition to
13688 [__ASSUME_ACCEPT4_SOCKETCALL].
13689 * sysdeps/unix/sysv/linux/m68k/kernel-features.h
13690 (__ASSUME_SOCKETCALL): Define.
13691 [__LINUX_KERNEL_VERSION >= 0x02061c] (__ASSUME_ACCEPT4): Remove.
13692 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
13693 (__ASSUME_SOCKETCALL): Define.
13694 (__ASSUME_ACCEPT4): Remove.
13695 [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_ACCEPT4_SYSCALL):
13696 Define.
13697 * sysdeps/unix/sysv/linux/mips/kernel-features.h
13698 [__LINUX_KERNEL_VERSION >= 0x02061f] (__ASSUME_ACCEPT4_SYSCALL):
13699 Likewise.
13700 * sysdeps/unix/sysv/linux/tile/kernel-features.h
13701 (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.
13702
13703 * sysdeps/unix/sysv/linux/arm/bits/hwcap.h (HWCAP_ARM_VFPD32): New
13704 macro.
13705 (HWCAP_ARM_LPAE): Likewise.
13706 (HWCAP_ARM_EVTSTRM): Likewise.
13707 * sysdeps/unix/sysv/linux/arm/dl-procinfo.c (_dl_arm_cap_flags):
13708 Add vpfd32, lpae and evtstrm.
13709 * sysdeps/unix/sysv/linux/arm/dl-procinfo.h (_DL_HWCAP_COUNT):
13710 Increase to 22.
13711
137122014-02-19 Joseph Myers <joseph@codesourcery.com>
13713
13714 * math/auto-libm-test-in: Add tests of clog10.
13715 * math/auto-libm-test-out: Regenerated.
13716 * math/libm-test.inc (clog10_test_data): Use AUTO_TESTS_c_c.
13717 * sysdeps/i386/fpu/libm-test-ulps: Update.
13718 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
13719
137202014-02-18 Andreas Schwab <schwab@suse.de>
13721
13722 [BZ #16574]
13723 * resolv/res_send.c (send_vc): Add parameter ansp2_malloced.
13724 Store non-zero if the second buffer was newly allocated.
13725 (send_dg): Likewise.
13726 (__libc_res_nsend): Add parameter ansp2_malloced and pass it down
13727 to send_vc and send_dg.
13728 (res_nsend): Pass NULL for ansp2_malloced.
13729 * resolv/res_query.c (__libc_res_nquery): Add parameter
13730 answerp2_malloced and pass it down to __libc_res_nsend.
13731 (res_nquery): Pass additional NULL to __libc_res_nquery.
13732 (__libc_res_nsearch): Add parameter answerp2_malloced and pass it
13733 down to __libc_res_nquery and __libc_res_nquerydomain. Deallocate
13734 second answer buffer if answerp2_malloced was set.
13735 (res_nsearch): Pass additional NULL to __libc_res_nsearch.
13736 (__libc_res_nquerydomain): Add parameter
13737 answerp2_malloced and pass it down to __libc_res_nquery.
13738 (res_nquerydomain): Pass additional NULL to
13739 __libc_res_nquerydomain.
13740 * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyname_r): Pass
13741 additional NULL to __libc_res_nsend and __libc_res_nquery.
13742 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Pass
13743 additional NULL to __libc_res_nsearch.
13744 (_nss_dns_gethostbyname4_r): Revert last change. Use new
13745 parameter of __libc_res_nsearch to check for separately allocated
13746 second buffer.
13747 (_nss_dns_gethostbyaddr2_r): Pass additional NULL to
13748 __libc_res_nquery.
13749 * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Pass
13750 additional NULL to __libc_res_nquery.
13751 * resolv/gethnamaddr.c (gethostbyname2): Pass additional NULL to
13752 __libc_res_nsearch.
13753 (gethostbyaddr): Pass additional NULL to __libc_res_nquery.
13754 * include/resolv.h: Update prototypes of __libc_res_nquery,
13755 __libc_res_nsearch, __libc_res_nsend.
13756
137572014-02-18 Joseph Myers <joseph@codesourcery.com>
13758
13759 * math/auto-libm-test-in: Add tests of fma.
13760 * math/auto-libm-test-out: Regenerated.
13761 * math/libm-test.inc (fma_test_data): Use AUTO_TESTS_fff_f.
13762 (fma_towardzero_test_data): Likewise.
13763 (fma_downward_test_data): Likewise.
13764 (fma_upward_test_data): Likewise.
13765 * math/gen-auto-libm-tests.c (rounding_mode_desc): Add field
13766 mpc_mode.
13767 (rounding_modes): Add values for new field.
13768 (func_calc_method): Add value mpfr_fff_f.
13769 (func_calc_desc): Add mpfr_fff_f union field.
13770 (test_function): Add field exact_args.
13771 (FUNC): Add macro argument EXACT_ARGS.
13772 (FUNC_mpfr_f_f): Update call to FUNC.
13773 (FUNC_mpfr_f_f): Likewise.
13774 (FUNC_mpfr_ff_f): Likewise.
13775 (FUNC_mpfr_if_f): Likewise.
13776 (FUNC_mpc_c_f): Likewise.
13777 (FUNC_mpc_c_c): Likewise.
13778 (test_functions): Add fma. Update calls to FUNC.
13779 (handle_input_arg): Add argument exact_args.
13780 (add_test): Update call to handle_input_arg.
13781 (calc_generic_results): Add argument mode. Handle mpfr_fff_f.
13782 (output_for_one_input_case): Update call to calc_generic_results.
13783 Recalculate exact zero results in each rounding mode.
13784
13785 * math/gen-auto-libm-tests.c (adjust_real): Ensure integers are
13786 non-negative before setting low bit.
13787 * math/auto-libm-test-in: Mark one asin test possibly having
13788 spurious underflow.
13789 * math/auto-libm-test-out: Regenerated.
13790 * sysdeps/i386/fpu/libm-test-ulps: Update.
13791 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
13792
137932014-02-17 David Holsgrove <david.holsgrove@xilinx.com>
13794
13795 * sysdeps/microblaze: Move directory from ports/sysdeps/microblaze.
13796 * sysdeps/unix/sysv/linux/microblaze: Move directory from
13797 ports/sysdeps/unix/sysv/linux/microblaze.
13798 * README: Add missing listing for microblaze*-*-linux-gnu.
13799
138002014-02-16 Ondřej Bílka <neleai@seznam.cz>
13801
13802 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname4_r): Remove
13803 duplicate code
13804
138052014-02-16 Mike Frysinger <vapier@gentoo.org>
13806
13807 * sysdeps/ia64: Move directory from ports/sysdeps/ia64.
13808 * sysdeps/unix/sysv/linux/ia64: Move directory from
13809 ports/sysdeps/unix/sysv/linux/ia64.
13810 * README: Update listing for ia64-*-linux-gnu.
13811
138122014-02-14 Tomas Dohnalek <tdohnale@redhat.com>
13813 Joseph Myers <joseph@codesourcery.com>
13814
13815 * Makeconfig (test-name): New variable.
13816 (evaluate-test): Likewise.
13817 * Makerules (do-test-clean): Remove .test-result files.
13818 (common-mostlyclean): Likewise.
13819 * Rules ($(objpfx)%.out): Use $(evaluate-test) in both rules.
13820 * scripts/evaluate-test.sh: New file.
13821
138222014-02-14 Joseph Myers <joseph@codesourcery.com>
13823
13824 * libio/Makefile ($(objpfx)tst-fopenloc.check): Split into
13825 separate $(objpfx)tst-fopenloc-cmp.out and
13826 $(objpfx)tst-fopenloc-mem.out targets.
13827 (tests): Update dependencies.
13828 * posix/Makefile (tests variable): Add tst-rxspencer-no-utf8.
13829 (generated): Change tst-rxspencer-mem and tst-rxspencer.mtrace to
13830 tst-rxspencer-no-utf8-mem and tst-rxspencer-no-utf8.mtrace.
13831 (tst-rxspencer-no-utf8-ARGS): New variable.
13832 (tst-rxspencer-no-utf8-ENV): Likewise.
13833 (tests target): Depend on $(objpfx)tst-rxspencer-no-utf8-mem
13834 instead of $(objpfx)tst-rxspencer-mem.
13835 ($(objpfx)tst-rxspencer-mem): Change target to
13836 $(objpfx)tst-rxspencer-no-utf8-mem. Depend on
13837 $(objpfx)tst-rxspencer-no-utf8.out instead of running test program.
13838 * posix/tst-rxspencer-no-utf8.c: New file.
13839
13840 * elf/Makefile ($(objpfx)order.out): Remove rule.
13841 [$(run-built-tests) = yes] (tests): Depend on
13842 $(objpfx)order-cmp.out.
13843 ($(objpfx)order-cmp.out): New rule.
13844 [$(run-built-tests) = yes] (tests): Depend on
13845 $(objpfx)tst-array1-cmp.out, $(objpfx)tst-array1-static-cmp.out,
13846 $(objpfx)tst-array2-cmp.out, $(objpfx)tst-array3-cmp.out,
13847 $(objpfx)tst-array4-cmp.out, $(objpfx)tst-array5-cmp.out and
13848 $(objpfx)tst-array5-static-cmp.out.
13849 ($(objpfx)tst-array1.out): Remove rule.
13850 ($(objpfx)tst-array1-cmp.out): New rule.
13851 ($(objpfx)tst-array1-static.out): Remove rule.
13852 ($(objpfx)tst-array1-static-cmp.out): New rule.
13853 ($(objpfx)tst-array2.out): Remove rule.
13854 ($(objpfx)tst-array2-cmp.out): New rule.
13855 ($(objpfx)tst-array3.out): Remove rule.
13856 ($(objpfx)tst-array3-cmp.out): New rule.
13857 ($(objpfx)tst-array4.out): Remove rule.
13858 ($(objpfx)tst-array4-cmp.out): New rule.
13859 ($(objpfx)tst-array5.out): Remove rule.
13860 ($(objpfx)tst-array5-cmp.out): New rule.
13861 ($(objpfx)tst-array5-static.out): Remove rule.
13862 ($(objpfx)tst-array5-static-cmp.out): New rule.
13863 [$(run-built-tests) = yes] (tests): Depend on
13864 $(objpfx)order2-cmp.out.
13865 ($(objpfx)order2.out): Remove rule.
13866 ($(objpfx)order2-cmp.out): New rule.
13867 ($(objpfx)tst-initorder.out): Remove rule.
13868 [$(run-built-tests) = yes] (tests): Depend on
13869 $(objpfx)tst-initorder-cmp.out.
13870 ($(objpfx)tst-initorder-cmp.out): New rule.
13871 ($(objpfx)tst-initorder2.out): Remove rule.
13872 [$(run-built-tests) = yes] (tests): Depend on
13873 $(objpfx)tst-initorder2-cmp.out.
13874 ($(objpfx)tst-initorder2-cmp.out): New rule.
13875 [$(run-built-tests) = yes] (tests): Depend on
13876 $(objpfx)tst-unused-dep-cmp.out.
13877 ($(objpfx)tst-unused-dep-cmp.out): Do not run cmp.
13878 ($(objpfx)tst-unused-dep-cmp.out): New rule.
13879 * stdio-common/Makefile [$(run-built-tests) = yes] (tests): Depend
13880 on $(objpfx)tst-setvbuf1-cmp.out.
13881 ($(objpfx)tst-setvbuf1.out): Do not run cmp.
13882 ($(objpfx)tst-setvbuf1-cmp.out): New rule.
13883 * string/Makefile [$(run-built-tests) = yes] (tests): Depend
13884 $(objpfx)tst-svc-cmp.out instead of $(objpfx)tst-svc.out.
13885 ($(objpfx)tst-svc.out): Remove rule.
13886 ($(objpfx)tst-svc-cmp.out): New rule.
13887
138882014-02-13 Joseph Myers <joseph@codesourcery.com>
13889
13890 * bits/mman.h [__USE_MISC]: Remove redundant conditionals.
13891 * ctype/ctype.h [__USE_MISC]: Likewise.
13892 * dirent/dirent.h [__USE_MISC]: Likewise.
13893 * grp/grp.h [__USE_MISC]: Likewise.
13894 * io/fcntl.h [__USE_MISC]: Likewise.
13895 * io/sys/stat.h [__USE_MISC]: Likewise.
13896 * libio/stdio.h [__USE_MISC]: Likewise.
13897 * posix/unistd.h [__USE_MISC]: Likewise.
13898 * pwd/pwd.h [__USE_MISC]: Likewise.
13899 * stdlib.h [__USE_MISC]: Likewise.
13900 * string/bits/string2.h [__USE_MISC]: Likewise.
13901 * string/string.h [__USE_MISC]: Likewise.
13902 * time/time.h [__USE_MISC]: Likewise.
13903
139042014-02-13 Andreas Schwab <schwab@suse.de>
13905
13906 [BZ #16574]
13907 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname4_r): Free the
13908 second answer buffer if it was separately allocated.
13909
139102014-02-12 Joseph Myers <joseph@codesourcery.com>
13911
13912 * sysdeps/mips/math-tests.h: Include <features.h>.
13913 [!__mips_soft_float && _MIPS_SIM != _ABIO32 && __GNUC_PREREQ (4, 9)]
13914 (ROUNDING_TESTS_long_double): Do not define.
13915 [!__mips_soft_float && _MIPS_SIM != _ABIO32 && __GNUC_PREREQ (4, 9)]
13916 (EXCEPTION_TESTS_long_double): Likewise.
13917 * sysdeps/mips/mips64/libm-test-ulps: Update.
13918
13919 * include/features.h (__USE_BSD): Remove macro definitions.
13920 (__USE_SVID): Likewise.
13921 (_BSD_SOURCE): Likewise.
13922 (_SVID_SOURCE): Likewise.
13923 [!defined _BSD_SOURCE && !defined _SVID_SOURCE]: Remove condition
13924 from definition of _DEFAULT_SOURCE.
13925 [_BSD_SOURCE || _SVID_SOURCE]: Change condition to
13926 [_DEFAULT_SOURCE].
13927 * bits/fcntl.h [__USE_BSD]: Change condition to [__USE_MISC].
13928 * bits/mman.h [__USE_BSD]: Likewise.
13929 * bits/termios.h [__USE_BSD]: Likewise.
13930 * bits/waitstatus.h [__USE_BSD]: Likewise.
13931 * ctype/ctype.h [__USE_SVID]: Likewise.
13932 * dirent/dirent.h [__USE_BSD]: Likewise.
13933 * grp/grp.h [__USE_SVID]: Likewise.
13934 [__USE_BSD]: Likewise.
13935 * inet/netinet/igmp.h [__USE_BSD]: Likewise.
13936 * io/fcntl.h [__USE_BSD]: Likewise.
13937 * io/ftw.h [__USE_BSD]: Likewise.
13938 * io/sys/stat.h [__USE_BSD]: Likewise.
13939 * libio/bits/stdio-ldbl.h [__USE_BSD]: Likewise.
13940 * libio/bits/stdio2.h [__USE_BSD]: Likewise.
13941 * libio/stdio.h [__USE_SVID]: Likewise.
13942 [__USE_BSD]: Likewise.
13943 * math/math.h [__USE_SVID]: Likewise.
13944 [__USE_BSD]: Likewise.
13945 * misc/bits/syslog-ldbl.h [__USE_BSD]: Likewise.
13946 * misc/bits/syslog.h [__USE_BSD]: Likewise.
13947 * misc/search.h [__USE_SVID]: Likewise.
13948 * misc/sys/mman.h [__USE_BSD]: Likewise.
13949 * misc/sys/syslog.h [__USE_BSD]: Likewise.
13950 * misc/sys/uio.h [__USE_BSD]: Likewise.
13951 * posix/bits/unistd.h [__USE_BSD]: Likewise.
13952 * posix/glob.h [__USE_BSD]: Likewise.
13953 * posix/regex.h [__USE_BSD]: Likewise.
13954 * posix/sys/types.h [__USE_BSD]: Likewise.
13955 [__USE_SVID]: Likewise.
13956 * posix/sys/utsname.h [__USE_SVID]: Likewise.
13957 * posix/sys/wait.h [__USE_BSD]: Likewise.
13958 [__USE_SVID]: Likewise.
13959 * posix/unistd.h [__USE_BSD]: Likewise.
13960 [__USE_SVID]: Likewise.
13961 * pwd/pwd.h [__USE_SVID]: Likewise.
13962 * resolv/netdb.h [__USE_BSD]: Likewise.
13963 * setjmp/setjmp.h [__USE_BSD]: Likewise.
13964 * signal/signal.h [__USE_BSD]: Likewise.
13965 [__USE_SVID]: Likewise.
13966 * socket/sys/socket.h [__USE_BSD]: Likewise.
13967 * stdlib/fmtmsg.h [__USE_SVID]: Likewise.
13968 * stdlib/stdlib.h [__USE_BSD]: Likewise.
13969 [__USE_SVID]: Likewise.
13970 * string/bits/string2.h [__USE_BSD]: Likewise.
13971 [__USE_SVID]: Likewise.
13972 * string/bits/string3.h [__USE_BSD]: Likewise.
13973 * string/endian.h [__USE_BSD]: Likewise.
13974 * string/string.h [__USE_SVID]: Likewise.
13975 [__USE_BSD]: Likewise.
13976 * string/strings.h [__USE_BSD]: Likewise.
13977 * sysdeps/generic/netinet/ip.h [__USE_BSD]: Likewise.
13978 * sysdeps/gnu/netinet/ip_icmp.h [__USE_BSD]: Likewise.
13979 * sysdeps/mach/hurd/bits/fcntl.h [__USE_BSD]: Likewise.
13980 * sysdeps/mach/hurd/bits/stat.h [__USE_BSD]: Likewise.
13981 * sysdeps/unix/sysv/linux/alpha/bits/mman.h [__USE_BSD]: Likewise.
13982 * sysdeps/unix/sysv/linux/alpha/bits/termios.h [__USE_BSD]:
13983 Likewise.
13984 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_BSD]:
13985 Likewise.
13986 * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_BSD]: Likewise.
13987 * sysdeps/unix/sysv/linux/bits/sys_errlist.h [__USE_BSD]:
13988 Likewise.
13989 * sysdeps/unix/sysv/linux/bits/termios.h [__USE_BSD]: Likewise.
13990 * sysdeps/unix/sysv/linux/mips/bits/termios.h [__USE_BSD]:
13991 Likewise.
13992 * sysdeps/unix/sysv/linux/netinet/if_ether.h [__USE_BSD]:
13993 Likewise.
13994 * sysdeps/unix/sysv/linux/netinet/if_fddi.h [__USE_BSD]: Likewise.
13995 * sysdeps/unix/sysv/linux/netinet/if_tr.h [__USE_BSD]: Likewise.
13996 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_BSD]:
13997 Likewise.
13998 * sysdeps/unix/sysv/linux/sparc/bits/termios.h [__USE_BSD]:
13999 Likewise.
14000 * sysdeps/x86/bits/string.h [__USE_BSD]: Likewise.
14001 * sysvipc/sys/ipc.h [__USE_SVID]: Likewise.
14002 * termios/termios.h [__USE_BSD]: Likewise.
14003 * time/sys/time.h [__USE_BSD]: Likewise.
14004 * time/time.h [__USE_BSD]: Likewise.
14005 [__USE_SVID]: Likewise.
14006
14007 * Makefile (subdir_targets): Remove subdir_lint.out.
14008
14009 * stdio-common/Makefile (do-tst-unbputc): Remove target.
14010 (do-tst-printf): Likewise.
14011 (tests): Depend directly on $(objpfx)tst-unbputc.out and
14012 $(objpfx)tst-printf.out.
14013
14014 * io/ftwtest-sh (testout): Change to $tmp/ftwtest-tmp.out.
14015
14016 * Makerules (check-abi-%): Change target to
14017 $(objpfx)check-abi-%.out.
14018 (check-abi target): Update dependencies.
14019 (check-abi-pattern variable): Redirect output of diff to $@.
14020 (check-abi variable): Likewise.
14021 * elf/Makefile (check-abi): Update dependencies.
14022
14023 * soft-fp/op-common.h (_FP_DECL): Mark exponent as possibly
14024 unused.
14025 (_FP_PACK_SEMIRAW): Determine tininess based on rounding shifted
14026 value if _FP_TININESS_AFTER_ROUNDING and unrounded value is in
14027 subnormal range.
14028 (_FP_PACK_CANONICAL): Determine tininess based on rounding to
14029 normal precision if _FP_TININESS_AFTER_ROUNDING and unrounded
14030 value has largest subnormal exponent.
14031 * soft-fp/soft-fp.h [FP_NO_EXCEPTIONS]
14032 (_FP_TININESS_AFTER_ROUNDING): Undefine and redefine to 0.
14033 * sysdeps/aarch64/soft-fp/sfp-machine.h
14034 (_FP_TININESS_AFTER_ROUNDING): New macro.
14035 * sysdeps/alpha/soft-fp/sfp-machine.h
14036 (_FP_TININESS_AFTER_ROUNDING): Likewise.
14037 * sysdeps/arm/soft-fp/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
14038 Likewise.
14039 * sysdeps/mips/mips64/soft-fp/sfp-machine.h
14040 (_FP_TININESS_AFTER_ROUNDING): Likewise.
14041 * sysdeps/mips/soft-fp/sfp-machine.h
14042 (_FP_TININESS_AFTER_ROUNDING): Likewise.
14043 * sysdeps/powerpc/soft-fp/sfp-machine.h
14044 (_FP_TININESS_AFTER_ROUNDING): Likewise.
14045 * sysdeps/sh/soft-fp/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
14046 Likewise.
14047 * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h
14048 (_FP_TININESS_AFTER_ROUNDING): Likewise.
14049 * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h
14050 (_FP_TININESS_AFTER_ROUNDING): Likewise.
14051 * sysdeps/tile/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
14052 Likewise.
14053
140542014-02-12 Dylan Alex Simon <dylan@dylex.net>
14055
14056 [BZ #16545]
14057 * sysdeps/x86_64/fpu/libm-test-ulps: Update on AMD family 21h
14058 model 1.
14059
140602014-02-12 Richard Henderson <rth@redhat.com>
14061
14062 * sysdeps/alpha: Move directory from ports/sysdeps/alpha.
14063 * sysdeps/unix/alpha: Move directory from ports/sysdeps/unix/alpha.
14064 * sysdeps/unix/sysv/linux/alpha: Move directory from
14065 ports/sysdeps/unix/sysv/linux/alpha.
14066 * README: Update listing for alpha-*-linux-gnu.
14067
140682014-02-11 Joseph Myers <joseph@codesourcery.com>
14069
14070 * include/features.h: Update comment documenting feature test
14071 macros.
14072 [_BSD_SOURCE || _SVID_SOURCE]: Give #warning. Define
14073 _DEFAULT_SOURCE.
14074 * manual/creature.texi (_BSD_SOURCE): Remove documentation.
14075 (_SVID_SOURCE): Likewise.
14076 (_DEFAULT_SOURCE): Update description of default features.
14077 (Feature Test Macros): Don't mention _SVID_SOURCE in conjunction
14078 with _GNU_SOURCE.
14079 * manual/filesys.texi (__ftw_func_t): Do not refer to _BSD_SOURCE.
14080 (S_ISVTX): Likewise.
14081 * manual/math.texi (Mathematical Constants): Likewise.
14082 * manual/signal.texi (Interrupted Primitives): Likewise.
14083 * manual/startup.texi (putenv): Do not refer to _SVID_SOURCE.
14084 * math/test-matherr.c (_SVID_SOURCE): Do not define.
14085 * sysvipc/sys/ipc.h [__USE_SVID && !__USE_XOPEN && __GNUC__ >= 2]:
14086 Don't refer to _SVID_SOURCE in warning text.
14087
14088 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
14089
14090 * elf/dl-lookup.c (ELF_MACHINE_SYM_NO_MATCH): Define if not
14091 already defined.
14092 (do_lookup_x): Use ELF_MACHINE_SYM_NO_MATCH.
14093 * sysdeps/mips/dl-lookup.c: Remove.
14094 * sysdeps/mips/dl-machine.h (ELF_MACHINE_SYM_NO_MATCH): New macro.
14095
140962014-02-11 Stefan Liebler <stli@linux.vnet.ibm.com>
14097
14098 [BZ #16447]
14099 * math/auto-libm-test-in: Add testcase for expl.
14100 * math/auto-libm-test-out: Regenerate.
14101 * sysdeps/ieee754/ldbl-128/e_expl.c (__ieee754_expl): Fix
14102 calculation of unsafe.
14103 * sysdeps/s390/fpu/libm-test-ulps: Adjust ULPs for added testcase.
14104
141052014-02-11 Marcus Shawcroft <marcus.shawcroft@arm.com>
14106
14107 * sysdeps/aarch64: Move directory from ports/sysdeps/aarch64.
14108 * sysdeps/unix/sysv/linux/aarch64: Move directory from
14109 ports/sysdeps/unix/sysv/linux/aarch64.
14110 * README: Update listing for aarch64*-*-linux-gnu.
14111
141122014-02-11 Will Newton <will.newton@linaro.org>
14113
14114 * manual/probes.texi (Mathematical Function Probes): Use
14115 "triggered" instead of "hit".
14116
14117 * manual/probes.texi (Internal Probes): Add documentation
14118 of setjmp, longjmp and longjmp_target probes.
14119
14120 * include/stap-probe.h: Add comment about probe argument
14121 format.
14122
14123 * malloc/mtrace.c (attribute_hidden): Remove unused macro
14124 definition. (tr_where, tr_freehook, tr_mallochook,
14125 tr_reallochook, tr_memalignhook): Use ANSI protoype.
14126
141272014-02-11 David S. Miller <davem@davemloft.net>
14128
14129 * stdio-common/tst-sscanf.c (main): Use 'long' for 'dummy' when
14130 processing int_tests.
14131
141322014-02-10 Joseph Myers <joseph@codesourcery.com>
14133
14134 * sysdeps/mips: Move directory from ports/sysdeps/mips.
14135 * sysdeps/unix/mips: Move directory from ports/sysdeps/unix/mips.
14136 * sysdeps/unix/sysv/linux/mips: Move directory from
14137 ports/sysdeps/unix/sysv/linux/mips.
14138 * README: Update listing for mips-*-linux-gnu and
14139 mips64-*-linux-gnu.
14140
141412014-02-10 Andreas Schwab <schwab@linux-m68k.org>
14142
14143 * sysdeps/m68k: Move directory from ports/sysdeps/m68k.
14144 * sysdeps/unix/sysv/linux/m68k: Move directory from
14145 ports/sysdeps/unix/sysv/linux/m68k.
14146 * README: Update listing for m68k-*-linux-gnu.
14147
141482014-02-10 Chris Metcalf <cmetcalf@tilera.com>
14149
14150 * sysdeps/tile: Move directory from ports/sysdeps/tile.
14151 * sysdeps/unix/sysv/linux/generic: Move directory from
14152 ports/sysdeps/unix/sysv/linux/generic.
14153 * sysdeps/unix/sysv/linux/tile: Move directory from
14154 ports/sysdeps/unix/sysv/linux/tile.
14155 * README: Update listing for tile*-*-linux-gnu.
14156
141572014-02-10 Ondřej Bílka <neleai@seznam.cz>
14158
14159 * assert/assert.c (__assert_fail_base): Use glibc_likely instead
14160 __builtin_expect.
14161 * benchtests/bench-memmem.c (simple_memmem): Likewise.
14162 * catgets/open_catalog.c (__open_catalog): Likewise.
14163 * csu/libc-start.c (LIBC_START_MAIN): Likewise.
14164 * debug/confstr_chk.c: Likewise.
14165 * debug/fread_chk.c (__fread_chk): Likewise.
14166 * debug/fread_u_chk.c (__fread_unlocked_chk): Likewise.
14167 * debug/getgroups_chk.c: Likewise.
14168 * debug/mbsnrtowcs_chk.c: Likewise.
14169 * debug/mbsrtowcs_chk.c: Likewise.
14170 * debug/mbstowcs_chk.c: Likewise.
14171 * debug/memcpy_chk.c: Likewise.
14172 * debug/memmove_chk.c: Likewise.
14173 * debug/mempcpy_chk.c: Likewise.
14174 * debug/memset_chk.c: Likewise.
14175 * debug/stpcpy_chk.c (__stpcpy_chk): Likewise.
14176 * debug/strcat_chk.c (__strcat_chk): Likewise.
14177 * debug/strcpy_chk.c (__strcpy_chk): Likewise.
14178 * debug/strncat_chk.c (__strncat_chk): Likewise.
14179 * debug/vsnprintf_chk.c (___vsnprintf_chk): Likewise.
14180 * debug/vswprintf_chk.c (__vswprintf_chk): Likewise.
14181 * debug/wcpcpy_chk.c (__wcpcpy_chk): Likewise.
14182 * debug/wcpncpy_chk.c: Likewise.
14183 * debug/wcscat_chk.c (__wcscat_chk): Likewise.
14184 * debug/wcscpy_chk.c (__wcscpy_chk): Likewise.
14185 * debug/wcsncat_chk.c (__wcsncat_chk): Likewise.
14186 * debug/wcsncpy_chk.c: Likewise.
14187 * debug/wcsnrtombs_chk.c: Likewise.
14188 * debug/wcsrtombs_chk.c: Likewise.
14189 * debug/wcstombs_chk.c: Likewise.
14190 * debug/wmemcpy_chk.c: Likewise.
14191 * debug/wmemmove_chk.c: Likewise.
14192 * debug/wmempcpy_chk.c: Likewise.
14193 * debug/wmemset_chk.c: Likewise.
14194 * dirent/scandirat.c (SCANDIRAT): Likewise.
14195 * dlfcn/dladdr1.c (dladdr1): Likewise.
14196 * dlfcn/dladdr.c (dladdr): Likewise.
14197 * dlfcn/dlclose.c (dlclose_doit): Likewise.
14198 * dlfcn/dlerror.c (__dlerror): Likewise.
14199 * dlfcn/dlinfo.c (dlinfo_doit): Likewise.
14200 * dlfcn/dlmopen.c (dlmopen_doit): Likewise.
14201 * dlfcn/dlopen.c (dlopen_doit): Likewise.
14202 * dlfcn/dlopenold.c (__dlopen_nocheck): Likewise.
14203 * dlfcn/dlsym.c (dlsym_doit): Likewise.
14204 * dlfcn/dlvsym.c (dlvsym_doit): Likewise.
14205 * elf/dl-cache.c (_dl_load_cache_lookup): Likewise.
14206 * elf/dl-close.c (remove_slotinfo, _dl_close_worker, _dl_close):
14207 Likewise.
14208 * elf/dl-conflict.c: Likewise.
14209 * elf/dl-deps.c (_dl_build_local_scope, _dl_map_object_deps): Likewise.
14210 * elf/dl-dst.h: Likewise.
14211 * elf/dl-fini.c (_dl_sort_fini, _dl_fini): Likewise.
14212 * elf/dl-fptr.c (_dl_make_fptr): Likewise.
14213 * elf/dl-hwcaps.c (_dl_important_hwcaps): Likewise.
14214 * elf/dl-init.c (call_init, _dl_init): Likewise.
14215 * elf/dl-libc.c (__libc_dlopen_mode, __libc_dlsym): Likewise.
14216 * elf/dl-load.c (_dl_dst_substitute, fillin_rpath, _dl_init_paths)
14217 (_dl_map_object_from_fd, open_verify, open_path, _dl_map_object):
14218 Likewise.
14219 * elf/dl-lookup.c (do_lookup_x, add_dependency, _dl_lookup_symbol_x):
14220 Likewise.
14221 * elf/dl-minimal.c (__libc_memalign): Likewise.
14222 * elf/dl-open.c (add_to_global, dl_open_worker, _dl_open): Likewise.
14223 * elf/dl-reloc.c (_dl_relocate_object): Likewise.
14224 * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
14225 * elf/dl-sym.c (do_sym): Likewise.
14226 * elf/dl-tls.c (tls_get_addr_tail, update_get_addr)
14227 (__tls_get_addr, _dl_tls_get_addr_soft): Likewise.
14228 * elf/dl-version.c (match_symbol, _dl_check_map_versions): Likewise.
14229 * elf/dl-writev.h (_dl_writev): Likewise.
14230 * elf/ldconfig.c (search_dir): Likewise.
14231 * elf/rtld.c (_dl_start_final, _dl_start, init_tls, do_preload)
14232 (dl_main): Likewise.
14233 * elf/setup-vdso.h (setup_vdso): Likewise.
14234 * grp/compat-initgroups.c (compat_call): Likewise.
14235 * grp/fgetgrent.c (fgetgrent): Likewise.
14236 * grp/initgroups.c (getgrouplist, initgroups): Likewise.
14237 * grp/putgrent.c (putgrent): Likewise.
14238 * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_initgroups_dyn):
14239 Likewise.
14240 * hurd/hurdinit.c: Likewise.
14241 * iconvdata/8bit-gap.c (struct): Likewise.
14242 * iconvdata/ansi_x3.110.c : Likewise.
14243 * iconvdata/big5.c : Likewise.
14244 * iconvdata/big5hkscs.c : Likewise.
14245 * iconvdata/cp1255.c: Likewise.
14246 * iconvdata/cp1258.c : Likewise.
14247 * iconvdata/cp932.c : Likewise.
14248 * iconvdata/euc-cn.c: Likewise.
14249 * iconvdata/euc-jisx0213.c : Likewise.
14250 * iconvdata/euc-jp.c: Likewise.
14251 * iconvdata/euc-jp-ms.c : Likewise.
14252 * iconvdata/euc-kr.c (euckr_from_ucs4): Likewise.
14253 * iconvdata/gb18030.c : Likewise.
14254 * iconvdata/gbbig5.c (const): Likewise.
14255 * iconvdata/gbgbk.c: Likewise.
14256 * iconvdata/gbk.c : Likewise.
14257 * iconvdata/ibm1364.c : Likewise.
14258 * iconvdata/ibm930.c : Likewise.
14259 * iconvdata/ibm932.c: Likewise.
14260 * iconvdata/ibm933.c : Likewise.
14261 * iconvdata/ibm935.c : Likewise.
14262 * iconvdata/ibm937.c : Likewise.
14263 * iconvdata/ibm939.c : Likewise.
14264 * iconvdata/ibm943.c: Likewise.
14265 * iconvdata/iso_11548-1.c: Likewise.
14266 * iconvdata/iso-2022-cn.c : Likewise.
14267 * iconvdata/iso-2022-cn-ext.c : Likewise.
14268 * iconvdata/iso-2022-jp-3.c: Likewise.
14269 * iconvdata/iso-2022-jp.c (gconv_end): Likewise.
14270 * iconvdata/iso-2022-kr.c : Likewise.
14271 * iconvdata/iso646.c (gconv_end): Likewise.
14272 * iconvdata/iso_6937-2.c : Likewise.
14273 * iconvdata/iso_6937.c : Likewise.
14274 * iconvdata/iso8859-1.c: Likewise.
14275 * iconvdata/johab.c (johab_sym_hanja_to_ucs): Likewise.
14276 * iconvdata/shift_jisx0213.c : Likewise.
14277 * iconvdata/sjis.c : Likewise.
14278 * iconvdata/t.61.c : Likewise.
14279 * iconvdata/tcvn5712-1.c : Likewise.
14280 * iconvdata/tscii.c: Likewise.
14281 * iconvdata/uhc.c : Likewise.
14282 * iconvdata/unicode.c (gconv_end): Likewise.
14283 * iconvdata/utf-16.c (gconv_end): Likewise.
14284 * iconvdata/utf-32.c (gconv_end): Likewise.
14285 * iconvdata/utf-7.c (base64): Likewise.
14286 * iconv/gconv_cache.c (__gconv_load_cache): Likewise.
14287 * iconv/gconv_close.c (__gconv_close): Likewise.
14288 * iconv/gconv_open.c (__gconv_open): Likewise.
14289 * iconv/gconv_simple.c (internal_ucs4_loop_single)
14290 (ucs4_internal_loop, ucs4_internal_loop_unaligned)
14291 (ucs4_internal_loop_single, internal_ucs4le_loop_single)
14292 (ucs4le_internal_loop, ucs4le_internal_loop_unaligned)
14293 (ucs4le_internal_loop_single): Likewise.
14294 * iconv/iconv.c (iconv): Likewise.
14295 * iconv/iconv_close.c: Likewise.
14296 * iconv/loop.c (SINGLE): Likewise.
14297 * iconv/skeleton.c (FUNCTION_NAME): Likewise.
14298 * include/atomic.h: Likewise.
14299 * inet/inet6_option.c (option_alloc): Likewise.
14300 * intl/bindtextdom.c (set_binding_values): Likewise.
14301 * intl/dcigettext.c (DCIGETTEXT, _nl_find_msg): Likewise.
14302 * intl/loadmsgcat.c (_nl_load_domain): Likewise.
14303 * intl/localealias.c (read_alias_file): Likewise.
14304 * libio/filedoalloc.c (_IO_file_doallocate): Likewise.
14305 * libio/fileops.c (_IO_file_open, _IO_file_underflow_mmap)
14306 (_IO_new_file_overflow, _IO_file_xsgetn_mmap): Likewise.
14307 * libio/fmemopen.c (fmemopen): Likewise.
14308 * libio/iofgets.c (_IO_fgets): Likewise.
14309 * libio/iofgets_u.c (fgets_unlocked): Likewise.
14310 * libio/iofgetws.c (fgetws): Likewise.
14311 * libio/iofgetws_u.c (fgetws_unlocked): Likewise.
14312 * libio/iogetdelim.c (_IO_getdelim): Likewise.
14313 * libio/wfileops.c (_IO_wfile_underflow, _IO_wfile_underflow_mmap)
14314 (adjust_wide_data, _IO_wfile_seekoff): Likewise.
14315 * locale/findlocale.c (_nl_find_locale): Likewise.
14316 * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
14317 * locale/loadlocale.c (_nl_intern_locale_data, _nl_load_locale):
14318 Likewise.
14319 * locale/setlocale.c (setlocale): Likewise.
14320 * login/programs/pt_chown.c (main): Likewise.
14321 * malloc/arena.c (ptmalloc_init, shrink_heap, arena_get2): Likewise.
14322 * malloc/malloc.c (_int_malloc, _int_free): Likewise.
14323 * malloc/memusage.c (update_data, malloc, realloc, calloc, free)
14324 (mmap, mmap64, mremap, munmap): Likewise.
14325 * math/e_exp2l.c: Likewise.
14326 * math/e_scalb.c (invalid_fn, __ieee754_scalb): Likewise.
14327 * math/e_scalbf.c (invalid_fn, __ieee754_scalbf): Likewise.
14328 * math/e_scalbl.c (invalid_fn, __ieee754_scalbl): Likewise.
14329 * math/s_catan.c (__catan): Likewise.
14330 * math/s_catanf.c (__catanf): Likewise.
14331 * math/s_catanh.c (__catanh): Likewise.
14332 * math/s_catanhf.c (__catanhf): Likewise.
14333 * math/s_catanhl.c (__catanhl): Likewise.
14334 * math/s_catanl.c (__catanl): Likewise.
14335 * math/s_ccosh.c (__ccosh): Likewise.
14336 * math/s_ccoshf.c (__ccoshf): Likewise.
14337 * math/s_ccoshl.c (__ccoshl): Likewise.
14338 * math/s_cexp.c (__cexp): Likewise.
14339 * math/s_cexpf.c (__cexpf): Likewise.
14340 * math/s_cexpl.c (__cexpl): Likewise.
14341 * math/s_clog10.c (__clog10): Likewise.
14342 * math/s_clog10f.c (__clog10f): Likewise.
14343 * math/s_clog10l.c (__clog10l): Likewise.
14344 * math/s_clog.c (__clog): Likewise.
14345 * math/s_clogf.c (__clogf): Likewise.
14346 * math/s_clogl.c (__clogl): Likewise.
14347 * math/s_csin.c (__csin): Likewise.
14348 * math/s_csinf.c (__csinf): Likewise.
14349 * math/s_csinh.c (__csinh): Likewise.
14350 * math/s_csinhf.c (__csinhf): Likewise.
14351 * math/s_csinhl.c (__csinhl): Likewise.
14352 * math/s_csinl.c (__csinl): Likewise.
14353 * math/s_csqrt.c (__csqrt): Likewise.
14354 * math/s_csqrtf.c (__csqrtf): Likewise.
14355 * math/s_csqrtl.c (__csqrtl): Likewise.
14356 * math/s_ctan.c (__ctan): Likewise.
14357 * math/s_ctanf.c (__ctanf): Likewise.
14358 * math/s_ctanh.c (__ctanh): Likewise.
14359 * math/s_ctanhf.c (__ctanhf): Likewise.
14360 * math/s_ctanhl.c (__ctanhl): Likewise.
14361 * math/s_ctanl.c (__ctanl): Likewise.
14362 * math/w_pow.c: Likewise.
14363 * math/w_powf.c: Likewise.
14364 * math/w_powl.c: Likewise.
14365 * math/w_scalb.c (sysv_scalb): Likewise.
14366 * math/w_scalbf.c (sysv_scalbf): Likewise.
14367 * math/w_scalbl.c (sysv_scalbl): Likewise.
14368 * misc/error.c (error_tail): Likewise.
14369 * misc/pselect.c (__pselect): Likewise.
14370 * nis/nis_callback.c (__nis_create_callback): Likewise.
14371 * nis/nis_call.c (__nisfind_server): Likewise.
14372 * nis/nis_creategroup.c (nis_creategroup): Likewise.
14373 * nis/nis_domain_of_r.c (nis_domain_of_r): Likewise.
14374 * nis/nis_findserv.c (__nis_findfastest_with_timeout): Likewise.
14375 * nis/nis_getservlist.c (nis_getservlist): Likewise.
14376 * nis/nis_lookup.c (nis_lookup): Likewise.
14377 * nis/nis_subr.c (nis_leaf_of_r, nis_getnames): Likewise.
14378 * nis/nis_table.c (__create_ib_request, nis_list, nis_add_entry)
14379 (nis_modify_entry, nis_first_entry, nis_next_entry): Likewise.
14380 * nis/nis_xdr.c (xdr_endpoint): Likewise.
14381 * nis/nss_compat/compat-grp.c (getgrent_next_file)
14382 (internal_getgrnam_r, internal_getgrgid_r): Likewise.
14383 * nis/nss_compat/compat-initgroups.c (add_group)
14384 (internal_getgrent_r): Likewise.
14385 * nis/nss_compat/compat-pwd.c (getpwent_next_file)
14386 (internal_getpwnam_r, internal_getpwuid_r): Likewise.
14387 * nis/nss_compat/compat-spwd.c (getspent_next_file)
14388 (internal_getspnam_r): Likewise.
14389 * nis/nss_nis/nis-alias.c (internal_nis_getaliasent_r)
14390 (_nss_nis_getaliasbyname_r): Likewise.
14391 * nis/nss_nis/nis-ethers.c (_nss_nis_gethostton_r)
14392 (_nss_nis_getntohost_r): Likewise.
14393 * nis/nss_nis/nis-grp.c (internal_nis_setgrent)
14394 (internal_nis_getgrent_r, _nss_nis_getgrnam_r)
14395 (_nss_nis_getgrgid_r): Likewise.
14396 * nis/nss_nis/nis-hosts.c (_nss_nis_sethostent)
14397 (internal_nis_gethostent_r, internal_gethostbyname2_r)
14398 (_nss_nis_gethostbyname_r, _nss_nis_gethostbyaddr_r)
14399 (_nss_nis_gethostbyname4_r): Likewise.
14400 * nis/nss_nis/nis-initgroups.c (internal_getgrent_r)
14401 (initgroups_netid): Likewise.
14402 * nis/nss_nis/nis-netgrp.c (_nss_nis_setnetgrent): Likewise.
14403 * nis/nss_nis/nis-network.c (internal_nis_getnetent_r)
14404 (_nss_nis_getnetbyname_r, _nss_nis_getnetbyaddr_r): Likewise.
14405 * nis/nss_nis/nis-proto.c (_nss_nis_getprotobyname_r)
14406 (_nss_nis_getprotobynumber_r): Likewise.
14407 * nis/nss_nis/nis-publickey.c (_nss_nis_getpublickey)
14408 (_nss_nis_getsecretkey): Likewise.
14409 * nis/nss_nis/nis-pwd.c (_nis_saveit, internal_nis_setpwent)
14410 (internal_nis_getpwent_r, _nss_nis_getpwnam_r)
14411 (_nss_nis_getpwuid_r): Likewise.
14412 * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r)
14413 (_nss_nis_getrpcbyname_r, _nss_nis_getrpcbynumber_r): Likewise.
14414 * nis/nss_nis/nis-service.c (dosearch, internal_nis_getservent_r)
14415 (_nss_nis_getservbyname_r, _nss_nis_getservbyport_r): Likewise.
14416 * nis/nss_nis/nis-spwd.c (_nss_nis_setspent)
14417 (internal_nis_getspent_r, _nss_nis_getspnam_r): Likewise.
14418 * nis/nss_nisplus/nisplus-alias.c (_nss_nisplus_getaliasbyname_r):
14419 Likewise.
14420 * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r)
14421 (_nss_nisplus_getntohost_r): Likewise.
14422 * nis/nss_nisplus/nisplus-grp.c (internal_nisplus_getgrent_r)
14423 (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
14424 * nis/nss_nisplus/nisplus-hosts.c (internal_gethostbyname2_r)
14425 (_nss_nisplus_gethostbyaddr_r, _nss_nisplus_gethostbyname4_r):
14426 Likewise.
14427 * nis/nss_nisplus/nisplus-initgroups.c
14428 (_nss_nisplus_initgroups_dyn): Likewise.
14429 * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyname_r)
14430 (_nss_nisplus_getnetbyaddr_r): Likewise.
14431 * nis/nss_nisplus/nisplus-proto.c (_nss_nisplus_getprotobyname_r)
14432 (_nss_nisplus_getprotobynumber_r): Likewise.
14433 * nis/nss_nisplus/nisplus-pwd.c (internal_nisplus_getpwent_r)
14434 (_nss_nisplus_getpwnam_r, _nss_nisplus_getpwuid_r): Likewise.
14435 * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_getrpcbyname_r):
14436 Likewise.
14437 * nis/nss_nisplus/nisplus-service.c
14438 (internal_nisplus_getservent_r, _nss_nisplus_getservbyname_r)
14439 (_nss_nisplus_getservbyport_r): Likewise.
14440 * nis/nss_nisplus/nisplus-spwd.c (internal_nisplus_getspent_r)
14441 (_nss_nisplus_getspnam_r): Likewise.
14442 * nis/ypclnt.c (__yp_bind, yp_match, yp_all, yp_maplist):
14443 Likewise.
14444 * nscd/aicache.c (addhstaiX): Likewise.
14445 * nscd/cache.c (cache_search, prune_cache): Likewise.
14446 * nscd/connections.c (register_traced_file, send_ro_fd)
14447 (handle_request, nscd_run_prune, nscd_run_worker, fd_ready)
14448 (main_loop_epoll): Likewise.
14449 * nscd/grpcache.c (addgrbyX): Likewise.
14450 * nscd/hstcache.c (addhstbyX): Likewise.
14451 * nscd/initgrcache.c (addinitgroupsX): Likewise.
14452 * nscd/mem.c (gc, mempool_alloc): Likewise.
14453 * nscd/netgroupcache.c (do_notfound, addgetnetgrentX)
14454 (addinnetgrX): Likewise.
14455 * nscd/nscd-client.h (__nscd_acquire_maplock)
14456 (__nscd_drop_map_ref): Likewise.
14457 * nscd/nscd_getai.c (__nscd_getai): Likewise.
14458 * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
14459 * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp, nscd_gethst_r):
14460 Likewise.
14461 * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
14462 * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
14463 * nscd/nscd_helper.c (__readvall, open_socket, __nscd_get_mapping)
14464 (__nscd_get_map_ref): Likewise.
14465 * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
14466 * nscd/nscd_netgroup.c (__nscd_setnetgrent, __nscd_innetgr):
14467 Likewise.
14468 * nscd/pwdcache.c (addpwbyX): Likewise.
14469 * nscd/selinux.c (preserve_capabilities): Likewise.
14470 * nscd/servicescache.c (addservbyX): Likewise.
14471 * nss/nss_files/files-XXX.c (internal_getent): Likewise.
14472 * posix/fnmatch.c (fnmatch): Likewise.
14473 * posix/getopt.c (_getopt_internal_r): Likewise.
14474 * posix/glob.c (glob, glob_in_dir): Likewise.
14475 * posix/wordexp.c (exec_comm_child): Likewise.
14476 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r)
14477 (getanswer_r, gaih_getanswer_slice): Likewise.
14478 * resolv/nss_dns/dns-network.c (getanswer_r): Likewise.
14479 * resolv/res_init.c: Likewise.
14480 * resolv/res_mkquery.c (res_nmkquery): Likewise.
14481 * resolv/res_query.c (__libc_res_nquery): Likewise.
14482 * resolv/res_send.c (__libc_res_nsend, send_vc, reopen, send_dg):
14483 Likewise.
14484 * stdio-common/_i18n_number.h (_i18n_number_rewrite): Likewise.
14485 * stdio-common/perror.c (perror): Likewise.
14486 * stdio-common/printf_fp.c (___printf_fp): Likewise.
14487 * stdio-common/tmpnam.c (tmpnam): Likewise.
14488 * stdio-common/vfscanf.c (_IO_vfscanf_internal): Likewise.
14489 * stdlib/cxa_finalize.c (__cxa_finalize): Likewise.
14490 * stdlib/cxa_thread_atexit_impl.c (__cxa_thread_atexit_impl):
14491 Likewise.
14492 * stdlib/drand48-iter.c (__drand48_iterate): Likewise.
14493 * stdlib/putenv.c (putenv): Likewise.
14494 * stdlib/setenv.c (__add_to_environ): Likewise.
14495 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Likewise.
14496 * stdlib/strtol_l.c (INTERNAL): Likewise.
14497 * string/memmem.c (memmem): Likewise.
14498 * string/strerror.c (strerror): Likewise.
14499 * string/strnlen.c (__strnlen): Likewise.
14500 * string/test-memmem.c (simple_memmem): Likewise.
14501 * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Likewise.
14502 * sunrpc/pm_getport.c (__get_socket): Likewise.
14503 * sysdeps/gnu/unwind-resume.c (init, _Unwind_Resume): Likewise.
14504 * sysdeps/i386/dl-irel.h (elf_irel): Likewise.
14505 * sysdeps/i386/dl-machine.h (elf_machine_runtime_setup)
14506 (elf_machine_rel, elf_machine_lazy_rel, elf_machine_lazy_rela):
14507 Likewise.
14508 * sysdeps/ieee754/dbl-64/e_atanh.c (__ieee754_atanh): Likewise.
14509 * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Likewise.
14510 * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Likewise.
14511 * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r): Likewise.
14512 * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Likewise.
14513 * sysdeps/ieee754/dbl-64/e_j1.c (__ieee754_j1, __ieee754_y1):
14514 Likewise.
14515 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn, __ieee754_yn):
14516 Likewise.
14517 * sysdeps/ieee754/dbl-64/e_log10.c (__ieee754_log10): Likewise.
14518 * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Likewise.
14519 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
14520 * sysdeps/ieee754/dbl-64/e_sinh.c (__ieee754_sinh): Likewise.
14521 * sysdeps/ieee754/dbl-64/s_asinh.c (__asinh): Likewise.
14522 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Likewise.
14523 * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Likewise.
14524 * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Likewise.
14525 * sysdeps/ieee754/dbl-64/s_modf.c (__modf): Likewise.
14526 * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): Likewise.
14527 * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
14528 * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c (__ieee754_acosh):
14529 Likewise.
14530 * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c (__ieee754_log10):
14531 Likewise.
14532 * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c (__ieee754_log2):
14533 Likewise.
14534 * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c (__frexp): Likewise.
14535 * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
14536 * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c (__remquo): Likewise.
14537 * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c (__round): Likewise.
14538 * sysdeps/ieee754/flt-32/e_atanhf.c (__ieee754_atanhf): Likewise.
14539 * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r): Likewise.
14540 * sysdeps/ieee754/flt-32/s_logbf.c (__logbf): Likewise.
14541 * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Likewise.
14542 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_nearbyint): Likewise.
14543 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c (__llrintl): Likewise.
14544 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c (__llroundl): Likewise.
14545 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
14546 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Likewise.
14547 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c (__lroundl): Likewise.
14548 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
14549 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
14550 Likewise.
14551 * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l, __ieee754_y0l):
14552 Likewise.
14553 * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l, __ieee754_y1l):
14554 Likewise.
14555 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl, __ieee754_ynl):
14556 Likewise.
14557 * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
14558 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
14559 * sysdeps/posix/clock_getres.c (hp_timing_getres, realtime_getres):
14560 Likewise.
14561 * sysdeps/posix/fdopendir.c (__fdopendir): Likewise.
14562 * sysdeps/posix/getaddrinfo.c (gaih_inet, getaddrinfo): Likewise.
14563 * sysdeps/posix/opendir.c (__opendirat): Likewise.
14564 * sysdeps/posix/sleep.c: Likewise.
14565 * sysdeps/posix/tempname.c: Likewise.
14566 * sysdeps/powerpc/powerpc32/dl-irel.h (elf_irela): Likewise.
14567 * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
14568 Likewise.
14569 * sysdeps/powerpc/powerpc32/dl-machine.h
14570 (elf_machine_runtime_setup, elf_machine_rela): Likewise.
14571 * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irela): Likewise.
14572 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
14573 * sysdeps/pthread/aio_notify.c (__aio_notify_only): Likewise.
14574 * sysdeps/pthread/aio_suspend.c (do_aio_misc_wait, aio_suspend):
14575 Likewise.
14576 * sysdeps/s390/dl-irel.h (elf_irela): Likewise.
14577 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_runtime_setup)
14578 (elf_machine_rela, elf_machine_lazy_rel): Likewise.
14579 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_runtime_setup)
14580 (elf_machine_rela, elf_machine_lazy_rel): Likewise.
14581 * sysdeps/s390/s390-64/utf16-utf32-z9.c (gconv_end): Likewise.
14582 * sysdeps/s390/s390-64/utf8-utf16-z9.c (gconv_end): Likewise.
14583 * sysdeps/s390/s390-64/utf8-utf32-z9.c (gconv_end): Likewise.
14584 * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
14585 * sysdeps/sparc/sparc32/dl-irel.h (elf_irela): Likewise.
14586 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela)
14587 (elf_machine_lazy_rel): Likewise.
14588 * sysdeps/sparc/sparc64/dl-irel.h (elf_irela): Likewise.
14589 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela)
14590 (elf_machine_lazy_rel): Likewise.
14591 * sysdeps/sparc/sparc64/dl-plt.h (sparc64_fixup_plt): Likewise.
14592 * sysdeps/unix/clock_gettime.c (hp_timing_gettime): Likewise.
14593 * sysdeps/unix/clock_settime.c (hp_timing_settime): Likewise.
14594 * sysdeps/unix/grantpt.c (grantpt): Likewise.
14595 * sysdeps/unix/sysv/linux/accept4.c (accept4): Likewise.
14596 * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME): Likewise.
14597 * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): Likewise.
14598 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
14599 Likewise.
14600 * sysdeps/unix/sysv/linux/faccessat.c (faccessat): Likewise.
14601 * sysdeps/unix/sysv/linux/fchmodat.c (fchmodat): Likewise.
14602 * sysdeps/unix/sysv/linux/fchownat.c (fchownat): Likewise.
14603 * sysdeps/unix/sysv/linux/futimesat.c (futimesat): Likewise.
14604 * sysdeps/unix/sysv/linux/fxstatat64.c (__fxstatat64): Likewise.
14605 * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Likewise.
14606 * sysdeps/unix/sysv/linux/i386/fallocate64.c (fallocate64): Likewise.
14607 * sysdeps/unix/sysv/linux/i386/fallocate.c (fallocate): Likewise.
14608 * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
14609 * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise.
14610 * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
14611 Likewise.
14612 * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c
14613 (__posix_fallocate64_l64): Likewise.
14614 * sysdeps/unix/sysv/linux/i386/posix_fallocate.c
14615 (posix_fallocate): Likewise.
14616 * sysdeps/unix/sysv/linux/i386/scandir64.c (__old_scandir64):
14617 Likewise.
14618 * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
14619 * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request)
14620 (getifaddrs_internal): Likewise.
14621 * sysdeps/unix/sysv/linux/linkat.c (linkat): Likewise.
14622 * sysdeps/unix/sysv/linux/mkdirat.c (mkdirat): Likewise.
14623 * sysdeps/unix/sysv/linux/mq_unlink.c (mq_unlink): Likewise.
14624 * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Likewise.
14625 * sysdeps/unix/sysv/linux/posix_fallocate64.c
14626 (__posix_fallocate64_l64): Likewise.
14627 * sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate):
14628 Likewise.
14629 * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
14630 * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c
14631 (__get_clockfreq): Likewise.
14632 * sysdeps/unix/sysv/linux/readlinkat.c (readlinkat): Likewise.
14633 * sysdeps/unix/sysv/linux/recvmmsg.c (recvmmsg): Likewise.
14634 * sysdeps/unix/sysv/linux/renameat.c (renameat): Likewise.
14635 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
14636 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
14637 * sysdeps/unix/sysv/linux/sched_setaffinity.c: Likewise.
14638 * sysdeps/unix/sysv/linux/sendmmsg.c (__sendmmsg): Likewise.
14639 * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs, shm_open):
14640 Likewise.
14641 * sysdeps/unix/sysv/linux/sleep.c (__sleep): Likewise.
14642 * sysdeps/unix/sysv/linux/symlinkat.c (symlinkat): Likewise.
14643 * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Likewise.
14644 * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Likewise.
14645 * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
14646 * sysdeps/unix/sysv/linux/unlinkat.c (unlinkat): Likewise.
14647 * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c (__fxstatat):
14648 Likewise.
14649 * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
14650 (posix_fallocate): Likewise.
14651 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
14652 * sysdeps/unix/sysv/linux/xmknodat.c (__xmknodat): Likewise.
14653 * sysdeps/x86_64/dl-irel.h (elf_irela): Likewise.
14654 * sysdeps/x86_64/dl-machine.h (elf_machine_runtime_setup)
14655 (elf_machine_rela, elf_machine_rela_relative)
14656 (elf_machine_lazy_rel): Likewise.
14657 * time/asctime.c (asctime_internal): Likewise.
14658 * time/tzfile.c (__tzfile_read, __tzfile_compute): Likewise.
14659 * time/tzset.c (__tzset_parse_tz): Likewise.
14660 * wcsmbs/mbrtoc16.c (mbrtoc16): Likewise.
14661 * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
14662 * wcsmbs/wcsmbsload.c (__wcsmbs_load_conv): Likewise.
14663 * wcsmbs/wcsmbsload.h: Likewise.
14664
14665 [BZ #15894]
14666 * stdlib/setenv.c (__add_to_environ): Remove duplicate code.
14667
14668 * malloc/arena.c (grow_heap, get_free_list, reused_arena)
14669 (arena_get2): Remove THREAD_STATS conditionals.
14670 * malloc/malloc.c (__malloc_assert, __libc_realloc, _int_free)
14671 (__malloc_stats, int): Likewise.
14672
146732014-02-08 Mike Frysinger <vapier@gentoo.org>
14674
14675 * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs): Compare
14676 f.f_type to RAMFS_MAGIC too. Compare mp->mnt_type to shm too.
14677
14678 * manual/setjmp.texi: Fix typos/grammar errors.
14679
14680 * debug/tst-backtrace4.c (handle_signal): Add NUM_FUNCTIONS to output.
14681 Only return early when n is <= 0. Delete unused return statement.
14682
14683 * debug/Makefile (CFLAGS-tst-longjmp_chk3.c): Define.
14684 (CPPFLAGS-tst-longjmp_chk3.c): Likewise.
14685 * debug/tst-longjmp_chk3.c: New file.
14686
14687 * benchtests/bench-strcpy_chk.c: Move test-skeleton.c to top.
14688 (test_main): Replace code with set_fortify_handler call.
14689 * debug/test-strcpy_chk.c: Likewise.
14690 * debug/tst-chk1.c: Likewise.
14691 * debug/tst-longjmp_chk.c: Likewise.
14692 * test-skeleton.c: Include fcntl.h & paths.h
14693 (set_fortify_handler): Define.
14694
14695 * debug/tst-longjmp_chk.c: Add header comment and include
14696 ../test-skeleton.c.
14697 (do_test): Mark static.
14698 (TEST_FUNCTION): Define.
14699
14700 * sysdeps/unix/sysv/linux/bits/in.h (IP_NODEFRAG): Define.
14701 (IP_PMTUDISC_INTERFACE): Likewise.
14702 (IP_MULTICAST_IF): Likewise.
14703 (IP_MULTICAST_TTL): Likewise.
14704 (IP_MULTICAST_LOOP): Likewise.
14705 (IP_ADD_MEMBERSHIP): Likewise.
14706 (IP_DROP_MEMBERSHIP): Likewise.
14707 (IP_UNBLOCK_SOURCE): Likewise.
14708 (IP_BLOCK_SOURCE): Likewise.
14709 (IP_ADD_SOURCE_MEMBERSHIP): Likewise.
14710 (IP_DROP_SOURCE_MEMBERSHIP): Likewise.
14711 (IP_MSFILTER): Likewise.
14712 (MCAST_JOIN_GROUP): Likewise.
14713 (MCAST_BLOCK_SOURCE): Likewise.
14714 (MCAST_UNBLOCK_SOURCE): Likewise.
14715 (MCAST_LEAVE_GROUP): Likewise.
14716 (MCAST_JOIN_SOURCE_GROUP): Likewise.
14717 (MCAST_LEAVE_SOURCE_GROUP): Likewise.
14718 (MCAST_MSFILTER): Likewise.
14719 (IP_MULTICAST_ALL): Likewise.
14720 (IP_UNICAST_IF): Likewise.
14721
14722 * timezone/Makefile: Delete $(have-ksh) check.
14723 ($(objpfx)tzselect): Change $(KSH) to $(BASH).
14724 * timezone/tzselect.ksh: Add +x mode bits.
14725
14726 * sysdeps/unix/sysv/linux/linux_fsinfo.h (AFS_SUPER_MAGIC): Define.
14727 (ANON_INODE_FS_MAGIC): Likewise.
14728 (BDEVFS_MAGIC): Likewise.
14729 (BINFMTFS_MAGIC): Likewise.
14730 (BTRFS_TEST_MAGIC): Likewise.
14731 (CRAMFS_MAGIC_WEND): Likewise.
14732 (DEBUGFS_MAGIC): Likewise.
14733 (ECRYPTFS_SUPER_MAGIC): Likewise.
14734 (EXT3_SUPER_MAGIC): Likewise.
14735 (EXT4_SUPER_MAGIC): Likewise.
14736 (FUTEXFS_SUPER_MAGIC): Likewise.
14737 (HOSTFS_SUPER_MAGIC): Likewise.
14738 (HUGETLBFS_MAGIC): Likewise.
14739 (MINIX3_SUPER_MAGIC): Likewise.
14740 (MTD_INODE_FS_MAGIC): Likewise.
14741 (NILFS_SUPER_MAGIC): Likewise.
14742 (OPENPROM_SUPER_MAGIC): Likewise.
14743 (PIPEFS_MAGIC): Likewise.
14744 (PSTOREFS_MAGIC): Likewise.
14745 (QNX6_SUPER_MAGIC): Likewise.
14746 (RAMFS_MAGIC): Likewise.
14747 (REISERFS_SUPER_MAGIC_STRING): Likewise.
14748 (REISER2FS_SUPER_MAGIC_STRING): Likewise.
14749 (REISER2FS_JR_SUPER_MAGIC_STRING): Likewise.
14750 (SECURITYFS_MAGIC): Likewise.
14751 (SELINUX_MAGIC): Likewise.
14752 (SMACK_MAGIC): Likewise.
14753 (SOCKFS_MAGIC): Likewise.
14754 (SQUASHFS_MAGIC): Likewise.
14755 (STACK_END_MAGIC): Likewise.
14756 (TMPFS_MAGIC): Likewise.
14757 (USBDEVICE_SUPER_MAGIC): Likewise.
14758 (V9FS_MAGIC): Likewise.
14759 (XENFS_SUPER_MAGIC): Likewise.
14760 (CRAMFS_MAGIC): Fix typo in comment.
14761 (EXT2_SUPER_MAGIC): Update comment.
14762 (USBDEVFS_SUPER_MAGIC): Fix sorting order by moving further down.
14763
147642014-02-08 Joseph Myers <joseph@codesourcery.com>
14765
14766 * sysdeps/arm: Move directory from ports/sysdeps/arm.
14767 * sysdeps/unix/arm: Move directory from ports/sysdeps/unix/arm.
14768 * sysdeps/unix/sysv/linux/arm: Move directory from
14769 ports/sysdeps/unix/sysv/linux/arm.
14770 * README: Update listing for arm-*-linux-gnueabi.
14771
14772 * README: Remove mention of am33.
14773
147742014-02-07 Roland McGrath <roland@hack.frob.com>
14775
14776 * bits/sigset.h (__sigemptyset): Use a statement expression rather
14777 than the comma operator, to avoid "rhs of comma has no effect"
14778 compiler warnings.
14779 (__sigfillset, __sigandset, __sigorset): Likewise.
14780 * include/signal.h (__sigemptyset): Likewise.
14781 * sysdeps/generic/malloc-machine.h (mutex_lock): Likewise.
14782
147832014-02-07 Allan McRae <allan@archlinux.org>
14784
14785 * version.h (RELEASE): Set to "development".
14786 (VERSION): Set to "2.19.90"
14787 * NEWS: Add 2.20 section.
14788
147892014-02-06 Carlos O'Donell <carlos@redhat.com>
14790
14791 [BZ #16529]
14792 * inet/netinet/in.h: Remove comma after IPPROTO_MH.
14793
147942014-02-06 Siddhesh Poyarekar <siddhesh@redhat.com>
14795
14796 * manual/contrib.texi: Update entry for Carlos O'Donell,
14797 Joseph Myers, Roland McGrath, Alexandre Oliva and Ryan Arnold.
14798
147992014-02-05 Carlos O'Donell <carlos@rehdat.com>
14800
14801 * sysdeps/unix/sysv/linux/kernel-features.h: Fix comment.
14802
14803 * sysdeps/unix/sysv/linux/kernel-features.h
14804 [__LINUX_KERNEL_VERSION >= 0x020621]
14805 (__ASSUME_PROC_PID_TASK_COMM): Define.
14806
148072014-02-05 Siddhesh Poyarekar <siddhesh@redhat.com>
14808
14809 [BZ #16398]
14810 * libio/wfileops.c (_IO_wfile_seekoff): Break out form
14811 conversion when destination buffer does not have enough space.
14812 * libio/tst-ftell-partial-wide.c: New test case.
14813 * libio/Makefile (tests): Add tst-ftell-partial-wide.
14814
14815 * manual/contrib.texi: Update entry for Ondrej Bilka, Will
14816 Newton and Alexandre Oliva. Add entries for Steve Ellcey, Chris
14817 Leonard and Allan McRae.
14818
148192014-02-04 David S. Miller <davem@davemloft.net>
14820
14821 * sysdeps/sparc/fpu/libm-test-ulps: Update for some 64-bit differences from
14822 32-bit.
14823
148242014-02-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
14825
14826 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist:
14827 New file
14828 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist:
14829 New file
14830 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist:
14831 New file.
14832 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist:
14833 New file.
14834 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist:
14835 New file.
14836 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist:
14837 New file.
14838 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist:
14839 New file.
14840 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist:
14841 New file.
14842 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist:
14843 New file.
14844 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist:
14845 New file.
14846 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist:
14847 New file.
14848 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist:
14849 New file.
14850 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist:
14851 New file.
14852
148532014-02-01 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
14854
14855 * nptl/shlib-versions: Change powerpc*le start to 2.17.
14856 * shlib-versions: Likewise.
14857
148582014-02-04 Roland McGrath <roland@hack.frob.com>
14859 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
14860
14861 * sysdeps/powerpc/Makefile [$(config-machine) ends with 'le']
14862 (abilist-pattern): New variable, set to %-le.abilist.
14863
14864 * Makerules (abilist-pattern): New variable.
14865 (vpath): Use $(abilist-pattern) in place of %.abilist.
14866 (check-abi-% pattern rule): Likewise.
14867 (check-abi, update-abi): Likewise.
14868
148692014-02-04 Eric Wong <normalperson@yhbt.net>
14870
14871 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
14872
148732014-02-03 Carlos O'Donell <carlos@redhat.com>
14874
14875 * manual/startup.texi: Add next, previous, and top entries for
14876 the `Program Arguments' and `Environment Variables' nodes.
14877
148782014-02-03 Alexandre Oliva <aoliva@redhat.com>
14879
14880 * manual/macros.texi: Add comments before MTASC-safety macros.
14881
14882 * manual/users.texi: Document MTASC-safety properties.
14883
14884 * manual/threads.texi (pthread_key_create, pthread_key_delete)
14885 (pthread_getspecific, pthread_setspecific): Format with
14886 @deftypefun, and add @safety note.
14887 * manual/signal.texi: Move comments that analyze the above
14888 functions to their home place.
14889
148902014-02-03 Allan McRae <allan@archlinux.org>
14891
14892 * po/sl.po: Update Slovenian translation from translation project.
14893
148942014-02-02 Alexandre Oliva <aoliva@redhat.com>
14895
14896 * manual/time.texi (timegm): Add missing blank after @c.
14897 Reported by Joseph Myers <joseph@codesourcery.com>.
14898
148992014-02-01 Alexandre Oliva <aoliva@redhat.com>
14900
14901 * manual/check-safety.sh: New.
14902 * manual/Makefile ($(objpfx)stamp-summary): Run it.
14903
14904 * manual/terminal.texi: Document MTASC-safety properties.
14905
14906 * manual/filesys.texi: Document MTASC-safety properties.
14907
14908 * manual/errno.texi: Document MTASC-safety properties.
14909
14910 * manual/intro.texi: Document safety identifiers and
14911 conditionals.
14912
14913 * manual/string.texi (wcstok): Fix prototype.
14914 (wcstok, strtok, strtok_r): Adjust reentrancy remarks.
14915
14916 * manual/time.texi: Document MTASC-safety properties.
14917
14918 * manual/string.texi: Document MTASC-safety properties.
14919
14920 * manual/threads.texi: Document MTASC-safety properties.
14921
14922 * manual/stdio.texi: Document MTASC-safety properties.
14923
14924 * manual/syslog.texi: Document MTASC-safety properties.
14925
14926 * manual/sysinfo.texi: Document MTASC-safety properties.
14927
14928 * manual/startup.texi: Document MTASC-safety properties.
14929
14930 * manual/socket.texi: Document MTASC-safety properties.
14931
14932 * manual/signal.texi: Document MTASC-safety properties.
14933
149342014-01-31 Alexandre Oliva <aoliva@redhat.com>
14935
14936 * manual/setjmp.texi: Document MTASC-safety properties.
14937
14938 * manual/search.texi: Document MTASC-safety properties.
14939
14940 * manual/resource.texi: Document MTASC-safety properties.
14941
14942 * manual/process.texi: Document MTASC-safety properties.
14943
14944 * manual/platform.texi: Document MTASC-safety properties.
14945
14946 * manual/pipe.texi: Document MTASC-safety properties.
14947
14948 * manual/pattern.texi: Document MTASC-safety properties.
14949
14950 * manual/message.texi: Document MTASC-safety properties.
14951
14952 [BZ #12751]
14953 * manual/memory.texi: Document MTASC-safety properties.
14954
14955 * manual/math.texi: Document MTASC-safety properties.
14956
14957 * manual/locale.texi: Document MTASC-safety properties.
14958
14959 * manual/llio.texi: Document MTASC-safety properties.
14960
14961 * manual/libdl.texi: New.
14962
14963 * manual/lang.texi: Document MTASC-safety properties.
14964
14965 * manual/job.texi: Document MTASC-safety properties.
14966
14967 * manual/getopt.texi: Document MTASC-safety properties.
14968
14969 * manual/ctype.texi: Document MTASC-safety properties.
14970
149712014-01-31 Maciej W. Rozycki <macro@codesourcery.com>
14972
14973 [BZ #16046]
14974 * csu/libc-tls.c (static_map): Remove variable.
14975 (__libc_setup_tls): Use main executable's link map for TLS data.
14976 * elf/dl-close.c (_dl_close_worker) [!SHARED]: Remove special
14977 casing for LM_ID_BASE and GL(dl_nns).
14978 * elf/dl-iteratephdr.c [!SHARED] (dl_iterate_phdr): Remove
14979 function. Alias dl_iterate_phdr to __dl_iterate_phdr.
14980 * elf/dl-load.c (_dl_map_object) [!SHARED]: Remove special
14981 casing for GL(dl_ns)[LM_ID_BASE]._ns_loaded.
14982 * elf/dl-support.c (_dl_main_map): Also initialize l_flags_1
14983 member.
14984 (_dl_non_dynamic_init): Also initialize _dl_main_map's l_phdr and
14985 l_phnum members.
14986
149872014-01-30 Alexandre Oliva <aoliva@redhat.com>
14988
14989 * manual/debug.texi: Document MTASC-safety properties.
14990
149912014-01-29 H.J. Lu <hongjiu.lu@intel.com>
14992
14993 [BZ #16510]
14994 * sysdeps/x86/fpu/bits/mathinline.h: Check __SSE2_MATH__ instead
14995 of __x86_64__ when disabling x87 inline functions.
14996
149972014-01-29 Alexandre Oliva <aoliva@redhat.com>
14998
14999 * manual/charset.texi: Document MTASC-safety properties.
15000
15001 * manual/crypt.texi: Document MTASC-safety properties.
15002
15003 * manual/conf.texi: Document MTASC-safety properties.
15004
15005 * manual/arith.texi: Document MTASC-safety properties.
15006
15007 * manual/argp.texi: Document MTASC-safety properties.
15008
15009 * manual/macros.texi: Introduce macros to document multi
15010 thread, asynchronous signal and asynchronous cancellation
15011 safety properties.
15012 * manual/intro.texi: Introduce the properties themselves.
15013
150142014-01-27 Kaz Kojima <kkojima@rr.iij4u.or.jp>
15015
15016 * sysdeps/sh/sh4/Makefile: New file.
15017
150182014-01-27 Andreas Schwab <schwab@linux-m68k.org>
15019
15020 * math/gen-libm-test.pl ($srcdir): New variable.
15021 ($auto_input): Use it.
15022
150232014-01-27 Siddhesh Poyarekar <siddhesh@redhat.com>
15024
15025 [BZ #16506]
15026 * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): Avoid
15027 access beyond array bounds when parsing netgroups file.
15028
15029 * nscd/netgroupcache.c (addgetnetgrentX): Compute offset from
15030 the old buffer before realloc.
15031
150322014-01-27 Allan McRae <allan@archlinux.org>
15033
15034 * po/fr.po: Update French translation from translation project.
15035
150362014-01-26 Kaz Kojima <kkojima@rr.iij4u.or.jp>
15037
15038 * sysdeps/sh/libm-test-ulps: Regenerate.
15039
150402014-01-24 David S. Miller <davem@davemloft.net>
15041
15042 * sysdeps/sparc/fpu/libm-test-ulps: Regenerate.
15043
150442014-01-25 Kaz Kojima <kkojima@rr.iij4u.or.jp>
15045
15046 * sysdeps/sh/sh4/fpu/libm-test-ulps: Move to ...
15047 * sysdeps/sh/libm-test-ulps: ... here and regenerated.
15048
150492013-01-24 Siddhesh Poyarekar <siddhesh@redhat.com>
15050
15051 [BZ #16474]
15052 * nscd/netgroupcache.c (addgetnetgrentX): Adjust triplet
15053 string pointers after reallocation.
15054
150552014-01-24 Kaz Kojima <kkojima@rr.iij4u.or.jp>
15056
15057 * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: Use __SH4__ and
15058 __SH4A__ instead of __SH_FPU_ANY__.
15059
150602014-01-23 Kaz Kojima <kkojima@rr.iij4u.or.jp>
15061
15062 * sysdeps/sh/fpu_control.h: New file.
15063 * sysdeps/sh/sh4/fpu/fpu_control.h: Remove.
15064 * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: New file.
15065 * sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h: Remove.
15066 * sysdeps/unix/sysv/linux/sh/sh3/sys: Remove directory.
15067 * sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h: Remove.
15068 * sysdeps/unix/sysv/linux/sh/sh4/sys: Remove directory.
15069 * sysdeps/sh/sys/ucontext.h: Remove.
15070 * sysdeps/sh/sys: Remove directory.
15071
150722014-01-22 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
15073
15074 * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Merge into
15075 s390/sys/ucontext.h.
15076 * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Likewise.
15077 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: New file.
15078
150792014-01-20 H.J. Lu <hongjiu.lu@intel.com>
15080
15081 [BZ #15605]
15082 * sysdeps/x86_64/x32/symbol-hacks.h: Include generic symbol-hacks.h.
15083
150842014-01-20 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
15085
15086 [BZ#16431]
15087 * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c (__gettimeofday):
15088 Adjust the vDSO correctly for internal calls.
15089 * sysdeps/unix/sysv/linux/powerpc/time.c (time): Likewise.
15090
150912014-01-20 Allan McRae <allan@archlinux.org>
15092
15093 * po/ca.po: Update Catalan translation from translation project.
15094
150952014-01-16 Mike Frysinger <vapier@gentoo.org>
15096
15097 * sysdeps/s390/sotruss-lib.c: New file.
15098
150992014-01-16 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
15100
15101 [BZ#16430]
15102 * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c
15103 (__GI___gettimeofday): Alias for a different internal symbol to avoid
15104 local calls issues by not having a PLT stub required for IFUNC calls.
15105 * sysdeps/unix/sysv/linux/powerpc/time.c (__GI_time): Likewise.
15106
151072014-01-16 Joseph Myers <joseph@codesourcery.com>
15108
15109 * math/test-fpucw-ieee.c: Use <> in #include of test-fpucw.c.
15110 * math/test-fpucw-static.c: Likewise.
15111
151122013-01-16 Siddhesh Poyarekar <siddhesh@redhat.com>
15113
15114 [BZ #16453]
15115 * nscd/netgroupcache.c (addgetnetgrentX): Don't use alloca.
15116
151172014-01-15 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
15118
15119 * sysdeps/powerpc/sotruss-lib.c: New file: sotruss-lib.so
15120 implementation for powerpc.
15121
151222014-01-15 Ondřej Bílka <neleai@seznam.cz>
15123
15124 [BZ #14782]
15125 * sysdeps/posix/system.c (__libc_system): Do not enable
15126 asynchronous cancellation.
15127
151282014-01-15 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
15129
15130 [BZ #16427]
15131 * sysdeps/ieee754/ldbl-128/w_expl.c (__expl): Invoke the non-IEEE
15132 handling only for numbers special also in the IEEE case.
15133
151342014-01-15 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
15135
15136 * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
15137
151382014-01-11 Allan McRae <allan@archlinux.org>
15139
15140 * po/bg.po: Update Bulgarian translation from translation project.
15141
15142 * po/de.po: Update German translation from translation project.
15143
151442014-01-10 Roland McGrath <roland@hack.frob.com>
15145
15146 * sysdeps/generic/gcc-compat.h: New file.
15147
151482014-01-10 Siddhesh Poyarekar <siddhesh@redhat.com>
15149
15150 * benchtests/asin-inputs: Correct slow inputs.
15151 * benchtests/acos-inputs: Likewise.
15152
151532014-01-10 Allan McRae <allan@archlinux.org>
15154
15155 * po:sv.po: Update Swedish translation from translation project.
15156
15157 * po/vi.po: Update Vietnamese translation from translation project.
15158
15159 * po/eo.po: Update Esperanto translation from translation project.
15160
15161 * po/cs.po: Update Czech translation from translation project.
15162
15163 * po/nl.po: Update Dutch translation from translation project.
15164
15165 * po/pl.po: Update Polish translation from translation project.
15166
15167 * po/ru.po: Update Russian translation from translation project.
15168
15169 * po/uk.po: Update Ukrainian translation from translation project.
15170
151712014-01-08 Brooks Moses <bmoses@google.com>
15172
15173 * elf/dl-load.c: Fix comment typo.
15174
151752014-01-08 Carlos O'Donell <carlos@redhat.com>
15176
15177 * po/header.pot: Rename to...
15178 * po/pot.header: ... this.
15179 * po/Makefile: Use pot.header.
15180
151812014-01-08 Yuriy Kaminskiy <yumkam@gmail.com>
15182 Maxim Kuvyrkov <maxim@kugelworks.com>
15183
15184 [BZ #16394]
15185 * sysdeps/i386/i686/memmove.S (memmove): Compare distance between
15186 SRC and DEST against LEN.
15187
151882014-01-08 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
15189
15190 [BZ #16414]
15191 * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: Remove wrong
15192 implementation.
15193 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Remove bogus comment.
15194
151952014-01-08 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
15196
15197 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
15198
151992014-01-08 Joseph Myers <joseph@codesourcery.com>
15200
15201 [BZ #16408]
15202 * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Use __expl
15203 for large positive arguments.
15204
152052014-01-07 Joseph Myers <joseph@codesourcery.com>
15206
15207 * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
15208
15209 * math/auto-libm-test-in: Mark various tests with
15210 xfail-rounding:ldbl-128ibm.
15211 * math/auto-libm-test-out: Regenerated.
15212
15213 [BZ #16407]
15214 * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl):
15215 Increase overflow threshold.
15216
152172014-01-07 Ondřej Bílka <neleai@seznam.cz>
15218
15219 [BZ #14286]
15220 * stdio-common/vfprintf.c: Check for integer overflow.
15221
152222014-01-07 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
15223
15224 * sysdeps/s390/dl-tls.h: sysdeps/s390/dl-tls.h: Remove casts for
15225 the first argument and return value of __tls_get_addr_internal.
15226
152272014-01-07 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
15228
15229 * sysdeps/s390/s390-32/dl-machine.h: Gate the definition of refsym
15230 also with !RTLD_BOOTSTRAP to get rid of unused variable warning.
15231
152322014-01-07 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
15233
15234 * sysdeps/s390/Makefile: Build rtld-global-offsets.sym.
15235 * sysdeps/s390/rtld-global-offsets.sym: New file.
15236 * sysdeps/unix/sysv/linux/s390/Versions: Add getcontext as new
15237 GLIBC_2.19 symbol.
15238 * sysdeps/unix/sysv/linux/s390/getcontext.S: New file.
15239 * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Rename to ...
15240 * sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S:
15241 ... this.
15242 * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Rename to ...
15243 * sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S:
15244 ... this.
15245 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
15246 Regenerate.
15247 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
15248 Regenerate.
15249 * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Restore upper
15250 halfs of GPRs for high_gprs contexts.
15251 * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Save and
15252 restore upper halfs of GPRs for high_gprs contexts. Copy uc_flags
15253 field.
15254 * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Copy
15255 uc_flags field.
15256 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Split into 32 and
15257 64 bit versions:
15258 * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Add field
15259 for high GPRs (uc_high_gprs) and for future extensions
15260 (__reserved).
15261 * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Add field
15262 for future extensions (__reserved).
15263 * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: Split into 32 and
15264 64 bit versions:
15265 * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym: Add
15266 SC_HIGHGPRS offset definition.
15267 * sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.sym: New file.
15268 * sysdeps/unix/sysv/linux/s390/rtld-getcontext.S: New file.
15269
15270 * Versions.def: Add GLIBC_2.19 for libpthread.
15271 * nptl/sysdeps/unix/sysv/linux/s390/Versions: Add longjmp and
15272 siglongjmp for libpthread with GLIBC_2.19 symver.
15273 * nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c: New file.
15274 * sysdeps/s390/Makefile: Build v1-longjmp.c and v1-sigjmp.c.
15275 * sysdeps/s390/Versions: New GLIBC_2.19 and GLIBC_PRIVATE symbols.
15276 * sysdeps/s390/__longjmp.c: New file.
15277 * sysdeps/s390/bits/setjmp.h: Add new fields to __s390_jmp_buf.
15278 * sysdeps/s390/longjmp.c: New file.
15279 * sysdeps/s390/setjmp.S: New file.
15280 * sysdeps/s390/sigjmp.S: New file.
15281 * sysdeps/s390/v1-longjmp.c: New file.
15282 * sysdeps/s390/v1-setjmp.h: New file.
15283 * sysdeps/s390/v1-sigjmp.c: New file.
15284 * sysdeps/unix/sysv/linux/s390/Makefile: Build __longjmp_chk.
15285 * sysdeps/unix/sysv/linux/s390/Versions: Add __longjmp_chk with
15286 GLIBC_2.19 version.
15287 * sysdeps/unix/sysv/linux/s390/longjmp_chk.c: New file.
15288 * sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c: Provide
15289 versioned symbols for ____longjmp_chk.
15290 * sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c:
15291 Likewise.
15292 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
15293 Regenerate.
15294 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
15295 Regenerate.
15296 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
15297 Regenerate.
15298 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
15299 Regenerate.
15300 * sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c: New file.
15301 * sysdeps/s390/s390-32/__longjmp.c: Rename to ...
15302 * sysdeps/s390/s390-32/__longjmp-common.c: ... this.
15303 * sysdeps/s390/s390-32/setjmp.S: Rename and adjust to ...
15304 * sysdeps/s390/s390-32/setjmp-common.S: ... this.
15305 * sysdeps/s390/s390-64/__longjmp.c: Rename to ...
15306 * sysdeps/s390/s390-64/__longjmp-common.c: ... this.
15307 * sysdeps/s390/s390-64/setjmp.S: Rename and adjust to ...
15308 * sysdeps/s390/s390-64/setjmp-common.S: ... this.
15309 * sysdeps/s390/rtld-__longjmp.c: New file.
15310 * sysdeps/s390/rtld-setjmp.S: New file.
15311
153122014-01-06 Joseph Myers <joseph@codesourcery.com>
15313
15314 [BZ #16400]
15315 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
15316 Return -__logl (x) for small positive arguments without evaluating
15317 a polynomial.
15318
153192014-01-06 Mike Frysinger <vapier@gentoo.org>
15320
15321 * sysdeps/unix/sysv/linux/sys/ptrace.h (ptrace_peeksiginfo_args):
15322 Rename to ...
15323 (__ptrace_peeksiginfo_args): ... this.
15324 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
15325 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
15326 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
15327
153282014-01-06 Allan McRae <allan@archlinux.org>
15329
15330 * inet/netinet/in.h: Fix typo in comment.
15331
153322014-01-05 Andreas Jaeger <aj@suse.de>
15333
15334 * sysdeps/i386/fpu/libm-test-ulps: Update.
15335
153362014-01-05 Allan McRae <allan@archlinux.org>
15337
15338 * po/libc.pot: Regenerated.
15339
15340 * malloc/memusagestat.c: Fix gettext call formatting.
15341
153422014-01-04 Sami Kerola <kerolasa@iki.fi>
15343
15344 * nscd/nscd.c: Improve usage() output.
15345
153462014-01-04 Mike Frysinger <vapier@gentoo.org>
15347
15348 * config.h.in: Add HAVE_LINUX_FANOTIFY_H template.
15349 * sysdeps/unix/sysv/linux/configure: Regenerated.
15350 * sysdeps/unix/sysv/linux/configure.ac: Call AC_DEFINE.
15351 * sysdeps/unix/sysv/linux/tst-fanotify.c: Include config.h.
15352
153532014-01-03 Joseph Myers <joseph@codesourcery.com>
15354
15355 [BZ #16390]
15356 * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
15357 (CFLAGS-e_atan2l.c): Use -fno-builtin-fabsl.
15358
153592014-01-03 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
15360
15361 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: Remove
15362 extra tokens at end of #undef directive.
15363 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: Likewise.
15364 * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: Likewise.
15365 * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c: Likewise.
15366
153672014-01-03 Joseph Myers <joseph@codesourcery.com>
15368
15369 * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
15370
15371 * math/auto-libm-test-in: Mark various tests with
15372 xfail-rounding:ldbl-128ibm.
15373 * math/auto-libm-test-out: Regenerated.
15374
153752014-01-02 Joseph Myers <joseph@codesourcery.com>
15376
15377 [BZ #16386]
15378 * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Adjust
15379 numbers with subnormal high part when calculating exponent.
15380
15381 [BZ #16385]
15382 * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Use fabsl not
15383 fabs.
15384
15385 [BZ #16384]
15386 * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (ln2): Initialize with
15387 M_LN2l.
15388 (__ieee754_acoshl): Use __log1pl not __log1p.
15389
153902013-01-02 Ondřej Bílka <neleai@seznam.cz>
15391
15392 * malloc/arena.c (malloc_atfork, free_atfork, ptmalloc_lock_all)
15393 (ptmalloc_unlock_all, ptmalloc_unlock_all2, next_env_entry)
15394 (__failing_morecore, ptmalloc_init, dump_heap, new_heap)
15395 (grow_heap, heap_trim, _int_new_arena, get_free_list)
15396 (reused_arena, arena_get2): Convert to GNU style.
15397 * malloc/hooks.c (memalign_hook_ini, __malloc_check_init)
15398 (mem2mem_check, mem2chunk_check, top_check, realloc_check)
15399 (memalign_check, __malloc_set_state): Likewise.
15400 * malloc/mallocbug.c (main): Likewise.
15401 * malloc/malloc.c (__malloc_assert, malloc_init_state)
15402 (free_perturb, do_check_malloced_chunk, do_check_malloc_state)
15403 (sysmalloc, systrim, mremap_chunk, __libc_malloc, __libc_free)
15404 (__libc_realloc, _mid_memalign, _int_malloc, malloc_consolidate)
15405 (_int_realloc, _int_memalign, mtrim, musable, __libc_mallopt)
15406 (__posix_memalign, malloc_info): Likewise.
15407 * malloc/malloc.h: Likewise.
15408 * malloc/mcheck.c (checkhdr, unlink_blk, link_blk, freehook)
15409 (mallochook, memalignhook, reallochook, mabort): Likewise.
15410 * malloc/mcheck.h: Likewise.
15411 * malloc/memusage.c (update_data, me, malloc, realloc, calloc)
15412 (free, mmap, mmap64, mremap, munmap, dest): Likewise.
15413 * malloc/memusagestat.c (main, parse_opt, more_help): Likewise.
15414 * malloc/morecore.c (__default_morecore): Likewise.
15415 * malloc/mtrace.c (tr_break, lock_and_info, mtrace): Likewise.
15416 * malloc/obstack.c (_obstack_begin, _obstack_newchunk)
15417 (_obstack_allocated_p, obstack_free, _obstack_memory_used)
15418 (print_and_abort): Likewise.
15419 * malloc/obstack.h: Likewise.
15420 * malloc/set-freeres.c (__libc_freeres): Likewise.
15421 * malloc/tst-mallocstate.c (main): Likewise.
15422 * malloc/tst-mtrace.c (main): Likewise.
15423 * malloc/tst-realloc.c (do_test): Likewise.
15424
154252013-01-02 Siddhesh Poyarekar <siddhesh@redhat.com>
15426
15427 [BZ #16366]
15428 * nscd/netgroupcache.c (do_notfound): New function.
15429 (addgetnetgrentX): Use it.
15430
15431 [BZ # 16365]
15432 * nscd/netgroupcache.c (addgetnetgrentX): Break if status is
15433 NSS_STATUS_NOTFOUND.
15434
154352014-01-01 Joseph Myers <joseph@codesourcery.com>
15436
15437 * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
15438 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
15439
154402014-01-01 Allan McRae <allan@archlinux.org>
15441
15442 * scripts/update-copyrights: Update configure input file suffix.
15443
15444 * NEWS: Update copyright year.
15445 * catgets/gencat.c: Likewise.
15446 * csu/version.c: Likewise.
15447 * debug/catchsegv.sh: Likewise.
15448 * debug/pcprofiledump.c: Likewise.
15449 * debug/xtrace.sh: Likewise.
15450 * elf/ldconfig.c: Likewise.
15451 * elf/ldd.bash.in: Likewise.
15452 * elf/pldd.c: Likewise.
15453 * elf/sotruss.ksh: Likewise.
15454 * elf/sprof.c: Likewise.
15455 * iconv/iconv_prog.c: Likewise.
15456 * iconv/iconvconfig.c: Likewise.
15457 * locale/programs/locale.c: Likewise.
15458 * locale/programs/localedef.c: Likewise.
15459 * login/programs/pt_chown.c: Likewise.
15460 * malloc/memusage.sh: Likewise.
15461 * malloc/memusagestat.c: Likewise.
15462 * malloc/mtrace.pl: Likewise.
15463 * manual/libc.texinfo: Likewise.
15464 * nscd/nscd.c: Likewise.
15465 * nss/getent.c: Likewise.
15466 * nss/makedb.c: Likewise.
15467 * posix/getconf.c: Likewise.
15468 * scripts/test-installation.pl: Likewise.
15469
15470 * All files with FSF copyright notices: Update copyright dates
15471 using scripts/update-copyrights.
15472 * intl/plural.c: Regenerated.
15473 * locale/programs/charmap-kw.h: Likewise.
15474 * locale/programs/locfile-kw.h: Likewise.
15475
154762013-12-31 Mike Frysinger <vapier@gentoo.org>
15477
15478 * sysdeps/unix/sysv/linux/configure: Regenerated.
15479 * sysdeps/unix/sysv/linux/configure.ac: Call AC_CHECK_HEADER on
15480 the linux/fanotify.h header.
15481 * sysdeps/unix/sysv/linux/tst-fanotify.c: Check if
15482 HAVE_LINUX_FANOTIFY_H is defined.
15483
154842013-12-31 Siddhesh Poyarekar <siddhesh@redhat.com>
15485
15486 * benchtests/cos-inputs: New inputs.
15487 * benchtests/sin-inputs: Likewise.
15488
15489 * benchtests/atan-inputs: New inputs. Fix name of multiple
15490 precision fallback inputs.
15491
15492 * benchtests/atanh-inputs: New inputs.
15493 * benchtests/tanh-inputs: Likewise.
15494
15495 * benchtests/acosh-inputs: New inputs.
15496 * benchtests/asinh-inputs: Likewise.
15497
15498 * benchtests/cosh-inputs: New inputs.
15499 * benchtests/sinh-inputs: Likewise.
15500
15501 * benchtests/acos-inputs: Add more inputs.
15502 * benchtests/asin-inputs: Likewise.
15503
155042013-12-30 Ville Skytta <ville.skytta@iki.fi>
15505
15506 [BZ #16375]
15507 * manual/arith.texi: Fix spelling.
15508 * manual/charset.texi: Likewise.
15509 * manual/errno.texi: Likewise.
15510 * manual/filesys.texi: Likewise.
15511 * manual/lang.texi: Likewise.
15512 * manual/llio.texi: Likewise.
15513 * manual/locale.texi: Likewise.
15514 * manual/message.texi: Likewise.
15515 * manual/resource.texi: Likewise.
15516 * manual/search.texi: Likewise.
15517 * manual/setjmp.texi: Likewise.
15518 * manual/stdio.texi: Likewise.
15519 * manual/string.texi: Likewise.
15520 * manual/sysinfo.texi: Likewise.
15521 * manual/time.texi: Likewise.
15522
155232013-12-27 Carlos O'Donell <carlos@redhat.com>
15524
15525 * po/sl.po: New file.
15526
155272013-12-27 Mike Frysinger <vapier@gentoo.org>
15528
15529 * .gitignore: Add core/.gdbinit/.gdb_history.
15530
155312013-12-27 Allan McRae <allan@archlinux.org>
15532
15533 [BZ #16369]
15534 * sysdeps/ieee754/dbl-64/s_sin.c (csloww): Fix variable name.
15535 Reported by Il'ya Malakhov <ilmalakhov@yandex.ru>
15536
155372013-12-24 Brooks Moses <bmoses@google.com>
15538
15539 * string/string.h (__CORRECT_ISO_CPP_STRING_H_PROTO): Define for
15540 all compilers that claim C++98 compliance, not just GCC.
15541 * string/strings.h (__CORRECT_ISO_CPP_STRINGS_H_PROTO):
15542 Likewise.
15543
155442013-12-24 Maxim Kuvyrkov <maxim@kugelworks.com>
15545
15546 * NEWS: Restore accidentally deleted bug-fix entries.
15547
155482013-12-24 Maxim Kuvyrkov <maxim@kugelworks.com>
15549 Ondřej Bílka <neleai@seznam.cz>
15550
15551 [BZ #15073]
15552 * malloc/malloc.c (_int_free): Perform sanity check only if we
15553 have_lock.
15554
155552013-12-23 Ondřej Bílka <neleai@seznam.cz>
15556
15557 [BZ #12986]
15558 * manual/stdio.texi (String Input Conversions): Clarify that character
15559 classes are not supported.
15560
155612013-12-23 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
15562
15563 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
15564
155652013-12-22 Joseph Myers <joseph@codesourcery.com>
15566
15567 [BZ #16337]
15568 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
15569 Calculate results for small negative arguments directly rather
15570 than using reflection formula with special underflow handling.
15571
15572 * sysdeps/mach/hurd/Implies: Change unix/bsd/bsd4.4 to unix/bsd.
15573 * sysdeps/unix/bsd/syscalls.list (chflags): Add entry from
15574 sysdeps/unix/bsd/bsd4.4/syscalls.list.
15575 (fchflags): Likewise.
15576 (revoke): Likewise.
15577 (setlogin): Likewise.
15578 (sigaltstack): Likewise.
15579 (wait4): Likewise.
15580 (sigblock): Remove.
15581 (sigsetmask): Likewise.
15582 (wait3): Likewise.
15583 (waitpid): Likewise.
15584 * sysdeps/unix/bsd/bsd4.4/syscalls.list: Remove file.
15585 * sysdeps/unix/sysv/linux/wait3.c: Update directory of included
15586 file.
15587 * sysdeps/unix/bsd/bsd4.4/Makefile: Move to ...
15588 * sysdeps/unix/bsd/Makefile: ... here.
15589 * sysdeps/unix/bsd/bsd4.4/Versions: Move to ...
15590 * sysdeps/unix/bsd/Versions: ... here.
15591 * sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h: Move to ...
15592 * sysdeps/unix/bsd/bits/sockaddr.h: ... here.
15593 * sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c: Move to ...
15594 * sysdeps/unix/bsd/cmsg_nxthdr.c: ... here.
15595 * sysdeps/unix/bsd/bsd4.4/sigblock.c: Move to ...
15596 * sysdeps/unix/bsd/sigblock.c: ... here.
15597 * sysdeps/unix/bsd/bsd4.4/sigsetmask.c: Move to ...
15598 * sysdeps/unix/bsd/sigsetmask.c: ... here.
15599 * sysdeps/unix/bsd/bsd4.4/sigvec.c: Move to ...
15600 * sysdeps/unix/bsd/sigvec.c: ... here.
15601 * sysdeps/unix/bsd/bsd4.4/tcdrain.c: Move to ...
15602 * sysdeps/unix/bsd/tcdrain.c: ... here.
15603 * sysdeps/unix/bsd/bsd4.4/tcgetattr.c: Move to ...
15604 * sysdeps/unix/bsd/tcgetattr.c: ... here.
15605 * sysdeps/unix/bsd/bsd4.4/tcsetattr.c: Move to ...
15606 * sysdeps/unix/bsd/tcsetattr.c: ... here.
15607 * sysdeps/unix/bsd/bsd4.4/wait.c: Move to ...
15608 * sysdeps/unix/bsd/wait.c: ... here.
15609 * sysdeps/unix/bsd/bsd4.4/wait3.c: Move to ...
15610 * sysdeps/unix/bsd/wait3.c: ... here.
15611 * sysdeps/unix/bsd/bsd4.4/waitpid.c: Move to ...
15612 * sysdeps/unix/bsd/waitpid.c: ... here.
15613
156142013-12-21 Joseph Myers <joseph@codesourcery.com>
15615
15616 [BZ #16356]
15617 * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Also set
15618 round-to-nearest for [!USE_AS_EXPM1L].
15619 * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Likewise.
15620 * math/auto-libm-test-in: Do not expect cosh tests to fail. Add
15621 more tests of exp and exp10. Expect some exp10 tests to miss
15622 exceptions or fail in directed rounding modes.
15623 * math/auto-libm-test-out: Regenerated.
15624 * math/libm-test.inc (exp10_tonearest_test_data): New array.
15625 (exp10_test_tonearest): New function.
15626 (exp10_towardzero_test_data): New array.
15627 (exp10_test_towardzero): New function.
15628 (exp10_downward_test_data): New array.
15629 (exp10_test_downward): New function.
15630 (exp10_upward_test_data): New array.
15631 (exp10_test_upward): New function.
15632 (main): Call the new functions.
15633 * sysdeps/i386/fpu/libm-test-ulps: Update.
15634 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
15635
156362013-12-20 Joseph Myers <joseph@codesourcery.com>
15637
15638 * math/auto-libm-test-in: Add more tests of acos, acosh, asin,
15639 asinh, atan, atan2, atanh, cbrt, cos and cosh.
15640 * math/auto-libm-test-out: Regenerated.
15641 * math/libm-test.inc (acosh_test_data): Add more tests.
15642 (atanh_test_data): Likewise.
15643 (ceil_test_data): Likewise.
15644 (copysign_test_data): Likewise.
15645 * sysdeps/i386/fpu/libm-test-ulps: Update.
15646 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
15647
15648 * timezone/checktab.awk: Update from tzcode 2013i.
15649 * timezone/private.h: Likewise.
15650 * timezone/scheck.c: Likewise.
15651 * timezone/tzfile.h: Likewise.
15652 * timezone/tzselect.ksh: Likewise.
15653 * timezone/zdump.c: Likewise.
15654 * timezone/zic.c: Likewise.
15655
15656 * math/auto-libm-test-in: Add tests of cpow.
15657 * math/auto-libm-test-out: Regenerated.
15658 * math/libm-test.inc (cpow_test_data): Use AUTO_TESTS_cc_c.
15659 * math/gen-auto-libm-tests.c (func_calc_method): Add value
15660 mpc_cc_c.
15661 (func_calc_desc): Add mpc_cc_c union field.
15662 (test_functions): Add cpow.
15663 (special_fill_2pi): New function.
15664 (special_real_inputs): Add 2pi.
15665 (calc_generic_results): Handle mpc_cc_c.
15666 * sysdeps/i386/fpu/libm-test-ulps: Update.
15667 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
15668
15669 * math/auto-libm-test-in: Add tests of ccos, ccosh, cexp, clog,
15670 csqrt, ctan and ctanh.
15671 * math/auto-libm-test-out: Regenerated.
15672 * math/libm-test.inc (TEST_COND_x86_64): New macro.
15673 (TEST_COND_x86): Likewise.
15674 (ccos_test_data): Use AUTO_TESTS_c_c.
15675 (ccosh_test_data): Likewise.
15676 (cexp_test_data): Likewise.
15677 (clog_test_data): Likewise.
15678 (csqrt_test_data): Likewise.
15679 (ctan_test_data): Likewise.
15680 (ctan_tonearest_test_data): Likewise.
15681 (ctan_towardzero_test_data): Likewise.
15682 (ctan_downward_test_data): Likewise.
15683 (ctan_upward_test_data): Likewise.
15684 (ctanh_test_data): Likewise.
15685 (ctanh_tonearest_test_data): Likewise.
15686 (ctanh_towardzero_test_data): Likewise.
15687 (ctanh_downward_test_data): Likewise.
15688 (ctanh_upward_test_data): Likewise.
15689 * math/gen-auto-libm-tests.c (func_calc_method): Add value
15690 mpc_c_c.
15691 (func_calc_desc): Add mpc_c_c union field.
15692 (FUNC_mpc_c_c): New macro.
15693 (test_functions): Add cacos, cacosh, casin, casinh, catan, catanh,
15694 ccos, ccosh, cexp, clog, clog10, csin, csinh, csqrt, ctan and
15695 ctanh.
15696 (special_fill_min_subnorm_p120): New function.
15697 (special_real_inputs): Add min_subnorm_p120.
15698 (calc_generic_results): Handle mpc_c_c.
15699 * sysdeps/i386/fpu/libm-test-ulps: Update.
15700 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
15701
157022013-12-20 Siddhesh Poyarekar <siddhesh@redhat.com>
15703
15704 * sysdeps/ieee754/dbl-64/s_sin.c (do_cos, do_cos_slow, do_sin)
15705 (do_sin_slow): New functions.
15706 (__sin, __cos, slow1, slow2, sloww1, sloww2, bsloww1, bsloww2)
15707 (cslow2, csloww1, csloww2): Use the new functions.
15708
15709 * sysdeps/ieee754/dbl-64/s_sin.c (sloww1): Add new argument M.
15710 Use M to change sign of result instead of X. Assume X is
15711 positive.
15712 (csloww1): Likewise.
15713 (__sin): Adjust.
15714 (__cos): Adjust.
15715
15716 * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): Remove
15717 arguments A and DA.
15718 (__sin): Adjust.
15719 (__cos): Likewise.
15720
15721 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use DA directly.
15722 (__cos): Likewise.
15723 (sloww1): Don't adjust sign of DX.
15724 (csloww1): Likewise.
15725 (sloww2): Use X directly and don't adjust sign of DX.
15726 (csloww2): Likewise.
15727
157282013-12-19 Joseph Myers <joseph@codesourcery.com>
15729
15730 * math/auto-libm-test-in: Add tests of cabs and carg.
15731 * math/auto-libm-test-out: Regenerated.
15732 * math/libm-test.inc (cabs_test_data): Use AUTO_TESTS_c_f.
15733 (carg_test_data): Likewise.
15734 * math/gen-auto-libm-tests.c (func_calc_method): Add value
15735 mpc_c_f.
15736 (func_calc_desc): Add mpc_c_f union field.
15737 (test_functions): Add cabs and carg.
15738 (calc_generic_results): Handle mpc_c_f.
15739
15740 * sysdeps/powerpc/powerpc32/libgcc-compat.S
15741 [_SOFT_FLOAT || __NO_FPRS__] (__fixdfdi_v_glibc20): Do not define
15742 as a macro and a compat symbol.
15743 [_SOFT_FLOAT || __NO_FPRS__] (__fixsfdi_v_glibc20): Likewise.
15744 [_SOFT_FLOAT || __NO_FPRS__] (__fixunsdfdi_v_glibc20): Likewise.
15745 [_SOFT_FLOAT || __NO_FPRS__] (__fixunssfdi_v_glibc20): Likewise.
15746 [_SOFT_FLOAT || __NO_FPRS__] (__floatdidf_v_glibc20): Likewise.
15747 [_SOFT_FLOAT || __NO_FPRS__] (__floaddisf_v_glibc20): Likewise.
15748 [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixdfdi): Do
15749 not use .hidden.
15750 [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixsfdi):
15751 Likewise.
15752 [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixunsdfdi):
15753 Likewise.
15754 [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixunssfdi):
15755 Likewise.
15756 [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__floaddidf):
15757 Likewise.
15758 [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__floaddisf):
15759 Likewise.
15760 * sysdeps/powerpc/nofpu/Versions (libc): Remove __fixdfdi,
15761 __fixsfdi, __fixunsdfdi, __fixunssfdi, __floatdidf and __floatdisf
15762 from GLIBC_2.3.2.
15763
157642013-12-19 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
15765
15766 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
15767
157682013-12-19 Joseph Myers <joseph@codesourcery.com>
15769
15770 * manual/texinfo.tex: Update to version 2013-11-26.10 with
15771 trailing whitespace removed.
15772 * scripts/config.guess: Update to version 2013-11-29.
15773 * scripts/config.sub: Update to version 2013-10-01.
15774
15775 * math/auto-libm-test-in: Add tests of sincos.
15776 * math/auto-libm-test-out: Regenerated.
15777 * math/libm-test.inc (sincos_test_data): Use AUTO_TESTS_fFF_11.
15778 * math/gen-auto-libm-tests.c (func_calc_method): Add value
15779 mpfr_f_11.
15780 (func_calc_desc): Add mpfr_f_11 union field.
15781 (test_functions): Add sincos.
15782 (calc_generic_results): Handle mpfr_f_11.
15783 * sysdeps/i386/fpu/libm-test-ulps: Update.
15784 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
15785
157862013-12-19 Andreas Schwab <schwab@suse.de>
15787
15788 * sysdeps/powerpc/powerpc64/power7/memchr.S: Fix argument of
15789 CALL_MCOUNT.
15790 * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.
15791 * sysdeps/powerpc/powerpc64/power7/strcasecmp.S
15792 [USE_IN_EXTENDED_LOCALE_MODEL]: Likewise.
15793
157942013-12-19 Joseph Myers <joseph@codesourcery.com>
15795
15796 * math/gen-libm-test.pl (%beautify): Remove M_* constants.
15797 * sysdeps/i386/fpu/libm-test-ulps: Update.
15798 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
15799
15800 [BZ #16293]
15801 * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]: Set
15802 round-to-nearest mode when using frndint.
15803 * sysdeps/i386/fpu/s_expm1.S (__expm1): Likewise.
15804 * sysdeps/i386/fpu/s_expm1f.S (__expm1f): Likewise.
15805 * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]:
15806 Likewise.
15807 * math/auto-libm-test-in: Add more tests of expm1. Do not expect
15808 sinh test to fail.
15809 * math/auto-libm-test-out: Regenerated.
15810 * math/libm-test.inc (TEST_COND_x86_64): Remove macro.
15811 (TEST_COND_x86): Likewise.
15812 (expm1_tonearest_test_data): New array.
15813 (expm1_test_tonearest): New function.
15814 (expm1_towardzero_test_data): New array.
15815 (expm1_test_towardzero): New function.
15816 (expm1_downward_test_data): New array.
15817 (expm1_test_downward): New function.
15818 (expm1_upward_test_data): New array.
15819 (expm1_test_upward): New function.
15820 (main): Run the new test functions.
15821 * sysdeps/i386/fpu/libm-test-ulps: Update.
15822 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
15823
15824 * include/features.h: Update comment documenting feature test
15825 macros. Mention _DEFAULT_SOURCE in comment.
15826 [_GNU_SOURCE] (_DEFAULT_SOURCE): Undefine and redefine.
15827 [_DEFAULT_SOURCE]: Undefine and redefine _DEFAULT_SOURCE,
15828 _BSD_SOURCE and _SVID_SOURCE.
15829 [!__STRICT_ANSI__ && !_ISOC99_SOURCE && !_POSIX_SOURCE &&
15830 !_POSIX_C_SOURCE && !_XOPEN_SOURCE && !_BSD_SOURCE &&
15831 !_SVID_SOURCE]: Likewise.
15832 [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
15833 (__USE_POSIX_IMPLICITLY): Define.
15834 [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
15835 (_POSIX_SOURCE): Undefine and redefine.
15836 [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
15837 (_POSIX_C_SOURCE): Likewise.
15838 * manual/creature.texi (_DEFAULT_SOURCE): Document.
15839 (Feature Test Macros): Update documentation of default features.
15840
158412013-12-19 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
15842
15843 * benchtests/Makefile: Add bench-strtok.
15844 * benchtests/bench-strtok.c: New file: strtok benchtest.
15845
158462013-12-19 Allan McRae <allan@archlinux.org>
15847
15848 * manual/install.texi: Suppress menu for plain text output.
15849 * INSTALL: Regenerated.
15850
158512013-12-18 Brooks Moses <bmoses@google.com>
15852
15853 [BZ #15846]
15854 * misc/getauxval.c: Include errno.h.
15855 (__getauxval): Set errno to ENOENT if the requested type is not
15856 found.
15857 * misc/sys/auxv.h (getauxval): Document that it may set errno;
15858 don't declare with __attribute_const__.
15859 * elf/tst-auxv.c: Add tests for errno and type-not-found case.
15860 * manual/startup.texi: Document that getauxval sets errno.
15861
158622013-12-18 Joseph Myers <joseph@codesourcery.com>
15863
15864 * math/auto-libm-test-in: Add tests of jn and yn.
15865 * math/auto-libm-test-out: Regenerated.
15866 * math/libm-test.inc (jn_test_data): Use AUTO_TESTS_if_f.
15867 (yn_test_data): Likewise.
15868 * math/gen-auto-libm-tests.c (func_calc_method): Add value
15869 mpfr_if_f.
15870 (func_calc_desc): Add mpfr_if_f union field.
15871 (FUNC_mpfr_if_f): New macro.
15872 (test_functions): Add jn and yn.
15873 (calc_generic_results): Assert type of second input for
15874 mpfr_ff_f. Handle mpfr_if_f.
15875 (output_for_one_input_case): Disable all checking for arguments
15876 fitting floating-point types in case of an integer argument.
15877 * sysdeps/i386/fpu/libm-test-ulps: Update.
15878 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
15879
15880 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
15881 Don't expect fegetround reference in libm.so.
15882
158832013-12-17 Marcus Shawcroft <marcus.shawcroft@linaro.org>
15884
15885 * sysdeps/ieee754/dbl-64/Makefile (CFLAGS-e_sqrt.c): Add
15886 $(config-cflags-nofma).
15887
158882013-12-18 Joseph Myers <joseph@codesourcery.com>
15889
15890 * math/auto-libm-test-in: Mark some hypot tests no-test-inline.
15891 * math/auto-libm-test-out: Regenerated.
15892
15893 [BZ #16338]
15894 * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Use __frexpl
15895 to determine exponent and adjust argument to have exponent of -1.
15896 * math/auto-libm-test-in: Add more tests of log, log10, log1p and
15897 log2.
15898 * math/auto-libm-test-out: Regenerated.
15899 * sysdeps/i386/fpu/libm-test-ulps: Update.
15900 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
15901
159022013-12-18 Ondřej Bílka <neleai@seznam.cz>
15903
15904 * manual/probes.texi: Remove cases when per-thread arenas are
15905 disabled.
15906
159072013-12-18 Andreas Schwab <schwab@suse.de>
15908
15909 * sysdeps/i386/i686/multiarch/strstr.c: Remove.
15910 * sysdeps/i386/i686/multiarch/strstr-c.c: Remove.
15911 * sysdeps/i386/i686/multiarch/strcasestr.c: Remove.
15912 * sysdeps/i386/i686/multiarch/strcasestr-nonascii.c: Remove.
15913 * sysdeps/i386/i686/multiarch/Makefile: Update.
15914 * sysdeps/i386/i686/multiarch/ifunc-impl-list.c: Update.
15915
159162013-12-17 Joseph Myers <joseph@codesourcery.com>
15917
15918 * sysdeps/unix/bsd/bsd4.4/bits/errno.h: Remove file.
15919 * sysdeps/unix/bsd/bsd4.4/bits/ioctls.h: Likewise.
15920
159212013-12-17 Paul Eggert <eggert@cs.ucla.edu>
15922
15923 [BZ #15968]
15924 Support TZ transition times < 00:00:00.
15925 This is needed for version-3 tz-format files; it supports time
15926 stamps past 2037 for America/Godthab (the only entry in the tz
15927 database for which this change is relevant).
15928 * manual/time.texi (TZ Variable): Document transition times
15929 from -167:59:59 through -00:00:01.
15930 * time/tzset.c (tz_rule): Time of day is now signed.
15931 (__tzset_parse_tz): Parse negative time of day.
15932
15933 Document TZ transition times >= 25:00:00.
15934 * manual/time.texi (TZ Variable): Document transition times from
15935 25:00:00 through 167:59:59. These are already supported, and this
15936 support will help with version-3 tz-format files.
15937
15938 * manual/time.texi (TZ Variable): Modernize North America example
15939 to reflect current (i.e., 2007-and-later) daylight saving rules.
15940
15941 * manual/time.texi (TZ Variable): POSIX.1 hour can be 24.
15942
159432013-12-17 Joseph Myers <joseph@codesourcery.com>
15944
15945 * sysdeps/unix/bsd/bits/posix_opt.h: Remove file.
15946 * sysdeps/unix/bsd/bits/stat.h: Likewise.
15947 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/environments.h: Likewise.
15948 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h: Likewise.
15949 * sysdeps/unix/bsd/bsd4.4/freebsd/sys/sysmacros.h: Likewise.
15950 * sysdeps/unix/bsd/bsdstat.h: Likewise.
15951 * sysdeps/unix/bsd/clock.c: Likewise.
15952 * sysdeps/unix/bsd/i386/vfork.S: Likewise.
15953 * sysdeps/unix/bsd/i386/wait3.S: Likewise.
15954 * sysdeps/unix/bsd/init-posix.c: Likewise.
15955 * sysdeps/unix/bsd/poll.c: Likewise.
15956 * sysdeps/unix/bsd/ptsname.c: Likewise.
15957 * sysdeps/unix/bsd/seekdir.c: Likewise.
15958 * sysdeps/unix/bsd/setegid.c: Likewise.
15959 * sysdeps/unix/bsd/seteuid.c: Likewise.
15960 * sysdeps/unix/bsd/setgid.c: Likewise.
15961 * sysdeps/unix/bsd/setrgid.c: Likewise.
15962 * sysdeps/unix/bsd/setruid.c: Likewise.
15963 * sysdeps/unix/bsd/setsid.c: Likewise.
15964 * sysdeps/unix/bsd/setuid.c: Likewise.
15965 * sysdeps/unix/bsd/sigaction.c: Likewise.
15966 * sysdeps/unix/bsd/sigprocmask.c: Likewise.
15967 * sysdeps/unix/bsd/sigsuspend.c: Likewise.
15968 * sysdeps/unix/bsd/sys/reboot.h: Likewise.
15969 * sysdeps/unix/bsd/telldir.c: Likewise.
15970 * sysdeps/unix/bsd/times.c: Likewise.
15971 * sysdeps/unix/bsd/usleep.c: Likewise.
15972
15973 * misc/Makefile (install-lib): Remove libbsd-compat.a.
15974 ($(objpfx)libbsd-compat.a): Remove rule.
15975
15976 * include/features.h (__FAVOR_BSD): Do not define.
15977 * manual/creature.texi (_BSD_SOURCE): Do not document as enabling
15978 features conflicting with POSIX.
15979 (_GNU_SOURCE): Do not mention interaction with _BSD_SOURCE.
15980 (_BSD_SOURCE): Remove description of not being a subset of other
15981 feature test macros.
15982 * manual/job.texi (getpgrp): Do not document BSD version.
15983 (getpgid): Do not document by reference to BSD getpgrp.
15984 * posix/unistd.h [__FAVOR_BSD]: Remove conditional code.
15985 * setjmp/setjmp.h [__FAVOR_BSD]: Likewise.
15986 * signal/signal.h [__FAVOR_BSD]: Likewise.
15987 * sysdeps/gnu/netinet/tcp.h (struct tcphdr): Use anonymous unions
15988 instead of making contents conditional on [__FAVOR_BSD].
15989 * sysdeps/gnu/netinet/udp.h (struct udphdr): Likewise.
15990
159912013-12-17 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
15992
15993 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
15994
159952013-12-17 Joseph Myers <joseph@codesourcery.com>
15996
15997 [BZ #16314]
15998 * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Adjust up
15999 values below 2**-450, not 2**-500.
16000 * math/auto-libm-test-in: Don't allow spurious underflow from
16001 hypot.
16002 * math/auto-libm-test-out: Regenerated.
16003
16004 [BZ #16316]
16005 [BZ #16330]
16006 * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Update
16007 values of ha and hb and sort them after adjusting subnormal
16008 arguments.
16009 * sysdeps/ieee754/ldbl-128/e_hypotl.c (__ieee754_hypotl):
16010 Likewise.
16011 * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Update
16012 values of ea and eb and sort them after adjusting subnormal
16013 arguments.
16014 * math/auto-libm-test-in: Do not expect some hypot tests of
16015 subnormals to fail. Add more hypot tests.
16016 * math/auto-libm-test-out: Regenerated.
16017
160182013-12-16 Kaz Kojima <kkojima@rr.iij4u.or.jp>
16019
16020 [BZ #13304]
16021 * sysdeps/sh/s_fma.c: New file.
16022 * sysdeps/sh/s_fmaf.c: New file.
16023 * sysdeps/sh/soft-fp/sfp-machine.h: New file. Based on arm
16024 version.
16025 * sysdeps/sh/Implies: Add sh/soft-fp.
16026
160272013-12-16 Roland McGrath <roland@hack.frob.com>
16028
16029 * elf/dl-error.c (struct catch): Add new member `errcode'. Add a
16030 level of indirection to members `objname', `errstring', `malloced'.
16031 (_dl_signal_error): Store through pointers in *LCATCH rather modifying
16032 *LCATCH itself. Set *LCATCH->errcode to ERRCODE rather than passing
16033 it as the __longjmp argument (just pass 1 instead).
16034 (_dl_catch_error): Initialize C with argument pointers and address of
16035 volatile local ERRCODE rather than copying values out of C at return.
16036
160372013-12-16 Joseph Myers <joseph@codesourcery.com>
16038
16039 * math/auto-libm-test-in: Add tests of atan2, hypot and pow.
16040 * math/auto-libm-test-out: Regenerated.
16041 * math/libm-test.inc (atan2_test_data): Use AUTO_TESTS_ff_f.
16042 (hypot_test_data): Likewise.
16043 (pow_test_data): Likewise.
16044 (pow_tonearest_test_data): Likewise.
16045 * math/gen-auto-libm-tests.c (func_calc_method): Add value
16046 mpfr_ff_f.
16047 (func_calc_desc): Add mpfr_ff_f union field.
16048 (FUNC_mpfr_ff_f): New macro.
16049 (test_functions): Add atan2, hypot and pow.
16050 (special_fill_min): New function.
16051 (special_fill_minus_min): Likewise.
16052 (special_fill_min_subnorm): Likewise.
16053 (special_fill_minus_min_subnorm): Likewise.
16054 (special_real_inputs): Add min, -min, min_subnorm and
16055 -min_subnorm.
16056 (calc_generic_results): Handle mpfr_ff_f.
16057 * sysdeps/i386/fpu/libm-test-ulps: Update.
16058 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16059
160602013-12-16 Will Newton <will.newton@linaro.org>
16061
16062 * manual/memory.texi (Malloc Examples): Mention aligned_alloc.
16063 (Aligned Memory Blocks): Add documentation for aligned_alloc
16064 and suggest it as an alternative to posix_memalign.
16065 (Hooks for Malloc): Document __memalign_hook is also called
16066 for aligned_alloc. (Summary of Malloc): Add summary for
16067 aligned alloc. Document __memalign_hook is also called
16068 for aligned_alloc.
16069
160702013-12-16 Will Newton <will.newton@linaro.org>
16071
16072 * manual/memory.texi (Malloc Examples): Clarify default
16073 alignment documentation. Suggest posix_memalign rather
16074 than memalign or valloc.
16075 (Aligned Memory Blocks): Remove suggestion to use memalign
16076 or valloc. Remove obsolete comment about BSD.
16077 Document memalign errno values and mark the function obsolete.
16078 Document posix_memalign returned error codes. Mark valloc
16079 as obsolete. (Hooks for Malloc): __memalign_hook is also
16080 called for posix_memalign and valloc.
16081 (Summary of Malloc): Add posix_memalign to function summary.
16082 __memalign_hook is also called for posix_memalign and valloc.
16083
160842013-12-16 Siddhesh Poyarekar <siddhesh@redhat.com>
16085
16086 * sysdeps/ieee754/dbl-64/s_sin.c (TAYLOR_SINCOS): Rename to
16087 TAYLOR_SIN.
16088 (__sin): Adjust.
16089 (__cos): Likewise.
16090 (sloww): Use mynumber union. Expand ternary operator into
16091 if-else statements.
16092 (cslow): use mynumber union.
16093
160942013-12-16 Allan McRae <allan@archlinux.org>
16095
16096 * configure.ac: Set AUTOCONF when maintainer-mode is not used.
16097 * configure: Regenerated.
16098
16099 * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update file name.
16100
16101 [BZ #14120]
16102 * configure.ac: Added --enable-maintainer-mode. Check for
16103 autoconf when enabled.
16104 * configure: Regenerated.
16105
16106 * nscd/nscd.service: New file.
16107 * nscd/nscd.tmpfiles: New file.
16108
161092013-12-14 Ondřej Bílka <neleai@seznam.cz>
16110
16111 [BZ #12100]
16112 * sysdeps/x86_64/multiarch/strstr-sse2-unaligned.S: New file
16113 * sysdeps/x86_64/multiarch/strstr-c.c: Moved to ...
16114 * sysdeps/x86_64/multiarch/strstr.c: ... here.
16115 (strstr): Add __strstr_sse2_unaligned ifunc.
16116 * sysdeps/x86_64/multiarch/strcasestr-c.c: Moved to ...
16117 * sysdeps/x86_64/multiarch/strcasestr.c ... here.
16118 (strcasestr): Remove __strcasestr_sse42 ifunc.
16119 * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: Remove.
16120 * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update.
16121 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Update.
16122
161232013-12-14 Kaz Kojima <kkojima@rr.iij4u.or.jp>
16124
16125 * sysdeps/sh/sh4/fpu/bits/fenv.h: Move to ...
16126 * sysdeps/sh/bits/fenv.h: ... here.
16127 * sysdeps/sh/sh4/fpu/bits: Remove directory.
16128
161292013-12-13 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
16130
16131 * NEWS: Mention ppc64 STT_GNU_IFUNC support.
16132
16133 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add hypot and
16134 hypotf multiarch implementations.
16135 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-power7.c: New file.
16136 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-ppc64.c: New file.
16137 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot.c: New file:
16138 multiarch hypot for PPC64.
16139 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-power7.c: New file.
16140 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-ppc64.c: New file.
16141 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c : New file:
16142 multiarch hypotf for PPC64.
16143
16144 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add modf and
16145 modff multiarch implementations.
16146 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c: New file.
16147 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c: New file.
16148 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: New file:
16149 multiarch modf for PPC64.
16150 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c: New file.
16151 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c: New file.
16152 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c : New file:
16153 multiarch modff for PPC64.
16154
16155 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add logb, logbf,
16156 and logl multiarch implementations.
16157 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-power7.c: New file.
16158 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-ppc64.c: New file.
16159 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c: New file:
16160 multiarch logb for PPC64.
16161 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-power7.c: New file.
16162 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-ppc64.c: New file.
16163 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf.c: New file:
16164 multiarch logb for PPC64.
16165 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-power7.c: New file.
16166 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-ppc64.c: New file.
16167 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl.c: New file:
16168 multiarch logb for PPC64.
16169
16170 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isinf and
16171 isinff multiarch implementation.
16172 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S: New
16173 file.
16174 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.S: New file.
16175 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c: New file:
16176 multiarch isinf for PPC64.
16177 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c: New
16178 file.
16179 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c: New file:
16180 multiarch isinff for PPC64.
16181
16182 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add finite and
16183 finitef multiarch implementation.
16184 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power7.S: New
16185 file.
16186 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-ppc64.S: New file.
16187 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c: New file:
16188 multiarch finite for PPC64.
16189 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef-ppc64.c: New
16190 file.
16191 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c: New file:
16192 multiarch finitef for PPC64.
16193
16194 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llrint and
16195 lrint multiarch implementation.
16196 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power6x.S: New
16197 file.
16198 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-ppc64.S: New file.
16199 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c: New file:
16200 multiarch llrint for PPC64.
16201 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_lrint.c: New file:
16202 multiarch lrint for PPC64.
16203
16204 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add copysign/
16205 copysignf multiarch implementation.
16206 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-power6.S: New
16207 file.
16208 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-ppc64.S: New
16209 file.
16210 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: New file:
16211 multiarch copysign for PPC64.
16212 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c: New file:
16213 multiarch copysignf for PPC64.
16214
16215 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add trunc/truncf
16216 multiarch implementation.
16217 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-power5+.S: New
16218 file.
16219 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-ppc64.S: New
16220 file.
16221 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-power5+.S: New
16222 file.
16223 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-ppc64.S: New
16224 file.
16225 multiarch llround for PPC64.
16226 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c: New file:
16227 multiarch trunc for PPC64.
16228 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c: New file:
16229 multiarch truncf for PPC64.
16230
16231 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add round/roundf
16232 multiarch implementation.
16233 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-power5+.S: New
16234 file.
16235 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-ppc64.S: New
16236 file.
16237 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-power5+.S: New
16238 file.
16239 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-ppc64.S: New
16240 file.
16241 multiarch llround for PPC64.
16242 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c: New file:
16243 multiarch round for PPC64.
16244 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c: New file:
16245 multiarch roundf for PPC64.
16246
16247 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add floor/floorf
16248 multiarch implementation.
16249 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-power5+.S: New
16250 file.
16251 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-ppc64.S: New
16252 file.
16253 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-power5+.S: New
16254 file.
16255 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-ppc64.S: New
16256 file.
16257 multiarch llround for PPC64.
16258 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c: New file:
16259 multiarch floor for PPC64.
16260 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c: New file:
16261 multiarch floorf for PPC64.
16262
16263 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add ceil/ceilf
16264 multiarch implementation.
16265 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-power5+.S: New
16266 file.
16267 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-ppc64.S: New
16268 file.
16269 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-power5+.S: New
16270 file.
16271 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-ppc64.S: New
16272 file.
16273 multiarch llround for PPC64.
16274 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c: New file:
16275 multiarch ceil for PPC64.
16276 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c: New file:
16277 multiarch ceilf for PPC64.
16278
16279 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llround
16280 multiarch implementation.
16281 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S: New
16282 file.
16283 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S: New
16284 file.
16285 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S: New
16286 file.
16287 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c: New file:
16288 multiarch llround for PPC64.
16289 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_lround.c: New file:
16290 multiarch lround for PPC64.
16291
16292 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isnan
16293 multiarch implementation.
16294 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power5.S: New file.
16295 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6.S: New file.
16296 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6x.S: New
16297 file.
16298 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power7.S: New file.
16299 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S: New file.
16300 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c: New file:
16301 multiarch isnan for PPC64.
16302 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c: New file:
16303 multiarch isnanf for PPC64.
16304
16305 * sysdeps/powerpc/powerpc64/power5+/fpu/multiarch/Implies: New file.
16306 * sysdeps/powerpc/powerpc64/power5/fpu/multiarch/Implies: New file.
16307 * sysdeps/powerpc/powerpc64/power6/fpu/multiarch/Implies: New file.
16308 * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: New file.
16309 * sysdeps/powerpc/powerpc64/power7/fpu/multiarch/Implies: New file
16310 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/Implies: Remove.
16311
16312 * sysdeps/powerpc/fpu/w_sqrt.c: Remove file
16313 * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
16314 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
16315 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
16316
16317 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add stpcpy
16318 multiarch implementations.
16319 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16320 (__libc_ifunc_impl_list): Likewise.
16321 * sysdeps/powerpc/powerpc64/multiarch/stpcpy-power7.c: New file.
16322 * sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.c: New file.
16323 * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c : New file:
16324 multiarch stpcpy for PPC64.
16325
16326 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcpy
16327 multiarch implementations.
16328 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16329 (__libc_ifunc_impl_list): Likewise.
16330 * sysdeps/powerpc/powerpc64/multiarch/strcpy-power7.c: New file.
16331 * sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.c: New file.
16332 * sysdeps/powerpc/powerpc64/multiarch/strcpy.c : New file:
16333 multiarch strcpy for PPC64.
16334
16335 * string/wordcopy.c (_wordcopy_fwd_aligned): Add define to
16336 redefine function name.
16337 (_wordcopy_fwd_dest_aligned): Likewise.
16338 (_wordcopy_bwd_aligned): Likewise.
16339 (_wordcopy_bwd_dest_aligned): Likewise.
16340 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wordcopy
16341 multiarch implementations.
16342 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16343 (__libc_ifunc_impl_list): Likewise.
16344 * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power6.c: New file.
16345 * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power7.c: New file.
16346 * sysdeps/powerpc/powerpc64/multiarch/wordcopy-ppc64.c: New file.
16347 * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c : New file:
16348 multiarch wcscpy for PPC64.
16349
16350 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcscpy
16351 multiarch implementations.
16352 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16353 (__libc_ifunc_impl_list): Likewise.
16354 * sysdeps/powerpc/powerpc64/multiarch/wcscpy-power6.c: New file.
16355 * sysdeps/powerpc/powerpc64/multiarch/wcscpy-power7.c: New file.
16356 * sysdeps/powerpc/powerpc64/multiarch/wcscpy-ppc64.c: New file.
16357 * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c : New file:
16358 multiarch wcscpy for PPC64.
16359
16360 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcsrchr
16361 multiarch implementations.
16362 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16363 (__libc_ifunc_impl_list): Likewise.
16364 * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power6.c: New file.
16365 * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power7.c: New file.
16366 * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-ppc64.c: New file.
16367 * sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c : New file:
16368 multiarch wcsrchr for PPC64.
16369
16370 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcschr
16371 multiarch implementations.
16372 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16373 (__libc_ifunc_impl_list): Likewise.
16374 * sysdeps/powerpc/powerpc64/multiarch/wcschr-power6.c: New file.
16375 * sysdeps/powerpc/powerpc64/multiarch/wcschr-power7.c: New file.
16376 * sysdeps/powerpc/powerpc64/multiarch/wcschr-ppc64.c: New file.
16377 * sysdeps/powerpc/powerpc64/multiarch/wcschr.c : New file:
16378 multiarch wcschr for PPC64.
16379
16380 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strchrnul
16381 multiarch implementations.
16382 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16383 (__libc_ifunc_impl_list): Likewise.
16384 * sysdeps/powerpc/powerpc64/multiarch/strchrnul-power7.S: New file.
16385 * sysdeps/powerpc/powerpc64/multiarch/strchrnul-ppc64.c: New file.
16386 * sysdeps/powerpc/powerpc64/multiarch/strchrnul.c: New file:
16387 multiarch strchrnul for PPC64.
16388
16389 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strchr multiarch
16390 implementations.
16391 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16392 (__libc_ifunc_impl_list): Likewise.
16393 * sysdeps/powerpc/powerpc64/multiarch/rtld-strchr.S: New file.
16394 * sysdeps/powerpc/powerpc64/multiarch/strchr-power7.S: New file.
16395 * sysdeps/powerpc/powerpc64/multiarch/strchr-ppc64.S: New file.
16396 * sysdeps/powerpc/powerpc64/multiarch/strchr.c: New file: multiarch
16397 strchr for PPC64.
16398
16399 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncmp multiarch
16400 implementations.
16401 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16402 (__libc_ifunc_impl_list): Likewise.
16403 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power4.S: New file.
16404 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power7.S: New file.
16405 * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: New file.
16406 * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: New file: multiarch
16407 strncmp for PPC64.
16408
16409 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncasecmp
16410 multiarch implementations.
16411 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16412 (__libc_ifunc_impl_list): Likewise.
16413 * sysdeps/powerpc/powerpc64/multiarch/strncase-power7.c: New file.
16414 * sysdeps/powerpc/powerpc64/multiarch/strncase.c: New file: multiarch
16415 strncasecmp for PPC64.
16416 * sysdeps/powerpc/powerpc64/multiarch/strncase_l-power7.c: New file.
16417 * sysdeps/powerpc/powerpc64/multiarch/strncase_l.c: New file:
16418 multiarch strncasecmp_l for PPC64.
16419
16420 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcasecmp
16421 multiarch implementations.
16422 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
16423 (__libc_ifunc_impl_list): Likewise.
16424 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: New file.
16425 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c: New file:
16426 multiarch strcasecmp for PPC64.
16427 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: New
16428 file.
16429 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c: new file:
16430 multiarch strcasecmp_l for PPC64.
16431
16432 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strnlen multiarch
16433 implementations.
16434 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16435 (__libc_ifunc_impl_list): Likewise.
16436 * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: New file.
16437 * sysdeps/powerpc/powerpc64/multiarch/strnlen-ppc64.c: New file.
16438 * sysdeps/powerpc/powerpc64/multiarch/strnlen.c: New file: multiarch
16439 strnlen for PPC64.
16440
16441 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strlen multiarch
16442 implementations.
16443 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16444 (__libc_ifunc_impl_list): Likewise.
16445 * sysdeps/powerpc/powerpc64/multiarch/strlen-power7.S: New file.
16446 * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: New file.
16447 * sysdeps/powerpc/powerpc64/multiarch/strlen.c: New file: multiarch
16448 strlen for PPC64.
16449
16450 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add rawmemch multiarch
16451 implementations.
16452 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16453 (__libc_ifunc_impl_list): Likewise.
16454 * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S: New file.
16455 * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c: New file.
16456 * sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c: New file: multiarch
16457 rawmemrchr for PPC64.
16458
16459 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memrchr multiarch
16460 implementation.
16461 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16462 (__libc_ifunc_impl_list): Likewise.
16463 * sysdeps/powerpc/powerpc64/multiarch/memrchr-power7.S: New file.
16464 * sysdeps/powerpc/powerpc64/multiarch/memrchr-ppc64.c: New file.
16465 * sysdeps/powerpc/powerpc64/multiarch/memrchr.c: New file: multiarch
16466 memrchr for PPC64.
16467
16468 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memchr multiarch
16469 implementation.
16470 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16471 (__libc_ifunc_impl_list): Likewise.
16472 * sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S: New file.
16473 * sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c: New file.
16474 * sysdeps/powerpc/powerpc64/multiarch/memchr.c: New file: multiarch
16475 memchr for PPC64.
16476
16477 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add mempcpy multiarch
16478 implementation.
16479 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16480 (__libc_ifunc_impl_list): Likewise.
16481 * sysdeps/powerpc/powerpc64/multiarch/mempcpy-power7.S: New file.
16482 * sysdeps/powerpc/powerpc64/multiarch/mempcpy-ppc64.c: New file.
16483 * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c: New file: multiarch
16484 mempcpy for PPC64.
16485
16486 * sysdeps/powerpc/powerpc64/memset.S (NO_BZERO_IMPL): Add macro to
16487 avoid cretion of __bzero symbol.
16488 * sysdeps/powerpc/powerpc64/power4/memset.S (NO_BZERO_IMPL):
16489 Likewise.
16490 * sysdeps/powerpc/powerpc64/power6/memset.S (NO_BZERO_IMPL):
16491 Likewise.
16492 * sysdeps/powerpc/powerpc64/power7/memset.S (NO_BZERO_IMPL):
16493 Likewise.
16494 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memset/bzero
16495 multiarch implementations.
16496 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16497 (__libc_ifunc_impl_list): Likewise.
16498 * sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S: New file.
16499 * sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S: New file.
16500 * sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S: New file.
16501 * sysdeps/powerpc/powerpc64/multiarch/bzero.c: New file: multiarch
16502 bzero for PPC32.
16503 * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S: New file.
16504 * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: New file.
16505 * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: New file.
16506 * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S: New file.
16507 * sysdeps/powerpc/powerpc64/multiarch/memset.c: New file: multiarch
16508 memset for PPC64.
16509 * sysdeps/powerpc/powerpc64/multiarch/rtld-memset.c: New file.
16510
16511 * string/memcmp.c (memcmp): Using macro to redefine symbol name.
16512 * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memcpy multiarch
16513 implementations.
16514 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
16515 (__libc_ifunc_impl_list): Likewise.
16516 * sysdeps/powerpc/powerpc64/multiarch/memcmp-power4.S: New file.
16517 * sysdeps/powerpc/powerpc64/multiarch/memcmp-power7.S: New file.
16518 * sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c: New file.
16519 * sysdeps/powerpc/powerpc64/multiarch/memcmp.c: New file: multiarch
16520 memcmp for PPC64.
16521
16522 * sysdeps/powerpc/powerpc64/multiarch/Makefile: New file to support
16523 multiarch for POWER/PPC64.
16524 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Likewise.
16525 * sysdeps/powerpc/powerpc64/multiarch/init-arch.h: Likewise.
16526 * sysdeps/powerpc/powerpc64/multiarch/memcpy-a2.S: New file.
16527 * sysdeps/powerpc/powerpc64/multiarch/memcpy-cell.S: New file.
16528 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power4.S: New file.
16529 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power6.S: New file.
16530 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power7.S: New file.
16531 * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: New file.
16532 * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: New file: multiarch
16533 memcpy for PPC64.
16534
16535 * sysdeps/powerpc/powerpc64/power4/fpu/Implies: New file.
16536 * sysdeps/powerpc/powerpc64/power4/fpu/multiarch/Implies: New File.
16537 * sysdeps/powerpc/powerpc64/power4/multiarch/Implies: New File.
16538 * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: New File.
16539 * sysdeps/powerpc/powerpc64/power5+/multiarch/Implies: New File.
16540 * sysdeps/powerpc/powerpc64/power5/Implies: New File.
16541 * sysdeps/powerpc/powerpc64/power5/fpu/Implies: New File.
16542 * sysdeps/powerpc/powerpc64/power5/multiarch/Implies: New File.
16543 * sysdeps/powerpc/powerpc64/power6/fpu/Implies: New File.
16544 * sysdeps/powerpc/powerpc64/power6/multiarch/Implies: New File.
16545 * sysdeps/powerpc/powerpc64/power7/fpu/Implies: New File.
16546 * sysdeps/powerpc/powerpc64/power7/multiarch/Implies: New File.
16547 * sysdeps/powerpc/powerpc64/power8/fpu/Implies: New File.
16548 * sysdeps/powerpc/powerpc64/power8/fpu/multiarch/Implies: New File.
16549 * sysdeps/powerpc/powerpc64/power8/multiarch/Implies: New File.
16550 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/Implies: Remove.
16551 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/Implies: Remove.
16552 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/Implies: Remove.
16553 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/Implies: Remove.
16554 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/Implies: Remove.
16555 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/Implies: Remove.
16556 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power8/Implies: Remove.
16557
165582013-12-12 Kaz Kojima <kkojima@rr.iij4u.or.jp>
16559
16560 * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Use $$ver.
16561
165622013-12-12 Siddhesh Poyarekar <siddhesh@redhat.com>
16563
16564 * benchtests/Makefile (bench): Add exp2 and log2.
16565 (LDLIBS-bench-exp2): Add -lm.
16566 (LDLIBS-bench-log2): Likewise.
16567 * benchtests/exp2-inputs: New inputs file.
16568 * benchtests/log2-inputs: New inputs file.
16569 * benchtests/log-inputs: Add new inputs.
16570 * benchtests/tan-inputs: Likewise.
16571
165722013-12-11 Siddhesh Poyarekar <siddhesh@redhat.com>
16573
16574 * sysdeps/ieee754/dbl-64/s_sin.c (t22): Consolidate const
16575 definition...
16576 (slow1, slow2, sloww1, sloww2, bsloww1, bsloww2, cslow2, csloww1)
16577 (csloww2): ... from here.
16578
16579 * sysdeps/ieee754/dbl-64/usncs.h: Define constants as double
16580 instead of structures.
16581 * sysdeps/ieee754/dbl-64/s_sin.c (POLYNOMIAL2): Adjust.
16582 (POLYNOMIAL): Likewise.
16583 (TAYLOR_SLOW): Likewise.
16584 (__sin): Likewise.
16585 (__cos): Likewise.
16586 (slow1): Likewise.
16587 (slow2): Likewise.
16588 (sloww): Likewise.
16589 (sloww1); Likewise.
16590 (sloww2): Likewise.
16591 (bsloww1): Likewise.
16592 (bsloww2): Likewise.
16593 (cslow2): Likewise.
16594 (csloww): Likewise.
16595 (csloww1): Likewise.
16596 (csloww2): Likewise.
16597
165982013-12-10 Ondřej Bílka <neleai@seznam.cz>
16599
16600 * malloc/malloc.c (MALLOC_COPY, MALLOC_ZERO): Delete.
16601 (__malloc_assert, __libc_realloc, __libc_calloc, _int_realloc):
16602 Expand MALLOC_COPY and MALLOC_ZERO to memcpy and memset.
16603 * malloc/hooks.c (realloc_check): Likewise.
16604
16605 * malloc/Makefile (CPPFLAGS-malloc.c): Remove -DPER_THREAD flag.
16606 * malloc/arena.c: Remove PER_THREAD conditional.
16607 [!PER_THREAD]: Remove code.
16608 (ptmalloc_unlock_all2): Likewise.
16609 (ptmalloc_init): Likewise.
16610 (_int_new_arena): Likewise.
16611 (arena_get2): Likewise.
16612 * malloc/hooks.c (__malloc_get_state): Likewise.
16613 (__malloc_set_state): Likewise.
16614 * malloc/malloc.c: Likewise.
16615 (struct malloc_state): Likewise.
16616 (struct malloc_par): Likewise.
16617 (__libc_realloc): Likewise.
16618 (__libc_mallopt): Likewise.
16619
166202013-12-09 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
16621
16622 * Versions.def (libm): Add GLIBC_2.3 and GLIBC_2.19.
16623
166242013-12-09 Ondřej Bílka <neleai@seznam.cz>
16625
16626 * malloc/malloc.c (alloc_perturb, free_perturb): Convert from
16627 macro to a function. Check for zero perturb_byte.
16628 (_int_malloc, _int_free): Remove zero perturb_byte checks.
16629
16630 * malloc/malloc.c: (force_reg): Remove.
16631 (__malloc_assert, __libc_malloc, __libc_free, __libc_realloc)
16632 (_mid_memalign, __libc_calloc, sysmalloc, systrim): Replace
16633 force_reg by atomic_forced_read.
16634 * malloc/arena.c (ptmalloc_init): Likewise.
16635 * malloc/hooks.c (top_check): Likewise.
16636
166372013-12-09 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
16638
16639 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
16640
166412013-12-09 Markus Trippelsdorf <markus@trippelsdorf.de>
16642
16643 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
16644
166452013-12-08 Joseph Myers <joseph@codesourcery.com>
16646
16647 * math/auto-libm-test-in: Add tests of lgamma.
16648 * math/auto-libm-test-out: Regenerated.
16649 * math/libm-test.inc (M_LOG_SQRT_PIl): Remove macro.
16650 (M_LOG_2_SQRT_PIl): Likewise.
16651 (lgamma_test_data): Use AUTO_TESTS_f_f1.
16652 * math/gen-auto-libm-tests.c (func_calc_method): Add value
16653 mpfr_f_f1.
16654 (func_calc_desc): Add mpfr_f_f1 union field.
16655 (ARGS1): New macro.
16656 (ARGS2): Likewise.
16657 (ARGS3): Likewise.
16658 (ARGS4): Likewise.
16659 (RET1): Likewise.
16660 (RET2): Likewise.
16661 (CALC): Likewise.
16662 (FUNC): Likewise.
16663 (FUNC_mpfr_f_f): Use new macros FUNC, ARGS1, RET1 and CALC.
16664 (test_functions): Add lgamma.
16665 (calc_generic_results): Handle mpfr_f_f1.
16666 * sysdeps/i386/fpu/libm-test-ulps: Update.
16667 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16668
166692013-12-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
16670
16671 * sysdeps/powerpc/powerpc64/power7/add_n.S: New file: optimized
16672 __mpn_add_n for PowerPC64/POWER7.
16673 * sysdeps/powerpc/powerpc64/power7/sub_n.S: New file: optimized
16674 __mpn_sub_n for PowerPC64/POWER7.
16675
16676 * sysdeps/powerpc/powerpc64/addmul_1.S: New file: optimized
16677 __mpn_addmul_1 for PowerPC64.
16678 * sysdeps/powerpc/powerpc64/submul_1.S: New file: optimized
16679 __mpn_submul_1 for PowerPC64.
16680 * sysdeps/powerpc/powerpc64/lshift.S: New file: optimized __mpn_lshift
16681 for PowerPC64.
16682 * sysdeps/powerpc/powerpc64/mul_1.S: New file: optimized __mpn_mul_1
16683 for PowerPC64.
16684
166852013-12-06 Fernando J. V. da Silva <fernandojvdasilva@gmail.com>
16686
16687 [BZ #15089]
16688 * malloc/malloc.c: Exit systrim() if pad is bigger than heap top size.
16689
166902013-12-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
16691
16692 * NEWS: Mention ppc32/power4+ STT_GNU_IFUNC support.
16693
16694 * sysdeps/powerpc/powerpc32/power5+/fpu/multiarch/Implies: New file:
16695 add multiarch folders.
16696 * sysdeps/powerpc/powerpc32/power5+/multiarch/Implies: Likewise.
16697 * sysdeps/powerpc/powerpc32/power5/fpu/multiarch/Implies: Likewise.
16698 * sysdeps/powerpc/powerpc32/power5/multiarch/Implies: Likewise.
16699 * sysdeps/powerpc/powerpc32/power6/fpu/multiarch/Implies: Likewise.
16700 * sysdeps/powerpc/powerpc32/power6/multiarch/Implies: Likewise.
16701 * sysdeps/powerpc/powerpc32/power6x/fpu/multiarch/Implies: Likewise.
16702 * sysdeps/powerpc/powerpc32/power6x/multiarch/Implies: Likewise.
16703 * sysdeps/powerpc/powerpc32/power7/fpu/multiarch/Implies: Likewise.
16704 * sysdeps/powerpc/powerpc32/power7/multiarch/Implies: Likewise.
16705 * sysdeps/powerpc/powerpc32/power8/fpu/multiarch/Implies: Likewise.
16706 * sysdeps/powerpc/powerpc32/power8/multiarch/Implies: Likewise.
16707 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/Implies: Remove.
16708 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/Implies: Remove.
16709 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/Implies: Remove.
16710 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/Implies: Remove.
16711 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/Implies: Remove.
16712 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power8/Implies: Remove.
16713
16714 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add
16715 __ieee754_hypot and __ieee754_hypotf multiarch implementations.
16716 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-power7.c:
16717 New file.
16718 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-ppc32.c:
16719 New file.
16720 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot.c: New file:
16721 multiarch __ieee754_hypot for PowerPC32.
16722 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-power7.c:
16723 New file.
16724 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-ppc32.c:
16725 New file.
16726 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf.c: New file:
16727 multiarch __ieee754_hypotf for PowerPC32.
16728
16729 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Define
16730 long_double_symbol only if __logbl is defined.
16731 * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: Moved to ...
16732 * sysdeps/powerpc/power7/fpu/s_logb.c: ... here.
16733 * sysdeps/powerpc/powerpc32/power7/fpu/s_logbf.c: Move to ...
16734 * sysdeps/powerpc/power7/fpu/s_logbf.c: ... here.
16735 * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c: Move to ...
16736 * sysdeps/powerpc/power7/fpu/s_logbl.c: ... here.
16737 * sysdeps/powerpc/powerpc64/power7/fpu/s_logb.c: Adjust to use new
16738 path for implementation.
16739 * sysdeps/powerpc/powerpc64/power7/fpu/s_logbf.c: Likewise.
16740 * sysdeps/powerpc/powerpc64/power7/fpu/s_logbl.c: Likewise.
16741 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add logbf,
16742 logb, and logbl multiarch implementations for PowerPC32.
16743 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-power7.c: New
16744 file.
16745 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-ppc32.c: New
16746 file.
16747 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c: New file:
16748 multiarch logb for PowerPC32.
16749 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-power7.c: New
16750 file.
16751 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-ppc32.c: New
16752 file.
16753 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf.c: New file:
16754 multiarch logbf for PowerPC32.
16755 * sysdeps/powerpc/power4/fpu/multiarch/s_logbl-power7.c: New file.
16756 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-ppc32.c: New
16757 file.
16758 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl.c: New file:
16759 multiarch logbl implementation for PowerPC32.
16760
16761 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add modf
16762 and modff multiarch implementations.
16763 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c:
16764 New file.
16765 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-ppc32.c:
16766 New file.
16767 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c: New file:
16768 multiarch modf for PowerPC32.
16769 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c:
16770 New file.
16771 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-ppc32.c:
16772 New file.
16773 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff.c: New file:
16774 multiarch modff for PowerPC32.
16775
16776 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add lrint
16777 and lrintf multiarch implementations.
16778 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-power6x.S:
16779 New file.
16780 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-ppc32.S:
16781 New file.
16782 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint.c: New file:
16783 multiarch lrint for PowerPC32.
16784 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrintf.c: New
16785 file: multiarch lrintf for PowerPC32.
16786
16787 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add lround
16788 and lroundf multiarch implementations.
16789 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power5+.S:
16790 New file.
16791 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power6.S:
16792 New file.
16793 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-ppc32.S:
16794 New file.
16795 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround.c: New file:
16796 multiarch lround for PowerPC32.
16797 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lroundf.c: New
16798 file: multiarch lroundf for PowerPC32.
16799
16800 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add
16801 copysign and copysignf multiarch implementations.
16802 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-power6.S:
16803 New file.
16804 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-ppc32.S:
16805 New file.
16806 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c: New
16807 file: multiarch copysign for PowerPC32.
16808 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c: New
16809 file: multiarch copysignf for PowerPC32.
16810
16811 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add trunc
16812 and truncf multiarch implementations.
16813 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-power5+.S:
16814 New file.
16815 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-ppc32.S: New
16816 file.
16817 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c: New file:
16818 multiarch trunc for PowerPC32.
16819 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-power5+.S:
16820 New file.
16821 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-ppc32.S:
16822 New file.
16823 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c: New file:
16824 multiarch truncf for PowerPC32.
16825
16826 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add round
16827 and roundf multiarch implementations.
16828 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-power5+.S:
16829 New file.
16830 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-ppc32.S: New
16831 file.
16832 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c: New file:
16833 multiarch round for PowerPC32.
16834 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-power5+.S:
16835 New file.
16836 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-ppc32.S:
16837 New file.
16838 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c: New file:
16839 multiarch roundf for PowerPC32.
16840
16841 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add floor
16842 and floorf multiarch implementations.
16843 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-power5+.S:
16844 New file.
16845 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-ppc32.S: New
16846 file.
16847 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c: New file:
16848 multiarch floor for PowerPC32.
16849 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-power5+.S:
16850 New file.
16851 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-ppc32.S:
16852 New file.
16853 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c: New file:
16854 multiarch floorf for PowerPC32.
16855
16856 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add ceil
16857 and ceilf multiarch implementations.
16858 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-power5+.S:
16859 New file.
16860 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-ppc32.S: New
16861 file.
16862 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c: New file:
16863 multiarch ceil for PowerPC32.
16864 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-power5+.S:
16865 New file.
16866 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-ppc32.S: New
16867 file.
16868 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c: New file:
16869 multiarch ceilf for PowerPC32.
16870
16871 * sysdeps/ieee754/dbl-64/s_finite.c (__finite): Redefine it if FINITE
16872 is defined.
16873 * sysdeps/ieee754/flt-32/s_finitef.c (__finitef): Redefine it if
16874 FINITEF is defined.
16875 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add finite
16876 and finitef multiarch implementations.
16877 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-power7.S:
16878 New file.
16879 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-ppc32.c: New
16880 file.
16881 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c: New file:
16882 multiarch finite for PowerPC32.
16883 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef-ppc32.c:
16884 New file.
16885 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef.c: New
16886 file: multiarch finitef for PowerPC32.
16887
16888 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add isinf
16889 and isinff multiarch implementations.
16890 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-power7.S: New
16891 file.
16892 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-ppc32.c: New
16893 file.
16894 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c: New file:
16895 multiarch isinf for PowerPC32.
16896 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff-ppc32.c:
16897 New file.
16898 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff.c: New file:
16899 multiarch isinff for PowerPC32.
16900
16901 * sysdeps/powerpc/powerpc32/fpu/s_isnan.S (__isnan): Only implement
16902 alias when __isnan is defined.
16903 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add isnan
16904 and isnanf multiarch implementations.
16905 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power5.S: New
16906 file.
16907 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power6.S: New
16908 file.
16909 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power7.S: New
16910 file.
16911 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-ppc32.S: New
16912 file.
16913 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c: New file:
16914 multiarch isnan for PowerPC32.
16915 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power6.S:
16916 New file.
16917 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power7.S:
16918 New file.
16919 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf.c: New file:
16920 multiarch isnanf for PowerPC32.
16921
16922 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add sqrt
16923 and sqrtf multiarch implementations.
16924 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-power5.S: New
16925 file.
16926 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-ppc32.S: New
16927 file.
16928 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt.c: New file:
16929 multiarch sqrt for PowerPC32.
16930 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-power5.S: New
16931 file.
16932 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-ppc32.S: New
16933 file.
16934 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf.c: New file:
16935 multiarch sqrtf for PowerPC32.
16936
16937 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add llround
16938 and llroundf multiarch implementations.
16939 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power5+.S:
16940 New file.
16941 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power6.S:
16942 New file.
16943 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-ppc32.S:
16944 New file.
16945 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround.c: New
16946 file: multiarch llround for PowerPC32.
16947 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llroundf.c: New
16948 file: multiarch llroundf for PowerPC32.
16949
16950 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: New file:
16951 multiarch PowerPC32 fpu implementations.
16952 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-power6.S:
16953 New file.
16954 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-ppc32.S:
16955 New file.
16956 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint.c: New file:
16957 multiarch llrint for PowerPC32.
16958 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-power6.S:
16959 New file.
16960 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-ppc32.S:
16961 New file.
16962 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf.c: New
16963 file.
16964
16965 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/Implies: Remove.
16966
16967 * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power6.c: New
16968 file.
16969 * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power7.c: New
16970 file.
16971 * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-ppc32.c: New
16972 file.
16973 * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c: New file:
16974 multiarch wordcopy for PPC32.
16975 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcscpy
16976 wordcopy objects.
16977 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
16978 (__libc_ifunc_impl_list): Likewise.
16979 * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Move ...
16980 * sysdeps/powerpc/power4/wordcopy.c: ... to here.
16981 * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Move ...
16982 * sysdeps/powerpc/power6/wordcopy.c: ... to here.
16983 * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Remove uneeded file.
16984 * sysdeps/powerpc/powerpc64/power4/wordcopy.c: Likewise.
16985
16986 * wcsmbs/wcscpy.c (wcscpy): Using macro to redefine symbol name
16987 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power6.c: New
16988 file.
16989 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power7.c: New
16990 file.
16991 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c: New
16992 file.
16993 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c: New file:
16994 multiarch wcscpy for PPC32.
16995 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcscpy
16996 multiarch objects.
16997 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
16998 (__libc_ifunc_impl_list): Likewise.
16999 * sysdeps/powerpc/powerpc32/power6/wcsrchr.c: Move ...
17000 * sysdeps/powerpc/power6/wcsrchr.c: ... to here.
17001 * sysdeps/powerpc/powerpc64/power6/wcscpy.c: Adjust to use
17002 sysdeps/powerpc/power6/wcscpy.c.
17003
17004 * wcsmbs/wcsrchr.c (wcsrchr): Using macro to redefine symbol name
17005 * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power6.c: New
17006 file.
17007 * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power7.c: New
17008 file.
17009 * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c: New
17010 file.
17011 * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c: New file:
17012 multiarch wcsrchr for PPC32.
17013 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcschr
17014 multiarch objects.
17015 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
17016 (__libc_ifunc_impl_list): Likewise.
17017 * sysdeps/powerpc/powerpc32/power6/wcsrchr.c: Move ...
17018 * sysdeps/powerpc/power6/wcsrchr.c: ... to here.
17019 * sysdeps/powerpc/powerpc64/power6/wcsrchr.c: Adjust to use
17020 sysdeps/powerpc/power6/wcsrchr.c.
17021
17022 * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power6.c: New
17023 file.
17024 * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power7.c: New
17025 file.
17026 * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c: New file.
17027 * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c: New file:
17028 multiarch wcschr for PPc32.
17029 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcschr
17030 multiarch objects.
17031 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
17032 (__libc_ifunc_impl_list): Likewise.
17033 * sysdeps/powerpc/powerpc32/power6/wcschr.c: Move ...
17034 * sysdeps/powerpc/power6/wcschr.c: ... to here.
17035 * sysdeps/powerpc/powerpc64/power6/wcschr.c: Adjust to use
17036 sysdeps/powerpc/power6/wcschr.c.
17037
17038 * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strchr.S: New file.
17039 * sysdeps/powerpc/powerpc32/power4/multiarch/strchr-power7.S: New
17040 file.
17041 * sysdeps/powerpc/powerpc32/power4/multiarch/strchr-ppc32.S: New file.
17042 * sysdeps/powerpc/powerpc/powerpc32/power4/multiarch/strchr.c: New
17043 file: multiarch strchr for PPC32.
17044 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strchr
17045 multiarch objects.
17046 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
17047 (__libc_ifunc_impl_list): Likewise.
17048
17049 * string/strchrnul.c (__strchrnul): Using macro to redefine symbol
17050 name.
17051 * sysdeps/powerpc/powerpc32/power4//multiarch/strchrnul-power7.S: New
17052 file.
17053 * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-ppc32.c: New
17054 file.
17055 * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c: New file:
17056 multiarch strchrnul for PPC32.
17057 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strchrnul
17058 multiarch objects.
17059 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
17060 (__libc_ifunc_impl_list): Likewise.
17061
17062 * sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c: New
17063 file.
17064 * sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c: New file:
17065 multiarch strncasecmp for PPC32.
17066 * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l-power7.c: New
17067 file.
17068 * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c: New file:
17069 multiarch strncasecmp_l for PPC32.
17070 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added
17071 strncasecmp multiarch objects.
17072 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
17073 (__libc_ifunc_impl_list): Likewise.
17074
17075 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S: New
17076 file.
17077 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c: New file:
17078 multiarch strncasecmp for PPC32.
17079 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S:
17080 New file.
17081 * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c: New file:
17082 multiarch strcasecmp_l for PPC32.
17083 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strcasecmp
17084 multiarch objects.
17085 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
17086 (__libc_ifunc_impl_list): Likewise.
17087
17088 * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-power7.S: New
17089 file.
17090 * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S: New
17091 file.
17092 * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c: New file:
17093 multiarch strncmp for PPC32.
17094 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strncmp
17095 multiarch objects.
17096 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
17097 (__libc_ifunc_impl_list): Likewise.
17098
17099 * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strnlen.c: New file.
17100 * sysdeps/powerpc/powerpc32//power4/multiarch/strnlen-power7.S: New
17101 file.
17102 * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-ppc32.c: New file.
17103 * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c: New file.
17104 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strnlen
17105 multiarch objects.
17106 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
17107 (__libc_ifunc_impl_list): Likewise.
17108
17109 * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-power7.S: New
17110 file.
17111 * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S: New
17112 file.
17113 * sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c: New file.
17114 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strlen
17115 multiarch objects.
17116 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
17117 (__libc_ifunc_impl_list): Likewise.
17118
17119 * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-power7.S: New
17120 file.
17121 * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c: New
17122 file.
17123 * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c: New file:
17124 multiarch rawmemchr for PPC32.
17125 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added rawmemchr
17126 multiarch objects.
17127 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
17128 (__libc_ifunc_impl_list): Likewise.
17129
17130 * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-power7.S: New
17131 file.
17132 * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c: New
17133 file.
17134 * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c: New
17135 file: memrchr multiarch for PPC32.
17136 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added memrchr
17137 multiarch objects.
17138 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
17139 (__libc_ifunc_impl_list): Likewise.
17140
17141 * string/memchr.c (__memchr): Using macro to redefine symbol name.
17142 * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-power7.S: New
17143 file.
17144 * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c: New File.
17145 * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c: New file:
17146 multiarch memchr for PPC32.
17147 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memchr
17148 multiarch objects.
17149 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
17150 (__libc_ifunc_impl_list): Likewise.
17151
17152 * string/mempcpy.c (__mempcpy): Using macro to redefine symbol name.
17153 * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-power7.S: New
17154 file.
17155 * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-ppc32.c: New
17156 file.
17157 * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c: New
17158 file: multiarch mempcpy for PPC32.
17159 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add mempcpy
17160 multiarch objects.
17161 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
17162 (__libc_ifunc_impl_list): Likewise.
17163
17164 * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power6.S: New file.
17165 * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power7.S: New file.
17166 * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S: New file.
17167 * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: New file:
17168 multiarch bzero for PPC32.
17169 * sysdeps/powerpc/powerpc32/power4/multiarch/memset-power6.S: New
17170 file.
17171 * sysdeps/powerpc/powerpc32/power4/multiarch/memset-power7.S: New
17172 file.
17173 * sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S: New file.
17174 * sysdeps/powerpc/powerpc/powerpc32/power4/multiarch/memset.c: New
17175 file: multiarch memset for PPC32.
17176 * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memset.S: New file.
17177 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add bzero and
17178 memset multiarch objects.
17179 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
17180 (__libc_ifunc_impl_list): Likewise.
17181
17182 * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-power7.S: New
17183 file.
17184 * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S: New file.
17185 * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c: multiarch
17186 memcmp for PPC32.
17187 * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memcmp.S: New file.
17188 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memcmp
17189 multiarch objects.
17190 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
17191 (__libc_ifunc_impl_list): Likewise.
17192
17193 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-a2.S: New file.
17194 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-cell.S: New file.
17195 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power6.S: New
17196 file.
17197 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power7.S: New
17198 file.
17199 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S: New
17200 file.
17201 * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c: New file:
17202 multiarch memcpy for PPC32.
17203 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memcpy
17204 multiarch objects.
17205 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
17206 (__libc_ifunc_impl_list): Likewise.
17207
17208 * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: New file to
17209 support multiarch for POWER/PPC32.
17210 * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c:
17211 Likewise.
17212 * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h: Likewise.
17213 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/Implies: Remove
17214 Implies file to make multiarch folder appers before the fpu and
17215 default folder for power4 configuration.
17216
172172013-12-06 Siddhesh Poyarekar <siddhesh@redhat.com>
17218
17219 * scripts/bench.pl: Append volatile keyword to type.
17220
172212013-12-05 Kaz Kojima <kkojima@rr.iij4u.or.jp>
17222
17223 * sysdeps/sh/sotruss-lib.c: New file.
17224 * sysdeps/unix/sysv/linux/sh/nptl/c++-types.data: New file.
17225
172262013-12-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
17227
17228 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
17229
172302013-12-05 Joseph Myers <joseph@codesourcery.com>
17231
17232 [BZ #6810]
17233 * math/w_tgamma.c: Include <errno.h>.
17234 (__tgamma): Use __glibc_unlikely. Set errno on underflow to 0.
17235 * math/w_tgammaf.c: Include <errno.h>.
17236 (__tgammaf): Use __glibc_unlikely. Set errno on underflow to 0.
17237 * math/w_tgammal.c: Include <errno.h>.
17238 (__tgammal): Use __glibc_unlikely. Set errno on underflow to 0.
17239 * math/auto-libm-test-in: Do not allow missing errno on tgamma
17240 underflow. Add more tgamma tests.
17241 * math/auto-libm-test-out: Regenerated.
17242 * sysdeps/i386/fpu/libm-test-ulps: Update.
17243 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17244
17245 * math/auto-libm-test-in: Add tests of log, log10, log1p, log2,
17246 sin, sinh, tan, tanh, tgamma, y0 and y1.
17247 * math/auto-libm-test-out: Regenerated.
17248 * math/libm-test.inc (TEST_COND_x86_64): New macro.
17249 (TEST_COND_x86): Likewise.
17250 (M_E2l): Remove macro.
17251 (M_E3l): Likewise.
17252 (M_2_SQRT_PIl): Likewise.
17253 (M_SQRT_PIl): Likewise.
17254 (M_1_DIV_El): Likewise.
17255 (log_test_data): Use AUTO_TESTS_f_f.
17256 (log10_test_data): Likewise.
17257 (log1p_test_data): Likewise.
17258 (log2_test_data): Likewise.
17259 (sin_test_data): Likewise.
17260 (sin_tonearest_test_data): Likewise.
17261 (sin_towardzero_test_data): Likewise.
17262 (sin_downward_test_data): Likewise.
17263 (sin_upward_test_data): Likewise.
17264 (sinh_test_data): Likewise.
17265 (sinh_tonearest_test_data): Likewise.
17266 (sinh_towardzero_test_data): Likewise.
17267 (sinh_downward_test_data): Likewise.
17268 (sinh_upward_test_data): Likewise.
17269 (tan_test_data): Likewise.
17270 (tan_tonearest_test_data): Likewise.
17271 (tan_towardzero_test_data): Likewise.
17272 (tan_downward_test_data): Likewise.
17273 (tan_upward_test_data): Likewise.
17274 (tanh_test_data): Likewise.
17275 (tgamma_test_data): Likewise.
17276 (y0_test_data): Likewise.
17277 (y1_test_data): Likewise.
17278 * math/gen-auto-libm-tests.c (special_fill_pi_4): New function.
17279 (special_real_inputs): Add pi/4.
17280 * sysdeps/i386/fpu/libm-test-ulps: Update.
17281 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17282
172832013-12-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
17284
17285 * sysdeps/powerpc/powerpc32/__longjmp-common.S: Add "longjmp" and
17286 "longjmp_target" static probes.
17287 (__longjmp): Rename to __longjmp_symbol.
17288 * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
17289 * sysdeps/powerpc/powerpc32/__longjmp.S: Define __longjmp_symbol based
17290 on which longjmp to generate.
17291 * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
17292 * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Add "setjmp" static
17293 probe.
17294 (__sigsetjmp): Rename to __sigsetjmp_symbol.
17295 (__sigjmp_save): Rename to __sigjmp_save_symbol.
17296 * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
17297 * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Define __sigsetjmp_symbol
17298 and __sigjmp_save_symbol based on which sigsetjmp to generated.
17299 * sysdeps/powerpc/powerpc32/setjmp.S: Likewise
17300 * sysdeps/unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: Define
17301 __longjmp_symbol based on which __longjmp to generate.
17302 * sysdeps/powerpc/powerpc64/setjmp-common.S: Add "setjmp" static
17303 probe.
17304 (setjmp): Rename to setjmp_symbol.
17305 (__sigsetjmp): Rename to __sigsetjmp_symbol.
17306 (_setjmp): Rename to _setjmp_symbol.
17307 (__sigsetjmp): Rename to __sigsetjmp_symbol.
17308 * sysdeps/powerpc/powerpc64/setjmp.S: Define setjmp_symbol,
17309 _setjmp_symbol, __sigsetjmp_symbol, and __sigjmp_save_symbol based on
17310 which setjmp to generate.
17311 * sysdeps/powerpc/powerpc64/__longjmp-common.S: Add "longjmp" and
17312 "longjmp_target" static probes.
17313
173142013-12-05 Siddhesh Poyarekar <siddhesh@redhat.com>
17315
17316 * benchtests/README: Add note about output arguments.
17317 * benchtests/bench-sincos.c: Remove file.
17318 * benchtests/sincos-inputs: New file.
17319 * scripts/bench.pl: Identify output arguments and define
17320 static variables for them.
17321
17322 * debug/stpncpy_chk.c (__stpncpy_chk): Remove unused variables.
17323
17324 [BZ #15941]
17325 * Makefile (INSTALL): Add install-plain.texi as the primary
17326 dependency.
17327 * manual/install-plain.texi: New file.
17328 * manual/install.texi: Include node directive only for
17329 non-plaintext output.
17330
173312013-12-04 Joseph Myers <joseph@codesourcery.com>
17332
17333 * stdlib/longlong.h: Update from GCC.
17334
17335 [BZ #6807]
17336 [BZ #15901]
17337 * math/w_j0.c (y0): Raise FE_DIVBYZERO on zero argument.
17338 * math/w_j0f.c (y0f): Likewise.
17339 * math/w_j0l.c (__y0l): Likewise.
17340 * math/w_j1.c (y1): Likewise.
17341 * math/w_j1f.c (y1f): Likewise.
17342 * math/w_j1l.c (__y1l): Likewise
17343 * math/w_jn.c (yn): Likewise.
17344 * math/w_jnf.c (ynf): Likewise.
17345 * sysdeps/ieee754/k_standard.c (__kernel_standard): Use ERANGE for
17346 Bessel function pole errors in _POSIX_ mode. Use NAN as return
17347 value for Bessel function domain errors outside _SVID_ mode.
17348 Adjust sign of return value for yn (negative integer, 0).
17349 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_ynl): Use division
17350 by zero in return for negative x and set sign appropriately for
17351 negative n.
17352 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_ynl): Likewise.
17353 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Likewise.
17354 * math/libm-test.inc (y0_test_data): Add more tests and adjust
17355 expectations in error cases.
17356 (y1_test_data): Likewise.
17357 (yn_test_data): Likewise.
17358 * sysdeps/i386/fpu/libm-test-ulps: Update.
17359 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17360
173612013-11-12 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
17362
17363 * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-variants): Rename
17364 "64" to "64-v1". Add "64-v2".
17365 (abi-64-options): Rename to ...
17366 (abi-64-v1-options): ... this. Redefine _CALL_ELF.
17367 (abi-64-condition): Rename to ...
17368 (abi-64-v1-condition): ... this. Add _CALL_ELF check.,
17369 (abi-64-ld-soname): Rename to ...
17370 (abi-64-v1-ld-soname): ... this.
17371 (abi-64-v2-options): Define.
17372 (abi-64-v2-condition): Likewise.
17373 (abi-64-v2-ld-soname): Likewise.
17374 * sysdeps/unix/sysv/linux/powerpc/ldconfig.h
17375 (SYSDEP_KNOWN_INTERPRETER_NAMES): Add "/lib64/ld64.so.2".
17376 * sysdeps/unix/sysv/linux/powerpc/powerpc64/Makefile: Delete file.
17377 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac: New file.
17378 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Generate.
17379
173802013-11-12 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
17381 Alan Modra <amodra@gmail.com>
17382
17383 * sysdeps/powerpc/bits/link.h (La_ppc64v2_regs, La_ppc64v2_retval):
17384 New versions for use with the ELFv2 ABI.
17385 (la_ppc64v2_gnu_pltenter, la_ppc64v2_gnu_pltexit): Add prototypes.
17386 * sysdeps/powerpc/lsdodefs.h (struct La_ppc64v2_regs): Add forward
17387 declaration.
17388 (struct La_ppc64v2_retval): Likewise.
17389 (ARCH_PLTENTER_MEMBERS): Add ppc64v2_gnu_pltenter.
17390 (ARCH_PLTEXIT_MEMBERS): Add ppc64v2_gnu_pltexit.
17391 * sysdeps/powerpc/powerpc64/dl-machine.h (ARCH_LA_PLTENTER): Define
17392 to ppc64v2_gnu_pltenter if _CALL_ELF == 2.
17393 (ARCH_LA_PLTEXIT): Define to ppc64v2_gnu_pltexit if _CALL_ELF == 2.
17394 * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve):
17395 Do not save or restore CR.
17396 (FRAME_SIZE, VR_RTN): Provide updated values for _CALL_ELF == 2.
17397 (_dl_profile_resolve): Do no save or restore CR. Support extended
17398 return values for ELFv2 ABI. Fix location of FPR return registers.
17399 * sysdeps/powerpc/powerpc64/tst-audit.h (pltenter, pltexit): Provide
17400 updated values for _CALL_ELF == 2.
17401 (La_regs, La_retval, int_retval): Likewise.
17402
174032013-12-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
17404
17405 * sysdeps/powerpc/powerpc64/sysdep.h (FRAME_MIN_SIZE): Define.
17406 (FRAME_MIN_SIZE_PARM): Likewise.
17407 (FRAME_BACKCHAIN): Likewise.
17408 (FRAME_CR_SAVE): Likewise.
17409 (FRAME_LR_SAVE): Likewise.
17410 (FRAME_TOC_SAVE): Likewise.
17411 (FRAME_PARM_SAVE): Likewise.
17412 (FRAME_PARM1_SAVE, FRAME_PARM2_SAVE, FRAME_PARM3_SAVE,
17413 FRAME_PARM4_SAVE, FRAME_PARM5_SAVE, FRAME_PARM6_SAVE,
17414 FRAME_PARM7_SAVE, FRAME_PARM8_SAVE, FRAME_PARM9_SAVE): Likewise.
17415 (call_mcount_parm_offset): New macro.
17416 (SAVE_ARG, REST_ARG, CFI_SAVE_ARG): Use it.
17417 (PROF): Use symbolic stack frame offsets.
17418 (TAIL_CALL_SYSCALL_ERROR): Likewise.
17419 * sysdeps/powerpc/powerpc64/dl-trampoline.S (FRAME_SIZE, INT_PARMS):
17420 Redefine in terms of FRAME_MIN_SIZE.
17421 (_dl_runtime_resolve): Use symbolic stack frame offsets.
17422 (_dl_profile_resolve): Likewise. Update comment.
17423 * sysdeps/powerpc/powerpc64/setjmp-common.S (__GI__setjmp): Use
17424 symbols stack frame offsets.
17425 (__sigsetjmp): Likewise.
17426 * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
17427 * sysdeps/powerpc/powerpc64/ppc-mcount.S (_mcount): Likewise.
17428 * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Likewise.
17429 * sysdeps/powerpc/powerpc64/crtn.S (_init, _fini): Likewise.
17430
17431 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.sym
17432 (FRAME_BACKCHAIN): Remove.
17433 (FRAME_CR_SAVE): Likewise.
17434 (FRAME_LR_SAVE): Likewise.
17435 (FRAME_COMPILER_DW): Likewise.
17436 (FRAME_LINKER_DW): Likewise.
17437 (FRAME_TOC_SAVE): Likewise.
17438 (FRAME_PARM_SAVE): Likewise.
17439 (FRAME_PARM1_SAVE, FRAME_PARM2_SAVE, FRAME_PARM3_SAVE)
17440 (FRAME_PARM4_SAVE, FRAME_PARM5_SAVE, FRAME_PARM6_SAVE)
17441 (FRAME_PARM7_SAVE, FRAME_PARM8_SAVE, FRAME_PARM9_SAVE): Likewise.
17442 * sysdeps/unix/sysv/linux/powerpc/powerpc64/____longjmp_chk.S
17443 (CHECK_SP): Use symbolic stack frame offsets.
17444 * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S (__brk): Use "red
17445 zone" instead of caller's parameter save area for temp storage.
17446 * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
17447 Likewise. Also, use symbolic stack frame offsets.
17448 * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S (FRAMESIZE,
17449 stackblock): Redefine for _CALL_ELF == 2 to save parameters into
17450 our own stack frame instead of the caller's.
17451 (__socket): Use symbolic stack frame offsets.
17452
174532013-12-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
17454 Alan Modra <amodra@gmail.com>
17455
17456 * elf/elf.h (DT_PPC64_OPT, PPC64_OPT_TLS, PPC64_OPT_MULTI_TOC):
17457 Define.
17458 (STO_PPC64_LOCAL_BIT, STO_PPC64_LOCAL_MASK)
17459 (PPC64_LOCAL_ENTRY_OFFSET): Define.
17460 * sysdeps/powerpc/powerpc64/dl-machine.h (ppc64_local_entry_offset):
17461 New function.
17462 (elf_machine_fixup_plt): Call it.
17463 (elf_machine_plt_conflict): Likewise. Add map, sym_map, and
17464 reloc arguments.
17465 (elf_machine_rela): Update call to elf_machine_plt_conflict.
17466 * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve)
17467 (_dl_profile_resolve) [_CALL_ELF == 2]: Restore caller's TOC into
17468 r2 before calling target.
17469
174702013-12-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
17471 Alan Modra <amodra@gmail.com>
17472
17473 * sysdeps/powerpc/powerpc64/sysdep.h [_CALL_ELF == 2]
17474 (PPC64_LOAD_FUNCPTR, DOT_LABEL, BODY_LABEL, ENTRY_2, END_2): New
17475 versions of macros to support ELFv2 ABI.
17476 (LOCALENTRY): New macro.
17477 (ENTRY, EALIGN): Use it.
17478 * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Use LOCALENTRY.
17479 * sysdeps/powerpc/powerpc64/setjmp-common.S (__GI__setjmp): Do not
17480 fall through into ENTRY entry point.
17481 * libc/sysdeps/powerpc/powerpc64/dl-machine.h (Elf64_FuncDesc):
17482 Only define if _CALL_ELF != 2.
17483
17484 (elf_machine_matches_host): Verify ABI version matches.
17485 (RTLD_START): Use LOCALENTRY.
17486 (elf_machine_type_class): Use SHN_UNDEF PLT handling for ELFv2 ABI.
17487 (PLT_INITIAL_ENTRY_WORDS): New version for _CALL_ELF != 2.
17488 (PLT_ENTRY_WORDS): New macro.
17489 (GLINK_INITIAL_ENTRY_WORDS, GLINK_ENTRY_WORDS): Likewise.
17490 (elf_machine_runtime_setup): Support ELFv2 ABI.
17491 (elf_machine_fixup_plt): Likewise.
17492 (elf_machine_plt_conflict): Likewise.
17493 (resolve_ifunc): Likewise.
17494 * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irela): Likewise.
17495 * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
17496 Likewise.
17497 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
17498 (DL_ADDR_SYM_MATCH): Only define if _CALL_ELF != 2.
17499 * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
17500 (makecontext): Support ELFv2 ABI.
17501 * elf/elf.h (EF_PPC64_ABI): Define.
17502
175032013-12-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
17504
17505 * sysdeps/powerpc/powerpc64/sysdep.h
17506 (PPC64_LOAD_FUNCPTR) [ASSEMBLER]: New assembler macro.
17507 (ENTRY_1) [ASSEMBLER]: Do not switch to .text section here ...
17508 (ENTRY) [ASSEMBLER]: ... but instead here ...
17509 (EALIGN) [ASSEMBLER]: ... and here.
17510 (PPC64_LOAD_FUNCPTR) [!ASSEMBLER]: New macro.
17511 (ENTRY_1) [!ASSEMBLER]: New macro; set up .opd entry.
17512 (ENTRY_2) [!ASSEMBLER]: Use it.
17513 * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Update for
17514 ENTRY_2 changes. Use PPC64_LOAD_FUNCPTR.
17515 * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve)
17516 (_dl_profile_resolve): Use PPC64_LOAD_FUNCPTR.
17517 * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Use ENTRY_2.
17518 * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (clone):
17519 Use PPC64_LOAD_FUNCPTR.
17520
17521 * sysdeps/powerpc/tls.h (tcbhead_t): Add __private_ss field.
17522
175232013-12-04 Alan Modra <amodra@gmail.com>
17524
17525 * elf/elf.h (R_PPC64_TLSGD, R_PPC64_TLSLD, R_PPC64_TOCSAVE): Define.
17526 (R_PPC64_ADDR16_HIGH, R_PPC64_ADDR16_HIGHA): Likewise.
17527 (R_PPC64_TPREL16_HIGH, R_PPC64_TPREL16_HIGHA): Likewise.
17528 (R_PPC64_DTPREL16_HIGH, R_PPC64_DTPREL16_HIGHA): Likewise.
17529
17530 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Add
17531 overflow checking for R_PPC64_ADDR16_HI, R_PPC64_ADDR16_HA,
17532 R_PPC64_TPREL16_HI, and R_PPC64_TPREL16_HA.
17533 Support new R_PPC64_ADDR16_HIGH, R_PPC64_ADDR16_HIGHA,
17534 R_PPC64_TPREL16_HIGH, and R_PPC64_TPREL16_HIGHA relocations.
17535 Fix overflow checking for R_PPC64_ADDR30 and R_PPC64_ADDR32.
17536
175372013-12-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
17538
17539 * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
17540 (__makecontext): Fix incorrect CFI when backtracing out of
17541 context created via makecontext.
17542 * sysdeps/unix/sysv/linux/powerpc/powerpc64/secontext.S
17543 (__setcontext): Fix incorrect CFI during switch to new context.
17544 (__novec_setcontext): Likewise.
17545
175462013-12-04 Ondřej Bílka <neleai@seznam.cz>
17547
17548 [BZ #4772]
17549 * time/strptime_l.c (__strptime_internal): Allow modifiers
17550 in strptime.
17551 * time/tst-strptime.c (day_tests): Add testcase.
17552
175532013-12-04 Siddhesh Poyarekar <siddhesh@redhat.com>
17554
17555 * scripts/bench.pl: Skip over blank lines.
17556
175572013-12-04 Paul Eggert <eggert@cs.ucla.edu>
17558
17559 [BZ #926]
17560 * manual/time.texi (Calendar Time): Clarify what timezone functions
17561 use.
17562
175632013-12-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
17564
17565 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
17566
175672013-12-04 Ondřej Bílka <neleai@seznam.cz>
17568
17569 * debug/memcpy_chk.c (__memcpy_chk): Use call instead of custom
17570 implementation.
17571 * debug/memmove_chk.c (MEMMOVE_CHK): Likewise.
17572 * debug/mempcpy_chk.c (__mempcpy_chk): Likewise.
17573 * debug/memset_chk.c (__memset_chk): Likewise.
17574 * debug/stpncpy_chk.c (__stpncpy_chk): Likewise.
17575 * debug/strncpy_chk.c: Likewise.
17576
175772013-12-03 Joseph Myers <joseph@codesourcery.com>
17578
17579 [BZ #15268]
17580 [BZ #15425]
17581 * sysdeps/ieee754/dbl-64/e_exp.c: Include <float.h>.
17582 (__ieee754_exp): For possibly underflowing results, check size of
17583 result and force underflow exception if required.
17584 * math/auto-libm-test-in: Add more tests of exp.
17585 * math/auto-libm-test-out: Regenerated.
17586 * sysdeps/i386/fpu/libm-test-ulps: Update.
17587 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17588
17589 [BZ #16283]
17590 * math/w_exp2.c (__exp2): Handle a zero result as underflow.
17591 * math/w_exp2f.c (__exp2f): Likewise.
17592 * math/w_exp2l.c (__exp2l): Likewise.
17593 * math/auto-libm-test-in: Do not allow missing errno on exp2
17594 underflow.
17595 * math/auto-libm-test-out: Regenerated.
17596
175972013-12-03 Ondřej Bílka <neleai@seznam.cz>
17598
17599 [BZ #16274]
17600 * sysdeps/unix/sysv/linux/shm_open.c (shm_open): Correctly
17601 handle filename validation.
17602 * rt/tst-shm.c (do_test): Do not skip a test when shm_open fails.
17603 (do_open): Delete.
17604
176052013-12-03 Joseph Myers <joseph@codesourcery.com>
17606
17607 [BZ #6786]
17608 * sysdeps/ieee754/dbl-64/s_erf.c: Include <errno.h> and <float.h>.
17609 (__erfc): Set errno to ERANGE when returning 0 or tiny * tiny.
17610 * sysdeps/ieee754/flt-32/s_erff.c: Include <errno.h> and
17611 <float.h>.
17612 (__erfcf): Set errno to ERANGE when returning 0 or tiny * tiny.
17613 * sysdeps/ieee754/ldbl-128/s_erfl.c: Include <errno.h>.
17614 (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
17615 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Include <errno.h>.
17616 (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
17617 * sysdeps/ieee754/ldbl-96/s_erfl.c: Include <errno.h>.
17618 (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
17619 * math/auto-libm-test-in: Don't allow missing errno from erfc.
17620 Add more erfc tests.
17621 * math/auto-libm-test-out: Regenerated.
17622 * sysdeps/i386/fpu/libm-test-ulps: Update.
17623 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17624
17625 * math/auto-libm-test-in: Add tests of erf, erfc, exp, exp10,
17626 exp2, expm1, j0 and j1.
17627 * math/auto-libm-test-out: Regenerated.
17628 * math/libm-test.inc (erf_test_data): Use AUTO_TESTS_f_f.
17629 (erfc_test_data): Likewise.
17630 (exp_test_data): Likewise.
17631 (exp_tonearest_test_data): Likewise.
17632 (exp_towardzero_test_data): Likewise.
17633 (exp_downward_test_data): Likewise.
17634 (exp_upward_test_data): Likewise.
17635 (exp10_test_data): Likewise.
17636 (exp2_test_data): Likewise.
17637 (expm1_test_data): Likewise.
17638 (j0_test_data): Likewise.
17639 (j1_test_data): Likewise.
17640 * math/gen-auto-libm-tests.c: Mention "xfail-rounding" in comment.
17641 (input_flag_type): Add flag_xfail_rounding.
17642 (input_flags): Add xfail-rounding.
17643 (adjust_real): Assert mpfr_number_p not mpfr_regular_p.
17644 (output_for_one_input_case): Handle flag_xfail_rounding.
17645 * sysdeps/i386/fpu/libm-test-ulps: Update.
17646 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17647
176482013-12-03 Aurelien Jarno <aurelien@aurel32.net>
17649
17650 [BZ #16289]
17651 * locale/loadarchive.c (_nl_load_locale_from_archive): Avoid
17652 division by 0.
17653
176542013-12-03 Siddhesh Poyarekar <siddhesh@redhat.com>
17655
17656 [BZ #16195]
17657 * include/stap-probe.h [!USE_STAP_PROBE && !__ASSEMBLER__]
17658 (LIBC_PROBE): Change definition to call STAP_PROBE* macros.
17659 (STAP_PROBE0): New macro.
17660 (STAP_PROBE1): Likewise.
17661 (STAP_PROBE2): Likewise.
17662 (STAP_PROBE3): Likewise.
17663 (STAP_PROBE4): Likewise.
17664
176652013-12-02 Ondřej Bílka <neleai@seznam.cz>
17666
17667 * manual/llio.texi (Memory-mapped I/O): Add shm_open and shm_close.
17668
176692013-12-02 Steve Ellcey <sellcey@mips.com>
17670
17671 * benchtests/Makefile (bench): Add sqrt.
17672 (LDLIBS-bench-sqrt): New.
17673 * benchtests/sqrt-input: New.
17674
176752013-12-02 Pavel Simerda <psimerda@redhat.com>
17676
17677 * sysdeps/posix/getaddrinfo.c (GAIH_OKIFUNSPEC): Remove macro.
17678 (GAIH_EAI): Likewise.
17679 (gaih_inet_serv): Don't use GAIH_OKIFUNSPEC.
17680 (gaih_inet): Likewise.
17681 (getaddrinfo): Don't use GAIH_EAI.
17682
17683 * sysdeps/posix/getaddrinfo.c (UNIX_PATH_MAX): Remove macro.
17684 (struct gaih): Remove definition.
17685
176862013-12-02 Siddhesh Poyarekar <siddhesh@redhat.com>
17687
17688 * nss/nss_files/files-hosts.c (_nss_files_gethostbyname4_r):
17689 Use HERRNOP directly.
17690
176912013-12-02 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
17692
17693 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
17694
176952013-11-30 Joseph Myers <joseph@codesourcery.com>
17696
17697 * math/gen-auto-libm-tests.c (test_functions): Add more
17698 single-argument functions.
17699 (special_fill_pi_2): New function.
17700 (special_fill_minus_pi_2): Likewise.
17701 (special_fill_pi_6): Likewise.
17702 (special_fill_minus_pi_6): Likewise.
17703 (special_fill_pi_3): Likewise.
17704 (special_fill_2pi_3): Likewise.
17705 (special_fill_e): Likewise.
17706 (special_fill_1_e): Likewise.
17707 (special_fill_e_minus_1): Likewise.
17708 (special_real_inputs): Add more special inputs.
17709 (output_for_one_input_case): Do not require ERANGE on underflow to
17710 zero if round-to-nearest result does not underflow to zero, unless
17711 exact results required.
17712 * math/auto-libm-test-in: Add tests of acos, acosh, asin, asinh,
17713 atan, atanh, cbrt, cos and cosh.
17714 * math/auto-libm-test-out: Regenerated.
17715 * math/libm-test.inc (acos_test_data): Use AUTO_TESTS_f_f.
17716 (acos_tonearest_test_data): Likewise.
17717 (acos_towardzero_test_data): Likewise.
17718 (acos_downward_test_data): Likewise.
17719 (acos_upward_test_data): Likewise.
17720 (acosh_test_data): Likewise.
17721 (asin_test_data): Likewise.
17722 (asin_tonearest_test_data): Likewise.
17723 (asin_towardzero_test_data): Likewise.
17724 (asin_upward_test_data): Likewise.
17725 (asinh_test_data): Likewise.
17726 (atan_test_data): Likewise.
17727 (atanh_test_data): Likewise.
17728 (cbrt_test_data): Likewise.
17729 (cos_test_data): Likewise.
17730 (cos_tonearest_test_data): Likewise.
17731 (cos_towardzero_test_data): Likewise.
17732 (cos_downward_test_data): Likewise.
17733 (cos_upward_test_data): Likewise.
17734 (cosh_test_data): Likewise.
17735 (cosh_tonearest_test_data): Likewise.
17736 (cosh_towardzero_test_data): Likewise.
17737 (cosh_downward_test_data): Likewise.
17738 (cosh_upward_test_data): Likewise.
17739 * sysdeps/i386/fpu/libm-test-ulps: Update.
17740 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17741
177422013-11-29 Joseph Myers <joseph@codesourcery.com>
17743
17744 [BZ #6787]
17745 * math/w_exp10.c (__exp10): Handle a zero result as underflow.
17746 * math/w_exp10f.c (__exp10f): Likewise.
17747 * math/w_exp10l.c (__exp10l): Likewise.
17748 * math/libm-test.inc (exp10_test_data): Add more tests and expect
17749 errno settings in existing tests.
17750
17751 [BZ #14032]
17752 * sysdeps/i386/fpu/e_sqrt.S (__ieee754_sqrt): Do fsqrt with
17753 precision control set to double precision.
17754 * sysdeps/i386/fpu/w_sqrt.c: New file.
17755 * math/auto-libm-test-in: Add more tests.
17756 * math/auto-libm-test-out: Update.
17757
17758 * math/libm-test.inc (sqrt_tonearest_test_data): New variable.
17759 (sqrt_test_tonearest): New function.
17760 (sqrt_towardzero_test_data): New variable.
17761 (sqrt_test_towardzero): New function.
17762 (sqrt_downward_test_data): New variable.
17763 (sqrt_test_downward): New function.
17764 (sqrt_upward_test_data): New variable.
17765 (sqrt_test_upward): New function.
17766 (main): Call the new functions.
17767
17768 * math/gen-auto-libm-tests.c: New file.
17769 * math/auto-libm-test-in: Likewise.
17770 * math/auto-libm-test-out: New generated file.
17771 * math/gen-libm-test.pl ($auto_input, %auto_tests): New global
17772 variables.
17773 (%beautify): Add generated representations of zero.
17774 (top level): Set $auto_input and call parse_auto_input.
17775 (beautify): Remove trailing "f" from hex float constants.
17776 (parse_args): Handle XFAIL_TEST.
17777 (convert_condition): New function.
17778 (or_value): Likewise.
17779 (or_cond_value): Likewise.
17780 (generate_testfile): Handle AUTO_TESTS_* lines.
17781 (parse_auto_input): New function.
17782 * math/libm-test.inc (XFAIL_TEST): New macro.
17783 (ERRNO_UNCHANGED): Update value.
17784 (ERRNO_EDOM): Likewise.
17785 (ERRNO_ERANGE): Likewise.
17786 (IGNORE_RESULT): Likewise.
17787 (TEST_COND_flt_32): New macro.
17788 (TEST_COND_dbl_64): Likewise.
17789 (TEST_COND_ldbl_96_intel): Likewise.
17790 (TEST_COND_ldbl_96_m68k): Likewise.
17791 (TEST_COND_ldbl_128): Likewise.
17792 (TEST_COND_ldbl_128ibm): Likewise.
17793 (TEST_COND_long32): Likewise.
17794 (TEST_COND_long64): Likewise.
17795 (TEST_COND_before_rounding): Likewise.
17796 (TEST_COND_after_rounding): Likewise.
17797 (enable_test): Handle XFAIL_TEST flag.
17798 (sqrt_test_data): Use AUTO_TESTS_f_f for tests of finite inputs
17799 with finite results.
17800 * math/Makefile ($(objpfx)libm-test.stmp): Depend on
17801 auto-libm-test-out.
17802
178032013-11-29 Siddhesh Poyarekar <siddhesh@redhat.com>
17804 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
17805
17806 [BZ #16214]
17807 * sysdeps/s390/dl-tls.h (__TLS_GET_ADDR): Invoke
17808 __tls_get_addr_internal instead of __tls_get_offset in order to
17809 avoid GOT pointer dependency. Make rtld export
17810 __tls_get_addr_internal@@GLIBC_PRIVATE while still hiding
17811 __tls_get_addr since we are a __tls_get_offset platform.
17812 * sysdeps/s390/s390-64/tls-macros.h (TLS_IE PIC): Don't rely on
17813 GOT pointer being set up before.
17814 * sysdeps/s390/s390-32/tls-macros.h (TLS_IE PIC): Likewise.
17815
178162013-11-28 Joseph Myers <joseph@codesourcery.com>
17817
17818 * manual/math.texi (Errors in Math Functions): Document accuracy
17819 goals.
17820
17821 [BZ #15004]
17822 * sysdeps/ieee754/ldbl-96/e_atan2l.c: Remove file.
17823 * sysdeps/ieee754/ldbl-96/e_ilogbl.c: Likewise.
17824 * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
17825 * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
17826 * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
17827 * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
17828 * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
17829 * sysdeps/ieee754/ldbl-96/s_fpclassifyl.c: Likewise.
17830 * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
17831 * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
17832 * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
17833 * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
17834 * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
17835 * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
17836 * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
17837 * sysdeps/ieee754/ldbl-96/s_truncl.c: Likewise.
17838
17839 * sysdeps/powerpc/nofpu/atomic-feclearexcept.c: New file.
17840 * sysdeps/powerpc/nofpu/atomic-feholdexcept.c: Likewise.
17841 * sysdeps/powerpc/nofpu/atomic-feupdateenv.c: Likewise.
17842 * sysdeps/powerpc/nofpu/flt-rounds.c: Likewise.
17843 * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feclearexcept.c:
17844 Likewise.
17845 * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feholdexcept.c:
17846 Likewise.
17847 * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feupdateenv.c:
17848 Likewise.
17849 * sysdeps/powerpc/powerpc32/e500/nofpu/flt-rounds.c: Likewise.
17850 * sysdeps/powerpc/nofpu/Makefile [$(subdir) = soft-fp]
17851 (sysdep_routines): Add atomic-feholdexcept, atomic-feclearexcept,
17852 atomic-feupdateenv and flt-rounds.
17853 * sysdeps/powerpc/nofpu/Versions (libc): Add
17854 __atomic_feholdexcept, __atomic_feclearexcept,
17855 __atomic_feupdateenv and __flt_rounds to GLIBC_2.19.
17856 * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h
17857 (__feraiseexcept_soft): Declare and use libc_hidden_proto here.
17858 * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c
17859 (__feraiseexcept_soft): Don't declare and use libc_hidden_proto
17860 here.
17861 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libc.abilist:
17862 Update.
17863
17864 * manual/arith.texi (FP Exceptions): Document that exceptions may
17865 not be raised when matherr is used.
17866 (Math Error Reporting): Document overflow in directed rounding
17867 modes. Document that errno may not be set when finite values are
17868 returned on overflow. Document intent to set errno on underflow
17869 only for underflow to zero.
17870
17871 [BZ #16271]
17872 * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Set
17873 round-to-nearest then adjust result for other rounding modes.
17874 * include/fenv.h (fegetround): Use libm_hidden_proto.
17875 * math/fegetround.c (fegetround): Use libm_hidden_def.
17876 * sysdeps/i386/fpu/fegetround.c (fegetround): Likewise.
17877 * sysdeps/powerpc/fpu/fegetround.c (fegetround): Likewise.
17878 * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Likewise.
17879 * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c (fegetround):
17880 Likewise.
17881 * sysdeps/s390/fpu/fegetround.c (fegetround): Likewise.
17882 * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
17883 * sysdeps/sparc/fpu/fegetround.c (fegetround): Likewise.
17884 * sysdeps/x86_64/fpu/fegetround.c (fegetround): Likewise.
17885
178862013-11-28 Siddhesh Poyarekar <siddhesh@redhat.com>
17887
17888 [BZ #16077]
17889 * nss/Versions (libnss_files): Add
17890 _nss_files_gethostbyname3_r.
17891 * nss/nss_files/files-hosts.c (_nss_files_gethostbyname3_r):
17892 New function.
17893 (HOST_DB_LOOKUP): Remove macro.
17894 (_nss_files_gethostbyname_r): Implement function without the
17895 HOST_DB_LOOKUP macro.
17896 (_nss_files_gethostbyname2_r): Likewise.
17897
178982013-11-28 Ondřej Bílka <neleai@seznam.cz>
17899
17900 * malloc/malloc.c (__libc_calloc): Make memset a tail call.
17901
179022013-11-26 Uros Bizjak <ubizjak@gmail.com>
17903
17904 * soft-fp/op-4.h (_FP_FRAC_ASSEMBLE_4): Check rsize against
17905 _FP_W_TYPE_SIZE to avoid "left shift count >= width of type"
17906 warning.
17907
179082013-11-26 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
17909
17910 * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Use
17911 __fe_nomask_env_priv instead of __fe_nomask_env to avoid a PLT call.
17912 * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Likewise.
17913 * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Likewise.
17914 * sysdeps/powerpc/fpu/fenv_libc.h (__fe_nomask_env): Rename to
17915 __fe_nomask_env_priv and attribute_hidden.
17916 * sysdeps/powerpc/fpu/fenv_private.h (libc_fesetenv_ppc): Likewise.
17917 (libc_feupdateenv_test_ppc): Likewise.
17918 (libc_feresetround_ppc): Likewise.
17919 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
17920 (__fe_nomask_env): Rename to __fe_nomask_env_priv and adjust
17921 compat_symbol macro.
17922 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
17923 (__fe_nomask_env): Likewise.
17924 * sysdeps/powerpc/fpu/fe_nomask.c (__fe_nomask_env): Likewise.
17925
179262013-11-26 Ondřej Bílka <neleai@seznam.cz>
17927
17928 * string/Makefile: Remove ifunc tests.
17929 * string/test-string.h: Define TEST_IFUNC.
17930 * string/test-bcopy-ifunc.c: Remove.
17931 * string/test-bzero-ifunc.c: Likewise.
17932 * string/test-memccpy-ifunc.c: Likewise.
17933 * string/test-memchr-ifunc.c: Likewise.
17934 * string/test-memcmp-ifunc.c: Likewise.
17935 * string/test-memcpy-ifunc.c: Likewise.
17936 * string/test-memmem-ifunc.c: Likewise.
17937 * string/test-memmove-ifunc.c: Likewise.
17938 * string/test-mempcpy-ifunc.c: Likewise.
17939 * string/test-memrchr-ifunc.c: Likewise.
17940 * string/test-memset-ifunc.c: Likewise.
17941 * string/test-rawmemchr-ifunc.c: Likewise.
17942 * string/test-stpcpy-ifunc.c: Likewise.
17943 * string/test-stpncpy-ifunc.c: Likewise.
17944 * string/test-strcasecmp-ifunc.c: Likewise.
17945 * string/test-strcasestr-ifunc.c: Likewise.
17946 * string/test-strcat-ifunc.c: Likewise.
17947 * string/test-strchr-ifunc.c: Likewise.
17948 * string/test-strchrnul-ifunc.c: Likewise.
17949 * string/test-strcmp-ifunc.c: Likewise.
17950 * string/test-strcpy-ifunc.c: Likewise.
17951 * string/test-strcspn-ifunc.c: Likewise.
17952 * string/test-strlen-ifunc.c: Likewise.
17953 * string/test-strncasecmp-ifunc.c: Likewise.
17954 * string/test-strncat-ifunc.c: Likewise.
17955 * string/test-strncmp-ifunc.c: Likewise.
17956 * string/test-strncpy-ifunc.c: Likewise.
17957 * string/test-strnlen-ifunc.c: Likewise.
17958 * string/test-strpbrk-ifunc.c: Likewise.
17959 * string/test-strrchr-ifunc.c: Likewise.
17960 * string/test-strspn-ifunc.c: Likewise.
17961 * string/test-strstr-ifunc.c: Likewise.
17962
179632013-11-26 Ondřej Bílka <neleai@seznam.cz>
17964
17965 * benchtests/Makefile: Remove ifunc tests.
17966 * benchtests/bench-string.h: Define TEST_IFUNC.
17967 * benchtests/bench-bcopy-ifunc.c: Remove.
17968 * benchtests/bench-bzero-ifunc.c: Likewise.
17969 * benchtests/bench-memccpy-ifunc.c: Likewise.
17970 * benchtests/bench-memchr-ifunc.c: Likewise.
17971 * benchtests/bench-memcmp-ifunc.c: Likewise.
17972 * benchtests/bench-memcpy-ifunc.c: Likewise.
17973 * benchtests/bench-memmem-ifunc.c: Likewise.
17974 * benchtests/bench-memmove-ifunc.c: Likewise.
17975 * benchtests/bench-mempcpy-ifunc.c: Likewise.
17976 * benchtests/bench-memrchr-ifunc.c: Likewise.
17977 * benchtests/bench-memset-ifunc.c: Likewise.
17978 * benchtests/bench-rawmemchr-ifunc.c: Likewise.
17979 * benchtests/bench-stpcpy_chk-ifunc.c: Likewise.
17980 * benchtests/bench-stpcpy-ifunc.c: Likewise.
17981 * benchtests/bench-stpncpy-ifunc.c: Likewise.
17982 * benchtests/bench-strcasecmp-ifunc.c: Likewise.
17983 * benchtests/bench-strcasestr-ifunc.c: Likewise.
17984 * benchtests/bench-strcat-ifunc.c: Likewise.
17985 * benchtests/bench-strchr-ifunc.c: Likewise.
17986 * benchtests/bench-strchrnul-ifunc.c: Likewise.
17987 * benchtests/bench-strcmp-ifunc.c: Likewise.
17988 * benchtests/bench-strcpy_chk-ifunc.c: Likewise.
17989 * benchtests/bench-strcpy-ifunc.c: Likewise.
17990 * benchtests/bench-strcspn-ifunc.c: Likewise.
17991 * benchtests/bench-strlen-ifunc.c: Likewise.
17992 * benchtests/bench-strncasecmp-ifunc.c: Likewise.
17993 * benchtests/bench-strncat-ifunc.c: Likewise.
17994 * benchtests/bench-strncmp-ifunc.c: Likewise.
17995 * benchtests/bench-strncpy-ifunc.c: Likewise.
17996 * benchtests/bench-strnlen-ifunc.c: Likewise.
17997 * benchtests/bench-strpbrk-ifunc.c: Likewise.
17998 * benchtests/bench-strrchr-ifunc.c: Likewise.
17999 * benchtests/bench-strsep-ifunc.c: Likewise.
18000 * benchtests/bench-strspn-ifunc.c: Likewise.
18001 * benchtests/bench-strstr-ifunc.c: Likewise.
18002
180032013-11-26 Ondřej Bílka <neleai@seznam.cz>
18004
18005 * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_resolve_hold): Fix typo.
18006
180072013-11-26 Ondřej Bílka <neleai@seznam.cz>
18008
18009 * resolv/netdb.h: Use __glibc_reserved instead __unused.
18010 * rt/aio.h: Likewise.
18011 * sysdeps/gnu/bits/utmp.h: Likewise.
18012 * sysdeps/gnu/bits/utmpx.h: Likewise.
18013 * sysdeps/gnu/netinet/ip_icmp.h: Likewise.
18014 * sysdeps/unix/sysv/linux/bits/ipc.h: Likewise.
18015 * sysdeps/unix/sysv/linux/bits/msq.h: Likewise.
18016 * sysdeps/unix/sysv/linux/bits/sem.h: Likewise.
18017 * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
18018 * sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
18019 * sysdeps/unix/sysv/linux/kernel_stat.h: Likewise.
18020 * sysdeps/unix/sysv/linux/ntp_gettimex.c: Likewise.
18021 * sysdeps/unix/sysv/linux/powerpc/bits/ipc.h: Likewise.
18022 * sysdeps/unix/sysv/linux/powerpc/bits/msq.h: Likewise.
18023 * sysdeps/unix/sysv/linux/powerpc/bits/sem.h: Likewise.
18024 * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
18025 * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Likewise.
18026 * sysdeps/unix/sysv/linux/powerpc/powerpc32/kernel_stat.h: Likewise.
18027 * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Likewise.
18028 * sysdeps/unix/sysv/linux/s390/bits/ipc.h: Likewise.
18029 * sysdeps/unix/sysv/linux/s390/bits/msq.h: Likewise.
18030 * sysdeps/unix/sysv/linux/s390/bits/sem.h: Likewise.
18031 * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
18032 * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
18033 * sysdeps/unix/sysv/linux/s390/bits/utmp.h: Likewise.
18034 * sysdeps/unix/sysv/linux/s390/bits/utmpx.h: Likewise.
18035 * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h: Likewise.
18036 * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: Likewise.
18037 * sysdeps/unix/sysv/linux/sh/bits/shm.h: Likewise.
18038 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
18039 * sysdeps/unix/sysv/linux/sparc/bits/ipc.h: Likewise.
18040 * sysdeps/unix/sysv/linux/sparc/bits/msq.h: Likewise.
18041 * sysdeps/unix/sysv/linux/sparc/bits/sem.h: Likewise.
18042 * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
18043 * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
18044 * sysdeps/unix/sysv/linux/sparc/sparc32/kernel_stat.h: Likewise.
18045 * sysdeps/unix/sysv/linux/sparc/sparc64/kernel_stat.h: Likewise.
18046 * sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c: Likewise.
18047 * sysdeps/unix/sysv/linux/sparc/sys/procfs.h: Likewise.
18048 * sysdeps/unix/sysv/linux/sys/timex.h: Likewise.
18049 * sysdeps/unix/sysv/linux/x86/bits/msq.h: Likewise.
18050 * sysdeps/unix/sysv/linux/x86/bits/sem.h: Likewise.
18051 * sysdeps/unix/sysv/linux/x86/bits/shm.h: Likewise.
18052 * sysdeps/unix/sysv/linux/x86/bits/stat.h: Likewise.
18053 * sysdeps/unix/sysv/linux/xstatconv.c: Likewise.
18054 * sysdeps/x86/fpu/bits/fenv.h: Likewise.
18055
180562013-11-25 Carlos O'Donell <carlos@redhat.com>
18057
18058 [BZ #16245]
18059 * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_eventcodes):
18060 Rename PTRAVE_EVENT_SECCOMP to PTRACE_EVENT_SECCOMP.
18061
180622013-11-25 Joseph Myers <joseph@codesourcery.com>
18063
18064 * sysdeps/powerpc/nofpu/fenv_libc.h (__fegetround): New macro.
18065 * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h (__fegetround):
18066 Likewise.
18067
180682013-11-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
18069
18070 * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Use
18071 SET_RESTORE_ROUND instead of feholdexcept/fesetround/fesetenv.
18072 * sysdeps/powerpc/fpu/fenv_libc.h (__fegetround): Remove define.
18073 (__fesetround): Remove define.
18074 * sysdeps/powerpc/fpu/fenv_private.h: New file: Inline floating point
18075 rounding and exceptions handling.
18076 * sysdeps/powerpc/fpu/math_private.h: Include fenv_private.h.
18077 * sysdeps/powerpc/fpu/fenv_libc.h (__fe_mask_env): Define as hidden.
18078 (__fe_nomask_env): Likewise.
18079 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c (__llrintl): Use
18080 __fegetround instead of fegetround.
18081 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Likewise.
18082 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c (__rintl): Likewise.
18083
180842013-11-21 Roland McGrath <roland@hack.frob.com>
18085
18086 * malloc/malloc.c: Move #include <sys/param.h> to the top; comment why
18087 it's there.
18088
18089 * sysdeps/generic/sys/swap.h (swapon): Add FLAGS argument to prototype.
18090
180912013-11-21 Meador Inge <meadori@codesourcery.com>
18092
18093 [BZ #11157]
18094 * crypt/crypt.h (encrypt): Use __glibc_block instead of __block.
18095 (encrypt_r): Likewise.
18096 * malloc/obstack.h (obstack_free): Likewise.
18097 * posix/unistd.h (encrypt): Likewise.
18098
180992013-11-21 Guy Martin <gmsoft@tuxicoman.be>
18100
18101 * sysdeps/generic/ldsodefs.h: Replace DL_DT_INIT_ADDRESS() and
18102 DL_DT_FINI_ADDRESS() macro with DL_CALL_DT_INIT() and
18103 DL_CALL_DT_FINI() that call the functions directly.
18104 * elf/dl-init.c: Use the new DL_CALL_DT_INIT() macro.
18105 * elf/dl-close.c: Use the new DL_CALL_DT_FINI() macro.
18106 * elf/dl-fini.c: Likewise.
18107
181082013-11-20 Ondřej Bílka <neleai@seznam.cz>
18109
18110 * malloc/hooks.c (memalign_check): Add alignment rounding.
18111 * malloc/malloc.c (_mid_memalign): New function.
18112 (__libc_valloc, __libc_pvalloc, __libc_memalign, __posix_memalign):
18113 Implement by calling _mid_memalign.
18114 * manual/probes.texi (Memory Allocation Probes): Remove
18115 memory_valloc_retry and memory_pvalloc_retry.
18116
181172013-11-20 Siddhesh Poyarekar <siddhesh@redhat.com>
18118
18119 * locale/programs/locarchive.c (open_archive): Add const
18120 qualifier to ARCHIVEFNAME and copy default fname to
18121 DEFAULT_FNAME.
18122
18123 [BZ #15601]
18124 * libio/tst-widetext.input: Rename Oriya to Odia.
18125 * locale/iso-639.def: Likewise.
18126
18127 * manual/probes.texi (Mathematical Function Probes): Add
18128 documentation for sin, cos, asin and acos probes.
18129 * sysdeps/ieee754/dbl-64/sincos32.c: Include stap-probe.h.
18130 (__sin32): Add slowasin probe.
18131 (__cos32): Add slowacos probe.
18132 (__mpsin): Add slowsin probe.
18133 (__mpcos): Add slowcos probe.
18134
181352013-11-19 Joseph Myers <joseph@codesourcery.com>
18136
18137 [BZ #15483]
18138 * sysdeps/powerpc/nofpu/sim-full.c (__sim_exceptions): Change to
18139 thread-local __sim_exceptions_thread and global
18140 __sim_exceptions_global.
18141 (__sim_disabled_exceptions): Change to thread-local
18142 __sim_disabled_exceptions_thread and global
18143 __sim_disabled_exceptions_global.
18144 (__sim_round_mode): Change to thread-local __sim_round_mode_thread
18145 and global __sim_round_mode_global.
18146 (__simulate_exceptions): Use thread-local floating-point state and
18147 set global state from it as needed.
18148 * sysdeps/powerpc/nofpu/Versions (GLIBC_PRIVATE): Add
18149 __sim_exceptions_thread, __sim_disabled_exceptions_thread and
18150 __sim_round_mode_thread.
18151 * sysdeps/powerpc/nofpu/soft-supp.h: Include <shlib-compat.h>.
18152 (__sim_exceptions): Change to thread-local __sim_exceptions_thread
18153 and global __sim_exceptions_global.
18154 (__sim_disabled_exceptions): Change to thread-local
18155 __sim_disabled_exceptions_thread and global
18156 __sim_disabled_exceptions_global.
18157 (__sim_round_mode): Change to thread-local __sim_round_mode_thread
18158 and global __sim_round_mode_global.
18159 [SIM_GLOBAL_COMPAT] (SIM_COMPAT_SYMBOL): New macro.
18160 (SIM_SET_GLOBAL): Likewise.
18161 * sysdeps/powerpc/soft-fp/sfp-machine.h
18162 [!(__NO_FPRS__ && !_SOFT_FLOAT)] (FP_ROUNDMODE): Use
18163 __sim_round_mode_thread.
18164 [!(__NO_FPRS__ && !_SOFT_FLOAT)] (FP_TRAPPING_EXCEPTIONS): Use
18165 __sim_disabled_exceptions_thread.
18166 (__sim_exceptions): Change to __sim_exceptions_thread.
18167 (__sim_disabled_exceptions): Change to
18168 __sim_disabled_exceptions_thread.
18169 (__sim_round_mode): Change to __sim_round_mode_thread.
18170 * sysdeps/powerpc/nofpu/fclrexcpt.c (__feclearexcept): Use
18171 thread-local floating-point state and set global state from it as
18172 needed.
18173 * sysdeps/powerpc/nofpu/fedisblxcpt.c (fedisableexcept): Likewise.
18174 * sysdeps/powerpc/nofpu/feenablxcpt.c: Include "soft-supp.h".
18175 (__sim_disabled_exceptions): Remove extern declaration.
18176 (feenableexcept): Use thread-local floating-point state and set
18177 global state from it as needed.
18178 * sysdeps/powerpc/nofpu/fegetenv.c (__sim_exceptions): Remove
18179 extern declaration.
18180 (__sim_disabled_exceptions): Likewise.
18181 (__sim_round_mode): Likewise.
18182 (__fegetenv): Use thread-local floating-point state.
18183 * sysdeps/powerpc/nofpu/fegetexcept.c (fegetexcept): Likewise.
18184 * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Likewise.
18185 * sysdeps/powerpc/nofpu/fesetenv.c (__fesetenv): Use thread-local
18186 floating-point state and set global state from it as needed.
18187 * sysdeps/powerpc/nofpu/fesetround.c (fesetround): Likewise.
18188 * sysdeps/powerpc/nofpu/feupdateenv.c (__feupdateenv): Likewise.
18189 * sysdeps/powerpc/nofpu/fgetexcptflg.c (__fegetexceptflag):
18190 Likewise.
18191 * sysdeps/powerpc/nofpu/fraiseexcpt.c (__feraiseexcept): Likewise.
18192 * sysdeps/powerpc/nofpu/fsetexcptflg.c (__fesetexceptflag):
18193 Likewise.
18194 sysdeps/powerpc/nofpu/ftestexcept.c (fetestexcept): Likewise.
18195 * sysdeps/powerpc/nofpu/get-rounding-mode.h (get_rounding_mode):
18196 Use __sim_round_mode_thread.
18197 * math/test-fenv-tls.c: New file.
18198 * math/Makefile (tests): Add test-fenv-tls.
18199 ($(objpfx)test-fenv-tls): Depend on
18200 $(common-objpfx)nptl/libpthread.so.
18201
182022013-11-19 Andreas Schwab <schwab@suse.de>
18203
18204 * locale/programs/locale.c (show_info): Decode wordarray elements.
18205 * locale/categories.def (LC_MONETARY): Add element for
18206 _NL_MONETARY_CRNCYSTR.
18207 * locale/C-monetary.c (conversion_rate): New variable.
18208 (_nl_C_LC_MONETARY): Use it for _NL_MONETARY_CONVERSION_RATE
18209 element.
18210
182112013-11-18 Chris Metcalf <cmetcalf@tilera.com>
18212
18213 * math/test-fpucw-ieee.c [!defined _FPU_IEEE] (FPU_CONTROL):
18214 Omit definition of FPU_CONTROL and use default if no _FPU_IEEE.
18215
182162013-11-18 Paul Pluzhnikov <ppluzhnikov@google.com>
18217
18218 * elf/Makefile (tst-auxv): New test.
18219 * elf/tst-auxv.c: New
18220 * elf/rtld.c (dl_main): Adjust AT_EXECFN
18221
182222013-11-18 Joseph Myers <joseph@codesourcery.com>
18223
18224 * include/libc-symbols.h (__hidden_proto): Add argument "thread".
18225 (hidden_proto): Caller changed.
18226 (hidden_tls_proto): New macro.
18227 (libc_hidden_tls_proto): Likewise.
18228 (rtld_hidden_tls_proto): Likewise.
18229 (libm_hidden_tls_proto): Likewise.
18230 (libresolv_hidden_tls_proto): Likewise.
18231 (librt_hidden_tls_proto): Likewise.
18232 (libdl_hidden_tls_proto): Likewise.
18233 (libnss_files_hidden_tls_proto): Likewise.
18234 (libnsl_hidden_tls_proto): Likewise.
18235 (libnss_nisplus_hidden_tls_proto): Likewise.
18236 (libutil_hidden_tls_proto): Likewise.
18237
182382013-11-18 Ondřej Bílka <neleai@seznam.cz>
18239
18240 [BZ #10253]
18241 * elf/dl-load.c (fillin_rpath): Add linkmap parameter and expand path.
18242 (decompose_rpath): Defer expansion to fillin_rpath.
18243 (_dl_init_paths): Pass linkmap to fillin_rpath.
18244
182452013-11-18 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
18246
18247 * benchtests/Makefile: Add strsep.
18248 * benchtests/bench-strsep.c: New file: strsep benchtest.
18249 * benchtests/bench-strsep-ifunc.c: New file: strsep benchtest.
18250
182512013-11-18 Andreas Schwab <schwab@suse.de>
18252
18253 * locale/programs/locale.c (show_info) [case byte]: Check for
18254 '\377' instead of '\177'.
18255 * locale/C-monetary.c (not_available): Always use "\377".
18256 * stdlib/strfmon_l.c (__vstrfmon_l): Use -2 as marker for
18257 unspecified p_sign_posn and n_sign_posn. Check for '\377' to
18258 detect unavailable sign_posn locale elements.
18259 * locale/localeconv.c (__localeconv): For grouping and
18260 mon_grouping handle "\177" and "\377" like no grouping.
18261 (INT_ELEM): New macro. Use it to set all numeric members.
18262 * locale/programs/ld-monetary.c (monetary_read)
18263 <tok_mon_grouping>: Normalize single -1 to the empty string.
18264 * locale/programs/ld-numeric.c (numeric_read) <tok_grouping>:
18265 Likewise.
18266
182672013-11-07 Ondřej Bílka <neleai@seznam.cz>
18268
18269 [BZ #16055]
18270 * stdio-common/vfscanf.c (_IO_vfscanf_internal): Limit width
18271 when we match (nil).
18272 * stdio-common/tst-sscanf.c (struct test): Add testcase.
18273
182742013-11-16 Joseph Myers <joseph@codesourcery.com>
18275
18276 * math/libm-test.inc (TEST_NAN_SIGN): New macro.
18277 (NO_TEST_INLINE): Update value.
18278 (ERRNO_UNCHANGED): Likewise.
18279 (ERRNO_EDOM): Likewise.
18280 (ERRNO_ERANGE): Likewise.
18281 (IGNORE_RESULT): Likewise.
18282 (check_float_internal): Check signs of NaN results if
18283 TEST_NAN_SIGN used.
18284 (check_complex): Pass TEST_NAN_SIGN flag through to second
18285 check_float_internal call.
18286 (copysign_test_data): Add tests with quiet NaNs as second
18287 argument. Use TEST_NAN_SIGN.
18288 (fabs_test_data): Add test of negative quiet NaN argument. Use
18289 TEST_NAN_SIGN.
18290 (signbit_test_data): Add tests of quiet NaN argument.
18291 * math/gen-libm-test.pl (parse_args): Handle TEST_NAN_SIGN.
18292
18293 * math/gen-libm-test.pl (show_exceptions): Take extra argument
18294 $ignore_result.
18295 (parse_args): Handle function results specified as IGNORE.
18296 * math/libm-test.inc (IGNORE_RESULT): New macro.
18297 (check_float_internal): Do not check numerical result if flag
18298 IGNORE_RESULT set.
18299 (check_complex): Pass through IGNORE_RESULT to second
18300 check_float_internal call.
18301 (check_int): Do not check numerical result if flag IGNORE_RESULT
18302 set.
18303 (check_long): Likewise.
18304 (check_bool): Likewise.
18305 (check_longlong): Likewise.
18306 (lrint_test_data): Add tests of infinite and NaN arguments.
18307 (lrint_tonearest_test_data): Likewise.
18308 (lrint_towardzero_test_data): Likewise.
18309 (lrint_downward_test_data): Likewise.
18310 (lrint_upward_test_data): Likewise.
18311 (llrint_test_data): Likewise.
18312 (llrint_tonearest_test_data): Likewise.
18313 (llrint_towardzero_test_data): Likewise.
18314 (llrint_downward_test_data): Likewise.
18315 (llrint_upward_test_data): Likewise.
18316 (lround_test_data): Likewise.
18317 (llround_test_data): Likewise.
18318
18319 * math/libm-test.inc (NO_TEST_INLINE): New macro.
18320 (ERRNO_UNCHANGED): Update value.
18321 (ERRNO_EDOM): Likewise.
18322 (ERRNO_ERANGE): Likewise.
18323 (NO_TEST_INLINE_FLOAT): New macro.
18324 (NO_TEST_INLINE_DOUBLE): Likewise.
18325 (enable_test): New function.
18326 (RUN_TEST_f_f): Check enable_test before running test.
18327 (RUN_TEST_2_f): Likewise.
18328 (RUN_TEST_fff_f): Likewise.
18329 (RUN_TEST_c_f): Likewise.
18330 (RUN_TEST_f_f1): Likewise.
18331 (RUN_TEST_fF_f1): Likewise.
18332 (RUN_TEST_fI_f1): Likewise.
18333 (RUN_TEST_ffI_f1): Likewise.
18334 (RUN_TEST_c_c): Likewise.
18335 (RUN_TEST_cc_c): Likewise.
18336 (RUN_TEST_f_i): Likewise.
18337 (RUN_TEST_f_i_tg): Likewise.
18338 (RUN_TEST_ff_i_tg): Likewise.
18339 (RUN_TEST_f_b): Likewise.
18340 (RUN_TEST_f_b_tg): Likewise.
18341 (RUN_TEST_f_l): Likewise.
18342 (RUN_TEST_f_L): Likewise.
18343 (RUN_TEST_fFF_11): Likewise.
18344 (asinh_test_data): Use NO_TEST_INLINE instead of [!TEST_INLINE]
18345 conditionals.
18346 (cosh_test_data): Likewise.
18347 (exp_test_data): Likewise.
18348 (expm1_test_data): Likewise.
18349 (hypot_test_data): Likewise.
18350 (pow_test_data): Likewise.
18351 (sinh_test_data): Likewise.
18352 (tanh_test_data): Likewise.
18353 * math/gen-libm-test.pl (parse_args): Allow NO_TEST_INLINE as
18354 flags argument.
18355
18356 * libm-test.inc (acos_test_data): Disallow inexact exceptions for
18357 tests with quiet NaN input and output.
18358 (acosh_test_data): Likewise.
18359 (asin_test_data): Likewise.
18360 (asinh_test_data): Likewise.
18361 (atan_test_data): Likewise.
18362 (atanh_test_data): Likewise.
18363 (atan2_test_data): Likewise.
18364 (cbrt_test_data): Likewise.
18365 (cos_test_data): Likewise.
18366 (cosh_test_data): Likewise.
18367 (erf_test_data): Likewise.
18368 (erfc_test_data): Likewise.
18369 (exp_test_data): Likewise.
18370 (exp10_test_data): Likewise.
18371 (exp2_test_data): Likewise.
18372 (expm1_test_data): Likewise.
18373 (hypot_test_data): Likewise.
18374 (j0_test_data): Likewise.
18375 (j1_test_data): Likewise.
18376 (jn_test_data): Likewise.
18377 (lgamma_test_data): Likewise.
18378 (log_test_data): Likewise.
18379 (log10_test_data): Likewise.
18380 (log1p_test_data): Likewise.
18381 (log2_test_data): Likewise.
18382 (pow_test_data): Likewise.
18383 (scalb_test_data): Likewise.
18384 (sin_test_data): Likewise.
18385 (sincos_test_data): Likewise.
18386 (sinh_test_data): Likewise.
18387 (tan_test_data): Likewise.
18388 (tanh_test_data): Likewise.
18389 (tgamma_test_data): Likewise.
18390 (y0_test_data): Likewise.
18391 (y1_test_data): Likewise.
18392 (yn_test_data): Likewise.
18393
18394 [BZ #16167]
18395 * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Check for first
18396 argument being NaN and avoid computations with second argument in
18397 that case.
18398 * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
18399 * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
18400 * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
18401
184022013-11-15 Arun Kumar Pyasi <arun@chitwanix.com>
18403
18404 * locale/iso-639.def: Add Chitwani Tharu (the).
18405
184062013-11-14 Andreas Schwab <schwab@suse.de>
18407
18408 * locale/C-address.c (_nl_C_LC_ADDRESS): Set country_num to zero
18409 word instead of empty string.
18410
184112013-11-13 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
18412
18413 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
18414 (__fe_nomask_env): Fir compat symbol to be remove for GLIBC_2.19.
18415 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
18416 (__fe_nomask_env): Likewise.
18417
184182013-11-13 Steve Ellcey <sellcey@mips.com>
18419
18420 * benchtests/bench-timing.h: Include time.h.
18421
184222013-11-13 H.J. Lu <hongjiu.lu@intel.com>
18423
18424 [BZ #15997]
18425 * sysdeps/unix/sysv/linux/configure.ac (arch_minimum_kernel): Set
18426 to 3.4.0 for x32.
18427 * sysdeps/unix/sysv/linux/configure: Regenerated.
18428
184292013-11-13 Joseph Myers <joseph@codesourcery.com>
18430
18431 [BZ #16151]
18432 * stdlib/strtod_l.c (round_and_return): Do not consider
18433 retval[RETURN_LIBM_SIZE - 1] when determining more_bits for an
18434 exponent one less than half the least subnormal exponent.
18435 * stdlib/test-strtod-round-data: Add more tests.
18436 * stdlib/tst-strtod-round.c (tests): Regenerated.
18437
184382013-11-13 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
18439
18440 [BZ #14143]
18441 * sysdeps/powerpc/bits/fenv.h (__fe_nomask_env): Remove declaration.
18442 (__fe_mask_env): Likewise.
18443 * sysdeps/powerpc/fpu/fenv_libc.h (__fe_nomask_env): Remove
18444 libm_hidden_proto and add function prototype.
18445 (__fe_mask_env): Add function prototype.
18446 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
18447 (__fe_nomask_env): Add compat symbol for GLIBC_2.1.
18448 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c
18449 (__fe_mask_env): Remove compiler warnings regarding ununsed variables.
18450 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
18451 (__fe_nomask_env): Add compat symbol for GLIBC_2.3.
18452
184532013-11-13 Marcus Shawcroft <marcus.shawcroft@linaro.org>
18454
18455 * elf/dl-lookup.c (_dl_lookup_symbol_x): If UNDEF_MAP is false
18456 set reference_name to "" to avoid passing NULL to DSO_FILENAME.
18457
184582013-11-13 Marcus Shawcroft <marcus.shawcroft@linaro.org>
18459
18460 * elf/tlsdeschtab.h (_dl_make_tlsdesc_dynamic): Handle failure
18461 of htab_find_slot().
18462
184632013-11-11 David S. Miller <davem@davemloft.net>
18464
18465 [BZ #16150]
18466 * sysdeps/sparc/sparc64/multiarch/add_n.S: Resolve to the correct generic
18467 symbol in the non-vis3 case in static builds.
18468 * sysdeps/sparc/sparc64/multiarch/addmul_1.S: Likewise.
18469 * sysdeps/sparc/sparc64/multiarch/mul_1.S: Likewise.
18470 * sysdeps/sparc/sparc64/multiarch/sub_n.S: Likewise.
18471 * sysdeps/sparc/sparc64/multiarch/submul_1.S: Likewise.
18472
184732013-11-11 Jan Kratochvil <jan.kratochvil@redhat.com>
18474
18475 [BZ #387]
18476 * elf/dl-object.c (_dl_new_object): Initialize L_NAME from NEWNAME if
18477 it is empty.
18478
184792013-11-11 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
18480
18481 * benchtests/Makefile: Add bench-strtod.
18482 * benchtests/bench-strtod.c: New file: strtod benchtest
18483
184842013-11-11 Andreas Schwab <schwab@suse.de>
18485
18486 [BZ #16153]
18487 * nscd/nscd_getserv_r.c (__nscd_getservbyport_r): Don't include
18488 terminating NUL in key length.
18489
184902013-11-08 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
18491
18492 * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
18493 Add artificial ODP entry for vDSO symbol for PPC64.
18494 * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Adjust includes.
18495 * sysdeps/unix/sysv/linux/powerpc/time.c: Likewise.
18496
184972013-11-07 Ondřej Bílka <neleai@seznam.cz>
18498
18499 [BZ #15374]
18500 * nss/getent.c (services_keys): Recognize services starting with digit.
18501
185022013-11-06 David S. Miller <davem@davemloft.net>
18503
18504 [BZ #15985]
18505 * sysdeps/sparc/sparc32/fpu/s_fdim.S (__fdim): Do not use fnegd
18506 on pre-v9 cpus, use a fnegs+fmovs sequence instead.
18507
185082013-11-06 Will Newton <will.newton@linaro.org>
18509
18510 * manual/memory.texi (Malloc Examples): Remove register
18511 keyword from examples.
18512
185132013-11-04 Chris Leonard <cjl@sugarlabs.org>
18514
18515 * locale/iso-639.def: Correct Walaita (wal) and add Unami Delaware (unm).
18516
185172013-11-04 Joseph Myers <joseph@codesourcery.com>
18518
18519 [BZ #6981]
18520 * include/stdc-predef.h [__GCC_IEC_559] (__STDC_IEC_559__): Define
18521 depending on [__GCC_IEC_559 > 0].
18522 [__GCC_IEC_559_COMPLEX] (__STDC_IEC_559_COMPLEX__): Define
18523 depending on [__GCC_IEC_559_COMPLEX > 0].
18524
185252013-11-03 Chris Leonard <cjl@sugarlabs.org>
18526
18527 * locale/iso-639.def: Add Quechua, Southern (quz) and Silesian (szl)
18528 to iso-639.def.
18529
185302013-11-03 Ondřej Bílka <neleai@seznam.cz>
18531
18532 * elf/rtld.c: Remove unused NONTLS_INIT_TP.
18533
185342013-11-01 Ondřej Bílka <neleai@seznam.cz>
18535
18536 [BZ #16112]
18537 * malloc/malloc (malloc_info): Do not handle first bin as
18538 special case.
18539
185402013-11-01 Chris Leonard <cjl@sugarlabs.org>
18541
18542 * locale/iso-639.def: Add Central Nahuatl (nhn).
18543
185442013-11-01 Bruno Haible <bruno@clisp.org>
18545
18546 [BZ #7003]
18547 * manual/math.texi (BSD Random): Specify range upper bound as
18548 in POSIX.
18549
185502013-10-31 Chris Leonard <cjl@sugarlabs.org>
18551
18552 * locale/iso-639.def: Add Meadow Mari (mhr).
18553
185542013-10-31 Ondřej Bílka <neleai@seznam.cz>
18555
18556 [BZ #14752], [BZ #15763]
18557 * sysdeps/unix/sysv/linux/shm_open.c (shm_open, shm_unlink):
18558 Validate name.
18559 * rt/tst_shm.c: Add test for escaping directory.
18560
185612013-10-31 Andreas Schwab <schwab@suse.de>
18562
18563 [BZ #15917]
18564 * stdio-common/vfscanf.c (_IO_vfwscanf): Handle leading '0' not
18565 followed by 'x' as part of digit sequence.
18566 * stdio-common/tst-sscanf.c (double_tests2): New tests.
18567
185682013-10-31 Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
18569
18570 [BZ #16037]
18571 * configure.ac: allow GNU Make 4.0 and greater.
18572 * configure: Regenerated.
18573
185742013-10-30 Will Newton <will.newton@linaro.org>
18575
18576 [BZ #16038]
18577 * malloc/hooks.c (memalign_check): Limit alignment to the
18578 maximum representable power of two.
18579 * malloc/malloc.c (__libc_memalign): Likewise.
18580 * malloc/tst-memalign.c (do_test): Add test for very
18581 large alignment values.
18582 * malloc/tst-posix_memalign.c (do_test): Likewise.
18583
185842013-10-30 Ondřej Bílka <neleai@seznam.cz>
18585
18586 [BZ #11087]
18587 * malloc/malloc.c (sysmalloc): Compute statistics atomically.
18588 (munmap_chunk): Likewise.
18589 (mremap_chunk): Likewise.
18590
185912013-10-30 Ondřej Bílka <neleai@seznam.cz>
18592
18593 [BZ #15799]
18594 * stdlib/div.c (div): Remove obsolete code.
18595 * stdlib/ldiv.c (ldiv): Likewise.
18596 * stdlib/lldiv.c (lldiv): Likewise.
18597
185982013-10-30 Siddhesh Poyarekar <siddhesh@redhat.com>
18599
18600 [BZ #16071]
18601 * nss/nss_files/files-XXX.c (get_contents_ret): New
18602 enumerator.
18603 (get_contents): New function.
18604 (internal_getent): Use it. Expand size of LINEBUFLEN.
18605
186062013-10-30 Mike Frysinger <vapier@gentoo.org>
18607
18608 * configure.in: Moved to ...
18609 * configure.ac: ... here. Change reference to configure.in
18610 to configure.ac.
18611 * sysdeps/arm/preconfigure.ac: ... here.
18612 configure.in to configure.ac.
18613 * sysdeps/gnu/configure.in: Moved to ...
18614 * sysdeps/gnu/configure.ac: ... here.
18615 * sysdeps/i386/configure.in: Moved to ...
18616 * sysdeps/i386/configure.ac: ... here.
18617 * sysdeps/ieee754/ldbl-opt/configure.in: Moved to ...
18618 * sysdeps/ieee754/ldbl-opt/configure.ac: ... here.
18619 * sysdeps/mach/configure.in: Moved to ...
18620 * sysdeps/mach/configure.ac: ... here.
18621 * sysdeps/mach/hurd/configure.in: Moved to ...
18622 * sysdeps/mach/hurd/configure.ac: ... here.
18623 * sysdeps/powerpc/configure.in: Moved to ...
18624 * sysdeps/powerpc/configure.ac: ... here.
18625 * sysdeps/powerpc/powerpc32/configure.in: Moved to ...
18626 * sysdeps/powerpc/powerpc32/configure.ac: ... here.
18627 * sysdeps/powerpc/powerpc64/configure.in: Moved to ...
18628 * sysdeps/powerpc/powerpc64/configure.ac: ... here.
18629 * sysdeps/s390/s390-32/configure.in: Moved to ...
18630 * sysdeps/s390/s390-32/configure.ac: ... here.
18631 * sysdeps/s390/s390-64/configure.in: Moved to ...
18632 * sysdeps/s390/s390-64/configure.ac: ... here.
18633 * sysdeps/sh/configure.in: Moved to ...
18634 * sysdeps/sh/configure.ac: ... here.
18635 * sysdeps/sparc/configure.in: Moved to ...
18636 * sysdeps/sparc/configure.ac: ... here.
18637 * sysdeps/unix/sysv/linux/configure.in: Moved to ...
18638 * sysdeps/unix/sysv/linux/configure.ac: ... here.
18639 * sysdeps/unix/sysv/linux/powerpc/configure.in: Moved to ...
18640 * sysdeps/unix/sysv/linux/powerpc/configure.ac: ... here.
18641 * sysdeps/x86_64/configure.in: Moved to ...
18642 * sysdeps/x86_64/configure.ac: ... here.
18643 * sysdeps/x86_64/preconfigure.in: Moved to ...
18644 * sysdeps/x86_64/preconfigure.ac: ... here.
18645 * aclocal.m4: Change reference to configure.in to configure.ac.
18646 * config.h.in: Likewise.
18647 * manual/install.texi: Likewise.
18648 * manual/maint.texi: Likewise.
18649 * Makefile: Likewise.
18650 * malloc/Makefile: Likewise.
18651 * nscd/Makefile: Likewise.
18652 * Makeconfig: Change reference to configure.in and
18653 preconfigure.in to configure.ac and preconfigure.ac
18654 respectively.
18655 * INSTALL: Regenerated.
18656 * configure: Likewise.
18657 * sysdeps/gnu/configure: Likewise.
18658 * sysdeps/i386/configure: Likewise.
18659 * sysdeps/ieee754/ldbl-opt/configure: Likewise.
18660 * sysdeps/mach/configure: Likewise.
18661 * sysdeps/mach/hurd/configure: Likewise.
18662 * sysdeps/powerpc/configure: Likewise.
18663 * sysdeps/powerpc/powerpc32/configure: Likewise.
18664 * sysdeps/powerpc/powerpc64/configure: Likewise.
18665 * sysdeps/s390/s390-32/configure: Likewise.
18666 * sysdeps/s390/s390-64/configure: Likewise.
18667 * sysdeps/sh/configure: Likewise.
18668 * sysdeps/sparc/configure: Likewise.
18669 * sysdeps/unix/sysv/linux/configure: Likewise.
18670 * sysdeps/unix/sysv/linux/powerpc/configure: Likewise.
18671 * sysdeps/x86_64/configure: Likewise.
18672 * sysdeps/x86_64/preconfigure: Likewise.
18673
186742013-10-29 Andreas Schwab <schwab@suse.de>
18675
18676 * stdio-common/Makefile (tst-swscanf-ENV): Define.
18677
186782013-10-28 Siddhesh Poyarekar <siddhesh@redhat.com>
18679
18680 * benchtests/pow-inputs: Add new inputs.
18681
18682 * benchtests/exp-inputs: Add new inputs.
18683
18684 * sysdeps/ieee754/dbl-64/sincos32.c (__sin32): Consolidate
18685 conditional check for return value.
18686 (__cos32): Likewise.
18687
186882013-10-26 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
18689
18690 * sysdeps/powerpc/powerpc64/strcpy.S (strcpy): Add word load/store
18691 to provide a boost for large inputs with word alignment.
18692 * sysdeps/powerpc/powerpc64/stpcpy.S (__stpcpy): Rewrite
18693 implementation based on optimized PPC64 strcpy.
18694 * sysdeps/powerpc/powerpc64/power7/strcpy.S: New file: optimized
18695 strcpy for PPC64/POWER7 based on both doubleword and word load/store.
18696 * sysdeps/powerpc/powerpc64/power7/stpcpy.S: New file: optimized
18697 stpcpy for PPC64/POWER7 based on PPC64/POWER7 strcpy.
18698
186992013-10-25 Ondřej Bílka <neleai@seznam.cz>
18700
18701 [BZ #2801]
18702 * manual/socket.texi (Host Names): Fix gethostbyname_r example.
18703
187042013-10-25 Ondřej Bílka <neleai@seznam.cz>
18705
18706 [BZ #14876]
18707 * time/strptime_l.c (__strptime_internal): 14876 Read timezone entry.
18708 * time/tst-strptime.c (day_tests): Add testcase.
18709
187102013-10-25 Ondřej Bílka <neleai@seznam.cz>
18711
18712 [BZ #14029]
18713 * manual/pattern.texi: Acknowledge that fnmatch can fail.
18714
187152013-10-25 Fabrice Bauzac <fbauzac@debian71.nce.amadeus.net>
18716
18717 [BZ #16074]
18718 * manual/llio.texi (Memory-mapped I/O): Indicate that mmap returns
18719 MAP_FAILED on error.
18720
187212013-10-25 Siddhesh Poyarekar <siddhesh@redhat.com>
18722
18723 [BZ #16072]
18724 * sysdeps/posix/getaddrinfo.c (gethosts): Allocate tmpbuf on
18725 heap for large requests.
18726
187272013-10-25 Aurelien Jarno <aurelien@aurel32.net>
18728
18729 [BZ #9954]
18730 * sysdeps/posix/getaddrinfo.c (rfc3484_sort): do not assign native
18731 result if the result has no associated interface.
18732 * sysdeps/posix/getaddrinfo.c (getaddrinfo): correctly detect
18733 interface for all 127.X.Y.Z addresses.
18734
187352013-10-24 Chris Leonard <cjl@sugarlabs.org>
18736
18737 * locale/iso-639.def: Add Ligurian (lij)
18738
187392013-10-21 Ondřej Bílka <neleai@seznam.cz>
18740
18741 [BZ #15825]
18742 * sunrpc/rpc_main.c: Document rpcgen -5.
18743
187442013-10-19 Michael Stahl <mstahl@redhat.com>
18745
18746 * elf/rtld.c (do_preload): Print the reason why preloading failed.
18747
187482013-10-19 Ondřej Bílka <neleai@seznam.cz>
18749
18750 [BZ #10278]
18751 * posix/glob.c: Match only directories when trailing slash is present.
18752 * posix/tst-gnuglob.c (my_opendir): Do not open files.
18753 (main): Add testcase.
18754
187552013-10-19 Ondřej Bílka <neleai@seznam.cz>
18756
18757 [BZ #15670]
18758 * time/tzfile.c (__tzfile_read): Replace alloca with malloc.
18759
187602013-10-18 Carlos O'Donell <carlos@redhat.com>
18761
18762 * manual/crypt.texi (Cryptographic Functions): Using SunRPC and
18763 AUTH_DES will prevent FIPS 140-2 compliance. Add vindex for
18764 AUTH_DES and cindex for FIPS 140-2.
18765 (DES Encryption): Add cindex FIPS 46-3.
18766
18767 * locale/locarchive.h (struct locarhandle): Add fname.
18768 * locale/programs/localedef.c (main): Pass ARGV[remaining]
18769 if an optional argument was specified to --list-archive,
18770 otherwise NULL.
18771 * locale/programs/locarchive.c (show_archive_content): Take new
18772 argument fname and pass it via ah.fname to open_archive.
18773 * locale/programs/localedef.h: Update decl.
18774 (open_archive): If AH->fname is non-null, open that file
18775 rather than the default file name, and don't ignore ENOENT.
18776 (create_archive): Set AH.fname to NULL.
18777 (delete_locales_from_archive): Likewise.
18778 (add_locales_to_archive): Likewise.
18779 * locale/programs/locfile.c (write_all_categories): Likewise.
18780
187812013-10-18 Joseph Myers <joseph@codesourcery.com>
18782 Aldy Hernandez <aldyh@redhat.com>
18783
18784 * sysdeps/powerpc/powerpc32/e500/nofpu/Makefile: New file.
18785 * sysdeps/powerpc/powerpc32/e500/nofpu/fclrexcpt.c: Likewise.
18786 * sysdeps/powerpc/powerpc32/e500/nofpu/fe_note_change.c: Likewise.
18787 * sysdeps/powerpc/powerpc32/e500/nofpu/fedisblxcpt.c: Likewise.
18788 * sysdeps/powerpc/powerpc32/e500/nofpu/feenablxcpt.c: Likewise.
18789 * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c: Likewise.
18790 * sysdeps/powerpc/powerpc32/e500/nofpu/fegetexcept.c: Likewise.
18791 * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c: Likewise.
18792 * sysdeps/powerpc/powerpc32/e500/nofpu/feholdexcpt.c: Likewise.
18793 * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_const.c: Likewise.
18794 * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h: Likewise.
18795 * sysdeps/powerpc/powerpc32/e500/nofpu/fesetenv.c: Likewise.
18796 * sysdeps/powerpc/powerpc32/e500/nofpu/fesetround.c: Likewise.
18797 * sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c: Likewise.
18798 * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_prctl.c:
18799 Likewise.
18800 * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_spe.c:
18801 Likewise.
18802 * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_prctl.c:
18803 Likewise.
18804 * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_spe.c:
18805 Likewise.
18806 * sysdeps/powerpc/powerpc32/e500/nofpu/fgetexcptflg.c: Likewise.
18807 * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c:
18808 Likewise.
18809 * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcpt.c: Likewise.
18810 * sysdeps/powerpc/powerpc32/e500/nofpu/fsetexcptflg.c: Likewise.
18811 * sysdeps/powerpc/powerpc32/e500/nofpu/ftestexcept.c: Likewise.
18812 * sysdeps/powerpc/powerpc32/e500/nofpu/get-rounding-mode.h:
18813 Likewise.
18814 * sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S: Likewise.
18815 * sysdeps/powerpc/powerpc32/e500/nofpu/spe-raise.c: Likewise.
18816 * sysdeps/powerpc/preconfigure: Likewise.
18817 * sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nofpu/Implies:
18818 Likewise.
18819 * sysdeps/powerpc/nofpu/soft-supp.h [__NO_FPRS__ && !_SOFT_FLOAT]:
18820 Replace contents of file by #include of <fenv_libc.h>.
18821 * sysdeps/powerpc/soft-fp/sfp-machine.h
18822 [__NO_FPRS__ && !_SOFT_FLOAT]: Include <fenv_libc.h>, <sysdep.h>
18823 and <sys/prctl.h>.
18824 [__NO_FPRS__ && !_SOFT_FLOAT] (__feraiseexcept_soft): Declare.
18825 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_INEXACT): Define macro.
18826 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_INVALID): Likewise.
18827 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_DIVZERO): Likewise.
18828 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_UNDERFLOW): Likewise.
18829 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_OVERFLOW): Likewise.
18830 [__NO_FPRS__ && !_SOFT_FLOAT] (_FP_DECL_EX): Likewise.
18831 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_INIT_ROUNDMODE): Likewise.
18832 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_INIT_EXCEPTIONS): Likewise.
18833 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_HANDLE_EXCEPTIONS): Likewise.
18834 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_ROUNDMODE): Likewise.
18835 [__NO_FPRS__ && !_SOFT_FLOAT] (FP_TRAPPING_EXCEPTIONS): Likewise.
18836 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
18837 Allow copysignl PLT reference to be missing.
18838
188392013-10-18 Richard Sandiford <richard@codesourcery.com>
18840 Joseph Myers <joseph@codesourcery.com
18841
18842 [BZ #15948]
18843 * locale/programs/ld-collate.c (new_element): Handle <U0000> as a
18844 single character.
18845 (add_to_tablewc): Assert sequence of wide characters is nonempty.
18846
188472013-10-18 Siddhesh Poyarekar <siddhesh@redhat.com>
18848
18849 * elf/tst-tls-dlinfo.c: Don't include tls.h.
18850 * elf/tst-tls1.c: Likewise.
18851 * elf/tst-tls10.h: Likewise.
18852 * elf/tst-tls14.c: Likewise.
18853 * elf/tst-tls2.c: Likewise.
18854 * elf/tst-tls3.c: Likewise.
18855 * elf/tst-tls4.c: Likewise.
18856 * elf/tst-tls5.c: Likewise.
18857 * elf/tst-tls6.c: Likewise.
18858 * elf/tst-tls7.c: Likewise.
18859 * elf/tst-tls8.c: Likewise.
18860 * elf/tst-tls9.c: Likewise.
18861 * elf/tst-tlsmod1.c: Likewise.
18862 * elf/tst-tlsmod13.c: Likewise.
18863 * elf/tst-tlsmod13a.c: Likewise.
18864 * elf/tst-tlsmod14a.c: Likewise.
18865 * elf/tst-tlsmod16a.c: Likewise.
18866 * elf/tst-tlsmod16b.c: Likewise.
18867 * elf/tst-tlsmod2.c: Likewise.
18868 * elf/tst-tlsmod3.c: Likewise.
18869 * elf/tst-tlsmod4.c: Likewise.
18870 * elf/tst-tlsmod5.c: Likewise.
18871 * elf/tst-tlsmod6.c: Likewise.
18872
188732013-10-18 Ondřej Bílka <neleai@seznam.cz>
18874
18875 [BZ #12486]
18876 * malloc/malloc.c: remove checks for statistics.
18877
188782013-10-17 Ondřej Bílka <neleai@seznam.cz>
18879
18880 [BZ #15277]
18881 * inet/inet_net.c (inet_network): Detect additional invalid strings.
18882 * inet/tst-network.c: Add testcase.
18883
188842013-10-17 Andreas Schwab <schwab@suse.de>
18885
18886 [BZ #15218]
18887 * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't use gethostbyaddr
18888 to determine canonical name.
18889
188902013-10-17 Ondřej Bílka <neleai@seznam.cz>
18891
18892 * sysdeps/ieee754/dbl-64/dbl2mpn.c: Fix formatting.
18893 * sysdeps/ieee754/dbl-64/dla.h: Likewise.
18894 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
18895 * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
18896 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
18897 * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
18898 * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
18899 * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
18900 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
18901 * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
18902 * sysdeps/ieee754/dbl-64/e_ilogb.c: Likewise.
18903 * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
18904 * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
18905 * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
18906 * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
18907 * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
18908 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
18909 * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
18910 * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
18911 * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
18912 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
18913 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
18914 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
18915 * sysdeps/ieee754/dbl-64/MathLib.h: Likewise.
18916 * sysdeps/ieee754/dbl-64/mpa-arch.h: Likewise.
18917 * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
18918 * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
18919 * sysdeps/ieee754/dbl-64/mpn2dbl.c: Likewise.
18920 * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
18921 * sysdeps/ieee754/dbl-64/mydefs.h: Likewise.
18922 * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
18923 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
18924 * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
18925 * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
18926 * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
18927 * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
18928 * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
18929 * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
18930 * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
18931 * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
18932 * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
18933 * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
18934 * sysdeps/ieee754/dbl-64/s_isinf_ns.c: Likewise.
18935 * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
18936 * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
18937 * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
18938 * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
18939 * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
18940 * sysdeps/ieee754/dbl-64/s_modf.c: Likewise.
18941 * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
18942 * sysdeps/ieee754/dbl-64/s_remquo.c: Likewise.
18943 * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
18944 * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
18945 * sysdeps/ieee754/dbl-64/s_scalbn.c: Likewise.
18946 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
18947 * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
18948 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
18949 * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
18950
189512013-10-17 Joseph Myers <joseph@codesourcery.com>
18952
18953 [BZ #16041]
18954 * soft-fp/op-common.h (FP_EXTEND): When input is a signaling NaN,
18955 make result into a quiet NaN.
18956
189572013-10-16 Joseph Myers <joseph@codesourcery.com>
18958
18959 * soft-fp/adddf3.c: Fix horizontal whitespace.
18960 * soft-fp/addsf3.c: Likewise.
18961 * soft-fp/addtf3.c: Likewise.
18962 * soft-fp/divdf3.c: Likewise.
18963 * soft-fp/divsf3.c: Likewise.
18964 * soft-fp/divtf3.c: Likewise.
18965 * soft-fp/double.h: Likewise.
18966 * soft-fp/eqdf2.c: Likewise.
18967 * soft-fp/eqsf2.c: Likewise.
18968 * soft-fp/eqtf2.c: Likewise.
18969 * soft-fp/extenddftf2.c: Likewise.
18970 * soft-fp/extended.h: Likewise.
18971 * soft-fp/extendsfdf2.c: Likewise.
18972 * soft-fp/extendsftf2.c: Likewise.
18973 * soft-fp/extendxftf2.c: Likewise.
18974 * soft-fp/fixdfdi.c: Likewise.
18975 * soft-fp/fixdfsi.c: Likewise.
18976 * soft-fp/fixdfti.c: Likewise.
18977 * soft-fp/fixsfdi.c: Likewise.
18978 * soft-fp/fixsfsi.c: Likewise.
18979 * soft-fp/fixsfti.c: Likewise.
18980 * soft-fp/fixtfdi.c: Likewise.
18981 * soft-fp/fixtfsi.c: Likewise.
18982 * soft-fp/fixtfti.c: Likewise.
18983 * soft-fp/fixunsdfdi.c: Likewise.
18984 * soft-fp/fixunsdfsi.c: Likewise.
18985 * soft-fp/fixunsdfti.c: Likewise.
18986 * soft-fp/fixunssfdi.c: Likewise.
18987 * soft-fp/fixunssfsi.c: Likewise.
18988 * soft-fp/fixunssfti.c: Likewise.
18989 * soft-fp/fixunstfdi.c: Likewise.
18990 * soft-fp/fixunstfsi.c: Likewise.
18991 * soft-fp/fixunstfti.c: Likewise.
18992 * soft-fp/floatdidf.c: Likewise.
18993 * soft-fp/floatdisf.c: Likewise.
18994 * soft-fp/floatditf.c: Likewise.
18995 * soft-fp/floatsidf.c: Likewise.
18996 * soft-fp/floatsisf.c: Likewise.
18997 * soft-fp/floatsitf.c: Likewise.
18998 * soft-fp/floattidf.c: Likewise.
18999 * soft-fp/floattisf.c: Likewise.
19000 * soft-fp/floattitf.c: Likewise.
19001 * soft-fp/floatundidf.c: Likewise.
19002 * soft-fp/floatundisf.c: Likewise.
19003 * soft-fp/floatunditf.c: Likewise.
19004 * soft-fp/floatunsidf.c: Likewise.
19005 * soft-fp/floatunsisf.c: Likewise.
19006 * soft-fp/floatunsitf.c: Likewise.
19007 * soft-fp/floatuntidf.c: Likewise.
19008 * soft-fp/floatuntisf.c: Likewise.
19009 * soft-fp/floatuntitf.c: Likewise.
19010 * soft-fp/fmadf4.c: Likewise.
19011 * soft-fp/fmasf4.c: Likewise.
19012 * soft-fp/fmatf4.c: Likewise.
19013 * soft-fp/gedf2.c: Likewise.
19014 * soft-fp/gesf2.c: Likewise.
19015 * soft-fp/getf2.c: Likewise.
19016 * soft-fp/ledf2.c: Likewise.
19017 * soft-fp/lesf2.c: Likewise.
19018 * soft-fp/letf2.c: Likewise.
19019 * soft-fp/muldf3.c: Likewise.
19020 * soft-fp/mulsf3.c: Likewise.
19021 * soft-fp/multf3.c: Likewise.
19022 * soft-fp/negdf2.c: Likewise.
19023 * soft-fp/negsf2.c: Likewise.
19024 * soft-fp/negtf2.c: Likewise.
19025 * soft-fp/op-1.h: Likewise.
19026 * soft-fp/op-2.h: Likewise.
19027 * soft-fp/op-4.h: Likewise.
19028 * soft-fp/op-8.h: Likewise.
19029 * soft-fp/op-common.h: Likewise.
19030 * soft-fp/quad.h: Likewise.
19031 * soft-fp/single.h: Likewise.
19032 * soft-fp/soft-fp.h: Likewise.
19033 * soft-fp/sqrtdf2.c: Likewise.
19034 * soft-fp/sqrtsf2.c: Likewise.
19035 * soft-fp/sqrttf2.c: Likewise.
19036 * soft-fp/subdf3.c: Likewise.
19037 * soft-fp/subsf3.c: Likewise.
19038 * soft-fp/subtf3.c: Likewise.
19039 * soft-fp/truncdfsf2.c: Likewise.
19040 * soft-fp/trunctfdf2.c: Likewise.
19041 * soft-fp/trunctfsf2.c: Likewise.
19042 * soft-fp/trunctfxf2.c: Likewise.
19043 * soft-fp/unorddf2.c: Likewise.
19044 * soft-fp/unordsf2.c: Likewise.
19045 * soft-fp/unordtf2.c: Likewise.
19046
190472013-10-15 Joseph Myers <joseph@codesourcery.com>
19048
19049 * soft-fp/op-2.h (_FP_DIV_MEAT_2_gmp): Remove macro.
19050 * soft-fp/soft-fp.h (FP_UNSET_EXCEPTION): Likewise.
19051
190522013-10-15 Ondřej Bílka <neleai@seznam.cz>
19053
19054 * elf/dl-libc.c: Clear initfini list after freeing.
19055
190562013-10-14 Joseph Myers <joseph@codesourcery.com>
19057
19058 * soft-fp/adddf3.c: Fix vertical whitespace and indentation.
19059 * soft-fp/addsf3.c: Likewise.
19060 * soft-fp/addtf3.c: Likewise.
19061 * soft-fp/divdf3.c: Likewise.
19062 * soft-fp/divsf3.c: Likewise.
19063 * soft-fp/divtf3.c: Likewise.
19064 * soft-fp/double.h: Likewise.
19065 * soft-fp/eqdf2.c: Likewise.
19066 * soft-fp/eqsf2.c: Likewise.
19067 * soft-fp/eqtf2.c: Likewise.
19068 * soft-fp/extenddftf2.c: Likewise.
19069 * soft-fp/extended.h: Likewise.
19070 * soft-fp/extendsfdf2.c: Likewise.
19071 * soft-fp/extendsftf2.c: Likewise.
19072 * soft-fp/extendxftf2.c: Likewise.
19073 * soft-fp/fixdfdi.c: Likewise.
19074 * soft-fp/fixdfsi.c: Likewise.
19075 * soft-fp/fixdfti.c: Likewise.
19076 * soft-fp/fixsfdi.c: Likewise.
19077 * soft-fp/fixsfsi.c: Likewise.
19078 * soft-fp/fixsfti.c: Likewise.
19079 * soft-fp/fixtfdi.c: Likewise.
19080 * soft-fp/fixtfsi.c: Likewise.
19081 * soft-fp/fixtfti.c: Likewise.
19082 * soft-fp/fixunsdfdi.c: Likewise.
19083 * soft-fp/fixunsdfsi.c: Likewise.
19084 * soft-fp/fixunsdfti.c: Likewise.
19085 * soft-fp/fixunssfdi.c: Likewise.
19086 * soft-fp/fixunssfsi.c: Likewise.
19087 * soft-fp/fixunssfti.c: Likewise.
19088 * soft-fp/fixunstfdi.c: Likewise.
19089 * soft-fp/fixunstfsi.c: Likewise.
19090 * soft-fp/fixunstfti.c: Likewise.
19091 * soft-fp/floatdidf.c: Likewise.
19092 * soft-fp/floatdisf.c: Likewise.
19093 * soft-fp/floatditf.c: Likewise.
19094 * soft-fp/floatsidf.c: Likewise.
19095 * soft-fp/floatsisf.c: Likewise.
19096 * soft-fp/floatsitf.c: Likewise.
19097 * soft-fp/floattidf.c: Likewise.
19098 * soft-fp/floattisf.c: Likewise.
19099 * soft-fp/floattitf.c: Likewise.
19100 * soft-fp/floatundidf.c: Likewise.
19101 * soft-fp/floatundisf.c: Likewise.
19102 * soft-fp/floatunsidf.c: Likewise.
19103 * soft-fp/floatunsisf.c: Likewise.
19104 * soft-fp/floatuntidf.c: Likewise.
19105 * soft-fp/floatuntisf.c: Likewise.
19106 * soft-fp/floatuntitf.c: Likewise.
19107 * soft-fp/fmadf4.c: Likewise.
19108 * soft-fp/fmasf4.c: Likewise.
19109 * soft-fp/fmatf4.c: Likewise.
19110 * soft-fp/gedf2.c: Likewise.
19111 * soft-fp/gesf2.c: Likewise.
19112 * soft-fp/getf2.c: Likewise.
19113 * soft-fp/ledf2.c: Likewise.
19114 * soft-fp/lesf2.c: Likewise.
19115 * soft-fp/letf2.c: Likewise.
19116 * soft-fp/muldf3.c: Likewise.
19117 * soft-fp/mulsf3.c: Likewise.
19118 * soft-fp/multf3.c: Likewise.
19119 * soft-fp/negdf2.c: Likewise.
19120 * soft-fp/negsf2.c: Likewise.
19121 * soft-fp/negtf2.c: Likewise.
19122 * soft-fp/op-1.h: Likewise.
19123 * soft-fp/op-2.h: Likewise.
19124 * soft-fp/op-4.h: Likewise.
19125 * soft-fp/op-8.h: Likewise.
19126 * soft-fp/op-common.h: Likewise.
19127 * soft-fp/quad.h: Likewise.
19128 * soft-fp/single.h: Likewise.
19129 * soft-fp/soft-fp.h: Likewise.
19130 * soft-fp/sqrtdf2.c: Likewise.
19131 * soft-fp/sqrtsf2.c: Likewise.
19132 * soft-fp/sqrttf2.c: Likewise.
19133 * soft-fp/subdf3.c: Likewise.
19134 * soft-fp/subsf3.c: Likewise.
19135 * soft-fp/subtf3.c: Likewise.
19136 * soft-fp/truncdfsf2.c: Likewise.
19137 * soft-fp/trunctfdf2.c: Likewise.
19138 * soft-fp/trunctfsf2.c: Likewise.
19139 * soft-fp/trunctfxf2.c: Likewise.
19140 * soft-fp/unorddf2.c: Likewise.
19141 * soft-fp/unordsf2.c: Likewise.
19142 * soft-fp/unordtf2.c: Likewise.
19143
191442013-10-14 Ondřej Bílka <neleai@seznam.cz>
19145
19146 [BZ #15672]
19147 * misc/error.c (error_tail): Fix possible buffer overflow.
19148
191492013-10-14 Aurelien Jarno <aurelien@aurel32.net>
19150
19151 [BZ #13028]
19152 * res_send.c(__libc_res_nsend): Correctly copy the nameserver
19153 address.
19154
191552013-10-14 P. J. McDermott <pj@pehjota.net>
19156
19157 [BZ #832]
19158 * elf/ldd.bash.in (try_trace): New function. Delete previous code
19159 testing pipefail option.
19160
191612013-10-12 Joseph Myers <joseph@codesourcery.com>
19162
19163 * soft-fp/double.h: Indent preprocessor directives inside #if.
19164 * soft-fp/extended.h: Likewise.
19165 * soft-fp/op-2.h: Likewise.
19166 * soft-fp/op-4.h: Likewise.
19167 * soft-fp/op-common.h: Likewise.
19168 * soft-fp/quad.h: Likewise.
19169 * soft-fp/single.h: Likewise.
19170 * soft-fp/soft-fp.h: Likewise.
19171
191722013-10-12 Yuri Chornoivan <yurchor@ukr.net>
19173
19174 * iconv/iconv_prog.c: Fix typos.
19175 * stdio-common/psiginfo-data.h: Likewise.
19176
191772013-10-12 Reuben Thomas <rrt@sc3d.org>
19178
19179 [BZ #15764]
19180 * locale/setlocale.c: Fix typo.
19181
191822013-10-12 Joseph Myers <joseph@codesourcery.com>
19183
19184 [BZ #16036]
19185 * soft-fp/unorddf2.c (__unorddf2): Raise "invalid" exception for
19186 signaling NaN arguments.
19187 * soft-fp/unordsf2.c (__unordsf2): Likewise.
19188 * soft-fp/unordtf2.c (__unordtf2): Likewise.
19189
19190 [BZ #14910]
19191 * soft-fp/gedf2.c (__gedf2): Raise "invalid" exception for all
19192 unordered operands.
19193 * soft-fp/gesf2.c (__gesf2): Likewise.
19194 * soft-fp/getf2.c (__getf2): Likewise.
19195 * soft-fp/ledf2.c (__ledf2): Likewise.
19196 * soft-fp/lesf2.c (__lesf2): Likewise.
19197 * soft-fp/letf2.c (__letf2): Likewise.
19198
19199 * soft-fp/eqdf2.c (__eqdf2): Use FP_INIT_EXCEPTIONS.
19200 * soft-fp/eqsf2.c (__eqsf2): Likewise.
19201 * soft-fp/eqtf2.c (__eqtf2): Likewise.
19202 * soft-fp/fixdfdi.c (__fixdfdi): Likewise.
19203 * soft-fp/fixdfsi.c (__fixdfsi): Likewise.
19204 * soft-fp/fixdfti.c (__fixdfti): Likewise.
19205 * soft-fp/fixsfdi.c (__fixsfdi): Likewise.
19206 * soft-fp/fixsfsi.c (__fixsfsi): Likewise.
19207 * soft-fp/fixsfti.c (__fixsfti): Likewise.
19208 * soft-fp/fixtfdi.c (__fixtfdi): Likewise.
19209 * soft-fp/fixtfsi.c (__fixtfsi): Likewise.
19210 * soft-fp/fixtfti.c (__fixtfti): Likewise.
19211 * soft-fp/fixunsdfdi.c (__fixunsdfdi): Likewise.
19212 * soft-fp/fixunsdfsi.c (__fixunsdfsi): Likewise.
19213 * soft-fp/fixunsdfti.c (__fixunsdfti): Likewise.
19214 * soft-fp/fixunssfdi.c (__fixunssfdi): Likewise.
19215 * soft-fp/fixunssfsi.c (__fixunssfsi): Likewise.
19216 * soft-fp/fixunssfti.c (__fixunssfti): Likewise.
19217 * soft-fp/fixunstfdi.c (__fixunstfdi): Likewise.
19218 * soft-fp/fixunstfsi.c (__fixunstfsi): Likewise.
19219 * soft-fp/fixunstfti.c (__fixunstfti): Likewise.
19220 * soft-fp/floatdidf.c (__floatdidf): Use FP_INIT_ROUNDMODE.
19221 * soft-fp/floatdisf.c (__floatdisf): Likewise.
19222 * soft-fp/floatsisf.c (__floatsisf): Likewise.
19223 * soft-fp/floattidf.c (__floattidf): Likewise.
19224 * soft-fp/floattisf.c (__floattisf): Likewise.
19225 * soft-fp/floattitf.c (__floattitf): Likewise.
19226 * soft-fp/floatundidf.c (__floatundidf): Likewise.
19227 * soft-fp/floatundisf.c (__floatundisf): Likewise.
19228 * soft-fp/floatunsisf.c (__floatunsisf): Likewise.
19229 * soft-fp/floatuntidf.c (__floatuntidf): Likewise.
19230 * soft-fp/floatuntisf.c (__floatuntisf): Likewise.
19231 * soft-fp/floatuntitf.c (__floatuntitf): Likewise.
19232 * soft-fp/gedf2.c (__gedf2): Use FP_INIT_EXCEPTIONS.
19233 * soft-fp/gesf2.c (__gesf2): Likewise.
19234 * soft-fp/getf2.c (__getf2): Likewise.
19235 * soft-fp/ledf2.c (__ledf2): Likewise.
19236 * soft-fp/lesf2.c (__lesf2): Likewise.
19237 * soft-fp/letf2.c (__letf2): Likewise.
19238
19239 * soft-fp/soft-fp.h [FP_NO_EXCEPTIONS] (FP_SET_EXCEPTION):
19240 Undefine and redefine.
19241 [FP_NO_EXCEPTIONS] (FP_CUR_EXCEPTIONS): Likewise.
19242 [FP_NO_EXCEPTIONS] (FP_TRAPPING_EXCEPTIONS): Likewise.
19243 [FP_NO_EXCEPTIONS] (FP_ROUNDMODE): Likewise.
19244 * soft-fp/floatditf.c (FP_NO_EXCEPTIONS): Define macro.
19245 (__floatditf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
19246 * soft-fp/floatsidf.c (FP_NO_EXCEPTIONS): Define macro.
19247 (__floatsidf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
19248 * soft-fp/floatsitf.c (FP_NO_EXCEPTIONS): Define macro.
19249 (__floatsitf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
19250 * soft-fp/floatunditf.c (FP_NO_EXCEPTIONS): Define macro.
19251 (__floatunditf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
19252 * soft-fp/floatunsidf.c (FP_NO_EXCEPTIONS): Define macro.
19253 (__floatunsidf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
19254 * soft-fp/floatunsitf.c (FP_NO_EXCEPTIONS): Define macro.
19255 (__floatunsitf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
19256
19257 [BZ #16032]
19258 * soft-fp/op-2.h (_FP_DIV_MEAT_2_udiv): Shift numerator right
19259 without decrementing exponent if mantissa >= that for the
19260 denominator, not >.
19261 (_FP_DIV_MEAT_2_gmp): Test numerator mantissa >= that for the
19262 denominator, not >. Decrement exponent in < case instead of
19263 incrementing in >= case.
19264 * soft-fp/op-4.h (_FP_DIV_MEAT_4_udiv): Shift numerator right
19265 without decrementing exponent if mantissa >= that for the
19266 denominator, not >.
19267
19268 * soft-fp/op-common.h (_FP_TO_INT): Reverse test of sign for
19269 computing saturated result for unsigned overflow.
19270
192712013-10-11 Siddhesh Poyarekar <siddhesh@redhat.com>
19272 Jeff Law <law@redhat.com>
19273
19274 * sysdeps/ieee754/dbl-64/e_atan2.c: Include stap-probe.h.
19275 (atan2Mp): Add systemtap probe marker.
19276 * sysdeps/ieee754/dbl-64/e_log.c: include stap-probe.h.
19277 (__ieee754_log): Add systemtap probe marker.
19278 * sysdeps/ieee754/dbl-64/s_atan.c: Include stap-probe.h.
19279 (atanMp): Add systemtap probe marker.
19280 * sysdeps/ieee754/dbl-64/s_tan.c: Include stap-probe.h.
19281 (tanMp): Add systemtap probe marker.
19282 * sysdeps/ieee754/dbl-64/slowexp.c: Include stap-probe.h.
19283 (__slowexp): Add systemtap probe marker.
19284 * sysdeps/ieee754/dbl-64/slowpow.c: Include stap-probe.h.
19285 (__slowpow): Add systemtap probe marker.
19286 * manual/probes.texi: Document probes.
19287
192882013-10-11 Eric Biggers <ebiggers3@gmail.com>
19289
19290 [BZ #15362]
19291 * libio/fileops.c (_IO_new_file_write): Return count of bytes
19292 written.
19293 (_IO_new_file_xsputn): Don't return EOF if nothing has been
19294 written.
19295 * libio/iofwrite.c (_IO_fwrite): Return count if bytes were
19296 written to buffer but not flushed.
19297 * libio/iofwrite_u.c: Likewise.
19298 * libio/iopadn.c: Return bytes returned even if EOF was
19299 encountered.
19300 * libio/iowpadn.c: Likewise.
19301 * stdio-common/vfprintf.c [COMPILE_WPRINTF] (PAD): Return error
19302 if _IO_padn does not write the whole buffer.
19303 [!COMPILE_WPRINTF] (PAD): Likewise.
19304
193052013-10-10 David S. Miller <davem@davemloft.net>
19306
19307 * sysdeps/posix/dirstream.h (struct __dirstream): Fix alignment of
19308 directory block.
19309
193102013-10-10 Joseph Myers <joseph@codesourcery.com>
19311
19312 * soft-fp/extendxftf2.c: Use copyright year range. Use URL
19313 instead of FSF address.
19314 * soft-fp/fixdfti.c: Likewise.
19315 * soft-fp/fixsfti.c: Likewise.
19316 * soft-fp/fixtfti.c: Likewise.
19317 * soft-fp/fixunsdfti.c: Likewise.
19318 * soft-fp/fixunssfti.c: Likewise.
19319 * soft-fp/fixunstfti.c: Likewise.
19320 * soft-fp/floattidf.c: Likewise.
19321 * soft-fp/floattisf.c: Likewise.
19322 * soft-fp/floattitf.c: Likewise.
19323 * soft-fp/floatuntidf.c: Likewise.
19324 * soft-fp/floatuntisf.c: Likewise.
19325 * soft-fp/floatuntitf.c: Likewise.
19326 * soft-fp/trunctfxf2.c: Likewise.
19327
19328 * soft-fp/extendxftf2.c: New file. Copied from libgcc.
19329 * soft-fp/fixdfti.c: Likewise.
19330 * soft-fp/fixsfti.c: Likewise.
19331 * soft-fp/fixtfti.c: Likewise.
19332 * soft-fp/fixunsdfti.c: Likewise.
19333 * soft-fp/fixunssfti.c: Likewise.
19334 * soft-fp/fixunstfti.c: Likewise.
19335 * soft-fp/floattidf.c: Likewise.
19336 * soft-fp/floattisf.c: Likewise.
19337 * soft-fp/floattitf.c: Likewise.
19338 * soft-fp/floatuntidf.c: Likewise.
19339 * soft-fp/floatuntisf.c: Likewise.
19340 * soft-fp/floatuntitf.c: Likewise.
19341 * soft-fp/trunctfxf2.c: Likewise.
19342
193432013-10-10 David S. Miller <davem@davemloft.net>
19344
19345 * sysdeps/sparc/fpu/libm-test-ulps: Update.
19346
193472013-10-10 Joseph Myers <joseph@codsourcery.com>
19348
19349 * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
19350 (CFLAGS-e_hypotl.c): Add -fno-builtin-fabsl.
19351 [$(subdir) = math] (CFLAGS-w_acosl.c): Likewise.
19352 [$(subdir) = math] (CFLAGS-w_asinl.c): Likewise.
19353 [$(subdir) = math] (CFLAGS-w_atanhl.c): Likewise.
19354 [$(subdir) = math] (CFLAGS-w_j0l.c): Likewise.
19355 [$(subdir) = math] (CFLAGS-w_j1l.c): Likewise.
19356
19357 * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Check
19358 for NaNs before doing comparisons on argument.
19359 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl):
19360 Likewise.
19361
193622013-10-10 Will Newton <will.newton@linaro.org>
19363
19364 * malloc/hooks.c (memalign_check): Ensure the value of bytes
19365 passed to _int_memalign does not overflow.
19366
193672013-10-10 Torvald Riegel <triegel@redhat.com>
19368
19369 * scripts/bench.pl: Add include-sources directive.
19370 * benchtests/README: Update documentation.
19371
193722013-10-10 Joseph Myers <joseph@codesourcery.com>
19373
19374 * soft-fp/soft-fp.h (FP_INIT_EXCEPTIONS): New macro.
19375 * soft-fp/extenddftf2.c (__extenddftf2): Use FP_INIT_EXCEPTIONS
19376 instead of FP_INIT_ROUNDMODE.
19377 * soft-fp/extendsfdf2.c (__extendsfdf2): Likewise.
19378 * soft-fp/extendsftf2.c (__extendsftf2): Likewise.
19379
19380 [BZ #16034]
19381 * soft-fp/op-common.h (_FP_NEG): Document input as raw. Do not
19382 copy class of input value.
19383 * soft-fp/negdf2.c (__negdf2): Use raw unpacking and packing. Do
19384 not handle exceptions.
19385 * soft-fp/negsf2.c (__negsf2): Likewise.
19386 * soft-fp/negtf2.c (__negtf2): Likewise.
19387 * sysdeps/sparc/sparc32/soft-fp/q_neg.c (_Q_neg): Likewise.
19388
193892013-10-09 Joseph Myers <joseph@codesourcery.com>
19390
19391 * soft-fp/op-4.h (_FP_FRAC_DISASSEMBLE_4): Remove trailing
19392 semicolon. From Linux kernel.
19393
193942013-10-09 Adam Buchbinder <adam.buchbinder@gmail.com>
19395
19396 * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Fix typo in comment.
19397
193982013-10-08 Yogesh Chaudhari <mr.yogesh@gmail.com>
19399
19400 [BZ #156]
19401 * manual/socket.texi: Added statement about buffer
19402 for gethostbyname2_r.
19403
194042013-10-08 Ondřej Bílka <neleai@seznam.cz>
19405
19406 * sysdeps/x86_64/memset.S (ALIGN): Macro removed.
19407 Use .p2align directive instead, throughout.
19408 * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
19409 * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
19410 * sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: Likewise.
19411 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
19412 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
19413 * sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S: Likewise.
19414 * sysdeps/x86_64/strchr.S: Likewise.
19415 * sysdeps/x86_64/strrchr.S: Likewise.
19416
194172013-10-08 Siddhesh Poyarekar <siddhesh@redhat.com>
19418
19419 * sysdeps/ieee754/dbl-64/e_pow.c: Fix code formatting.
19420
19421 * sysdeps/ieee754/dbl-64/e_exp.c: Fix code formatting.
19422
19423 * sysdeps/generic/math_private.h (__mpsin1): Remove
19424 declaration.
19425 (__mpcos1): Likewise.
19426 (__mpsin): New argument __range_reduce.
19427 (__mpcos): Likewise.
19428 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
19429 (slow): Use __mpsin and __mpcos.
19430 (slow1): Likewise.
19431 (slow2): Likewise.
19432 (sloww): Likewise.
19433 (sloww1): Likewise.
19434 (sloww2): Likewise.
19435 (bsloww): Likewise.
19436 (bsloww1): Likewise.
19437 (bsloww2): Likewise.
19438 (cslow2): Likewise.
19439 (csloww): Likewise.
19440 (csloww1): Likewise.
19441 (csloww2): Likewise.
19442 * sysdeps/ieee754/dbl-64/sincos32.c (__mpsin): Add argument
19443 range_reduce. Merge in __mpsin1.
19444 (__mpcos): Likewise.
19445 (__mpsin1): Remove.
19446 (__mpcos1): Likewise.
19447
194482013-10-07 Joseph Myers <joseph@codesourcery.com>
19449
19450 * locale/loadlocale.c (_nl_intern_locale_data): Use
19451 LOCFILE_ALIGNED_P.
19452 * locale/programs/3level.h (CONCAT(add_locale_,TABLE)): Use
19453 LOCFILE_ALIGN_UP and LOCFILE_ALIGN.
19454 * locale/programs/ld-collate.c (obstack_int32_grow): Assert that
19455 obstack data is appropriately aligned.
19456 (obstack_int32_grow_fast): Likewise.
19457 * locale/programs/ld-ctype.c (ctype_output): Use LOCFILE_ALIGN.
19458 * locale/programs/locfile.c (add_locale_uint32): Likewise.
19459 (add_locale_uint32_array): Likewise.
19460
194612013-10-07 Siddhesh Poyarekar <siddhesh@redhat.com>
19462
19463 * benchtests/Makefile: Remove ARGLIST and RET variables.
19464 ($(objpfx)bench-%.c): Pass only function name to the script.
19465 * benchtests/README: Update documentation.
19466 * benchtests/acos-inputs: Add new directives.
19467 * benchtests/acosh-inputs: Likewise.
19468 * benchtests/asin-inputs: Likewise.
19469 * benchtests/asinh-inputs: Likewise.
19470 * benchtests/atan-inputs: Likewise.
19471 * benchtests/atanh-inputs: Likewise.
19472 * benchtests/cos-inputs: Likewise.
19473 * benchtests/cosh-inputs: Likewise.
19474 * benchtests/exp-inputs: Likewise.
19475 * benchtests/log-inputs: Likewise.
19476 * benchtests/pow-inputs: Likewise.
19477 * benchtests/rint-inputs: Likewise.
19478 * benchtests/sin-inputs: Likewise.
19479 * benchtests/sinh-inputs: Likewise.
19480 * benchtests/tan-inputs: Likewise.
19481 * benchtests/tanh-inputs: Likewise.
19482 * scripts/bench.pl: Add support for new directives.
19483
194842013-10-07 Alan Modra <amodra@gmail.com>
19485
19486 * README: Fix careless merge.
19487
194882013-10-05 Alan Modra <amodra@gmail.com>
19489
19490 * NEWS: Mention powerpc64le support and bugs fixed.
19491 * README: Both big-endian and little-endian powerpc64 supported.
19492
194932013-10-04 Samuel Thibault <samuel.thibault@ens-lyon.org>
19494
19495 * sysdeps/mach/hurd/fork.c (_hurd_atfork_prepare_hook)
19496 (_hurd_atfork_child_hook, _hurd_atfork_parent_hook): New hooks.
19497 (__fork): Call _hurd_atfork_prepare_hook hooks before all locking, call
19498 _hurd_atfork_parent_hook or _hurd_atfork_child_hook after all unlocking.
19499
195002013-10-04 Ryan S. Arnold <ryan.arnold@linaro.org>
19501
19502 * misc/swapon.c (swapon): Update definition, adding FLAGS parameter to
19503 match prototype.
19504
195052013-10-04 Joseph Myers <joseph@codesourcery.com>
19506
19507 * sysdeps/powerpc/powerpc32/Makefile [$(with-fp) = yes] (+cflags):
19508 Move -mhard-float appending from
19509 ports/sysdeps/powerpc/powerpc32/Makefile.
19510 [$(with-fp) = yes] (ASFLAGS): Likewise.
19511 [$(with-fp) = yes] (sysdep-LDFLAGS): Likewise.
19512 * sysdeps/powerpc/nofpu: Move directory from
19513 ports/sysdeps/powerpc/nofpu.
19514 * sysdeps/powerpc/soft-fp: Move directory from
19515 ports/sysdeps/powerpc/soft-fp.
19516 * sysdeps/powerpc/powerpc32/405: Move directory from
19517 ports/sysdeps/powerpc/powerpc32/405.
19518 * sysdeps/powerpc/powerpc32/440: Move directory from
19519 ports/sysdeps/powerpc/powerpc32/440.
19520 * sysdeps/powerpc/powerpc32/464: Move directory from
19521 ports/sysdeps/powerpc/powerpc32/464.
19522 * sysdeps/powerpc/powerpc32/476: Move directory from
19523 ports/sysdeps/powerpc/powerpc32/476.
19524 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu: Move directory
19525 from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu.
19526 * sysdeps/unix/sysv/linux/powerpc/powerpc32/405: Move directory
19527 from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/405.
19528 * sysdeps/unix/sysv/linux/powerpc/powerpc32/440: Move directory
19529 from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/440.
19530 * sysdeps/unix/sysv/linux/powerpc/powerpc32/464: Move directory
19531 from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/464.
19532 * sysdeps/unix/sysv/linux/powerpc/powerpc32/476: Move directory
19533 from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/476.
19534 * README: Update for powerpc-*-linux-gnu software floating point
19535 support in libc.
19536
19537 * sysdeps/unix/sysv/linux/configure.in (powerpc/powerpc32): Change
19538 case to powerpc/powerpc32*.
19539 * sysdeps/unix/sysv/linux/configure: Regenerated.
19540
19541 * sysdeps/powerpc/fpu_control.h [__NO_FPRS__ && !_SOFT_FLOAT]
19542 (_FPU_MASK_OM): Define as 0x04.
19543 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_UM): Define as 0x08.
19544 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RESERVED): Define as
19545 0x00c10080.
19546 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_DEFAULT): Define as
19547 0x0000003c.
19548 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_IEEE): Define as _FPU_DEFAULT.
19549
19550 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S
19551 (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use
19552 getcontext_e500.
19553 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
19554 (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use
19555 setcontext_e500.
19556 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
19557 (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use getcontext_e500
19558 and setcontext_e500.
19559
195602013-10-04 Chris Leonard <cjl@sugarlabs,.org>
19561
19562 * locale/iso-3166.def: Update iso-1366.def and related occurrences
19563
195642013-10-04 Siddhesh Poyarekar <siddhesh@redhat.com>
19565
19566 * manual/threads.texi (Default Thread Attributes): Fix typo.
19567
195682013-10-04 Will Newton <will.newton@linaro.org>
19569
19570 * malloc/Makefile: Add tst-memalign.
19571 * malloc/tst-memalign.c: New file.
19572
19573 * malloc/tst-posix_memalign.c: Add comments.
19574 (do_test): Add comments and call free on all potentially
19575 allocated pointers. Add space after cast.
19576
19577 * malloc/tst-pvalloc.c: Add comments.
19578 (do_test): Add comments and call free on all potentially
19579 allocated pointers. Remove duplicate check for NULL pointer.
19580 Add space after cast.
19581
19582 * malloc/tst-valloc.c: Add comments.
19583 (do_test): Add comments and call free on all potentially
19584 allocated pointers. Remove duplicate check for NULL pointer.
19585 Add space after cast.
19586
195872013-10-04 Alan Modra <amodra@gmail.com>
19588
19589 * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
19590 Use stdint types in rather than __attribute__((mode())).
19591 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
19592
195932013-10-04 Alan Modra <amodra@gmail.com>
19594
19595 * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
19596 Correct handling of unaligned relocs for little-endian.
19597 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
19598
195992013-10-04 Alan Modra <amodra@gmail.com>
19600
19601 * configure.in: Map powerpc64le and powerpcle to base_machine/machine.
19602 * configure: Regenerate.
19603 * nptl/shlib-versions: Powerpc*le starts at 2.18.
19604 * shlib-versions: Likewise.
19605
196062013-10-04 Alan Modra <amodra@gmail.com>
19607
19608 * string/tester.c (test_memrchr): Increment reported test cycle.
19609
196102013-10-04 Alan Modra <amodra@gmail.com>
19611
19612 * string/test-memcpy.c (do_one_test): When reporting errors, print
19613 string address and don't overrun end of string.
19614
196152013-10-04 Alan Modra <amodra@gmail.com>
19616
19617 * sysdeps/powerpc/powerpc64/power7/memchr.S: Replace rlwimi with
19618 insrdi. Make better use of reg selection to speed exit slightly.
19619 Schedule entry path a little better. Remove useless "are we done"
19620 checks on entry to main loop. Handle wrapping around zero address.
19621 Correct main loop count. Handle single left-over word from main
19622 loop inline rather than by using loop_small. Remove extra word
19623 case in loop_small caused by wrong loop count. Add little-endian
19624 support.
19625 * sysdeps/powerpc/powerpc32/power7/memchr.S: Likewise.
19626 * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise. Use proper
19627 cache hint.
19628 * sysdeps/powerpc/powerpc32/power7/memrchr.S: Likewise.
19629 * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: Add little-endian
19630 support. Avoid rlwimi.
19631 * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: Likewise.
19632
196332013-10-04 Alan Modra <amodra@gmail.com>
19634
19635 * sysdeps/powerpc/powerpc64/memset.S: Replace rlwimi with
19636 insrdi. Formatting.
19637 * sysdeps/powerpc/powerpc64/power4/memset.S: Likewise.
19638 * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
19639 * sysdeps/powerpc/powerpc64/power7/memset.S: Likewise.
19640 * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise.
19641 * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
19642 * sysdeps/powerpc/powerpc32/power7/memset.S: Likewise.
19643
196442013-10-04 Alan Modra <amodra@gmail.com>
19645
19646 * sysdeps/powerpc/powerpc32/power4/memcpy.S: Add little endian support.
19647 * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
19648 * sysdeps/powerpc/powerpc32/power7/memcpy.S: Likewise.
19649 * sysdeps/powerpc/powerpc32/power7/mempcpy.S: Likewise.
19650 * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
19651 * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
19652 * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
19653 * sysdeps/powerpc/powerpc64/power7/memcpy.S: Likewise.
19654 * sysdeps/powerpc/powerpc64/power7/mempcpy.S: Likewise. Make better
19655 use of regs. Use power7 mtocrf. Tidy function tails.
19656
196572013-10-04 Alan Modra <amodra@gmail.com>
19658
19659 * sysdeps/powerpc/powerpc64/power7/memcmp.S: Add little-endian support.
19660 Formatting. Consistently use rXXX register defines or rN defines.
19661 Use early exit labels that avoid restoring unused non-volatile regs.
19662 Make cr field use more consistent with rWORDn compares. Rename
19663 regs used as shift registers for unaligned loop, using rN defines
19664 for short lifetime/multiple use regs.
19665 * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
19666 * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise. Exit with
19667 addi 1,1,64 to pop stack frame. Simplify return value code.
19668 * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
19669
196702013-10-04 Alan Modra <amodra@gmail.com>
19671
19672 * sysdeps/powerpc/powerpc64/power7/strchr.S (strchr): Add little-endian
19673 support. Correct typos, formatting. Optimize tail. Use insrdi
19674 rather than rlwimi.
19675 * sysdeps/powerpc/powerpc32/power7/strchr.S: Likewise.
19676 * sysdeps/powerpc/powerpc64/power7/strchrnul.S (__strchrnul): Add
19677 little-endian support. Correct typos.
19678 * sysdeps/powerpc/powerpc32/power7/strchrnul.S: Likewise. Use insrdi
19679 rather than rlwimi.
19680 * sysdeps/powerpc/powerpc64/strchr.S (rTMP4, rTMP5): Define. Use
19681 in loop and entry code to keep "and." results.
19682 (strchr): Add little-endian support. Comment. Move cntlzd
19683 earlier in tail.
19684 * sysdeps/powerpc/powerpc32/strchr.S: Likewise.
19685
196862013-10-04 Alan Modra <amodra@gmail.com>
19687
19688 * sysdeps/powerpc/powerpc64/strcpy.S: Add little-endian support:
19689 * sysdeps/powerpc/powerpc32/strcpy.S: Likewise.
19690 * sysdeps/powerpc/powerpc64/stpcpy.S: Likewise.
19691 * sysdeps/powerpc/powerpc32/stpcpy.S: Likewise.
19692
196932013-10-04 Alan Modra <amodra@gmail.com>
19694
19695 * sysdeps/powerpc/powerpc64/strcmp.S (rTMP2): Define as r0.
19696 (rTMP): Define as r11.
19697 (strcmp): Add little-endian support. Optimise tail.
19698 * sysdeps/powerpc/powerpc32/strcmp.S: Similarly.
19699 * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
19700 * sysdeps/powerpc/powerpc32/strncmp.S: Likewise.
19701 * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
19702 * sysdeps/powerpc/powerpc32/power4/strncmp.S: Likewise.
19703 * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
19704 * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
19705
197062013-10-04 Alan Modra <amodra@gmail.com>
19707
19708 * sysdeps/powerpc/powerpc64/power7/strnlen.S (strnlen): Add
19709 little-endian support. Remove unnecessary "are we done" tests.
19710 Handle "s" wrapping around zero and extremely large "size".
19711 Correct main loop count. Handle single left-over word from main
19712 loop inline rather than by using small_loop. Correct comments.
19713 Delete "zero" tail, use "end_max" instead.
19714 * sysdeps/powerpc/powerpc32/power7/strnlen.S: Likewise.
19715
197162013-10-04 Alan Modra <amodra@gmail.com>
19717
19718 * sysdeps/powerpc/powerpc64/power7/strlen.S (strlen): Add little-endian
19719 support. Don't branch over align.
19720 * sysdeps/powerpc/powerpc32/power7/strlen.S: Likewise.
19721 * sysdeps/powerpc/powerpc64/strlen.S (strlen): Add little-endian
19722 support. Rearrange tmp reg use to suit. Comment.
19723 * sysdeps/powerpc/powerpc32/strlen.S: Likewise.
19724
197252013-10-04 Alan Modra <amodra@gmail.com>
19726
19727 * sysdeps/unix/sysv/linux/powerpc/bits/sigstack.h: New file.
19728
197292013-10-04 Alan Modra <amodra@gmail.com>
19730
19731 * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S: Use
19732 conditional form of branch and link when obtaining pc.
19733 * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
19734
197352013-10-04 Alan Modra <amodra@gmail.com>
19736
19737 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Use
19738 HIWORD/LOWORD.
19739 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Ditto.
19740 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Ditto.
19741
197422013-10-04 Alan Modra <amodra@gmail.com>
19743
19744 * sysdeps/powerpc/longjmp.c: Use proper symbol versioning macros.
19745 * sysdeps/powerpc/novmx-longjmp.c: Likewise.
19746 * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Likewise.
19747 * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Likewise.
19748 * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
19749 * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
19750 * sysdeps/powerpc/powerpc32/mcount.c: Likewise.
19751 * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
19752 * sysdeps/powerpc/powerpc64/setjmp.S: Likewise.
19753 * nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Likewise.
19754
197552013-10-04 Anton Blanchard <anton@au1.ibm.com>
19756 Alistair Popple <alistair@ozlabs.au.ibm.com>
19757 Alan Modra <amodra@gmail.com>
19758
19759 [BZ #15723]
19760 * sysdeps/powerpc/jmpbuf-offsets.h: Comment fix.
19761 * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Correct
19762 _dl_hwcap access for little-endian.
19763 * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise. Don't
19764 destroy vmx regs when saving unaligned.
19765 * sysdeps/powerpc/powerpc64/__longjmp-common.S: Correct CR load.
19766 * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise CR save. Don't
19767 destroy vmx regs when saving unaligned.
19768
197692013-10-04 Alan Modra <amodra@gmail.com>
19770
19771 * sysdeps/powerpc/powerpc32/power4/hp-timing.h (HP_TIMING_NOW):
19772 Don't use a union to pack hi/low value.
19773
197742013-10-04 Anton Blanchard <anton@au1.ibm.com>
19775
19776 * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Correct float constants
19777 for little-endian.
19778 * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
19779 * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: Likewise.
19780 * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
19781 * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
19782 * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
19783
197842013-10-04 Alan Modra <amodra@gmail.com>
19785
19786 * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Increase alignment of
19787 constants to usual value for .cst8 section, and remove redundant
19788 high address load.
19789 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Use float
19790 constant for 0x1p52. Load little-endian words of double from
19791 correct stack offsets.
19792
197932013-10-04 Alan Modra <amodra@gmail.com>
19794
19795 * sysdeps/powerpc/sysdep.h (LOWORD, HIWORD, HISHORT): Define.
19796 * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Load little-endian
19797 words of double from correct stack offsets.
19798 * sysdeps/powerpc/powerpc32/fpu/s_copysignl.S: Likewise.
19799 * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: Likewise.
19800 * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.
19801 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Likewise.
19802 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Likewise.
19803 * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Likewise.
19804 * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Likewise.
19805 * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: Likewise.
19806 * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: Likewise.
19807 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Likewise.
19808 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Likewise.
19809 * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Likewise.
19810 * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
19811 * sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
19812 * sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
19813 * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Use HISHORT.
19814 * sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S: Likewise.
19815
198162013-10-04 Alan Modra <amodra@gmail.com>
19817
19818 * sysdeps/powerpc/fpu_control.h (_FPU_GETCW): Rewrite using
19819 64-bit int/double union.
19820 (_FPU_SETCW): Likewise.
19821 * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_GET_DI_FPSCR): Likewise.
19822 (_SET_DI_FPSCR, _GET_SI_FPSCR, _SET_SI_FPSCR): Likewise.
19823
198242013-10-04 Alan Modra <amodra@gmail.com>
19825
19826 * sysdeps/powerpc/fpu/s_llround.c (__llround): Rewrite.
19827 * sysdeps/powerpc/fpu/s_llroundf.c (__llroundf): Rewrite.
19828
198292013-10-04 Alan Modra <amodra@gmail.com>
19830
19831 * sysdeps/powerpc/fpu/s_float_bitwise.h (__float_and_test28): Don't
19832 use vector int constants.
19833 (__float_and_test24, __float_and8, __float_get_exp): Likewise.
19834
198352013-10-04 Anton Blanchard <anton@au1.ibm.com>
19836
19837 * sysdeps/powerpc/fpu/fenv_libc.h (fenv_union_t): Replace int
19838 array with long long.
19839 * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Adjust.
19840 * sysdeps/powerpc/fpu/e_sqrtf.c (__slow_ieee754_sqrtf): Adjust.
19841 * sysdeps/powerpc/fpu/fclrexcpt.c (__feclearexcept): Adjust.
19842 * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept): Adjust.
19843 * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Adjust.
19844 * sysdeps/powerpc/fpu/fegetexcept.c (__fegetexcept): Adjust.
19845 * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Adjust.
19846 * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Adjust.
19847 * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Adjust.
19848 * sysdeps/powerpc/fpu/fgetexcptflg.c (__fegetexceptflag): Adjust.
19849 * sysdeps/powerpc/fpu/fraiseexcpt.c (__feraiseexcept): Adjust.
19850 * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Adjust.
19851 * sysdeps/powerpc/fpu/ftestexcept.c (fetestexcept): Adjust.
19852
198532013-10-04 Anton Blanchard <anton@au1.ibm.com>
19854
19855 * sysdeps/powerpc/bits/mathinline.h (__signbitf): Use builtin.
19856 (__signbit): Likewise. Correct for little-endian.
19857 (__signbitl): Call __signbit.
19858 (lrint): Correct for little-endian.
19859 (lrintf): Call lrint.
19860
198612013-10-04 Alan Modra <amodra@gmail.com>
19862
19863 * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c (mynumber): Replace
19864 union 32-bit int array member with 64-bit int array.
19865 (t515, tm256): Double rather than long double.
19866 (__ieee754_sqrtl): Rewrite using 64-bit arithmetic.
19867
198682013-10-04 Alan Modra <amodra@gmail.com>
19869
19870 * sysdeps/ieee754/ldbl-128ibm/ieee754.h (union ieee854_long_double):
19871 Delete.
19872 (IEEE854_LONG_DOUBLE_BIAS): Delete.
19873 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Don't include ieee854
19874 version of math_ldbl.h.
19875
198762013-10-04 Alan Modra <amodra@gmail.com>
19877
19878 [BZ #15734], [BZ #15735]
19879 * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Rewrite
19880 all uses of ieee875 long double macros and unions. Simplify test
19881 for 0.0L. Correct |x|<|y| and |x|=|y| test. Use
19882 ldbl_extract_mantissa value for ix,iy exponents. Properly
19883 normalize after ldbl_extract_mantissa, and don't add hidden bit
19884 already handled. Don't treat low word of ieee854 mantissa like
19885 low word of IBM long double and mask off bit when testing for
19886 zero.
19887 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Rewrite
19888 all uses of ieee875 long double macros and unions. Simplify tests
19889 for 0.0L and inf. Correct double adjustment of k. Delete dead code
19890 adjusting ha,hb. Simplify code setting kld. Delete two600 and
19891 two1022, instead use their values. Recognise that tests for large
19892 "a" and small "b" are mutually exclusive. Rename vars. Comment.
19893 * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c (__ieee754_remainderl):
19894 Rewrite all uses of ieee875 long double macros and unions. Simplify
19895 test for 0.0L and nan. Correct negation.
19896 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c (__erfl): Rewrite all uses of
19897 ieee875 long double macros and unions. Correct output for large
19898 magnitude x. Correct absolute value calculation.
19899 (__erfcl): Likewise.
19900 * math/libm-test.inc: Add tests for errors discovered in IBM long
19901 double versions of fmodl, remainderl, erfl and erfcl.
19902
199032013-10-04 Alan Modra <amodra@gmail.com>
19904
19905 * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c (__ieee754_atan2l): Rewrite
19906 all uses of ieee854 long double macros and unions. Simplify tests
19907 for long doubles that are fully specified by the high double.
19908 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
19909 Likewise.
19910 * sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c (__ieee754_ilogbl): Likewise.
19911 Remove dead code too.
19912 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
19913 (__ieee754_ynl): Likewise.
19914 * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l): Likewise.
19915 * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Likewise.
19916 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
19917 Remove dead code too.
19918 * sysdeps/ieee754/ldbl-128ibm/k_tanl.c (__kernel_tanl): Likewise.
19919 * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Likewise.
19920 * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Likewise.
19921 * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c (__isinf_nsl): Likewise.
19922 Simplify.
19923 * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c (___isinfl): Likewise.
19924 Simplify.
19925 * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Likewise.
19926 * sysdeps/ieee754/ldbl-128ibm/s_modfl.c (__modfl): Likewise.
19927 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Likewise.
19928 Comment on variable precision.
19929 * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward): Likewise.
19930 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
19931 Likewise.
19932 * sysdeps/ieee754/ldbl-128ibm/s_remquol.c (__remquol): Likewise.
19933 * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
19934 * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
19935 * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c (__tanhl): Likewise.
19936 * sysdeps/powerpc/fpu/libm-test-ulps: Adjust tan_towardzero ulps.
19937
199382013-10-04 Alan Modra <amodra@gmail.com>
19939
19940 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_high): Define.
19941 * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Rewrite
19942 all uses of ieee854 long double macros and unions.
19943 * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Likewise.
19944 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
19945 * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Likewise.
19946 * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl): Likewise.
19947 * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l): Likewise.
19948 * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
19949 Likewise.
19950 * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c (__ieee754_sinhl): Likewise.
19951 * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
19952 * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c (__kernel_sincosl): Likewise.
19953 * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
19954 * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Likewise.
19955 * sysdeps/ieee754/ldbl-128ibm/s_atanl.c (__atanl): Likewise.
19956 Simplify sign and nan test too.
19957 * sysdeps/ieee754/ldbl-128ibm/s_cosl.c (__cosl): Likewise.
19958 * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Likewise.
19959 * sysdeps/ieee754/ldbl-128ibm/s_finitel.c (___finitel): Likewise.
19960 * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c (___fpclassifyl):
19961 Likewise.
19962 * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (___isnanl): Likewise.
19963 * sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c (__issignalingl):
19964 Likewise.
19965 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
19966 * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c (___signbitl): Likewise.
19967 * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c (__sincosl): Likewise.
19968 * sysdeps/ieee754/ldbl-128ibm/s_sinl.c (__sinl): Likewise.
19969 * sysdeps/ieee754/ldbl-128ibm/s_tanl.c (__tanl): Likewise.
19970 * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c (__logbl): Likewise.
19971
199722013-10-04 Alan Modra <amodra@gmail.com>
19973
19974 * stdio-common/printf_size.c (__printf_size): Don't use
19975 union ieee854_long_double in fpnum union.
19976 * stdio-common/printf_fphex.c (__printf_fphex): Likewise. Use
19977 signbit macro to retrieve sign from long double.
19978 * stdio-common/printf_fp.c (___printf_fp): Use signbit macro to
19979 retrieve sign from long double.
19980 * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Adjust for fpnum change.
19981 * sysdeps/ieee754/ldbl-128/printf_fphex.c: Likewise.
19982 * sysdeps/ieee754/ldbl-96/printf_fphex.c: Likewise.
19983 * sysdeps/x86_64/fpu/printf_fphex.c: Likewise.
19984 * math/test-misc.c (main): Don't use union ieee854_long_double.
19985
199862013-10-04 Alan Modra <amodra@gmail.com>
19987
19988 [BZ #15680]
19989 * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c: Comment fix.
19990 * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c
19991 (PRINT_FPHEX_LONG_DOUBLE): Tidy code by moving -53 into ediff
19992 calculation. Remove unnecessary test for denormal exponent.
19993 * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c (__mpn_extract_long_double):
19994 Correct handling of denormals. Avoid undefined shift behaviour.
19995 Correct normalisation of low mantissa when low double is denormal.
19996 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h
19997 (ldbl_extract_mantissa): Likewise. Comment. Use uint64_t* for hi64.
19998 (ldbl_insert_mantissa): Make both hi64 and lo64 parms uint64_t.
19999 Correct normalisation of low mantissa. Test for overflow of high
20000 mantissa and normalise.
20001 (ldbl_nearbyint): Use more readable constant for two52.
20002 * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c
20003 (__mpn_construct_long_double): Fix test for overflow of high
20004 mantissa and correct normalisation. Avoid undefined shift.
20005
200062013-10-04 Alan Modra <amodra@gmail.com>
20007
20008 * sysdeps/ieee754/ldbl-128ibm/ieee754.h
20009 (union ibm_extended_long_double): Define as an array of ieee754_double.
20010 (IBM_EXTENDED_LONG_DOUBLE_BIAS): Delete.
20011 * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Update all references
20012 to ibm_extended_long_double and IBM_EXTENDED_LONG_DOUBLE_BIAS.
20013 * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise.
20014 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
20015 * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c: Likewise.
20016 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
20017 * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: Likewise.
20018 * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Likewise.
20019 * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: Likewise.
20020 * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
20021
200222013-10-03 Joseph Myers <joseph@codesourcery.com>
20023
20024 * locale/programs/locarchive.c (add_locale): Use constant 4096 for
20025 page size instead of calling getpagesize.
20026
20027 * locale/localeinfo.h (LOCFILE_ALIGN): New macro.
20028 (LOCFILE_ALIGN_MASK): Likewise.
20029 (LOCFILE_ALIGN_UP): Likewise.
20030 (LOCFILE_ALIGNED_P): Likewise.
20031 * locale/programs/ld-collate.c (collate_output): Use the new
20032 macros instead of __alignof__ (int32_t).
20033 * locale/weight.h (findidx): Likewise.
20034
200352013-10-03 Ondřej Bílka <neleai@seznam.cz>
20036
20037 [BZ #431]
20038 * manual/string.texi: Fix strncat and wcsncat.
20039
200402013-10-03 Brooks Moses <bmoses@google.com>
20041
20042 [BZ #15915]
20043 * Makefile (linkobj/libc_pic.a, linkobj/libc.so): Move rules to...
20044 * Makerules: ...here, and adjust associated comments.
20045
200462013-10-02 Will Newton <will.newton@linaro.org>
20047
20048 * malloc/Makefile: Add tst-pvalloc.
20049 * malloc/tst-pvalloc.c: New file.
20050
200512013-10-02 Will Newton <will.newton@linaro.org>
20052
20053 * malloc/tst-valloc.c: Rewrite to use test-skeleton.c and
20054 improve test coverage.
20055
200562013-10-02 Will Newton <will.newton@linaro.org>
20057
20058 * malloc/Makefile: Add tst-posix_memalign.
20059 * malloc/tst-posix_memalign.c: New file.
20060
200612013-10-01 Eric Blake <eblake@redhat.com>
20062
20063 * posix/glob.c (next_brace_sub, prefix_array, collated_compare):
20064 Use __THROWNL rather than __THROW on static functions.
20065
200662013-09-30 Petr Machata <pmachata@redhat.com>
20067
20068 * elf/elf.h (R_AARCH64_ABS16): New macro.
20069 (R_AARCH64_PREL64, R_AARCH64_PREL32): Likewise.
20070 (R_AARCH64_PREL16, R_AARCH64_MOVW_UABS_G0): Likewise.
20071 (R_AARCH64_MOVW_UABS_G0_NC, R_AARCH64_MOVW_UABS_G1): Likewise.
20072 (R_AARCH64_MOVW_UABS_G1_NC, R_AARCH64_MOVW_UABS_G2): Likewise.
20073 (R_AARCH64_MOVW_UABS_G2_NC, R_AARCH64_MOVW_UABS_G3): Likewise.
20074 (R_AARCH64_MOVW_SABS_G0, R_AARCH64_MOVW_SABS_G1): Likewise.
20075 (R_AARCH64_MOVW_SABS_G2, R_AARCH64_LD_PREL_LO19): Likewise.
20076 (R_AARCH64_ADR_PREL_LO21, R_AARCH64_ADR_PREL_PG_HI21): Likewise.
20077 (R_AARCH64_ADR_PREL_PG_HI21_NC, R_AARCH64_ADD_ABS_LO12_NC): Likewise.
20078 (R_AARCH64_LDST8_ABS_LO12_NC, R_AARCH64_LDST16_ABS_LO12_NC): Likewise.
20079 (R_AARCH64_LDST32_ABS_LO12_NC, R_AARCH64_LDST64_ABS_LO12_NC): Likewise.
20080 (R_AARCH64_LDST128_ABS_LO12_NC, R_AARCH64_TSTBR14): Likewise.
20081 (R_AARCH64_CONDBR19, R_AARCH64_JUMP26, R_AARCH64_CALL26): Likewise.
20082 (R_AARCH64_MOVW_PREL_G0, R_AARCH64_MOVW_PREL_G0_NC): Likewise.
20083 (R_AARCH64_MOVW_PREL_G1, R_AARCH64_MOVW_PREL_G1_NC): Likewise.
20084 (R_AARCH64_MOVW_PREL_G2, R_AARCH64_MOVW_PREL_G2_NC): Likewise.
20085 (R_AARCH64_MOVW_PREL_G3, R_AARCH64_MOVW_GOTOFF_G0): Likewise.
20086 (R_AARCH64_MOVW_GOTOFF_G0_NC, R_AARCH64_MOVW_GOTOFF_G1): Likewise.
20087 (R_AARCH64_MOVW_GOTOFF_G1_NC, R_AARCH64_MOVW_GOTOFF_G2): Likewise.
20088 (R_AARCH64_MOVW_GOTOFF_G2_NC, R_AARCH64_MOVW_GOTOFF_G3): Likewise.
20089 (R_AARCH64_GOTREL64, R_AARCH64_GOTREL32): Likewise.
20090 (R_AARCH64_GOT_LD_PREL19, R_AARCH64_LD64_GOTOFF_LO15): Likewise.
20091 (R_AARCH64_ADR_GOT_PAGE, R_AARCH64_LD64_GOT_LO12_NC): Likewise.
20092 (R_AARCH64_LD64_GOTPAGE_LO15, R_AARCH64_TLSGD_ADR_PREL21): Likewise.
20093 (R_AARCH64_TLSGD_ADR_PAGE21, R_AARCH64_TLSGD_ADD_LO12_NC): Likewise.
20094 (R_AARCH64_TLSGD_MOVW_G1, R_AARCH64_TLSGD_MOVW_G0_NC): Likewise.
20095 (R_AARCH64_TLSLD_ADR_PREL21, R_AARCH64_TLSLD_ADR_PAGE21): Likewise.
20096 (R_AARCH64_TLSLD_ADD_LO12_NC, R_AARCH64_TLSLD_MOVW_G1): Likewise.
20097 (R_AARCH64_TLSLD_MOVW_G0_NC, R_AARCH64_TLSLD_LD_PREL19): Likewise.
20098 (R_AARCH64_TLSLD_MOVW_DTPREL_G2): Likewise.
20099 (R_AARCH64_TLSLD_MOVW_DTPREL_G1): Likewise.
20100 (R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC): Likewise.
20101 (R_AARCH64_TLSLD_MOVW_DTPREL_G0): Likewise.
20102 (R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC): Likewise.
20103 (R_AARCH64_TLSLD_ADD_DTPREL_HI12): Likewise.
20104 (R_AARCH64_TLSLD_ADD_DTPREL_LO12): Likewise.
20105 (R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC): Likewise.
20106 (R_AARCH64_TLSLD_LDST8_DTPREL_LO12): Likewise.
20107 (R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC): Likewise.
20108 (R_AARCH64_TLSLD_LDST16_DTPREL_LO12): Likewise.
20109 (R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC): Likewise.
20110 (R_AARCH64_TLSLD_LDST32_DTPREL_LO12): Likewise.
20111 (R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC): Likewise.
20112 (R_AARCH64_TLSLD_LDST64_DTPREL_LO12): Likewise.
20113 (R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC): Likewise.
20114 (R_AARCH64_TLSLD_LDST128_DTPREL_LO12): Likewise.
20115 (R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC): Likewise.
20116 (R_AARCH64_TLSIE_MOVW_GOTTPREL_G1): Likewise.
20117 (R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC): Likewise.
20118 (R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21): Likewise.
20119 (R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC): Likewise.
20120 (R_AARCH64_TLSIE_LD_GOTTPREL_PREL19): Likewise.
20121 (R_AARCH64_TLSLE_MOVW_TPREL_G2): Likewise.
20122 (R_AARCH64_TLSLE_MOVW_TPREL_G1): Likewise.
20123 (R_AARCH64_TLSLE_MOVW_TPREL_G1_NC): Likewise.
20124 (R_AARCH64_TLSLE_MOVW_TPREL_G0): Likewise.
20125 (R_AARCH64_TLSLE_MOVW_TPREL_G0_NC): Likewise.
20126 (R_AARCH64_TLSLE_ADD_TPREL_HI12): Likewise.
20127 (R_AARCH64_TLSLE_ADD_TPREL_LO12): Likewise.
20128 (R_AARCH64_TLSLE_ADD_TPREL_LO12_NC): Likewise.
20129 (R_AARCH64_TLSLE_LDST8_TPREL_LO12): Likewise.
20130 (R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC): Likewise.
20131 (R_AARCH64_TLSLE_LDST16_TPREL_LO12): Likewise.
20132 (R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC): Likewise.
20133 (R_AARCH64_TLSLE_LDST32_TPREL_LO12): Likewise.
20134 (R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC): Likewise.
20135 (R_AARCH64_TLSLE_LDST64_TPREL_LO12): Likewise.
20136 (R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC): Likewise.
20137 (R_AARCH64_TLSLE_LDST128_TPREL_LO12): Likewise.
20138 (R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC): Likewise.
20139 (R_AARCH64_TLSDESC_LD_PREL19): Likewise.
20140 (R_AARCH64_TLSDESC_ADR_PREL21): Likewise.
20141 (R_AARCH64_TLSDESC_ADR_PAGE21): Likewise.
20142 (R_AARCH64_TLSDESC_LD64_LO12): Likewise.
20143 (R_AARCH64_TLSDESC_ADD_LO12): Likewise.
20144 (R_AARCH64_TLSDESC_OFF_G1): Likewise.
20145 (R_AARCH64_TLSDESC_OFF_G0_NC): Likewise.
20146 (R_AARCH64_TLSDESC_LDR): Likewise.
20147 (R_AARCH64_TLSDESC_ADD): Likewise.
20148 (R_AARCH64_TLSDESC_CALL): Likewise.
20149
201502013-09-30 Andreas Schwab <schwab@suse.de>
20151
20152 [BZ #15048]
20153 * nscd/aicache.c (addhstaiX): Properly use the cache variable for
20154 the nss database lookup.
20155 * nscd/initgrcache.c (addinitgroupsX): Likewise.
20156 * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
20157
201582013-09-28 Mike Frysinger <vapier@gentoo.org>
20159
20160 * sysdeps/unix/sysv/linux/tst-fanotify.c (do_test): Fix style.
20161
201622013-09-28 P. J. McDermott <pj@pehjota.net>
20163
20164 * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Don't use
20165 ${Bash-specific parameter/pattern/string} parameter expansion.
20166 * sysdeps/unix/make-syscalls.sh: Likewise.
20167
201682013-09-27 Kaz Kojima <kkojima@rr.iij4u.or.jp>
20169
20170 * sysdeps/sh/stackguard-macros.h: New file.
20171
201722013-09-26 Ondřej Bílka <neleai@seznam.cz>
20173
20174 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Update.
20175 * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Remove strrchr ifunc.
20176 * sysdeps/x86_64/multiarch/strend-sse4.S Remove.
20177 * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S Likewise.
20178 * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
20179 * sysdeps/x86_64/strrchr.S (strrchr): Use optimized implementation.
20180
201812013-09-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
20182
20183 * sysdeps/powerpc/powerpc64/stackguard-macros.h (POINTER_CHK_GUARD:
20184 Fix thread ID register.
20185
201862013-09-25 Joseph Myers <joseph@codesourcery.com>
20187
20188 * conform/data/sched.h-data [XPG3 || XPG4]: Disable whole file.
20189 [POSIX || UNIX98]: Require rather than permitting all symbols from
20190 <time.h>.
20191 [POSIX || UNIX98] (sched_ss_low_priority): Do not specify optional
20192 element of struct sched_param.
20193 [POSIX || UNIX98] (sched_ss_repl_period): Likewise.
20194 [POSIX || UNIX98] (sched_ss_init_budget): Likewise.
20195 [POSIX || UNIX98] (sched_ss_max_repl): Likewise.
20196 [POSIX || UNIX98] (SCHED_SPORADIC): Do not specify optional
20197 constant.
20198
201992013-09-24 Olivier Langlois <olivier@olivierlanglois.net>
20200
20201 * stdio-common/tst-long-dbl-fphex.c (do_test): Fix swprintf length
20202 argument calculation.
20203
202042013-09-24 Joseph Myers <joseph@codesourcery.com>
20205
20206 * conform/data/pthread.h-data [POSIX] (PTHREAD_MUTEX_INITIALIZER):
20207 Expect macro.
20208 [POSIX] (pthread_attr_t): Do not require type.
20209 [POSIX] (pthread_cond_t): Likewise.
20210 [POSIX] (pthread_condattr_t): Likewise.
20211 [POSIX] (pthread_key_t): Likewise.
20212 [POSIX] (pthread_mutex_t): Likewise.
20213 [POSIX] (pthread_mutexattr_t): Likewise.
20214 [POSIX] (pthread_once_t): Likewise.
20215 [POSIX] (pthread_t): Likewise.
20216 [POSIX-based standards] (pthread_atfork): Expect function.
20217
202182013-09-24 Joseph Myers <joseph@codesourcery.com>
20219 Richard Sandiford <richard@codesourcery.com>
20220
20221 * locale/programs/locfile.h: Include <byteswap.h> and <stdbool.h>.
20222 (swap_endianness_p): New extern variable.
20223 (set_big_endian): New inline function.
20224 (maybe_swap_uint32): Likewise.
20225 (maybe_swap_uint32_array): Likewise.
20226 (maybe_swap_uint32_obstack): Likewise.
20227 * locale/programs/locfile.c: Include <stdbool.h>.
20228 (swap_endianness_p): New variable.
20229 (add_locale_uint32): Call maybe_swap_uint32.
20230 (add_locale_uint32_array): Call maybe_swap_uint32_obstack.
20231 (write_locale_data): Call maybe_swap_uint32_array.
20232 * locale/programs/ld-collate.c (obstack_int32_grow): Call
20233 maybe_swap_uint32.
20234 (obstack_int32_grow_fast): Likewise.
20235 (output_weightwc): Call maybe_swap_uint32_obstack.
20236 (collate_output): Likewise.
20237 * locale/programs/localedef.c (OPT_LITTLE_ENDIAN): New macro.
20238 (OPT_LITTLE_ENDIAN): Likewise.
20239 (options): Add --little-endian and --big-endian options.
20240 (parse_opt): Handle OPT_LITTLE_ENDIAN and OPT_BIG_ENDIAN.
20241 * locale/programs/locarchive.c: Include "locfile.h".
20242 (GET): New macro.
20243 (SET): Likewise.
20244 (INC): Likewise.
20245 (create_archive): Use the new macros to access fields of
20246 structures directly mapped from or written to locale archives.
20247 (oldlocrecentcmp): Likewise.
20248 (enlarge_archive): Likewise.
20249 (insert_name): Likewise.
20250 (add_alias): Likewise.
20251 (add_locale): Likewise.
20252 (delete_locales_from_archive): Likewise.
20253 (show_archive_content): Likewise.
20254 (add_locale_to_archive): Likewise. Use maybe_swap_uint32 on
20255 locale data.
20256
202572013-09-24 Roland McGrath <roland@hack.frob.com>
20258
20259 * manual/freemanuals.texi: Updated from (newly) canonical copy at
20260 http://www.gnu.org/doc/freemanuals.texi.
20261 * manual/libc.texinfo (Free Manuals): Put the @appendix line here.
20262
202632013-09-24 Will Newton <will.newton@linaro.org>
20264
20265 * sysdeps/mach/hurd/i386/tls.h (TLS_INIT_TP_EXPENSIVE): Remove
20266 macro.
20267
202682013-09-23 Joseph Myers <joseph@codesourcery.com>
20269
20270 * locale/hashval.h (compute_hashval): Interpret bytes of key as
20271 unsigned char.
20272
202732013-09-23 Maciej W. Rozycki <macro@codesourcery.com>
20274
20275 * manual/threads.texi (POSIX Threads): Fix a typo.
20276
202772013-09-23 Siddhesh Poyarekar <siddhesh@redhat.com>
20278
20279 [BZ #14547]
20280 * string/tst-strcoll-overflow.c: New test case.
20281 * string/Makefile (xtests): Add tst-strcoll-overflow.
20282 * string/strcoll_l.c (STRCOLL): Skip allocating memory for
20283 cache if string sizes may cause integer overflow.
20284
20285 [BZ #14547]
20286 * string/strcoll_l.c (coll_seq): New members rule, idx,
20287 save_idx and back_us.
20288 (get_next_seq_nocache): New function.
20289 (do_compare_nocache): New function.
20290 (STRCOLL): Use get_next_seq_nocache and do_compare_nocache
20291 when malloc fails.
20292
202932013-09-23 Carlos O'Donell <carlos@redhat.com>
20294
20295 [BZ #15754]
20296 * sysdeps/generic/stackguard-macros.h: If PTRGUARD_LOCAL use
20297 __pointer_chk_guard_local, otherwise __pointer_chk_guard.
20298 * elf/Makefile: Define CFLAGS-tst-ptrguard1-static.c.
20299
20300 [BZ #15754]
20301 * elf/Makefile (tests): Add tst-ptrguard1.
20302 (tests-static): Add tst-ptrguard1-static.
20303 (tst-ptrguard1-ARGS): Define.
20304 (tst-ptrguard1-static-ARGS): Define.
20305 * elf/tst-ptrguard1.c: New file.
20306 * elf/tst-ptrguard1-static.c: New file.
20307 * sysdeps/x86_64/stackguard-macros.h: Define POINTER_CHK_GUARD.
20308 * sysdeps/i386/stackguard-macros.h: Likewise.
20309 * sysdeps/powerpc/powerpc32/stackguard-macros.h: Likewise.
20310 * sysdeps/powerpc/powerpc64/stackguard-macros.h: Likewise.
20311 * sysdeps/s390/s390-32/stackguard-macros.h: Likewise.
20312 * sysdeps/s390/s390-64/stackguard-macros.h: Likewise.
20313 * sysdeps/sparc/sparc32/stackguard-macros.h: Likewise.
20314 * sysdeps/sparc/sparc64/stackguard-macros.h: Likewise.
20315
203162013-09-23 Hector Marco <hecmargi@upv.es>
20317 Ismael Ripoll <iripoll@disca.upv.es>
20318 Carlos O'Donell <carlos@redhat.com>
20319
20320 [BZ #15754]
20321 * sysdeps/generic/stackguard-macros.h: Define
20322 __pointer_chk_guard_local and POINTER_CHK_GUARD.
20323 * csu/libc-start.c [!SHARED && !THREAD_SET_POINTER_GUARD]:
20324 Define __pointer_chk_guard_local.
20325 (LIBC_START_MAIN) [!SHARED]: Call _dl_setup_pointer_guard.
20326 Use THREAD_SET_POINTER_GUARD or set __pointer_chk_guard_local.
20327
203282013-09-15 Vinitha Vijayan <vinitha.vijayann@gmail.com>
20329
20330 [BZ #15859]
20331 * elf/dl-deps.c (_dl_map_object_deps): Remove duplicate declaration.
20332
203332013-09-20 Andreas Schwab <schwab@linux-m68k.org>
20334
20335 * include/string.h (__ffs): Declare as hidden.
20336 * string/ffs.c (__ffs): Define as hidden.
20337 * sysdeps/i386/ffs.c (__ffs): Likewise.
20338 * sysdeps/i386/i686/ffs.c (__ffs): Likewise.
20339 * sysdeps/powerpc/ffs.c (__ffs): Likewise.
20340 * sysdeps/s390/ffs.c (__ffs): Likewise.
20341 * sysdeps/x86_64/ffs.c (__ffs): Likewise.
20342
203432013-09-20 Alexandre Oliva <aoliva@redhat.com>
20344
20345 * NEWS: Mention malloc probes.
20346
20347 * malloc/arena.c (new_heap): New memory_heap_new probe.
20348 (grow_heap): New memory_heap_more probe.
20349 (shrink_heap): New memory_heap_less probe.
20350 (heap_trim): New memory_heap_free probe.
20351 * malloc/malloc.c (sysmalloc): New memory_sbrk_more probe.
20352 (systrim): New memory_sbrk_less probe.
20353 * manual/probes.texi: Document them.
20354
20355 * malloc/arena.c (arena_get_retry): Add memory_arena_retry probe.
20356 * manual/probes.texi: Document it.
20357
20358 * malloc/malloc.c (__libc_malloc): Add memory_malloc_retry probe.
20359 (__libc_realloc): Add memory_realloc_retry probe.
20360 (__libc_memalign): Add memory_memalign_retry probe.
20361 (__libc_valloc): Add memory_valloc_retry probe.
20362 (__libc_pvalloc): Add memory_pvalloc_retry probe.
20363 (__libc_calloc): Add memory_calloc_retry probe.
20364 * manual/probes.texi: Document them.
20365
20366 * malloc/arena.c (get_free_list): Add probe
20367 memory_arena_reuse_free_list.
20368 (reused_arena) [PER_THREAD]: Add probes memory_arena_reuse_wait
20369 and memory_arena_reuse.
20370 (arena_get2) [!PER_THREAD]: Likewise.
20371 * malloc/malloc.c (__libc_realloc) [!PER_THREAD]: Add probe
20372 memory_arena_reuse_realloc.
20373 * manual/probes.texi: Document them.
20374
20375 * malloc/malloc.c (__libc_free): Add
20376 memory_mallopt_free_dyn_thresholds probe.
20377 (__libc_mallopt): Add multiple memory_mallopt probes.
20378 * manual/probes.texi: Document them.
20379
20380 * malloc/malloc.c: Include stap-probe.h.
20381 (__libc_mallopt): Add memory_mallopt probe.
20382 * malloc/arena.c (_int_new_arena): Add memory_arena_new probe.
20383 * manual/probes.texi: New.
20384 * manual/Makefile (chapters): Add probes.
20385 * manual/threads.texi: Set next node.
20386
203872013-09-19 Wei-Lun Chao <bluebat@member.fsf.org>
20388
20389 [BZ #15963, #13985]
20390 * locale/iso-639.def: Add Chiga (cgg) and Chinese (gan, hak,
20391 czh, cjy, lzh, cmn, mnp, cdo, czo, cpx, wuu, hsn, yue).
20392 Add `Chinese' to `nan' entry name.
20393
203942013-09-19 Siddhesh Poyarekar <siddhesh@redhat.com>
20395
20396 * sysdeps/ieee754/dbl-64/s_sin.c (POLYNOMIAL2): New macro.
20397 (POLYNOMIAL): Likewise.
20398 (TAYLOR_SINCOS): Likewise.
20399 (TAYLOR_SLOW): Likewise.
20400 (__sin): Use TAYLOR_SINCOS.
20401 (__cos): Likewise.
20402 (slow): Use TAYLOR_SLOW.
20403 (sloww): Likewise.
20404 (bsloww): Likewise.
20405 (csloww): Likewise.
20406
204072013-09-19 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
20408
20409 * stdlib/strtod_l.c: Fix buffer overrun.
20410
204112013-09-19 Siddhesh Poyarekar <siddhesh@redhat.com>
20412
20413 * benchtests/Makefile (bench): Add sincos.
20414 * benchtests/bench-sincos.c: New file.
20415
20416 * math/libm-test.inc (cos_test_data): New test inputs.
20417 (sin_test_data): Likewise.
20418
20419 * sysdeps/ieee754/dbl-64/s_sin.c (SINCOS_TABLE_LOOKUP): New
20420 macro.
20421 (__sin): Use it.
20422 (__cos): Likewise.
20423 (slow1): Likewise.
20424 (slow2): Likewise.
20425 (sloww1): Likewise.
20426 (sloww2): Likewise.
20427 (bsloww1): Likewise.
20428 (bsloww2): Likewise.
20429 (cslow2): Likewise.
20430 (csloww1): Likewise.
20431 (csloww2): Likewise.
20432
20433 * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): New
20434 function.
20435 (__sin): Use it.
20436 (__cos): Likewise.
20437
20438 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Remove redundant
20439 gotos.
20440 (__cos): Likewise.
20441
204422013-09-18 Maciej W. Rozycki <macro@codesourcery.com>
20443
20444 * config.h.in (HAVE_MIPS_NAN2008): New macro.
20445 * elf/elf.h (EF_MIPS_NAN2008): Likewise.
20446 * sysdeps/generic/ldconfig.h (FLAG_MIPS_LIB32_NAN2008): Likewise.
20447 (FLAG_MIPS64_LIBN32_NAN2008): Likewise.
20448 (FLAG_MIPS64_LIBN64_NAN2008): Likewise.
20449 * elf/cache.c (print_entry): Handle the new cache flags.
20450
204512013-09-18 Joseph Myers <joseph@codesourcery.com>
20452 Aldy Hernandez <aldyh@redhat.com>
20453
20454 * sysdeps/powerpc/fpu_control.h [_SOFT_FLOAT || __NO_FPRS__]:
20455 Change condition to [_SOFT_FLOAT].
20456 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_NEAREST): New macro.
20457 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_DOWN): Likewise.
20458 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_UP): Likewise.
20459 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_ZERO): Likewise.
20460 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_ZM): Likewise.
20461 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_OM): Likewise.
20462 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_UM): Likewise.
20463 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_XM): Likewise.
20464 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_IM): Likewise.
20465 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RESERVED): Likewise.
20466 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_DEFAULT): Likewise.
20467 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_IEEE): Likewise.
20468 [__NO_FPRS__ && !_SOFT_FLOAT] (fpu_control_t): New typedef.
20469 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_GETCW): New macro.
20470 [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_SETCW): Likewise.
20471 [__NO_FPRS__ && !_SOFT_FLOAT] (__fpu_control): New variable
20472 declaration.
20473
204742013-09-18 Joseph Myers <joseph@codesourcery.com>
20475
20476 * sysdeps/powerpc/powerpc32/__longjmp-common.S (LOAD_GP): Define
20477 macro conditional on [__SPE__ || (__NO_FPRS__ && !_SOFT_FLOAT)].
20478 (__longjmp): Use LOAD_GP to load saved GPRs.
20479 * sysdeps/powerpc/powerpc32/setjmp-common.S (SAVE_GP): Define
20480 macro conditional on [__SPE__ || (__NO_FPRS__ && !_SOFT_FLOAT)].
20481 (__sigsetjmp): Use SAVE_GP to save GPRs.
20482
20483 * sysdeps/powerpc/powerpc32/Makefile [$(with-fp) = no] (+cflags):
20484 Do not append -msoft-float.
20485 [$(with-fp) = no] (sysdep-LDFLAGS): Likewise.
20486
204872013-09-18 Siddhesh Poyarekar <siddhesh@redhat.com>
20488
20489 * sysdeps/ieee754/dbl-64/sincos32.c: Fix code formatting.
20490
204912013-09-17 Joseph Myers <joseph@codesourcery.com>
20492
20493 [BZ #15966]
20494 * sysdeps/powerpc/fpu_control.h [!_SOFT_FLOAT && !__NO_FPRS__]
20495 (_FPU_GETCW): Use initial "__" on variable and field names but not
20496 on macro parameter name.
20497 [!_SOFT_FLOAT && !__NO_FPRS__] (_FPU_SETCW): Likewise. Use
20498 parentheses around reference to macro parameter.
20499
205002013-09-13 Richard Sandiford <richard@codesourcery.com>
20501
20502 * locale/programs/ld-ctype.c (find_idx): Use uint32_t in
20503 prototype.
20504 (ctype_startup): Use uint32_t in cast and sizeof for
20505 ctype->charnames.
20506
205072013-09-11 Jia Liu <proljc@gmail.com>
20508
20509 * sunrpc/rpc/types.h [__APPLE_CC__]: Define __u_char_defined and
20510 __daddr_t_defined.
20511 [__FreeBSD__]: Likewise.
20512
205132013-09-11 Ondřej Bílka <neleai@seznam.cz>
20514
20515 * sysdeps/x86_64/multiarch/ifunc-impl-list.c
20516 (__libc_ifunc_impl_list): Remove: __strchr_sse42.
20517 * sysdeps/x86_64/multiarch/strchr.S (__strchr_sse42): Remove.
20518 (strchr): Remove __strchr_sse42 ifunc selection.
20519 * sysdeps/x86_64/strchr.S (strchr): Use optimized implementation.
20520 * sysdeps/x86_64/strchrnul.S: Include sysdeps/x86_64/strchr.S.
20521
205222013-09-11 Will Newton <will.newton@linaro.org>
20523
20524 * benchtests/bench-timing.h (TIMING_INIT): Rename ITERS
20525 parameter to RES. Remove hardcoded 1000 value.
20526 * benchtests/bench-skeleton.c (main): Pass RES parameter
20527 to TIMING_INIT and multiply result by 1000.
20528
205292013-09-10 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
20530
20531 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
20532
205332013-09-11 Andreas Schwab <schwab@suse.de>
20534
20535 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (__O_TMPFILE): Define
20536 if not defined.
20537 (O_TMPFILE) [__USE_GNU]: Define.
20538 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (__O_TMPFILE):
20539 Define.
20540
205412013-09-11 Will Newton <will.newton@linaro.org>
20542
20543 [BZ #15857]
20544 * malloc/malloc.c (__libc_memalign): Check the value of bytes
20545 does not overflow.
20546
205472013-09-11 Will Newton <will.newton@linaro.org>
20548
20549 [BZ #15856]
20550 * malloc/malloc.c (__libc_valloc): Check the value of bytes
20551 does not overflow.
20552
205532013-09-11 Will Newton <will.newton@linaro.org>
20554
20555 [BZ #15855]
20556 * malloc/malloc.c (__libc_pvalloc): Check the value of bytes
20557 does not overflow.
20558
205592013-09-10 Ondřej Bílka <neleai@seznam.cz>
20560
20561 * sysdeps/ieee754/dbl-64/e_j0.c: Remove DO_NOT_USE_THIS conditionals.
20562 * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
20563 * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
20564 * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
20565 * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
20566
205672013-09-10 Allan McRae <allan@archlinux.org>
20568
20569 [BZ #15748]
20570 * manual/arith.texi (Parsing of Floats): Clarify
20571 cross-reference.
20572
20573 [BZ #15849]
20574 * manual/install.texi (Running make install): Mention
20575 --enable-pt-chown.
20576 * INSTALL: Regenerated.
20577
205782013-09-09 Maciej W. Rozycki <macro@codesourcery.com>
20579
20580 * csu/init-first.c (_init): Remove the !SHARED condition around
20581 FPU control word initialization.
20582 * elf/dl-support.c (_dl_fpu_control): New variable.
20583 (_dl_aux_init) <AT_FPUCW>: Initialize it.
20584 * math/test-fpucw.c [!FPU_CONTROL] (FPU_CONTROL): New macro.
20585 (main): Replace _FPU_DEFAULT with FPU_CONTROL throughout.
20586 * math/test-fpucw-static.c: New file.
20587 * math/test-fpucw-ieee.c: New file.
20588 * math/test-fpucw-ieee-static.c: New file.
20589 * math/Makefile (tests): Add `test-fpucw-ieee' and
20590 `$(tests-static)'.
20591 (tests-static): New variable.
20592 [($(build-shared),yes)] ($(addprefix $(objpfx),$(tests))): Move
20593 dependency to...
20594 [($(build-shared),yes)]
20595 ($(addprefix $(objpfx),$(filter-out $(tests-static),$(tests)))):
20596 ... this.
20597 [($(build-shared),yes)] ($(addprefix $(objpfx),$(tests-static))):
20598 New dependency.
20599
206002013-09-09 Allan McRae <allan@archlinux.org>
20601
20602 [BZ #15939]
20603 * manual/string.texi (Collation Functions): Fix typo in
20604 strcoll example.
20605 Reported by Suren Karapetyan <me@suren.karapetyan.name>.
20606
20607 [BZ #15893]
20608 * stdlib/isomac.c (get_null_defines): Fix memory leak.
20609
20610 [BZ #15892]
20611 * libio/memstream.c (open_memstream): Fix memory leak.
20612 * libio/wmemstream.c (open_wmemstream): Likewise.
20613
20614 [BZ #15895]
20615 * nscd/netgroupcache.c: Fix nesting of ifdefs.
20616
206172013-09-09 Will Newton <will.newton@linaro.org>
20618
20619 * malloc/Makefile: Add tst-realloc to tests.
20620 * malloc/tst-realloc.c: New file.
20621
206222013-09-09 Allan McRae <allan@archlinux.org>
20623
20624 [BZ #15844]
20625 * COPYING: Update from GNU website to fix FSF address.
20626 * COPYING.LIB: Likewise.
20627
206282013-09-06 David S. Miller <davem@davemloft.net>
20629
20630 * po/zh_TW.po: Update Chinese (traditional) translation from
20631 translation project.
20632
206332013-09-06 Richard Sandiford <richard@codesourcery.com>
20634 Joseph Myers <joseph@codesourcery.com>
20635
20636 * locale/programs/locfile.c: Include <assert.h>, <wchar.h> and
20637 "localeinfo.h".
20638 (obstack_chunk_alloc): New macro.
20639 (obstack_chunk_free): Likewise.
20640 (record_offset): New function.
20641 (init_locale_data): Likewise.
20642 (align_locale_data): Likewise.
20643 (add_locale_empty): Likewise.
20644 (add_locale_raw_data): Likewise.
20645 (add_locale_raw_obstack): Likewise.
20646 (add_locale_string): Likewise.
20647 (add_locale_wstring): Likewise.
20648 (add_locale_uint32): Likewise.
20649 (add_locale_uint32_array): Likewise.
20650 (add_locale_char): Likewise.
20651 (start_locale_structure): Likewise.
20652 (end_locale_structure): Likewise.
20653 (start_locale_prelude): Likewise.
20654 (end_locale_prelude): Likewise.
20655 (write_locale_data): Take locale_file structure rather than an
20656 iovec.
20657 * locale/programs/locfile.h: Include "obstack.h".
20658 (struct locale_file): Change to store locale file contents instead
20659 of header.
20660 (init_locale_data): New prototype.
20661 (align_locale_data): Likewise.
20662 (add_locale_empty): Likewise.
20663 (add_locale_raw_data): Likewise.
20664 (add_locale_raw_obstack): Likewise.
20665 (add_locale_string): Likewise.
20666 (add_locale_wstring): Likewise.
20667 (add_locale_uint32): Likewise.
20668 (add_locale_uint32_array): Likewise.
20669 (add_locale_char): Likewise.
20670 (start_locale_structure): Likewise.
20671 (end_locale_structure): Likewise.
20672 (start_locale_prelude): Likewise.
20673 (end_locale_prelude): Likewise.
20674 (write_locale_data): Update prototype.
20675 * locale/programs/3level.h (struct TABLE): Remove result field.
20676 (CONCAT(TABLE,_finalize)): Change to CONCAT(add_locale_,TABLE).
20677 Use new locale_file interface.
20678 [!NO_FINALIZE]: Change condition to [!NO_ADD_LOCALE].
20679 (NO_FINALIZE): Change #undef to #undef of NO_ADD_LOCALE.
20680 * locale/programs/ld-address.c (address_output): Use new
20681 locale_file interface.
20682 * locale/programs/ld-collate.c (NO_FINALIZE): Change to
20683 NO_ADD_LOCALE.
20684 (collate_finish): Don't call collseq_table_finalize.
20685 (collate_output): Use new locale_file interface.
20686 * locale/programs/ld-ctype.c: Move includes of "3level.h" earlier
20687 in file.
20688 (NO_FINALIZE): Change to NO_ADD_LOCALE.
20689 (TABLE): Move defines earlier in file.
20690 (ELEMENT): Likewise.
20691 (DEFAULT): Likewise.
20692 (wctrans_table_add): Move macro and inline function earlier in
20693 file.
20694 (struct wctype_table): Move type earlier in file.
20695 (add_locale_wctype_table): New static prototype.
20696 (struct locale_ctype_t): Use logical types instead of struct iovec
20697 pointers for members.
20698 (ctype_output): Use new locale_file interface.
20699 (wctype_table_finalize): Change to add_locale_wctype_table. Use
20700 new locale_file interface.
20701 (allocate_arrays): Update for use of new locale_file interface.
20702 * locale/programs/ld-identification.c (identification_output): Use
20703 new locale_file interface.
20704 * locale/programs/ld-measurement.c (measurement_output): Likewise.
20705 * locale/programs/ld-messages.c (messages_output): Likewise.
20706 * locale/programs/ld-monetary.c (monetary_output): Likewise.
20707 * locale/programs/ld-name.c (name_output): Likewise.
20708 * locale/programs/ld-numeric.c (numeric_output): Likewise.
20709 * locale/programs/ld-paper.c (paper_output): Likewise.
20710 * locale/programs/ld-telephone.c (telephone_output): Likewise.
20711 * locale/programs/ld-time.c (time_output): Likewise.
20712
207132013-09-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
20714
20715 * benchtests/Makefile: Add memrchr benchmark.
20716 * benchtests/bench-memchr.c (USE_AS_MEMRCHR): Add define to use
20717 benchmark as memrchr.
20718 * benchtests/bench-memrchr-ifunc.c: New file.
20719 * benchtests/bench-memrchr.c: New file.
20720
207212013-09-06 Will Newton <will.newton@linaro.org>
20722
20723 * benchtests/Makefile (string-bench): Add memcpy.
20724
207252013-09-05 Carlos O'Donell <carlos@redhat.com>
20726 Cong Wang <amwang@redhat.com>
20727
20728 [BZ #15850]
20729 * sysdeps/unix/sysv/linux/bits/in.h
20730 [_UAPI_LINUX_IN6_H]: Define __USE_KERNEL_IPV6_DEFS.
20731 * inet/netinet/in.h: Move in_addr definition and bits/in.h inclusion
20732 before __USE_KERNEL_IPV6_DEFS uses.
20733 * inet/netinet/in.h [!__USE_KERNEL_IPV6_DEFS]: Define IPPROTO_MH, and
20734 IPPROTO_BEETPH.
20735 [__USE_KERNEL_IPV6_DEFS]: Don't define any of IPPROTO_*, in6_addr,
20736 sockaddr_in6, or ipv6_mreq.
20737
207382013-09-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
20739
20740 * sysdeps/powerpc/powerpc32/power7/memrchr.S (__memrchr): Fix invalid
20741 memory access for final bytes in some large inputs.
20742 * sysdeps/powerpc/powerpc64/power7/memrchr.S (__memrchr): Likewise.
20743
207442013-09-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
20745
20746 * string/test-memrchr.c: New file.
20747 * string/test-memrchr-ifunc.c: New file.
20748 * string/Makefile: Add new memrchr testcase.
20749
207502013-09-05 Mike Frysinger <vapier@gentoo.org>
20751
20752 * sysdeps/unix/sysv/linux/tst-fanotify.c (do_test): Skip test when
20753 fanotify_init returns EPERM.
20754
207552013-09-04 Joseph Myers <joseph@codesourcery.com>
20756
20757 * conform/conformtest.pl (newtoken): Treat tokens not allowed as
20758 errors.
20759 (top level): Treat second token from macro or constant entries for
20760 allowed headers as allowed.
20761 * include/complex.h: Condition internal declarations on
20762 [!_ISOMAC].
20763 * include/fenv.h: Condition include of <stdbool.h> and internal
20764 declarations on [!_ISOMAC].
20765
207662013-09-04 Chris Leonard <cjl@sugarlabs,.org>
20767
20768 [BZ #15923]
20769 * locale/iso-4217.def: Update iso-1427.def and related occurrences.
20770
207712013-09-04 Joseph Myers <joseph@codesourcery.com>
20772
20773 * configure.in (--enable-versioning): Remove configure option.
20774 (libc_cv_asm_symver_directive): Remove configure test.
20775 (libc_cv_ld_version_script_option): Likewise.
20776 (VERSIONING): Remove variable and AC_SUBST.
20777 (DO_VERSIONING): Remove AC_DEFINE.
20778 * configure: Regenerated.
20779 * config.h.in (DO_VERSIONING): Remove macro.
20780 * Makerules [$(versioning) = yes]: Change conditionals to
20781 [$(build-shared) = yes].
20782 * config.make.in (versioning): Remove variable.
20783 * dlfcn/Makefile [$(versioning) = yes]: Change conditionals to
20784 [$(build-shared) = yes].
20785 * dlfcn/modstatic2.c (test) [DO_VERSIONING]: Remove conditional.
20786 * dlfcn/tststatic2.c (main) [DO_VERSIONING]: Likewise.
20787 * elf/Makefile [$(versioning) = yes]: Change conditionals to
20788 [$(build-shared) = yes].
20789 * extra-lib.mk [$(versioning) = yes]: Likewise.
20790 * hurd/Makefile [$(versioning) = yes]: Likewise.
20791 * hurd/geteuids.c [SHARED && DO_VERSIONING]: Change conditional to
20792 [SHARED].
20793 * include/libc-symbols.h [DO_VERSIONING]: Change conditional to
20794 [SHARED].
20795 [SHARED && DO_VERSIONING && !NO_HIDDEN]: Change conditional to
20796 [SHARED && !NO_HIDDEN].
20797 * include/shlib-compat.h [DO_VERSIONING]: Change conditional to
20798 [SHARED].
20799 [SHARED && DO_VERSIONING]: Likewise..
20800 * libio/Makefile [$(versioning) = yes]: Change conditionals to
20801 [$(build-shared) = yes].
20802 * manual/install.texi (--disable-versioning): Remove
20803 documentation.
20804 * INSTALL: Regenerated.
20805 * resolv/res_libc.c [SHARED && DO_VERSIONING]: Change conditional
20806 to [SHARED].
20807 * sunrpc/Makefile [$(versioning) = yes]: Change conditional to
20808 [$(build-shared) = yes].
20809 * sysdeps/gnu/Makefile [$(versioning) = yes]: Likewise.
20810 * sysdeps/i386/i686/multiarch/strstr-c.c
20811 [SHARED && DO_VERSIONING && !NO_HIDDEN]: Change conditional to
20812 [SHARED && !NO_HIDDEN].
20813 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h
20814 [SHARED && DO_VERSIONING]: Change conditional to [SHARED].
20815 * sysdeps/powerpc/powerpc32/dl-machine.c
20816 [SHARED && !(DO_VERSIONING - 0)]: Remove conditional error.
20817 * sysdeps/powerpc/powerpc32/sysdep.h
20818 [SHARED && DO_VERSIONING && PIC && !NO_HIDDEN]: Change conditional
20819 to [SHARED && PIC && !NO_HIDDEN].
20820 * sysdeps/wordsize-32/divdi3.c [SHARED && DO_VERSIONING]: Change
20821 conditional to [SHARED].
20822
208232013-09-04 Will Newton <will.newton@linaro.org>
20824
20825 * benchtests/bench-timing.h (TIMING_PRINT_MEAN): New macro.
20826 * benchtests/bench-string.h: Include bench-timing.h instead
20827 of including hp-timing.h directly. (INNER_LOOP_ITERS): New
20828 define. (HP_TIMING_BEST): Delete macro. (test_init): Remove
20829 call to HP_TIMING_DIFF_INIT.
20830 * benchtests/bench-memccpy.c: Use bench-timing.h macros
20831 instead of hp-timing.h macros.
20832 * benchtests/bench-memchr.c: Likewise.
20833 * benchtests/bench-memcmp.c: Likewise.
20834 * benchtests/bench-memcpy.c: Likewise.
20835 * benchtests/bench-memmem.c: Likewise.
20836 * benchtests/bench-memmove.c: Likewise.
20837 * benchtests/bench-memset.c: Likewise.
20838 * benchtests/bench-rawmemchr.c: Likewise.
20839 * benchtests/bench-strcasecmp.c: Likewise.
20840 * benchtests/bench-strcasestr.c: Likewise.
20841 * benchtests/bench-strcat.c: Likewise.
20842 * benchtests/bench-strchr.c: Likewise.
20843 * benchtests/bench-strcmp.c: Likewise.
20844 * benchtests/bench-strcpy.c: Likewise.
20845 * benchtests/bench-strcpy_chk.c: Likewise.
20846 * benchtests/bench-strlen.c: Likewise.
20847 * benchtests/bench-strncasecmp.c: Likewise.
20848 * benchtests/bench-strncat.c: Likewise.
20849 * benchtests/bench-strncmp.c: Likewise.
20850 * benchtests/bench-strncpy.c: Likewise.
20851 * benchtests/bench-strnlen.c: Likewise.
20852 * benchtests/bench-strpbrk.c: Likewise.
20853 * benchtests/bench-strrchr.c: Likewise.
20854 * benchtests/bench-strspn.c: Likewise.
20855 * benchtests/bench-strstr.c: Likewise.
20856
208572013-09-04 Will Newton <will.newton@linaro.org>
20858
20859 * benchtests/Makefile: Use LDLIBS instead of LDFLAGS.
20860
208612013-09-03 Joseph Myers <joseph@codesourcery.com>
20862
20863 [BZ #15427]
20864 * sysdeps/ieee754/flt-32/e_lgammaf_r.c (__ieee754_lgammaf_r): Use
20865 2**-30 instead of 2**-70 as threshold for returning -log(|x|).
20866 * math/libm-test.inc (lgamma_test_data): Add more tests.
20867 * sysdeps/i386/fpu/libm-test-ulps: Update.
20868 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20869
208702013-09-03 Ondřej Bílka <neleai@seznam.cz>
20871
20872 * sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S: New file.
20873 * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
20874 Add ifunc.
20875 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
20876 Add strcmp-sse2-unaligned
20877 * sysdeps/x86_64/multiarch/strcmp.S (strcmp): Add ifunc.
20878
208792013-09-02 Mike Frysinger <vapier@gentoo.org>
20880
20881 * Versions.def (libc): Add GLIBC_2.19.
20882
208832013-09-02 Mike Frysinger <vapier@gentoo.org>
20884
20885 * sysdeps/unix/sysv/linux/tst-fanotify.c: New test.
20886 * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-fanotify.
20887
208882013-09-02 Joseph Myers <joseph@codesourcery.com>
20889
20890 [BZ #14155]
20891 * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_jnf): Use double for
20892 intermediate calculations in recurrence.
20893 (__ieee754_ynf): Likewise.
20894 * math/libm-test.inc (jn_test_data): Do not allow spurious
20895 underflow exception. Add more tests.
20896 (yn_test_data): Add more tests.
20897 * sysdeps/i386/fpu/libm-test-ulps: Update.
20898 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
20899
209002013-09-02 Ondřej Bílka <neleai@seznam.cz>
20901
20902 * sysdeps/powerpc/powerpc32/power6/memcpy.S: Fix typo.
20903
209042013-08-30 Ondřej Bílka <neleai@seznam.cz>
20905
20906 * csu/init-first.c: Fix then/than typos.
20907 * locale/programs/ld-collate.c: Likewise.
20908 * locale/programs/linereader.h: Likewise.
20909 * manual/charset.texi: Likewise.
20910 * manual/filesys.texi: Likewise.
20911 * manual/stdio.texi: Likewise.
20912 * manual/string.texi: Likewise.
20913 * stdlib/fmtmsg.c: Likewise.
20914 * sysdeps/i386/stpncpy.S: Likewise.
20915 * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
20916 * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
20917 * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
20918 * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
20919
209202013-08-30 Ondřej Bílka <neleai@seznam.cz>
20921
20922 * elf/dl-open.c: Fix typos.
20923 * iconvdata/gbbig5.c: Likewise.
20924 * iconvdata/iso-2022-jp.c: Likewise.
20925 * iconv/gconv_int.h: Likewise.
20926 * iconv/loop.c: Likewise.
20927 * nis/rpcsvc/nis.h: Likewise.
20928 * resolv/ns_name.c: Likewise.
20929 * stdio-common/vfscanf.c: Likewise.
20930 * streams/stropts.h: Likewise.
20931 * sunrpc/rpc_thread.c: Likewise.
20932 * sysdeps/i386/strpbrk.S: Likewise.
20933 * sysdeps/ieee754/k_standard.c: Likewise.
20934 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
20935 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
20936 * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
20937 * sysdeps/mach/hurd/profil.c: Likewise.
20938 * sysdeps/s390/dl-procinfo.h: Likewise.
20939 * sysdeps/unix/sysv/linux/i386/chown.c: Likewise.
20940 * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
20941 * sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c: Likewise.
20942 * sysdeps/x86_64/dl-trampoline.S: Likewise.
20943 * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
20944
209452013-08-30 Ondřej Bílka <neleai@seznam.cz>
20946
20947 * sysdeps/x86_64/multiarch/rawmemchr.S: Delete.
20948 * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Remove rawmemchr ifunc.
20949
209502013-08-29 Ondřej Bílka <neleai@seznam.cz>
20951
20952 * sysdeps/unix/sysv/linux/powerpc/aix/aix-dirent.h: Remove
20953 aix specific files.
20954 * sysdeps/unix/sysv/linux/powerpc/aix/aix-errno.h: Likewise.
20955 * sysdeps/unix/sysv/linux/powerpc/aix/aix-stat.h: Likewise.
20956 * sysdeps/unix/sysv/linux/powerpc/aix/aix-termios.h: Likewise.
20957 * sysdeps/unix/sysv/linux/powerpc/aix/direntconv.c: Likewise.
20958 * sysdeps/unix/sysv/linux/powerpc/aix/errnoconv.c: Likewise.
20959 * sysdeps/unix/sysv/linux/powerpc/aix/statconv.c: Likewise.
20960 * sysdeps/unix/sysv/linux/powerpc/aix/tcgetattr.c: Likewise.
20961 * sysdeps/unix/sysv/linux/powerpc/aix/tcsetattr.c: Likewise.
20962
209632013-08-29 Thomas Schwinge <thomas@codesourcery.com>
20964 Roland McGrath <roland@hack.frob.com>
20965
20966 * sysdeps/mach/hurd/errnos.awk (BEGIN): Emit ESUCCESS.
20967 * sysdeps/mach/hurd/bits/errno.h: Regenerate.
20968
209692013-08-29 Samuel Thibault <samuel.thibault@ens-lyon.org>
20970
20971 * sysdeps/mach/hurd/i386/init-first.c (init1): Use
20972 __executable_start symbol instead of _start.
20973
209742013-08-29 Thomas Schwinge <thomas@codesourcery.com>
20975
20976 * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_HEADER)
20977 (VALID_ELF_OSABI, VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA):
20978 Move macros to...
20979 * sysdeps/gnu/ldsodefs.h: ... this new file.
20980
20981 * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_OSABI)
20982 (VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA): Use ELFOSABI_GNU
20983 instead of ELFOSABI_LINUX.
20984
20985 [BZ #15522] strtod ("nan(N)") returning a sNaN in some cases
20986 * stdlib/strtof_l.c (SET_MANTISSA): Rewrite.
20987 * stdlib/strtod_l.c (SET_MANTISSA): Likewise.
20988 * sysdeps/ieee754/ldbl-64-128/strtold_l.c (SET_MANTISSA):
20989 Likewise.
20990 * sysdeps/ieee754/ldbl-96/strtold_l.c (SET_MANTISSA): Likewise.
20991 * sysdeps/ieee754/ldbl-128/strtold_l.c (SET_MANTISSA): Likewise.
20992 * sysdeps/ieee754/ldbl-128ibm/strtold_l.c (SET_MANTISSA):
20993 Likewise.
20994 * sysdeps/ieee754/ldbl-128ibm/ieee754.h
20995 (ibm_extended_long_double): Add ieee_nan member.
20996 * stdlib/tst-strtod6.c (test): New function, renamed from do_test.
20997 (do_test): New function.
20998
20999 * math/basic-test.c (TEST_CONVERT): New macro, renamed from
21000 TEST_TRUNC.
21001 (convert_dfsf_test, convert_tfsf_test, convert_tfdf_test): New
21002 functions, renamed from truncdfsf_test, trunctfsf_test,
21003 trunctfdf_test.
21004 (convert_sfdf_test, convert_sftf_test, convert_dftf_test): New
21005 functions.
21006 (do_test): Run all these.
21007
210082013-08-29 Ondřej Bílka <neleai@seznam.cz>
21009
21010 * argp/argp-help.c: Fix typos.
21011 * argp/argp-parse.c: Likewise.
21012 * debug/backtracesyms.c: Likewise.
21013 * elf/elf.h: Likewise.
21014 * malloc/malloc.c: Likewise.
21015 * nis/nis_print.c: Likewise.
21016 * resolv/res_comp.c: Likewise.
21017 * stdlib/stdlib.h: Likewise.
21018 * sunrpc/clnt_tcp.c: Likewise.
21019 * sunrpc/clnt_udp.c: Likewise.
21020 * sunrpc/clnt_unix.c: Likewise.
21021 * sysdeps/unix/bsd/ptsname.c: Likewise.
21022 * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
21023 * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Likewise.
21024 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S:
21025 Likewise.
21026 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S:
21027 Likewise.
21028 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S:
21029 Likewise.
21030 * sysdeps/unix/sysv/linux/ptsname.c: Likewise.
21031
210322013-08-28 Siddhesh Poyarekar <siddhesh@redhat.com>
21033
21034 * nscd/aicache.c (addhstaiX): Use __glibc_unlikely.
21035 * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
21036
210372013-08-27 Mike Frysinger <vapier@gentoo.org>
21038
21039 [BZ #15897]
21040 * dlfcn/Makefile (tests): Add bug-dl-leaf.
21041 (modules-names): Add bug-dl-leaf-lib and bug-dl-leaf-lib-cb.
21042 ($(objpfx)bug-dl-leaf): New rule.
21043 ($(objpfx)bug-dl-leaf.so): Likewise.
21044 ($(objpfx)bug-dl-leaf.out): Likewise.
21045 ($(objpfx)bug-dl-leaf-lib.so): Likewise.
21046 ($(objpfx)bug-dl-leaf-lib-cb.so): Likewise.
21047 * dlfcn/bug-dl-leaf.c: New test.
21048 * dlfcn/bug-dl-leaf-lib.c: Likewise.
21049 * dlfcn/bug-dl-leaf-lib-cb.c: Likewise.
21050 * dlfcn/dlfcn.h (dlopen): Change __THROW to __THROWNL.
21051 (dlclose): Likewise.
21052 (dlmopen): Likewise.
21053
210542013-08-27 Roland McGrath <roland@hack.frob.com>
21055
21056 * include/netdb.h [!_ISOMAC]:
21057 Don't include <tls.h>.
21058 (h_errno, __libc_h_errno): Move declaration and macros out of
21059 [_LIBC_REENTRANT].
21060
21061 * include/resolv.h [_RESOLV_H_]:
21062 Don't include <tls.h>.
21063 (__resp, _res): Move declaration and macro out of [_LIBC_REENTRANT].
21064 * resolv/res_libc.c: Don't include <tls.h>.
21065 (_res): Use __attribute__ ((nocommon)) in place of
21066 __attribute__ ((section (".bss"))).
21067
21068 * Makefile ($(common-objpfx)linkobj/libc_pic.a):
21069 If [sunrpc not in $(subdirs)], define to use libc_pic.a directly.
21070
21071 * resolv/res_send.c (send_dg): Don't try to use ioctl unless [FIONREAD].
21072
21073 * resolv/res_hconf.c [!NOT_IN_libc] (ifaddrs): Declare
21074 only under [SIOCGIFCONF && SIOCGIFNETMASK].
21075
21076 * resolv/res_mkquery.c: Include <sys/time.h>.
21077
21078 * inet/ifreq.c: Moved to ...
21079 * sysdeps/unix/ifreq.c: ... here.
21080 * inet/ifreq.c: New file, true stub version.
21081
21082 * socket/sa_len.c: New file.
21083 * socket/Makefile (aux): Add it.
21084 * sysdeps/unix/sysv/linux/Makefile
21085 [$(subdir) = socket] (sysdep_routines): Don't add sa_len here.
21086 * sysdeps/unix/sysv/linux/sa_len.c: Just #define HAVE_NET*_H
21087 and #include <socket/sa_len.c>.
21088 * sysdeps/unix/sysv/linux/s390/sa_len.c: Just #define
21089 HAVE_NETIUCV_IUCV_H and #include <sysdeps/unix/sysv/linux/sa_len.c>.
21090
21091 * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Moved to ...
21092 * bits/socket.h: ... here.
21093
21094 * sysdeps/unix/bsd/bsd4.4/bits/socket.h (enum __socket_type):
21095 Add SOCK_CLOEXEC, SOCK_NONBLOCK with values from FreeBSD.
21096 (SOCK_MAX, SOCK_TYPE_MASK): New macros.
21097
210982013-08-27 Andreas Schwab <schwab@suse.de>
21099
21100 [BZ #15736]
21101 * locale/categories.def (LC_CTYPE): Add "nonascii-case" element.
21102 * string/Makefile (test-strcasecmp-ENV, test-strncasecmp-ENV)
21103 (test-strcasecmp-ifunc-ENV, test-strncasecmp-ifunc-ENV): Define.
21104 * string/test-strcasecmp.c (test_main): Run tests in several
21105 locales.
21106 * string/test-strncasecmp.c (test_main): Likewise.
21107
21108 * sysdeps/i386/i686/multiarch/strcmp-sse4.S (__strcasecmp_sse4_2)
21109 (__strncasecmp_sse4_2) [PIC]: Restore %ebx before falling through
21110 to __strcasecmp_nonascii and __strncasecmp_nonascii.
21111 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S (__strcasecmp_ssse3)
21112 (__strncasecmp_ssse3) [PIC]: Likewise.
21113
211142013-08-26 Roland McGrath <roland@hack.frob.com>
21115
21116 * io/lxstat64.c: Just call __xstat64, for parity with stub __lxstat.
21117
21118 * nss/nss_files/files-key.c: Include <rpc/des_crypt.h>
21119 instead of explicitly declaring xdecrypt.
21120 * nis/nss_nis/nis-publickey.c: Likewise.
21121
211222013-08-26 Siddhesh Poyarekar <siddhesh@redhat.com>
21123
21124 [BZ #15890]
21125 * nscd/aicache.c: Include res_hconf.h.
21126 (addhstaiX): Initialize res_hconf.
21127
211282013-08-26 Andreas Schwab <schwab@suse.de>
21129
21130 * stdlib/Makefile (LDFLAGS-tst-tls-atexit): Remove.
21131 ($(objpfx)tst-tls-atexit): Add dependencies here instead.
21132
211332013-08-26 Siddhesh Poyarekar <siddhesh@redhat.com>
21134
21135 * nscd/aicache.c (addhstaiX): Fix indentation.
21136
211372013-08-25 Mike Frysinger <vapier@gentoo.org>
21138
21139 * configure.ac: Quote $build_pt_chown test.
21140 * configure: Regenerated.
21141
211422013-08-23 Joseph Myers <joseph@codesourcery.com>
21143
21144 [BZ #15532]
21145 * math/s_cexp.c (__cexp): Return NaN + i0 for NaN + i0 argument.
21146 * math/s_cexpf.c (__cexpf): Likewise.
21147 * math/s_cexpl.c (__cexpl): Likewise.
21148 * math/libm-test.inc (cexp_test_data): Correct expected return
21149 value for NaN + i0. Add another test.
21150
211512013-08-22 David S. Miller <davem@davemloft.net>
21152
21153 * po/ca.po: Update Catalan translation from translation project.
21154 * po/uk.po: Add Ukrainian translations from translation project.
21155
211562013-08-21 Joseph Myers <joseph@codesourcery.com>
21157
21158 [BZ #15797]
21159 * math/s_fdim.c (__fdim): Check for infinite arguments if result
21160 is infinite, not alongside NaN test.
21161 * math/s_fdimf.c (__fdimf): Likewise.
21162 * math/s_fdiml.c (__fdiml): Likewise.
21163 * math/libm-test.inc (fdim_test_data): Add more tests. Test that
21164 errno is unchanged.
21165
211662013-08-21 Ondřej Bílka <neleai@seznam.cz>
21167
21168 * argp/argp-help.c: Fix typos.
21169 * crypt/speeds.c: Likewise.
21170 * csu/check_fds.c: Likewise.
21171 * elf/dl-load.c: Likewise.
21172 * elf/dl-open.c: Likewise.
21173 * elf/reldep3.c: Likewise.
21174 * elf/reldep.c: Likewise.
21175 * elf/sprof.c: Likewise.
21176 * iconv/iconv_charmap.c: Likewise.
21177 * iconv/skeleton.c: Likewise.
21178 * iconv/strtab.c: Likewise.
21179 * io/lockf64.c: Likewise.
21180 * libio/libioP.h: Likewise.
21181 * resolv/gai_notify.c: Likewise.
21182 * resolv/ns_name.c: Likewise.
21183 * resolv/ns_samedomain.c: Likewise.
21184 * resolv/res_send.c: Likewise.
21185 * stdlib/random.c: Likewise.
21186 * sunrpc/rpc/xdr.h: Likewise.
21187 * sysdeps/i386/fpu/fraiseexcpt.c: Likewise.
21188 * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
21189 * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
21190 * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
21191 * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
21192 * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
21193 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
21194 * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
21195 * sysdeps/mach/hurd/check_fds.c: Likewise.
21196 * sysdeps/powerpc/powerpc32/cell/memcpy.S: Likewise.
21197 * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
21198 * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
21199 * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.
21200 * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
21201 * sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise.
21202 * sysdeps/pthread/aio_notify.c: Likewise.
21203 * sysdeps/sparc/fpu/fraiseexcpt.c: Likewise.
21204 * sysdeps/unix/sysv/linux/socketcall.h: Likewise.
21205 * sysdeps/x86_64/fpu/fraiseexcpt.c: Likewise.
21206 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
21207 * sysdeps/x86/fpu/bits/fenv.h: Likewise.
21208
212092013-08-21 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
21210
21211 * sysdeps/i386/i686/multiarch/strcmp.S: Skip SSE4_2
21212 version if bit_Slow_SSE4_2 is set.
21213 * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
21214 * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
21215
212162013-07-23 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
21217
21218 [BZ #15867]
21219 * sysdeps/powerpc/powerpc32/backtrace.c (__backtrace): Handle signal
21220 trampoline stack frame information.
21221 * sysdeps/powerpc/powerpc64/backtrace.c (__backtrace): Likewise.
21222 * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h
21223 (__vdso_sigtramp_rt64): New variable: PPC64 signal trampoline.
21224 (__vdso_sigtramp32): New variable: PPC32 signal trampoline.
21225 (__vdso_sigtramp_rt32): New variable: PPC32 signal trampoline.
21226 * sysdeps/unix/sysv/linux/powerpc/init-first.c
21227 (_libc_vdso_platform_setup): Initialize the signal trampolines.
21228 * debug/tst-backtrace5.c (fn): Add an option set modify sigaction
21229 sa_flags value.
21230 * debug/tst-backtrace6.c: New file: check backtrace for signal frames,
21231 interrupting a syscall and set with option SA_SIGINFO.
21232
212332013-08-20 Joseph Myers <joseph@codesourcery.com>
21234
21235 [BZ #15531]
21236 * math/s_cproj.c (__cproj): Only return an infinity if one part of
21237 argument is infinite.
21238 * math/s_cprojf.c (__cprojf): Likewise.
21239 * math/s_cprojl.c (__cprojl): Likewise.
21240 * sysdeps/ieee754/ldbl-128ibm/s_cprojl.c (__cprojl): Likewise.
21241 * math/libm-test.inc (cproj_test_data): Add more tests.
21242
21243 * sysdeps/unix/sysv/linux/mmap64.c: Include <string.h>.
21244
21245 * sysdeps/unix/sysv/linux/mmap64.c (__mmap64)
21246 [MMAP2_PAGE_SHIFT == -1]: Use __getpagesize to determine page
21247 size. Use __ffs to determine corresponding shift.
21248
212492013-08-20 Joseph Myers <joseph@codesourcery.com>
21250 Roland McGrath <roland@hack.frob.com>
21251
21252 * Makefile (INSTALL): Remove trailing blank lines from output of
21253 makeinfo.
21254
212552013-08-20 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
21256
21257 * sysdeps/unix/sysv/linux/s390/sys/procfs.h (struct elf_prstatus):
21258 Align 32 bit compat elf_greg to 8 bytes.
21259
212602013-08-20 Andreas Arnez <arnez@linux.vnet.ibm.com>
21261
21262 * elf/setup-vdso.h (setup_vdso): Fix missing string termination.
21263
212642013-08-20 Siddhesh Poyarekar <siddhesh@redhat.com>
21265
21266 * string/strcoll_l.c (coll_seq): New structure.
21267 (get_next_seq_cached): New function.
21268 (get_next_seq): New function.
21269 (do_compare): New function.
21270 (STRCOLL): Use GNU style definition. Simplify implementation
21271 by using get_next_seq, get_next_seq_cached and do_compare.
21272
212732013-08-16 Florian Weimer <fweimer@redhat.com>
21274
21275 [BZ #14699]
21276 CVE-2013-4237
21277 * sysdeps/posix/dirstream.h (struct __dirstream): Add errcode
21278 member.
21279 * sysdeps/posix/opendir.c (__alloc_dir): Initialize errcode
21280 member.
21281 * sysdeps/posix/rewinddir.c (rewinddir): Reset errcode member.
21282 * sysdeps/posix/readdir_r.c (__READDIR_R): Enforce NAME_MAX limit.
21283 Return delayed error code. Remove GETDENTS_64BIT_ALIGNED
21284 conditional.
21285 * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Do not define
21286 GETDENTS_64BIT_ALIGNED.
21287 * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
21288 * manual/filesys.texi (Reading/Closing Directory): Document
21289 ENAMETOOLONG return value of readdir_r. Recommend readdir more
21290 strongly.
21291 * manual/conf.texi (Limits for Files): Add portability note to
21292 NAME_MAX, PATH_MAX.
21293 (Pathconf): Add portability note for _PC_NAME_MAX, _PC_PATH_MAX.
21294
212952013-08-13 Andreas Schwab <schwab@suse.de>
21296
21297 [BZ #15749]
21298 * sysdeps/ieee754/ldbl-96/s_cbrtl.c (__cbrtl): Use fabsl instead
21299 of fabs.
21300 * math/libm-test.inc (cbrt_test_data) [TEST_LDOUBLE &&
21301 LDBL_MAX_EXP >= 16384]: Add tests for it.
21302
213032013-08-12 David S. Miller <davem@davemloft.net>
21304
21305 * version.h (RELEASE): Set to "development".
21306 (VERSION): Set to "2.18.90".
21307 * NEWS: Add 2.19 section.
21308
213092013-08-03 David S. Miller <davem@davemloft.net>
21310
21311 * po/ko.po: Update Korean translation from translation project.
21312
213132013-08-01 David S. Miller <davem@davemloft.net>
21314
21315 * manual/contrib.texi: Update entry for Siddhesh Poyarekar. Add
21316 entries for Will Newton, Andi Kleen, David Holsgrove, and Ondrej
21317 Bilka.
21318
213192013-07-30 David S. Miller <davem@davemloft.net>
21320
21321 * po/fr.po: Update French translation from translation project.
21322
213232013-07-28 David S. Miller <davem@davemloft.net>
21324
21325 * po/cs.po: Update Czech translation from translation project.
21326
21327 * po/sv.po: Update Swedish translation from translation project.
21328
213292013-07-27 David S. Miller <davem@davemloft.net>
21330
21331 * po/eo.po: Update Esperanto translation from translation project.
21332
21333 * po/vi.po: Update Vietnamese translation from translation project.
21334
21335 * po/de.po: Update German translation from translation project.
21336
213372013-07-26 David S. Miller <davem@davemloft.net>
21338
21339 * po/bg.po: Update Bulgarian translation from translation project.
21340
21341 * po/nl.po: Update Dutch translation from translation project.
21342 * po/pl.po: Update Polish translation from translation project.
21343 * po/ru.po: Update Russian translation from translation project.
21344
213452013-07-24 David S. Miller <davem@davemloft.net>
21346
21347 * po/libc.pot: Update.
21348
213492013-07-23 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
21350
21351 * sysdeps/unix/sysv/linux/powerpc/dl-static.c: New file to support
21352 variable page size.
21353 * sysdeps/unix/sysv/linux/powerpc/ldsodefs.h: Likewise.
21354 * sysdeps/unix/sysv/linux/powerpc/Makefile: Build dl-static in elf.
21355 * sysdeps/unix/sysv/linux/powerpc/Versions: Add _dl_var_init.
21356
213572013-07-22 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
21358
21359 * sysdeps/s390/fpu/libm-test-ulps: Refresh.
21360
213612013-07-21 Siddhesh Poyarekar <siddhesh@redhat.com>
21362 Andreas Schwab <schwab@suse.de>
21363 Roland McGrath <roland@hack.frob.com>
21364 Joseph Myers <joseph@codesourcery.com>
21365 Carlos O'Donell <carlos@redhat.com>
21366
21367 [BZ #15755]
21368 * config.h.in: Define HAVE_PT_CHOWN.
21369 * config.make.in (build-pt-chown): New variable.
21370 * configure.in (--enable-pt_chown): New configure option.
21371 * configure: Regenerate.
21372 * login/Makefile: Include Makeconfig. Build pt_chown only if
21373 build-pt-chown is enabled.
21374 * sysdeps/unix/grantpt.c (grantpt) [HAVE_PT_CHOWN]: Spawn
21375 pt_chown to fix pty ownership.
21376 * sysdeps/unix/sysv/linux/grantpt.c [HAVE_PT_CHOWN]: Define
21377 CLOSE_ALL_FDS.
21378 * manual/install.texi (Configuring and compiling): Mention
21379 --enable-pt_chown. Add @findex for grantpt.
21380 * INSTALL: Regenerate.
21381
213822013-07-20 David S. Miller <davem@davemloft.net>
21383
21384 * sysdeps/sparc/fpu/libm-test-ulps: Update ULPs to handle minor
21385 difference between 32-bit and 64-bit.
21386
213872013-07-15 Carlos O'Donell <carlos@redhat.com>
21388
21389 [BZ #15711]
21390 * sysdeps/unix/sysv/linux/Makefile ($(objpfx)bits/syscall%h):
21391 Avoid system header dependency with -ffreestanding.
21392 ($(objpfx)bits/syscall%d): Likewise.
21393
213942013-07-13 David S. Miller <davem@davemloft.net>
21395
21396 * math/libm-test.inc (casin_test_data): Annotate more cases of missing
21397 underflows from atanl/atan2l due to bug 15319.
21398 (casinh_test_data): Likewise.
21399
214002013-07-07 David S. Miller <davem@davemloft.net>
21401
21402 * sysdeps/sparc/fpu/libm-test-ulps: Regenerate from scratch.
21403
214042013-07-05 Jeroen Albers <_jeroen_@yahoo.com>
21405
21406 * sysdeps/i386/fpu/libm-test-ulps: Update.
21407 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21408
214092013-07-04 Siddhesh Poyarekar <siddhesh@redhat.com>
21410
21411 * configure.in (--enable-lock-elision): Fix message text.
21412 * INSTALL: Regenerate.
21413 * configure: Regenerate.
21414
214152013-07-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
21416
21417 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
21418
214192013-07-03 Andreas Jaeger <aj@suse.de>
21420
21421 * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_LISTEN): Add
21422 define.
21423 (PTRACE_PEEKSIGINFO): Add new value from Linux 3.10.
21424 (ptrace_peeksiginfo_args): Add.
21425 (__ptrace_peeksiginfo_flags): Add.
21426 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
21427 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
21428 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
21429
214302013-07-03 Allan McRae <allan@archlinux.org>
21431
21432 * sysdeps/i386/fpu/libm-test-ulps: Update.
21433
214342013-07-02 David S. Miller <davem@davemloft.net>
21435
21436 * sysdeps/sparc/fpu/libm-test-ulps: Update.
21437
214382013-07-02 Markus Trippelsdorf <markus@trippelsdorf.de>
21439
21440 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
21441
214422013-07-02 Joseph Myers <joseph@codesourcery.com>
21443
21444 * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
21445 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
21446
214472013-07-02 Andi Kleen <ak@linux.intel.com>
21448
21449 * config.h.in (ENABLE_LOCK_ELISION): Add.
21450 * configure.in (--enable-lock-elision): Add option.
21451 * manual/install.texi: Document --enable lock elision.
21452 * configure: Regenerate
21453 * INSTALL: Regenerate.
21454
214552013-07-02 H.J. Lu <hongjiu.lu@intel.com>
21456
21457 * sysdeps/i386/i686/multiarch/strcasecmp.S (__strcasecmp): Enable
21458 SSE4.2 strcasecmp for libc.a.
21459 * sysdeps/i386/i686/multiarch/strncase.S (__strncasecmp): Likewise.
21460
214612013-07-02 Joseph Myers <joseph@codesourcery.com>
21462
21463 [BZ #13304]
21464 * soft-fp/op-common.h (_FP_FMA): New macro.
21465 * soft-fp/op-1.h (_FP_FRAC_HIGHBIT_DW_1): New macro.
21466 (_FP_MUL_MEAT_DW_1_imm): Likewise. Split out of ...
21467 (_FP_MUL_MEAT_1_imm): ... here.
21468 (_FP_MUL_MEAT_DW_1_wide): New macro. Split out of ...
21469 (_FP_MUL_MEAT_1_wide): ... here.
21470 (_FP_MUL_MEAT_DW_1_hard): Likewise. Split out of ...
21471 (_FP_MUL_MEAT_1_hard): ... here.
21472 * soft-fp/op-2.h (_FP_FRAC_HIGHBIT_DW_2): New macro.
21473 (_FP_MUL_MEAT_DW_2_wide): Likewise. Split out of ...
21474 (_FP_MUL_MEAT_2_wide): ... here.
21475 (_FP_MUL_MEAT_DW_2_wide_3mul): New macro. Split out of ...
21476 (_FP_MUL_MEAT_2_wide_3mul): ... here.
21477 (_FP_MUL_MEAT_DW_2_gmp): New macro. Split out of ...
21478 (_FP_MUL_MEAT_2_gmp): ... here.
21479 * soft-fp/op-4.h (_FP_FRAC_HIGHBIT_DW_4): New macro.
21480 (_FP_MUL_MEAT_DW_4_wide): Likewise. Split out of ...
21481 (_FP_MUL_MEAT_4_wide): ... here.
21482 (_FP_MUL_MEAT_DW_4_gmp): New macro. Split out of ...
21483 (_FP_MUL_MEAT_4_gmp): ... here.
21484 * soft-fp/single.h (_FP_FRACTBITS_DW_S): New macro.
21485 (_FP_WFRACBITS_DW_S): Likewise.
21486 (_FP_WFRACXBITS_DW_S): Likewise.
21487 (_FP_HIGHBIT_DW_S): Likewise.
21488 (FP_FMA_S): Likewise.
21489 (_FP_FRAC_HIGH_DW_S): Likewise.
21490 * soft-fp/double.h (_FP_FRACTBITS_DW_D): New macro.
21491 (_FP_WFRACBITS_DW_D): Likewise.
21492 (_FP_WFRACXBITS_DW_D): Likewise.
21493 (_FP_HIGHBIT_DW_D): Likewise.
21494 (FP_FMA_D): Likewise.
21495 (_FP_FRAC_HIGH_DW_D): Likewise.
21496 * soft-fp/extended.h (_FP_FRACTBITS_DW_E): New macro.
21497 (_FP_WFRACBITS_DW_E): Likewise.
21498 (_FP_WFRACXBITS_DW_E): Likewise.
21499 (_FP_HIGHBIT_DW_E): Likewise.
21500 (FP_FMA_E): Likewise.
21501 (_FP_FRAC_HIGH_DW_E): Likewise.
21502 * soft-fp/quad.h (_FP_FRACTBITS_DW_Q): New macro.
21503 (_FP_WFRACBITS_DW_Q): Likewise.
21504 (_FP_WFRACXBITS_DW_Q): Likewise.
21505 (_FP_HIGHBIT_DW_Q): Likewise.
21506 (FP_FMA_Q): Likewise.
21507 (_FP_FRAC_HIGH_DW_Q): Likewise.
21508 * soft-fp/fmasf4.c: New file.
21509 * soft-fp/fmadf4.c: Likewise.
21510 * soft-fp/fmatf4.c: Likewise.
21511
215122013-06-28 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
21513
21514 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Set
21515 bit_Slow_SSE4_2 and bit_Prefer_PMINUB_for_stringop for Intel
21516 Silvermont.
21517 * sysdeps/x86_64/multiarch/init-arch.h (bit_Slow_SSE4_2): New
21518 macro.
21519 (index_Slow_SSE4_2): Likewise.
21520 (index_Prefer_PMINUB_for_stringop): Likewise.
21521 * sysdeps/x86_64/multiarch/strchr.S: Skip SSE4.2 version if
21522 bit_Slow_SSE4_2 is set.
21523 * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
21524 * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
21525
215262013-06-28 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
21527
21528 * sysdeps/powerpc/Makefile: Add comment about generating an offset to
21529 rtld_global._dl_hwcap2.
21530 * sysdeps/powerpc/bits/hwcap.h: Added PPC_FEATURE2_* definitions for
21531 POWER8.
21532 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Extend for
21533 POWER8 feature descriptions defined in _dl_hwcap2.
21534 * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Implement AT_HWCAP2
21535 string handling for POWER8 feature bits.
21536 (_DL_HWCAP_COUNT): Increment to 64 to cover AT_HWCAP2 bits.
21537 (_DL_HWCAP_LAST): New definition for position of last AT_HWCAP bit in
21538 _dl_powerpc_cap_flags.
21539 (_DL_HWCAP2_LAST): New definition for last usable bit of AT_HWCAP2.
21540 * sysdeps/powerpc/rtld-global-offsets.sym
21541 (RTLD_GLOBAL_RO_DL_HWCAP2_OFFSET): New offset macro to locate
21542 _dl_hwcap2 in the rtld_global_ro structure.
21543
215442013-06-28 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
21545
21546 * elf/dl-support.c (_dl_hwcap2): Add a new hwcap field for more
21547 hardware capabilities in support of AT_HWCAP2.
21548 (_dl_aux_init): Read AT_HWCAP2 into GLRO(dl_hwcap2).
21549 * elf/dl-sysdep.c (_dl_sysdep_start): Read AT_HWCAP2 into
21550 GLRO(dl_hwcap2).
21551 (_dl_show_auxv): Add support for calling _dl_procinfo to display
21552 AT_HWCAP2. If a platform doesn't chose to handle displaying AT_HWCAP2
21553 explicitly the unknown a_type display mechanism is used.
21554 * misc/getauxval.c (__getauxval): Return GLRO(dl_hwcap2) on AT_HWCAP2.
21555 * sysdeps/generic/ldsodefs.h (rtld_global_ro): Add _dl_hwcap2 as a new
21556 struct member.
21557 * sysdeps/generic/dl-procinfo.h (_dl_procinfo): Add TYPE parameter
21558 to macro prototype for AT_HWCAP2 support.
21559 * sysdeps/i386/dl-procinfo.h: Likewise.
21560 * sysdeps/s390/dl-procinfo.h: Likewise.
21561 * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Add TYPE parameter to
21562 macro prototype for AT_HWCAP2 support. Make WORD unsigned long int
21563 rather than signed int. Stub in handler for TYPE == AT_HWCAP2 to
21564 return -1 for unknown a_type display fallback.
21565 * sysdeps/sparc/dl-procinfo.h: Likewise.
21566 * sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Likewise.
21567 * sysdeps/unix/sysv/linux/s390/dl-procinfo.h: Likewise.
21568
215692013-06-28 Joseph Myers <joseph@codesourcery.com>
21570
21571 * sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Shift by page_shift
21572 instead of MMAP2_PAGE_SHIFT in call to INLINE_SYSCALL.
21573
215742013-06-28 Pierre Ynard <linkfanel@yahoo.fr>
21575
21576 [BZ #12492]
21577 * elf/dl-load.c (_dl_map_object_from_fd): Test for failure of
21578 mprotect making __stack_prot writable.
21579
215802013-06-28 Nathan Froyd <froydnj@codesourcery.com>
21581 Joseph Myers <joseph@codesourcery.com>
21582
21583 * elf/dl-profile.c (struct here_cg_arc_record): Declare 'count'
21584 as being properly aligned.
21585
215862013-06-28 Maciej W. Rozycki <macro@codesourcery.com>
21587
21588 * dlfcn/modstatic5.c: New file.
21589 * dlfcn/tststatic5.c: New file.
21590 * dlfcn/Makefile (tests): Add tststatic5.
21591 (tests-static): Likewise.
21592 (modules-names): Add modstatic5.
21593 (tststatic5-ENV): New variable.
21594 ($(objpfx)tststatic5, $(objpfx)tststatic5.out): New dependencies.
21595
21596 [BZ #15022]
21597 * elf/dl-support.c (_dl_main_map): New variable.
21598 (_dl_ns): Use it to initialize [LM_ID_BASE] element.
21599 (_dl_nns, _dl_load_adds): Set to 1.
21600 (_dl_initial_searchlist): Refer to _dl_main_map.
21601 (_dl_non_dynamic_init): Initialize _dl_main_map.l_origin.
21602 * elf/dl-load.c (_dl_dst_substitute) [!SHARED]: Remove fallback
21603 call to _dl_get_origin.
21604 * elf/dl-open.c (dl_open_worker): Remove !SHARED special casing
21605 around call_map.
21606 (_dl_open) [!SHARED]: Remove code to initialize GL(dl_nns).
21607 * dlfcn/modstatic3.c: New file.
21608 * dlfcn/tststatic3.c: New file.
21609 * dlfcn/tststatic4.c: New file.
21610 * dlfcn/Makefile (tests): Add tststatic3 and tststatic4.
21611 (tests-static): Likewise.
21612 (modules-names): Add modstatic3.
21613 (tststatic3-ENV, tststatic4-ENV): New variables.
21614 ($(objpfx)tststatic3, $(objpfx)tststatic3.out): New dependencies.
21615 ($(objpfx)tststatic4, $(objpfx)tststatic4.out): Likewise.
21616
216172013-06-26 Joseph Myers <joseph@codesourcery.com>
21618
21619 * configure.in (CC): Require GCC version 4.4 or later.
21620 * configure: Regenerated.
21621 * manual/install.texi (Tools for Compilation): Update GCC version
21622 requirement.
21623 * INSTALL: Regenerated.
21624
216252013-06-26 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
21626
21627 [BZ #15674]
21628 * string/test-memcmp.c (check2): New.
21629 (main): Call check2.
21630
21631 * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Fix buffers overrun.
21632
216332013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
21634
21635 [BZ #15022]
21636 * elf/dl-open.c (_dl_open) [!SHARED]: Move call to DL_STATIC_INIT
21637 over to...
21638 (dl_open_worker) [!SHARED]: ... here.
21639
216402013-06-26 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
21641
21642 * elf/elf.h (AT_HWCAP2): Add a new a_type entry.
21643
216442013-06-25 Richard Henderson <rth@redhat.com>
21645
21646 * locale/programs/locarchive.c: Include <libc-internal.h>
21647
216482013-06-25 Joseph Myers <joseph@codesourcery.com>
21649
21650 * manual/texinfo.tex: Update to version 2013-06-21.17, with
21651 trailing whitespace removed.
21652
216532013-06-24 Mike Frysinger <vapier@gentoo.org>
21654
21655 [BZ #10283]
21656 * locale/locarchive.h (struct locarhandle): Add mmap_base and mmap_len.
21657 * locale/programs/locarchive.c: Include libc-mmap.h.
21658 (prepare_address_space): Take two new outputs (the mmap base and len).
21659 Align p to MAP_FIXED_ALIGNMENT. Set mmap base and len to the right
21660 values.
21661 (create_archive): Declare new mmap base and len values for
21662 prepare_address_space, and store the result in ah.
21663 (file_data_available_p): Replace pagesz with MAP_FIXED_ALIGNMENT.
21664 (enlarge_archive): If ah->mmap_base is not NULL, use that and
21665 ah->mmap_len to unmap rather than ah->addr and ah->reserved.
21666 Declare new mmap base and len values for
21667 prepare_address_space, and store the result in new_ah.
21668 (open_archive): Declare new mmap base and len values for
21669 prepare_address_space, and store the result in ah.
21670 (close_archive): If ah->mmap_base is not NULL, use that and
21671 ah->mmap_len to unmap rather than ah->addr and ah->reserved.
21672 * sysdeps/generic/libc-mmap.h: New file.
21673
216742013-06-24 Mike Frysinger <vapier@gentoo.org>
21675
21676 * include/libc-internal.h (ALIGN_DOWN): New helper macro.
21677 (ALIGN_UP): Likewise.
21678 (PTR_ALIGN_DOWN): Likewise.
21679 (PTR_ALIGN_UP): Likewise.
21680
216812013-06-24 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
21682
21683 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platforms): Add "power8"
21684 entry mapped to PPC_PLATFORM_POWER8.
21685 * sysdeps/powerpc/dl-procinfo.h (_DL_PLATFORMS_COUNT): Increment for
21686 POWER8.
21687 (PPC_PLATFORM_POWER8): Add new platform bit for POWER8 processor.
21688 (_dl_string_platform): Add case for exporting platform position for
21689 POWER8.
21690 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power8/Implies: Chain
21691 search path to sysdeps/powerpc/powerpc32/power8 directory.
21692 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power8/Implies: Chain
21693 search path to sysdeps/powerpc/powerpc64/power8 directory.
21694 * sysdeps/powerpc/powerpc32/power8/Implies: Chain search path to
21695 power7 directories.
21696 * sysdeps/powerpc/powerpc64/power8/Implies: Chain search path to
21697 power7 directories.
21698
216992013-06-24 Siddhesh Poyarekar <siddhesh@redhat.com>
21700
21701 * INSTALL: Regenerate.
21702
21703 * nscd/connections.c (nscd_init): Fix comment.
21704
217052013-06-22 Joseph Myers <joseph@codesourcery.com>
21706
21707 * sysdeps/unix/sysv/linux/libc_fatal.c: Include <string.h>.
21708
21709 [BZ #15667]
21710 * soft-fp/op-4.h (__FP_FRAC_ADD_3): Rename variables _c1 and _c2
21711 to __FP_FRAC_ADD_3_c1 and __FP_FRAC_ADD_3_c2.
21712
217132013-06-21 Maciej W. Rozycki <macro@codesourcery.com>
21714
21715 * elf/dl-dst.h (DL_DST_REQUIRED): Remove call to
21716 DL_DST_REQ_STATIC.
21717 (DL_DST_REQ_STATIC): Remove macro.
21718
217192013-06-21 Joseph Myers <joseph@codesourcery.com>
21720
21721 [BZ #7006]
21722 * soft-fp/op-common.h (_FP_FROM_INT): Do not call _FP_FRAC_SLL
21723 with a shift of 0 bits.
21724
217252013-06-21 Maciej W. Rozycki <macro@codesourcery.com>
21726
21727 * dlfcn/Makefile (tststatic2-ENV): Redefine in terms of
21728 $(tststatic-ENV).
21729
217302013-06-21 Kaz Kojima <kkojima@rr.iij4u.or.jp>
21731
21732 [BZ #15655]
21733 * sysdeps/sh/sh4/fpu/fgetexcptflg.c: New file.
21734
217352013-06-20 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
21736
21737 * config.h.in (HAVE_CC_INHIBIT_LOOP_TO_LIBCALL): New define.
21738 * configure.in (libc_cv_cc_loop_to_function): Check if compiler
21739 accepts -fno-tree-loop-distribute-patterns.
21740 * include/libc-symbols.h (inhibit_loop_to_libcall): New macro.
21741 * string/memmove.c (MEMMOVE): Disable loop transformation to avoid
21742 recursive call.
21743 * string/memset.c (memset): Likewise.
21744 * string/test-memmove.c (simple_memmove): Disable loop transformation
21745 to library calls.
21746 * string/test-memset.c (simple_memset): Likewise.
21747 * benchtests/bench-memmove.c (simple_memmove): Likewise.
21748 * benchtests/bench-memset.c (simple_memset): Likewise.
21749 * configure: Regenerated.
21750
217512013-06-20 Joseph Myers <joseph@codesourcery.com>
21752
21753 * math/test-misc.c (main): Ignore fesetround failure when failures
21754 of subsequent rounding tests would be ignored.
21755
21756 [BZ #15654]
21757 * math/fedisblxcpt.c (fedisableexcept): Return 0.
21758 * math/feenablxcpt.c (feenableexcept): Return 0 for argument 0.
21759 * math/fegetenv.c (__fegetenv): Return 0.
21760 * math/fegetexcept.c (fegetexcept): Return 0.
21761 * math/fegetround.c (fegetround) [FE_TONEAREST]: Return
21762 FE_TONEAREST.
21763 * math/feholdexcpt.c (feholdexcept): Return 0.
21764 * math/fesetenv.c (__fesetenv): Return 0.
21765 * math/fesetround.c (fesetround) [FE_TONEAREST]: Return 0 for
21766 argument FE_TONEAREST.
21767 * math/feupdateenv.c (__feupdateenv): Return 0.
21768 * math/fgetexcptflg.c (__fegetexceptflag): Return 0.
21769
217702013-06-18 Roland McGrath <roland@hack.frob.com>
21771
21772 * elf/rtld-Rules (rtld-compile-command.S): New variable.
21773 (rtld-compile-command.s, rtld-compile-command.c): New variables.
21774 ($(objpfx)rtld-%.os rules): Use them.
21775
217762013-06-17 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
21777
21778 * nptl/sysdeps/powerpc/tls.h (tcbhead_t): Add Event-Based Branch
21779 fields.
21780
217812013-06-17 Roland McGrath <roland@hack.frob.com>
21782
21783 * scripts/sysd-rules.awk: Sort sysd_rules_patterns by descending
21784 length of target pattern, then descending length of dependency pattern.
21785 * configure.in (AWK): Require gawk 3.1.2 or newer.
21786 * manual/install.texi (Tools for Compilation): Say that we do.
21787 * configure: Regenerated.
21788
21789 * Makerules [inhibit-sysdep-asm] (check-inhibit-asm): Variable removed.
21790 ($(common-objpfx)sysd-rules): Replace shell logic with running ...
21791 * scripts/sysd-rules.awk: ... this new script.
21792 * sysdeps/mach/hurd/Makefile (inhibit-sysdep-asm): Use a regexp rather
21793 than a glob-style pattern.
21794
217952013-06-17 Joseph Myers <joseph@codesourcery.com>
21796
21797 * math/test-misc.c (main): Do not treat incorrectly rounded
21798 conversions as failure unless ROUNDING_TESTS passes.
21799
218002013-06-15 Joseph Myers <joseph@codesourcery.com>
21801
21802 [BZ #15631]
21803 * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Save and
21804 restore exception state around main square root computation, then
21805 check for inexactness explicitly.
21806
21807 * math/libm-test.inc (fma_test_data): Add another test.
21808
218092013-06-15 Siddhesh Poyarekar <siddhesh@redhat.com>
21810
21811 * manual/threads.texi (Non-POSIX Extensions): New document
21812 node. Document pthread_getattr_default_np and
21813 pthread_setattr_default_np.
21814
21815 * Versions.def (libpthread): Add GLIBC_2.18.
21816 * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: Update.
21817 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
21818 Likewise.
21819 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
21820 Likewise.
21821 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
21822 Likewise.
21823 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
21824 Likewise.
21825 * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist:
21826 Likewise.
21827 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
21828 Likewise.
21829 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
21830 Likewise.
21831 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist:
21832 Likewise.
21833 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist:
21834 Likewise.
21835
218362013-06-14 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
21837
21838 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
21839 Set bit_Fast_Unaligned_Load for Intel Silvermont architecture.
21840
218412013-06-14 Siddhesh Poyarekar <siddhesh@redhat.com>
21842 H.J. Lu <hjl.tools@gmail.com>
21843
21844 [BZ #15627]
21845 * sysdeps/x86_64/rtld-memset.c: Remove file.
21846 * sysdeps/x86_64/rtld-memset.S: New file.
21847
218482013-06-14 Joseph Myers <joseph@codesourcery.com>
21849
21850 * stdlib/tst-strtod-round.c: Include <math-tests.h>.
21851 (test_in_one_mode): Take arguments for whether the rounding mode
21852 is supported for each floating-point type.
21853 (do_test): Pass new arguments to test_in_one_mode using
21854 ROUNDING_TESTS.
21855
218562013-06-13 Roland McGrath <roland@hack.frob.com>
21857
21858 * posix/tst-waitid.c (do_test): Distinguish different instances of
21859 stopped/continued in CHECK_SIGCHLD uses. Insert a delay between
21860 sending SIGSTOP and calling waitpid to ensure SIGCHLD gets delivered
21861 before entering the kernel for waitpid.
21862
218632013-06-13 Siddhesh Poyarekar <siddhesh@redhat.com>
21864
21865 * NEWS: Fix note on clock function precision. Text by Roland
21866 McGrath.
21867
218682013-06-13 Roland McGrath <roland@hack.frob.com>
21869
21870 * elf/Makefile ($(objpfx)ld.so): Link into a temporary file and move
21871 it into place only when and if the sanity check passes.
21872
218732013-06-13 Joseph Myers <joseph@codesourcery.com>
21874
21875 * stdlib/gen-tst-strtod-round.c (round_str): Always generate
21876 output for whether conversion result is exact. Take argument
21877 indicating whether type is IBM long double.
21878 (round_for_all): Change need_exact field to ibm_ld.
21879 * stdlib/tst-strtod-round.c (struct exactness): New type.
21880 (struct test): Change bool ld_ok field to struct exactness exact.
21881 (TEST): Update all definitions for change to field.
21882 (tests): Regenerate array contents.
21883 (test_in_one_mode): Take pointer to new field instead of old ld_ok
21884 field value. Check for IBM long double here.
21885 (do_test): Update calls to test_in_one_mode.
21886
218872013-06-13 Siddhesh Poyarekar <siddhesh@redhat.com>
21888
21889 [BZ #12515]
21890 * sysdeps/unix/sysv/linux/clock.c (clock): Use result from
21891 CLOCK_PROCESS_CPUTIME_ID clock instead of __times.
21892
218932013-06-12 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
21894
21895 [BZ #15605]
21896 * sysdeps/generic/symbol-hacks.h: Add workaround for memset/memmove calls
21897 generated by the compiler on loop optimizations.
21898 * sysdeps/wordsize-32/symbol-hacks.h: Include next symbol-hacks.h for
21899 general definitions.
21900
219012013-06-12 Joseph Myers <joseph@codesourcery.com>
21902
21903 * math/bug-nextafter.c: Include <math-tests.h>.
21904 (main): Only test for exceptions if EXCEPTION_TESTS is true for
21905 the relevant type.
21906 * math/bug-nexttoward.c: Include <math-tests.h>.
21907 (main): Only test for exceptions if EXCEPTION_TESTS is true for
21908 the relevant type.
21909 * math/test-misc.c: Include <math-tests.h>.
21910 (main): Only test for exceptions if EXCEPTION_TESTS is true for
21911 the relevant type.
21912
219132013-06-12 Andreas Jaeger <aj@suse.de>
21914
21915 * po/ia.po: Update Interlingua translation from translation
21916 project.
21917
219182013-06-12 Siddhesh Poyarekar <siddhesh@redhat.com>
21919
21920 * include/fenv.h: Include stdbool.h.
21921 (struct rm_ctx): New structure.
21922 * sysdeps/generic/math_private.h (SET_RESTORE_ROUND_GENERIC):
21923 Define macro.
21924 (SET_RESTORE_ROUND): Define using SET_RESTORE_ROUND_GENERIC.
21925 (SET_RESTORE_ROUNDF): Likewise.
21926 (SET_RESTORE_ROUNDL): Likewise.
21927 (SET_RESTORE_ROUND_NOEX): Likewise.
21928 (SET_RESTORE_ROUND_NOEXF): Likewise.
21929 (SET_RESTORE_ROUND_NOEXL): Likewise.
21930 (SET_RESTORE_ROUND_53BIT): Likewise.
21931 [HAVE_RM_CTX] (libc_feresetround_noex_ctx): Define macro.
21932 (libc_feresetround_noexf_ctx): Likewise.
21933 (libc_feresetround_noexl_ctx): Likewise.
21934 (libc_feholdsetround_53bit_ctx): Likewise.
21935 (libc_feresetround_53bit_ctx): Likewise.
21936 * sysdeps/i386/fpu/fenv_private.h (HAVE_RM_CTX): Define macro.
21937 (libc_feholdexcept_setround_sse_ctx): New function.
21938 (libc_fesetenv_sse_ctx): Likewise.
21939 (libc_feupdateenv_sse_ctx): Likewise.
21940 (libc_feholdexcept_setround_387_prec_ctx): Likewise.
21941 (libc_feholdexcept_setround_387_ctx): Likewise.
21942 (libc_feholdexcept_setround_387_53bit_ctx): Likewise.
21943 (libc_feholdsetround_387_prec_ctx): Likewise.
21944 (libc_feholdsetround_387_ctx): Likewise.
21945 (libc_feholdsetround_387_53bit_ctx): Likewise.
21946 (libc_feholdsetround_sse_ctx): Likewise.
21947 (libc_feresetround_sse_ctx): Likewise.
21948 (libc_feresetround_387_ctx): Likewise.
21949 (libc_feupdateenv_387_ctx): Likewise.
21950 (libc_feholdexcept_setroundf_ctx): Define macro.
21951 (libc_fesetenvf_ctx): Likewise.
21952 (libc_feupdateenvf_ctx): Likewise.
21953 (libc_feholdsetroundf_ctx): Likewise.
21954 (libc_feresetroundf_ctx): Likewise.
21955 (libc_feholdexcept_setround_ctx): Likewise.
21956 (libc_fesetenv_ctx): Likewise.
21957 (libc_feupdateenv_ctx): Likewise.
21958 (libc_feholdsetround_ctx): Likewise.
21959 (libc_feresetround_ctx): Likewise.
21960 (libc_feholdexcept_setroundl_ctx): Likewise.
21961 (libc_feupdateenvl_ctx): Likewise.
21962 (libc_feholdsetroundl_ctx): Likewise.
21963 (libc_feresetroundl_ctx): Likewise.
21964 [!__SSE2_MATH__] (libc_feholdsetround_53bit_ctx): Likewise.
21965 (libc_feresetround_53bit_ctx): Likewise.
21966
219672013-06-11 Siddhesh Poyarekar <siddhesh@redhat.com>
21968
21969 * locale/iso-639.def: Convert to UTF-8.
21970
219712013-06-11 Joseph Myers <joseph@codesourcery.com>
21972
21973 * sysdeps/generic/math-tests.h (EXCEPTION_TESTS_float): New macro.
21974 (EXCEPTION_TESTS_double): Likewise.
21975 (EXCEPTION_TESTS_long_double): Likewise.
21976 (EXCEPTION_TESTS): Likewise.
21977 * math/libm-test.inc (test_exceptions): Only test exceptions if
21978 EXCEPTION_TESTS (FLOAT).
21979
219802013-06-11 Siddhesh Poyarekar <siddhesh@redhat.com>
21981
21982 * benchtests/Makefile (string-bench): Add strcpy_chk and
21983 stpcpy_chk.
21984 * benchtests/bench-stpcpy_chk-ifunc.c: New file.
21985 * benchtests/bench-stpcpy_chk.c: New file.
21986 * benchtests/bench-strcpy_chk-ifunc.c: New file.
21987 * benchtests/bench-strcpy_chk.c: New file.
21988 * debug/test-strcpy_chk.c (do_one_test): Remove HP_TIMING
21989 code.
21990 (do_test): Likewise.
21991
219922013-06-11 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
21993
21994 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platforms): Add ppc405,
21995 ppc440, ppc464, and ppc476, merging from ports/ dl-procinfo.c.
21996 * sysdeps/powerpc/dl-procinfo.h: Fix whitespace by correcting spaces
21997 with tabs where appropriate.
21998 [PPC_PLATFORM_PPC405]: Define new platform merging from ports/
21999 dl-procinfo.h.
22000 [PPC_PLATFORM_PPC440]: Likewise.
22001 [PPC_PLATFORM_PPC464]: Likewise.
22002 [PPC_PLATFORM_PPC476]: Likewise.
22003 (_dl_string_platform): Add support for detecting ppc405, ppc440,
22004 ppc464, and ppc476 platform strings merging from ports/
22005 dl-procinfo.h.
22006
220072013-06-11 Andreas Schwab <schwab@suse.de>
22008
22009 [BZ #14991]
22010 * iconvdata/big5hkscs.c (big5hkscs_to_ucs, from_ucs4)
22011 (from_ucs4_idx): Regenerate.
22012 (MIN_NEEDED_FROM, MAX_NEEDED_FROM, MIN_NEEDED_TO): Remove macros.
22013 (FROM_LOOP_MIN_NEEDED_FROM, FROM_LOOP_MAX_NEEDED_FROM)
22014 (FROM_LOOP_MIN_NEEDED_TO, FROM_LOOP_MAX_NEEDED_TO)
22015 (TO_LOOP_MIN_NEEDED_FROM, TO_LOOP_MAX_NEEDED_FROM)
22016 (TO_LOOP_MIN_NEEDED_TO, TO_LOOP_MAX_NEEDED_TO, PREPARE_LOOP)
22017 (EXTRA_LOOP_ARGS, SAVE_RESET_STATE, EMIT_SHIFT_TO_INIT)
22018 (EXTRA_LOOP_DECLS, MAX_NEEDED_OUTPUT): New macros.
22019 (MIN_NEEDED_INPUT, MAX_NEEDED_INPUT, MIN_NEEDED_OUTPUT): Define
22020 from FROM_LOOP and TO_LOOP specific macros.
22021 (BODY): Handle combining characters.
22022 * iconvdata/BIG5HKSCS.irreversible: Update.
22023 * iconvdata/BIG5HKSCS.precomposed: New file.
22024 * iconvdata/testdata/BIG5HKSCS: Regenerate to cover all assigned
22025 characters.
22026 * iconvdata/testdata/BIG5HKSCS..UTF8: Update.
22027
220282013-06-11 Siddhesh Poyarekar <siddhesh@redhat.com>
22029
22030 * include/sys/time.h: Fix indentation and add copyright header.
22031
22032 * string/test-memccpy.c (do_one_test): Remove HP_TIMING code.
22033 (do_test): Likewise.
22034 * string/test-memchr.c (do_one_test): Likewise.
22035 (do_test): Likewise.
22036 * string/test-memcmp.c (do_one_test): Likewise.
22037 (do_test): Likewise.
22038 * string/test-memcpy.c (do_one_test): Likewise.
22039 (do_test): Likewise.
22040 * string/test-memmem.c (do_one_test): Likewise.
22041 (do_test): Likewise.
22042 (do_random_tests): Likewise.
22043 * string/test-memmove.c (do_one_test): Likewise.
22044 (do_test): Likewise.
22045 * string/test-memset.c (do_one_test): Likewise.
22046 (do_test): Likewise.
22047 * string/test-rawmemchr.c (do_one_test): Likewise.
22048 (do_test): Likewise.
22049 * string/test-strcasecmp.c (do_one_test): Likewise.
22050 (do_test): Likewise.
22051 * string/test-strcasestr.c (do_one_test): Likewise.
22052 (do_test): Likewise.
22053 * string/test-strcat.c (do_one_test): Likewise.
22054 (do_test): Likewise.
22055 * string/test-strchr.c (do_one_test): Likewise.
22056 (do_test): Likewise.
22057 * string/test-strcmp.c (do_one_test): Likewise.
22058 (do_test): Likewise.
22059 * string/test-strcpy.c (do_one_test): Likewise.
22060 (do_test): Likewise.
22061 * string/test-string.h: Likewise.
22062 (test_init): Likewise.
22063 * string/test-strlen.c (do_one_test): Likewise.
22064 (do_test): Likewise.
22065 * string/test-strncasecmp.c (do_one_test): Likewise.
22066 (do_test): Likewise.
22067 * string/test-strncat.c (do_one_test): Likewise.
22068 (do_test): Likewise.
22069 * string/test-strncmp.c (do_one_test): Likewise.
22070 (do_test_limit): Likewise.
22071 (do_test): Likewise.
22072 * string/test-strncpy.c (do_one_test): Likewise.
22073 (do_test): Likewise.
22074 * string/test-strnlen.c (do_one_test): Likewise.
22075 (do_test): Likewise.
22076 * string/test-strpbrk.c (do_one_test): Likewise.
22077 (do_test): Likewise.
22078 * string/test-strrchr.c (do_one_test): Likewise.
22079 (do_test): Likewise.
22080 * string/test-strspn.c (do_one_test): Likewise.
22081 (do_test): Likewise.
22082 * string/test-strstr.c (do_one_test): Likewise.
22083 (do_test): Likewise.
22084
22085 * benchtests/Makefile (string-bench): Add string benchmarks.
22086 * benchtests/bench-bcopy-ifunc.c: New file.
22087 * benchtests/bench-bcopy.c: New file.
22088 * benchtests/bench-bzero-ifunc.c: New file.
22089 * benchtests/bench-bzero.c: New file.
22090 * benchtests/bench-memccpy-ifunc.c: New file.
22091 * benchtests/bench-memccpy.c: New file.
22092 * benchtests/bench-memchr-ifunc.c: New file.
22093 * benchtests/bench-memchr.c: New file.
22094 * benchtests/bench-memcmp-ifunc.c: New file.
22095 * benchtests/bench-memcmp.c: New file.
22096 * benchtests/bench-memmem-ifunc.c: New file.
22097 * benchtests/bench-memmem.c: New file.
22098 * benchtests/bench-memmove-ifunc.c: New file.
22099 * benchtests/bench-memmove.c: New file.
22100 * benchtests/bench-mempcpy-ifunc.c: New file.
22101 * benchtests/bench-mempcpy.c: New file.
22102 * benchtests/bench-memset-ifunc.c: New file.
22103 * benchtests/bench-memset.c: New file.
22104 * benchtests/bench-rawmemchr-ifunc.c: New file.
22105 * benchtests/bench-rawmemchr.c: New file.
22106 * benchtests/bench-stpcpy-ifunc.c: New file.
22107 * benchtests/bench-stpcpy.c: New file.
22108 * benchtests/bench-stpncpy-ifunc.c: New file.
22109 * benchtests/bench-stpncpy.c: New file.
22110 * benchtests/bench-strcasecmp-ifunc.c: New file.
22111 * benchtests/bench-strcasecmp.c: New file.
22112 * benchtests/bench-strcasestr-ifunc.c: New file.
22113 * benchtests/bench-strcasestr.c: New file.
22114 * benchtests/bench-strcat-ifunc.c: New file.
22115 * benchtests/bench-strcat.c: New file.
22116 * benchtests/bench-strchr-ifunc.c: New file.
22117 * benchtests/bench-strchr.c: New file.
22118 * benchtests/bench-strchrnul-ifunc.c: New file.
22119 * benchtests/bench-strchrnul.c: New file.
22120 * benchtests/bench-strcmp-ifunc.c: New file.
22121 * benchtests/bench-strcmp.c: New file.
22122 * benchtests/bench-strcpy-ifunc.c: New file.
22123 * benchtests/bench-strcpy.c: New file.
22124 * benchtests/bench-strcspn-ifunc.c: New file.
22125 * benchtests/bench-strcspn.c: New file.
22126 * benchtests/bench-strlen-ifunc.c: New file.
22127 * benchtests/bench-strlen.c: New file.
22128 * benchtests/bench-strncasecmp-ifunc.c: New file.
22129 * benchtests/bench-strncasecmp.c: New file.
22130 * benchtests/bench-strncat-ifunc.c: New file.
22131 * benchtests/bench-strncat.c: New file.
22132 * benchtests/bench-strncmp-ifunc.c: New file.
22133 * benchtests/bench-strncmp.c: New file.
22134 * benchtests/bench-strncpy-ifunc.c: New file.
22135 * benchtests/bench-strncpy.c: New file.
22136 * benchtests/bench-strnlen-ifunc.c: New file.
22137 * benchtests/bench-strnlen.c: New file.
22138 * benchtests/bench-strpbrk-ifunc.c: New file.
22139 * benchtests/bench-strpbrk.c: New file.
22140 * benchtests/bench-strrchr-ifunc.c: New file.
22141 * benchtests/bench-strrchr.c: New file.
22142 * benchtests/bench-strspn-ifunc.c: New file.
22143 * benchtests/bench-strspn.c: New file.
22144 * benchtests/bench-strstr-ifunc.c: New file.
22145 * benchtests/bench-strstr.c: New file.
22146
22147 * benchtests/Makefile: Disable parallel execution of targets.
22148 (string-bench): Add memcpy.
22149 (benchset): New variable to store a list of benchmark sets.
22150 (bench-func): Renamed from bench.
22151 (bench-set): New target.
22152 (bench): Depend on bench-func and bench-set.
22153 * benchtests/README: Add section on benchmark sets.
22154 * benchtests/bench-memcpy-ifunc.c: New file.
22155 * benchtests/bench-memcpy.c: New file.
22156 * benchtests/bench-string.h: New file.
22157
221582013-06-11 Andreas Schwab <schwab@suse.de>
22159
22160 [BZ #15577]
22161 * nscd/connections.c (nscd_run_worker): Always zero-terminate key.
22162 * nscd/netgroupcache.c (addgetnetgrentX): Properly handle absent
22163 values in the triple.
22164 * nscd/nscd_netgroup.c (__nscd_setnetgrent): Include zero
22165 terminator in the group key.
22166
221672013-06-11 Andreas Jaeger <aj@suse.de>
22168
22169 * po/zh_TW.po: Update Chinese (traditional) translation from
22170 translation project.
22171
221722013-06-11 Siddhesh Poyarekar <siddhesh@redhat.com>
22173
22174 * include/time.h (__clock_gettime): Add libc_hidden_proto.
22175 * rt/clock_getcpuclockid.c (clock_getcpuclockid): Rename to
22176 __clock_getcpuclockid. Add weak_alias and libc_hidden_def.
22177 * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
22178 (clock_getcpuclockid): Likewise.
22179 * rt/clock_getres.c (clock_getres): Rename to __clock_getres.
22180 Add weak_alias and libc_hidden_def.
22181 * sysdeps/posix/clock_getres.c (clock_getres): Likewise.
22182 * rt/clock_gettime.c (clock_gettime): Rename to
22183 __clock_gettime. Add weak_alias and libc_hidden_def.
22184 * sysdeps/unix/clock_gettime.c (clock_gettime): Likewise.
22185 * rt/clock_nanosleep.c (clock_nanosleep): Rename to
22186 __clock_nanosleep. Add weak_alias and libc_hidden_def.
22187 * sysdeps/unix/clock_nanosleep.c (clock_nanosleep): Likewise.
22188 * sysdeps/unix/sysv/linux/clock_nanosleep.c (clock_nanosleep):
22189 Likewise.
22190 * rt/clock_settime.c (clock_settime): Rename to
22191 __clock_settime. Add weak_alias and libc_hidden_def.
22192 * sysdeps/unix/clock_settime.c (clock_settime): Likewise.
22193
221942013-06-10 Joseph Myers <joseph@codesourcery.com>
22195
22196 * mach/err_boot.sub: Remove trailing whitespace.
22197 * mach/err_ipc.sub: Likewise.
22198 * mach/err_mach.sub: Likewise.
22199
22200 * sysdeps/generic/math-tests.h (ROUNDING_TESTS_float): New macro.
22201 (ROUNDING_TESTS_double): Likewise.
22202 (ROUNDING_TESTS_long_double): Likewise.
22203 (ROUNDING_TESTS): Likewise.
22204 * math/libm-test.inc: Include <math-tests.h>.
22205 (IF_ROUND_INIT_FE_DOWNWARD): Use ROUNDING_TESTS.
22206 (IF_ROUND_INIT_FE_TONEAREST): Likewise.
22207 (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
22208 (IF_ROUND_INIT_FE_UPWARD): Likewise.
22209
222102013-06-10 Siddhesh Poyarekar <siddhesh@redhat.com>
22211
22212 * benchtests/Makefile (CPPFLAGS-nonlib): Append values instead
22213 of assigning.
22214
222152013-06-08 Joseph Myers <joseph@codesourcery.com>
22216
22217 * sysdeps/gnu/errlist.awk: Do not generate space at end of
22218 otherwise empty TRANS lines.
22219 * sysdeps/gnu/errlist.c: Regenerated.
22220
22221 * catgets/gencat.c (error_print): Use (void) in function
22222 definition.
22223 * crypt/crypt_util.c (__init_des): Likewise.
22224 * crypt/speeds.c (Stop): Likewise.
22225 (main): Likewise.
22226 * hurd/hurdmalloc.c (print_malloc_free_list): Likewise.
22227 * inet/ruserpass.c (token): Likewise.
22228 * intl/finddomain.c (_nl_finddomain_subfreeres): Likewise.
22229 * intl/localealias.c (extend_alias_table): Likewise.
22230 * intl/plural-exp.c (init_germanic_plural): Likewise.
22231 * libio/fcloseall.c (__fcloseall): Likewise.
22232 * libio/genops.c (_IO_flush_all): Likewise.
22233 (_IO_flush_all_linebuffered): Likewise.
22234 (_IO_cleanup): Likewise.
22235 (_IO_iter_begin): Likewise.
22236 (_IO_iter_end): Likewise.
22237 (_IO_list_lock): Likewise.
22238 (_IO_list_unlock): Likewise.
22239 (_IO_list_resetlock): Likewise.
22240 * libio/getchar.c (getchar): Likewise.
22241 * libio/getchar_u.c (getchar_unlocked): Likewise.
22242 * libio/getwchar.c (getwchar): Likewise.
22243 * libio/getwchar_u.c (getwchar_unlocked): Likewise.
22244 * libio/oldstdfiles.c (_IO_check_libio): Likewise.
22245 * login/getpt.c (__getpt): Likewise.
22246 * login/tst-utmp.c (main): Likewise.
22247 * malloc/hooks.c (__malloc_check_init): Likewise.
22248 * malloc/malloc.c (__malloc_stats): Likewise.
22249 * malloc/mtrace.c (tr_break): Likewise.
22250 (mtrace): Likewise.
22251 (muntrace): Likewise.
22252 * misc/fstab.c (endfsent): Likewise.
22253 * misc/getclktck.c (__getclktck): Likewise.
22254 * misc/getdtsz.c (__getdtablesize): Likewise.
22255 * misc/gethostid.c (gethostid): Likewise.
22256 * misc/getpagesize.c (__getpagesize): Likewise.
22257 * misc/getsysstats.c (__get_nprocs_conf): Likewise.
22258 (__get_nprocs): Likewise.
22259 (__get_phys_pages): Likewise.
22260 (__get_avphys_pages): Likewise.
22261 * misc/getttyent.c (getttyent): Likewise.
22262 (setttyent): Likewise.
22263 (endttyent): Likewise.
22264 * misc/getusershell.c (getusershell): Likewise.
22265 (endusershell): Likewise.
22266 (setusershell): Likewise.
22267 (initshells): Likewise.
22268 * misc/hsearch.c (__hdestroy): Likewise.
22269 * misc/sync.c (sync): Likewise.
22270 * misc/syslog.c (closelog_internal): Likewise.
22271 (closelog): Likewise.
22272 * misc/ttyslot.c (ttyslot): Likewise.
22273 * misc/vhangup.c (vhangup): Likewise.
22274 * posix/fork.c (__fork): Likewise.
22275 * posix/getegid.c (__getegid): Likewise.
22276 * posix/geteuid.c (__geteuid): Likewise.
22277 * posix/getgid.c (__getgid): Likewise.
22278 * posix/getpid.c (__getpid): Likewise.
22279 * posix/getppid.c (__getppid): Likewise.
22280 * posix/getuid.c (__getuid): Likewise.
22281 * posix/pause.c (pause): Likewise.
22282 * posix/setpgrp.c (setpgrp): Likewise.
22283 * posix/setsid.c (__setsid): Likewise.
22284 * posix/test-vfork.c (noop): Likewise.
22285 * resolv/gethnamaddr.c (_endhtent): Likewise.
22286 (_gethtent): Likewise.
22287 (ht_endhostent): Likewise.
22288 (gethostent): Likewise.
22289 (dns_service): Likewise.
22290 * stdlib/drand48.c (drand48): Likewise.
22291 * stdlib/lrand48.c (lrand48): Likewise.
22292 * stdlib/mrand48.c (mrand48): Likewise.
22293 * stdlib/rand.c (rand): Likewise.
22294 * stdlib/random.c (__random): Likewise.
22295 * stdlib/setenv.c (clearenv): Likewise.
22296 * sunrpc/clnt_tcp.c (clnttcp_abort): Likewise.
22297 * sunrpc/clnt_unix.c (clntunix_abort): Likewise.
22298 * sysdeps/mach/getpagesize.c (__getpagesize): Likewise.
22299 * sysdeps/mach/getsysstats.c (__get_nprocs_conf): Likewise.
22300 (__get_nprocs): Likewise.
22301 (__get_phys_pages): Likewise.
22302 (__get_avphys_pages): Likewise.
22303 * sysdeps/mach/hurd/dl-sysdep.c (__getpid): Likewise.
22304 * sysdeps/mach/hurd/getclktck.c (__getclktck): Likewise.
22305 * sysdeps/mach/hurd/getdtsz.c (__getdtablesize): Likewise.
22306 * sysdeps/mach/hurd/getegid.c (__getegid): Likewise.
22307 * sysdeps/mach/hurd/geteuid.c (__geteuid): Likewise.
22308 * sysdeps/mach/hurd/getgid.c (__getgid): Likewise.
22309 * sysdeps/mach/hurd/gethostid.c (gethostid): Likewise.
22310 * sysdeps/mach/hurd/getlogin.c (getlogin): Likewise.
22311 * sysdeps/mach/hurd/getpid.c (__getpid): Likewise.
22312 * sysdeps/mach/hurd/getppid.c (__getppid): Likewise.
22313 * sysdeps/mach/hurd/getuid.c (__getuid): Likewise.
22314 * sysdeps/mach/hurd/sync.c (sync): Likewise.
22315 * sysdeps/posix/clock.c (clock): Likewise.
22316 * sysdeps/unix/bsd/setsid.c (__setsid): Likewise.
22317 * sysdeps/unix/getpagesize.c (__getpagesize): Likewise.
22318 * sysdeps/unix/sysv/linux/getclktck.c (__getclktck): Likewise.
22319 * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Likewise.
22320 * sysdeps/unix/sysv/linux/getpagesize.c (__getpagesize): Likewise.
22321 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Likewise.
22322 (__get_nprocs_conf): Likewise.
22323 (__get_phys_pages): Likewise.
22324 (__get_avphys_pages): Likewise.
22325 * time/clock.c (clock): Likewise.
22326 * time/tzset.c (__tzname_max): Likewise.
22327
223282013-06-07 Joseph Myers <joseph@codesourcery.com>
22329
22330 * bits/byteswap.h [__GNUC__ && !__GNUC_PREREQ (4, 3)]
22331 (__bswap_32): Do not use "register".
22332 * crypt/crypt.c (_ufc_doit_r): Likewise.
22333 * debug/stpcpy_chk.c (__stpcpy_chk): Likewise.
22334 * debug/wcscat_chk.c (__wcscat_chk): Likewise.
22335 * gmon/gmon.c (__monstartup): Likewise.
22336 * gmon/mcount.c (_MCOUNT_DECL(frompc, selfpc)): Likewise.
22337 * hurd/hurdmalloc.c (more_memory): Likewise.
22338 (malloc): Likewise.
22339 (free): Likewise.
22340 (realloc): Likewise.
22341 (malloc_fork_prepare): Likewise.
22342 (malloc_fork_parent): Likewise.
22343 (malloc_fork_child): Likewise.
22344 * include/rpc/auth_des.h (xdr_authdes_verf): Likewise.
22345 (_svcauth_des): Likewise.
22346 * inet/inet_lnaof.c (inet_lnaof): Likewise.
22347 * inet/inet_net.c (inet_network): Likewise.
22348 * inet/inet_netof.c (inet_netof): Likewise.
22349 * inet/rcmd.c (__validuser2_sa): Likewise.
22350 * io/fts.c (fts_open): Likewise.
22351 (fts_load): Likewise.
22352 (fts_close): Likewise.
22353 (fts_read): Likewise.
22354 (fts_children): Likewise.
22355 (fts_build): Likewise.
22356 (fts_stat): Likewise.
22357 (fts_sort): Likewise.
22358 (fts_alloc): Likewise.
22359 (fts_lfree): Likewise.
22360 * libio/fileops.c (_IO_new_file_xsputn): Likewise.
22361 (_IO_file_xsgetn): Likewise.
22362 (_IO_file_xsgetn_mmap): Likewise.
22363 * libio/iofopncook.c (_IO_cookie_read): Likewise.
22364 (_IO_cookie_write): Likewise.
22365 * libio/oldfileops.c (_IO_old_file_xsputn): Likewise.
22366 * libio/wfileops.c (_IO_wfile_xsputn): Likewise.
22367 * mach/msgserver.c (__mach_msg_server_timeout): Likewise.
22368 * malloc/obstack.c (_obstack_begin): Likewise.
22369 (_obstack_begin_1): Likewise.
22370 (_obstack_newchunk): Likewise.
22371 (_obstack_allocated_p): Likewise.
22372 (obstack_free): Likewise.
22373 (_obstack_memory_used): Likewise.
22374 * misc/getttyent.c (getttynam): Likewise.
22375 (getttyent): Likewise.
22376 (skip): Likewise.
22377 (value): Likewise.
22378 * misc/getusershell.c (initshells): Likewise.
22379 * misc/syslog.c (__vsyslog_chk): Likewise.
22380 * misc/ttyslot.c (ttyslot): Likewise.
22381 * nis/nis_hash.c (__nis_hash): Likewise.
22382 * posix/fnmatch_loop.c (FCT): Likewise.
22383 * posix/getconf.c (print_all): Likewise.
22384 (main): Likewise.
22385 * posix/getopt.c (exchange): Likewise.
22386 * posix/glob.c (globfree): Likewise.
22387 (prefix_array): Likewise.
22388 (__glob_pattern_type): Likewise.
22389 * resolv/arpa/nameser.h (NS_GET16): Likewise.
22390 (NS_GET32): Likewise.
22391 (NS_PUT16): Likewise.
22392 (NS_PUT32): Likewise.
22393 * resolv/gethnamaddr.c (getanswer): Likewise.
22394 (gethostbyname2): Likewise.
22395 (gethostbyaddr): Likewise.
22396 (_gethtent): Likewise.
22397 (_gethtbyname2): Likewise.
22398 (_gethtbyaddr): Likewise.
22399 * resolv/ns_print.c (dst_s_get_int16): Likewise.
22400 * resolv/nss_dns/dns-host.c (getanswer_r): Likewise.
22401 * resolv/res_init.c (__res_vinit): Likewise.
22402 (net_mask): Likewise.
22403 * resolv/res_mkquery.c (outchar): Likewise.
22404 (PRINT): Likewise.
22405 * stdio-common/printf_fp.c (outchar): Likewise.
22406 (PRINT): Likewise.
22407 * stdio-common/printf_fphex.c (outchar): Likewise.
22408 (PRINT): Likewise.
22409 * stdio-common/printf_size.c (outchar): Likewise.
22410 (PRINT): Likewise.
22411 * stdio-common/test_rdwr.c (main): Likewise.
22412 * stdio-common/tfformat.c (matches): Likewise.
22413 * stdio-common/vfprintf.c (outchar): Likewise.
22414 (printf_unknown): Likewise.
22415 (buffered_vfprintf): Likewise.
22416 * stdio-common/vfscanf.c (_IO_vfscanf_internal): Likewise.
22417 * stdio-common/xbug.c (AppendToBuffer): Likewise.
22418 (ReadFile): Likewise.
22419 * stdlib/qsort.c (SWAP): Likewise.
22420 (_quicksort): Likewise.
22421 * stdlib/setenv.c (__add_to_environ): Likewise.
22422 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Likewise.
22423 * stdlib/strtol_l.c (__strtol_l): Likewise.
22424 * stdlib/tst-strtod.c (main): Likewise.
22425 * stdlib/tst-strtol.c (main): Likewise.
22426 * stdlib/tst-strtoll.c (main): Likewise.
22427 * string/bits/string2.h (__strcmp_cc): Likewise.
22428 (__strcmp_cg): Likewise.
22429 (__strcspn_c1): Likewise.
22430 (__strcspn_c2): Likewise.
22431 (__strcspn_c3): Likewise.
22432 (__strspn_c1): Likewise.
22433 (__strspn_c2): Likewise.
22434 (__strspn_c3): Likewise.
22435 (__strsep_1c): Likewise.
22436 (__strsep_2c): Likewise.
22437 (__strsep_3c): Likewise.
22438 * string/memccpy.c (__memccpy): Likewise.
22439 * string/stpcpy.c (__stpcpy): Likewise.
22440 * string/strcmp.c (strcmp): Likewise.
22441 * string/strrchr.c (strrchr): Likewise.
22442 * sysdeps/generic/sigset-cvt-mask.h (sigset_get_old_mask):
22443 Likewise.
22444 * sysdeps/mach/hurd/getcwd.c
22445 (_hurd_canonicalize_directory_name_internal): Likewise.
22446 * sysdeps/mach/i386/sysdep.h (SNARF_ARGS): Likewise.
22447 * sysdeps/powerpc/powerpc32/power6/wcschr.c (wcschr): Likewise.
22448 * sysdeps/powerpc/powerpc32/power6/wcsrchr.c (wcsrchr): Likewise.
22449 * sysdeps/x86/bits/byteswap-16.h [__GNUC__] (__bswap_16):
22450 Likewise, in both definitions.
22451 * sysdeps/x86/bits/byteswap.h (__bswap_32): Likewise, in multiple
22452 definitions.
22453 [__GNUC_PREREQ (2, 0) && !__GNUC_PREREQ (4, 3) && __WORDSIZE ==
22454 64] (__bswap_64): Likewise.
22455 * time/test_time.c (main): Likewise.
22456 * time/tzfile.c (__tzfile_read): Likewise.
22457 (__tzfile_compute): Likewise.
22458 * time/tzset.c (__tzset_parse_tz): Likewise.
22459 (tzset_internal): Likewise.
22460 (compute_change): Likewise.
22461 * wcsmbs/wcscat.c (__wcscat): Likewise.
22462 * wcsmbs/wcschr.c (wcschr): Likewise.
22463 * wcsmbs/wcschrnul.c (__wcschrnul): Likewise.
22464 * wcsmbs/wcscspn.c (wcscspn): Likewise.
22465 * wcsmbs/wcspbrk.c (wcspbrk): Likewise.
22466 * wcsmbs/wcsrchr.c (wcsrchr): Likewise.
22467 * wcsmbs/wcsspn.c (wcsspn): Likewise.
22468 * wcsmbs/wcsstr.c (wcsstr): Likewise.
22469 * wcsmbs/wmemchr.c (wmemchr): Likewise.
22470 * wcsmbs/wmemcmp.c (WMEMCMP): Likewise.
22471 * wcsmbs/wmemset.c (wmemset): Likewise.
22472
224732013-06-06 Joseph Myers <joseph@codesourcery.com>
22474
22475 * scripts/config.guess: Update to version 2013-05-16.
22476 * scripts/config.sub: Update to version 2013-04-24.
22477 * scripts/install-sh: Update to version 2011-11-20.07.
22478 * scripts/mkinstalldirs: Update to version 2009-04-28.21.
22479 * scripts/move-if-change: Update to version 2012-01-06 07:23.
22480
224812013-06-06 Ondřej Bílka <neleai@seznam.cz>
22482
22483 * debug/fgetws_u_chk.c: Fix leading whitespaces.
22484 * elf/sln.c: Likewise.
22485 * hurd/hurd/ioctl.h: Likewise.
22486 * hurd/hurdmalloc.c: Likewise.
22487 * hurd/xattr.c: Likewise.
22488 * include/shlib-compat.h: Likewise.
22489 * inet/ruserpass.c: Likewise.
22490 * libio/iofgets_u.c: Likewise.
22491 * libio/iofgetws_u.c: Likewise.
22492 * locale/programs/ld-identification.c: Likewise.
22493 * locale/programs/ld-time.c: Likewise.
22494 * mach/msg-destroy.c: Likewise.
22495 * nss/nss_files/files-netgrp.c: Likewise.
22496 * resolv/res_data.c: Likewise.
22497 * soft-fp/op-1.h: Likewise.
22498 * soft-fp/op-2.h: Likewise.
22499 * soft-fp/op-4.h: Likewise.
22500 * soft-fp/op-common.h: Likewise.
22501 * stdio-common/printf_fphex.c: Likewise.
22502 * stdlib/strtod_l.c: Likewise.
22503 * sunrpc/rpc/clnt.h: Likewise.
22504 * sysdeps/generic/framestate.c: Likewise.
22505 * sysdeps/i386/bsd-_setjmp.S: Likewise.
22506 * sysdeps/i386/bsd-setjmp.S: Likewise.
22507 * sysdeps/i386/__longjmp.S: Likewise.
22508 * sysdeps/i386/setjmp.S: Likewise.
22509 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
22510 * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
22511 * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
22512 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
22513 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
22514 * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Likewise.
22515 * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
22516 * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
22517 * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
22518 * sysdeps/ieee754/ldbl-128/ldbl2mpn.c: Likewise.
22519 * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c: Likewise.
22520 * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
22521 * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
22522 * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
22523 * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
22524 * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
22525 * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
22526 * sysdeps/ieee754/ldbl-96/ldbl2mpn.c: Likewise.
22527 * sysdeps/ieee754/support.c: Likewise.
22528 * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
22529 * sysdeps/powerpc/powerpc32/lshift.S: Likewise.
22530 * sysdeps/sparc/sparc32/__longjmp.S: Likewise.
22531 * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c: Likewise.
22532 * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c: Likewise.
22533 * sysdeps/sparc/sparc64/soft-fp/qp_feq.c: Likewise.
22534 * sysdeps/sparc/sparc64/soft-fp/qp_fge.c: Likewise.
22535 * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c: Likewise.
22536 * sysdeps/sparc/sparc64/soft-fp/qp_fle.c: Likewise.
22537 * sysdeps/sparc/sparc64/soft-fp/qp_flt.c: Likewise.
22538 * sysdeps/sparc/sparc64/soft-fp/qp_fne.c: Likewise.
22539 * sysdeps/sparc/sparc64/soft-fp/qp_mul.c: Likewise.
22540 * sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
22541 * sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Likewise.
22542 * sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Likewise.
22543 * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
22544 * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
22545 * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
22546
225472013-06-05 Ondřej Bílka <neleai@seznam.cz>
22548
22549 * posix/transbug.c: Remove executable mode.
22550
225512013-06-05 Joseph Myers <joseph@codesourcery.com>
22552
22553 * crypt/speeds.c: Remove trailing whitespace.
22554 * dlfcn/default.c: Likewise.
22555 * elf/ifuncdep2.c: Likewise.
22556 * elf/ifuncmain1.c: Likewise.
22557 * elf/ifuncmain1vis.c: Likewise.
22558 * elf/testobj.h: Likewise.
22559 * elf/tst-stackguard1.c: Likewise.
22560 * gmon/sys/gmon.h: Likewise.
22561 * hurd/hurdmsg.c: Likewise.
22562 * hurd/new-fd.c: Likewise.
22563 * hurd/ports-get.c: Likewise.
22564 * iconvdata/ibm1008_420.c: Likewise.
22565 * inet/tst-getni1.c: Likewise.
22566 * inet/tst-getni2.c: Likewise.
22567 * libio/ioungetc.c: Likewise.
22568 * libio/wfiledoalloc.c: Likewise.
22569 * manual/libm-err-tab.pl: Likewise.
22570 * math/w_dremf.c: Likewise.
22571 * misc/ftruncate.c: Likewise.
22572 * posix/bug-glob2.c: Likewise.
22573 * posix/tst-pcre.c: Likewise.
22574 * posix/wait4.c: Likewise.
22575 * resolv/README: Likewise.
22576 * resolv/res_debug.h: Likewise.
22577 * resolv/tst-inet_ntop.c: Likewise.
22578 * setjmp/bug269-setjmp.c: Likewise.
22579 * soft-fp/extended.h: Likewise.
22580 * soft-fp/op-1.h: Likewise.
22581 * soft-fp/op-2.h: Likewise.
22582 * soft-fp/op-4.h: Likewise.
22583 * soft-fp/op-8.h: Likewise.
22584 * soft-fp/testit.c: Likewise.
22585 * stdio-common/bug16.c: Likewise.
22586 * stdlib/random.c: Likewise.
22587 * sunrpc/rpcsvc/rquota.x: Likewise.
22588 * sysdeps/ieee754/dbl-64/powtwo.tbl: Likewise.
22589 * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
22590 * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
22591 * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
22592 * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
22593 * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
22594 * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
22595 * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
22596 * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
22597 * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
22598 * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
22599 * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: Likewise.
22600 * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
22601 * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
22602 * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
22603 * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
22604 * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
22605 * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
22606 * sysdeps/ieee754/ldbl-128/s_remquol.c: Likewise.
22607 * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
22608 * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
22609 * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
22610 * sysdeps/ieee754/ldbl-128/t_sincosl.c: Likewise.
22611 * sysdeps/ieee754/ldbl-128ibm/k_cosl.c: Likewise.
22612 * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
22613 * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
22614 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
22615 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
22616 * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
22617 * sysdeps/ieee754/s_lib_version.c: Likewise.
22618 * sysdeps/mach/hurd/check_fds.c: Likewise.
22619 * sysdeps/mach/hurd/getsockname.c: Likewise.
22620 * sysdeps/mach/hurd/net/if_ppp.h: Likewise.
22621 * sysdeps/mach/hurd/recvfrom.c: Likewise.
22622 * sysdeps/powerpc/bits/link.h: Likewise.
22623 * sysdeps/powerpc/dl-procinfo.c: Likewise.
22624 * sysdeps/powerpc/fpu/feholdexcpt.c: Likewise.
22625 * sysdeps/powerpc/fpu/fenv_const.c: Likewise.
22626 * sysdeps/powerpc/fpu/fesetenv.c: Likewise.
22627 * sysdeps/powerpc/fpu/feupdateenv.c: Likewise.
22628 * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
22629 * sysdeps/powerpc/fpu/t_sqrt.c: Likewise.
22630 * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
22631 * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Likewise.
22632 * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: Likewise.
22633 * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: Likewise.
22634 * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.
22635 * sysdeps/powerpc/powerpc32/fpu/s_round.S: Likewise.
22636 * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Likewise.
22637 * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Likewise.
22638 * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Likewise.
22639 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Likewise.
22640 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Likewise.
22641 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Likewise.
22642 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
22643 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
22644 * sysdeps/powerpc/powerpc32/power4/hp-timing.c: Likewise.
22645 * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
22646 * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise.
22647 * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Likewise.
22648 * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Likewise.
22649 * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Likewise.
22650 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
22651 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
22652 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Likewise.
22653 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Likewise.
22654 * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Likewise.
22655 * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
22656 * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
22657 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: Likewise.
22658 * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Likewise.
22659 * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Likewise.
22660 * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
22661 * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: Likewise.
22662 * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Likewise.
22663 * sysdeps/powerpc/powerpc64/fpu/s_llrintf.S: Likewise.
22664 * sysdeps/powerpc/powerpc64/fpu/s_llround.S: Likewise.
22665 * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: Likewise.
22666 * sysdeps/powerpc/powerpc64/fpu/s_round.S: Likewise.
22667 * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
22668 * sysdeps/powerpc/powerpc64/fpu/s_roundl.S: Likewise.
22669 * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Likewise.
22670 * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
22671 * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: Likewise.
22672 * sysdeps/powerpc/powerpc64/hp-timing.c: Likewise.
22673 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
22674 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
22675 * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
22676 * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
22677 * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: Likewise.
22678 * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: Likewise.
22679 * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: Likewise.
22680 * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
22681 * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Likewise.
22682 * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: Likewise.
22683 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: Likewise.
22684 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: Likewise.
22685 * sysdeps/powerpc/powerpc64/strlen.S: Likewise.
22686 * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
22687 * sysdeps/powerpc/sysdep.h: Likewise.
22688 * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
22689 * sysdeps/s390/s390-64/sub_n.S: Likewise.
22690 * sysdeps/sh/dl-trampoline.S: Likewise.
22691 * sysdeps/sh/memset.S: Likewise.
22692 * sysdeps/sh/sh4/fpu/fclrexcpt.c: Likewise.
22693 * sysdeps/sh/strlen.S: Likewise.
22694 * sysdeps/sparc/sparc32/dl-trampoline.S: Likewise.
22695 * sysdeps/sparc/sparc32/dotmul.S: Likewise.
22696 * sysdeps/sparc/sparc32/memcpy.S: Likewise.
22697 * sysdeps/sparc/sparc32/rem.S: Likewise.
22698 * sysdeps/sparc/sparc32/sdiv.S: Likewise.
22699 * sysdeps/sparc/sparc32/soft-fp/q_neg.c: Likewise.
22700 * sysdeps/sparc/sparc32/strchr.S: Likewise.
22701 * sysdeps/sparc/sparc32/udiv.S: Likewise.
22702 * sysdeps/sparc/sparc32/urem.S: Likewise.
22703 * sysdeps/sparc/sparc64/add_n.S: Likewise.
22704 * sysdeps/sparc/sparc64/memcpy.S: Likewise.
22705 * sysdeps/sparc/sparc64/rawmemchr.S: Likewise.
22706 * sysdeps/sparc/sparc64/soft-fp/s_frexpl.c: Likewise.
22707 * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h: Likewise.
22708 * sysdeps/sparc/sparc64/stpncpy.S: Likewise.
22709 * sysdeps/sparc/sparc64/strncmp.S: Likewise.
22710 * sysdeps/sparc/sparc64/strncpy.S: Likewise.
22711 * sysdeps/unix/bsd/times.c: Likewise.
22712 * sysdeps/unix/sysv/linux/a.out.h: Likewise.
22713 * sysdeps/unix/sysv/linux/net/if_ppp.h: Likewise.
22714 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
22715 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
22716 * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Likewise.
22717 * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: Likewise.
22718 * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Likewise.
22719 * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Likewise.
22720 * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Likewise.
22721 * sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c: Likewise.
22722 * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Likewise.
22723 * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
22724 * sysdeps/unix/sysv/linux/s390/s390-64/mmap.S: Likewise.
22725 * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h: Likewise.
22726 * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
22727 * sysdeps/unix/sysv/linux/s390/s390-64/socket.S: Likewise.
22728 * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
22729 * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
22730 * sysdeps/unix/sysv/linux/scsi/scsi_ioctl.h: Likewise.
22731 * sysdeps/unix/sysv/linux/sh/brk.c: Likewise.
22732 * sysdeps/unix/sysv/linux/sh/clone.S: Likewise.
22733 * sysdeps/unix/sysv/linux/sh/sh3/getcontext.S: Likewise.
22734 * sysdeps/unix/sysv/linux/sh/sh3/register-dump.h: Likewise.
22735 * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S: Likewise.
22736 * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S: Likewise.
22737 * sysdeps/unix/sysv/linux/sh/vfork.S: Likewise.
22738 * sysdeps/unix/sysv/linux/sparc/a.out.h: Likewise.
22739 * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
22740 * sysdeps/unix/sysv/linux/sys/personality.h: Likewise.
22741 * sysdeps/x86_64/fpu/s_ceill.S: Likewise.
22742 * sysdeps/x86_64/fpu/s_llrintl.S: Likewise.
22743 * sysdeps/x86_64/strcspn.S: Likewise.
22744
227452013-06-05 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
22746
22747 * locale/C-translit.h: Revert #include <stdint.h> because this is a
22748 generated file. Regenerate properly from gen-translit.pl.
22749 * locale/gen-translit.pl: Add #include <stdint.h>. This generates
22750 locale/C-translit.h.
22751
227522013-06-05 Andreas Schwab <schwab@suse.de>
22753
22754 [BZ #15100]
22755 * time/strptime_l.c (__strptime_internal): Count Sunday in a %W
22756 week as 6 instead of -1.
22757 * time/tst-strptime.c (day_tests): Add test case.
22758
227592013-06-05 Siddhesh Poyarekar <siddhesh@redhat.com>
22760
22761 * sysdeps/generic/math_private.h
22762 (libc_feholdexcept_setround_53bit): Replace with
22763 libc_feholdsetround_53bit.
22764 (libc_feupdateenv_53bit): Replace with
22765 libc_feresetround_53bit.
22766 (SET_RESTORE_ROUND_53BIT): Adjust.
22767
227682013-06-03 Siddhesh Poyarekar <siddhesh@redhat.com>
22769
22770 * string/test-strchrnul.c: Add copyright header.
22771
22772 * posix/tst-getaddrinfo4.c: Increase test timeout.
22773
227742013-06-03 Carlos O'Donell <carlos@redhat.com>
22775
22776 [BZ #15536]
22777 * math/libm-test.inc (MAX_EXP): Remove
22778 (MIN_EXP): Define.
22779 (ulp): Use MIN_EXP - MANT_DIG.
22780 (check_ulp): Verify subnormal ulps. Only allow a range of +/- 1 ulp.
22781
227822013-05-31 Carlos O'Donell <carlos@redhat.com>
22783
22784 * po/be.po: Revert last change.
22785 * po/zh_CN.po: Likewise.
22786 * po/header.pot: Likewise.
22787
227882013-05-31 Joseph Myers <joseph@codesourcery.com>
22789
22790 * Makefile ($(common-objpfx)linkobj/libc.so): Define
22791 link-libc-deps to empty as target-specific variable.
22792 * Makerules (link-libc-args): New variable.
22793 (libc-for-link): Likewise.
22794 (link-libc-deps): Likewise.
22795 (lib%.so): Depend on $(link-libc-deps). Link with
22796 $(link-libc-args).
22797 (build-module): Link with $(link-libc-args).
22798 (build-module-asneeded): Likewise.
22799 (build-module-helper-objlist): Filter out $(link-libc-deps) from
22800 list of objects.
22801 ($(common-objpfx)libc.so): Define link-libc-deps to empty as
22802 target-specific variable.
22803 ($(extra-modules-build:%=$(objpfx)%.so)): Depend on
22804 $(link-libc-deps) instead of libc.so and libc_nonshared.a.
22805 * crypt/Makefile ($(objpfx)libcrypt.so): Remove dependencies on
22806 libc.
22807 * debug/Makefile ($(objpfx)libSegFault.so): Remove dependencies on
22808 libc and ld.so.
22809 ($(objpfx)libpcprofile.so): Likewise.
22810 * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Remove ld.so and
22811 libc_nonshared.a.
22812 ($(objpfx)libdl.so): Remove dependencies on libc and ld.so.
22813 * hesiod/Makefile ($(objpfx)libnss_hesiod.so): Likewise.
22814 * iconvdata/extra-module.mk ($(objpfx)$(mod).so): Depend on
22815 $(link-libc-deps).
22816 ($(objpfx)$(mod).so): Remove dependencies on libc and ld.so.
22817 * locale/Makefile ($(objpfx)libBrokenLocale.so): Likewise.
22818 * login/Makefile ($(objpfx)libutil.so): Likewise.
22819 * malloc/Makefile ($(objpfx)libmemusage.so): Likewise.
22820 * math/Makefile ($(objpfx)libm.so): Likewise.
22821 * nis/Makefile ($(services:%=$(objpfx)libnss_%.so)
22822 $(objpfx)libnsl.so): Define libc-for-link as target-specific
22823 variable instead of depending directly on libc.
22824 * nss/Makefile ($(services:%=$(objpfx)libnss_%.so)): Likewise.
22825 ($(objpfx)/libnss_test1.so): Change dependencies on libc to
22826 $(link-libc-deps).
22827 * resolv/Makefile ($(objpfx)libresolv.so): Remove dependencies on
22828 libc.
22829 [$(have-ssp) = yes] (LDLIBS-resolv.so): Remove variable.
22830 ($(objpfx)libnss_dns.so): Remove dependencies on libc.
22831 ($(objpfx)libanl.so): Likewise.
22832 * rt/Makefile ($(objpfx)librt.so): Remove dependencies on libc and
22833 ld.so.
22834 * stdlib/Makefile ($(objpfx)tst-putenvmod.so): Depend on
22835 $(link-libc-deps).
22836 * sysdeps/i386/fpu/Makefile: Remove file.
22837 * sysdeps/powerpc/fpu/Makefile [$(subdir) = math]
22838 ($(objpfx)libm.so): Remove dependency on ld.so.
22839
228402013-05-30 Patsy Franklin <pfrankli@redhat.com>
22841
22842 [BZ # 15553]
22843 * nis/yp_xdr.c (XDRMAXNAME): Define.
22844 (XDRMAXRECORD): Define.
22845 (xdr_domainname): Use XDRMAXNAME.
22846 (xdr_mapname): Likewise.
22847 (xdr_peername): Likewise.
22848 (xdr_keydat): Use XDRMAXRECORD.
22849 (xdr_valdat): Likewise.
22850
228512013-05-30 Jeff Law <law@redhat.com>
22852
22853 [BZ #14256]
22854 * manual/errno.texi (ESTALE): Update to account for more than
22855 just NFS file systems.
22856 * sysdeps/gnu/errlist.c: Regenerated.
22857
228582013-05-29 Siddhesh Poyarekar <siddhesh@redhat.com>
22859
22860 [BZ #15465]
22861 * elf/Makefile (tests): Add tst-null-argv.
22862 (modules-names): Add tst-null-argv-lib.
22863 ($(objpfx)tst-null-argv): Depend on tst-null-argv-lib.so.
22864 (tst-null-argv-ENV): Set environment for tst-null-argv.
22865 * sysdeps/generic/ldsodefs.h (DSO_FILENAME): New macro.
22866 (RTLD_PROGNAME): New macro.
22867 * elf/tst-null-argv.c: New test case.
22868 * elf/tst-null-argv-lib.c: Library for test case.
22869 * elf/dl-conflict.c (_dl_resolve_conflicts): Use DSO_FILENAME.
22870 * elf/dl-deps.c (_dl_map_object_deps): Likewise.
22871 * elf/dl-error.c (_dl_signal_error): Use RTLD_PROGNAME.
22872 * elf/dl-fini.c (_dl_fini): Use DSO_FILENAME.
22873 * elf/dl-init.c (call_init): Likewise.
22874 (_dl_init): Likewise.
22875 * elf/dl-load.c (print_search_path): Likewise.
22876 (_dl_map_object): Likewise.
22877 * elf/dl-lookup.c (do_lookup_x): Likewise.
22878 (add_dependency): Likewise.
22879 (_dl_lookup_symbol_x): Likewise.
22880 (_dl_debug_bindings): Likewise.
22881 * elf/dl-open.c (_dl_show_scope): Likewise.
22882 * elf/dl-reloc.c (_dl_relocate_object): Likewise.
22883 * elf/dl-version.c (match_symbol): Likewise.
22884 (_dl_check_map_versions): Likewise.
22885 * elf/rtld.c (dl_main): Likewise.
22886 (print_unresolved): Use RTLD_PROGNAME.
22887 (print_missing_version): Likewise.
22888 * sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
22889 (elf_machine_rela): Likewise.
22890 * sysdeps/powerpc/powerpc32/dl-machine.c
22891 (__process_machine_rela): Likewise.
22892 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
22893 Likewise.
22894 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
22895 Likewise.
22896 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
22897 Likewise.
22898 * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
22899 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela):
22900 Likewise.
22901 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
22902 Likewise.
22903 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
22904
229052013-05-28 Carlos O'Donell <carlos@redhat.com>
22906
22907 * po/be.po: Add descriptive title.
22908 * po/zh_CN.po: Likewise.
22909 * po/header.pot: Likewise.
22910
229112013-05-28 Mike Frysinger <vapier@gentoo.org>
22912
22913 * locale/programs/locarchive.c (create_archive): Inlucde fname in
22914 error message.
22915 (enlarge_archive): Likewise.
22916
229172013-05-28 Ben North <ben@redfrontdoor.org>
22918
22919 * manual/arith.texi (frexp): It is the magnitude of the return
22920 value which lies in [0.5, 1), not the return value itself.
22921
229222013-05-28 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
22923
22924 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
22925
229262013-05-26 Thomas Schwinge <thomas@codesourcery.com>
22927
22928 * stdio-common/bug26.c (main): Correct fscanf template.
22929
22930 * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start:go): Don't
22931 declare _dl_skip_args.
22932
22933 * sysdeps/mach/hurd/i386/init-first.c (_dl_non_dynamic_init):
22934 Don't declare.
22935
22936 * manual/platform.texi: Add missing @end deftypefun.
22937
229382013-05-24 Joseph Myers <joseph@codesourcery.com>
22939
22940 [BZ #15529]
22941 * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Set high
22942 bit of mantissa of 2^16382.
22943 * math/libm-test.inc (hypot_test_data): Add more tests.
22944
22945 * math/libm-test.inc: Add drem and pow10 to list of tested
22946 functions.
22947 (pow10_test): New function.
22948 (drem_test): Likewise.
22949 (drem_test_tonearest): Likewise.
22950 (drem_test_towardzero): Likewise.
22951 (drem_test_downward): Likewise.
22952 (drem_test_upward): Likewise.
22953 (main): Call the new functions.
22954
22955 * math/libm-test.inc (finite_test_data): Remove.
22956 (finite_test): Run tests from isfinite_test_data.
22957 (gamma_test_data): Remove.
22958 (gamma_test): Run tests from lgamma_test_data.
22959 * sysdeps/i386/fpu/libm-test-ulps: Update.
22960 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
22961
229622013-05-24 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
22963
22964 * manual/platform.texi: Add PowerPC PPR function set documentation.
22965 * sysdeps/powerpc/sys/platform/ppc.h: Add PowerPC PPR set function
22966 implementation.
22967
229682013-05-24 Carlos O'Donell <carlos@redhat.com>
22969
22970 * math/libm-test.inc (MAX_EXP): Define.
22971 (ULPDIFF): Define.
22972 (ulp): New function.
22973 (check_float_internal): Use ULPDIFF.
22974 (cpow_test): Disable failing test.
22975 (check_ulp): Test ulp() implemetnation.
22976 (main): Call check_ulp before starting tests.
22977
229782013-05-24 Joseph Myers <joseph@codesourcery.com>
22979
22980 * math/gen-libm-test.pl (generate_testfile): Do not handle
22981 START_DATA and END_DATA.
22982 * math/libm-test.inc (acos_test_data): Do not use START_DATA and
22983 END_DATA.
22984 (acos_tonearest_test_data): Likewise.
22985 (acos_towardzero_test_data): Likewise.
22986 (acos_downward_test_data): Likewise.
22987 (acos_upward_test_data): Likewise.
22988 (acosh_test_data): Likewise.
22989 (asin_test_data): Likewise.
22990 (asin_tonearest_test_data): Likewise.
22991 (asin_towardzero_test_data): Likewise.
22992 (asin_downward_test_data): Likewise.
22993 (asin_upward_test_data): Likewise.
22994 (asinh_test_data): Likewise.
22995 (atan_test_data): Likewise.
22996 (atanh_test_data): Likewise.
22997 (atan2_test_data): Likewise.
22998 (cabs_test_data): Likewise.
22999 (cacos_test_data): Likewise.
23000 (cacosh_test_data): Likewise.
23001 (carg_test_data): Likewise.
23002 (casin_test_data): Likewise.
23003 (casinh_test_data): Likewise.
23004 (catan_test_data): Likewise.
23005 (catanh_test_data): Likewise.
23006 (cbrt_test_data): Likewise.
23007 (ccos_test_data): Likewise.
23008 (ccosh_test_data): Likewise.
23009 (ceil_test_data): Likewise.
23010 (cexp_test_data): Likewise.
23011 (cimag_test_data): Likewise.
23012 (clog_test_data): Likewise.
23013 (clog10_test_data): Likewise.
23014 (conj_test_data): Likewise.
23015 (copysign_test_data): Likewise.
23016 (cos_test_data): Likewise.
23017 (cos_tonearest_test_data): Likewise.
23018 (cos_towardzero_test_data): Likewise.
23019 (cos_downward_test_data): Likewise.
23020 (cos_upward_test_data): Likewise.
23021 (cosh_test_data): Likewise.
23022 (cosh_tonearest_test_data): Likewise.
23023 (cosh_towardzero_test_data): Likewise.
23024 (cosh_downward_test_data): Likewise.
23025 (cosh_upward_test_data): Likewise.
23026 (cpow_test_data): Likewise.
23027 (cproj_test_data): Likewise.
23028 (creal_test_data): Likewise.
23029 (csin_test_data): Likewise.
23030 (csinh_test_data): Likewise.
23031 (csqrt_test_data): Likewise.
23032 (ctan_test_data): Likewise.
23033 (ctan_tonearest_test_data): Likewise.
23034 (ctan_towardzero_test_data): Likewise.
23035 (ctan_downward_test_data): Likewise.
23036 (ctan_upward_test_data): Likewise.
23037 (ctanh_test_data): Likewise.
23038 (ctanh_tonearest_test_data): Likewise.
23039 (ctanh_towardzero_test_data): Likewise.
23040 (ctanh_downward_test_data): Likewise.
23041 (ctanh_upward_test_data): Likewise.
23042 (erf_test_data): Likewise.
23043 (erfc_test_data): Likewise.
23044 (exp_test_data): Likewise.
23045 (exp_tonearest_test_data): Likewise.
23046 (exp_towardzero_test_data): Likewise.
23047 (exp_downward_test_data): Likewise.
23048 (exp_upward_test_data): Likewise.
23049 (exp10_test_data): Likewise.
23050 (exp2_test_data): Likewise.
23051 (expm1_test_data): Likewise.
23052 (fabs_test_data): Likewise.
23053 (fdim_test_data): Likewise.
23054 (finite_test_data): Likewise.
23055 (floor_test_data): Likewise.
23056 (fma_test_data): Likewise.
23057 (fma_towardzero_test_data): Likewise.
23058 (fma_downward_test_data): Likewise.
23059 (fma_upward_test_data): Likewise.
23060 (fmax_test_data): Likewise.
23061 (fmin_test_data): Likewise.
23062 (fmod_test_data): Likewise.
23063 (fpclassify_test_data): Likewise.
23064 (frexp_test_data): Likewise.
23065 (gamma_test_data): Likewise.
23066 (hypot_test_data): Likewise.
23067 (ilogb_test_data): Likewise.
23068 (isfinite_test_data): Likewise.
23069 (isgreater_test_data): Likewise.
23070 (isgreaterequal_test_data): Likewise.
23071 (isinf_test_data): Likewise.
23072 (isless_test_data): Likewise.
23073 (islessequal_test_data): Likewise.
23074 (islessgreater_test_data): Likewise.
23075 (isnan_test_data): Likewise.
23076 (isnormal_test_data): Likewise.
23077 (issignaling_test_data): Likewise.
23078 (isunordered_test_data): Likewise.
23079 (j0_test_data): Likewise.
23080 (j1_test_data): Likewise.
23081 (jn_test_data): Likewise.
23082 (ldexp_test_data): Likewise.
23083 (lgamma_test_data): Likewise.
23084 (lrint_test_data): Likewise.
23085 (lrint_tonearest_test_data): Likewise.
23086 (lrint_towardzero_test_data): Likewise.
23087 (lrint_downward_test_data): Likewise.
23088 (lrint_upward_test_data): Likewise.
23089 (llrint_test_data): Likewise.
23090 (llrint_tonearest_test_data): Likewise.
23091 (llrint_towardzero_test_data): Likewise.
23092 (llrint_downward_test_data): Likewise.
23093 (llrint_upward_test_data): Likewise.
23094 (log_test_data): Likewise.
23095 (log10_test_data): Likewise.
23096 (log1p_test_data): Likewise.
23097 (log2_test_data): Likewise.
23098 (logb_test_data): Likewise.
23099 (logb_downward_test_data): Likewise.
23100 (lround_test_data): Likewise.
23101 (llround_test_data): Likewise.
23102 (modf_test_data): Likewise.
23103 (nearbyint_test_data): Likewise.
23104 (nextafter_test_data): Likewise.
23105 (nexttoward_test_data): Likewise.
23106 (pow_test_data): Likewise.
23107 (pow_tonearest_test_data): Likewise.
23108 (pow_towardzero_test_data): Likewise.
23109 (pow_downward_test_data): Likewise.
23110 (pow_upward_test_data): Likewise.
23111 (remainder_test_data): Likewise.
23112 (remainder_tonearest_test_data): Likewise.
23113 (remainder_towardzero_test_data): Likewise.
23114 (remainder_downward_test_data): Likewise.
23115 (remainder_upward_test_data): Likewise.
23116 (remquo_test_data): Likewise.
23117 (rint_test_data): Likewise.
23118 (rint_tonearest_test_data): Likewise.
23119 (rint_towardzero_test_data): Likewise.
23120 (rint_downward_test_data): Likewise.
23121 (rint_upward_test_data): Likewise.
23122 (round_test_data): Likewise.
23123 (scalb_test_data): Likewise.
23124 (scalbn_test_data): Likewise.
23125 (scalbln_test_data): Likewise.
23126 (signbit_test_data): Likewise.
23127 (sin_test_data): Likewise.
23128 (sin_tonearest_test_data): Likewise.
23129 (sin_towardzero_test_data): Likewise.
23130 (sin_downward_test_data): Likewise.
23131 (sin_upward_test_data): Likewise.
23132 (sincos_test_data): Likewise.
23133 (sinh_test_data): Likewise.
23134 (sinh_tonearest_test_data): Likewise.
23135 (sinh_towardzero_test_data): Likewise.
23136 (sinh_downward_test_data): Likewise.
23137 (sinh_upward_test_data): Likewise.
23138 (sqrt_test_data): Likewise.
23139 (tan_test_data): Likewise.
23140 (tan_tonearest_test_data): Likewise.
23141 (tan_towardzero_test_data): Likewise.
23142 (tan_downward_test_data): Likewise.
23143 (tan_upward_test_data): Likewise.
23144 (tanh_test_data): Likewise.
23145 (tgamma_test_data): Likewise.
23146 (trunc_test_data): Likewise.
23147 (y0_test_data): Likewise.
23148 (y1_test_data): Likewise.
23149 (yn_test_data): Likewise.
23150 (significand_test_data): Likewise.
23151
23152 * math/gen-libm-test.pl (@functions): Remove variable.
23153 (generate_testfile): Don't handle START and END lines.
23154 * math/libm-test.inc (START): New macro.
23155 (END): Likewise.
23156 (END_COMPLEX): Likewise.
23157 (acos_test): Use END macro without arguments.
23158 (acos_test_tonearest): Likewise.
23159 (acos_test_towardzero): Likewise.
23160 (acos_test_downward): Likewise.
23161 (acos_test_upward): Likewise.
23162 (acosh_test): Likewise.
23163 (asin_test): Likewise.
23164 (asin_test_tonearest): Likewise.
23165 (asin_test_towardzero): Likewise.
23166 (asin_test_downward): Likewise.
23167 (asin_test_upward): Likewise.
23168 (asinh_test): Likewise.
23169 (atan_test): Likewise.
23170 (atanh_test): Likewise.
23171 (atan2_test): Likewise.
23172 (cabs_test): Likewise.
23173 (cacos_test): Use END_COMPLEX macro without arguments.
23174 (cacosh_test): Likewise.
23175 (carg_test): Use END macro without arguments.
23176 (casin_test): Use END_COMPLEX macro without arguments.
23177 (casinh_test): Likewise.
23178 (catan_test): Likewise.
23179 (catanh_test): Likewise.
23180 (cbrt_test): Use END macro without arguments.
23181 (ccos_test): Use END_COMPLEX macro without arguments.
23182 (ccosh_test): Likewise.
23183 (ceil_test): Use END macro without arguments.
23184 (cexp_test): Use END_COMPLEX macro without arguments.
23185 (cimag_test): Use END macro without arguments.
23186 (clog_test): Use END_COMPLEX macro without arguments.
23187 (clog10_test): Likewise.
23188 (conj_test): Likewise.
23189 (copysign_test): Use END macro without arguments.
23190 (cos_test): Likewise.
23191 (cos_test_tonearest): Likewise.
23192 (cos_test_towardzero): Likewise.
23193 (cos_test_downward): Likewise.
23194 (cos_test_upward): Likewise.
23195 (cosh_test): Likewise.
23196 (cosh_test_tonearest): Likewise.
23197 (cosh_test_towardzero): Likewise.
23198 (cosh_test_downward): Likewise.
23199 (cosh_test_upward): Likewise.
23200 (cpow_test): Use END_COMPLEX macro without arguments.
23201 (cproj_test): Likewise.
23202 (creal_test): Use END macro without arguments.
23203 (csin_test): Use END_COMPLEX macro without arguments.
23204 (csinh_test): Likewise.
23205 (csqrt_test): Likewise.
23206 (ctan_test): Likewise.
23207 (ctan_test_tonearest): Likewise.
23208 (ctan_test_towardzero): Likewise.
23209 (ctan_test_downward): Likewise.
23210 (ctan_test_upward): Likewise.
23211 (ctanh_test): Likewise.
23212 (ctanh_test_tonearest): Likewise.
23213 (ctanh_test_towardzero): Likewise.
23214 (ctanh_test_downward): Likewise.
23215 (ctanh_test_upward): Likewise.
23216 (erf_test): Use END macro without arguments.
23217 (erfc_test): Likewise.
23218 (exp_test): Likewise.
23219 (exp_test_tonearest): Likewise.
23220 (exp_test_towardzero): Likewise.
23221 (exp_test_downward): Likewise.
23222 (exp_test_upward): Likewise.
23223 (exp10_test): Likewise.
23224 (exp2_test): Likewise.
23225 (expm1_test): Likewise.
23226 (fabs_test): Likewise.
23227 (fdim_test): Likewise.
23228 (finite_test): Likewise.
23229 (floor_test): Likewise.
23230 (fma_test): Likewise.
23231 (fma_test_towardzero): Likewise.
23232 (fma_test_downward): Likewise.
23233 (fma_test_upward): Likewise.
23234 (fmax_test): Likewise.
23235 (fmin_test): Likewise.
23236 (fmod_test): Likewise.
23237 (fpclassify_test): Likewise.
23238 (frexp_test): Likewise.
23239 (gamma_test): Likewise.
23240 (hypot_test): Likewise.
23241 (ilogb_test): Likewise.
23242 (isfinite_test): Likewise.
23243 (isgreater_test): Likewise.
23244 (isgreaterequal_test): Likewise.
23245 (isinf_test): Likewise.
23246 (isless_test): Likewise.
23247 (islessequal_test): Likewise.
23248 (islessgreater_test): Likewise.
23249 (isnan_test): Likewise.
23250 (isnormal_test): Likewise.
23251 (issignaling_test): Likewise.
23252 (isunordered_test): Likewise.
23253 (j0_test): Likewise.
23254 (j1_test): Likewise.
23255 (jn_test): Likewise.
23256 (ldexp_test): Likewise.
23257 (lgamma_test): Likewise.
23258 (lrint_test): Likewise.
23259 (lrint_test_tonearest): Likewise.
23260 (lrint_test_towardzero): Likewise.
23261 (lrint_test_downward): Likewise.
23262 (lrint_test_upward): Likewise.
23263 (llrint_test): Likewise.
23264 (llrint_test_tonearest): Likewise.
23265 (llrint_test_towardzero): Likewise.
23266 (llrint_test_downward): Likewise.
23267 (llrint_test_upward): Likewise.
23268 (log_test): Likewise.
23269 (log10_test): Likewise.
23270 (log1p_test): Likewise.
23271 (log2_test): Likewise.
23272 (logb_test): Likewise.
23273 (logb_test_downward): Likewise.
23274 (lround_test): Likewise.
23275 (llround_test): Likewise.
23276 (modf_test): Likewise.
23277 (nearbyint_test): Likewise.
23278 (nextafter_test): Likewise.
23279 (nexttoward_test): Likewise.
23280 (pow_test): Likewise.
23281 (pow_test_tonearest): Likewise.
23282 (pow_test_towardzero): Likewise.
23283 (pow_test_downward): Likewise.
23284 (pow_test_upward): Likewise.
23285 (remainder_test): Likewise.
23286 (remainder_test_tonearest): Likewise.
23287 (remainder_test_towardzero): Likewise.
23288 (remainder_test_downward): Likewise.
23289 (remainder_test_upward): Likewise.
23290 (remquo_test): Likewise.
23291 (rint_test): Likewise.
23292 (rint_test_tonearest): Likewise.
23293 (rint_test_towardzero): Likewise.
23294 (rint_test_downward): Likewise.
23295 (rint_test_upward): Likewise.
23296 (round_test): Likewise.
23297 (scalb_test): Likewise.
23298 (scalbn_test): Likewise.
23299 (scalbln_test): Likewise.
23300 (signbit_test): Likewise.
23301 (sin_test): Likewise.
23302 (sin_test_tonearest): Likewise.
23303 (sin_test_towardzero): Likewise.
23304 (sin_test_downward): Likewise.
23305 (sin_test_upward): Likewise.
23306 (sincos_test): Likewise.
23307 (sinh_test): Likewise.
23308 (sinh_test_tonearest): Likewise.
23309 (sinh_test_towardzero): Likewise.
23310 (sinh_test_downward): Likewise.
23311 (sinh_test_upward): Likewise.
23312 (sqrt_test): Likewise.
23313 (tan_test): Likewise.
23314 (tan_test_tonearest): Likewise.
23315 (tan_test_towardzero): Likewise.
23316 (tan_test_downward): Likewise.
23317 (tan_test_upward): Likewise.
23318 (tanh_test): Likewise.
23319 (tgamma_test): Likewise.
23320 (trunc_test): Likewise.
23321 (y0_test): Likewise.
23322 (y1_test): Likewise.
23323 (yn_test): Likewise.
23324 (significand_test): Likewise.
23325
233262013-05-24 Ondřej Bílka <neleai@seznam.cz>
23327
23328 [BZ #15381]
23329 * libio/genops.c (_IO_no_init): Initialize wide struct info.
23330
233312013-05-23 Edjunior Machado <emachado@linux.vnet.ibm.com>
23332
23333 [BZ #14894]
23334 * sysdeps/powerpc/sys/platform/ppc.h: Add __ppc_yield,
23335 __ppc_mdoio and __ppc_mdoom.
23336 * manual/platform.texi: Document new functions __ppc_yield,
23337 __ppc_mdoio and __ppc_mdoom.
23338
233392013-05-22 Carlos O'Donell <carlos@redhat.com>
23340
23341 * elf/ldconfig.c (is_hwcap_platform): Make comments full setences.
23342 (main): Mention "tls" pseudo-hwcap is legacy.
23343 * elf/dl-hwcaps.c (_dl_important_hwcaps): Correct rounding comment.
23344
233452013-05-22 Joseph Myers <joseph@codesourcery.com>
23346
23347 * math/gen-libm-test.pl (parse_args): Output only string of
23348 arguments as text for test name, not full call or descriptions of
23349 tests for extra outputs.
23350 (generate_testfile): Do not pass function name to parse_args.
23351 Generate this_func variable from START.
23352 * math/libm-test.inc (struct test_f_f_data): Rename test_name
23353 field to arg_str.
23354 (struct test_ff_f_data): Likewise.
23355 (test_ff_f_data_nexttoward): Likewise.
23356 (struct test_fi_f_data): Likewise.
23357 (struct test_fl_f_data): Likewise.
23358 (struct test_if_f_data): Likewise.
23359 (struct test_fff_f_data): Likewise.
23360 (struct test_c_f_data): Likewise.
23361 (struct test_f_f1_data): Likewise. Remove field extra_name.
23362 (struct test_fF_f1_data): Likewise.
23363 (struct test_ffI_f1_data): Likewise.
23364 (struct test_c_c_data): Rename test_name field to arg_str.
23365 (struct test_cc_c_data): Likewise.
23366 (struct test_f_i_data): Likewise.
23367 (struct test_ff_i_data): Likewise.
23368 (struct test_f_l_data): Likewise.
23369 (struct test_f_L_data): Likewise.
23370 (struct test_fFF_11_data): Likewise. Remove fields extra1_name
23371 and extra2_name.
23372 (COMMON_TEST_SETUP): New macro.
23373 (EXTRA_OUTPUT_TEST_SETUP): Likewise.
23374 (COMMON_TEST_CLEANUP): Likewise.
23375 (EXTRA_OUTPUT_TEST_CLEANUP): Likewise.
23376 (RUN_TEST_f_f): Take argument string. Call new setup and cleanup
23377 macros.
23378 (RUN_TEST_LOOP_f_f): Update call to RUN_TEST_f_f.
23379 (RUN_TEST_2_f): Take argument string. Call new setup and cleanup
23380 macros.
23381 (RUN_TEST_LOOP_2_f): Update call to RUN_TEST_2_f.
23382 (RUN_TEST_fff_f): Take argument string. Call new setup and
23383 cleanup macros.
23384 (RUN_TEST_LOOP_fff_f): Update call to RUN_TEST_fff_f.
23385 (RUN_TEST_c_f): Take argument string. Call new setup and cleanup
23386 macros.
23387 (RUN_TEST_LOOP_c_f): Update call to RUN_TEST_c_f.
23388 (RUN_TEST_f_f1): Take argument string. Call new setup and cleanup
23389 macros.
23390 (RUN_TEST_LOOP_f_f1): Update call to RUN_TEST_f_f1.
23391 (RUN_TEST_fF_f1): Take argument string. Call new setup and
23392 cleanup macros.
23393 (RUN_TEST_LOOP_fF_f1): Update call to RUN_TEST_fF_f1.
23394 (RUN_TEST_fI_f1): Take argument string. Call new setup and
23395 cleanup macros.
23396 (RUN_TEST_LOOP_fI_f1): Update call to RUN_TEST_fI_f1.
23397 (RUN_TEST_ffI_f1): Take argument string. Call new setup and
23398 cleanup macros.
23399 (RUN_TEST_LOOP_ffI_f1): Update call to RUN_TEST_ffI_f1.
23400 (RUN_TEST_c_c): Take argument string. Call new setup and cleanup
23401 macros.
23402 (RUN_TEST_LOOP_c_c): Update call to RUN_TEST_c_c.
23403 (RUN_TEST_cc_c): Take argument string. Call new setup and cleanup
23404 macros.
23405 (RUN_TEST_LOOP_cc_c): Update call to RUN_TEST_cc_c.
23406 (RUN_TEST_f_i): Take argument string. Call new setup and cleanup
23407 macros.
23408 (RUN_TEST_LOOP_f_i): Update call to RUN_TEST_f_i.
23409 (RUN_TEST_f_i_tg): Take argument string. Call new setup and
23410 cleanup macros.
23411 (RUN_TEST_LOOP_f_i_tg): Update call to RUN_TEST_f_i_tg.
23412 (RUN_TEST_ff_i_tg): Take argument string. Call new setup and
23413 cleanup macros.
23414 (RUN_TEST_LOOP_ff_i_tg): Update call to RUN_TEST_ff_i_tg.
23415 (RUN_TEST_f_b): Take argument string. Call new setup and cleanup
23416 macros.
23417 (RUN_TEST_LOOP_f_b): Update call to RUN_TEST_f_b.
23418 (RUN_TEST_f_b_tg): Take argument string. Call new setup and
23419 cleanup macros.
23420 (RUN_TEST_LOOP_f_b_tg): Update call to RUN_TEST_f_b_tg.
23421 (RUN_TEST_f_l): Take argument string. Call new setup and cleanup
23422 macros.
23423 (RUN_TEST_LOOP_f_l): Update call to RUN_TEST_f_l.
23424 (RUN_TEST_f_L): Take argument string. Call new setup and cleanup
23425 macros.
23426 (RUN_TEST_LOOP_f_L): Update call to RUN_TEST_f_L.
23427 (RUN_TEST_fFF_11): Take argument string. Call new setup and
23428 cleanup macros.
23429 (RUN_TEST_LOOP_fFF_11): Update call to RUN_TEST_fFF_11.
23430
234312013-05-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
23432
23433 * sysdeps/unix/sysv/linux/bits/siginfo.h (siginfo_t): Add si_addr_lsb
23434 to _sifields.sigfault.
23435 (si_addr_lsb): Define new macro.
23436 (BUS_MCEERR_AR, BUS_MCEERR_AO): Define new values.
23437 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
23438 * sysdeps/unix/sysv/linux/x86/bits/siginfo.h: Likewise.
23439
234402013-05-03 Carlos O'Donell <carlos at redhat.com>
23441
23442 [BZ #15441]
23443 * intl/dcigettext.c (DCIGETTEXT): Skip translating if _nl_find_msg
23444 returns -1.
23445 (_nl_find_msg): Return -1 if recursive call returned -1. If newmem is
23446 null return -1.
23447 * intl/loadmsgcat.c (_nl_load_domain): If _nl_find_msg returns -1 abort
23448 loading the domain.
23449
234502013-05-22 Joseph Myers <joseph@codesourcery.com>
23451
23452 * math/gen-libm-test.pl (parse_args): Do not include expected
23453 result in test name.
23454 * sysdeps/i386/fpu/libm-test-ulps: Update test names.
23455 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
23456 * sysdeps/s390/fpu/libm-test-ulps: Likewise.
23457 * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
23458 * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
23459 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
23460
234612013-05-22 Siddhesh Poyarekar <siddhesh@redhat.com>
23462
23463 * benchtests/Makefile: Sort function entries.
23464
23465 * benchtests/Makefile (bench): Add asin, acos, sinh, cosh,
23466 tanh, asinh, acosh, atanh.
23467 * benchtests/acos-inputs: New file.
23468 * benchtests/acosh-inputs: New file.
23469 * benchtests/asin-inputs: New file.
23470 * benchtests/asinh-inputs: New file.
23471 * benchtests/atanh-inputs: New file.
23472 * benchtests/cosh-inputs: New file.
23473 * benchtests/log-inputs: New file.
23474 * benchtests/sinh-inputs: New file.
23475 * benchtests/tanh-inputs: New file.
23476
234772013-05-21 Dmitry V. Levin <ldv@altlinux.org>
23478
23479 [BZ #15339]
23480 * posix/tst-getaddrinfo4.c: New test.
23481 * posix/Makefile (tests): Add it.
23482
234832013-05-21 Siddhesh Poyarekar <siddhesh@redhat.com>
23484
23485 [BZ #15339]
23486 * nss/getXXbyYY_r.c (REENTRANT_NAME): Set NETDB_INTERNAL only
23487 when no services were used.
23488 * sysdeps/posix/getaddrinfo.c (gaih_inet): Set h_errno.
23489 Return EAI_SYSTEM if h_errno is NETDB_INTERNAL.
23490
234912013-05-21 Andreas Schwab <schwab@suse.de>
23492
23493 [BZ #15014]
23494 * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME))
23495 [HANDLE_DIGITS_DOTS]: Set any_service when digits-dots parsing was
23496 successful.
23497 * nss/digits_dots.c (__nss_hostname_digits_dots): Remove
23498 redundant variable declarations and reallocation of buffer when
23499 parsing as IPv6 address. Always set NSS status when called from
23500 reentrant functions. Use NETDB_INTERNAL instead of TRY_AGAIN when
23501 buffer too small. Correct computation of needed size.
23502 * nss/Makefile (tests): Add test-digits-dots.
23503 * nss/test-digits-dots.c: New test.
23504
235052013-05-21 Siddhesh Poyarekar <siddhesh@redhat.com>
23506
23507 * benchtests/Makefile: Remove instructions for adding
23508 benchmark tests.
23509 * benchtests/README: New file to explain how to execute and
23510 enhance the benchmark tests.
23511
235122013-05-21 Andreas Schwab <schwab@suse.de>
23513
23514 [BZ #15493]
23515 * setjmp/Makefile (tests): Add tst-sigsetjmp.
23516 * setjmp/tst-sigsetjmp.c: New test.
23517
235182013-05-20 Ondřej Bílka <neleai@seznam.cz>
23519
23520 * sysdeps/x86_64/memset.S (memset): New implementation.
23521 (__bzero): Likewise.
23522 (__memset_tail): New function.
23523
235242013-05-20 Ondřej Bílka <neleai@seznam.cz>
23525
23526 * sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: New file.
23527 * sysdeps/x86_64/multiarch/memcpy.S (__new_memcpy): Add
23528 __memcpy_sse2_unaligned ifunc selection.
23529 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
23530 Add memcpy-sse2-unaligned.S.
23531 * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
23532 Add: __memcpy_sse2_unaligned.
23533
235342013-05-19 Joseph Myers <joseph@codesourcery.com>
23535
23536 [BZ #15490]
23537 * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
23538 math_force_eval before restoring floating-point envrionment.
23539 * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Likewise.
23540 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl):
23541 Likewise.
23542 * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Include
23543 <math_private.h>.
23544 (__nearbyintl): Use math_force_eval before restoring
23545 floating-point environment.
23546 * sysdeps/ieee754/ldbl-96/s_nearbyintl.c (__nearbyintl): Likewise.
23547
23548 * math/gen-libm-test.pl (special_functions): Remove.
23549 (parse_args): Don't handle TEST_extra. Handle functions with no
23550 return value.
23551 * math/libm-test.inc (struct test_sincos_data): Replace with
23552 struct test_fFF_11_data.
23553 (RUN_TEST_sincos): Replace with RUN_TEST_fFF_11.
23554 (RUN_TEST_LOOP_sincos): Replace with RUN_TEST_LOOP_fFF_11.
23555 (sincos_test_data): Change element type to struct
23556 test_fFF_11_data. Use TEST_fFF_11 instead of TEST_extra.
23557 (sincos_test): Use RUN_TEST_LOOP_fFF_11 instead of
23558 RUN_TEST_LOOP_sincos.
23559 * math/README.libm-test: Don't mention special handling of
23560 individual functions.
23561 * sysdeps/i386/fpu/libm-test-ulps: Update names of sincos tests.
23562 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
23563 * sysdeps/s390/fpu/libm-test-ulps: Likewise.
23564 * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
23565 * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
23566 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
23567
23568 * math/gen-libm-test.pl (get_variable): Remove function.
23569 (parse_args): Don't show pointer parameters to call in test
23570 names. Use "extra output N" in test names for extra outputs
23571 rather than naming variables.
23572
235732013-05-18 Joseph Myers <joseph@codesourcery.com>
23574
23575 [BZ #15488]
23576 * math/complex.h [__USE_ISOC11 && __GNUC_PREREQ (4, 7) &&
23577 __NO_LONG_DOUBLE_MATH] (CMPLXL): Define macro.
23578 * math/tst-CMPLX.c (do_test) [NO_LONG_DOUBLE]: Do not disable long
23579 double tests.
23580 * make/tst-CMPLX2.c [NO_LONG_DOUBLE] (check_long_double): Do not
23581 disable.
23582 (do_test) [NO_LONG_DOUBLE]: Do not disable call to
23583 check_long_double.
23584
23585 * math/gen-libm-test.pl (@tests): Remove variable.
23586 ($count): Likewise.
23587 (new_test): Remove function.
23588 (show_exceptions): New function.
23589 (special_functions): Use show_exceptions instead of new_test.
23590 (parse_args): Likewise.
23591 (generate_testfile): Pass only function name in generated call to
23592 print_max_error or print_complex_max_error.
23593 (get_ulps): Do not handle complex tests specially.
23594 (output_test): Rename to ...
23595 (get_all_ulps_for_test): ... this. Return a string rather than
23596 printing to a file. Require ulps to be present.
23597 (output_ulps): Generate arrays rather than #defines.
23598 * math/libm-test.inc: Move down #include of "libm-test-ulps.h".
23599 (struct ulp_data): New type.
23600 (BUILD_COMPLEX_ULP): Remove macro.
23601 (compare_ulp_data): New function.
23602 (find_ulps): Likewise.
23603 (find_test_ulps): Likewise.
23604 (find_function_ulps): Likewise.
23605 (find_complex_function_ulps): Likewise.
23606 (print_max_error): Determine allowed ulps using
23607 find_function_ulps.
23608 (print_complex_max_error): Determine allowed ulps using
23609 find_complex_function_ulps.
23610 (check_float_internal): Determine max ulps using find_test_ulps.
23611 (check_float): Do not take max_ulp parameter. Update call to
23612 check_float_internal.
23613 (check_complex): Likewise.
23614 (check_int): Do not take max_ulp parameter.
23615 (check_long): Likewise.
23616 (check_bool): Likewise.
23617 (check_longlong): Likewise.
23618 (struct test_f_f_data): Remove max_ulp field.
23619 (struct test_ff_f_data): Likewise.
23620 (struct test_ff_f_data_nexttoward): Likewise.
23621 (struct test_fi_f_data): Likewise.
23622 (struct test_fl_f_data): Likewise.
23623 (struct test_if_f_data): Likewise.
23624 (struct test_fff_f_data): Likewise.
23625 (struct test_c_f_data): Likewise.
23626 (struct test_f_f1_data): Remove max_ulp and extra_ulp fields.
23627 (struct test_fF_f1_data): Likewise.
23628 (struct test_ffI_f1_data): Likewise.
23629 (struct test_c_c_data): Remove max_ulp field.
23630 (struct test_cc_c_data): Likewise.
23631 (struct test_f_i_data): Likewise.
23632 (struct test_ff_i_data): Likewise.
23633 (struct test_f_l_data): Likewise.
23634 (struct test_f_L_data): Likewise.
23635 (struct test_sincos_data): Likewise.
23636 (RUN_TEST_f_f): Do not handle ulps.
23637 (RUN_TEST_LOOP_f_f): Likewise.
23638 (RUN_TEST_2_f): Likewise.
23639 (RUN_TEST_LOOP_2_f): Likewise.
23640 (RUN_TEST_fff_f): Likewise.
23641 (RUN_TEST_LOOP_fff_f): Likewise.
23642 (RUN_TEST_c_f): Likewise.
23643 (RUN_TEST_LOOP_c_f): Likewise.
23644 (RUN_TEST_f_f1): Likewise.
23645 (RUN_TEST_LOOP_f_f1): Likewise.
23646 (RUN_TEST_fF_f1): Likewise.
23647 (RUN_TEST_LOOP_fF_f1): Likewise.
23648 (RUN_TEST_fI_f1): Likewise.
23649 (RUN_TEST_LOOP_fI_f1): Likewise.
23650 (RUN_TEST_ffI_f1): Likewise.
23651 (RUN_TEST_LOOP_ffI_f1): Likewise.
23652 (RUN_TEST_c_c): Likewise.
23653 (RUN_TEST_LOOP_c_c): Likewise.
23654 (RUN_TEST_cc_c): Likewise.
23655 (RUN_TEST_LOOP_cc_c): Likewise.
23656 (RUN_TEST_f_i): Likewise.
23657 (RUN_TEST_LOOP_f_i): Likewise.
23658 (RUN_TEST_f_i_tg): Likewise.
23659 (RUN_TEST_LOOP_f_i_tg): Likewise.
23660 (RUN_TEST_ff_i_tg): Likewise.
23661 (RUN_TEST_LOOP_ff_i_tg): Likewise.
23662 (RUN_TEST_f_b): Likewise.
23663 (RUN_TEST_LOOP_f_b): Likewise.
23664 (RUN_TEST_f_b_tg): Likewise.
23665 (RUN_TEST_LOOP_f_b_tg): Likewise.
23666 (RUN_TEST_f_l): Likewise.
23667 (RUN_TEST_LOOP_f_l): Likewise.
23668 (RUN_TEST_f_L): Likewise.
23669 (RUN_TEST_LOOP_f_L): Likewise.
23670 (RUN_TEST_sincos): Likewise.
23671 (RUN_TEST_LOOP_sincos): Likewise.
23672
236732013-05-17 Joseph Myers <joseph@codesourcery.com>
23674
23675 [BZ #15480]
23676 [BZ #15485]
23677 * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder): For
23678 main case of finite arguments, set rounding mode to FE_TONEAREST
23679 and discard exceptions.
23680 * math/libm-test.inc (remainder_test_data): Disallow "inexact"
23681 exceptions.
23682 (remainder_tonearest_test_data): New variable.
23683 (remainder_test_tonearest): New function.
23684 (remainder_towardzero_test_data): New variable.
23685 (remainder_test_towardzero): New function.
23686 (remainder_downward_test_data): New variable.
23687 (remainder_test_downward): New function.
23688 (remainder_upward_test_data): New variable.
23689 (remainder_test_upward): New function.
23690 (main): Call the new test functions.
23691
23692 * math/libm-test.inc (struct test_f_f1_data): Remove field
23693 extra_init.
23694 (struct test_fF_f1_data): Likewise.
23695 (struct test_ffI_f1_data): Likewise.
23696 (RUN_TEST_f_f1): Remove argument EXTRA_INIT. Initialize EXTRA_VAR
23697 based on value of EXTRA_EXPECTED.
23698 (RUN_TEST_LOOP_f_f1): Update call to RUN_TEST_f_f1.
23699 (RUN_TEST_fF_f1): Remove argument EXTRA_INIT. Initialize
23700 EXTRA_VAR based on value of EXTRA_EXPECTED.
23701 (RUN_TEST_LOOP_fF_f1): Update call to RUN_TEST_fF_f1.
23702 (RUN_TEST_fI_f1): Remove argument EXTRA_INIT. Initialize
23703 EXTRA_VAR based on value of EXTRA_EXPECTED.
23704 (RUN_TEST_LOOP_fI_f1): Update call to RUN_TEST_fI_f1.
23705 (RUN_TEST_ffI_f1): Remove argument EXTRA_INIT. Initialize
23706 EXTRA_VAR based on value of EXTRA_EXPECTED.
23707 (RUN_TEST_LOOP_ffI_f1): Update call to RUN_TEST_ffI_f1.
23708 * math/gen-libm-test.pl (parse_args): Don't output initializers
23709 for extra output values.
23710
23711 * math/libm-test.inc (check_int): Expect result to be exactly
23712 equal to expected value and do not handle ulps.
23713 (check_long): Likewise.
23714 (check_longlong): Likewise.
23715
23716 * math/libm-test.inc (ceil_test_data): Test for "inexact"
23717 exceptions.
23718 (cimag_test_data): Likewise.
23719 (conj_test_data): Likewise.
23720 (copysign_test_data): Likewise.
23721 (cproj_test_data): Likewise.
23722 (creal_test_data): Likewise.
23723 (fabs_test_data): Likewise.
23724 (fdim_test_data): Likewise.
23725 (finite_test_data): Likewise.
23726 (floor_test_data): Likewise.
23727 (fmax_test_data): Likewise.
23728 (fmin_test_data): Likewise.
23729 (fmod_test_data): Likewise.
23730 (fpclassify_test_data): Likewise.
23731 (frexp_test_data): Likewise.
23732 (ilogb_test_data): Likewise.
23733 (isfinite_test_data): Likewise.
23734 (isgreater_test_data): Likewise.
23735 (isgreaterequal_test_data): Likewise.
23736 (isinf_test_data): Likewise.
23737 (isless_test_data): Likewise.
23738 (islessequal_test_data): Likewise.
23739 (islessgreater_test_data): Likewise.
23740 (isnan_test_data): Likewise.
23741 (isnormal_test_data): Likewise.
23742 (issignaling_test_data): Likewise.
23743 (isunordered_test_data): Likewise.
23744 (ldexp_test_data): Likewise.
23745 (lrint_test_data): Likewise.
23746 (lrint_test_data) [TEST_FLOAT]: Disable one test.
23747 (lrint_test_data) [!TEST_LDOUBLE]: Likewise.
23748 (lrint_tonearest_test_data): Test for "inexact" exceptions.
23749 (lrint_tonearest_test_data) [TEST_FLOAT]: Disable one test.
23750 (lrint_tonearest_test_data) [!TEST_LDOUBLE]: Likewise.
23751 (lrint_tonearest_test_data) [TEST_LDOUBLE]: Use "L" suffix on that
23752 test input.
23753 (lrint_towardzero_test_data): Test for "inexact" exceptions.
23754 (lrint_towardzero_test_data) [TEST_FLOAT]: Disable one test.
23755 (lrint_towardzero_test_data) [!TEST_LDOUBLE]: Likewise.
23756 (lrint_towardzero_test_data) [TEST_LDOUBLE]: Use "L" suffix on
23757 that test input.
23758 (lrint_downward_test_data): Test for "inexact" exceptions.
23759 (lrint_downward_test_data) [TEST_FLOAT]: Disable one test.
23760 (lrint_downward_test_data) [!TEST_LDOUBLE]: Likewise.
23761 (lrint_downward_test_data) [TEST_LDOUBLE]: Use "L" suffix on that
23762 test input.
23763 (lrint_upward_test_data): Test for "inexact" exceptions.
23764 (lrint_upward_test_data) [TEST_LDOUBLE]: Use "L" suffix on one
23765 test input.
23766 (llrint_test_data): Test for "inexact" exceptions.
23767 (llrint_test_data) [TEST_FLOAT]: Disable one test.
23768 (llrint_tonearest_test_data): Test for "inexact" exceptions.
23769 (llrint_tonearest_test_data) [TEST_FLOAT]: Disable one test.
23770 (llrint_towardzero_test_data): Test for "inexact" exceptions.
23771 (llrint_towardzero_test_data) [TEST_FLOAT]: Disable one test.
23772 (llrint_downward_test_data): Test for "inexact" exceptions.
23773 (llrint_downward_test_data) [TEST_FLOAT]: Disable one test.
23774 (llrint_upward_test_data): Test for "inexact" exceptions.
23775 (logb_test_data): Likewise.
23776 (logb_downward_test_data): Likewise.
23777 (nextafter_test_data): Likewise.
23778 (nexttoward_test_data): Likewise.
23779 (remainder_test_data): Likewise.
23780 (remquo_test_data): Likewise.
23781 (scalbn_test_data): Likewise.
23782 (scalbln_test_data): Likewise.
23783 (signbit_test_data): Likewise.
23784 (sqrt_test_data): Likewise.
23785 (significand_test_data): Likewise.
23786
237872013-05-17 Siddhesh Poyarekar <siddhesh@redhat.com>
23788
23789 [BZ #15424]
23790 * benchtests/bench-modf.c (struct args): Mark arg0 as
23791 volatile.
23792 * scripts/bench.pl: Mark members of struct args as volatile.
23793
237942013-05-17 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
23795
23796 [BZ # 15497]
23797 * sysdeps/powerpc/fpu/e_hypot.c (GET_TWO_FLOAT_WORD): Fix test for
23798 negative infinity on POWER6 or lower.
23799 * sysdeps/powerpc/fpu/e_hypotf.c (GET_TWO_FLOAT_WORD): Likewise.
23800
238012013-05-16 Maciej W. Rozycki <macro@codesourcery.com>
23802
23803 [BZ #15442]
23804 * soft-fp/op-common.h (_FP_FRAC_SNANP): New macro.
23805 (_FP_FRAC_SNANP_SEMIRAW): Likewise.
23806 (_FP_UNPACK_CANONICAL): Use _FP_FRAC_SNANP.
23807 (_FP_CHECK_SIGNAN_SEMIRAW): Use _FP_FRAC_SNANP_SEMIRAW.
23808 (_FP_SETQNAN): New macro.
23809 (_FP_SETQNAN_SEMIRAW): Likewise.
23810 (_FP_PACK_SEMIRAW): Use _FP_SETQNAN.
23811 (_FP_PACK_CANONICAL): Use _FP_SETQNAN.
23812 (_FP_ISSIGNAN): Use _FP_FRAC_SNANP.
23813 (FP_EXTEND): Use _FP_FRAC_SNANP.
23814 (FP_TRUNC): Use _FP_SETQNAN_SEMIRAW.
23815 * soft-fp/testit.c (gen_special_double): Take _FP_QNANNEGATEDP
23816 into account.
23817 * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h (_FP_QNANNEGATEDP):
23818 New macro.
23819 * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h (_FP_QNANNEGATEDP):
23820 Likewise.
23821
238222013-05-16 Joseph Myers <joseph@codesourcery.com>
23823
23824 * math/libm-test.inc (atanh_test_data): Use ERRNO_ERANGE together
23825 with DIVIDE_BY_ZERO_EXCEPTION.
23826 (gamma_test_data): Likewise.
23827 (lgamma_test_data): Likewise.
23828 (log_test_data): Likewise.
23829 (log10_test_data): Likewise.
23830 (log2_test_data): Likewise.
23831 (tgamma_test_data): Likewise.
23832
23833 * math/libm-test.inc (acos_test): Don't test for ENOSYS error.
23834 (acos_test_tonearest): Likewise.
23835 (acos_test_towardzero): Likewise.
23836 (acos_test_downward): Likewise.
23837 (acos_test_upward): Likewise.
23838 (acosh_test): Likewise.
23839 (asin_test): Likewise.
23840 (asin_test_tonearest): Likewise.
23841 (asin_test_towardzero): Likewise.
23842 (asin_test_downward): Likewise.
23843 (asin_test_upward): Likewise.
23844 (asinh_test): Likewise.
23845 (atan_test): Likewise.
23846 (atanh_test): Likewise.
23847 (atan2_test): Likewise.
23848 (cabs_test): Likewise.
23849 (cacos_test): Likewise.
23850 (cacosh_test): Likewise.
23851 (casin_test): Likewise.
23852 (casinh_test): Likewise.
23853 (catan_test): Likewise.
23854 (catanh_test): Likewise.
23855 (cbrt_test): Likewise.
23856 (ccos_test): Likewise.
23857 (ccosh_test): Likewise.
23858 (cexp_test): Likewise.
23859 (clog_test): Likewise.
23860 (clog10_test): Likewise.
23861 (cos_test): Likewise.
23862 (cos_test_tonearest): Likewise.
23863 (cos_test_towardzero): Likewise.
23864 (cos_test_downward): Likewise.
23865 (cos_test_upward): Likewise.
23866 (cosh_test): Likewise.
23867 (cosh_test_tonearest): Likewise.
23868 (cosh_test_towardzero): Likewise.
23869 (cosh_test_downward): Likewise.
23870 (cosh_test_upward): Likewise.
23871 (cpow_test): Likewise.
23872 (csin_test): Likewise.
23873 (csinh_test): Likewise.
23874 (csqrt_test): Likewise.
23875 (ctan_test): Likewise.
23876 (ctan_test_tonearest): Likewise.
23877 (ctan_test_towardzero): Likewise.
23878 (ctan_test_downward): Likewise.
23879 (ctan_test_upward): Likewise.
23880 (ctanh_test): Likewise.
23881 (ctanh_test_tonearest): Likewise.
23882 (ctanh_test_towardzero): Likewise.
23883 (ctanh_test_downward): Likewise.
23884 (ctanh_test_upward): Likewise.
23885 (erf_test): Likewise.
23886 (erfc_test): Likewise.
23887 (exp_test): Likewise.
23888 (exp_test_tonearest): Likewise.
23889 (exp_test_towardzero): Likewise.
23890 (exp_test_downward): Likewise.
23891 (exp_test_upward): Likewise.
23892 (exp10_test): Likewise.
23893 (exp2_test): Likewise.
23894 (expm1_test): Likewise.
23895 (fmod_test): Likewise.
23896 (gamma_test): Likewise.
23897 (hypot_test): Likewise.
23898 (j0_test): Likewise.
23899 (j1_test): Likewise.
23900 (jn_test): Likewise.
23901 (lgamma_test): Likewise.
23902 (log_test): Likewise.
23903 (log10_test): Likewise.
23904 (log1p_test): Likewise.
23905 (log2_test): Likewise.
23906 (logb_test_downward): Likewise.
23907 (pow_test): Likewise.
23908 (pow_test_tonearest): Likewise.
23909 (pow_test_towardzero): Likewise.
23910 (pow_test_downward): Likewise.
23911 (pow_test_upward): Likewise.
23912 (remainder_test): Likewise.
23913 (remquo_test): Likewise.
23914 (sin_test): Likewise.
23915 (sin_test_tonearest): Likewise.
23916 (sin_test_towardzero): Likewise.
23917 (sin_test_downward): Likewise.
23918 (sin_test_upward): Likewise.
23919 (sincos_test): Likewise.
23920 (sinh_test): Likewise.
23921 (sinh_test_tonearest): Likewise.
23922 (sinh_test_towardzero): Likewise.
23923 (sinh_test_downward): Likewise.
23924 (sinh_test_upward): Likewise.
23925 (sqrt_test): Likewise.
23926 (tan_test): Likewise.
23927 (tan_test_tonearest): Likewise.
23928 (tan_test_towardzero): Likewise.
23929 (tan_test_downward): Likewise.
23930 (tan_test_upward): Likewise.
23931 (tanh_test): Likewise.
23932 (tgamma_test): Likewise.
23933 (y0_test): Likewise.
23934 (y1_test): Likewise.
23935 (yn_test): Likewise.
23936
23937 * math/gen-libm-test.pl (adjust_arg): Remove function.
23938 (special_function): Remove argument $in_func. Only handle
23939 generating output for tables of tests, not inside functions.
23940 (parse_args): Likewise.
23941 (generate_testfile): Remove variable $in_func. Update call to
23942 parse_args.
23943 * math/libm-test.inc (PLUS_ZERO_INIT): Rename macro to plus_zero.
23944 (MINUS_ZERO_INIT): Rename macro to minus_zero.
23945 (PLUS_INFTY_INIT): Rename macro to plus_infty.
23946 (MINUS_INFTY_INIT): Rename macro to minus_infty.
23947 (QNAN_VALUE_INIT): Rename macro to qnan_value.
23948 (MAX_VALUE_INIT): Rename macro to max_value.
23949 (MIN_VALUE_INIT): Rename macro to min_value.
23950 (MIN_SUBNORM_VALUE_INIT): Rename macro to min_subnorm_value.
23951 (plus_zero): Remove variable.
23952 (minus_zero): Likewise.
23953 (plus_infty): Likewise.
23954 (minus_infty): Likewise.
23955 (qnan_value): Likewise.
23956 (max_value): Likewise.
23957 (min_value): Likewise.
23958 (min_subnorm_value): Likewise.
23959
239602013-05-16 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
23961
23962 * crypt/sha512-block.c: Add missing #include <stdint.h> due to
23963 uint64_t or uint32_t usage.
23964 * crypt/sha256-block.c: Likewise.
23965 * crypt/sha256-crypt.c: Likewise.
23966 * crypt/sha256.c: Likewise.
23967 * crypt/sha512-block.c: Likewise.
23968 * crypt/sha512-crypt.c: Likewise.
23969 * crypt/sha512.c: Likewise.
23970 * debug/backtrace-tst.c: Likewise.
23971 * debug/pcprofiledump.c: Likewise.
23972 * elf/cache.c: Likewise.
23973 * elf/dl-cache.c: Likewise.
23974 * elf/dl-misc.c: Likewise.
23975 * elf/dl-profile.c: Likewise.
23976 * elf/dl-support.c: Likewise.
23977 * elf/ldconfig.c: Likewise.
23978 * elf/sprof.c: Likewise.
23979 * iconv/dummy-repertoire.c: Likewise.
23980 * iconv/iconv_charmap.c: Likewise.
23981 * iconv/skeleton.c: Likewise.
23982 * iconvdata/8bit-generic.c: Likewise.
23983 * iconvdata/cp737.h: Likewise.
23984 * iconvdata/cp775.h: Likewise.
23985 * iconvdata/ibm1008.h: Likewise.
23986 * iconvdata/ibm1025.h: Likewise.
23987 * iconvdata/ibm1046.h: Likewise.
23988 * iconvdata/ibm1097.h: Likewise.
23989 * iconvdata/ibm1112.h: Likewise.
23990 * iconvdata/ibm1122.h: Likewise.
23991 * iconvdata/ibm1123.h: Likewise.
23992 * iconvdata/ibm1124.h: Likewise.
23993 * iconvdata/ibm1129.h: Likewise.
23994 * iconvdata/ibm1130.h: Likewise.
23995 * iconvdata/ibm1132.h: Likewise.
23996 * iconvdata/ibm1133.h: Likewise.
23997 * iconvdata/ibm1137.h: Likewise.
23998 * iconvdata/ibm1140.h: Likewise.
23999 * iconvdata/ibm1141.h: Likewise.
24000 * iconvdata/ibm1142.h: Likewise.
24001 * iconvdata/ibm1143.h: Likewise.
24002 * iconvdata/ibm1144.h: Likewise.
24003 * iconvdata/ibm1145.h: Likewise.
24004 * iconvdata/ibm1146.h: Likewise.
24005 * iconvdata/ibm1147.h: Likewise.
24006 * iconvdata/ibm1148.h: Likewise.
24007 * iconvdata/ibm1149.h: Likewise.
24008 * iconvdata/ibm1153.h: Likewise.
24009 * iconvdata/ibm1154.h: Likewise.
24010 * iconvdata/ibm1155.h: Likewise.
24011 * iconvdata/ibm1156.h: Likewise.
24012 * iconvdata/ibm1157.h: Likewise.
24013 * iconvdata/ibm1158.h: Likewise.
24014 * iconvdata/ibm1160.h: Likewise.
24015 * iconvdata/ibm1161.h: Likewise.
24016 * iconvdata/ibm1162.h: Likewise.
24017 * iconvdata/ibm1163.h: Likewise.
24018 * iconvdata/ibm1164.h: Likewise.
24019 * iconvdata/ibm1166.h: Likewise.
24020 * iconvdata/ibm1167.h: Likewise.
24021 * iconvdata/ibm12712.h: Likewise.
24022 * iconvdata/ibm1390.h: Likewise.
24023 * iconvdata/ibm1399.h: Likewise.
24024 * iconvdata/ibm16804.h: Likewise.
24025 * iconvdata/ibm4517.h: Likewise.
24026 * iconvdata/ibm4899.h: Likewise.
24027 * iconvdata/ibm4909.h: Likewise.
24028 * iconvdata/ibm4971.h: Likewise.
24029 * iconvdata/ibm5347.h: Likewise.
24030 * iconvdata/ibm803.h: Likewise.
24031 * iconvdata/ibm856.h: Likewise.
24032 * iconvdata/ibm901.h: Likewise.
24033 * iconvdata/ibm902.h: Likewise.
24034 * iconvdata/ibm9030.h: Likewise.
24035 * iconvdata/ibm9066.h: Likewise.
24036 * iconvdata/ibm921.h: Likewise.
24037 * iconvdata/ibm922.h: Likewise.
24038 * iconvdata/ibm9448.h: Likewise.
24039 * iconvdata/isiri-3342.h: Likewise.
24040 * iconvdata/jis0201.h: Likewise.
24041 * include/link.h: Likewise.
24042 * include/netdb.h: Likewise.
24043 * inet/check_native.c: Likewise.
24044 * inet/check_pf.c: Likewise.
24045 * inet/getipv4sourcefilter.c: Likewise.
24046 * inet/getnameinfo.c: Likewise.
24047 * inet/getsourcefilter.c: Likewise.
24048 * inet/htonl.c: Likewise.
24049 * inet/setipv4sourcefilter.c: Likewise.
24050 * inet/setsourcefilter.c: Likewise.
24051 * inet/test-inet6_opt.c: Likewise.
24052 * inet/tst-network.c: Likewise.
24053 * locale/C-collate.c: Likewise.
24054 * locale/C-ctype.c: Likewise.
24055 * locale/C-time.c: Likewise.
24056 * locale/C-translit.h: Likewise.
24057 * locale/loadarchive.c: Likewise.
24058 * locale/programs/3level.h: Likewise.
24059 * locale/programs/charmap.c: Likewise.
24060 * locale/programs/charmap.h: Likewise.
24061 * locale/programs/ld-address.c: Likewise.
24062 * locale/programs/ld-collate.c: Likewise.
24063 * locale/programs/ld-ctype.c: Likewise.
24064 * locale/programs/ld-identification.c: Likewise.
24065 * locale/programs/ld-measurement.c: Likewise.
24066 * locale/programs/ld-messages.c: Likewise.
24067 * locale/programs/ld-monetary.c: Likewise.
24068 * locale/programs/ld-name.c: Likewise.
24069 * locale/programs/ld-numeric.c: Likewise.
24070 * locale/programs/ld-paper.c: Likewise.
24071 * locale/programs/ld-telephone.c: Likewise.
24072 * locale/programs/ld-time.c: Likewise.
24073 * locale/programs/linereader.c: Likewise.
24074 * locale/programs/locale.c: Likewise.
24075 * locale/programs/locarchive.c: Likewise.
24076 * locale/programs/locfile.h: Likewise.
24077 * locale/programs/repertoire.c: Likewise.
24078 * locale/programs/simple-hash.c: Likewise.
24079 * locale/programs/simple-hash.h: Likewise.
24080 * malloc/memusage.c: Likewise.
24081 * malloc/memusagestat.c: Likewise.
24082 * nis/nis_defaults.c: Likewise.
24083 * nis/nis_hash.c: Likewise.
24084 * nis/nis_print.c: Likewise.
24085 * nis/nis_xdr.c: Likewise.
24086 * nscd/connections.c: Likewise.
24087 * nscd/hstcache.c: Likewise.
24088 * nscd/nscd_gethst_r.c: Likewise.
24089 * nscd/nscd_getserv_r.c: Likewise.
24090 * nscd/nscd_helper.c: Likewise.
24091 * nscd/servicescache.c: Likewise.
24092 * nss/makedb.c: Likewise.
24093 * nss/nss_db/db-XXX.c: Likewise.
24094 * nss/nss_db/db-initgroups.c: Likewise.
24095 * nss/nss_db/db-netgrp.c: Likewise.
24096 * nss/nss_files/files-network.c: Likewise.
24097 * nss/nss_files/files-parse.c: Likewise.
24098 * posix/bug-regex5.c: Likewise.
24099 * posix/fnmatch_loop.c: Likewise.
24100 * posix/regcomp.c: Likewise.
24101 * posix/regexec.c: Likewise.
24102 * posix/tst-rfc3484-2.c: Likewise.
24103 * posix/tst-rfc3484-3.c: Likewise.
24104 * posix/tst-rfc3484.c: Likewise.
24105 * resolv/nss_dns/dns-canon.c: Likewise.
24106 * resolv/nss_dns/dns-network.c: Likewise.
24107 * resolv/res_init.c: Likewise.
24108 * resolv/res_mkquery.c: Likewise.
24109 * resolv/tst-aton.c: Likewise.
24110 * stdlib/cxa_atexit.c: Likewise.
24111 * stdlib/cxa_finalize.c: Likewise.
24112 * stdlib/gen-fpioconst.c: Likewise.
24113 * stdlib/strtol_l.c: Likewise.
24114 * string/tst-endian.c: Likewise.
24115 * sunrpc/auth_des.c: Likewise.
24116 * sunrpc/clnt_udp.c: Likewise.
24117 * sunrpc/rtime.c: Likewise.
24118 * sunrpc/svcauth_des.c: Likewise.
24119 * sunrpc/xdr.c: Likewise.
24120 * sunrpc/xdr_intXX_t.c: Likewise.
24121 * sunrpc/xdr_rec.c: Likewise.
24122 * sysdeps/generic/ldconfig.h: Likewise.
24123 * sysdeps/generic/ldsodefs.h: Likewise.
24124 * sysdeps/generic/memusage.h: Likewise.
24125 * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: Likewise.
24126 * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c: Likewise.
24127 * sysdeps/ieee754/dbl-64/wordsize-64/math_private.h: Likewise.
24128 * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Likewise.
24129 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
24130 * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
24131 * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Likewise.
24132 * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Likewise.
24133 * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
24134 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
24135 * sysdeps/posix/getaddrinfo.c: Likewise.
24136 * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
24137 * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
24138 * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
24139 * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
24140 * sysdeps/powerpc/test-gettimebase.c: Likewise.
24141 * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
24142 * sysdeps/unix/sysv/linux/getipv4sourcefilter.c: Likewise.
24143 * sysdeps/unix/sysv/linux/getsourcefilter.c: Likewise.
24144 * sysdeps/unix/sysv/linux/netlinkaccess.h: Likewise.
24145 * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c: Likewise.
24146 * sysdeps/unix/sysv/linux/preadv.c: Likewise.
24147 * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
24148 * sysdeps/unix/sysv/linux/setipv4sourcefilter.c: Likewise.
24149 * sysdeps/unix/sysv/linux/setsourcefilter.c: Likewise.
24150 * sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c: Likewise.
24151 * sysdeps/x86_64/dl-tls.h: Likewise.
24152 * sysdeps/x86_64/dl-tlsdesc.h: Likewise.
24153 * time/alt_digit.c: Likewise.
24154 * time/era.c: Likewise.
24155 * wcsmbs/tst-c16c32-1.c: Likewise.
24156
241572013-05-16 Joseph Myers <joseph@codesourcery.com>
24158
24159 * math/libm-test.inc (struct test_sincos_data): New type.
24160 (RUN_TEST_LOOP_sincos): New macro.
24161 (sincos_test_data): New variable.
24162 (sincos_test): Run tests with RUN_TEST_LOOP_sincos.
24163
241642013-05-16 Richard Henderson <rth@redhat.com>
24165
24166 * math/atest-exp2.c (LIMB64): New macro.
24167 (CONSTSZ): New macro.
24168 (mp_exp1, mp_exp_m1, mp_log2): New variables.
24169 (hexdig): Move ...
24170 (print_mpn_fp): ... to function scope.
24171 (read_mpn_hex): Remove.
24172 (get_log2): Remove.
24173 (exp2_mpn): Use mp_log2.
24174 (main): Use mp_exp1.
24175
241762013-05-16 Joseph Myers <joseph@codesourcery.com>
24177
24178 * math/libm-test.inc: Remove comment about not testing "inexact"
24179 exceptions.
24180 (INEXACT_EXCEPTION): New macro.
24181 (NO_INEXACT_EXCEPTION): Likewise.
24182 (INVALID_EXCEPTION_OK): Update value.
24183 (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
24184 (OVERFLOW_EXCEPTION_OK): Likewise.
24185 (UNDERFLOW_EXCEPTION_OK): Likewise.
24186 (IGNORE_ZERO_INF_SIGN): Likewise.
24187 (ERRNO_UNCHANGED): Likewise.
24188 (ERRNO_EDOM): Likewise.
24189 (ERRNO_ERANGE): Likewise.
24190 (test_exceptions): Handle testing "inexact" exceptions.
24191 (nearbyint_test_data): Use NO_INEXACT_EXCEPTION on all tests.
24192 (rint_test_data): Use NO_INEXACT_EXCEPTION and INEXACT_EXCEPTION.
24193 (rint_test_data) [LDBL_MANT_DIG <= 100]: Disable some tests.
24194 (rint_tonearest_test_data): Use NO_INEXACT_EXCEPTION and
24195 INEXACT_EXCEPTION.
24196 (rint_towardzero_test_data): Likewise.
24197 (rint_downward_test_data): Likewise.
24198 (rint_upward_test_data): Likewise.
24199
24200 * math/libm-test.inc (exp_test_data): Use ERRNO_ERANGE together
24201 with OVERFLOW_EXCEPTION.
24202 (exp10_test_data): Likewise.
24203 (exp2_test_data): Likewise.
24204 (expm1_test_data): Likewise.
24205 (lgamma_test_data): Likewise.
24206 (pow_test_data): Likewise.
24207 (tgamma_test_data): Likewise.
24208 (yn_test_data): Remove duplicate test of overflow.
24209
24210 * math/libm-test.inc (struct test_cc_c_data): New type.
24211 (RUN_TEST_LOOP_cc_c): New macro.
24212 (cpow_test_data): New variable.
24213 (cpow_test): Run tests with RUN_TEST_LOOP_cc_c.
24214
24215 * math/libm-test.inc (struct test_f_L_data): New type.
24216 (RUN_TEST_LOOP_f_L): New macro.
24217 (llrint_test_data): New variable.
24218 (llrint_test): Run tests with RUN_TEST_LOOP_f_L.
24219 (llrint_tonearest_test_data): New variable.
24220 (llrint_test_tonearest): Run tests with RUN_TEST_LOOP_f_L.
24221 (llrint_towardzero_test_data): New variable.
24222 (llrint_test_towardzero): Run tests with RUN_TEST_LOOP_f_L.
24223 (llrint_downward_test_data): New variable.
24224 (llrint_test_downward): Run tests with RUN_TEST_LOOP_f_L.
24225 (llrint_upward_test_data): New variable.
24226 (llrint_test_upward): Run tests with RUN_TEST_LOOP_f_L.
24227 (llround_test_data): New variable.
24228 (llround_test): Run tests with RUN_TEST_LOOP_f_L.
24229
242302013-05-13 Peter Collingbourne <pcc@google.com>
24231
24232 * math/atest-exp2.c (get_log2): Remove const attribute.
24233
242342013-05-15 Joseph Myers <joseph@codesourcery.com>
24235
24236 * math/libm-test.inc (struct test_f_l_data): New type.
24237 (RUN_TEST_LOOP_f_l): New macro.
24238 (lrint_test_data): New variable.
24239 (lrint_test): Run tests with RUN_TEST_LOOP_f_l.
24240 (lrint_tonearest_test_data): New variable.
24241 (lrint_test_tonearest): Run tests with RUN_TEST_LOOP_f_l.
24242 (lrint_towardzero_test_data): New variable.
24243 (lrint_test_towardzero): Run tests with RUN_TEST_LOOP_f_l.
24244 (lrint_downward_test_data): New variable.
24245 (lrint_test_downward): Run tests with RUN_TEST_LOOP_f_l.
24246 (lrint_upward_test_data): New variable.
24247 (lrint_test_upward): Run tests with RUN_TEST_LOOP_f_l.
24248 (lround_test_data): New variable.
24249 (lround_test): Run tests with RUN_TEST_LOOP_f_l.
24250
242512013-05-15 Peter Collingbourne <pcc@google.com>
24252
24253 * sysdeps/x86_64/fpu/math_private.h (MOVQ): New macro.
24254 (EXTRACT_WORDS64) Use where appropriate.
24255 (INSERT_WORDS64) Likewise.
24256
24257 * sysdeps/x86_64/fpu/multiarch/s_fma.c (__fma_fma4): Replace xm
24258 constraints with x constraints.
24259 * sysdeps/x86_64/fpu/multiarch/s_fmaf.c (__fmaf_fma4): Likewise.
24260
24261 * malloc/obstack.c (_obstack_compat): Add initializer.
24262
242632013-05-15 Edjunior Machado <emachado@linux.vnet.ibm.com>
24264
24265 * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (siginfo_t): Remove
24266 si_trapno and add si_addr_lsb to _sifields.sigfault.
24267 (si_trapno): Remove macro.
24268 (si_addr_lsb): Define new macro.
24269 (BUS_MCEERR_AR, BUS_MCEERR_AO): Define new values.
24270
242712013-05-15 Joseph Myers <joseph@codesourcery.com>
24272
24273 * math/libm-test.inc (llrint_test): Consistently use TEST_f_L
24274 instead of TEST_f_l.
24275 (llrint_test_tonearest): Likewise.
24276 (llrint_test_towardzero): Likewise.
24277 (llrint_test_downward): Likewise.
24278 (llrint_test_upward): Likewise.
24279 (llround_test): Likewise.
24280
24281 * math/libm-test.inc (struct test_f_i_data): Add comment.
24282 (RUN_TEST_LOOP_f_b): New macro.
24283 (RUN_TEST_LOOP_f_b_tg): Likewise.
24284 (finite_test_data): New variable.
24285 (finite_test): Run tests with RUN_TEST_LOOP_f_b.
24286 (isfinite_test_data): New variable.
24287 (isfinite_test): Run tests with RUN_TEST_LOOP_f_b_tg.
24288 (isinf_test_data): New variable.
24289 (isinf_test): Run tests with RUN_TEST_LOOP_f_b_tg.
24290 (isnan_test_data): New variable.
24291 (isnan_test): Run tests with RUN_TEST_LOOP_f_b_tg.
24292 (isnormal_test_data): New variable.
24293 (isnormal_test): Run tests with RUN_TEST_LOOP_f_b_tg.
24294 (issignaling_test_data): New variable.
24295 (issignaling_test): Run tests with RUN_TEST_LOOP_f_b_tg.
24296 (signbit_test_data): New variable.
24297 (signbit_test): Run tests with RUN_TEST_LOOP_f_b_tg.
24298
24299 * math/libm-test.inc (acos_test_data): Use ERRNO_EDOM together
24300 with INVALID_EXCEPTION.
24301 (acosh_test_data): Likewise.
24302 (asin_test_data): Likewise.
24303 (atanh_test_data): Likewise.
24304 (fmod_test_data): Likewise.
24305 (log_test_data): Likewise.
24306 (log10_test_data): Likewise.
24307 (log2_test_data): Likewise.
24308 (pow_test_data): Likewise.
24309 (sqrt_test_data): Likewise.
24310 (y0_test_data): Likewise.
24311 (y1_test_data): Likewise.
24312 (yn_test_data): Likewise.
24313
24314 * math/libm-test.inc (test_single_errno) [TEST_INLINE]: Disable
24315 function contents.
24316
24317 * math/libm-test.inc (struct test_ff_i_data): New type.
24318 (RUN_TEST_LOOP_ff_i_tg): New macro.
24319 (isgreater_test_data): New variable.
24320 (isgreater_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
24321 (isgreaterequal_test_data): New variable.
24322 (isgreaterequal_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
24323 (isless_test_data): New variable.
24324 (isless_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
24325 (islessequal_test_data): New variable.
24326 (islessequal_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
24327 (islessgreater_test_data): New variable.
24328 (islessgreater_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
24329 (isunordered_test_data): New variable.
24330 (isunordered_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
24331
243322013-05-14 David S. Miller <davem@davemloft.net>
24333
24334 * sysdeps/sparc/fpu/libm-test-ulps: Update.
24335
243362013-05-14 Joseph Myers <joseph@codesourcery.com>
24337
24338 * math/libm-test.inc (RUN_TEST_LOOP_2_f): Fix whitespace.
24339
24340 * math/libm-test.inc (struct test_fF_f1_data): Change type of
24341 extra_test to int.
24342 (struct test_f_i_data): Change type of max_ulp to int.
24343
24344 * math/libm-test.inc (test_ffI_f1_data): New type.
24345 (RUN_TEST_LOOP_ffI_f1): New macro.
24346 (remquo_test_data): New variable.
24347 (remquo_test): Run tests with RUN_TEST_LOOP_ffI_f1.
24348
24349 * setjmp/tst-setjmp-fp.c: New file.
24350 * setjmp/Makefile (tests): Add tst-setjmp-fp.
24351 (link-libm): New variable.
24352 ($(objpfx)tst-setjmp-fp): Depend on $(link-libm).
24353
24354 * math/libm-test.inc (struct test_f_i_data): New type.
24355 (RUN_TEST_LOOP_f_i): New macro.
24356 (RUN_TEST_LOOP_f_i_tg): Likewise.
24357 (fpclassify_test_data): New variable.
24358 (fpclassify_test): Run tests with RUN_TEST_LOOP_f_i_tg.
24359 (ilogb_test_data): New variable.
24360 (ilogb_test): Run tests with RUN_TEST_LOOP_f_i.
24361
24362 * math/libm-test.inc (scalbln_test): Correct function name in END
24363 call.
24364
24365 * math/libm-test.inc (struct test_f_f1_data): Add comment.
24366 (RUN_TEST_LOOP_fI_f1): New macro.
24367 (frexp_test_data): New variable.
24368 (frexp_test): Run tests with RUN_TEST_LOOP_fI_f1.
24369
24370 * math/libm-test.inc (struct test_fF_f1_data): New type.
24371 (RUN_TEST_LOOP_fF_f1): New macro.
24372 (modf_test_data): New variable.
24373 (modf_test): Run tests with RUN_TEST_LOOP_fF_f1.
24374
24375 * math/libm-test.inc (struct test_f_f1_data): New type.
24376 (RUN_TEST_LOOP_f_f1): New macro.
24377 (gamma_test_data): New variable.
24378 (gamma_test): Run tests with RUN_TEST_LOOP_f_f1.
24379 (lgamma_test_data): New variable.
24380 (lgamma_test): Run tests with RUN_TEST_LOOP_f_f1.
24381
243822013-05-13 Carlos O'Donell <carlos@redhat.com>
24383
24384 * elf/dl-hwcaps.c (_dl_important_hwcaps): Comment vDSO hwcap loading.
24385 * elf/ldconfig.c (is_hwcap_platform): Comment each hwcap check.
24386 (main): Comment "tls" pseudo-hwcap.
24387
243882013-05-13 Joseph Myers <joseph@codesourcery.com>
24389
24390 * math/libm-test.inc (struct test_fl_f_data): New type.
24391 (RUN_TEST_LOOP_fl_f): New variable.
24392 (scalbln_test_data): New variable.
24393 (scalbln_test): Run tests with RUN_TEST_LOOP_fl_f.
24394
24395 * math/libm-test.inc (struct test_fi_f_data): New type.
24396 (RUN_TEST_LOOP_fi_f): New macro.
24397 (ldexp_test_data): New variable.
24398 (ldexp_test): Run tests with RUN_TEST_LOOP_fi_f.
24399 (scalbn_test_data): New variable.
24400 (scalbn_test): Run tests with RUN_TEST_LOOP_fi_f.
24401
24402 * math/libm-test.inc (struct test_c_f_data): New type.
24403 (RUN_TEST_LOOP_c_f): New macro.
24404 (cabs_test_data): New variable.
24405 (cabs_test): Run tests with RUN_TEST_LOOP_c_f.
24406 (carg_test_data): New variable.
24407 (carg_test): Run tests with RUN_TEST_LOOP_c_f.
24408 (cimag_test_data): New variable.
24409 (cimag_test): Run tests with RUN_TEST_LOOP_c_f.
24410 (creal_test_data): New variable.
24411 (creal_test): Run tests with RUN_TEST_LOOP_c_f.
24412
24413 * math/libm-test.inc (struct test_if_f_data): New type.
24414 (RUN_TEST_LOOP_if_f): New macro.
24415 (jn_test_data): New variable.
24416 (jn_test): Run tests with RUN_TEST_LOOP_if_f.
24417 (yn_test_data): New variable.
24418 (yn_test): Run tests with RUN_TEST_LOOP_if_f.
24419
24420 * math/libm-test.inc (scalbln_test): Consistently use TEST_fl_f.
24421
244222013-05-13 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
24423
24424 * math/libm-test.inc (M_1_DIV_El): Define using decimal constant.
24425 (log_test_data): Use M_1_DIV_El instead of 1.0 / M_El.
24426
244272013-05-13 Siddhesh Poyarekar <siddhesh@redhat.com>
24428
24429 * benchtests/Makefile (CPPFLAGS-nonlib): Add
24430 -DUSE_CLOCK_GETTIME if USE_CLOCK_GETTIME is defined.
24431 (bench-deps): Add bench-timing.h.
24432 * benchtests-bench-skeleton.c: Include bench-timing.h.
24433 (main): Use TIMING_* macros instead of clock_gettime.
24434 * benchtests/bench-timing.h: New file.
24435
24436 [BZ #14582]
24437 * sysdeps/ieee754/s_lib_version.c (_LIB_VERSION_INTERNAL):
24438 Renamed from _LIB_VERSION.
24439 (_LIB_VERSION): Set as weak alias of _LIB_VERSION_INTERNAL.
24440
244412013-05-12 Joseph Myers <joseph@codesourcery.com>
24442
24443 * math/libm-test.inc (struct test_fff_f_data): New type.
24444 (RUN_TEST_LOOP_fff_f): New macro.
24445 (fma_test_data): New variable.
24446 (fma_test): Run tests with RUN_TEST_LOOP_fff_f.
24447 (fma_towardzero_test_data): New variable.
24448 (fma_test_towardzero): Run tests with RUN_TEST_LOOP_fff_f.
24449 (fma_downward_test_data): New variable.
24450 (fma_test_downward): Run tests with RUN_TEST_LOOP_fff_f.
24451 (fma_upward_test_data): New variable.
24452 (fma_test_upward): Run tests with RUN_TEST_LOOP_fff_f.
24453
24454 * math/libm-test.inc (BUILD_COMPLEX_ULP): New macro.
24455 (struct test_c_c_data): New type.
24456 (RUN_TEST_LOOP_c_c): New macro.
24457 (cacos_test_data): New variable.
24458 (cacos_test): Run tests with RUN_TEST_LOOP_c_c.
24459 (cacosh_test_data): New variable.
24460 (cacosh_test): Run tests with RUN_TEST_LOOP_c_c.
24461 (casin_test_data): New variable.
24462 (casin_test): Run tests with RUN_TEST_LOOP_c_c.
24463 (casinh_test_data): New variable.
24464 (casinh_test): Run tests with RUN_TEST_LOOP_c_c.
24465 (catan_test_data): New variable.
24466 (catan_test): Run tests with RUN_TEST_LOOP_c_c.
24467 (catanh_test_data): New variable.
24468 (catanh_test): Run tests with RUN_TEST_LOOP_c_c.
24469 (ccos_test_data): New variable.
24470 (ccos_test): Run tests with RUN_TEST_LOOP_c_c.
24471 (ccosh_test_data): New variable.
24472 (ccosh_test): Run tests with RUN_TEST_LOOP_c_c.
24473 (cexp_test_data): New variable.
24474 (cexp_test): Run tests with RUN_TEST_LOOP_c_c.
24475 (clog_test_data): New variable.
24476 (clog_test): Run tests with RUN_TEST_LOOP_c_c.
24477 (clog10_test_data): New variable.
24478 (clog10_test): Run tests with RUN_TEST_LOOP_c_c.
24479 (conj_test_data): New variable.
24480 (conj_test): Run tests with RUN_TEST_LOOP_c_c.
24481 (cproj_test_data): New variable.
24482 (cproj_test): Run tests with RUN_TEST_LOOP_c_c.
24483 (csin_test_data): New variable.
24484 (csin_test): Run tests with RUN_TEST_LOOP_c_c.
24485 (csinh_test_data): New variable.
24486 (csinh_test): Run tests with RUN_TEST_LOOP_c_c.
24487 (csqrt_test_data): New variable.
24488 (csqrt_test): Run tests with RUN_TEST_LOOP_c_c.
24489 (ctan_test_data): New variable.
24490 (ctan_test): Run tests with RUN_TEST_LOOP_c_c.
24491 (ctan_tonearest_test_data): New variable.
24492 (ctan_test_tonearest): Run tests with RUN_TEST_LOOP_c_c.
24493 (ctan_towardzero_test_data): New variable.
24494 (ctan_test_towardzero): Run tests with RUN_TEST_LOOP_c_c.
24495 (ctan_downward_test_data): New variable.
24496 (ctan_test_downward): Run tests with RUN_TEST_LOOP_c_c.
24497 (ctan_upward_test_data): New variable.
24498 (ctan_test_upward): Run tests with RUN_TEST_LOOP_c_c.
24499 (ctanh_test_data): New variable.
24500 (ctanh_test): Run tests with RUN_TEST_LOOP_c_c.
24501 (ctanh_tonearest_test_data): New variable.
24502 (ctanh_test_tonearest): Run tests with RUN_TEST_LOOP_c_c.
24503 (ctanh_towardzero_test_data): New variable.
24504 (ctanh_test_towardzero): Run tests with RUN_TEST_LOOP_c_c.
24505 (ctanh_downward_test_data): New variable.
24506 (ctanh_test_downward): Run tests with RUN_TEST_LOOP_c_c.
24507 (ctanh_upward_test_data): New variable.
24508 (ctanh_test_upward): Run tests with RUN_TEST_LOOP_c_c.
24509 * math/gen-libm-test.pl (get_ulps): Use BUILD_COMPLEX_ULP instead
24510 of BUILD_COMPLEX.
24511
24512 * math/libm-test.inc (struct test_ff_f_data): New type.
24513 (struct test_ff_f_data_nexttoward): Likewise.
24514 (RUN_TEST_LOOP_2_f): New macro.
24515 (RUN_TEST_LOOP_ff_f): Likewise.
24516 (atan2_test_data): New variable.
24517 (atan2_test): Run tests with RUN_TEST_LOOP_ff_f.
24518 (copysign_test_data): New variable.
24519 (copysign_test): Run tests with RUN_TEST_LOOP_ff_f.
24520 (fdim_test_data): New variable.
24521 (fdim_test): Run tests with RUN_TEST_LOOP_ff_f.
24522 (fmax_test_data): New variable.
24523 (fmax_test): Run tests with RUN_TEST_LOOP_ff_f.
24524 (fmin_test_data): New variable.
24525 (fmin_test): Run tests with RUN_TEST_LOOP_ff_f.
24526 (fmod_test_data): New variable.
24527 (fmod_test): Run tests with RUN_TEST_LOOP_ff_f.
24528 (hypot_test_data): New variable.
24529 (hypot_test): Run tests with RUN_TEST_LOOP_ff_f.
24530 (nextafter_test_data): New variable.
24531 (nextafter_test): Run tests with RUN_TEST_LOOP_ff_f.
24532 (nexttoward_test_data): New variable.
24533 (nexttoward_test): Run tests with RUN_TEST_LOOP_ff_f.
24534 (pow_test_data): New variable.
24535 (pow_test): Run tests with RUN_TEST_LOOP_ff_f.
24536 (pow_tonearest_test_data): New variable.
24537 (pow_test_tonearest): Run tests with RUN_TEST_LOOP_ff_f.
24538 (pow_towardzero_test_data): New variable.
24539 (pow_test_towardzero): Run tests with RUN_TEST_LOOP_ff_f.
24540 (pow_downward_test_data): New variable.
24541 (pow_test_downward): Run tests with RUN_TEST_LOOP_ff_f.
24542 (pow_upward_test_data): New variable.
24543 (pow_test_upward): Run tests with RUN_TEST_LOOP_ff_f.
24544 (remainder_test_data): New variable.
24545 (remainder_test): Run tests with RUN_TEST_LOOP_ff_f.
24546 (scalb_test_data): New variable.
24547 (scalb_test): Run tests with RUN_TEST_LOOP_ff_f.
24548 * sysdeps/i386/fpu/libm-test-ulps: Update.
24549
245502013-05-11 Joseph Myers <joseph@codesourcery.com>
24551
24552 * math/libm-test.inc (fma_test): Use max_value instead of local
24553 variable fltmax.
24554 (nextafter_test): Likewise.
24555
24556 * math/libm-test.inc (acos_towardzero_test_data): New variable.
24557 (acos_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
24558 (acos_downward_test_data): New variable.
24559 (acos_test_downward): Run tests with RUN_TEST_LOOP_f_f.
24560 (acos_upward_test_data): New variable.
24561 (acos_test_upward): Run tests with RUN_TEST_LOOP_f_f.
24562 (acosh_test_data): New variable.
24563 (acosh_test): Run tests with RUN_TEST_LOOP_f_f.
24564 (asin_test_data): New variable.
24565 (asin_test): Run tests with RUN_TEST_LOOP_f_f.
24566 (asin_tonearest_test_data): New variable.
24567 (asin_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
24568 (asin_towardzero_test_data): New variable.
24569 (asin_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
24570 (asin_downward_test_data): New variable.
24571 (asin_test_downward): Run tests with RUN_TEST_LOOP_f_f.
24572 (asin_upward_test_data): New variable.
24573 (asin_test_upward): Run tests with RUN_TEST_LOOP_f_f.
24574 (asinh_test_data): New variable.
24575 (asinh_test): Run tests with RUN_TEST_LOOP_f_f.
24576 (atan_test_data): New variable.
24577 (atan_test): Run tests with RUN_TEST_LOOP_f_f.
24578 (atanh_test_data): New variable.
24579 (atanh_test): Run tests with RUN_TEST_LOOP_f_f.
24580 (cbrt_test_data): New variable.
24581 (cbrt_test): Run tests with RUN_TEST_LOOP_f_f.
24582 (ceil_test_data): New variable.
24583 (ceil_test): Run tests with RUN_TEST_LOOP_f_f.
24584 (cos_test_data): New variable.
24585 (cos_test): Run tests with RUN_TEST_LOOP_f_f.
24586 (cos_tonearest_test_data): New variable.
24587 (cos_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
24588 (cos_towardzero_test_data): New variable.
24589 (cos_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
24590 (cos_downward_test_data): New variable.
24591 (cos_test_downward): Run tests with RUN_TEST_LOOP_f_f.
24592 (cos_upward_test_data): New variable.
24593 (cos_test_upward): Run tests with RUN_TEST_LOOP_f_f.
24594 (cosh_test_data): New variable.
24595 (cosh_test): Run tests with RUN_TEST_LOOP_f_f.
24596 (cosh_tonearest_test_data): New variable.
24597 (cosh_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
24598 (cosh_towardzero_test_data): New variable.
24599 (cosh_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
24600 (cosh_downward_test_data): New variable.
24601 (cosh_test_downward): Run tests with RUN_TEST_LOOP_f_f.
24602 (cosh_upward_test_data): New variable.
24603 (cosh_test_upward): Run tests with RUN_TEST_LOOP_f_f.
24604 (erf_test_data): New variable.
24605 (erf_test): Run tests with RUN_TEST_LOOP_f_f.
24606 (erfc_test_data): New variable.
24607 (erfc_test): Run tests with RUN_TEST_LOOP_f_f.
24608 (exp_test_data): New variable.
24609 (exp_test): Run tests with RUN_TEST_LOOP_f_f.
24610 (exp_tonearest_test_data): New variable.
24611 (exp_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
24612 (exp_towardzero_test_data): New variable.
24613 (exp_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
24614 (exp_downward_test_data): New variable.
24615 (exp_test_downward): Run tests with RUN_TEST_LOOP_f_f.
24616 (exp_upward_test_data): New variable.
24617 (exp_test_upward): Run tests with RUN_TEST_LOOP_f_f.
24618 (exp10_test_data): New variable.
24619 (exp10_test): Run tests with RUN_TEST_LOOP_f_f.
24620 (exp2_test_data): New variable.
24621 (exp2_test): Run tests with RUN_TEST_LOOP_f_f.
24622 (expm1_test_data): New variable.
24623 (expm1_test): Run tests with RUN_TEST_LOOP_f_f.
24624 (fabs_test_data): New variable.
24625 (fabs_test): Run tests with RUN_TEST_LOOP_f_f.
24626 (floor_test_data): New variable.
24627 (floor_test): Run tests with RUN_TEST_LOOP_f_f.
24628 (j0_test_data): New variable.
24629 (j0_test): Run tests with RUN_TEST_LOOP_f_f.
24630 (j1_test_data): New variable.
24631 (j1_test): Run tests with RUN_TEST_LOOP_f_f.
24632 (log_test_data): New variable.
24633 (log_test): Run tests with RUN_TEST_LOOP_f_f.
24634 (log10_test_data): New variable.
24635 (log10_test): Run tests with RUN_TEST_LOOP_f_f.
24636 (log1p_test_data): New variable.
24637 (log1p_test): Run tests with RUN_TEST_LOOP_f_f.
24638 (log2_test_data): New variable.
24639 (log2_test): Run tests with RUN_TEST_LOOP_f_f.
24640 (logb_test_data): New variable.
24641 (logb_test): Run tests with RUN_TEST_LOOP_f_f.
24642 (logb_downward_test_data): New variable.
24643 (logb_test_downward): Run tests with RUN_TEST_LOOP_f_f.
24644 (nearbyint_test_data): New variable.
24645 (nearbyint_test): Run tests with RUN_TEST_LOOP_f_f.
24646 (rint_test_data): New variable.
24647 (rint_test): Run tests with RUN_TEST_LOOP_f_f.
24648 (rint_tonearest_test_data): New variable.
24649 (rint_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
24650 (rint_towardzero_test_data): New variable.
24651 (rint_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
24652 (rint_downward_test_data): New variable.
24653 (rint_test_downward): Run tests with RUN_TEST_LOOP_f_f.
24654 (rint_upward_test_data): New variable.
24655 (rint_test_upward): Run tests with RUN_TEST_LOOP_f_f.
24656 (round_test_data): New variable.
24657 (round_test): Run tests with RUN_TEST_LOOP_f_f.
24658 (sin_test_data): New variable.
24659 (sin_test): Run tests with RUN_TEST_LOOP_f_f.
24660 (sin_tonearest_test_data): New variable.
24661 (sin_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
24662 (sin_towardzero_test_data): New variable.
24663 (sin_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
24664 (sin_downward_test_data): New variable.
24665 (sin_test_downward): Run tests with RUN_TEST_LOOP_f_f.
24666 (sin_upward_test_data): New variable.
24667 (sin_test_upward): Run tests with RUN_TEST_LOOP_f_f.
24668 (sinh_test_data): New variable.
24669 (sinh_test): Run tests with RUN_TEST_LOOP_f_f.
24670 (sinh_tonearest_test_data): New variable.
24671 (sinh_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
24672 (sinh_towardzero_test_data): New variable.
24673 (sinh_towardzero): Run tests with RUN_TEST_LOOP_f_f.
24674 (sinh_downward_test_data): New variable.
24675 (sinh_test_downward): Run tests with RUN_TEST_LOOP_f_f.
24676 (sinh_upward_test_data): New variable.
24677 (sinh_test_upward): Run tests with RUN_TEST_LOOP_f_f.
24678 (sqrt_test_data): New variable.
24679 (sqrt_test): Run tests with RUN_TEST_LOOP_f_f.
24680 (tan_test_data): New variable.
24681 (tan_test): Run tests with RUN_TEST_LOOP_f_f.
24682 (tan_tonearest_test_data): New variable.
24683 (tan_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
24684 (tan_towardzero_test_data): New variable.
24685 (tan_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
24686 (tan_downward_test_data): New variable.
24687 (tan_test_downward): Run tests with RUN_TEST_LOOP_f_f.
24688 (tan_upward_test_data): New variable.
24689 (tan_test_upward): Run tests with RUN_TEST_LOOP_f_f.
24690 (tanh_test_data): New variable.
24691 (tanh_test): Run tests with RUN_TEST_LOOP_f_f.
24692 (tgamma_test_data): New variable.
24693 (tgamma_test): Run tests with RUN_TEST_LOOP_f_f.
24694 (trunc_test_data): New variable.
24695 (trunc_test): Run tests with RUN_TEST_LOOP_f_f.
24696 (y0_test_data): New variable.
24697 (y0_test): Run tests with RUN_TEST_LOOP_f_f.
24698 (y1_test_data): New variable.
24699 (y1_test): Run tests with RUN_TEST_LOOP_f_f.
24700 (significand_test_data): New variable.
24701 (significand_test): Run tests with RUN_TEST_LOOP_f_f.
24702
247032013-05-10 Christian Grönke <cgr_bugs@sysgo.com>
24704
24705 [BZ #12387]
24706 * sysdeps/unix/sysv/linux/sh/getgid.c: New file.
24707
247082013-05-10 Pino Toscano <toscano.pino@tiscali.it>
24709
24710 * sysdeps/mach/hurd/bits/statvfs.h: Add ST_NOATIME.
24711
247122013-05-10 Andreas Jaeger <aj@suse.de>
24713
24714 [BZ #15448]
24715 * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_SET_S)
24716 (__CPU_CLR_S, __CPU_ISSET_S): Avoid integer overflow.
24717
247182013-05-10 Joseph Myers <joseph@codesourcery.com>
24719
24720 * math/gen-libm-test.pl (adjust_arg): New function.
24721 (special_functions): Handle generating output in both functions
24722 and arrays.
24723 (parse_args): Likewise.
24724 (generate_testfile): Handle START_DATA and END_DATA. Pass extra
24725 $in_func argument to parse_args.
24726 * math/libm-test.inc (struct test_f_f_data): New type.
24727 (IF_ROUND_INIT_): New macro.
24728 (IF_ROUND_INIT_FE_DOWNWARD): Likewise.
24729 (IF_ROUND_INIT_FE_TONEAREST): Likewise.
24730 (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
24731 (IF_ROUND_INIT_FE_UPWARD): Likewise.
24732 (ROUND_RESTORE_): Likewise.
24733 (ROUND_RESTORE_FE_DOWNWARD): Likewise.
24734 (ROUND_RESTORE_FE_TONEAREST): Likewise.
24735 (ROUND_RESTORE_FE_TOWARDZERO): Likewise.
24736 (ROUND_RESTORE_FE_UPWARD): Likewise.
24737 (RUN_TEST_LOOP_f_f): New macro.
24738 (acos_test_data): New variable.
24739 (acos_test): Run tests with RUN_TEST_LOOP_f_f.
24740 (acos_tonearest_test_data): New variable.
24741 (acos_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
24742
247432013-05-10 Siddhesh Poyarekar <siddhesh@redhat.com>
24744
24745 * benchtests/bench-skeleton.c (startup): Fix coding style.
24746
247472013-05-10 Joseph Myers <joseph@codesourcery.com>
24748
24749 [BZ #6809]
24750 * math/w_tgamma.c (__tgamma): Also call __kernel_standard for
24751 negative infinity argument.
24752 * math/w_tgammaf.c (__tgammaf): Also call __kernel_standard_f for
24753 negative infinity argument.
24754 * math/w_tgammal.c (__tgammal): Also call __kernel_standard_l for
24755 negative infinity argument.
24756 * math/libm-test.inc (tgamma_test): Expect errno to be set for
24757 domain errors.
24758
247592013-05-10 Florian Weimer <fweimer@redhat.com>
24760
24761 * elf/sprof.c (load_profdata): Use fstat64 instead of fstat.
24762 * iconv/iconv_charmap.c (charmap_conversion): Likewise.
24763 * iconv/iconv_prog.c (main): Likewise.
24764 * locale/programs/charmap-dir.c (charmap_readdir)
24765 (fopen_uncompressed): Likewise.
24766 * locale/programs/locfile.c (siblings_uncached)
24767 (write_locale_data): Use lstat64 instead of lstat.
24768 * sunrpc/rpc_main.c (find_cpp, checkfiles): Use stat64 instead of
24769 stat.
24770
247712013-05-10 Andreas Jaeger <aj@suse.de>
24772
24773 [BZ #15395]
24774 * sunrpc/rpc_main.c (main): Invoke setlocale and textdomain for
24775 localization.
24776 Include <locale.h>.
24777
247782013-05-09 Carlos O'Donell <carlos@redhat.com>
24779
24780 * elf/dl-close.c (_dl_close_worker): Add comments.
24781
247822013-05-09 Joseph Myers <joseph@codesourcery.com>
24783
24784 [BZ #15359]
24785 * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (c): Use 106 bits for
24786 high part of pi/2.
24787 (__ieee754_rem_pio2l): Update comments.
24788
24789 [BZ #15429]
24790 * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c (c): Use 113 bits for
24791 high part of pi/2.
24792 (__ieee754_rem_pio2l): Update comments.
24793
24794 * math/libm-test.inc (M_SQRT_2_2): Remove macro.
24795 (csqrt_test): Use M_SQRT1_2l instead of M_SQRT_2_2.
24796
24797 * math/libm-test.inc (carg_test): Use M_PI_34l instead of 3 *
24798 M_PI_4l.
24799
24800 * math/libm-test.inc (M_PI_34l): Define using decimal constant.
24801 (M_PI_34_LOG10El): Likewise.
24802 (M_PI2_LOG10El): Likewise.
24803 (M_PI4_LOG10El): Likewise.
24804 (M_PI_LOG10El): Likewise.
24805
248062013-05-08 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
24807
24808 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
24809
248102013-05-08 Joseph Myers <joseph@codesourcery.com>
24811
24812 * math/libm-test.inc (PLUS_ZERO_INIT): New macro.
24813 (MINUS_ZERO_INIT): Likewise.
24814 (PLUS_INFTY_INIT): Likewise.
24815 (MINUS_INFTY_INIT): Likewise.
24816 (QNAN_VALUE_INIT): Likewise.
24817 (MAX_VALUE_INIT): Likewise.
24818 (MIN_VALUE_INIT): Likewise.
24819 (MIN_SUBNORM_VALUE_INIT): Likewise.
24820 (plus_zero): Initialize with PLUS_ZERO_INIT.
24821 (minus_zero): Initialize with MINUS_ZERO_INIT.
24822 (plus_infty): Initialize with PLUS_INFTY_INIT.
24823 (minus_infty): Initialize with MINUS_INFTY_INIT.
24824 (qnan_value): Initialize with QNAN_VALUE_INIT.
24825 (max_value): Initialize with MAX_VALUE_INIT.
24826 (min_value): Initialize with MIN_VALUE_INIT.
24827 (min_subnorm_value): Initialize with MIN_SUBNORM_VALUE_INIT.
24828
24829 * math/libm-test.inc (RUN_TEST_if_f): New macro.
24830 (jn_test): Use TEST_if_f instead of TEST_ff_f.
24831 (ldexp_text): Use TEST_fi_i instead of TEST_ff_f.
24832 (yn_test): Use TEST_if_f instead of TEST_ff_f.
24833
24834 * math/libm-test.inc (RUN_TEST_f_f): New macro.
24835 (RUN_TEST_2_f): Likewise.
24836 (RUN_TEST_ff_f): Likewise.
24837 (RUN_TEST_fi_f): Likewise.
24838 (RUN_TEST_fl_f): Likewise.
24839 (RUN_TEST_fff_f): Likewise.
24840 (RUN_TEST_c_f): Likewise.
24841 (RUN_TEST_f_f1): Likewise.
24842 (RUN_TEST_fF_f1): Likewise.
24843 (RUN_TEST_fI_f1): Likewise.
24844 (RUN_TEST_ffI_f1): Likewise.
24845 (RUN_TEST_c_c): Likewise.
24846 (RUN_TEST_cc_c): Likewise.
24847 (RUN_TEST_f_i): Likewise.
24848 (RUN_TEST_f_i_tg): Likewise.
24849 (RUN_TEST_ff_i_tg): Likewise.
24850 (RUN_TEST_f_b): Likewise.
24851 (RUN_TEST_f_b_tg): Likewise.
24852 (RUN_TEST_f_l): Likewise.
24853 (RUN_TEST_f_L): Likewise.
24854 (RUN_TEST_sincos): Likewise.
24855 * math/gen-libm-test.pl (new_test): Take new argument to indicate
24856 whether to show exceptions. Do not include ");\n" in return
24857 value.
24858 (special_functions): Output call to RUN_TEST_sincos instead of
24859 check_float calls. Update calls to new_test.
24860 (parse_args): Output call to single RUN_TEST_* macro instead of
24861 check_* calls and other assignments. Update calls to new_test.
24862
24863 [BZ #2546]
24864 [BZ #2560]
24865 [BZ #5159]
24866 [BZ #15426]
24867 * sysdeps/ieee754/k_standard.c (__kernel_standard): Copy sign of
24868 input to result for tgamma overflow.
24869 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Include <float.h>.
24870 (gamma_coeff): New variable.
24871 (NCOEFF): New macro.
24872 (gamma_positive): New function.
24873 (__ieee754_gamma_r): Handle positive infinity, NaN, overflow and
24874 underflow here. Use gamma_positive instead of exp (lgamma) for
24875 other arguments.
24876 * sysdeps/ieee754/flt-32/e_gammaf_r.c: Include <float.h>.
24877 (gamma_coeff): New variable.
24878 (NCOEFF): New macro.
24879 (gammaf_positive): New function.
24880 (__ieee754_gammaf_r): Handle positive infinity, NaN, overflow and
24881 underflow here. Use gamma_positive instead of exp (lgamma) for
24882 other arguments.
24883 * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Include <float.h>.
24884 (gamma_coeff): New variable.
24885 (NCOEFF): New macro.
24886 (gammal_positive): New function.
24887 (__ieee754_gammal_r): Handle positive infinity, NaN, overflow and
24888 underflow here. Use gamma_positive instead of exp (lgamma) for
24889 other arguments.
24890 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Include <float.h>.
24891 (gamma_coeff): New variable.
24892 (NCOEFF): New macro.
24893 (gammal_positive): New function.
24894 (__ieee754_gammal_r): Handle positive infinity, overflow and
24895 underflow here. Handle NaN the same as positive infinity. Remove
24896 check x < 0xffffffff for negative integers. Use gamma_positive
24897 instead of exp (lgamma) for other arguments.
24898 * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Include <float.h>.
24899 (gamma_coeff): New variable.
24900 (NCOEFF): New macro.
24901 (gammal_positive): New function.
24902 * sysdeps/ieee754/dbl-64/gamma_product.c: New file.
24903 * sysdeps/ieee754/dbl-64/gamma_productf.c: Likewise.
24904 * sysdeps/ieee754/ldbl-128/gamma_productl.c: Likewise.
24905 * sysdeps/ieee754/ldbl-128ibm/gamma_productl.c: Likewise.
24906 * sysdeps/ieee754/ldbl-96/gamma_product.c: Likewise.
24907 * sysdeps/ieee754/ldbl-96/gamma_productl.c: Likewise.
24908 * sysdeps/generic/math_private.h (__gamma_productf): New
24909 prototype.
24910 (__gamma_product): Likewise.
24911 (__gamma_productl): Likewise.
24912 * math/Makefile (libm-calls): Add gamma_product.
24913 * math/libm-test.inc (tgamma_test): Add more tests.
24914 * sysdeps/i386/fpu/libm-test-ulps: Update.
24915 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
24916
249172013-05-08 Ondřej Bílka <neleai@seznam.cz>
24918
24919 * benchtests/bench-skeleton.c (main): Preheat CPU.
24920
249212013-05-07 Aurelien Jarno <aurelien@aurel32.net>
24922
24923 * misc/sys/param.h (DEV_BSIZE): Define only if not already defined.
24924
249252013-05-07 Roland McGrath <roland@hack.frob.com>
24926
24927 * sysdeps/generic/ldsodefs.h [IS_IN_rtld]: Declare _dl_skip_args
24928 and _dl_skip_args_internal.
24929
249302013-05-07 Carlos O'Donell <carlos@redhat.com>
24931
24932 * manual/message.texi (Message Translation): Talk about users.
24933 Message to key mapping impacts design.
24934
249352013-05-06 Roland McGrath <roland@hack.frob.com>
24936
24937 * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: New file.
24938
24939 * elf/dl-open.c: Remove declaration of _dl_sysdep_start.
24940
24941 * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: Moved to ...
24942 * sysdeps/wordsize-64/glob64.c: ... here.
24943
24944 * sysdeps/generic/not-cancel.h (NO_CANCELLATION): New macro.
24945 (pause_not_cancel, nanosleep_not_cancel, sigsuspend_not_cancel):
24946 New macros.
24947
24948 * debug/getlogin_r_chk.c: Moved to ...
24949 * login/getlogin_r_chk.c: ... here.
24950 * debug/Makefile (routines): Move getlogin_r_chk to ...
24951 * login/Makefile (routines): ... here.
24952 * debug/Versions (libc: GLIBC_2.4): Move getlogin_r_chk to ...
24953 * login/Versions (libc: GLIBC_2.4): ... here.
24954
24955 * io/poll.c (__poll): Renamed from poll.
24956 Add libc_hidden_def.
24957 (poll): Define as weak alias.
24958
24959 * debug/ptsname_r_chk.c: Moved to ...
24960 * login/ptsname_r_chk.c: ... here.
24961 * debug/Makefile (routines): Move ptsname_r_chk to ...
24962 * login/Makefile (routines): ... here.
24963 * debug/Versions (libc: GLIBC_2.4): Move __ptsname_r_chk to ...
24964 * login/Versions (libc: GLIBC_2.4): ... here.
24965
24966 * posix/getlogin.c: Moved to ...
24967 * login/getlogin.c: ... here.
24968 * posix/getlogin_r.c: Moved to ...
24969 * login/getlogin_r.c: ... here.
24970 * posix/getlogin_r.c: Moved to ...
24971 * login/getlogin_r.c: ... here.
24972 * posix/Makefile (routines): Move getlogin, getlogin_r, setlogin to ...
24973 * login/Makefile (routines): ... here.
24974 * posix/Versions (libc: GLIBC_2.0): Move setlogin to ...
24975 * login/Versions (libc: GLIBC_2.0): ... here.
24976
24977 * resource/setrlimit.c (__setrlimit): Renamed from setrlimit.
24978 (setrlimit): Define as weak alias.
24979
24980 * sysdeps/posix/truncate.c (__truncate): Renamed from truncate.
24981 Call __ names for open, ftruncate, and close.
24982 For LENGTH==0 case, just use O_TRUNC rather than calling ftruncate.
24983 (truncate): Define as weak alias.
24984
249852013-05-06 Joseph Myers <joseph@codesourcery.com>
24986
24987 * math/gen-libm-test.pl (parse_args): Initialize x before each
24988 test of frexp, modf and remquo.
24989
24990 * math/libm-test.inc (gamma_test): Consistently use TEST_f_f1 to
24991 test signgam value.
24992
249932013-05-06 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
24994
24995 [BZ #15418]
24996 [BZ #15419]
24997 * sysdeps/powerpc/fpu/e_hypot.c: Fix spurious FP exception generated by
24998 internal tests.
24999 * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
25000
250012013-05-06 Roland McGrath <roland@hack.frob.com>
25002
25003 * elf/dl-writev.h: New file.
25004 * elf/dl-misc.c: Include it.
25005 (_dl_debug_vdprintf): Call _dl_writev instead of __writev et al.
25006 * sysdeps/unix/sysv/linux/dl-writev.h: New file.
25007
250082013-05-04 Joseph Myers <joseph@codesourcery.com>
25009
25010 * math/libm-test.inc (noXFails): Remove variable.
25011 (noXPasses): Likewise.
25012 (BUILD_COMPLEX_INT): Remove macro.
25013 (print_screen): Remove xfail argument.
25014 (print_screen_max_error): Likewise.
25015 (update_stats): Likewise.
25016 (print_max_error): Likewise. Update calls to other affected
25017 functions.
25018 (print_complex_max_error): Likewise.
25019 (test_single_exception): Update calls to print_screen.
25020 (test_single_errno): Likewise.
25021 (check_float_internal): Remove xfail argument. Update calls to
25022 other affected functions.
25023 (check_float): Likewise.
25024 (check_complex): Likewise.
25025 (check_int): Likewise.
25026 (check_long): Likewise.
25027 (check_bool): Likewise.
25028 (check_longlong): Likewise.
25029 (main): Don't print noXFails and noXPasses.
25030 * math/gen-libm-test.pl (top level): Don't mention expected
25031 failure handling in comment.
25032 (new_test): Don't handle expected failures.
25033 (parse_args): Don't mention expected failure handling in comment.
25034 (generate_testfile): Don't handle expected failures.
25035 (parse_ulps): Likewise.
25036 (print_ulps_file): Likewise.
25037 (get_failure): Remove function.
25038 (output_test): Don't handle expected failures.
25039 * make/README.libm-test: Don't mention expected failure handling.
25040
25041 * math/libm-test.inc (plus_zero): Make const. Add initializer.
25042 (minus_zero): Likewise.
25043 (plus_infty): Likewise.
25044 (minus_infty): Likewise.
25045 (qnan_value): Likewise.
25046 (max_value): Likewise.
25047 (min_value): Likewise.
25048 (min_subnorm_value): Likewise.
25049 (initialize): Do not initialize those variables dynamically.
25050
250512013-05-03 Roland McGrath <roland@hack.frob.com>
25052
25053 * io/open.c (__open_2): Moved to ...
25054 * io/open_2.c: ... this new file.
25055 * io/open64.c (__open64_2): Moved to ...
25056 * io/open64_2.c: ... this new file.
25057 * io/openat.c (__openat_2): Moved to ...
25058 * io/openat_2.c: ... this new file.
25059 * io/openat64.c (__openat64_2): Moved to ...
25060 * io/openat64_2.c: ... this new file.
25061 * io/Makefile (routines): Add them.
25062 * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Remove them.
25063 * sysdeps/unix/sysv/linux/open_2.c: File removed.
25064 * sysdeps/unix/sysv/linux/open64_2.c: File removed.
25065 * sysdeps/unix/sysv/linux/openat.c (__OPENAT_2): Removed.
25066 * sysdeps/unix/sysv/linux/openat64.c (__OPENAT_2): Removed.
25067 * sysdeps/unix/sysv/linux/wordsize-64/openat.c (__openat_2): Removed.
25068 (__openat64): Add hidden_ver.
25069 * sysdeps/mach/hurd/open.c (__open_2, __open64_2): Removed.
25070 * sysdeps/mach/hurd/openat.c (__openat_2): Removed.
25071
25072 * elf/dl-sysdep.c (_dl_sysdep_start) [NEED_DL_SYSINFO]:
25073 Separately conditionalize setting of GLRO(dl_sysinfo) so
25074 that the GLRO(dl_sysinfo_dso) test is under [NEED_DL_SYSINFO_DSO]
25075 as well, but the actual setting is only under [NEED_DL_SYSINFO].
25076
250772013-04-30 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
25078
25079 * sysdeps/unix/sysv/linux/powerpc/Versions: Add __vdso_time symbol.
25080 * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Add __vdso_time
25081 definition.
25082 (VDSO_IFUNC_RET): Cast to void * to silence compiler warning.
25083 * sysdeps/unix/sysv/linux/powerpc/init-first.c
25084 (_libc_vdso_platform_setup): Add __vdso_time initialization.
25085 * sysdeps/unix/sysv/linux/powerpc/time.c: New file: time implementation
25086 for PowerPC using vDSO where is avaliable or gettimeofday as a fallback.
25087
250882013-05-03 Joseph Myers <joseph@codesourcery.com>
25089
25090 * math/libm-test.inc (lgamma_test): Consistently use TEST_f_f1 to
25091 test signgam value.
25092
25093 * math/libm-test.inc (hypot_test): Do not use
25094 IGNORE_ZERO_INF_SIGN.
25095
250962013-05-03 Andreas Jaeger <aj@suse.de>
25097
25098 * sysdeps/gnu/netinet/tcp.h (TCP_TIMESTAMP): New value, from
25099 Linux 3.9.
25100 * sysdeps/unix/sysv/linux/bits/socket.h (PF_VSOCK, AF_VSOCK): Add.
25101 (PF_MAX): Adjust for VSOCK change.
25102
251032013-05-03 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
25104
25105 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
25106
251072013-05-02 Carlos O'Donell <carlos@redhat.com>
25108
25109 [BZ #15264]
25110 * localedata/locales/en_CA (LC_MESSAGES): Define yesstr and nostr.
25111 * localedata/locales/es_AR (LC_MESSAGES): Copy es_ES.
25112 * localedata/locales/es_ES (LC_MESSAGES): Define yesstr and nostr.
25113
251142013-05-02 David S. Miller <davem@davemloft.net>
25115
25116 * sysdeps/sparc/fpu/libm-test-ulps: Update.
25117
251182013-05-01 Ondřej Bílka <neleai@seznam.cz>
25119
25120 * string/bits/string2.h (__strcmp_cg): Call __strcmp_gc.
25121
251222013-05-01 Roland McGrath <roland@hack.frob.com>
25123
25124 * sysdeps/posix/opendir.c: Include <sys/param.h> to get MIN/MAX macros.
25125
251262013-05-01 Richard Smith <richard@metafoo.co.uk>
25127
25128 [BZ #14952]
25129 * misc/sys/cdefs.h (__extern_inline, __extern_always_inline)
25130 [__GNUC__ && (__GNUC_STDC_INLINE__ || __GNUC_GNU_INLINE__)]:
25131 Use __attribute__ ((__gnu_inline__)).
25132 [__GNUC__ && !(__GNUC_STDC_INLINE__ || __GNUC_GNU_INLINE__)]:
25133 Don't use __attribute__ ((__gnu_inline__)).
25134
251352013-05-01 Joseph Myers <joseph@codesourcery.com>
25136
25137 [BZ #15423]
25138 * math/s_catan.c (__catan): Handle small real or imaginary part of
25139 input specially to avoid spurious underflow.
25140 * math/s_catanf.c (__catanf): Likewise.
25141 * math/s_catanh.c (__catanh): Likewise.
25142 * math/s_catanhf.c (__catanhf): Likewise.
25143 * math/s_catanhl.c (__catanhl): Likewise.
25144 * math/s_catanl.c (__catanl): Likewise.
25145 * math/libm-test.inc (catan_test): Add more tests.
25146 (catanh_test): Likewise.
25147 * sysdeps/i386/fpu/libm-test-ulps: Update.
25148 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
25149
251502013-04-30 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
25151
25152 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
25153
251542013-04-30 Joseph Myers <joseph@codesourcery.com>
25155
25156 [BZ #15416]
25157 * math/s_catan.c (__catan): Compute expressions 1 - x^2 - y^2 more
25158 accurately for denominator in atan2.
25159 * math/s_catanf.c (__catanf): Likewise.
25160 * math/s_catanh.c (__catanh): Likewise.
25161 * math/s_catanhf.c (__catanhf): Likewise.
25162 * math/s_catanhl.c (__catanhl): Likewise.
25163 * math/s_catanl.c (__catanl): Likewise.
25164 * math/libm-test.inc (catan_test): Add more tests.
25165 (catanh_test): Likewise.
25166 * sysdeps/i386/fpu/libm-test-ulps: Update.
25167 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
25168
251692013-04-30 Siddhesh Poyarekar <siddhesh@redhat.com>
25170
25171 * sysdeps/ieee754/dbl-64/s_sin.c: Format code.
25172
25173 * benchtests/Makefile (bench): Remove slow benchmarks.
25174 * benchtests/atan-inputs: Add slow benchmark inputs.
25175 * benchtests/bench-modf.c (NUM_VARIANTS): Define.
25176 (BENCH_FUNC): Accept variant offset.
25177 (VARIANT): Define.
25178 * benchtests/bench-skeleton.c (main): Run benchmark for each
25179 variant.
25180 * benchtests/cos-inputs: Add slow benchmark inputs.
25181 * benchtests/exp-inputs: Likewise.
25182 * benchtests/pow-inputs: Likewise.
25183 * benchtests/sin-inputs: Likewise.
25184 * benchtests/slowatan-inputs: Remove.
25185 * benchtests/slowatan.c: Remove.
25186 * benchtests/slowcos-inputs: Remove.
25187 * benchtests/slowcos.c: Remove.
25188 * benchtests/slowexp-inputs: Remove.
25189 * benchtests/slowexp.c: Remove.
25190 * benchtests/slowpow-inputs: Remove.
25191 * benchtests/slowpow.c: Remove.
25192 * benchtests/slowsin-inputs: Remove.
25193 * benchtests/slowsin.c: Remove.
25194 * benchtests/slowtan-inputs: Remove.
25195 * benchtests/slowtan.c: Remove.
25196 * benchtests/tan-inputs: Add slow benchmark inputs.
25197 * scripts/bench.pl: Parse comments and directives.
25198
25199 * benchtests/Makefile: Remove *-ITER. Define BENCH_DURATION
25200 in CPPFLAGS.
25201 ($(objpfx)bench-%.c): Remove *-ITER.
25202 * benchtests/bench-modf.c: Remove definition of ITER.
25203 * benchtests/bench-skeleton.c (TIMESPEC_AFTER): New macro.
25204 (main): Loop for DURATION seconds instead of fixed number of
25205 iterations.
25206 * scripts/bench.pl: Don't expect iterations in parameters.
25207
252082013-04-29 Roland McGrath <roland@hack.frob.com>
25209
25210 * io/fchdir.c (__fchdir): Renamed from fchdir.
25211 (fchdir): Define as weak alias.
25212
252132013-04-29 Joseph Myers <joseph@codesourcery.com>
25214
25215 * math/libm-test.inc (ERRNO_UNCHANGED): New macro.
25216 (ERRNO_EDOM): Likewise.
25217 (ERRNO_ERANGE): Likewise.
25218 (noErrnoTests): New variable.
25219 (init_max_error): Set errno to 0.
25220 (test_single_errno): New function.
25221 (test_errno): Likewise.
25222 (check_float_internal): Call test_errno. Set errno to 0.
25223 (check_complex): Refer to errno tests in comment.
25224 (check_int): Call test_errno. Set errno to 0.
25225 (check_long): Likewise.
25226 (check_bool): Likewise.
25227 (check_longlong): Likewise.
25228 (cos_test): Use ERRNO_* flags for errno tests instead of
25229 check_int.
25230 (expm1_test): Likewise.
25231 (fmod_test): Likewise.
25232 (ilogb_test): Likewise.
25233 (lgamma_test): Likewise.
25234 (pow_test): Likewise.
25235 (remainder_test): Likewise.
25236 (sin_test): Likewise.
25237 (tan_test): Likewise.
25238 (yn_test): Likewise.
25239 (initialize): Set errno to 0.
25240 (main): Print number of errno tests.
25241 * math/gen-libm-test.pl (parse_args): Allow ERRNO flags on tests.
25242
252432013-04-29 Andreas Jaeger <aj@suse.de>
25244
25245 [BZ #15084]
25246 * resolv/res_debug.c (p_option): Fix strings for RES_USEBSTRING
25247 and RES_USEVC.
25248
25249 [BZ #15085]
25250 * resolv/resolv.h (RES_NOCHECKNAME): Mark as unimplemented.
25251 * resolv/res_debug.c (p_option): Mark RES_NOCHECKNAME as
25252 unimplemented.
25253
25254 [BZ #15380]
25255 * stdlib/random.c (__initstate): Return NULL if
25256 __initstate fails.
25257
25258 [BZ #15086]
25259 * resolv/res_debug.c (p_option): Handle RES_NOALIASES,
25260 RES_KEEPTSIG, RES_BLAST, RES_NOIP6DOTINT, RES_SNGLKUP,
25261 RES_SNGLKUPREOP.
25262
252632013-04-29 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
25264
25265 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
25266
252672013-04-29 Joseph Myers <joseph@codesourcery.com>
25268
25269 * math/libm-test.inc (cacos_test): Add missing semicolons at ends
25270 of individual tests.
25271 (casin_test): Likewise.
25272 (casinh_test): Likewise.
25273
252742013-04-27 Joseph Myers <joseph@codesourcery.com>
25275
25276 [BZ #15409]
25277 * math/s_catan.c (__catan): Handle arguments with large real or
25278 imaginary part separately without squaring.
25279 * math/s_catanf.c (__catanf): Likewise.
25280 * math/s_catanh.c (__catanh): Likewise.
25281 * math/s_catanhf.c (__catanhf): Likewise.
25282 * math/s_catanhl.c [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine
25283 and redefine.
25284 (__catanhl): Handle arguments with large real or imaginary part
25285 separately without squaring.
25286 * math/s_catanl.c [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine
25287 and redefine.
25288 (__catanl): Handle arguments with large real or imaginary part
25289 separately without squaring.
25290 * math/libm-test.inc (catan_test): Add more tests.
25291 (catanh_test): Likewise.
25292 * sysdeps/i386/fpu/libm-test-ulps: Update.
25293 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
25294
252952013-04-27 Andreas Jaeger <aj@suse.de>
25296
25297 [BZ #15007]
25298 * stdlib/stdlib.h: Update guards for qecvt.
25299 * stdlib/bits/stdlib-ldbl.h: Sync guards for qecvt etc with
25300 <stdlib.h>.
25301
253022013-04-27 Allan McRae <allan@archlinux.org>
25303
25304 * sysdeps/i386/fpu/libm-test-ulps: Update.
25305
253062013-04-26 Joseph Myers <joseph@codesourcery.com>
25307
25308 [BZ #15406]
25309 * math/s_catan.c: Include <float.h>.
25310 (__catan): Ensure underflow exception occurs for underflowed
25311 result.
25312 * math/s_catanf.c: Include <float.h>.
25313 (__catanf): Ensure underflow exception occurs for underflowed
25314 result.
25315 * math/s_catanh.c: Include <float.h>.
25316 (__catanh): Ensure underflow exception occurs for underflowed
25317 result.
25318 * math/s_catanhf.c: Include <float.h>.
25319 (__catanhf): Ensure underflow exception occurs for underflowed
25320 result.
25321 * math/s_catanhl.c: Include <float.h>.
25322 (__catanhl): Ensure underflow exception occurs for underflowed
25323 result.
25324 * math/s_catanl.c: Include <float.h>.
25325 (__catanl): Ensure underflow exception occurs for underflowed
25326 result.
25327 * math/libm-test.inc (catan_test): Add more tests.
25328 (catanh_test): Likewise.
25329
25330 [BZ #15405]
25331 * math/s_ccosh.c (__ccosh): Ensure underflow exception occurs for
25332 underflowed result.
25333 * math/s_ccoshf.c (__ccoshf): Likewise.
25334 * math/s_ccoshl.c (__ccoshl): Likewise.
25335 * math/s_csin.c (__csin): Likewise.
25336 * math/s_csinf.c (__csinf): Likewise.
25337 * math/s_csinh.c (__csinh): Likewise.
25338 * math/s_csinhf.c (__csinhf): Likewise.
25339 * math/s_csinhl.c (__csinhl): Likewise.
25340 * math/s_csinl.c (__csinl): Likewise.
25341 * math/libm-test.inc (ccos_test): Add more tests.
25342 (ccosh_test): Likewise.
25343 (csin_test): Likewise.
25344 (csinh_test): Likewise.
25345
253462013-04-26 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
25347
25348 * sysdeps/powerpc/power5/fpu/s_modf.c: Moved to ...
25349 * sysdeps/powerpc/power5+/fpu/s_modf.c: ... this.
25350 * sysdeps/powerpc/power5/fpu/s_modff.c: Moved to ...
25351 * sysdeps/powerpc/power5+/fpu/s_modff.c: ... this.
25352 * sysdeps/powerpc/powerpc32/power5+/Implies: Add powerpc/power5+ and
25353 powerpc/power5+/fpu folders.
25354 * sysdeps/powerpc/powerpc64/power5+/Implies: Likewise.
25355
25356
253572013-04-26 Markus Trippelsdorf <markus@trippelsdorf.de>
25358
25359 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
25360
253612013-04-25 Joseph Myers <joseph@codesourcery.com>
25362
25363 * elf/Makefile [$(config-machine) = x86_64] (tests): Remove
25364 additions to variable.
25365 [$(config-machine) = x86_64] (modules-names): Likewise.
25366 ($(objpfx)tst-audit3): Remove dependency.
25367 ($(objpfx)tst-audit3.out): Likewise.
25368 ($(objpfx)tst-audit4): Likewise.
25369 ($(objpfx)tst-audit4.out): Likewise.
25370 ($(objpfx)tst-audit5): Likewise.
25371 ($(objpfx)tst-audit5.out): Likewise.
25372 ($(objpfx)tst-audit6): Likewise.
25373 ($(objpfx)tst-audit6.out): Likewise.
25374 ($(objpfx)tst-audit7): Likewise.
25375 ($(objpfx)tst-audit7.out): Likewise.
25376 (tst-audit3-ENV): Remove variable.
25377 (tst-audit4-ENV): Likewise.
25378 (tst-audit5-ENV): Likewise.
25379 (tst-audit6-ENV): Likewise.
25380 (tst-audit7-ENV): Likewise.
25381 [$(config-cflags-avx) = yes] (AVX-CFLAGS): Likewise.
25382 [$(config-cflags-avx) = yes] (CFLAGS-tst-audit4.c): Remove
25383 addition to variable.
25384 [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod4a.c): Likewise.
25385 [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod4b.c): Likewise.
25386 [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod6b.c): Likewise.
25387 [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod6c.c): Likewise.
25388 [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod7b.c): Likewise.
25389 * sysdeps/x86_64/Makefile [$(subdir) = elf] (tests): Add
25390 tst-audit3, tst-audit4 and tst-audit5.
25391 [$(subdir) = elf && $(config-cflags-avx) = yes] (tests): Add
25392 tst-audit6 and tst-audit7.
25393 [$(subdir) = elf] (modules-names): Add audit modules for those
25394 tests.
25395 [$(subdir) = elf] ($(objpfx)tst-audit3): New dependency.
25396 [$(subdir) = elf] ($(objpfx)tst-audit3.out): Likewise.
25397 [$(subdir) = elf] ($(objpfx)tst-audit4): Likewise.
25398 [$(subdir) = elf] ($(objpfx)tst-audit4.out): Likewise.
25399 [$(subdir) = elf] ($(objpfx)tst-audit5): Likewise.
25400 [$(subdir) = elf] ($(objpfx)tst-audit5.out): Likewise.
25401 [$(subdir) = elf] ($(objpfx)tst-audit6): Likewise.
25402 [$(subdir) = elf] ($(objpfx)tst-audit6.out): Likewise.
25403 [$(subdir) = elf] ($(objpfx)tst-audit7): Likewise.
25404 [$(subdir) = elf] ($(objpfx)tst-audit7.out): Likewise.
25405 [$(subdir) = elf] (tst-audit3-ENV): New variable.
25406 [$(subdir) = elf] (tst-audit4-ENV): Likewise.
25407 [$(subdir) = elf] (tst-audit5-ENV): Likewise.
25408 [$(subdir) = elf] (tst-audit6-ENV): Likewise.
25409 [$(subdir) = elf] (tst-audit7-ENV): Likewise.
25410 [$(subdir) = elf && $(config-cflags-avx) = yes] (AVX-CFLAGS):
25411 Likewise.
25412 [$(subdir) = elf && $(config-cflags-avx) = yes]
25413 (CFLAGS-tst-audit4.c): Append $(AVX-CFLAGS).
25414 [$(subdir) = elf && $(config-cflags-avx) = yes]
25415 (CFLAGS-tst-auditmod4a.c): Likewise.
25416 [$(subdir) = elf && $(config-cflags-avx) = yes]
25417 (CFLAGS-tst-auditmod4b.c): Likewise.
25418 [$(subdir) = elf && $(config-cflags-avx) = yes]
25419 (CFLAGS-tst-auditmod6b.c): Likewise.
25420 [$(subdir) = elf && $(config-cflags-avx) = yes]
25421 (CFLAGS-tst-auditmod6c.c): Likewise.
25422 [$(subdir) = elf && $(config-cflags-avx) = yes]
25423 (CFLAGS-tst-auditmod7b.c): Likewise.
25424 * elf/tst-audit3.c: Move to ...
25425 * sysdeps/x86_64/tst-audit3.c: ... here.
25426 * elf/tst-audit4.c: Move to ...
25427 * sysdeps/x86_64/tst-audit4.c: ... here.
25428 * elf/tst-audit5.c: Move to ...
25429 * sysdeps/x86_64/tst-audit5.c: ... here.
25430 * elf/tst-audit6.c: Move to ...
25431 * sysdeps/x86_64/tst-audit6.c: ... here.
25432 * elf/tst-audit7.c: Move to ...
25433 * sysdeps/x86_64/tst-audit7.c: ... here.
25434 * elf/tst-auditmod3a.c: Move to ...
25435 * sysdeps/x86_64/tst-auditmod3a.c: ... here.
25436 * elf/tst-auditmod3b.c: Move to ...
25437 * sysdeps/x86_64/tst-auditmod3b.c: ... here.
25438 * elf/tst-auditmod4a.c: Move to ...
25439 * sysdeps/x86_64/tst-auditmod4a.c: ... here.
25440 * elf/tst-auditmod4b.c: Move to ...
25441 * sysdeps/x86_64/tst-auditmod4b.c: ... here.
25442 * elf/tst-auditmod5a.c: Move to ...
25443 * sysdeps/x86_64/tst-auditmod5a.c: ... here.
25444 * elf/tst-auditmod5b.c: Move to ...
25445 * sysdeps/x86_64/tst-auditmod5b.c: ... here.
25446 * elf/tst-auditmod6a.c: Move to ...
25447 * sysdeps/x86_64/tst-auditmod6a.c: ... here.
25448 * elf/tst-auditmod6b.c: Move to ...
25449 * sysdeps/x86_64/tst-auditmod6b.c: ... here.
25450 * elf/tst-auditmod6c.c: Move to ...
25451 * sysdeps/x86_64/tst-auditmod6c.c: ... here.
25452 * elf/tst-auditmod7a.c: Move to ...
25453 * sysdeps/x86_64/tst-auditmod7a.c: ... here.
25454 * elf/tst-auditmod7b.c: Move to ...
25455 * sysdeps/x86_64/tst-auditmod7b.c: ... here.
25456
254572013-04-25 Paul Pluzhnikov <ppluzhnikov@google.com>
25458
25459 [BZ #15366]
25460 * sysdeps/generic/inttypes.h (PRId8, PRId16, etc.):
25461 define unconditionally.
25462 * sysdeps/generic/stdint.h (INT8_MIN, INT16_MIN, etc.):
25463 define unconditionally.
25464 (INT8_C, INT16_C, etc.): Likewise.
25465
254662013-04-25 Maciej W. Rozycki <macro@codesourcery.com>
25467
25468 * csu/libc-start.c (__libc_start_main) [!SHARED]: Declare
25469 __ehdr_start with hidden visibility.
25470
25471 * soft-fp/op-common.h (_FP_SQRT): s/sNAN/NAN/ in a comment.
25472
254732013-04-24 Carlos O'Donell <carlos@redhat.com>
25474
25475 * math/libm-test.inc (cos_test): Use accurate hex constants.
25476 (sincost_test): Likewise.
25477
254782013-04-24 Joseph Myers <joseph@codesourcery.com>
25479
25480 * math/libm-test.inc (catan_test): Add more tests.
25481 (catanh_test): Likewise.
25482
25483 * math/s_catanf.c (__catanf): Use suffixed floating-point
25484 constants.
25485 * math/s_catanhf.c (__catanhf): Likewise.
25486 * math/s_catanhl.c (__catanhl): Likewise.
25487 * math/s_catanl.c (__catanl): Likewise.
25488
25489 [BZ #15394]
25490 * math/s_catan.c (__catan): Calculate imaginary part of result
25491 with log1p not log unless computing log of number close to 0.
25492 * math/s_catanf.c (__catanf): Likewise.
25493 * math/s_catanl.c (__catanl): Likewise.
25494 * math/s_catanh.c (__catanh): Calculate real part of result with
25495 log1p not log unless computing log of number close to 0.
25496 * math/s_catanhf.c (__catanhf): Likewise.
25497 * math/s_catanhl.c (__catanhl): Likewise.
25498 * math/libm-test.inc (catan_test): Add more tests.
25499 (catanh_test): Likewise.
25500 * sysdeps/i386/fpu/libm-test-ulps: Update.
25501 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
25502
255032013-04-24 Siddhesh Poyarekar <siddhesh@redhat.com>
25504
25505 * benchtests/Makefile: Mention files in which fast and slow
25506 paths of math functions are implemented.
25507
255082013-04-23 Roland McGrath <roland@hack.frob.com>
25509
25510 * sysdeps/posix/timespec_get.c: New file.
25511
255122013-04-23 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
25513
25514 * sysdeps/powerpc/power5/fpu/s_modf.c: New file: modf optimization for
25515 POWER.
25516 * sysdeps/powerpc/power5/fpu/s_modff.c: New file: modff optimization
25517 for POWER.
25518 * sysdeps/powerpc/powerpc64/power5/Implies: Add powerpc/power5 and
25519 powerpc/power5/fpu folders.
25520 * sysdeps/powerpc/powerpc32/power5/Implies: Likewise.
25521 * benchtests/Makefile: Add modf testcase.
25522 * benchtests/bench-modf.c: New file: Benchmark test for mo
25523
255242013-04-23 Siddhesh Poyarekar <siddhesh@redhat.com>
25525
25526 [BZ #14888]
25527 * time/Makefile (tests): Add tst-strptime-whitespace.
25528 * time/strptime_l.c (get_number): Use ISSPACE.
25529 (__strptime_internal): Likewise.
25530 * time/tst-strptime-whitespace.c: New test case.
25531
255322013-04-23 Andreas Schwab <schwab@linux-m68k.org>
25533
25534 * nss/nss_files/files-init.c (TF): Don't initialize flexible array
25535 member.
25536 (_nss_files_init): Set it here.
25537
255382013-04-23 Heiko Carstens <heiko.carstens@de.ibm.com>
25539
25540 * sysdeps/unix/sysv/linux/s390/bits/statfs.h: Change types of
25541 f_type, f_bsize, f_namelen, f_frsize, f_flags,and f_spare to
25542 unsigned.
25543
255442013-04-22 Jan-Benedict Glaw <jbglaw@getslash.de>
25545
25546 * nss/getent.c (shadow_keys): Call endspent, not endpwent.
25547
255482013-04-22 Siddhesh Poyarekar <siddhesh@redhat.com>
25549
25550 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Compute results
25551 size just once.
25552
255532013-04-21 David S. Miller <davem@davemloft.net>
25554
25555 * po/ru.po: Update Russion translation from translation project.
25556
255572013-04-17 Adam Conrad <adconrad@0c3.net>
25558
25559 * sysdeps/unix/sysv/linux/sys/fsuid.h: Remove __wur from setfsuid
25560 and setfsgid.
25561
255622013-04-17 Carlos O'Donell <carlos@redhat.com>
25563
25564 * configure.in: Remove i386 configure warning. Remove i386 case.
25565 * configure: Regenerate.
25566 * sysdeps/i386/configure.in: Raise error if config_machine is i386.
25567 Add example to error message.
25568 * sysdeps/i386/configure: Regenerate.
25569
255702013-04-17 Siddhesh Poyarekar <siddhesh@redhat.com>
25571
25572 * benchtests/Makefile (bench): Add cos, tan, slowcos and
25573 slowtan.
25574 * benchtests/cos-inputs: New file.
25575 * benchtests/slowcos-inputs: New file.
25576 * benchtests/slowcos.c: New file.
25577 * benchtests/slowtan-inputs: New file.
25578 * benchtests/slowtan.c: New file.
25579 * benchtests/tan-inputs: New file.
25580
255812013-04-16 Roland McGrath <roland@hack.frob.com>
25582
25583 * rt/tst-aio7.c (do_test): Don't test O_RDONLY fd case, which is now
25584 considered kosher.
25585
255862013-04-16 Siddhesh Poyarekar <siddhesh@redhat.com>
25587
25588 * benchtests/Makefile: Include cppflags-iterator.mk to add
25589 -DNOT_IN_libc=1 to CPPFLAGS of all benchmark programs.
25590
25591 * Makefile.in (bench-clean): New target.
25592 * benchtests/Makefile (bench-clean): Likewise.
25593
255942013-04-16 David Holsgrove <david.holsgrove@xilinx.com>
25595
25596 * elf/elf.h: Add EM_MICROBLAZE and MicroBlaze relocations.
25597
255982013-04-15 Thomas Schwinge <thomas@codesourcery.com>
25599
25600 * stdio-common/tstdiomisc.c: Fix coding-style violation.
25601
256022013-04-15 Andreas Schwab <schwab@suse.de>
25603
25604 * nscd/grpcache.c (cache_addgr): Properly check for short write.
25605 * nscd/initgrcache.c (addinitgroupsX): Likewise.
25606 * nscd/pwdcache.c (cache_addpw): Likewise.
25607 * nscd/servicescache.c (cache_addserv): Likewise. Don't write
25608 more than recsize.
25609
256102013-04-15 Siddhesh Poyarekar <siddhesh@redhat.com>
25611
25612 * benchtests/Makefile (bench): Write all output to
25613 bench-out.tmp together.
25614
256152013-04-15 Andreas Schwab <schwab@suse.de>
25616
25617 * nscd/nscd.c (main): Don't fork again after closing files.
25618
256192013-04-15 Siddhesh Poyarekar <siddhesh@redhat.com>
25620
25621 * libio/tst-fwrite-error.c (do_test): Fix BUF array definition.
25622
25623 * benchtests/Rules (bench-deps): Collect dependencies into a
25624 single variable. Add Makefile to dependencies.
25625 ($(objpfx)bench-%.c): Depend on bench-deps.
25626
256272013-04-12 Roland McGrath <roland@hack.frob.com>
25628 Xavier Roche <roche+kml2@exalead.com>
25629
25630 [BZ #15361]
25631 * sysdeps/pthread/aio_fsync.c (aio_fsync): Don't check open modes,
25632 just that it's a file descriptor.
25633 * manual/llio.texi (Synchronizing AIO Operations): Update description
25634 for EBADF error from aio_fsync.
25635
256362013-04-12 Siddhesh Poyarekar <siddhesh@redhat.com>
25637
25638 * Rules (bench): Move target definition...
25639 * benchtests/Makefile: ... here.
25640
256412013-04-11 Carlos O'Donell <carlos@redhat.com>
25642
25643 * math/libm-test.inc (cos_test): Fix PI/2 test.
25644 (sincos_test): Likewise.
25645 * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate.
25646 * sysdeps/i386/fpu/libm-test-ulps: Regenerate.
25647
256482013-04-11 Andreas Schwab <schwab@suse.de>
25649
25650 [BZ #13988]
25651 * stdio-common/vfscanf.c (_IO_vfwscanf): When parsing a float
25652 accept exponent character only when digits were seen.
25653 * stdio-common/Makefile (tests): Add bug26.
25654 * stdio-common/bug26.c: New file.
25655
25656 [BZ #14293]
25657 * elf/dl-load.c (_dl_init_paths): Mark decomposed RUNPATH as
25658 non-freeable.
25659
256602013-04-11 Siddhesh Poyarekar <siddhesh@redhat.com>
25661
25662 * Makeconfig (rtld-prefix): Define built linker prefix.
25663 * Rules (run-bench): Use it.
25664 * math/Makefile (run-regen-ulps): Likewise.
25665
25666 * Rules (bench): Remove eval.
25667
256682013-04-10 Siddhesh Poyarekar <siddhesh@redhat.com>
25669 Roland McGrath <roland@hack.frob.com>
25670 Ondrej Bilka <neleai@seznam.cz>
25671
25672 [BZ #15346]
25673 * time/getdate.c: Include ctype.h and alloca.h.
25674 (__getdate_r): Trim leading and trailing spaces of input.
25675 * time/tst-getdate.c (tests): Add tests with leading and
25676 trailing spaces.
25677
256782013-04-08 Roland McGrath <roland@hack.frob.com>
25679
25680 [BZ #14280]
25681 * sysdeps/mach/hurd/bits/ioctls.h (_IOTS): Cast to enum __ioctl_datum
25682 when computing value.
25683
256842013-04-06 Carlos O'Donell <carlos@redhat.com>
25685
25686 * math/README.libm-test (How can I generate "libm-test-ulps"?):
25687 Use testrun.sh to run libm tests.
25688
25689 [BZ #15309]
25690 * elf/dl-open.c (dl_open_worker): memset all of seen array.
25691
256922013-04-06 Marko Myllynen <myllynen@redhat.com>
25693
25694 [BZ #15264]
25695 * locales/fi_FI (LC_MESSAGES): Define yesstr and nostr.
25696
256972013-04-06 Carlos O'Donell <carlos@redhat.com>
25698
25699 * Makefile.in (regen-ulps): New target.
25700 * math/Makefile [ifneq (no,$(PERL)]: Declare regen-ulps with .PHONY.
25701 [ifneq (no,$(PERL)] (run-regen-ulps): New variable.
25702 [ifneq (no,$(PERL)] (regen-ulps): New target.
25703 [ifeq (no,$(PERL)] (regen-ulps): New target.
25704 * math/libm-test.inc (ulps_file_name): Define.
25705 (output_dir): New variable.
25706 (options): Add "output-dir" option.
25707 (parse_opt): Handle 'o' case.
25708 (main): If output_dir is non-NULL use it as a prefix
25709 otherwise use "".
25710 * math/README.libm-test: Update `How can I generate "libm-test-ulps"?'
25711
257122013-04-06 Carlos O'Donell <carlos@redhat.com>
25713
25714 [BZ #10060, #10062]
25715 * aclocal.m4 (LIBC_COMPILER_BUILTIN_INLINED): New macro.
25716 * sysdeps/i386/configure.in: Use LIBC_COMPILER_BUILTIN_INLINED and
25717 fail configure if __sync_val_compare_and_swap is not inlined.
25718 * sysdeps/i386/configure: Regenerate.
25719 * configure.in: Build for i686 when configured for i386.
25720 * configure: Regenerate.
25721 * README: Remove i386 reference.
25722
257232013-04-06 Carlos O'Donell <carlos@redhat.com>
25724
25725 * sysdeps/s390/s390-32/sysdep.h: Undefine PSEUDO before redefinition.
25726 * sysdeps/s390/s390-64/sysdep.h: Likewise.
25727
257282013-04-05 Thomas Schwinge <thomas@codesourcery.com>
25729
25730 * stdio-common/tstdiomisc.c (snanval, msnanval, lsnanval)
25731 (lmsnanval): New variables.
25732 (F): Add conversion tests.
25733 * stdlib/tst-strtod6.c (do_test): Add issignaling tests.
25734 * stdlib/Makefile ($(objpfx)tst-strtod6): Depend on $(link-libm).
25735
25736 * stdio-common/tstdiomisc.c (F): Properly collect individual
25737 tests' results.
25738
25739 [BZ #14686, #15336]
25740 * sysdeps/ieee754/dbl-64/urem.h (nNAN, NAN): Remove definitions.
25741 * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder):
25742 Instead, use input NaN values or generate a qNaN by arithmetic
25743 operation. Also fix bugs to comply with the standard.
25744 * math/libm-test.inc (remainder_test): Add more tests.
25745
25746 [BZ #15335, #15342]
25747 * sysdeps/ieee754/dbl-64/upow.h (NaNQ): Remove definitions.
25748 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Instead, use
25749 input NaN values or generate a qNaN by arithmetic operation.
25750
25751 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Remove
25752 unreachable code.
25753
25754 * sysdeps/ieee754/dbl-64/usncs.h (NAN): Removed unused
25755 definitions.
25756
257572013-04-03 Joseph Myers <joseph@codesourcery.com>
25758
25759 [BZ #14478]
25760 * math/s_cexp.c (__cexp): Ensure underflow exception occurs for
25761 underflowed result.
25762 * math/s_cexpf.c (__cexpf): Likewise.
25763 * math/s_cexpl.c (__cexpl): Likewise.
25764 * math/libm-test.inc (cexp_test): Add more tests.
25765
257662013-04-03 Andreas Schwab <schwab@suse.de>
25767
25768 [BZ #15330]
25769 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Allocate results and
25770 order arrays from heap if bigger than alloca cutoff.
25771
257722013-04-03 Thomas Schwinge <thomas@codesourcery.com>
25773
25774 * sysdeps/i386/fpu/math-tests.h (SNAN_TESTS_float)
25775 (SNAN_TESTS_double): Refer to GCC PR56831.
25776 * sysdeps/powerpc/math-tests.h (SNAN_TESTS_TYPE_CAST): Refer to
25777 GCC PR56828.
25778
257792013-04-03 Siddhesh Poyarekar <siddhesh@redhat.com>
25780
25781 * Rules (bench): Move bench.out after the run is complete.
25782
25783 * Rules (bench): Echo currently running benchmark.
25784
25785 * benchtests/Makefile (bench): Add atan and slowatan.
25786 * benchtests/atan-inputs: New file.
25787 * benchtests/slowatan-inputs: New file.
25788 * benchtests/slowatan.c: New file.
25789
25790 * sysdeps/ieee754/dbl-64/mpa.h (TWO): Remove definition.
25791 * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Replace TWO with
25792 its value.
25793
25794 [BZ #15305]
25795 * sysdeps/unix/sysv/linux/kernel-features.h
25796 [__LINUX_KERNEL_VERSION >= 0x02061d]: Define
25797 __ASSUME_XFS_RESTRICTED_CHOWN.
25798 * sysdeps/unix/sysv/linux/pathconf.c
25799 (__statfs_chown_restricted) [!__ASSUME_XFS_RESTRICTED_CHOWN]:
25800 Save and restore errno.
25801
258022013-04-02 Joseph Myers <joseph@codesourcery.com>
25803
25804 [BZ #15327]
25805 * math/s_cacosh.c (__cacosh): Implement for finite nonzero
25806 arguments using __kernel_casinh.
25807 * math/s_cacoshf.c (__cacoshf): Implement for finite nonzero
25808 arguments using __kernel_casinhf.
25809 * math/s_cacoshl.c (__cacoshl): Implement for finite nonzero
25810 arguments using __kernel_casinhl.
25811 * math/libm-test.inc (cacosh_test): Add more tests.
25812 * sysdeps/i386/fpu/libm-test-ulps: Update.
25813 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
25814
258152013-04-02 Siddhesh Poyarekar <siddhesh@redhat.com>
25816
25817 * sysdeps/ieee754/dbl-64/mpa.h (HALFRAD): Define as TWO23.
25818 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Use mantissa_t.
25819
25820 * bench/Makefile (bench): Add sin and slowsin.
25821 * benchtests/sin-inputs: New file.
25822 * benchtests/slowsin-inputs: New file.
25823 * benchtests/slowsin.c: New file.
25824
25825 * benchtests/Makefile: Add benchmarks for slowpow and slowexp.
25826 (bench): Add slowexp and slowpow.
25827 (exp-ITER): Increase iterations.
25828 (pow-ITER): Likewise.
25829 * benchtests/exp-inputs: Change input.
25830 * benchtests/pow-inputs: Likewise.
25831 * benchtests/slowexp-inputs: New file.
25832 * benchtests/slowexp.c: New file.
25833 * benchtests/slowpow-inputs: New file.
25834 * benchtests/slowpow.c: New file.
25835
258362013-04-02 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
25837
25838 * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Remove branch prediction
25839 instructions.
25840 * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: Likewise.
25841 * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Likewise.
25842 * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
25843 * benchtests/Makefile: Add rint benchtest.
25844 * benchtests/rint-inputs: Input for rint benchtest.
25845
258462013-04-02 Thomas Schwinge <thomas@codesourcery.com>
25847
25848 * Versions.def (libm): Add GLIBC_2.18.
25849 * include/math.h [!_ISOMAC] (__issignaling, __issignalingf): Add
25850 hidden libm prototypes.
25851 [!_ISOMAC && !__NO_LONG_DOUBLE_MATH] (__issignalingl): Likewise.
25852 * math/Makefile (libm-calls): Add s_issignaling.
25853 * math/Versions (libm: GLIBC_2.18): Add __issignaling,
25854 __issignalingf, __issignalingl. Adjust all libm.abilist files.
25855 * math/bits/mathcalls.h [__USE_GNU] (__issignaling): New prototype
25856 declaration.
25857 * math/math.h [__USE_GNU] (issignaling): New macro.
25858 * sysdeps/ieee754/flt-32/s_issignalingf.c: New file.
25859 * sysdeps/ieee754/dbl-64/s_issignaling.c: Likewise.
25860 * sysdeps/ieee754/dbl-64/wordsize-64/s_issignaling.c: Likewise.
25861 * sysdeps/ieee754/ldbl-96/s_issignalingl.c: Likewise.
25862 * sysdeps/ieee754/ldbl-128/s_issignalingl.c: Likewise.
25863 * sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c: Likewise.
25864 * manual/arith.texi (issignaling): New section.
25865 * manual/libm-err-tab.pl (@all_functions): Update comment.
25866 * math/gen-libm-test.pl (parse_args): Apply special handling for
25867 issignaling.
25868 * math/libm-test.inc (print_float, issignaling_test): New
25869 functions.
25870 (check_float_internal): Add issignaling checks.
25871 * sysdeps/generic/math-tests.h (SNAN_TESTS_TYPE_CAST): Provide
25872 default definition.
25873 * sysdeps/powerpc/math-tests.h: New file.
25874 * math/basic-test.c (TEST_FUNC, TEST_TRUNC): Add issignaling
25875 tests.
25876 * math/test-snan.c (TEST_FUNC): Likewise.
25877
258782013-03-30 David S. Miller <davem@davemloft.net>
25879
25880 * po/de.po: Update from translation team.
25881
258822013-03-30 Joseph Myers <joseph@codesourcery.com>
25883
25884 [BZ #10357]
25885 * math/k_casinh.c (__kernel_casinh): Handle arguments with
25886 imaginary part less than 1.0 and real part less than 0.5
25887 specially.
25888 * math/k_casinhf.c (__kernel_casinhf): Likewise.
25889 * math/k_casinhl.c (__kernel_casinhl): Likewise.
25890 * math/libm-test.inc (UNDERFLOW_EXCEPTION_OK_DOUBLE): New macro.
25891 (cacos_test): Add more tests.
25892 (casin_test): Likewise.
25893 (casinh_test): Likewise.
25894 * sysdeps/i386/fpu/libm-test-ulps: Update.
25895 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
25896
258972013-03-29 Siddhesh Poyarekar <siddhesh@redhat.com>
25898
25899 * sysdeps/powerpc/power4/fpu/mpa-arch.h (INTEGER_OF): Replace
25900 ONE with its value.
25901
25902 * sysdeps/ieee754/dbl-64/mpa.h (ONE, MONE): Remove defines.
25903 (__pow_mp): Replace ONE and MONE with their values.
25904 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
25905 * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Likewise.
25906 * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
25907 * sysdeps/ieee754/dbl-64/mptan.c (__mptan): Likewise.
25908 * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
25909 * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
25910
25911 * sysdeps/ieee754/dbl-64/s_tan.c: Fix formatting.
25912
25913 * sysdeps/ieee754/dbl-64/mpa.h (ZERO, MZERO): Remove defines.
25914 (__pow_mp): Replace ZERO and MZERO with their values.
25915 * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Likewise.
25916 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
25917 * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
25918 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
25919 * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
25920 * sysdeps/powerpc/power4/fpu/mpa.c (__mul): Likewise.
25921 (__sqr): Likewise.
25922
25923 * sysdeps/ieee754/dbl-64/s_atan.c: Fix formatting.
25924
25925 * sysdeps/ieee754/dbl-64/e_log.c: Fix formatting.
25926
259272013-03-28 Roland McGrath <roland@hack.frob.com>
25928
25929 * include/stdlib.h [!SHARED] (__call_tls_dtors):
25930 Declare with __attribute__ ((weak)).
25931 * stdlib/exit.c (__libc_atexit) [!SHARED]:
25932 Call __call_tls_dtors only if it's not NULL.
25933
259342013-03-28 Roland McGrath <roland@hack.frob.com>
25935
25936 * csu/libc-start.c (__libc_start_main) [!SHARED]: If _dl_aux_init
25937 didn't do it already, then set _dl_phdr and _dl_phnum based on the
25938 magic __ehdr_start linker symbol if it's defined.
25939 * sysdeps/mach/hurd/i386/init-first.c (init1) [!SHARED]: Don't set
25940 them up here if it was already done.
25941
25942 * elf/dl-support.c (_dl_phdr): Make pointer to const.
25943 (_dl_aux_init): Use const in cast when setting it.
25944 * sysdeps/mach/hurd/i386/init-first.c (init1): Remove superfluous cast.
25945 * sysdeps/generic/ldsodefs.h [!SHARED] (_dl_phdr): Update decl.
25946 * csu/libc-tls.c (__libc_setup_tls): Make PHDR pointer to const.
25947
25948 * sysdeps/generic/ldsodefs.h [!SHARED] (_dl_phdr, _dl_phnum):
25949 Declare them here.
25950 * elf/dl-iteratephdr.c [!SHARED] (_dl_phdr, _dl_phnum): Not here.
25951 * csu/libc-tls.c: Nor here.
25952 * sysdeps/mach/hurd/i386/init-first.c (init1): Nor here.
25953
25954 * sysdeps/posix/libc_fatal.c: Don't include <sys/syslog.h>.
25955 (__libc_message): Never call vsyslog.
25956
259572013-03-28 Alan Modra <amodra@gmail.com>
25958
25959 * sysdeps/powerpc/powerpc32/start.S (cfi_startproc, cfi_endproc):
25960 Define as empty.
25961 * sysdeps/powerpc/powerpc64/start.S (cfi_startproc, cfi_endproc):
25962 Likewise.
25963
259642013-03-28 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
25965
25966 [BZ #15214]
25967 * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Fix spurious
25968 underflow.
25969 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
25970
259712013-03-28 Siddhesh Poyarekar <siddhesh@redhat.com>
25972
25973 [BZ #15304]
25974 * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_initgroups_dyn):
25975 Don't add gid passed as argument.
25976
25977 * sysdeps/ieee-754/dbl-64/e_atan2.c: Reformat.
25978
259792013-03-27 Joseph Myers <joseph@codesourcery.com>
25980
25981 [BZ #15307]
25982 * math/k_casinh.c (__kernel_casinh): Handle arguments with
25983 imaginary part between 1.0 and 1.5 and real part less than 0.5
25984 specially.
25985 * math/k_casinhf.c (__kernel_casinhf): Likewise.
25986 * math/k_casinhl.c (__kernel_casinhl): Likewise.
25987 * math/libm-test.inc (cacos_test): Add more tests.
25988 (casin_test): Likewise.
25989 (casinh_test): Likewise.
25990 * sysdeps/i386/fpu/libm-test-ulps: Update.
25991 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
25992
259932013-03-26 Siddhesh Poyarekar <siddhesh@redhat.com>
25994
25995 * sysdeps/ieee754/dbl-64/mpa.c (__acr): Use integral
25996 constants.
25997 (norm): Likewise.
25998 (denorm): Likewise.
25999 (__dbl_mp): Likewise.
26000 (add_magnitudes): Likewise.
26001 (sub_magnitudes): Likewise.
26002 (__add): Likewise.
26003 (__sub): Likewise.
26004 (__mul): Likewise.
26005 (__sqr): Likewise.
26006 (__inv): Likewise.
26007 (__dvd): Likewise.
26008
26009 * sysdeps/ieee754/dbl-64/branred.c (__branred): Remove
26010 commented code.
26011 * sysdeps/ieee754/dbl-64/dosincos.c (__dubsin): Likewise.
26012 (__dubcos): Likewise.
26013 * sysdeps/ieee754/dbl-64/e_asin.c (__ieee754_asin): Likewise.
26014 (__ieee754_acos): Likewise.
26015 * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Likewise.
26016 * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Likewise.
26017 (__exp1): Likewise.
26018 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
26019 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Likewise.
26020 (log1): Likewise.
26021 (my_log2): Likewise.
26022 (checkint): Likewise.
26023 * sysdeps/ieee754/dbl-64/e_remainder.c
26024 (__ieee754_remainder): Likewise.
26025 * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
26026 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Likewise.
26027 (bsloww): Likewise.
26028 * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
26029
26030 * sysdeps/ieee754/dbl-64/mpa-arch.h: New file.
26031 * sysdeps/ieee754/dbl-64/mpa.c (norm): Use MANTISSA_T and
26032 MANTISSA_STORE_T to store computations on mantissa. Use
26033 macros for rounding and division.
26034 (denorm): Likewise.
26035 (__dbl_mp): Likewise.
26036 (add_magnitudes): Likewise.
26037 (sub_magnitudes): Likewise.
26038 (__mul): Likewise.
26039 (__sqr): Likewise.
26040 * sysdeps/ieee754/dbl-64/mpa.h: Include mpa-arch.h. Define
26041 powers of two in terms of TWOPOW macro.
26042 (mp_no): Make type of mantissa as MANTISSA_T.
26043 [!RADIXI]: Define RADIXI.
26044 [!TWO52]: Define TWO52.
26045 * sysdeps/powerpc/power4/fpu/mpa-arch.h: New file.
26046
260472013-03-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
26048
26049 * sysdeps/powerpc/fpu/s_llround.c: Fix libm ABI issue with missing
26050 llroundl symbol when building for PPC32.
26051
260522013-03-24 Mark H Weaver <mhw@netris.org>
26053
26054 * manual/arith.texi (Normalization Functions): Fix prototypes for
26055 scalbn, scalbnf, scalbnl, scalbln, scalblnf, and scalblnl.
26056
260572013-03-19 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
26058
26059 [BZ #13889]
26060 * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Increase the
26061 high value to check if expl overflow.
26062 * sysdeps/ieee754/ldbl-128ibm/w_expl.c (__expl): Fix threshold constants
26063 to check for underflow and overflow.
26064 * math/libm-test.inc: Add exp test.
26065
260662013-03-21 Dmitry V. Levin <ldv@altlinux.org>
26067
26068 [BZ #11120]
26069 * sysdeps/x86_64/strcmp.S: Replace all occurrences of NOT_IN_lib
26070 with NOT_IN_libc.
26071
260722013-03-21 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
26073
26074 * sysdeps/powerpc/fpu/w_sqrt.c (compat_symbol): Add sqrtl compat
26075 symbol.
26076
260772013-03-21 Thomas Schwinge <thomas@codesourcery.com>
26078
26079 * math/gen-libm-test.pl (parse_args, special_functions): Properly
26080 wrap blocks consisting of several statements.
26081
26082 * sysdeps/generic/math-tests.h: New file.
26083 * sysdeps/i386/fpu/math-tests.h: Likewise.
26084 * math/test-snan.c: Include it.
26085 (TEST_FUNC): Use SNAN_TESTS to short-circuit certain tests.
26086
260872013-03-21 Joseph Myers <joseph@codesourcery.com>
26088
26089 [BZ #15285]
26090 * sysdeps/ieee754/ldbl-128/e_j0l.c: Include <float.h>.
26091 (__ieee754_j0l): Do not improve calculations using cos of twice
26092 input for inputs above LDBL_MAX / 2.0L.
26093 (__ieee754_y0l): Likewise.
26094 * sysdeps/ieee754/ldbl-128/e_j1l.c: Include <float.h>.
26095 (__ieee754_j1l): Do not improve calculations using cos of twice
26096 input for inputs above LDBL_MAX / 2.0L.
26097 (__ieee754_y1l): Likewise.
26098 * math/libm-test.inc (j0_test): Add another test.
26099 (j1_test): Likewise.
26100 (y0_test): Likewise.
26101 (y1_test): Likewise.
26102 * sysdeps/i386/fpu/libm-test-ulps: Update.
26103
261042013-03-21 Siddhesh Poyarekar <siddhesh@redhat.com>
26105
26106 * Rules ($(objpfx)bench-%.c): Include code from a C source
26107 file.
26108
261092013-03-21 Joseph Myers <joseph@codesourcery.com>
26110
26111 [BZ #15287]
26112 * math/k_casinh.c (__kernel_casinh): Handle arguments with
26113 imaginary part 1.0 and real part less than 0.5 specially.
26114 * math/k_casinhf.c (__kernel_casinhf): Likewise.
26115 * math/k_casinhl.c (__kernel_casinhl): Likewise.
26116 * math/libm-test.inc (cacos_test): Add more tests.
26117 (casin_test): Likewise.
26118 (casinh_test): Likewise.
26119 * sysdeps/i386/fpu/libm-test-ulps: Update.
26120 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26121
261222013-03-21 Siddhesh Poyarekar <siddhesh@redhat.com>
26123
26124 * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Use HALFRAD.
26125 * sysdeps/ieee754/dbl-64/sincos32.c (__mpranred): Likewise.
26126
261272013-03-20 Joseph Myers <joseph@codesourcery.com>
26128
26129 * aclocal.m4 (LIBC_CONFIG_VAR): New autoconf macro.
26130 * config.make.in (config-cflags-sse4): Remove variable.
26131 (config-cflags-avx): Likewise.
26132 (config-cflags-sse2avx): Likewise.
26133 (config-cflags-novzeroupper): Likewise.
26134 (config-asflags-i686): Likewise.
26135 (have-mfma4): Likewise.
26136 (have-as-vis3): Likewise.
26137 (MIG): Likewise.
26138 * configure.in (MIG): Do not AC_SUBST.
26139 (libc_cv_cc_nofma): Move AC_SUBST next to configure test.
26140 (libc_cv_cc_sse4): Do not AC_SUBST.
26141 (libc_cv_cc_avx): Likewise.
26142 (libc_cv_cc_sse2avx): Likewise.
26143 (libc_cv_cc_novzeroupper): Likewise.
26144 (libc_cv_cc_fma4): Likewise.
26145 (libc_cv_as_i686): Likewise.
26146 (libc_cv_sparc_as_vis3): Likewise.
26147 * sysdeps/i386/configure.in (config-cflags-sse4): Set using
26148 LIBC_CONFIG_VAR.
26149 (config-asflags-i686): Likewise.
26150 (config-cflags-avx): Likewise.
26151 (config-cflags-sse2avx): Likewise.
26152 (have-mfma4): Likewise.
26153 (config-cflags-novzeroupper): Likewise.
26154 * sysdeps/mach/configure.in (MIG): Likewise.
26155 * sysdeps/sparc/configure.in (have-as-vis3): Likewise.
26156 * sysdeps/x86_64/configure.in (config-cflags-sse4): Set using
26157 LIBC_CONFIG_VAR.
26158 (config-cflags-avx): Likewise.
26159 (config-cflags-sse2avx): Likewise.
26160 (have-mfma4): Likewise.
26161 (config-cflags-novzeroupper): Likewise.
26162 * configure: Regenerated.
26163 * sysdeps/i386/configure: Likewise.
26164 * sysdeps/mach/configure: Likewise.
26165 * sysdeps/sparc/configure: Likewise.
26166 * sysdeps/x86_64/configure: Likewise.
26167
261682013-03-20 Roland McGrath <roland@hack.frob.com>
26169
26170 [BZ #14812]
26171 * locale/programs/localedef.c (options): Put N_ translation marker
26172 on argument names, not just descriptions.
26173
261742013-03-20 Marcus Shawcroft <marcus.shawcroft@linaro.org>
26175
26176 * Makerules ($(inst_libdir)/libc.so): Use $(rtlddir).
26177
261782013-03-20 Ondřej Bílka <neleai@seznam.cz>
26179
26180 [BZ #14176]
26181 * stdlib/stdlib.h (mblen, mbtowc, wctomb): Remove __wur.
26182
261832013-03-19 Roland McGrath <roland@hack.frob.com>
26184
26185 * sysdeps/posix/libc_fatal.c: Include <sys/mman.h>.
26186 [!WRITEV_FOR_FATAL] (writev_for_fatal): New function.
26187 [!WRITEV_FOR_FATAL] (WRITEV_FOR_FATAL): New macro; call that.
26188 [!BEFORE_ABORT] (before_abort): New function.
26189 [!BEFORE_ABORT] (BEFORE_ABORT): New macro; call that.
26190 * sysdeps/unix/sysv/linux/libc_fatal.c: Trim includes.
26191 (writev_for_fatal): New function.
26192 (WRITEV_FOR_FATAL): New macro; call that.
26193 (backtrace_and_maps): New function.
26194 (BEFORE_ABORT): New macro; call that.
26195 (struct str_list): Type removed.
26196 (__libc_message, __libc_fatal): Functions removed.
26197 Include <sysdeps/posix/libc_fatal.c> instead.
26198
261992013-03-19 Joseph Myers <joseph@codesourcery.com>
26200
26201 * math/k_casinhf.c (__kernel_casinhf): Consistently use float
26202 constants.
26203 * math/k_casinhl.c (__kernel_casinhl): Consistently use long
26204 double constants.
26205
262062013-03-19 Andreas Schwab <schwab@suse.de>
26207
26208 * sysdeps/gnu/configure.in: Set libc_cv_rtldir for s390x.
26209 * sysdeps/gnu/configure: Regenerate.
26210
26211 * configure.in: Substitute libc_cv_rtlddir.
26212 * configure: Regenerate.
26213 * config.make.in (rtlddir): Set from libc_cv_rtlddir.
26214 * Makeconfig (rtlddir, inst_rtlddir): New variables.
26215 (rtld-LDFLAGS): Use them with $(rtld-installed-name).
26216 * elf/Makefile (install-others, CFLAGS-interp.c)
26217 (ldso_install, common-ldd-rewrite): Likewise.
26218 ($(inst_rtlddir)/$(rtld-installed-name)): Renamed from
26219 $(inst_slibdir)/$(rtld-installed-name).
26220 * scripts/rellns-sh: Add -p option.
26221 * Makerules (make-shlib-link): Use rellns-sh to get relative name
26222 for source.
26223
262242013-03-19 Siddhesh Poyarekar <siddhesh@redhat.com>
26225
26226 * manual/nptl.texi: Renamed to ...
26227 * manual/threads.texi: ... this.
26228 * manual/Makefile (chapters): Update.
26229
262302013-03-18 Roland McGrath <roland@hack.frob.com>
26231
26232 [BZ #14812]
26233 * argp/argp-parse.c (argp_default_options): Put N_ translation marker
26234 on argument names, not just descriptions.
26235 * malloc/memusagestat.c (options): Likewise.
26236 * nss/getent.c (options): Likewise.
26237
262382013-03-18 Benno Schulenberg <bensberg@justemail.net>
26239
26240 [BZ #14812]
26241 * iconv/iconv_prog.c (options): Put N_ translation marker
26242 on argument names, not just descriptions.
26243 * iconv/iconvconfig.c (options): Likewise.
26244
262452013-03-18 Ondrej Bilka <neleai@seznam.cz>
26246
26247 * sysdeps/x86_64/strlen.S: Replace with new SSE2 based
26248 implementation which is faster on all x86_64 architectures.
26249 Tested on AMD, Intel Nehalem, SNB, IVB.
26250 * sysdeps/x86_64/strnlen.S: Likewise.
26251
26252 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
26253 Remove all multiarch strlen and strnlen versions.
26254 * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update.
26255 Remove strlen and strnlen related parts.
26256
26257 * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: Update.
26258 Inline strlen part.
26259 * sysdeps/x86_64/multiarch/strcat-ssse3.S: Likewise.
26260
26261 * sysdeps/x86_64/multiarch/strlen.S: Remove.
26262 * sysdeps/x86_64/multiarch/strlen-sse2-no-bsf.S: Likewise.
26263 * sysdeps/x86_64/multiarch/strlen-sse2-pminub.S: Likewise.
26264 * sysdeps/x86_64/multiarch/strlen-sse4.S: Likewise.
26265 * sysdeps/x86_64/multiarch/strnlen.S: Likewise.
26266 * sysdeps/x86_64/multiarch/strnlen-sse2-no-bsf.S: Likewise.
26267
262682013-03-17 Carlos O'Donell <carlos@redhat.com>
26269
26270 * manual/memory.texi (Malloc Tunable Parameters):
26271 Sort parameters alphabetically. Add comments for missing entries.
26272
262732013-03-17 David S. Miller <davem@davemloft.net>
26274
26275 * sysdeps/sparc/fpu/libm-test-ulps: Update.
26276
262772013-03-16 Joseph Myers <joseph@codesourcery.com>
26278
26279 [BZ #15283]
26280 * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_y1l): Correct test
26281 for arguments at most half maximum finite value.
26282 * math/libm-test.inc (j0_test): Add more tests.
26283 (j1_test): Likewise.
26284 (y0_test): Likewise.
26285 (y1_test): Likewise.
26286 * sysdeps/i386/fpu/libm-test-ulps: Update.
26287 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26288
26289 [BZ #14155]
26290 * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee754_j0l): Do not compute
26291 1 / x and functions P and Q for arguments above 0x1p256L.
26292 (__ieee754_y0l): Likewise.
26293 * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
26294 (__ieee754_y1l): Likewise.
26295 * math/libm-test.inc (j0_test): Do not allow spurious underflows.
26296 (j1_test): Likewise.
26297 (y0_test): Likewise.
26298 (y1_test): Likewise.
26299
263002013-03-16 Thomas Schwinge <thomas@codesourcery.com>
26301
26302 * math/test-snan.c (TEST_FUNC): Add and use minus_sNaN_var
26303 variable.
26304
263052013-03-15 Roland McGrath <roland@hack.frob.com>
26306
26307 * elf/dl-support.c (_dl_aux_init): Ignore zero value for AT_PAGESZ.
26308 (_dl_non_dynamic_init): Don't set _dl_pagesize; it will never be
26309 zero since it's initialized to EXEC_PAGESIZE.
26310
26311 * sysdeps/unix/sysv/linux/ldsodefs.h
26312 (_dl_non_dynamic_init, _dl_aux_init): Move declarations to ...
26313 * sysdeps/generic/ldsodefs.h: ... here.
26314
263152013-03-15 Thomas Schwinge <thomas@codesourcery.com>
26316
26317 * math/libm-test.inc (ldexp_test): Add missing START/END markers.
26318
26319 * sysdeps/powerpc/fpu/test-powerpc-snan.c: Rename to
26320 math/test-snan.c.
26321 * math/test-snan.c: Renamed from
26322 sysdeps/powerpc/fpu/test-powerpc-snan.c.
26323 * math/Makefile (tests): Add test-snan.
26324 * sysdeps/powerpc/fpu/Makefile (libm-tests): Don't add
26325 test-powerpc-snan.
26326
26327 * math/basic-test.c (TEST_FUNC): Replace NANFUNC argument with
26328 SUFFIX. Initialize qNaN_var with __builtin_nan family of
26329 functions.
26330 (TEST_TRUNC): Add SUFFIX argument. Initialize qNaN_var with
26331 __builtin_nan family of functions.
26332 * math/libm-test.inc (initialize): Initialize qnan_value with
26333 __builtin_nan family of functions.
26334 * sysdeps/powerpc/fpu/test-powerpc-snan.c (SNANf, SNAN, SNANl):
26335 Remove variables.
26336 (init_signaling_nan, snan_float, snan_double, snan_ldouble):
26337 Remove functions.
26338 (TEST_FUNC): Add SUFFIX argument. Move sNaN_var into static
26339 storage class. Initialize qNaN_var and sNaN_var with
26340 __builtin_nan and __builtin_nans families of functions,
26341 respectively.
26342
26343 * math/libm-test.inc (acosh_test): Also test with qNaN input.
26344 (sqrt_test): Remove duplicate test with qNaN input.
26345 (lrint_test, llrint_test, lround_test, llround_test, rint_test)
26346 (round_test, signbit_test, significand_test): Note missing +/-Inf
26347 as well as qNaN tests.
26348
26349 * math/basic-test.c (TEST_FUNC, TEST_TRUNC): Rename NaN_var to
26350 qNaN_var. Fix a few strings, too.
26351 * math/libm-test.inc (nan_value): Rename to qnan_value.
26352 * math/gen-libm-test.pl (%beautify): Adjust to that.
26353 * math/bits/mathcalls.h (nan): Refer to qNaN instead of NaN.
26354 * math/test-misc.c (main): Likewise.
26355 * sysdeps/ieee754/bits/nan.h (__nan_bytes, __nan_union): Rename
26356 to __qnan_bytes, and __qnan_union, respectively.
26357 * ports/sysdeps/mips/bits/nan.h (__nan_bytes, __nan_union):
26358 Likewise.
26359 * stdio-common/tstdiomisc.c (nanval, lnanval): Rename to qnanval,
26360 and lqnanval, respectively.
26361 * sysdeps/powerpc/bits/fenv.h: Fix usage of NaN/qNaN/sNaN.
26362 * sysdeps/powerpc/fpu/fenv_libc.h: Likewise.
26363 * sysdeps/powerpc/fpu/test-powerpc-snan.c (TEST_FUNC): Likewise,
26364 and rename NaN_var to qNaN_var, and SNaN_var to sNaN_var.
26365
26366 * math/libm-test.inc (fpstack_test) [__x86_64__]: Enable test.
26367 * math/test-misc.c (main) [__x86_64__]: Enable test for long
26368 doubles.
26369
26370 * math/test-misc.c (main): Fix copy'n'pastos.
26371 * misc/tst-efgcvt.c (special): Likewise.
26372
26373 * stdio-common/printf_fp.c (__isinfl_internal, __isnanl_internal):
26374 Remove declarations.
26375
263762013-03-15 Siddhesh Poyarekar <siddhesh@redhat.com>
26377
26378 * sysdeps/ieee754/dbl-64/mpa-arch.h: Remove.
26379 * sysdeps/ieee754/dbl-64/mpa.c: Revert last change.
26380 * sysdeps/ieee754/dbl-64/mpa.h: Revert last change.
26381 * sysdeps/powerpc/power4/fpu/mpa-arch.h: Remove.
26382
263832013-03-15 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
26384
26385 * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET): Add
26386 macro to return vdso values correctly in IFUNC implementations.
26387 * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c (__gettimeofday):
26388 Optimization by using IFUNC.
26389
263902013-03-15 Siddhesh Poyarekar <siddhesh@redhat.com>
26391 Richard Henderson <rth@redhat.com>
26392 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
26393
26394 * Makefile.in (bench): New target.
26395 * NEWS: Mention the benchmark framework.
26396 * Rules (bench): Likewise.
26397 (binaries-bench): Generate binaries for functions to
26398 benchmark.
26399 * benchtests/Makefile: New makefile for benchmark tests.
26400 * benchtests/bench-skeleton.c: New skeleton file for benchmark
26401 programs.
26402 * benchtests/exp-inputs: New input file for EXP function.
26403 * benchtests/pow-inputs: New input file for POW function.
26404 * scripts/bench.pl: New script to generate source files for
26405 benchmark programs.
26406
264072013-03-15 Siddhesh Poyarekar <siddhesh@redhat.com>
26408
26409 * sysdeps/ieee754/dbl-64/mpa-arch.h: New file.
26410 * sysdeps/ieee754/dbl-64/mpa.c (norm): Use MANTISSA_T to store
26411 computations on mantissa. Use macros for rounding and
26412 division.
26413 (denorm): Likewise.
26414 (__dbl_mp): Likewise.
26415 (add_magnitudes): Likewise.
26416 (sub_magnitudes): Likewise.
26417 (__mul): Likewise.
26418 (__sqr): Likewise.
26419 * sysdeps/ieee754/dbl-64/mpa.h: Include mpa-arch.h. Define
26420 powers of two in terms of TWOPOW macro.
26421 (mp_no): Make type of mantissa as MANTISSA_T.
26422 [!RADIXI]: Define RADIXI.
26423 [!TWO52]: Define TWO52.
26424 * sysdeps/powerpc/power4/fpu/mpa-arch.h: New file.
26425
26426 * manual/nptl.texi (cindex): Modify threads to pthreads.
26427
264282013-03-15 Joseph Myers <joseph@codesourcery.com>
26429
26430 * sysdeps/x86_64/preconfigure: Regenerated.
26431
264322013-03-14 Joseph Myers <joseph@codesourcery.com>
26433
26434 [BZ #14155]
26435 * sysdeps/ieee754/dbl-64/e_j0.c (pzero): Return 1.0 for arguments
26436 0x1p28 and above.
26437 (qzero): Return -0.125 / x for arguments 0x1p28 and above.
26438 * sysdeps/ieee754/dbl-64/e_j1.c (pzero): Return 1.0 for arguments
26439 0x1p28 and above.
26440 (qzero): Return 0.375 / x for arguments 0x1p28 and above.
26441 * math/libm-test.inc (j0_test): Do not allow one spurious
26442 underflow exception.
26443 (y1_test): Likewise.
26444
264452013-03-14 Siddhesh Poyarekar <siddhesh@redhat.com>
26446
26447 * manual/Makefile (chapters): Add nptl.
26448 * manual/debug.texi (Debugging Support): Add link to Threads
26449 chapter.
26450 * manual/nptl.texi: New file.
26451
26452 * sysdeps/unix/sysv/linux/times.c (__times): Fix formatting.
26453
264542013-03-14 Petr Baudis <pasky@ucw.cz>
26455
26456 * sysdeps/unix/sysv/linux/times.c (__times): On EFAULT, test
26457 for non-NULL pointer before the memory validity test. Pointed
26458 out by Holger Brunck <holger.brunck@keymile.com>.
26459
264602013-03-13 Andreas Schwab <schwab@suse.de>
26461
26462 * extra-lib.mk (extra-objs): Add static-only-routines as .oS
26463 instead of .os.
26464
264652013-03-13 Joseph Myers <joseph@codesourcery.com>
26466
26467 * timezone/zic.c: Update from tzcode 2013b.
26468
264692013-03-12 Carlos O'Donell <carlos@redhat.com>
26470
26471 * manual/install.texi (Configuring and compiling):
26472 Mention i686 and i586.
26473 * INSTALL: Regenerate.
26474
264752013-03-12 Roland McGrath <roland@hack.frob.com>
26476
26477 * sysdeps/init_array/elf-init.c: New file.
26478 * csu/elf-init.c
26479 (__libc_csu_init) [!NO_INITFINI]: Conditionalize _init call on this.
26480 (__libc_csu_fini) [!NO_INITFINI]: Conditionalize _fini call on this.
26481
26482 * csu/gmon-start.c [GMON_START_ARRAY_SECTION]: Don't define
26483 __gmon_start__ as global, but as static with a .preinit_array pointer.
26484 * sysdeps/init_array/gmon-start.c: New file. Use that.
26485 * sysdeps/init_array/crti.S: New file, empty except for comments.
26486 * sysdeps/init_array/crtn.S: Likewise.
26487
264882013-03-11 Ondřej Bílka <neleai@seznam.cz>
26489
26490 * sysdeps/x86_64/memset.S: Remove USE_MULTIARCH conditional for
26491 definining bcopy.
26492 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
26493 Remove Prefer_SSE_for_memop.
26494 * sysdeps/x86_64/multiarch/init-arch.h: Remove
26495 bit_Prefer_SSE_for_memop, index_Prefer_SSE_for_memop,
26496 HAS_PREFER_SSE_FOR_MEMOP.
26497 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Remove
26498 memset-x86-64.
26499 * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
26500 Remove bzero, memset ifunc support.
26501 * sysdeps/x86_64/multiarch/bzero.S: Remove file.
26502 * sysdeps/x86_64/multiarch/memset-x86-64.S: Likewise.
26503 * sysdeps/x86_64/multiarch/memset.S: Likewise.
26504 * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
26505
265062013-03-11 Andreas Schwab <schwab@suse.de>
26507
26508 [BZ #15234]
26509 * Versions.def (libpthread): Add GLIBC_2.3, so that it can be used
26510 by SHLIB_COMPAT.
26511 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist
26512 (GLIBC_2.16): Remove pthread_atfork.
26513
265142013-03-08 Paul Pluzhnikov <ppluzhnikov@google.com>
26515
26516 * posix/Makefile (testcases.h): Set LC_ALL=C before sed.
26517 (ptestcases.h): Likewise.
26518
265192013-03-08 Roland McGrath <roland@hack.frob.com>
26520
26521 * Makeconfig ($(common-objpfx)config.status): Depend on
26522 sysdeps/*/preconfigure{,.in} too.
26523
265242013-03-08 Joseph Myers <joseph@codesourcery.com>
26525
26526 * malloc/malloc.h (__malloc_ptr_t): Remove macro.
26527 (__free_hook): Use void * instead of __malloc_ptr_t.
26528 (__malloc_hook): Likewise.
26529 (__realloc_hook): Likewise.
26530 (__memalign_hook): Likewise.
26531 (__after_morecore_hook): Likewise.
26532 * malloc/arena.c (save_malloc_hook): Likewise.
26533 (save_free_hook): Likewise.
26534 * malloc/hooks.c (malloc_hook_ini): Likewise.
26535 (realloc_hook_ini): Likewise.
26536 (memalign_hook_ini): Likewise.
26537 * malloc/malloc.c (malloc_hook_ini): Likewise.
26538 (realloc_hook_ini): Likewise.
26539 (memalign_hook_ini): Likewise.
26540 (__free_hook): Likewise.
26541 (__malloc_hook): Likewise.
26542 (__realloc_hook): Likewise.
26543 (__memalign_hook): Likewise.
26544 (__libc_malloc): Likewise.
26545 (__libc_free): Likewise.
26546 (__libc_realloc): Likewise.
26547 (__libc_memalign): Likewise.
26548 (__libc_valloc): Likewise.
26549 (__libc_pvalloc): Likewise.
26550 (__libc_calloc): Likewise.
26551 (__posix_memalign): Likewise.
26552 * malloc/morecore.c (__sbrk): Likewise.
26553 (__default_morecore): Likewise.
26554
26555 * malloc/morecore.c (__default_morecore): Use ISO C prototype.
26556
26557 * malloc/malloc.h (__malloc_ptrdiff_t): Remove macro.
26558 * malloc/morecore.c (__default_morecore): Use ptrdiff_t instead of
26559 __malloc_ptrdiff_t.
26560
26561 * malloc/malloc.h (__malloc_size_t): Remove macro.
26562 * malloc/mcheck.c (old_malloc_hook): Use size_t instead of
26563 __malloc_size_t.
26564 (old_memalign_hook): Likewise.
26565 (old_realloc_hook): Likewise.
26566 (struct hdr): Likewise.
26567 (flood): Likewise.
26568 (mallochook): Likewise.
26569 (memalignhook): Likewise.
26570 (reallochook): Likewise.
26571 * malloc/mtrace.c (tr_old_malloc_hook): Likewise.
26572 (tr_old_realloc_hook): Likewise.
26573 (tr_old_memalign_hook): Likewise.
26574 (tr_mallochook): Likewise.
26575 (tr_reallochook): Likewise.
26576 (tr_memalignhook): Likewise.
26577
265782013-03-08 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
26579
26580 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_pack): Rename to
26581 default_ldbl_pack and using as default implementation.
26582 (ldbl_unpack): Rename to default_ldbl_unpack and using as default
26583 implementation.
26584 * sysdeps/powerpc/fpu/math_ldbl.h (ldbl_extract_mantissa): Remove
26585 redundant definition.
26586 (ldbl_insert_mantissa): Likewise.
26587 (ldbl_canonicalize): Likewise.
26588 (ldbl_nearbyint): Likewise.
26589 (ldbl_pack): Rename to ldbl_pack_ppc.
26590 (ldbl_unpack): Rename to ldbl_unpack_ppc.
26591 * sysdeps/unix/sysv/linux/powerpc/Implies: Remove file.
26592 * sysdeps/powerpc/Implies: Add ieee754/ldbl-opt after ieee754/ldbl-128ibm.
26593
265942013-03-08 Siddhesh Poyarekar <siddhesh@redhat.com>
26595
26596 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Move file...
26597 * sysdeps/powerpc/power4/fpu/mpa.c: ... here.
26598 * sysdeps/powerpc/powerpc32/power4/fpu/Makefile: Move file...
26599 * sysdeps/powerpc/power4/fpu/Makefile: ... here.
26600 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Remove file.
26601 * sysdeps/powerpc/powerpc64/power4/fpu/Makefile: Remove file.
26602 * sysdeps/powerpc/powerpc32/power4/Implies: New file.
26603 * sysdeps/powerpc/powerpc64/power4/Implies: New file.
26604
266052013-03-07 Andreas Jaeger <aj@suse.de>
26606
26607 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
26608 bits/mman-linux.h.
26609
266102013-03-07 Siddhesh Poyarekar <siddhesh@redhat.com>
26611
26612 * sysdeps/ieee754/dbl-64/slowexp.c [!USE_LONG_DOUBLE_FOR_MP]:
26613 Include mpa.h and declare __MPEXP.
26614 [USE_LONG_DOUBLE_FOR_MP] (__slowexp): Call __IEEE754_EXPL.
26615 * sysdeps/powerpc/powerpc32/power4/fpu/Makefile
26616 (CPPFLAGS-slowexp.c): Define USE_LONG_DOUBLE_FOR_MP.
26617 * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Remove.
26618 * sysdeps/powerpc/powerpc64/power4/fpu/Makefile
26619 (CPPFLAGS-slowexp.c): Define USE_LONG_DOUBLE_FOR_MP.
26620 * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Remove.
26621
26622 * sysdeps/ieee754/dbl-64/slowpow.c [USE_LONG_DOUBLE_FOR_MP]
26623 (__slowpow): Use long double EXPL and LOGL functions to
26624 compute POW.
26625 * sysdeps/powerpc/powerpc32/power4/fpu/Makefile
26626 (CPPFLAGS-slowpow.c): Define USE_LONG_DOUBLE_FOR_MP.
26627 * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Remove.
26628 * sysdeps/powerpc/powerpc64/power4/fpu/Makefile
26629 (CPPFLAGS-slowpow.c): Define USE_LONG_DOUBLE_FOR_MP.
26630 * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Remove.
26631
26632 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Use
26633 intermediate variable to calculate exponent.
26634 (__sqr): Likewise.
26635 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul):
26636 Likewise.
26637 (__sqr): Likewise.
26638
26639 * sysdeps/ieee754/dbl-64/mpa.c [!NO__MUL]: Define __mul.
26640 [!NO__SQR]: Define __sqr.
26641 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: define NO__MUL
26642 and NO__SQR. Remove all code except __mul and __sqr. Include
26643 sysdeps/ieee754/dbl-64/mpa.c.
26644 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
26645
26646 [BZ #12723]
26647 * posix/Makefile (tests): Add tst-pathconf.
26648 * posix/tst-pathconf.c: New test case.
26649 * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Remove
26650 _PC_PIPE_BUF.
26651 * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Likewise.
26652
266532013-03-06 Patsy Franklin <pfrankli@redhat.com>
26654
26655 * io/fcntl.h: Added a comment about AT_EACCESS and AT_REMOVEDIR.
26656
266572013-03-06 Andreas Jaeger <aj@suse.de>
26658
26659 * sysdeps/unix/sysv/linux/bits/mman-linux.h (MAP_ANONYMOUS): Allow
26660 definition via __MAP_ANONYMOUS.
26661
26662 * sysdeps/unix/sysv/linux/s390/bits/mman.h (MAP_GROWSUP): Remove,
26663 it's not part of Linux headers.
26664
26665 * sysdeps/unix/sysv/linux/bits/mman-linux.h (MAP_HUGE_SHIFT): Define.
26666 (MAP_HUGE_MASK): Define.
26667
26668 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_O_EXIT_KILL):
26669 Define.
26670 (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
26671 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_O_EXIT_KILL):
26672 Define.
26673 (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
26674 * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_O_EXIT_KILL):
26675 Define.
26676 (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
26677 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_O_EXITKILL):
26678 Define.
26679 (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
26680
26681 * sysdeps/unix/sysv/linux/x86/bits/msq.h (MSG_COPY): Likewise.
26682 * sysdeps/unix/sysv/linux/generic/bits/msq.h (MSG_COPY): Define.
26683 * sysdeps/unix/sysv/linux/powerpc/bits/msq.h (MSG_COPY): Likewise.
26684 * sysdeps/unix/sysv/linux/bits/msq.h (MSG_COPY): Likewise.
26685 * sysdeps/unix/sysv/linux/s390/bits/msq.h (MSG_COPY): Likewise.
26686 * sysdeps/unix/sysv/linux/sparc/bits/msq.h (MSG_COPY): Define.
26687
26688 * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
26689 Handle f2fs.
26690
26691 * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
26692 Handle f2fs and efivarfs.
26693
26694 * sysdeps/unix/sysv/linux/pathconf.c (__statfs_link_max): Handle
26695 f2fs.
26696
26697 * sysdeps/unix/sysv/linux/linux_fsinfo.h (F2FS_SUPER_MAGIC): Add.
26698 (EFIVARFS_MAGIC): Add.
26699 (F2FS_LINK_MAX): Add.
26700
267012013-03-06 Paul Pluzhnikov <ppluzhnikov@google.com>
26702
26703 * stdio-common/vfprintf.c: Replace __builtin_expect with
26704 __glibc_unlikely.
26705
267062013-03-06 Joseph Myers <joseph@codesourcery.com>
26707
26708 [BZ #13550]
26709 * sysdeps/generic/bp-sym.h: Remove file.
26710 * sysdeps/powerpc/powerpc64/bp-asm.h: Likewise.
26711 * sysdeps/powerpc/powerpc64/__longjmp-common.S: Don't include
26712 <bp-sym.h> and <bp-asm.h>.
26713 (__longjmp): Don't use BP_SYM.
26714 * sysdeps/powerpc/powerpc64/a2/memcpy.S: Don't include <bp-sym.h>
26715 and <bp-asm.h>.
26716 (memcpy): Don't use BP_SYM.
26717 * sysdeps/powerpc/powerpc64/cell/memcpy.S: Don't include
26718 <bp-sym.h> and <bp-asm.h>.
26719 (memcpy): Don't use BP_SYM.
26720 * sysdeps/powerpc/powerpc64/memcpy.S: Don't include <bp-sym.h> and
26721 <bp-asm.h>.
26722 (memcpy): Don't use BP_SYM.
26723 * sysdeps/powerpc/powerpc64/memset.S: Don't include <bp-sym.h> and
26724 <bp-asm.h>.
26725 (memset): Don't use BP_SYM.
26726 (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
26727 (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
26728 (__bzero): Don't use BP_SYM.
26729 (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
26730 (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
26731 * sysdeps/powerpc/powerpc64/power4/memcmp.S: Don't include
26732 <bp-sym.h> and <bp-asm.h>.
26733 (memcmp): Don't use BP_SYM. Remove comment about bounded
26734 pointers.
26735 * sysdeps/powerpc/powerpc64/power4/memcpy.S: Don't include
26736 <bp-sym.h> and <bp-asm.h>.
26737 (memcpy): Don't use BP_SYM.
26738 * sysdeps/powerpc/powerpc64/power4/memset.S: Don't include
26739 <bp-sym.h> and <bp-asm.h>.
26740 (memset): Don't use BP_SYM.
26741 (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
26742 (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
26743 (__bzero): Don't use BP_SYM.
26744 (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
26745 (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
26746 * sysdeps/powerpc/powerpc64/power4/strncmp.S: Don't include
26747 <bp-sym.h> and <bp-asm.h>.
26748 (strncmp): Don't use BP_SYM. Remove comment about bounded
26749 pointers.
26750 * sysdeps/powerpc/powerpc64/power6/memcpy.S: Don't include
26751 <bp-sym.h> and <bp-asm.h>.
26752 (memcpy): Don't use BP_SYM.
26753 * sysdeps/powerpc/powerpc64/power6/memset.S: Don't include
26754 <bp-sym.h> and <bp-asm.h>.
26755 (memset): Don't use BP_SYM.
26756 (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
26757 (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
26758 (__bzero): Don't use BP_SYM.
26759 (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
26760 (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
26761 * sysdeps/powerpc/powerpc64/power7/memchr.S: Don't include
26762 <bp-sym.h> and <bp-asm.h>.
26763 (__memchr): Don't use BP_SYM.
26764 * sysdeps/powerpc/powerpc64/power7/memcmp.S: Don't include
26765 <bp-sym.h> and <bp-asm.h>.
26766 (memcmp): Don't use BP_SYM. Remove comment about bounded
26767 pointers.
26768 * sysdeps/powerpc/powerpc64/power7/memcpy.S: Don't include
26769 <bp-sym.h> and <bp-asm.h>.
26770 (memcpy): Don't use BP_SYM.
26771 * sysdeps/powerpc/powerpc64/power7/mempcpy.S: Don't include
26772 <bp-sym.h> and <bp-asm.h>.
26773 (__mempcpy): Don't use BP_SYM.
26774 * sysdeps/powerpc/powerpc64/power7/memrchr.S: Don't include
26775 <bp-sym.h> and <bp-asm.h>.
26776 (__memrchr): Don't use BP_SYM.
26777 * sysdeps/powerpc/powerpc64/power7/memset.S: Don't include
26778 <bp-sym.h> and <bp-asm.h>.
26779 (memset): Don't use BP_SYM.
26780 (__bzero): Likewise.
26781 * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: Don't include
26782 <bp-sym.h> and <bp-asm.h>.
26783 (__rawmemchr): Don't use BP_SYM.
26784 * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: Don't include
26785 <bp-sym.h> and <bp-asm.h>.
26786 (__STRCMP): Don't use BP_SYM.
26787 * sysdeps/powerpc/powerpc64/power7/strchr.S: Don't include
26788 <bp-sym.h> and <bp-asm.h>.
26789 (strchr): Don't use BP_SYM.
26790 * sysdeps/powerpc/powerpc64/power7/strchrnul.S: Don't include
26791 <bp-sym.h> and <bp-asm.h>.
26792 (__strchrnul): Don't use BP_SYM.
26793 * sysdeps/powerpc/powerpc64/power7/strlen.S: Don't include
26794 <bp-sym.h> and <bp-asm.h>.
26795 (strlen): Don't use BP_SYM.
26796 * sysdeps/powerpc/powerpc64/power7/strncmp.S: Don't include
26797 <bp-sym.h> and <bp-asm.h>.
26798 (strncmp): Don't use BP_SYM. Remove comment about bounded
26799 pointers.
26800 * sysdeps/powerpc/powerpc64/power7/strnlen.S: Don't include
26801 <bp-sym.h> and <bp-asm.h>.
26802 (__strnlen): Don't use BP_SYM.
26803 * sysdeps/powerpc/powerpc64/setjmp-common.S: Don't include
26804 <bp-sym.h> and <bp-asm.h>.
26805 (__GI__setjmp): Don't use BP_SYM.
26806 (_setjmp): Likewise.
26807 (__sigsetjmp): Likewise.
26808 * sysdeps/powerpc/powerpc64/start.S: Don't include "bp-sym.h".
26809 (L(start_addresses)): Don't use BP_SYM.
26810 (_start): Likewise.
26811 * sysdeps/powerpc/powerpc64/stpcpy.S: Don't include <bp-sym.h> and
26812 <bp-asm.h>.
26813 (__stpcpy): Don't use BP_SYM, CHECK_BOUNDS_LOW,
26814 STORE_RETURN_BOUNDS, CHECK_BOUNDS_HIGH and STORE_RETURN_VALUE.
26815 (__stpcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
26816 (__stpcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
26817 * sysdeps/powerpc/powerpc64/strchr.S: Don't include <bp-sym.h> and
26818 <bp-asm.h>.
26819 (strchr): Don't use BP_SYM, CHECK_BOUNDS_LOW, STORE_RETURN_BOUNDS,
26820 CHECK_BOUNDS_HIGH_RTN and STORE_RETURN_VALUE. Remove comment
26821 about bounded pointers.
26822 (strchr) [__BOUNDED_POINTERS__]: Remove conditional code.
26823 (strchr) [!__BOUNDED_POINTERS__]: Make code unconditional.
26824 * sysdeps/powerpc/powerpc64/strcmp.S: Don't include <bp-sym.h> and
26825 <bp-asm.h>.
26826 (strcmp): Don't use BP_SYM and CHECK_BOUNDS_LOW. Remove comment
26827 about bounded pointers. Remove GKM FIXME comments.
26828 (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
26829 * sysdeps/powerpc/powerpc64/strcpy.S: Don't include <bp-sym.h> and
26830 <bp-asm.h>.
26831 (strcpy): Don't use BP_SYM, CHECK_BOUNDS_LOW and
26832 STORE_RETURN_BOUNDS. Remove comment about bounded pointers.
26833 Remove GKM FIXME comments.
26834 (strcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
26835 (strcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
26836 * sysdeps/powerpc/powerpc64/strlen.S: Don't include <bp-sym.h> and
26837 <bp-asm.h>.
26838 (strlen): Don't use BP_SYM and CHECK_BOUNDS_LOW. Remove comment
26839 about bounded pointers. Remove GKM FIXME comment.
26840 * sysdeps/powerpc/powerpc64/strncmp.S: Don't include <bp-sym.h>
26841 and <bp-asm.h>.
26842 (strncmp): Don't use BP_SYM. Remove comment about bounded
26843 pointers.
26844 * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S: Don't include
26845 <bp-sym.h> and <bp-asm.h>.
26846 (__brk): Don't use BP_SYM and DISCARD_BOUNDS.
26847 * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Don't include
26848 <bp-sym.h> and <bp-asm.h>.
26849 (__clone): Don't use BP_SYM and DISCARD_BOUNDS. Remove GKM FIXME
26850 comment.
26851
268522013-03-05 Paul Pluzhnikov <ppluzhnikov@google.com>
26853
26854 * stdio-common/vfprintf.c (vfprintf): Check malloc return; don't
26855 call free(NULL).
26856
268572013-03-05 David S. Miller <davem@davemloft.net>
26858
26859 * po/es.po: Update from translation team.
26860
268612013-03-05 Andreas Jaeger <aj@suse.de>
26862
26863 * sysdeps/unix/sysv/linux/s390/bits/mman.h: Include
26864 <bits/mman-linux.h>.
26865 (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
26866 is fine.
26867 * sysdeps/unix/sysv/linux/sh/bits/mman.h: Move include of
26868 <bits/mman-linux.h> to end of file.
26869 (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
26870 is fine.
26871 * sysdeps/unix/sysv/linux/x86/bits/mman.h: Move include of
26872 <bits/mman-linux.h> to end of file.
26873 (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
26874 is fine.
26875 * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Move include of
26876 <bits/mman-linux.h> to end of file.
26877
26878 * sysdeps/unix/sysv/linux/bits/mman-linux.h [!MCL_CURRENT]
26879 (MCL_CURRENT, MCL_FUTURE): Define here.
26880
268812013-03-05 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
26882
26883 [BZ #15232]
26884 * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Use
26885 attribute_hidden.
26886 * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
26887
268882013-03-05 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
26889
26890 * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Set the
26891 fourth parameter needed for rt_sigprocmask syscall.
26892 * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S:
26893 * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
26894 * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
26895 * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
26896 * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
26897 * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: Define _NSIG8.
26898
268992013-03-04 Joseph Myers <joseph@codesourcery.com>
26900
26901 [BZ #13550]
26902 * sysdeps/powerpc/powerpc32/power4/strncmp.S (strncmp): Remove
26903 comment about bounded pointers.
26904 * sysdeps/powerpc/powerpc32/power7/strncmp.S (strncmp): Likewise.
26905 * sysdeps/powerpc/powerpc32/strncmp.S (strncmp): Likewise.
26906
269072013-03-04 Andreas Jaeger <aj@suse.de>
26908
26909 * sysdeps/unix/sysv/linux/bits/mman-linux.h: New file, with Linux
26910 common definitions.
26911
26912 * sysdeps/unix/sysv/linux/sh/bits/mman.h: Remove all defines
26913 provided by bits/mman-linux.h and include <bits/mman-linux.h>.
26914 * sysdeps/unix/sysv/linux/x86/bits/mman.h: Likewise.
26915 * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
26916 * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
26917 * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
26918
269192013-03-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
26920
26921 [BZ #15055]
26922 * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Use
26923 __ieee754_sqrl instead of __sqrl.
26924
269252013-03-01 Joseph Myers <joseph@codesourcery.com>
26926
26927 * sysdeps/powerpc/fpu/fpu_control.h: Move to ...
26928 * sysdeps/powerpc/fpu_control.h: ... here.
26929 * sysdeps/powerpc/fpu/bits/fenvinline.h: Move to ...
26930 * sysdeps/powerpc/bits/fenvinline.h: ... here.
26931 * sysdeps/powerpc/fpu/bits/mathinline.h: Move to ...
26932 * sysdeps/powerpc/bits/mathinline.h: ... here.
26933
269342013-03-01 Roland McGrath <roland@hack.frob.com>
26935
26936 * elf/dl-hwcaps.c (_dl_important_hwcaps):
26937 Change [NEED_DL_SYSINFO || NEED_DL_SYSINFO_DSO] conditionals
26938 to just [NEED_DL_SYSINFO_DSO].
26939 * elf/dl-support.c: Likewise.
26940 * elf/dl-sysdep.c (_dl_sysdep_start): Likewise.
26941 * elf/rtld.c (dl_main): Likewise.
26942 * elf/setup-vdso.h (setup_vdso): Likewise.
26943 * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Likewise.
26944 * sysdeps/unix/sysv/linux/dl-sysdep.c
26945 (_dl_discover_osversion): Likewise.
26946
269472013-03-01 Carlos O'Donell <carlos@redhat.com>
26948
26949 * csu/libc-start.c (__pthread_initialize_minimal): Revert last change.
26950 * csu/libc-tls.c (__pthread_initialize_minimal): Likewise.
26951
269522013-03-01 Siddhesh Poyarekar <siddhesh@redhat.com>
26953
26954 * NEWS: Mention libm performance improvements and non-x86 PI
26955 futex support.
26956
26957 * csu/libc-start.c (__pthread_initialize_minimal): Change
26958 function arguments.
26959 * csu/libc-tls.c (__pthread_initialize_minimal): Likewise.
26960
269612013-02-28 Joseph Myers <joseph@codesourcery.com>
26962
26963 [BZ #13550]
26964 * sysdeps/powerpc/powerpc32/bp-asm.h: Remove file.
26965 * sysdeps/powerpc/powerpc32/__longjmp-common.S: Don't include
26966 <bp-sym.h> and <bp-asm.h>.
26967 (__longjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
26968 * sysdeps/powerpc/powerpc32/a2/memcpy.S: Don't include <bp-sym.h>
26969 and <bp-asm.h>.
26970 (memcpy): Don't use BP_SYM.
26971 * sysdeps/powerpc/powerpc32/add_n.S: Don't include <bp-sym.h> and
26972 <bp-asm.h>.
26973 (__mpn_add_n): Don't use BP_SYM.
26974 (__mpn_add_n) [__BOUNDED_POINTERS_]: Remove conditional code.
26975 * sysdeps/powerpc/powerpc32/addmul_1.S: Don't include <bp-sym.h>
26976 and <bp-asm.h>.
26977 (__mpn_addmul_1): Don't use BP_SYM.
26978 (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
26979 * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Don't include
26980 <bp-sym.h>.
26981 (_setjmp): Don't use BP_SYM.
26982 (__novmx_setjmp): Likewise.
26983 (__GI__setjmp): Likewise.
26984 (__vmx_setjmp): Likewise.
26985 * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Don't include
26986 <bp-sym.h>.
26987 * sysdeps/powerpc/powerpc32/bzero.S: Don't include <bp-sym.h>.
26988 (__bzero): Don't use BP_SYM.
26989 (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
26990 (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
26991 * sysdeps/powerpc/powerpc32/cell/memcpy.S: Don't include
26992 <bp-sym.h> and <bp-asm.h>.
26993 (memcpy): Don't use BP_SYM.
26994 * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Don't include
26995 <bp-sym.h> and <bp-asm.h>.
26996 (__longjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
26997 * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Don't include
26998 <bp-sym.h> and <bp-asm.h>.
26999 (__sigsetjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
27000 * sysdeps/powerpc/powerpc32/lshift.S: Don't include <bp-sym.h> and
27001 <bp-asm.h>.
27002 (__mpn_lshift): Don't use BP_SYM.
27003 (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
27004 * sysdeps/powerpc/powerpc32/memset.S: Don't include <bp-sym.h> and
27005 <bp-asm.h>.
27006 (memset): Don't use BP_SYM.
27007 (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
27008 (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
27009 * sysdeps/powerpc/powerpc32/mul_1.S: Don't include <bp-sym.h> and
27010 <bp-asm.h>.
27011 (__mpn_mul_1): Don't use BP_SYM.
27012 (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
27013 * sysdeps/powerpc/powerpc32/power4/memcmp.S: Don't include
27014 <bp-sym.h> and <bp-asm.h>.
27015 (memcmp): Don't use BP_SYM.
27016 * sysdeps/powerpc/powerpc32/power4/memcpy.S: Don't include
27017 <bp-sym.h> and <bp-asm.h>.
27018 (memcpy): Don't use BP_SYM.
27019 * sysdeps/powerpc/powerpc32/power4/memset.S: Don't include
27020 <bp-sym.h> and <bp-asm.h>.
27021 (memset): Don't use BP_SYM.
27022 * sysdeps/powerpc/powerpc32/power4/strncmp.S: Don't include
27023 <bp-sym.h> and <bp-asm.h>.
27024 (strncmp): Don't use BP_SYM.
27025 * sysdeps/powerpc/powerpc32/power6/memcpy.S: Don't include
27026 <bp-sym.h> and <bp-asm.h>.
27027 (memcpy): Don't use BP_SYM.
27028 * sysdeps/powerpc/powerpc32/power6/memset.S: Don't include
27029 <bp-sym.h> and <bp-asm.h>.
27030 (memset): Don't use BP_SYM.
27031 * sysdeps/powerpc/powerpc32/power7/memchr.S: Don't include
27032 <bp-sym.h> and <bp-asm.h>.
27033 (__memchr): Don't use BP_SYM.
27034 * sysdeps/powerpc/powerpc32/power7/memcmp.S: Don't include
27035 <bp-sym.h> and <bp-asm.h>.
27036 (memcmp): Don't use BP_SYM.
27037 * sysdeps/powerpc/powerpc32/power7/memcpy.S: Don't include
27038 <bp-sym.h> and <bp-asm.h>.
27039 (memcpy): Don't use BP_SYM.
27040 * sysdeps/powerpc/powerpc32/power7/mempcpy.S: Don't include
27041 <bp-sym.h> and <bp-asm.h>.
27042 (__mempcpy): Don't use BP_SYM.
27043 * sysdeps/powerpc/powerpc32/power7/memrchr.S: Don't include
27044 <bp-sym.h> and <bp-asm.h>.
27045 (__memrchr): Don't use BP_SYM.
27046 * sysdeps/powerpc/powerpc32/power7/memset.S: Don't include
27047 <bp-sym.h> and <bp-asm.h>.
27048 (memset): Don't use BP_SYM.
27049 * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: Don't include
27050 <bp-sym.h> and <bp-asm.h>.
27051 (__rawmemchr): Don't use BP_SYM.
27052 * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: Don't include
27053 <bp-sym.h> and <bp-asm.h>.
27054 (__STRCMP): Don't use BP_SYM.
27055 * sysdeps/powerpc/powerpc32/power7/strchr.S: Don't include
27056 <bp-sym.h> and <bp-asm.h>.
27057 (strchr): Don't use BP_SYM.
27058 * sysdeps/powerpc/powerpc32/power7/strchrnul.S: Don't include
27059 <bp-sym.h> and <bp-asm.h>.
27060 (__strchrnul): Don't use BP_SYM.
27061 * sysdeps/powerpc/powerpc32/power7/strlen.S: Don't include
27062 <bp-sym.h> and <bp-asm.h>.
27063 (strlen): Don't use BP_SYM.
27064 * sysdeps/powerpc/powerpc32/power7/strncmp.S: Don't include
27065 <bp-sym.h> and <bp-asm.h>.
27066 (strncmp): Don't use BP_SYM.
27067 * sysdeps/powerpc/powerpc32/power7/strnlen.S: Don't include
27068 <bp-sym.h> and <bp-asm.h>.
27069 (__strnlen): Don't use BP_SYM.
27070 * sysdeps/powerpc/powerpc32/rshift.S: Don't include <bp-sym.h> and
27071 <bp-asm.h>.
27072 (__mpn_rshift): Don't use BP_SYM.
27073 (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
27074 * sysdeps/powerpc/powerpc32/setjmp-common.S: Don't include
27075 <bp-sym.h> and <bp-asm.h>.
27076 (__sigsetjmp): Don't use BP_SYM.
27077 * sysdeps/powerpc/powerpc32/start.S: Don't include "bp-sym.h".
27078 (L(start_addresses)): Don't use BP_SYM.
27079 (_start): Likewise.
27080 * sysdeps/powerpc/powerpc32/stpcpy.S: Don't include <bp-sym.h> and
27081 <bp-asm.h>.
27082 (__stpcpy): Don't use BP_SYM and macros from bp-asm.h.
27083 (__stpcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
27084 (__stpcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
27085 * sysdeps/powerpc/powerpc32/strchr.S: Don't include <bp-sym.h> and
27086 <bp-asm.h>.
27087 (strchr): Don't use BP_SYM.h and macros from bp-asm.h.
27088 (strchr) [__BOUNDED_POINTERS__]: Remove conditional code.
27089 (strchr) [!__BOUNDED_POINTERS__]: Make code unconditional.
27090 * sysdeps/powerpc/powerpc32/strcmp.S: Don't include <bp-sym.h> and
27091 <bp-asm.h>.
27092 (strcmp): Don't use BP_SYM and CHECK_BOUNDS_LOW. Remove GKM FIXME
27093 comments.
27094 (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
27095 * sysdeps/powerpc/powerpc32/strcpy.S: Don't include <bp-sym.h> and
27096 <bp-asm.h>.
27097 (strcpy): Don't use BP_SYM and macros from bp-asm.h. Remove GKM
27098 FIXME comments.
27099 (strcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
27100 (strcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
27101 * sysdeps/powerpc/powerpc32/strlen.S: Don't include <bp-sym.h> and
27102 <bp-asm.h>.
27103 (strlen): Don't use BP_SYM and CHECK_BOUNDS_LOW. Remove GKM FIXME
27104 comment.
27105 * sysdeps/powerpc/powerpc32/strncmp.S: Don't include <bp-sym.h>
27106 and <bp-asm.h>.
27107 (strncmp): Don't use BP_SYM,
27108 * sysdeps/powerpc/powerpc32/sub_n.S: Don't include <bp-sym.h> and
27109 <bp-asm.h>.
27110 (__mpn_sub_n): Don't use BP_SYM.
27111 (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
27112 * sysdeps/powerpc/powerpc32/submul_1.S: Don't include <bp-sym.h>
27113 and <bp-asm.h>.
27114 (__mpn_submul_1): Don't use BP_SYM.
27115 (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
27116 * sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S: Don't include
27117 <bp-sym.h> and <bp-asm.h>.
27118 (__brk): Don't use BP_SYM and DISCARD_BOUNDS.
27119 * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Don't include
27120 <bp-sym.h> and <bp-asm.h>.
27121 (__clone): Don't use BP_SYM and DISCARD_BOUNDS. Remove GKM FIXME
27122 comment.
27123
271242013-02-28 Siddhesh Poyarekar <siddhesh@redhat.com>
27125
27126 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (add_magnitudes):
27127 Use ZK to minimize writes to Z.
27128 (sub_magnitudes): Simplify code a bit.
27129 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (add_magnitudes):
27130 Use ZK to minimize writes to Z.
27131 (sub_magnitudes): Simplify code a bit.
27132
271332013-02-27 Roland McGrath <roland@hack.frob.com>
27134
27135 * csu/gmon-start.c: Add special exception to license text.
27136
271372013-02-27 Richard Henderson <rth@redhat.com>
27138
27139 * scripts/config.guess: Update from config.git.
27140 * scripts/config.sub: Likewise.
27141
271422013-02-27 Siddhesh Poyarekar <siddhesh@redhat.com>
27143
27144 * sysdeps/ieee754/dbl-64/mpsqrt.c: Reformat.
27145
27146 * sysdeps/ieee754/dbl-64/mpatan2.c: Reformat.
27147
27148 * sysdeps/ieee754/dbl-64/mpatan.c: Reformat.
27149
27150 * sysdeps/ieee754/dbl-64/mptan.c: Reformat.
27151
27152 * sysdeps/ieee754/dbl-64/mplog.c: Reformat.
27153
271542013-02-26 Roland McGrath <roland@hack.frob.com>
27155
27156 * Makeconfig (%.v.i, %.v): Move these pattern rules outside of
27157 [$(build-shared = yes].
27158
271592013-02-26 Siddhesh Poyarekar <siddhesh@redhat.com>
27160
27161 * sysdeps/ieee754/dbl-64/mpa.c: Include alloca.h.
27162 (__mul): Reduce iterations for calculating mantissa.
27163
27164 * sysdeps/ieee754/dbl-64/sincos32.c (__c32): Use MPONE and
27165 MPTWO.
27166 (__mpranred): Likewise.
27167
27168 [BZ #15160]
27169 * malloc/memusagestat.c (main): Draw graphs for heap and stack
27170 only if MAXSIZE_HEAP and MAXSIZE_STACK are non-zero.
27171
271722013-02-26 Paul Eggert <eggert@cs.ucla.edu>
27173
27174 * posix/regex_internal.h [__GNUC__ < 3 + (__GNUC_MINOR__ < 1]:
27175 Define __attribute__.
27176
271772013-02-26 Siddhesh Poyarekar <siddhesh@redhat.com>
27178
27179 * locale/elem-hash.h (elem_hash): Mark as pure and possibly
27180 unused.
27181 * posix/regex_internal.h (__attribute): Remove.
27182 [!_LIBC && __i386__]: Use __attribute__ instead of __attribute.
27183 (re_string_context_at): Likewise.
27184 (bitset_not): Use __attribute__ and mark function as possibly
27185 unused.
27186 (bitset_merge): Likewise.
27187 (bitset_mask): Likewise.
27188 (re_string_char_size_at): Likewise.
27189 (re_string_wchar_at): Likewise.
27190 (re_string_elem_size_at): Likewise.
27191
271922013-02-25 Siddhesh Poyarekar <siddhesh@redhat.com>
27193
27194 * sysdeps/ieee754/dbl-64/sincos32.c (ss32): Remove commented
27195 code.
27196 (cc32): Likewise.
27197
27198 * sysdeps/ieee754/dbl-64/mpa.c (mcr): Use long instead of int.
27199 (__acr): Likewise.
27200 (__cpy): Likewise.
27201 (norm): Likewise.
27202 (denorm): Likewise.
27203 (__dbl_mp): Likewise.
27204 (add_magnitudes): Likewise.
27205 (sub_magnitudes): Likewise.
27206 (__mul): Likewise.
27207 (__inv): Likewise.
27208
27209 * sysdeps/ieee754/dbl-64/slowexp.c: Reformat in GNU coding
27210 style.
27211
27212 * sysdeps/ieee754/dbl-64/slowpow.c: Reformat in GNU coding
27213 style.
27214
27215 * sysdeps/ieee754/dbl-64/slowexp.c (__slowexp): Remove commented
27216 code.
27217
27218 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mp_dbl): Sync
27219 up changes with default code.
27220 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mp_dbl):
27221 Likewise.
27222
272232013-02-24 Allan McRae <allan@archlinux.org>
27224
27225 * manual/socket.texi (The Internet Namespace): Order menu items
27226 to match that in the file.
27227
27228 * manual/libc-texinfo.sh: Use @detailmenu around the detailed
27229 node listing of the info page menu.
27230
272312013-02-21 Joseph Myers <joseph@codesourcery.com>
27232
27233 [BZ #13550]
27234 * sysdeps/i386/bp-asm.h: Remove file.
27235 * sysdeps/i386/add_n.S: Do not include "bp-sym.h" and "bp-asm.h".
27236 (PARMS): Do not use macros from bp-asm.h.
27237 (S1): Likewise.
27238 (S2): Likewise.
27239 (SIZE): Likewise.
27240 (__mpn_add_n): Do not use BP_SYM
27241 * sysdeps/i386/addmul_1.S: Do not include "bp-sym.h" and
27242 "bp-asm.h".
27243 (PARMS): Do not use macros from bp-asm.h.
27244 (S1): Likewise.
27245 (SIZE): Likewise.
27246 (__mpn_addmul_1): Do not use BP_SYM
27247 * sysdeps/i386/bsd-_setjmp.S: Do not include "bp-sym.h" and
27248 "bp-asm.h".
27249 (PARMS): Do not use macros from bp-asm.h.
27250 (SIGMSK): Likewise.
27251 (_setjmp): Likewise. Do not use BP_SYM.
27252 * sysdeps/i386/bsd-setjmp.S: Do not include "bp-sym.h" and
27253 "bp-asm.h".
27254 (PARMS): Do not use macros from bp-asm.h.
27255 (SIGMSK): Likewise.
27256 (setjmp): Likewise. Do not use BP_SYM.
27257 * sysdeps/i386/fpu/s_frexp.S: Do not include "bp-sym.h" and
27258 "bp-asm.h".
27259 (PARMS): Do not use macros from bp-asm.h.
27260 (__frexp): Do not use BP_SYM.
27261 (frexp): Likewise.
27262 * sysdeps/i386/fpu/s_frexpf.S: Do not include "bp-sym.h" and
27263 "bp-asm.h".
27264 (PARMS): Do not use macros from bp-asm.h.
27265 (__frexpf): Do not use BP_SYM.
27266 (frexpf): Likewise.
27267 * sysdeps/i386/fpu/s_frexpl.S: Do not include "bp-sym.h" and
27268 "bp-asm.h".
27269 (PARMS): Do not use macros from bp-asm.h.
27270 (__frexpl): Do not use BP_SYM.
27271 (frexpl): Likewise.
27272 * sysdeps/i386/fpu/s_remquo.S: Do not include "bp-sym.h" and
27273 "bp-asm.h".
27274 (PARMS): Do not use macros from bp-asm.h.
27275 (__remquo): Do not use BP_SYM.
27276 (remquo): Likewise.
27277 * sysdeps/i386/fpu/s_remquof.S: Do not include "bp-sym.h" and
27278 "bp-asm.h".
27279 (PARMS): Do not use macros from bp-asm.h.
27280 (__remquof): Do not use BP_SYM.
27281 (remquof): Likewise.
27282 * sysdeps/i386/fpu/s_remquol.S: Do not include "bp-sym.h" and
27283 "bp-asm.h".
27284 (PARMS): Do not use macros from bp-asm.h.
27285 (__remquol): Do not use BP_SYM.
27286 (remquol): Likewise.
27287 * sysdeps/i386/i486/strcat.S: Do not include "bp-sym.h" and
27288 "bp-asm.h".
27289 (PARMS): Do not use macros from bp-asm.h.
27290 (DEST): Likewise.
27291 (SRC): Likewise.
27292 (strcat): Remove GKM FIXME comment. Do not use BP_SYM.
27293 * sysdeps/i386/i486/strlen.S: Do not include "bp-sym.h" and
27294 "bp-asm.h".
27295 (PARMS): Do not use macros from bp-asm.h.
27296 (strlen): Do not use BP_SYM.
27297 * sysdeps/i386/i586/add_n.S: Do not include "bp-sym.h" and
27298 "bp-asm.h".
27299 (PARMS): Do not use macros from bp-asm.h.
27300 (S1): Likewise.
27301 (S2): Likewise.
27302 (SIZE): Likewise.
27303 (__mpn_add_n): Do not use BP_SYM.
27304 * sysdeps/i386/i586/addmul_1.S: Do not include "bp-sym.h" and
27305 "bp-asm.h".
27306 (PARMS): Do not use macros from bp-asm.h.
27307 (S1): Likewise.
27308 (SIZE): Likewise.
27309 (__mpn_addmul_1): Do not use BP_SYM.
27310 * sysdeps/i386/i586/bzero.S (__bzero): Do not use BP_SYM in
27311 weak_alias.
27312 (bzero): Likewise.
27313 * sysdeps/i386/i586/lshift.S: Do not include "bp-sym.h" and
27314 "bp-asm.h".
27315 (PARMS): Do not use macros from bp-asm.h.
27316 (S): Likewise.
27317 (SIZE): Likewise.
27318 (__mpn_lshift): Do not use BP_SYM.
27319 * sysdeps/i386/i586/memcpy.S: Do not include "bp-sym.h" and
27320 "bp-asm.h".
27321 (PARMS): Do not use macros from bp-asm.h.
27322 (DEST): Likewise.
27323 (SRC): Likewise.
27324 (LEN): Likewise.
27325 (memcpy): Likewise. Do not use BP_SYM.
27326 * sysdeps/i386/i586/mempcpy.S (__mempcpy): Do not use BP_SYM in
27327 libc_hidden_def and weak_alias.
27328 (mempcpy): Do not use BP_SYM in weak_alias.
27329 * sysdeps/i386/i586/memset.S: Do not include "bp-sym.h" and
27330 "bp-asm.h".
27331 (PARMS): Do not use macros from bp-asm.h.
27332 (DEST): Likewise.
27333 (LEN): Likewise.
27334 [!BZERO_P] (CHR): Likewise.
27335 (memset): Likewise. Do not use BP_SYM.
27336 * sysdeps/i386/i586/mul_1.S: Do not include "bp-sym.h" and
27337 "bp-asm.h".
27338 (PARMS): Do not use macros from bp-asm.h.
27339 (S1): Likewise.
27340 (SIZE): Likewise.
27341 (__mpn_mul_1): Do not use BP_SYM.
27342 * sysdeps/i386/i586/rshift.S: Do not include "bp-sym.h" and
27343 "bp-asm.h".
27344 (PARMS): Do not use macros from bp-asm.h.
27345 (S): Likewise.
27346 (SIZE): Likewise.
27347 (__mpn_rshift): Do not use BP_SYM.
27348 * sysdeps/i386/i586/strchr.S: Do not include "bp-sym.h" and
27349 "bp-asm.h".
27350 (PARMS): Do not use macros from bp-asm.h.
27351 (STR): Likewise.
27352 (CHR): Likewise.
27353 (strchr): Likewise. Do not use BP_SYM.
27354 (index): Do not use BP_SYM in weak_alias.
27355 * sysdeps/i386/i586/strcpy.S: Do not include "bp-sym.h" and
27356 "bp-asm.h".
27357 (PARMS): Do not use macros from bp-asm.h.
27358 (DEST): Likewise.
27359 (SRC): Likewise.
27360 (STRCPY): Likewise. Remove GKM FIXME comment. Do not use BP_SYM.
27361 * sysdeps/i386/i586/strlen.S: Do not include "bp-sym.h" and
27362 "bp-asm.h".
27363 (PARMS): Do not use macros from bp-asm.h.
27364 (strlen): Do not use BP_SYM.
27365 * sysdeps/i386/i586/sub_n.S: Do not include "bp-sym.h" and
27366 "bp-asm.h".
27367 (PARMS): Do not use macros from bp-asm.h.
27368 (S1): Likewise.
27369 (S2): Likewise.
27370 (SIZE): Likewise.
27371 (__mpn_sub_n): Do not use BP_SYM.
27372 * sysdeps/i386/i586/submul_1.S: Do not include "bp-sym.h" and
27373 "bp-asm.h".
27374 (PARMS): Do not use macros from bp-asm.h.
27375 (S1): Likewise.
27376 (SIZE): Likewise.
27377 (__mpn_submul_1): Do not use BP_SYM.
27378 * sysdeps/i386/i686/add_n.S: Do not include "bp-sym.h" and
27379 "bp-asm.h".
27380 (PARMS): Do not use macros from bp-asm.h.
27381 (S1): Likewise.
27382 (S2): Likewise.
27383 (SIZE): Likewise.
27384 (__mpn_add_n): Do not use BP_SYM.
27385 * sysdeps/i386/i686/bzero.S (__bzero): Do not use BP_SYM in
27386 weak_alias.
27387 (bzero): Likewise.
27388 * sysdeps/i386/i686/memcmp.S: Do not include "bp-sym.h" and
27389 "bp-asm.h".
27390 (PARMS): Do not use macros from bp-asm.h.
27391 (BLK2): Likewise.
27392 (LEN): Likewise.
27393 (memcmp): Do not use BP_SYM.
27394 (bcmp): Do not use BP_SYM in weak_alias.
27395 * sysdeps/i386/i686/memcpy.S: Do not include "bp-sym.h" and
27396 "bp-asm.h".
27397 (PARMS): Do not use macros from bp-asm.h.
27398 (DEST): Likewise.
27399 (SRC): Likewise.
27400 (LEN): Likewise.
27401 (memcpy): Likewise. Do not use BP_SYM.
27402 * sysdeps/i386/i686/memmove.S: Do not include "bp-sym.h" and
27403 "bp-asm.h".
27404 (PARMS): Do not use macros from bp-asm.h.
27405 (DEST): Likewise.
27406 (SRC): Likewise.
27407 (LEN): Likewise.
27408 (memmove): Likewise. Do not use BP_SYM.
27409 * sysdeps/i386/i686/mempcpy.S: Do not include "bp-sym.h" and
27410 "bp-asm.h".
27411 (PARMS): Do not use macros from bp-asm.h.
27412 (DEST): Likewise.
27413 (SRC): Likewise.
27414 (LEN): Likewise.
27415 (__mempcpy): Likewise. Do not use BP_SYM.
27416 (mempcpy): Do not use BP_SYM in weak_alias.
27417 * sysdeps/i386/i686/memset.S: Do not include "bp-sym.h" and
27418 "bp-asm.h".
27419 (PARMS): Do not use macros from bp-asm.h.
27420 (DEST): Likewise.
27421 (LEN): Likewise.
27422 [!BZERO_P] (CHR): Likewise.
27423 (memset): Likewise. Do not use BP_SYM.
27424 * sysdeps/i386/i686/strcmp.S: Do not include "bp-sym.h" and
27425 "bp-asm.h".
27426 (PARMS): Do not use macros from bp-asm.h.
27427 (STR2): Likewise.
27428 (strcmp): Do not use BP_SYM.
27429 * sysdeps/i386/i686/strtok.S: Do not include "bp-sym.h" and
27430 "bp-asm.h".
27431 (PARMS): Do not use macros from bp-asm.h.
27432 (STR): Likewise.
27433 (DELIM): Likewise.
27434 [USE_AS_STRTOK_R] (SAVE): Likewise.
27435 (FUNCTION): Likewise. Do not use BP_SYM.
27436 * sysdeps/i386/i686/strtok_r.S (__strtok_r): Do not use BP_SYM in
27437 aliases.
27438 (strtok_r): Likewise.
27439 (__GI___strtok_r): Likewise.
27440 * sysdeps/i386/lshift.S: Do not include "bp-sym.h" and "bp-asm.h".
27441 (PARMS): Do not use macros from bp-asm.h.
27442 (S): Likewise.
27443 (SIZE): Likewise.
27444 (__mpn_lshift): Do not use BP_SYM.
27445 * sysdeps/i386/memchr.S: Do not include "bp-sym.h" and "bp-asm.h".
27446 (PARMS): Do not use macros from bp-asm.h.
27447 (STR): Likewise.
27448 (CHR): Likewise.
27449 (__memchr): Do not use BP_SYM.
27450 (memchr): Do not use BP_SYM in weak_alias.
27451 * sysdeps/i386/memcmp.S: Do not include "bp-sym.h" and "bp-asm.h".
27452 (PARMS): Do not use macros from bp-asm.h.
27453 (BLK2): Likewise.
27454 (LEN): Likewise.
27455 (memcmp): Do not use BP_SYM.
27456 (bcmp): Do not use BP_SYM in weak_alias.
27457 * sysdeps/i386/mul_1.S: Do not include "bp-sym.h" and "bp-asm.h".
27458 (PARMS): Do not use macros from bp-asm.h.
27459 (S1): Likewise.
27460 (SIZE): Likewise.
27461 (__mpn_mul_1): Do not use BP_SYM.
27462 * sysdeps/i386/rawmemchr.S: Do not include "bp-sym.h" and
27463 "bp-asm.h".
27464 (PARMS): Do not use macros from bp-asm.h.
27465 (STR): Likewise.
27466 (CHR): Likewise.
27467 (__rawmemchr): Do not use BP_SYM.
27468 (rawmemchr): Do not use BP_SYM in weak_alias.
27469 * sysdeps/i386/rshift.S: Do not include "bp-sym.h" and "bp-asm.h".
27470 (PARMS): Do not use macros from bp-asm.h.
27471 (S): Likewise.
27472 (SIZE): Likewise.
27473 (__mpn_rshift): Do not use BP_SYM.
27474 * sysdeps/i386/setjmp.S: Do not include "bp-sym.h" and "bp-asm.h".
27475 (PARMS): Do not use macros from bp-asm.h.
27476 (SIGMSK): Likewise.
27477 (__sigsetjmp): Likewise. Do not use BP_SYM.
27478 * sysdeps/i386/start.S: Do not include "bp-sym.h".
27479 (_start): Do not use BP_SYM.
27480 * sysdeps/i386/stpcpy.S: Do not include "bp-sym.h" and "bp-asm.h".
27481 (PARMS): Do not use macros from bp-asm.h.
27482 (DEST): Likewise.
27483 (SRC): Likewise.
27484 (__stpcpy): Likewise. Do not use BP_SYM.
27485 (stpcpy): Do not use BP_SYM in weak_alias.
27486 * sysdeps/i386/stpncpy.S: Do not include "bp-sym.h" and
27487 "bp-asm.h".
27488 (PARMS): Do not use macros from bp-asm.h.
27489 (DEST): Likewise.
27490 (SRC): Likewise.
27491 (LEN): Likewise.
27492 (__stpncpy): Likewise. Do not use BP_SYM.
27493 (stpncpy): Do not use BP_SYM in weak_alias.
27494 * sysdeps/i386/strchr.S: Do not include "bp-sym.h" and "bp-asm.h".
27495 (PARMS): Do not use macros from bp-asm.h.
27496 (STR): Likewise.
27497 (CHR): Likewise.
27498 (strchr): Likewise. Do not use BP_SYM.
27499 * sysdeps/i386/strchrnul.S: Do not include "bp-sym.h" and
27500 "bp-asm.h".
27501 (PARMS): Do not use macros from bp-asm.h.
27502 (STR): Likewise.
27503 (CHR): Likewise.
27504 (__strchrnul): Likewise. Do not use BP_SYM.
27505 (strchrnul): Do not use BP_SYM in weak_alias.
27506 * sysdeps/i386/strcspn.S: Do not include "bp-sym.h" and
27507 "bp-asm.h".
27508 (PARMS): Do not use macros from bp-asm.h.
27509 (STOP): Likewise.
27510 (strcspn): Do not use BP_SYM.
27511 * sysdeps/i386/strpbrk.S: Do not include "bp-sym.h" and
27512 "bp-asm.h".
27513 (PARMS): Do not use macros from bp-asm.h.
27514 (STR): Likewise.
27515 (STOP): Likewise.
27516 (strpbrk): Likewise. Do not use BP_SYM.
27517 * sysdeps/i386/strrchr.S: Do not include "bp-sym.h" and
27518 "bp-asm.h".
27519 (PARMS): Do not use macros from bp-asm.h.
27520 (STR): Likewise.
27521 (CHR): Likewise.
27522 (strrchr): Likewise. Do not use BP_SYM.
27523 * sysdeps/i386/strspn.S: Do not include "bp-sym.h" and "bp-asm.h".
27524 (PARMS): Do not use macros from bp-asm.h.
27525 (SKIP): Likewise.
27526 (strspn): Do not use BP_SYM.
27527 * sysdeps/i386/strtok.S: Do not include "bp-sym.h" and "bp-asm.h".
27528 (PARMS): Do not use macros from bp-asm.h.
27529 (STR): Likewise.
27530 (DELIM): Likewise.
27531 (SAVE): Likewise.
27532 (FUNCTION): Likewise. Do not use BP_SYM.
27533 * sysdeps/i386/strtok_r.S (__strtok_r): Do not use BP_SYM in
27534 aliases.
27535 (strtok_r): Likewise.
27536 (__GI___strtok_r): Likewise.
27537 * sysdeps/i386/sub_n.S: Do not include "bp-sym.h" and "bp-asm.h".
27538 (PARMS): Do not use macros from bp-asm.h.
27539 (S1): Likewise.
27540 (S2): Likewise.
27541 (SIZE): Likewise.
27542 (__mpn_sub_n): Do not use BP_SYM.
27543 * sysdeps/i386/submul_1.S: Do not include "bp-sym.h" and
27544 "bp-asm.h".
27545 (PARMS): Do not use macros from bp-asm.h.
27546 (S1): Likewise.
27547 (SIZE): Likewise.
27548 (__mpn_submul_1): Do not use BP_SYM.
27549 * sysdeps/unix/i386/sysdep.S: Do not include <bp-asm.h> and
27550 <bp-sym.h>.
27551 * sysdeps/unix/sysv/linux/i386/clone.S: Do not include <bp-sym.h>
27552 and <bp-asm.h>.
27553 (PARMS): Do not use macros from bp-asm.h.
27554 (FLAGS): Likewise.
27555 (PTID): Likewise.
27556 (TLS): Likewise.
27557 (CTID): Likewise.
27558 (__clone): Do not use BP_SYM.
27559 (clone): Do not use BP_SYM in weak_alias.
27560 * sysdeps/unix/sysv/linux/i386/mmap64.S: Do not include <bp-sym.h>
27561 and <bp-asm.h>.
27562 (PARMS): Do not use macros from bp-asm.h.
27563 (LEN): Likewise.
27564 (__mmap64): Do not use BP_SYM.
27565 (mmap64): Do not use BP_SYM in weak_alias.
27566 * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Do not include
27567 <bp-sym.h> and <bp-asm.h>.
27568 (PARMS): Do not use macros from bp-asm.h.
27569 (__posix_fadvise64_l64): Do not use BP_SYM.
27570 * sysdeps/unix/sysv/linux/i386/semtimedop.S
27571 (PARMS): Do not use macros from bp-asm.h.
27572 (NSOPS): Likewise.
27573 (semtimedop): Do not use BP_SYM.
27574 * sysdeps/unix/sysv/linux/i386/sysdep.h: Do not include <bp-sym.h>
27575 and <bp-asm.h>.
27576
275772013-02-21 Allan McRae <allan@archlinux.org>
27578
27579 * manual/message.texi (Charset conversion in gettext):
27580 Move @end statement to beginning of line.
27581
275822013-02-21 Siddhesh Poyarekar <siddhesh@redhat.com>
27583
27584 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__inv): Mark as
27585 static.
27586 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__inv):
27587 Likewise.
27588
27589 * sysdeps/ieee754/dbl-64/mpa.c (norm): Fix whitespace.
27590 (denorm): Likewise.
27591 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (norm): Likewise.
27592 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (norm): Likewise.
27593
275942013-02-21 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
27595
27596 * sysdeps/s390/s390-32/dl-trampoline.S (_dl_runtime_profile): Do a
27597 tail-call to the resolved function if pltexit isn't needed.
27598
275992013-02-21 Siddhesh Poyarekar <siddhesh@redhat.com>
27600
27601 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Mark X
27602 or Y being zero as being unlikely.
27603 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul):
27604 Likewise.
27605
276062013-02-20 Carlos O'Donell <carlos@redhat.com>
27607
27608 * manual/nss.texi (System Databases and Name Service Switch):
27609 Remove frobnicate @pxref.
27610
276112013-02-20 Thomas Schwinge <thomas@codesourcery.com>
27612
27613 * sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
27614 __attribute__ ((unused)) to __attribute__ ((__unused__)).
27615
276162013-02-20 Petr Machata <pmachata@redhat.com>
27617
27618 * elf/elf.h (R_ARM_TARGET1): New macro.
27619 (R_ARM_SBREL31, R_ARM_V4BX, R_ARM_TARGET2): Likewise.
27620 (R_ARM_PREL31, R_ARM_MOVW_ABS_NC, R_ARM_MOVT_ABS): Likewise.
27621 (R_ARM_MOVW_PREL_NC, R_ARM_MOVT_PREL): Likewise.
27622 (R_ARM_THM_MOVW_ABS_NC, R_ARM_THM_MOVT_ABS): Likewise.
27623 (R_ARM_THM_MOVW_PREL_NC, R_ARM_THM_MOVT_PREL): Likewise.
27624 (R_ARM_THM_JUMP19, R_ARM_THM_JUMP6): Likewise.
27625 (R_ARM_THM_ALU_PREL_11_0, R_ARM_THM_PC12): Likewise.
27626 (R_ARM_ABS32_NOI, R_ARM_REL32_NOI): Likewise.
27627 (R_ARM_ALU_PC_G0_NC, R_ARM_ALU_PC_G0): Likewise.
27628 (R_ARM_ALU_PC_G1_NC, R_ARM_ALU_PC_G1): Likewise.
27629 (R_ARM_ALU_PC_G2, R_ARM_LDR_PC_G1, R_ARM_LDR_PC_G2): Likewise.
27630 (R_ARM_LDRS_PC_G0, R_ARM_LDRS_PC_G1): Likewise.
27631 (R_ARM_LDRS_PC_G2, R_ARM_LDC_PC_G0): Likewise.
27632 (R_ARM_LDC_PC_G1, R_ARM_LDC_PC_G2): Likewise.
27633 (R_ARM_ALU_SB_G0_NC, R_ARM_ALU_SB_G0): Likewise.
27634 (R_ARM_ALU_SB_G1_NC, R_ARM_ALU_SB_G1): Likewise.
27635 (R_ARM_ALU_SB_G2, R_ARM_LDR_SB_G0, R_ARM_LDR_SB_G1): Likewise.
27636 (R_ARM_LDR_SB_G2, R_ARM_LDRS_SB_G0): Likewise.
27637 (R_ARM_LDRS_SB_G1, R_ARM_LDRS_SB_G2): Likewise.
27638 (R_ARM_LDC_SB_G0, R_ARM_LDC_SB_G1, R_ARM_LDC_SB_G2): Likewise.
27639 (R_ARM_MOVW_BREL_NC, R_ARM_MOVT_BREL): Likewise.
27640 (R_ARM_MOVW_BREL, R_ARM_THM_MOVW_BREL_NC): Likewise.
27641 (R_ARM_THM_MOVT_BREL, R_ARM_THM_MOVW_BREL): Likewise.
27642 (R_ARM_PLT32_ABS, R_ARM_GOT_ABS, R_ARM_GOT_PREL): Likewise.
27643 (R_ARM_GOT_BREL12, R_ARM_GOTOFF12, R_ARM_GOTRELAX): Likewise.
27644 (R_ARM_TLS_LDO12, R_ARM_TLS_LE12, R_ARM_TLS_IE12GP): Likewise.
27645 (R_ARM_PRIVATE_0, R_ARM_PRIVATE_1, R_ARM_PRIVATE_2): Likewise.
27646 (R_ARM_PRIVATE_3, R_ARM_PRIVATE_4, R_ARM_PRIVATE_5): Likewise.
27647 (R_ARM_PRIVATE_6, R_ARM_PRIVATE_7, R_ARM_PRIVATE_8): Likewise.
27648 (R_ARM_PRIVATE_9, R_ARM_PRIVATE_10): Likewise.
27649 (R_ARM_PRIVATE_11, R_ARM_PRIVATE_12): Likewise.
27650 (R_ARM_PRIVATE_13, R_ARM_PRIVATE_14): Likewise.
27651 (R_ARM_PRIVATE_15, R_ARM_ME_TOO): Likewise.
27652 (R_ARM_THM_TLS_DESCSEQ16, R_ARM_THM_TLS_DESCSEQ32): Likewise.
27653 (R_ARM_THM_GOT_BREL12): Likewise.
27654 (R_ARM_PC24, R_ARM_PLT32): Updated a comment at this macro.
27655 (R_ARM_THM_PC11, R_ARM_THM_PC9): Likewise.
27656 (R_ARM_THM_ABS5, R_ARM_THM_PC22): Added a comment to this macro.
27657 (R_ARM_THM_PC8, R_ARM_THM_SWI8, R_ARM_XPC25): Likewise.
27658 (R_ARM_THM_XPC22, R_ARM_ALU_PCREL_7_0): Likewise.
27659 (R_ARM_ALU_PCREL_15_8, R_ARM_ALU_PCREL_23_15): Likewise.
27660 (R_ARM_LDR_SBREL_11_0, R_ARM_ALU_SBREL_19_12): Likewise.
27661 (R_ARM_ALU_SBREL_27_20, R_ARM_TLS_DESCSEQ): Likewise.
27662 (R_ARM_THM_TLS_DESCSEQ): Fixed whitespace.
27663
276642013-02-20 Thomas Schwinge <thomas@codesourcery.com>
27665
27666 * sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
27667 __attribute_used__ to __attribute__ ((unused)).
27668
276692013-02-20 Siddhesh Poyarekar <siddhesh@redhat.com>
27670
27671 * sysdeps/ieee754/dbl-64/mpa.c (__sqr): Copy over comment from
27672 powerpc mpa.c.
27673 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Fix
27674 comment formatting.
27675 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul): Likewise.
27676
276772013-02-19 Joseph Myers <joseph@codesourcery.com>
27678
27679 [BZ #13550]
27680 * sysdeps/i386/bp-asm.h [__BOUNDED_POINTERS__] (BOUNDS_VIOLATED):
27681 Remove macro.
27682 (ENTER): Remove both macro definitions.
27683 (LEAVE): Likewise.
27684 (CHECK_BOUNDS_LOW): Likewise.
27685 (CHECK_BOUNDS_HIGH): Likewise.
27686 (CHECK_BOUNDS_BOTH): Likewise.
27687 (CHECK_BOUNDS_BOTH_WIDE): Likewise.
27688 (RETURN_BOUNDED_POINTER): Likewise.
27689 (RETURN_NULL_BOUNDED_POINTER): Likewise.
27690 (PUSH_ERRNO_LOCATION_RETURN): Likewise.
27691 (POP_ERRNO_LOCATION_RETURN): Likewise.
27692 * sysdeps/i386/add_n.S (__mpn_add_n): Do not use removed macros.
27693 (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
27694 * sysdeps/i386/addmul_1.S (__mpn_addmul_1): Do not use removed
27695 macros.
27696 (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
27697 * sysdeps/i386/bsd-_setjmp.S (_setjmp): Do not use removed macros.
27698 * sysdeps/i386/bsd-setjmp.S (setjmp): Likewise.
27699 * sysdeps/i386/fpu/s_frexp.S (__frexp): Likewise.
27700 * sysdeps/i386/fpu/s_frexpf.S (__frexpf): Likewise.
27701 * sysdeps/i386/fpu/s_frexpl.S (__frexpl): Likewise.
27702 * sysdeps/i386/fpu/s_remquo.S (__remquo): Likewise.
27703 * sysdeps/i386/fpu/s_remquof.S (__remquof): Likewise.
27704 * sysdeps/i386/fpu/s_remquol.S (__remquol): Likewise.
27705 * sysdeps/i386/i486/strcat.S (strcat): Likewise.
27706 * sysdeps/i386/i486/strlen.S (strlen): Likewise.
27707 * sysdeps/i386/i586/add_n.S (__mpn_add_n): Likewise.
27708 (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
27709 * sysdeps/i386/i586/addmul_1.S (__mpn_addmul_1): Do not use
27710 removed macros.
27711 (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
27712 * sysdeps/i386/i586/lshift.S (__mpn_lshift): Do not use removed
27713 macros.
27714 (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
27715 * sysdeps/i386/i586/memcpy.S (memcpy): Do not use removed macros.
27716 * sysdeps/i386/i586/memset.S (memset): Likewise.
27717 * sysdeps/i386/i586/mul_1.S (__mpn_mul_1): Likewise.
27718 (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
27719 * sysdeps/i386/i586/rshift.S (__mpn_rshift): Do not use removed
27720 macros.
27721 (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
27722 * sysdeps/i386/i586/strchr.S (strchr): Do not use removed macros.
27723 Change uses of L(2) to L(out).
27724 * sysdeps/i386/i586/strcpy.S (STRCPY): Do not use removed macros.
27725 * sysdeps/i386/i586/strlen.S (strlen): Likewise.
27726 * sysdeps/i386/i586/sub_n.S (__mpn_sub_n): Likewise.
27727 (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
27728 * sysdeps/i386/i586/submul_1.S (__mpn_submul_1): Do not use
27729 removed macros.
27730 (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
27731 * sysdeps/i386/i686/add_n.S (__mpn_add_n): Do not use removed
27732 macros.
27733 (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
27734 * sysdeps/i386/i686/memcmp.S (ENTRANCE): Do not use macro ENTER.
27735 (RETURN): Do not use macro LEAVE.
27736 * sysdeps/i386/i686/memcpy.S (memcpy): Do not use removed macros.
27737 * sysdeps/i386/i686/memmove.S (memmove): Likewise.
27738 * sysdeps/i386/i686/mempcpy.S (mempcpy): Likewise.
27739 * sysdeps/i386/i686/memset.S (memset): Likewise.
27740 * sysdeps/i386/i686/strcmp.S (strcmp): Likewise.
27741 (strcmp) [!__BOUNDED_POINTERS__]: Make code unconditional.
27742 (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
27743 * sysdeps/i386/i686/strtok.S (save_ptr) [__BOUNDED_POINTERS__]:
27744 Likewise.
27745 (save_ptr) [!__BOUNDED_POINTERS__]: Make code unconditional.
27746 (FUNCTION): Do not use removed macros. Combine labels L(1_1),
27747 L(1_2) and L(1_3) into L(1).
27748 (FUNCTION) [__BOUNDED_POINTERS__]: Remove conditional code.
27749 * sysdeps/i386/lshift.S (__mpn_lshift): Do not use removed macros.
27750 (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
27751 * sysdeps/i386/memchr.S (__memchr): Do not use removed macros.
27752 (__memchr) [__BOUNDED_POINTERS__]: Remove conditional code.
27753 * sysdeps/i386/memcmp.S (memcmp): Do not use removed macros.
27754 * sysdeps/i386/mul_1.S (__mpn_mul_1): Likewise.
27755 (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
27756 * sysdeps/i386/rawmemchr.S (__rawmemchr): Do not use removed
27757 macros.
27758 * sysdeps/i386/rshift.S (__mpn_rshift): Likewise.
27759 (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
27760 * sysdeps/i386/setjmp.S (__sigsetjmp): Do not use removed macros.
27761 * sysdeps/i386/stpcpy.S (__stpcpy): Likewise.
27762 * sysdeps/i386/stpncpy.S (__stpncpy): Likewise.
27763 (__stpncpy) [__BOUNDED_POINTERS__]: Remove conditional code.
27764 * sysdeps/i386/strchr.S (strchr): Do not use removed macros.
27765 * sysdeps/i386/strchrnul.S (__strchrnul): Likewise.
27766 * sysdeps/i386/strcspn.S (strcspn): Likewise.
27767 * sysdeps/i386/strpbrk.S (strpbrk): Likewise.
27768 * sysdeps/i386/strrchr.S (strrchr): Likewise.
27769 * sysdeps/i386/strspn.S (strspn): Likewise.
27770 * sysdeps/i386/strtok.S (save_ptr) [__BOUNDED_POINTERS__]: Remove
27771 conditional code.
27772 (save_ptr) [!__BOUNDED_POINTERS__]: Make code unconditional.
27773 (FUNCTION) [!__BOUNDED_POINTERS__]: Likewise.
27774 (FUNCTION) [__BOUNDED_POINTERS__]: Remove conditional code.
27775 (FUNCTION): Do not use removed macros. Combine labels L(1_2) and
27776 L(1_3) into L(1_1).
27777 * sysdeps/i386/sub_n.S (__mpn_sub_n): Do not use removed macros.
27778 (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
27779 * sysdeps/i386/submul_1.S (__mpn_submul_1): Do not use removed
27780 macros.
27781 (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
27782
277832013-02-19 Jakub Jelinek <jakub@redhat.com>
27784
27785 * stdlib/strtod_l.c (__mpn_lshift_1): Rewritten as function-like
27786 macro.
27787
277882013-02-19 Siddhesh Poyarekar <siddhesh@redhat.com>
27789
27790 * math/atest-exp.c (exp_mpn): Remove ROUND.
27791 * math/atest-exp2.c (exp_mpn): Likewise.
27792 * math/atest-sincos.c (sincosx_mpn): Remove ROUND and CHK.
27793
27794 * stdlib/cxa_thread_atexit_impl.c: Fix Copyright year.
27795 * stdlib/tst-tls-atexit-lib.c: Likewise.
27796 * stdlib/tst-tls-atexit.c: Likewise.
27797
277982013-02-18 Mike Frysinger <vapier@gentoo.org>
27799
27800 * stdlib/stdlib.h (aligned_alloc): Use __attribute_malloc__
27801 and __attribute_alloc_size__.
27802
278032013-02-18 Mike Frysinger <vapier@gentoo.org>
27804
27805 * include/programs/xmalloc.h: Change __attribute_alloc_size to
27806 __attribute_alloc_size__.
27807 * include/sys/cdefs.h (__attribute_alloc_size): Macro removed.
27808 * misc/sys/cdefs.h (__attribute_alloc_size__): New macro.
27809
278102013-02-18 Mike Frysinger <vapier@gentoo.org>
27811
27812 * include/programs/xmalloc.h: New file.
27813 * catgets/gencat.c: Include it.
27814 (xmalloc, xcalloc, xrealloc, xstrdup): Don't declare them.
27815 * elf/pldd.c: Likewise.
27816 * iconv/iconv_charmap.c: Likewise.
27817 * iconv/iconvconfig.c: Likewise.
27818 * iconv/strtab.c: Likewise.
27819 * locale/programs/locale.c: Likewise.
27820 * locale/programs/localedef.h: Likewise.
27821 * locale/programs/simple-hash.c: Likewise.
27822 * nscd/nscd.h: Likewise.
27823 * nss/makedb.c: Likewise.
27824 * sysdeps/generic/ldconfig.h: Likewise.
27825
278262013-02-18 Siddhesh Poyarekar <siddhesh@redhat.com>
27827
27828 * Versions.def: Add GLIBC_2.18.
27829 * include/link.h (struct link_map): New member l_tls_dtor_count.
27830 * include/stdlib.h (__cxa_thread_atexit_impl): Declare.
27831 (__call_tls_dtors): Likewise.
27832 * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Add
27833 __cxa_thread_atexit_impl.
27834 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
27835 Likewise.
27836 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
27837 Likewise.
27838 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
27839 Likewise.
27840 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
27841 Likewise.
27842 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
27843 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist:
27844 Likewise.
27845 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist:
27846 Likewise.
27847 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
27848 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist:
27849 Likewise.
27850 * stdlib/Makefile (routines): Add __cxa_thread_atexit_impl.
27851 (tests): Add test case tst-tls-atexit.
27852 (modules-names): Add shared library for tst-tls-atexit.
27853 * stdlib/Versions (GLIBC_2.18): Add __cxa_thread_atexit_impl.
27854 (GLIBC_PRIVATE): Add __call_tls_dtors.
27855 * stdlib/cxa_thread_atexit_impl.c: New file with helper function
27856 for libstdc++.
27857 * stdlib/exit.c (__run_exit_handlers): Call __call_tls_dtors.
27858 * stdlib/tst-tls-atexit.c: New test case.
27859 * stdlib/tst-tls-atexit-lib.c: New test case.
27860
27861 * misc/tst-pselect.c: Include stdlib.h for declaration of exit.
27862
27863 * elf/Versions (ld): Add _dl_find_dso_for_object.
27864 * elf/dl-addr.c (_dl_addr): Use _dl_find_dso_for_object.
27865 * elf/dl-open.c (_dl_find_dso_for_object): New function.
27866 (dl_open_worker): Use _dl_find_dso_for_object.
27867 * elf/dl-sym.c (do_sym): Likewise.
27868 * sysdeps/generic/ldsodefs.h: Declare _dl_find_dso_for_object.
27869
278702013-02-18 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
27871
27872 * sysdeps/s390/s390-64/dl-trampoline.S (_dl_runtime_resolve):
27873 Syntactic changes only.
27874 (_dl_runtime_profile): Do a tail-call to the resolved function.
27875
278762013-02-17 Joseph Myers <joseph@codesourcery.com>
27877
27878 [BZ #13550]
27879 * sysdeps/x86_64/bp-asm.h: Remove file.
27880 * sysdeps/unix/sysv/linux/x86_64/clone.S: Do not include
27881 <bp-sym.h> and <bp-asm.h>.
27882 (__clone): Do not use BP_SYM.
27883 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Do not include
27884 <bp-sym.h> and <bp-asm.h>.
27885 * sysdeps/unix/x86_64/sysdep.S: Likewise.
27886 * sysdeps/x86_64/bsd-_setjmp.S: Do not include "bp-sym.h" and
27887 "bp-asm.h".
27888 (_setjmp): Do not use BP_SYM.
27889 * sysdeps/x86_64/bsd-setjmp.S: Do not include "bp-sym.h" and
27890 "bp-asm.h".
27891 (setjmp): Do not use BP_SYM.
27892 * sysdeps/x86_64/mempcpy.S (__mempcpy): Do not use BP_SYM in
27893 libc_hidden_def.
27894 (mempcpy): Do not use BP_SYM in weak_alias.
27895 * sysdeps/x86_64/rtld-strchr.S: Do not include "bp-sym.h" and
27896 "bp-asm.h".
27897 (strchr): Do not use BP_SYM.
27898 * sysdeps/x86_64/rtld-strlen.S: Do not include "bp-sym.h" and
27899 "bp-asm.h".
27900 * sysdeps/x86_64/setjmp.S (__sigsetjmp): Do not use BP_SYM.
27901 * sysdeps/x86_64/start.S: Do not include "bp-sym.h".
27902 (_start): Do not use BP_SYM.
27903 * sysdeps/x86_64/strcat.S: Do not include "bp-sym.h" and
27904 "bp-asm.h".
27905 (strcat): Do not use BP_SYM.
27906 * sysdeps/x86_64/strcmp.S: Do not include "bp-sym.h" and
27907 "bp-asm.h".
27908 (STRCMP): Do not use BP_SYM.
27909 * sysdeps/x86_64/strcpy.S: Do not include "bp-sym.h" and
27910 "bp-asm.h".
27911 (STRCPY): Do not use BP_SYM.
27912 * sysdeps/x86_64/strcpy_chk.S: Do not include "bp-sym.h" and
27913 "bp-asm.h".
27914 * sysdeps/x86_64/strtok.S: Do not include "bp-sym.h" and
27915 "bp-asm.h".
27916 (FUNCTION): Do not use BP_SYM.
27917 * sysdeps/x86_64/strtok_r.S (strtok_r): Do not use BP_SYM in
27918 weak_alias.
27919 (__GI___strtok_r): Do not use BP_SYM in strong_alias.
27920
279212013-02-17 Andreas Jaeger <aj@suse.de>
27922
27923 * time/Versions: Sort entries.
27924 * string/Versions: Likewise.
27925 * resolv/Versions: Likewise.
27926 * posix/Versions: Likewise.
27927 * iconv/Versions: Likewise.
27928 * elf/Versions: Likewise.
27929 * wcsmbs/Versions: Likewise.
27930
279312013-02-15 Siddhesh Poyarekar <siddhesh@redhat.com>
27932
27933 * sysdeps/ieee754/dbl-64/mpa.c (__sqr): Avoid using LIM in
27934 loop termination condition.
27935
27936 * sysdeps/ieee754/dbl-64/mpa.c (__mul): Use intermediate
27937 variable to calculate EZ.
27938 (__sqr): Likewise.
27939
27940 * sysdeps/ieee754/dbl-64/mpa.c (__mul): Fix determination of
27941 the lower precision input.
27942
279432013-02-15 Joseph Myers <joseph@codesourcery.com>
27944
27945 [BZ #13550]
27946 * Makeconfig [!+link-bounded] (+link-bounded): Remove variable.
27947 [!link-extra-libs] (link-extra-libs-bounded): Likewise.
27948 (run-via-rtld-prefix): Do not handle %-bp tests.
27949 (test-via-rtld-prefix): Do not mention %-bp tests in comment.
27950 (all-object-suffixes): Remove .ob.
27951 (bppfx): Remove variable.
27952 [$(build-bounded) = yes] (object-suffixes): Do not add .ob.
27953 [$(build-bounded) = yes] (CPPFLAGS-.ob): Remove variable.
27954 [$(build-bounded) = yes] (CFLAGS-.ob): Likewise.
27955 [$(build-bounded) = yes] (libtype.ob): Likewise.
27956 * Makerules (elide-routines.ob): Remove variable.
27957 (do-tests-clean): Do not handle *-bp.out.
27958 (common-mostlyclean): Do not handle *-bp and *-bp.out.
27959 * Rules [$(build-bounded) = yes] (tests-bp.out): Remove variable.
27960 [$(build-bounded) = yes] (xtests-bp.out): Likewise.
27961 (tests): Do not include $(tests-bp.out).
27962 (xtests): Do not include $(xtests-bp.out).
27963 [$(build-bounded) = yes] (binaries-bounded): Remove variable.
27964 [$(build-bounded) = yes] ($(addprefix
27965 $(objpfx),$(binaries-bounded))): Remove rule.
27966 ($(objpfx)%-bp.out): Remove rule.
27967 * config.make.in (build-bounded): Remove variable.
27968 * crypt/Makefile [$(build-bounded) = yes]
27969 ($(tests:%=$(objpfx)%-bp)): Remove dependency.
27970 * csu/Makefile [$(build-bounded) = yes] (extra-objs): Do not
27971 append to variable.
27972 [$(build-bounded) = yes] (install-lib): Likewise.
27973 [$(build-bounded) = yes] (generated): Likewise.
27974 [!start-installed-name-rule] ($(objpfx)b$(start-installed-name)):
27975 Remove rule.
27976 * intl/Makefile [$(build-bounded) = yes]
27977 ($(multithread-test-srcs:%=$(objpfx)%-bp)): Remove dependency.
27978 * math/Makefile [$(build-bounded) = yes]
27979 ($(tests:%=$(objpfx)%-bp): Likewise.
27980 * misc/Makefile [$(build-bounded) = yes]
27981 ($(objpfx)tst-tsearch-bp): Likewise.
27982 * nptl/Makeconfig (bounded-thread-library): Remove variable.
27983 * rt/Makefile [$(build-bounded) = yes] ($(tests:%=$(objpfx)%-bp)):
27984 Remove dependency.
27985 * string/Makefile (o-objects.ob): Remove variable.
27986 * sysdeps/i386/i686/Makefile [$(config-asflags-i686) = yes]
27987 (CFLAGS-.ob): Remove variable.
27988 [$(config-asflags-i686) = yes] (ASFLAGS-.ob): Likewise.
27989 * sysdeps/sparc/sparc32/sparcv9/Makefile (ASFLAGS-.ob): Remove
27990 both definitions of variable.
27991 * sysdeps/sparc/sparc64/Makefile [$(have-as-vis3) = yes]
27992 (ASFLAGS-.ob): Remove variable.
27993
279942013-02-14 Joseph Myers <joseph@codesourcery.com>
27995
27996 [BZ #13550]
27997 * config.h.in [USE_REGPARMS && !PROF && !__BOUNDED_POINTERS__]:
27998 Remove __BOUNDED_POINTERS__ from condition.
27999 * elf/dl-runtime.c [!PROF && !__BOUNDED_POINTERS__]: Likewise.
28000 * string/bits/string2.h [!__NO_STRING_INLINES &&
28001 !__BOUNDED_POINTERS__]: Likewise.
28002 * sysdeps/i386/dl-machine.h [!PROF && !__BOUNDED_POINTERS__]:
28003 Likewise.
28004 * sysdeps/unix/sysv/linux/shmat.c (shmat) [__BOUNDED_POINTERS__]:
28005 Remove conditional code.
28006 * sysdeps/x86/bits/string.h [!__NO_STRING_INLINES &&
28007 __USE_STRING_INLINES && __GNUC__ && __GNUC__ >= 2 &&
28008 !__BOUNDED_POINTERS__]: Remove __BOUNDED_POINTERS__ from
28009 condition.
28010
28011 [BZ #13550]
28012 * csu/libc-start.c: Do not include <bp-sym.h>.
28013 [!LIBC_START_MAIN] (LIBC_START_MAIN): Do not use BP_SYM.
28014 * elf/dl-open.c: Do not include <bp-sym.h>.
28015 (_dl_sysdep_start): Do not use BP_SYM in weak_extern.
28016 * math/fegetenv.c: Do not include <bp-sym.h>.
28017 (fegetenv): Do not use BP_SYM in versioned symbols.
28018 * nptl/sysdeps/pthread/bits/libc-lockP.h
28019 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]: Do not include
28020 <bp-sym.h>.
28021 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28022 (__pthread_mutex_init): Do not use BP_SYM in weak_extern.
28023 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28024 (__pthread_mutex_destroy): Likewise.
28025 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28026 (__pthread_mutex_lock): Likewise.
28027 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28028 (__pthread_mutex_trylock): Likewise.
28029 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28030 (__pthread_mutex_unlock): Likewise.
28031 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28032 (__pthread_mutexattr_init): Likewise.
28033 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28034 (__pthread_mutexattr_destroy): Likewise.
28035 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28036 (__pthread_mutexattr_settype): Likewise.
28037 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28038 (__pthread_rwlock_init): Likewise.
28039 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28040 (__pthread_rwlock_destroy): Likewise.
28041 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28042 (__pthread_rwlock_rdlock): Likewise.
28043 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28044 (__pthread_rwlock_tryrdlock): Likewise.
28045 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28046 (__pthread_rwlock_wrlock): Likewise.
28047 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28048 (__pthread_rwlock_trywrlock): Likewise.
28049 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28050 (__pthread_rwlock_unlock): Likewise.
28051 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28052 (__pthread_key_create): Likewise.
28053 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28054 (__pthread_setspecific): Likewise.
28055 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28056 (__pthread_getspecific): Likewise.
28057 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern] (__pthread_once):
28058 Likewise.
28059 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28060 (_pthread_cleanup_push_defer): Likewise.
28061 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28062 (_pthread_cleanup_pop_restore): Likewise.
28063 [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
28064 (pthread_setcancelstate): Likewise.
28065 * string/memchr.c [HAVE_BP_SYM_H || _LIBC]: Do not include
28066 <bp-sym.h>.
28067 [!(HAVE_BP_SYM_H || _LIBC)] (BP_SYM): Remove macro definition.
28068 (memchr): Do not use BP_SYM in weak_alias.
28069 * sysdeps/i386/fpu/fegetenv.c: Do not include <bp-sym.h>.
28070 (fegetenv): Do not use BP_SYM in versioned symbols.
28071 * sysdeps/i386/fpu/fesetenv.c: Do not include <bp-sym.h>.
28072 (fesetenv): Do not use BP_SYM in versioned symbols.
28073 * sysdeps/i386/fpu/feupdateenv.c: Do not include <bp-sym.h>.
28074 (feupdateenv): Do not use BP_SYM in versioned symbols.
28075 * sysdeps/i386/fpu/fsetexcptflg.c: Do not include <bp-sym.h>.
28076 (fesetexceptflag): Do not use BP_SYM in versioned symbols.
28077 * sysdeps/posix/open64.c: Do not include <bp-sym.h>.
28078 (__open64): Do not use BP_SYM in weak_alias and libc_hidden_weak.
28079 (open64): Do not use BP_SYM in weak_alias.
28080 * sysdeps/powerpc/fpu/fegetenv.c: Do not include <bp-sym.h>.
28081 (fegetenv): Do not use BP_SYM in versioned symbols.
28082 * sysdeps/powerpc/fpu/fesetenv.c: Do not include <bp-sym.h>.
28083 (fesetenv): Do not use BP_SYM in versioned symbols.
28084 * sysdeps/powerpc/fpu/feupdateenv.c: Do not include <bp-sym.h>.
28085 (feupdateenv): Do not use BP_SYM in versioned symbols.
28086 * sysdeps/powerpc/fpu/fgetexcptflg.c: Do not include <bp-sym.h>.
28087 (fegetexceptflag): Do not use BP_SYM in versioned symbols.
28088 * sysdeps/powerpc/fpu/fraiseexcpt.c: Do not include <bp-sym.h>.
28089 (feraiseexcept): Do not use BP_SYM in versioned symbols.
28090 * sysdeps/powerpc/fpu/fsetexcptflg.c: Do not include <bp-sym.h>.
28091 (fesetexceptflag): Do not use BP_SYM in versioned symbols.
28092 * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Do not include
28093 <bp-sym.h>.
28094 (__libc_start_main): Do not use BP_SYM.
28095
280962013-02-14 Siddhesh Poyarekar <siddhesh@redhat.com>
28097
28098 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__cpy): Remove
28099 redundant return line.
28100 (norm): Likewise.
28101 (denorm): Likewise.
28102 (dbl_mp): Likewise.
28103 (sub_magnitudes): Likewise.
28104 (__add): Likewise.
28105 (__sub): Likewise.
28106 (__mul): Likewise.
28107 (__inv): Likewise.
28108 (__dvd): Likewise.
28109 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__cpy): Likewise.
28110 (norm): Likewise.
28111 (denorm): Likewise.
28112 (dbl_mp): Likewise.
28113 (sub_magnitudes): Likewise.
28114 (__add): Likewise.
28115 (__sub): Likewise.
28116 (__mul): Likewise.
28117 (__inv): Likewise.
28118 (__dvd): Likewise.
28119
28120 * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Use __sqr
28121 instead of __mul.
28122 * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Likewise.
28123 * sysdeps/ieee754/dbl-64/sincos32.c (ss32): Likewise.
28124 (cc32): Likewise.
28125
28126 * sysdeps/ieee754/dbl-64/mpa.c (__sqr): New function.
28127 * sysdeps/ieee754/dbl-64/mpa.h (__sqr): Declare.
28128 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): use __sqr instead
28129 of __mul for squares.
28130 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__sqr): New
28131 function
28132 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__sqr):
28133 Likewise.
28134 * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: Define __sqr.
28135 * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
28136
281372013-02-13 Joseph Myers <joseph@codesourcery.com>
28138
28139 [BZ #13550]
28140 * misc/sys/cdefs.h [!__BOUNDED_POINTERS__]: Remove conditional
28141 code.
28142 * csu/libc-start.c (LIBC_START_MAIN): Do not use __unbounded in
28143 prototype or function definition. Rename ubp_* variables and
28144 parameters. Remove argv definitions conditional on
28145 [__BOUNDED_POINTERS__].
28146 * debug/backtrace.c (__backtrace): Do not use __unbounded.
28147 * elf/dl-runtime.c (_dl_fixup): Likewise.
28148 * include/set-hooks.h (RUN_HOOK): Likewise.
28149 * stdio-common/vfprintf.c (JUMP): Do not use __unbounded in either
28150 definition.
28151 * string/strcpy.c (strcpy): Do not use __unbounded.
28152 * sysdeps/generic/frame.h (struct layout): Likewise.
28153 * sysdeps/gnu/bits/msq.h (struct msqid_ds): Likewise.
28154 * sysdeps/i386/dl-machine.h (_dl_fixup): Likewise.
28155 * sysdeps/powerpc/powerpc32/backtrace.c (struct layout): Likewise.
28156 * sysdeps/powerpc/powerpc64/backtrace.c (struct layout): Likewise.
28157 * sysdeps/sparc/backtrace.c (struct layout): Likewise.
28158 (__backtrace): Likewise.
28159 * sysdeps/unix/sysv/linux/aio_sigqueue.c (__aio_sigqueue): Do not
28160 use __ptrvalue.
28161 * sysdeps/unix/sysv/linux/fxstat.c (__fxstat): Likewise.
28162 * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Likewise.
28163 * sysdeps/unix/sysv/linux/gai_sigqueue.c (__gai_sigqueue):
28164 Likewise.
28165 * sysdeps/unix/sysv/linux/i386/brk.c (__brk): Likewise.
28166 * sysdeps/unix/sysv/linux/i386/fxstat.c (__fxstat): Likewise.
28167 * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise.
28168 * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
28169 * sysdeps/unix/sysv/linux/i386/msgctl.c (struct __old_msqid_ds):
28170 Do not use __unbounded.
28171 * sysdeps/unix/sysv/linux/i386/setrlimit.c (__new_setrlimit):
28172 Rename __unboundedrlimits parameter to rlimits in prototype.
28173 * sysdeps/unix/sysv/linux/i386/shmctl.c (struct __old_shmid_ds):
28174 Do not use __unbounded.
28175 * sysdeps/unix/sysv/linux/i386/sigaction.c (__libc_sigaction): Do
28176 not use __ptrvalue.
28177 * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
28178 * sysdeps/unix/sysv/linux/llseek.c (__llseek): Likewise.
28179 * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
28180 * sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Do not use
28181 __ptrvalue or __unbounded.
28182 (__mmap64) [__BOUNDED_POINTERS__]: Remove conditional code.
28183 * sysdeps/unix/sysv/linux/msgctl.c (struct __old_msqid_ds): Do not
28184 use __unbounded.
28185 (__new_msgctl): Do not use __ptrvalue.
28186 * sysdeps/unix/sysv/linux/msgrcv.c (struct ipc_kludge): Do not use
28187 __unbounded.
28188 (__libc_msgrcv): Do not use __ptrvalue.
28189 * sysdeps/unix/sysv/linux/powerpc/libc-start.c (struct
28190 startup_info): Do not use __unbounded.
28191 (__libc_start_main): Likewise. Rename ubp_* variables and
28192 parameters. Remove argv definitions conditional on
28193 [__BOUNDED_POINTERS__].
28194 * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Do not use
28195 __ptrvalue.
28196 * sysdeps/unix/sysv/linux/semctl.c (struct __old_semid_ds): Do not
28197 use __unbounded.
28198 * sysdeps/unix/sysv/linux/shmat.c (shmat): Do not use __unbounded
28199 or __ptrvalue.
28200 * sysdeps/unix/sysv/linux/shmctl.c (struct __old_shmid_ds): Do not
28201 use __unbounded.
28202 (__new_shmctl): Do not use __ptrvalue.
28203 * sysdeps/unix/sysv/linux/shmdt.c (shmdt): Likewise.
28204 * sysdeps/unix/sysv/linux/sigaction.c (__libc_sigaction):
28205 Likewise.
28206 * sysdeps/unix/sysv/linux/sigqueue.c (__sigqueue): Likewise.
28207 * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c
28208 (__libc_sigaction): Likewise.
28209 * sysdeps/unix/sysv/linux/sysctl.c (__sysctl): Likewise.
28210 * sysdeps/unix/sysv/linux/x86_64/sigaction.c (__libc_sigaction):
28211 Likewise.
28212 * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
28213
282142013-02-13 Ondřej Bílka <neleai@seznam.cz>
28215
28216 * stdlib/Makefile (headers): Add bits/stdlib-bsearch.h.
28217
28218 * string/mempcpy.c: Implement by calling memcpy.
28219
282202013-02-13 Siddhesh Poyarekar <siddhesh@redhat.com>
28221
28222 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove NFA.
28223
28224 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Faster polynomial
28225 evaluation.
28226
28227 * sysdeps/ieee754/dbl-64/mpa.c (__mul): Don't bother with zero
28228 values in the mantissa.
28229
28230 * sysdeps/ieee754/dbl-64/mpa.c (add_magnitudes): Use ZK to
28231 minimize writes to Z.
28232 (sub_magnitudes): Simplify code a bit.
28233
282342013-02-12 Roland McGrath <roland@hack.frob.com>
28235
28236 * include/libc-symbols.h (stub_warning): Remove "warning: " prefix
28237 from the message. The linker prefixes all warnings with that already.
28238
282392013-02-12 Andreas Schwab <schwab@suse.de>
28240
28241 [BZ #15078]
28242 * posix/regexec.c (extend_buffers): Add parameter min_len.
28243 (check_matching): Pass minimum needed length.
28244 (clean_state_log_if_needed): Likewise.
28245 (get_subexp): Likewise.
28246 * posix/Makefile (tests): Add bug-regex34.
28247 (bug-regex34-ENV): Define.
28248 * posix/bug-regex34.c: New file.
28249
28250 [BZ #11561]
28251 * posix/regcomp.c (parse_bracket_exp): When looking up collating
28252 elements compare against the byte sequence of it, not its name.
28253 * posix/Makefile (tests): Add bug-regex35.
28254 (bug-regex35-ENV): Define.
28255 * posix/bug-regex35.c: New file.
28256
282572013-02-11 Tom de Vries <tom@codesourcery.com>
28258
28259 * string/str-two-way.h: Fix typo RESULT_TYPE -> RETURN_TYPE in
28260 comment.
28261 Add RET0_IF_0 and CHECK_EOL to macro list in comment.
28262 (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J): Remove superfluous undef.
28263 (CHECK_EOL): Add undef.
28264
282652013-02-11 Ondřej Bílka <neleai@seznam.cz>
28266
28267 * bits/stdlib-bsearch.h: New file.
28268 * stdlib/bsearch.c: Include bits/stdlib-bsearch.h.
28269 * stdlib/stdlib.h: Likewise.
28270
282712013-02-11 Roland McGrath <roland@hack.frob.com>
28272
28273 * manual/conf.texi (General Limits): Fix SSIZE_MAX type to ssize_t.
28274 * manual/errno.texi (Error Messages): Fix typo in error_print_progname
28275 declaration.
28276 * manual/search.texi (Array Search Function): Add missing const in
28277 lfind prototype.
28278 * manual/resource.texi (Limits on Resources): Fix RLIM_INFINITY
28279 declaration to use rlim_t.
28280 (Basic Scheduling Functions): Remove erroneous const from
28281 sched_getparam prototype. Remove erroneous * from
28282 sched_get_priority_max and sched_get_priority_min prototypes.
28283 (Resource Usage): Fix summary @comment on vtimes to refer to
28284 sys/vtimes.h rather than vtimes.h.
28285 Add missing *s in vtimes prototype.
28286 (Limits on Resources): Fix ulimit prototype to return long int.
28287 * manual/math.texi (SVID Random): Fix lrand48_r and mrand48_r
28288 prototypes to use long int rather than double.
28289 (BSD Random): Fix initstate and setstate to use char *, not void *.
28290 * manual/llio.texi (Asynchronous Reads/Writes): Fix lio_listio64
28291 prototype to make second argument 'struct aiocb64 *const[]'.
28292 Fix aio_read64 and aio_write64 prototypes to use struct aiocb64.
28293 (Status of AIO Operations): Remove erroneous const in aio_return and
28294 aio_return64 prototypes.
28295 (Synchronizing I/O): Fix sync prototype to return void.
28296 * manual/startup.texi (Suboptions): Remove an erroneous const in
28297 getsubopt prototype.
28298 * manual/getopt.texi (Using Getopt): Add a const in getopt prototype.
28299 * manual/users.texi (Lookup Netgroup): Fix getnetgrent_r prototype to
28300 use size_t rather than int.
28301 (Scanning All Users): Likewise for getpwent_r.
28302 (Setting Groups): Add missing const to setgroups prototype.
28303 * manual/sysinfo.texi (mtab): Fix typo in getmntent_r prototype.
28304 * manual/socket.texi (Host Names): Fix gethostbyaddr and
28305 gethostbyaddr_r prototypes to use socklen_t rather than size_t and
28306 'const void *' rather than 'const char *'.
28307 (Host Address Functions): Likewise for inet_ntop.
28308 (Networks Database): Fix getnetbyaddr prototype to use uint32_t.
28309 (Receiving Data): Fix recv, recvfrom, recvmsg prototypes to use
28310 ssize_t for return value.
28311 (Sending Data): Likewise for send, sendto, sendmsg.
28312 (Socket Option Functions): Add a missing const in setsockopt prototype.
28313 * manual/stdio.texi (Simple Output): Fix fputwc_unlocked prototype to
28314 use wchar_t for the argument.
28315 (Formatted Input Functions): Fix swscanf prototype to use wchar_t *.
28316 * manual/arith.texi (Control Functions): Fix fegetexcept prototype to
28317 take no arguments.
28318 (Normalization Functions): Fix scalb, scalbf, scalbl prototypes to use
28319 double/float/long double for second argument.
28320 Fix return types of significand, significandf, significandl.
28321 * manual/filesys.texi (Setting Permissions): Use mode_t for second
28322 argument in fchmod prototype.
28323 (File Owner): Use uid_t and gid_t in fchown prototype.
28324 (File Times): Add const to utimes, futimes, and lutimes prototypes.
28325 (Making Special Files): Use mode_t and dev_t in mknod prototype.
28326 (Scanning Directory Content): Fix scandir and scandir64 prototypes to
28327 use 'const struct dirent **' as argument types to CMP function pointer
28328 argument.
28329 (Symbolic Links): Fix readlink prototype with ssize_t as return value.
28330 (File Times): Fix summary magic @comment for struct utimbuf and utime
28331 to refer to utime.h, not time.h.
28332 * manual/string.texi (Argz Functions): Add missing const in
28333 argz_extract and argz_next prototypes.
28334 (Finding Tokens in a String): Likewise for basename.
28335 (String/Array Comparison): Fix typo in wcscasecmp prototype.
28336 (Copying and Concatenation): Fix typo in wmemmove prototype.
28337 * manual/signal.texi (Using Pause): Use (void) in pause prototype.
28338 (Signal Stack): Remove erroneous const in sigstack prototype.
28339 * manual/time.texi (Setting an Alarm): Add missing const in setitimer
28340 prototype.
28341 (Simple Calendar Time): Likewise for stime.
28342 * manual/terminal.texi (BSD Terminal Modes): Add missing const in stty
28343 prototype.
28344 * manual/sysinfo.texi (System Parameters): Fix mentions of sysctl.h to
28345 say sys/sysctl.h instead.
28346 * manual/syslog.texi (syslog; vsyslog): Add missing const in syslog
28347 and vsyslog prototypes.
28348
283492013-02-11 Tom de Vries <tom@codesourcery.com>
28350
28351 * string/Makefile (CFLAGS-bug-strstr1.c, CFLAGS-bug-strcasestr1.c):
28352 Remove.
28353
283542013-02-11 Roland McGrath <roland@hack.frob.com>
28355
28356 * misc/sys/mman.h: Fix typo in mremap comment.
28357
283582013-02-08 Roland McGrath <roland@hack.frob.com>
28359
28360 * manual/examples/mkfsock.c (make_named_socket): Don't add one for
28361 the '\0' terminator.
28362
283632013-02-08 Joseph Myers <joseph@codesourcery.com>
28364
28365 [BZ #13550]
28366 * debug/segfault.c: Don't include <bp-checks.h>.
28367 * sysdeps/generic/bp-checks.h: Remove file.
28368 * sysdeps/unix/sysv/linux/getdents.c: Don't include <bp-checks.h>.
28369 (__GETDENTS): Don't use CHECK_N.
28370 * sysdeps/unix/sysv/linux/i386/brk.c: Don't include <bp-checks.h>.
28371 * sysdeps/unix/sysv/linux/i386/getgroups.c: Likewise.
28372 (__getgroups): Don't use CHECK_N.
28373 * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
28374 (setgroups): Don't use CHECK_N.
28375 * sysdeps/unix/sysv/linux/mmap64.c: Don't include <bp-checks.h>.
28376 * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
28377 (__libc_msgrcv): Don't use CHECK_N.
28378 * sysdeps/unix/sysv/linux/msgsnd.c: Don't include <bp-checks.h>.
28379 (__libc_msgsnd): Don't use CHECK_N.
28380 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c: Don't include
28381 <bp-checks.h>.
28382 (__libc_pread): Don't use CHECK_N.
28383 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c: Don't
28384 include <bp-checks.h>.
28385 (__libc_pread64): Don't use CHECK_N.
28386 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c: Don't
28387 include <bp-checks.h>.
28388 (__libc_pwrite): Don't use CHECK_N.
28389 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c: Don't
28390 include <bp-checks.h>.
28391 (__libc_pwrite64): Don't use CHECK_N.
28392 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Don't include
28393 <bp-checks.h>.
28394 (__libc_pread): Don't use CHECK_N.
28395 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Don't
28396 include <bp-checks.h>.
28397 (__libc_pread64): Don't use CHECK_N.
28398 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Don't
28399 include <bp-checks.h>.
28400 (__libc_pwrite): Don't use CHECK_N.
28401 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Don't
28402 include <bp-checks.h>.
28403 (__libc_pwrite64): Don't use CHECK_N.
28404 * sysdeps/unix/sysv/linux/pread.c: Don't include <bp-checks.h>.
28405 (do_pread): Don't use CHECK_N.
28406 * sysdeps/unix/sysv/linux/pread64.c: Don't include <bp-checks.h>.
28407 (do_pread64): Don't use CHECK_N.
28408 * sysdeps/unix/sysv/linux/pwrite.c: Don't include <bp-checks.h>.
28409 (do_pwrite): Don't use CHECK_N.
28410 * sysdeps/unix/sysv/linux/pwrite64.c: Don't include <bp-checks.h>.
28411 (do_pwrite64): Don't use CHECK_N.
28412 * sysdeps/unix/sysv/linux/readv.c: Don't include <bp-checks.h>.
28413 (__libc_readv): Don't use CHECK_N.
28414 * sysdeps/unix/sysv/linux/semop.c: Don't include <bp-checks.h>.
28415 (semop): Don't use CHECK_N.
28416 * sysdeps/unix/sysv/linux/semtimedop.c: Don't include
28417 <bp-checks.h>.
28418 (semtimedop): Don't use CHECK_N.
28419 * sysdeps/unix/sysv/linux/sh/pread.c: Don't include <bp-checks.h>.
28420 (__libc_pread): Don't use CHECK_N.
28421 * sysdeps/unix/sysv/linux/sh/pread64.c: Don't include
28422 <bp-checks.h>.
28423 (__libc_pread64): Don't use CHECK_N.
28424 * sysdeps/unix/sysv/linux/sh/pwrite.c: Don't include
28425 <bp-checks.h>.
28426 (__libc_pwrite): Don't use CHECK_N.
28427 * sysdeps/unix/sysv/linux/sh/pwrite64.c: Don't include
28428 <bp-checks.h>.
28429 (__libc_pwrite64): Don't use CHECK_N.
28430 * sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c: Don't include
28431 <bp-checks.h>.
28432 (__libc_msgrcv): Don't use CHECK_N.
28433 * sysdeps/unix/sysv/linux/sysctl.c: Don't include <bp-checks.h>.
28434 (__sysctl): Don't use CHECK_N. Remove GKM FIXME comment.
28435 * sysdeps/unix/sysv/linux/writev.c: Don't include <bp-checks.h>.
28436 (__libc_writev): Don't use CHECK_N.
28437
284382013-02-08 Roland McGrath <roland@hack.frob.com>
28439
28440 * string/strcpy.c: Removed unused variable.
28441
28442 * Makeconfig (+sysdep-includes): Define with := rather than =.
28443 Use an existing include/ subdir of each sysdeps dir before it.
28444
284452013-02-08 Carlos O'Donell <carlos@redhat.com>
28446
28447 * nscd/connection.c (register_traced_file): Comment function.
28448 [HAVE_INOTIFY] (union __inev): Define.
28449 [HAVE_INOTIFY] (inotify_check_files): New function.
28450 [HAVE_INOTIFY] (clear_db_cache): Likewise.
28451 [HAVE_INOTIFY] (main_loop_poll): Call inotify_check_files and
28452 clear_db_cache.
28453 [HAVE_INOTIFY] (main_loop_epoll): Likewise.
28454
284552013-02-08 Carlos O'Donell <carlos@redhat.com>
28456
28457 * elf/dl-cache.c (_dl_load_cache_lookup): Comment that cache is
28458 loaded if not already and that a failure is permanent.
28459
284602013-02-08 Carlos O'Donell <carlos@redhat.com>
28461
28462 [BZ #15006]
28463 * sysdeps/generic/ldconfig.h: Define FLAG_ARM_LIBSF.
28464 * elf/cache.c (print_entry): Add FLAG_ARM_LIBSF support.
28465
284662013-02-08 Joseph Myers <joseph@codesourcery.com>
28467
28468 [BZ #13550]
28469 * sysdeps/generic/bp-checks.h (CHECK_1): Remove all definitions.
28470 (CHECK_1_NULL_OK): Likewise.
28471 * sysdeps/unix/sysv/linux/fxstat.c: Do not include <bp-checks.h>.
28472 (__fxstat): Do not use CHECK_1.
28473 * sysdeps/unix/sysv/linux/fxstat64.c: Do not include
28474 <bp-checks.h>.
28475 (___fxstat64): Do not use CHECK_1.
28476 * sysdeps/unix/sysv/linux/fxstatat.c: Do not include
28477 <bp-checks.h>.
28478 (__fxstatat): Do not use CHECK_1.
28479 * sysdeps/unix/sysv/linux/fxstatat64.c: Do not include
28480 <bp-checks.h>.
28481 (__fxstatat64): Do not use CHECK_1.
28482 * sysdeps/unix/sysv/linux/i386/fxstat.c: Do not include
28483 <bp-checks.h>.
28484 (__fxstat): Do not use CHECK_1.
28485 * sysdeps/unix/sysv/linux/i386/fxstatat.c: Do not include
28486 <bp-checks.h>.
28487 (__fxstatat): Do not use CHECK_1.
28488 * sysdeps/unix/sysv/linux/i386/getresgid.c: Do not include
28489 <bp-checks.h>.
28490 (__getresgid): Do not use CHECK_1.
28491 * sysdeps/unix/sysv/linux/i386/getresuid.c: Do not include
28492 <bp-checks.h>.
28493 (__getresuid): Do not use CHECK_1.
28494 * sysdeps/unix/sysv/linux/i386/lxstat.c: Do not include
28495 <bp-checks.h>.
28496 (__lxstat): Do not use CHECK_1.
28497 * sysdeps/unix/sysv/linux/i386/msgctl.c: Do not include
28498 <bp-checks.h>.
28499 (__old_msgctl): Do not use CHECK_1.
28500 (__new_msgctl): Likewise.
28501 * sysdeps/unix/sysv/linux/i386/setrlimit.c: Do not include
28502 <bp-checks.h>.
28503 (__new_setrlimit): Do not use CHECK_1.
28504 * sysdeps/unix/sysv/linux/i386/shmctl.c: Do not include
28505 <bp-checks.h>.
28506 (__old_shmctl): Do not use CHECK_1.
28507 (__new_shmctl): Likewise.
28508 * sysdeps/unix/sysv/linux/i386/xstat.c: Do not include
28509 <bp-checks.h>.
28510 (__xstat): Do not use CHECK_1.
28511 * sysdeps/unix/sysv/linux/lxstat.c: Do not include <bp-checks.h>.
28512 (__lxstat): Do not use CHECK_1.
28513 * sysdeps/unix/sysv/linux/lxstat64.c: Do not include
28514 <bp-checks.h>.
28515 (___lxstat64): Do not use CHECK_1.
28516 * sysdeps/unix/sysv/linux/msgctl.c: Do not include <bp-checks.h>.
28517 (__old_msgctl): Do not use CHECK_1.
28518 (__new_msgctl): Likewise.
28519 * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Do not include
28520 <bp-checks.h>.
28521 (__gettimeofday): Do not use CHECK_1.
28522 * sysdeps/unix/sysv/linux/ptrace.c: Do not include <bp-checks.h>.
28523 (ptrace) [__BOUNDED_POINTERS__]: Remove conditional code.
28524 * sysdeps/unix/sysv/linux/s390/gettimeofday.c: Do not include
28525 <bp-checks.h>.
28526 (__gettimeofday): Do not use CHECK_1.
28527 * sysdeps/unix/sysv/linux/shmctl.c: Do not include <bp-checks.h>.
28528 (__old_shmctl): Do not use CHECK_1_NULL_OK.
28529 (__new_shmctl): Do not use CHECK_1.
28530 * sysdeps/unix/sysv/linux/sigtimedwait.c: Do not include
28531 <bp-checks.h>.
28532 (do_sigtimedwait): Do not use CHECK_1.
28533 * sysdeps/unix/sysv/linux/sigwaitinfo.c: Do not include
28534 <bp-checks.h>.
28535 (do_sigwaitinfo): Do not use CHECK_1.
28536 * sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c: Do not include
28537 <bp-checks.h>.
28538 (msgctl): Do not use CHECK_1.
28539 * sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c: Do not include
28540 <bp-checks.h>.
28541 (shmctl): Do not use CHECK_1.
28542 * sysdeps/unix/sysv/linux/ustat.c: Do not include <bp-checks.h>.
28543 (ustat): Do not use CHECK_1.
28544 * sysdeps/unix/sysv/linux/wordsize-64/fxstat.c: Do not include
28545 <bp-checks.h>.
28546 (__fxstat): Do not use CHECK_1.
28547 * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Do not include
28548 <bp-checks.h>.
28549 (__fxstatat): Do not use CHECK_1.
28550 * sysdeps/unix/sysv/linux/wordsize-64/lxstat.c: Do not include
28551 <bp-checks.h>.
28552 (__lxstat): Do not use CHECK_1.
28553 * sysdeps/unix/sysv/linux/wordsize-64/xstat.c: Do not include
28554 <bp-checks.h>.
28555 (__xstat): Do not use CHECK_1.
28556 * sysdeps/unix/sysv/linux/xstat.c: Do not include <bp-checks.h>.
28557 (__xstat): Do not use CHECK_1.
28558 * sysdeps/unix/sysv/linux/xstat64.c: Do not include <bp-checks.h>.
28559 (___xstat64): Do not use CHECK_1.
28560
28561 [BZ #13550]
28562 * sysdeps/generic/bp-checks.h (CHECK_BOUNDS_LOW): Remove all
28563 definitions.
28564 (CHECK_BOUNDS_HIGH): Likewise.
28565 * string/strcpy.c: Do not include <bp-checks.h>.
28566 (strcpy): Do not use CHECK_BOUNDS_LOW and CHECK_BOUNDS_HIGH.
28567
285682013-02-07 Roland McGrath <roland@hack.frob.com>
28569
28570 * nscd/nscd-client.h (__nscd_drop_map_ref):
28571 Add __attribute__ ((unused)).
28572 * nis/nss-nisplus.h (niserr2nss): Likewise.
28573
28574 * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu): Define it only
28575 under [!(USE_AS_STRCASESTR && STRCASESTR_NONASCII)].
28576
28577 * csu/libc-tls.c (init_static_tls, init_slotinfo):
28578 Remove inline keyword.
28579 * include/rounding-mode.h (round_away): Likewise.
28580 * libio/wfileops.c (adjust_wide_data): Likewise.
28581 * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu): Likewise.
28582 (__m128i_strloadu_tolower): Likewise.
28583 * sysdeps/x86_64/multiarch/strcasestr-nonascii.c
28584 (__m128i_strloadu_tolower): Likewise.
28585 * time/mktime.c (ydhms_diff): Likewise.
28586 * locale/elem-hash.h (elem_hash): Likewise.
28587 * locale/setlocale.c (setdata): Likewise.
28588 * posix/regex_internal.h (re_string_char_size_at): Likewise.
28589 (re_string_wchar_at): Likewise.
28590 (bitset_not, bitset_merge, bitset_mask): Likewise.
28591 [!(__GNUC__ > 3)] (inline): Remove macro.
28592 * nscd/nscd-client.h (__nscd_drop_map_ref): Remove inline keyword.
28593 * elf/dl-deps.c (_dl_map_object_deps: preload): Likewise.
28594 * elf/tlsdeschtab.h (_dl_tlsdesc_resolve_early_return_p): Likewise.
28595 (_dl_tlsdesc_wake_up_held_fixups): Likewise.
28596 * string/memcmp.c (memcmp_bytes): Likewise.
28597 * locale/programs/locarchive.c (compute_hashval): Likewise.
28598 * sysdeps/ieee754/dbl-64/x2y2m1.c (mul_split): Likewise.
28599 * sysdeps/unix/sysv/linux/fips-private.h (fips_enabled_p): Likewise.
28600 * resolv/res_send.c (evNowTime, evCmpTime): Likewise.
28601 * nss/getent.c (print_rpc, print_protocols): Likewise.
28602 (print_passwd, print_group, print_aliases): Likewise.
28603 * nis/nss-nisplus.h (niserr2nss): Likewise.
28604 * nscd/connections.c (restart_p): Likewise.
28605 Change return type to bool.
28606
286072013-02-05 Roland McGrath <roland@hack.frob.com>
28608
28609 * Makeconfig (all-Depend-files): Add existing
28610 $(sorted-subdirs:=/Depend) files.
28611 (all-subdirs): Remove nss.
28612 * sysdeps/unix/inet/Subdirs: Add it here instead.
28613 * hesiod/Depend: New file.
28614
28615 * elf/dl-hwcaps.c (_dl_important_hwcaps): Use a variable-length array
28616 instead of calling alloca.
28617
28618 * io/lseek.c (__lseek): Rename to __libc_lseek.
28619 Define __lseek as an alias.
28620
28621 * sysdeps/generic/malloc-sysdep.h: Include <stdbool.h> and <unistd.h>.
28622
286232013-02-04 Carlos O'Donell <carlos@redhat.com>
28624
28625 * stdlib/getenv.c (getenv): Assume __BIG_ENDIAN in the
28626 else clause and remove check for non-standard endianness.
28627
286282013-02-04 David S. Miller <davem@davemloft.net>
28629
28630 * sysdeps/sparc/fpu/libm-test-ulps: Update.
28631
286322013-02-04 Joseph Myers <joseph@codesourcery.com>
28633
28634 [BZ #13550]
28635 * sysdeps/generic/bp-checks.h [__BOUNDED_POINTERS__]
28636 (__ubp_memchr): Remove prototype.
28637 [__BOUNDED_POINTERS__] (_CHECK_STRING): Remove macro.
28638 [__BOUNDED_POINTERS__] (CHECK_STRING): Likewise.
28639 [__BOUNDED_POINTERS__] (CHECK_STRING_NULL_OK): Likewise.
28640 [!__BOUNDED_POINTERS__] (CHECK_STRING): Likewise.
28641 * sysdeps/i386/memchr.S [!__BOUNDED_POINTERS__] (__ubp_memchr):
28642 Remove alias.
28643 * sysdeps/sparc/sparc32/memchr.S [!__BOUNDED_POINTERS__]
28644 (__ubp_memchr): Likewise.
28645 * sysdeps/sparc/sparc64/memchr.S [!__BOUNDED_POINTERS__]
28646 (__ubp_memchr): Likewise.
28647 * sysdeps/unix/sysv/linux/execve.c: Do not include <bp-checks.h>.
28648 (__execve) [__BOUNDED_POINTERS__]: Remove conditional code.
28649 (__execve) [!__BOUNDED_POINTERS__]: Make code unconditional.
28650 * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Do not use
28651 CHECK_STRING.
28652 * sysdeps/unix/sysv/linux/fxstatat64.c (__fxstatat64): Likewise.
28653 * sysdeps/unix/sysv/linux/getcwd.c: Do not include <bp-checks.h>.
28654 (__getcwd): Do not use CHECK_STRING.
28655 * sysdeps/unix/sysv/linux/i386/chown.c: Do not include
28656 <bp-checks.h>.
28657 (__real_chown): Do not use CHECK_STRING.
28658 * sysdeps/unix/sysv/linux/i386/fchownat.c: Do not include
28659 <bp-checks.h>.
28660 (fchownat): Do not use CHECK_STRING.
28661 * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Do not use
28662 CHECK_STRING.
28663 * sysdeps/unix/sysv/linux/i386/lchown.c: Do not include
28664 <bp-checks.h>.
28665 (__lchown): Do not use CHECK_STRING.
28666 * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
28667 * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
28668 * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
28669 * sysdeps/unix/sysv/linux/lxstat64.c (___lxstat64): Likewise.
28670 * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Do not
28671 include <bp-checks.h>.
28672 (truncate64): Do not use CHECK_STRING.
28673 * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Do not include
28674 <bp-checks.h>.
28675 (__real_chown): Do not use CHECK_STRING.
28676 * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Do not include
28677 <bp-checks.h>.
28678 (__lchown): Do not use CHECK_STRING.
28679 * sysdeps/unix/sysv/linux/sh/chown.c: Do not include
28680 <bp-checks.h>.
28681 (__chown): Do not use CHECK_STRING.
28682 * sysdeps/unix/sysv/linux/truncate64.c: Do not include
28683 <bp-checks.h>.
28684 (truncate64): Do not use CHECK_STRING.
28685 * sysdeps/unix/sysv/linux/wordsize-64/lxstat.c (__lxstat):
28686 Likewise.
28687 * sysdeps/unix/sysv/linux/xmknod.c: Do not include <bp-checks.h>.
28688 (__xmknod): Do not use CHECK_STRING.
28689 * sysdeps/unix/sysv/linux/xmknodat.c: Do not include
28690 <bp-checks.h>.
28691 (__xmknodat): Do not use CHECK_STRING.
28692 * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
28693 * sysdeps/unix/sysv/linux/xstat64.c (___xstat64): Likewise.
28694
286952013-02-04 Andreas Schwab <schwab@suse.de>
28696
28697 [BZ #14142]
28698 * include/errno.h: Redefine errno only if !NOT_IN_libc || IN_LIB.
28699 * include/netdb.h: Likewise for h_errno.
28700 * elf/tst-stackguard1.c: Include <tls.h>.
28701
287022013-02-02 Jan Kratochvil <jan.kratochvil@redhat.com>
28703
28704 * elf/link.h (struct link_map): Extend the l_addr comment.
28705 * include/link.h (struct link_map): Likewise.
28706
287072013-02-01 Joseph Myers <joseph@codesourcery.com>
28708
28709 [BZ #13550]
28710 * sysdeps/generic/bp-checks.h (BOUNDED_N): Remove all definitions.
28711 (BOUNDED_1): Remove macro.
28712 * debug/backtrace.c: Don't include <bp-checks.h>.
28713 (ADVANCE_STACK_FRAME): Don't use BOUNDED_1.
28714 (__backtrace): Likewise.
28715 * sysdeps/powerpc/powerpc32/backtrace.c: Don't include
28716 <bp-checks.h>.
28717 (__backtrace): Don't use BOUNDED_1.
28718 * sysdeps/powerpc/powerpc64/backtrace.c: Don't include
28719 <bp-checks.h>.
28720 (__backtrace): Don't use BOUNDED_1.
28721 * sysdeps/sparc/backtrace.c: Don't include <bp-checks.h>.
28722 (__backtrace): Don't use BOUNDED_1.
28723 * sysdeps/unix/sysv/linux/shmat.c: Don't include <bp-checks.h>.
28724 (shmat): Don't use BOUNDED_N.
28725
287262013-01-31 Joseph Myers <joseph@codesourcery.com>
28727
28728 [BZ #13550]
28729 * sysdeps/generic/bp-start.h: Remove file.
28730 * csu/libc-start.c: Don't include <bp-start.h>.
28731 (LIBC_START_MAIN): Set up __environ directly instead of using
28732 INIT_ARGV_and_ENVIRON.
28733 * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Don't include
28734 <bp-start.h>.
28735
28736 [BZ #13550]
28737 * sysdeps/generic/bp-checks.h (CHECK_IOCTL): Remove both
28738 definitions.
28739 (CHECK_FCNTL): Likewise.
28740 (CHECK_N_PAGES): Likewise.
28741
28742 [BZ #13550]
28743 * sysdeps/generic/bp-checks.h (CHECK_SIGSET): Remove both
28744 definitions.
28745 (CHECK_SIGSET_NULL_OK): Likewise.
28746 * sysdeps/unix/sysv/linux/sigpending.c: Don't include
28747 <bp-checks.h>.
28748 (sigpending): Don't use CHECK_SIGSET.
28749 * sysdeps/unix/sysv/linux/sigprocmask.c: Don't include
28750 <bp-checks.h>.
28751 (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
28752 * sysdeps/unix/sysv/linux/sigsuspend.c: Don't include
28753 <bp-checks.h>.
28754 (do_sigsuspend): Don't use CHECK_SIGSET.
28755 * sysdeps/unix/sysv/linux/sigtimedwait.c (do_sigtimedwait): Don't
28756 use CHECK_SIGSET.
28757 * sysdeps/unix/sysv/linux/sigwait.c: Don't include <bp-checks.h>.
28758 (do_sigwait): Don't use CHECK_SIGSET.
28759 * sysdeps/unix/sysv/linux/sigwaitinfo.c (do_sigwaitinfo): Don't
28760 use CHECK_SIGSET.
28761 * sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c: Don't
28762 include <bp-checks.h>.
28763 (sigpending): Don't use CHECK_SIGSET.
28764 * sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c: Don't
28765 include <bp-checks.h>.
28766 (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
28767 * sysdeps/unix/sysv/linux/x86_64/sigpending.c: Don't include
28768 <bp-checks.h>.
28769 (sigpending): Don't use CHECK_SIGSET.
28770 * sysdeps/unix/sysv/linux/x86_64/sigprocmask.c: Don't include
28771 <bp-checks.h>.
28772 (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
28773
28774 [BZ #13550]
28775 * sysdeps/generic/bp-semctl.h: Remove file.
28776 * sysdeps/unix/sysv/linux/i386/semctl.c: Don't include
28777 <bp-checks.h> and <bp-semctl.h>.
28778 (__old_semctl): Don't use CHECK_SEMCTL.
28779 (__new_semctl): Likewise.
28780 * sysdeps/unix/sysv/linux/semctl.c: Don't include <bp-checks.h>
28781 and <bp-semctl.h>.
28782 (__old_semctl): Don't use CHECK_SEMCTL.
28783 (__new_semctl): Likewise.
28784 * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Don't include
28785 <bp-checks.h> and <bp-semctl.h>.
28786 (__old_semctl): Don't use CHECK_SEMCTL.
28787 (__new_semctl): Likewise.
28788 * sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c: Don't include
28789 <bp-checks.h> and <bp-semctl.h>.
28790 (semctl): Don't use CHECK_SEMCTL.
28791
28792 [BZ #13550]
28793 * Makerules (elide-bp-thunks): Remove variable.
28794 (elide-routines.oS): Don't use $(elide-bp-thunks).
28795 (elide-routines.os): Likewise.
28796 (elide-routines.o): Likewise.
28797 (elide-routines.op): Likewise.
28798 (elide-routines.og): Likewise.
28799 (objects): Don't use $(bp-thunks).
28800 * sysdeps/unix/Makefile ($(common-objpfx)s-proto-bp.d): Do not
28801 include.
28802 (common-generated): Do not add s-proto-bp.d.
28803 * sysdeps/unix/make-syscalls.sh (ptr): Remove variable.
28804 (int): Likewise.
28805 (typ): Likewise.
28806 Do not generate makefile rules for bounded-pointer thunks.
28807 * sysdeps/generic/bp-thunks.h: Remove file.
28808 * sysdeps/unix/sysv/linux/i386/bp-thunks.h: Likewise.
28809 * sysdeps/unix/s-proto-bp.S: Likewise.
28810
28811 [BZ #15062]
28812 * math/k_casinh.c (__kernel_casinh): Compute real and imaginary
28813 parts of result separately when argument is not close to line from
28814 -i to i and one part of argument is small.
28815 * math/k_casinhf.c (__kernel_casinhf): Likewise.
28816 * math/k_casinhl.c (__kernel_casinhl): Likewise.
28817 * math/libm-test.inc (cacos_test): Add more tests.
28818 (casin_test): Likewise.
28819 (casinh_test): Likewise.
28820 * sysdeps/i386/fpu/libm-test-ulps: Update.
28821 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28822
288232013-01-31 David S. Miller <davem@davemloft.net>
28824
28825 * po/de.po: Update from translation team.
28826
288272013-01-25 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
28828
28829 * time/tzfile.c: Include stdint.h for SIZE_MAX.
28830
288312013-01-25 Thomas Schwinge <thomas@codesourcery.com>
28832
28833 * configure.in (_AC_PROG_CC_C89): New definition.
28834 * configure: Regenerate.
28835
28836 * configure.in (AC_PROG_CPP): New definition.
28837 * configure: Regenerate.
28838
288392013-01-23 Joseph Myers <joseph@codesourcery.com>
28840
28841 * debug/tst-backtrace.h: New file.
28842 * debug/tst-backtrace2.c: Include tst-backtrace.h.
28843 (ret): Remove variable.
28844 (x): Likewise.
28845 (FAIL): Remove macro.
28846 (NO_INLINE): Likewise.
28847 (fn1): Use match function instead of strstr.
28848 * debug/tst-backtrace3.c: Include tst-backtrace.h.
28849 (ret): Remove variable.
28850 (x): Likewise.
28851 (FAIL): Remove macro.
28852 (NO_INLINE): Likewise.
28853 (fn): Use match function instead of strstr.
28854 * debug/tst-backtrace4.c: Include tst-backtrace.h.
28855 (ret): Remove variable.
28856 (x): Likewise.
28857 (FAIL): Remove macro.
28858 (NO_INLINE): Likewise.
28859 (handle_signal): Use match function instead of strstr.
28860 * debug/tst-backtrace5.c: Include tst-backtrace.h.
28861 (ret): Remove variable.
28862 (x): Likewise.
28863 (FAIL): Remove macro.
28864 (NO_INLINE): Likewise.
28865 (handle_signal): Use match function instead of strstr.
28866
288672013-01-23 Roland McGrath <roland@hack.frob.com>
28868
28869 * misc/sys/cdefs.h (__glibc_unlikely, __glibc_likely): Fix whitespace.
28870
288712013-01-23 David S. Miller <davem@davemloft.net>
28872
28873 * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h
28874 (__arch_compare_and_exchange_val_32_acq): Use %g0 as second
28875 argument of CAS if possible.
28876 * sysdeps/sparc/sparc64/bits/atomic.h
28877 (__arch_compare_and_exchange_val_32_acq): Likewise.
28878 (__arch_compare_and_exchange_val_64_acq): Likewise.
28879
288802013-01-23 Pino Toscano <toscano.pino@tiscali.it>
28881
28882 * sysdeps/unix/sysv/linux/ulimit.c: Moved to ...
28883 * sysdeps/posix/ulimit.c: ... this.
28884 Include <limits.h>.
28885 * sysdeps/unix/bsd/ulimit.c: Remove file.
28886
288872013-01-23 Adam Conrad <adconrad@0c3.net>
28888
28889 * elf/Makefile (LDFLAGS-tst-array2): Add $(no-as-needed).
28890 (LDFLAGS-tst-array5): Likewise.
28891
288922013-01-23 Joseph Myers <joseph@codesourcery.com>
28893
28894 [BZ #15036]
28895 * bits/wchar.h (__WCHAR_MAX): Define based on __WCHAR_MAX__, or
28896 based on [L'\0' - 1 > 0] if [!__WCHAR_MAX__].
28897 (__WCHAR_MIN): Likewise, using __WCHAR_MIN__.
28898 * sysdeps/unix/sysv/linux/x86/bits/wchar.h: Remove.
28899
289002013-01-21 David S. Miller <davem@davemloft.net>
28901
28902 * sysdeps/sparc/backtrace.c: New file.
28903 * sysdeps/sparc/sparc32/backtrace.h: New file.
28904 * sysdeps/sparc/sparc32/sparcv9/backtrace.h: New file.
28905 * sysdeps/sparc/sparc64/backtrace.h: New file.
28906 * sysdeps/sparc/sparc64/backtrace.c: Delete.
28907 * sysdeps/sparc/Makefile (CFLAGS-backtrace.c): Add
28908 -funwind-tables.
28909
289102013-01-21 Andreas Schwab <schwab@suse.de>
28911
28912 [BZ #15020]
28913 * posix/wordexp.c (exec_comm): Avoid busy loop when command has
28914 closed its stdout.
28915
289162013-01-20 Andreas Schwab <schwab@linux-m68k.org>
28917
28918 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Don't include
28919 "mpa2.h".
28920 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
28921
289222013-01-18 Joseph Myers <joseph@codesourcery.com>
28923 Mark Mitchell <mark@codesourcery.com>
28924 Tom de Vries <tom@codesourcery.com>
28925 Paul Pluzhnikov <ppluzhnikov@google.com>
28926
28927 * debug/tst-backtrace2.c: New file.
28928 * debug/tst-backtrace3.c: Likewise.
28929 * debug/tst-backtrace4.c: Likewise.
28930 * debug/tst-backtrace5.c: Likewise.
28931 * debug/Makefile (CFLAGS-tst-backtrace2.c): New variable.
28932 (CFLAGS-tst-backtrace3.c): Likewise.
28933 (CFLAGS-tst-backtrace4.c): Likewise.
28934 (CFLAGS-tst-backtrace5.c): Likewise.
28935 (LDFLAGS-tst-backtrace2): Likewise.
28936 (LDFLAGS-tst-backtrace3): Likewise.
28937 (LDFLAGS-tst-backtrace4): Likewise.
28938 (LDFLAGS-tst-backtrace5): Likewise.
28939 (tests): Add new tests tst-backtrace2, tst-backtrace3,
28940 tst-backtrace4 and tst-backtrace5.
28941
289422013-01-18 Anton Blanchard <anton@samba.org>
28943 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
28944
28945 * sysdeps/unix/sysv/linux/powerpc/init-first.c: Rename
28946 __kernel_vdso_get_tbfreq to __kernel_get_tbfreq.
28947 * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Add parameter to
28948 INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK to specify return type.
28949 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
28950 (INTERNAL_VSYSCALL_NCS): Change "=&r" in inline asm output regs list to
28951 "+r" and remove output regs list as redundant. Add explicit inline
28952 asm to specify register of return val to work around compiler codegen
28953 bug. Remove (int) cast on return value. Add return type parameter to
28954 use in macro so that this macro does not truncate return value for
28955 64-bit values.
28956 (INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK): Add return type parameter and
28957 pass to INTERNAL_VSYSCALL_NCS.
28958 (INLINE_VSYSCALL): Add 'long int' as return type to
28959 INTERNAL_VSYSCALL_NCS macro invocation.
28960 (INTERNAL_VSYSCALL): Add 'long int' as return type to
28961 INTERNAL_VSYSCALL_NCS macro invocation.
28962 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
28963
289642013-01-18 Siddhesh Poyarekar <siddhesh@redhat.com>
28965
28966 [BZ #14496]
28967 * sysdeps/i386/fpu/fenv_private.h (libc_feupdateenv_test_sse):
28968 Fix application of SIMD FP exception mask.
28969
28970 * sysdeps/ieee754/dbl-64/mpa.h (__pow_mp): New function to get an
28971 mp_no from a power of two.
28972 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove
28973 __mpexp_twomm1. Use __pow_mp.
28974
28975 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove unnecessary
28976 multiplication.
28977
289782013-01-17 David S. Miller <davem@davemloft.net>
28979
28980 * sysdeps/sparc/fpu/libm-test-ulps: Update.
28981
289822013-01-17 Joseph Myers <joseph@codesourcery.com>
28983
28984 [BZ #15023]
28985 * include/complex.h: Condition contents on [!_COMPLEX_H].
28986 (__kernel_casinhf): New prototype.
28987 (__kernel_casinh): Likewise.
28988 (__kernel_casinhl): Likewise.
28989 * math/Makefile (libm_calls): Add k_casinh.
28990 * math/k_casinh.c: New file.
28991 * math/k_casinhf.c: Likewise.
28992 * math/k_casinhl.c: Likewise.
28993 * math/s_cacos.c (__cacos): Implement using __kernel_casinh for
28994 finite nonzero arguments.
28995 * math/s_cacosf.c (__cacosf): Implement using __kernel_casinhf for
28996 finite nonzero arguments.
28997 * math/s_cacosl.c (__cacosl): Implement using __kernel_casinhl for
28998 finite nonzero arguments.
28999 * math/s_casinh.c: Do not include <float.h>.
29000 (__casinh): Move code for finite nonzero arguments to k_casinh.c.
29001 * math/s_casinhf.c: Do not include <float.h>.
29002 (__casinhf): Move code for finite nonzero arguments to
29003 k_casinhf.c.
29004 * math/s_casinhl.c: Do not include <float.h>.
29005 [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Do not undefine and
29006 redefine.
29007 (__casinhl): Move code for finite nonzero arguments to
29008 k_casinhl.c.
29009 * math/libm-test.inc (cacos_test): Add more tests.
29010 * sysdeps/i386/fpu/libm-test-ulps: Update.
29011 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
29012
290132013-01-17 Pino Toscano <toscano.pino@tiscali.it>
29014
29015 * sysdeps/unix/sysv/linux/malloc-sysdep.h (HAVE_MREMAP): New define.
29016 * malloc/malloc.c: Include <unistd.h> and <malloc-sysdep.h>.
29017 [!HAVE_MREMAP]: Remove [defined linux] case.
29018 * malloc/arena.c: Do not include <malloc-sysdep.h>.
29019
290202013-01-17 Siddhesh Poyarekar <siddhesh@redhat.com>
29021
29022 * sysdeps/ieee754/dbl-64/mpa.c: Fix header comment.
29023
290242013-01-17 H.J. Lu <hongjiu.lu@intel.com>
29025
29026 * elf/elf.h (R_386_SIZE32): New relocation.
29027 * sysdeps/i386/dl-machine.h (elf_machine_rel): Handle
29028 R_386_SIZE32.
29029 (elf_machine_rela): Likewise.
29030 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Handle
29031 R_X86_64_SIZE64 and R_X86_64_SIZE32.
29032
290332013-01-17 Joseph Myers <joseph@codesourcery.com>
29034
29035 * sysdeps/powerpc/bits/mathdef.h [_SOFT_FLOAT || __NO_FPRS__]
29036 (FP_FAST_FMA): Do not define.
29037 [_SOFT_FLOAT || __NO_FPRS__] (FP_FAST_FMAF): Likewise.
29038 * sysdeps/powerpc/fpu/bits/fenvinline.h [__GNUC__ && !_SOFT_FLOAT
29039 && !__NO_MATH_INLINES]: Add [!__NO_FPRS__] condition.
29040 * sysdeps/powerpc/fpu/bits/mathinline.h [__GNUC__ &&
29041 !_SOFT_FLOAT]: Likewise.
29042 * sysdeps/powerpc/fpu/fpu_control.h [_SOFT_FLOAT || __NO_FPRS__]
29043 [_SOFT_FLOAT || __NO_FPRS__] (_FPU_RESERVED): Define with generic
29044 value.
29045 [_SOFT_FLOAT || __NO_FPRS__] (_FPU_DEFAULT): Likewise.
29046 [_SOFT_FLOAT || __NO_FPRS__] (fpu_control_t): Likewise.
29047 [_SOFT_FLOAT || __NO_FPRS__] (_FPU_GETCW): Likewise.
29048 [_SOFT_FLOAT || __NO_FPRS__] (_FPU_SETCW): Likewise.
29049 [_SOFT_FLOAT || __NO_FPRS__] (__fpu_control): Likewise.
29050 [!_SOFT_FLOAT && !__NO_FPRS__]: Condition previous contents of
29051 file.
29052
290532013-01-16 Andreas Schwab <schwab@suse.de>
29054
29055 [BZ #14327]
29056 * include/stdlib.h (__mktemp): Add declaration.
29057 * misc/mktemp.c (__mktemp): Renamed from mktemp, add weak alias.
29058 * misc/Versions (GLIBC_PRIVATE): Add __mktemp.
29059
290602013-01-16 Siddhesh Poyarekar <siddhesh@redhat.com>
29061
29062 * sysdeps/ieee754/dbl-64/atnat.h: Remove constant value
29063 definitions.
29064 * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
29065 * sysdeps/ieee754/dbl-64/mpa.c: Do not include mpa2.h.
29066 * sysdeps/ieee754/dbl-64/mpa.h: Move all constant value
29067 definitions here.
29068 * sysdeps/ieee754/dbl-64/mpa2.h: Remove.
29069 * sysdeps/ieee754/dbl-64/mpatan.h: Remove constant value
29070 definitions.
29071 * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Remove ZERO
29072 and ONE.
29073 * sysdeps/ieee754/dbl-64/mpexp.c: Do not include mpexp.h.
29074 * sysdeps/ieee754/dbl-64/mpexp.h: Remove.
29075 * sysdeps/ieee754/dbl-64/mpsqrt.h: Remove constant value
29076 definitions.
29077 * sysdeps/ieee754/dbl-64/mptan.c (__mptan): Remove MONE.
29078 * sysdeps/ieee754/dbl-64/ulog.h: Remove constant value
29079 definitions.
29080 * sysdeps/ieee754/dbl-64/utan.h: Likewise.
29081
29082 * sysdeps/ieee754/dbl-64/mpa2.h: Fix the value of TWO.
29083
290842013-01-15 David S. Miller <davem@davemloft.net>
29085
29086 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
29087 trunc{,f} to libm-sysdep_routes.
29088 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
29089 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc-vis3.S: New
29090 file.
29091 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc.S: New file.
29092 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf-vis3.S: New
29093 file.
29094 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf.S: New
29095 file.
29096 * sysdeps/sparc/sparc32/sparcv9/fpu/s_trunc.S: New file.
29097 * sysdeps/sparc/sparc32/sparcv9/fpu/s_truncf.S: New file.
29098 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc-vis3.S: New file.
29099 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.S: New file.
29100 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf-vis3.S: New file.
29101 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.S: New file.
29102 * sysdeps/sparc/sparc64/fpu/s_trunc.S: New file.
29103 * sysdeps/sparc/sparc64/fpu/s_truncf.S: New file.
29104
29105 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
29106 nearbyint{,f} to libm-sysdep_routes.
29107 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
29108 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint-vis3.S:
29109 New file.
29110 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.S: New
29111 file.
29112 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf-vis3.S:
29113 New file.
29114 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.S: New
29115 file.
29116 * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyint.S: New file.
29117 * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyintf.S: New file.
29118 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint-vis3.S: New
29119 file.
29120 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.S: New file.
29121 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf-vis3.S: New
29122 file.
29123 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.S: New file.
29124 * sysdeps/sparc/sparc64/fpu/s_nearbyint.S: New file.
29125 * sysdeps/sparc/sparc64/fpu/s_nearbyintf.S: New file.
29126
29127 * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
29128 libc_feholdexcept and libc_fesetenv.
29129
291302013-01-15 Mike Frysinger <vapier@gentoo.org>
29131
29132 * sysdeps/unix/sysv/linux/scsi/sg.h: Include stddef.h.
29133
291342013-01-14 David S. Miller <davem@davemloft.net>
29135
29136 * sysdeps/sparc/sparc-ifunc.h (SPARC_ASM_IFUNC2): New macro.
29137 (SPARC_ASM_VIS2_IFUNC): Likewise.
29138 (SPARC_ASM_VIS3_VIS2_IFUNC): Likewise.
29139 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S: Make
29140 use of 'siam' instruction.
29141 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S:
29142 Likewise.
29143 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S:
29144 Likewise.
29145 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S:
29146 Likewise.
29147 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S: Likewise.
29148 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S: Likewise.
29149 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S: Likewise.
29150 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S: Likewise.
29151 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis2.S: New
29152 file.
29153 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis2.S: New
29154 file.
29155 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis2.S: New
29156 file.
29157 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis2.S: New
29158 file.
29159 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis2.S: New file.
29160 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis2.S: New file.
29161 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis2.S: New file.
29162 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis2.S: New file.
29163 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Hook in
29164 new VIS2 routines.
29165 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: Likewise.
29166 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
29167 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S:
29168 Likewise.
29169 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: Likewise.
29170 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: Likewise.
29171 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: Likewise.
29172 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: Likewise.
29173 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add new VIS2
29174 routines to libm-sysdep_routines.
29175 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
29176
29177 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
29178 fdim/fdimf to libm-sysdep_routines.
29179 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-vis3.S: New
29180 file.
29181 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.S: New file.
29182 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf-vis3.S: New
29183 file.
29184 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf.S: New file.
29185 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fdim.S: New file.
29186 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fdimf.S: New file.
29187 * sysdeps/sparc/sparc32/fpu/s_fdim.S: New file.
29188 * sysdeps/sparc/sparc32/fpu/s_fdimf.S: New file.
29189 * sysdeps/sparc/sparc64/fpu/s_fdim.S: New file.
29190 * sysdeps/sparc/sparc64/fpu/s_fdimf.S: New file.
29191
291922013-01-14 Siddhesh Poyarekar <siddhesh@redhat.com>
29193
29194 * sysdeps/ieee754/dbl-64/mpa.c (__mul): Add a local variable
29195 to optimize copies.
29196
29197 * sysdeps/ieee754/dbl-64/mpa.c: Fix formatting.
29198 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
29199 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
29200
29201 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__inv): Remove
29202 local variable MPTWO.
29203 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__inv):
29204 Likewise.
29205
292062013-01-13 Mike Frysinger <vapier@gentoo.org>
29207
29208 * manual/pattern.texi (Flags for Globbing): Move GLOB_NOSORT after
29209 GLOB_NOESCAPE.
29210
292112013-01-13 Mike Frysinger <vapier@gentoo.org>
29212
29213 * manual/pattern.texi (Flags for Globbing): Highlight GNU extensions.
29214
292152013-01-13 Mike Frysinger <vapier@gentoo.org>
29216
29217 * manual/pattern.texi (glob_t): Document gl_flags.
29218 (glob64_t): Likewise.
29219
292202013-01-11 David S. Miller <davem@davemloft.net>
29221
29222 * math/Makefile (gmp-objs): Use $(gmp-sysdep_routines).
29223 * sysdeps/sparc/sparc64/multiarch/Makefile [$(subdir) = math]
29224 (gmp-sysdep_routines): New variable. Add VIS3 optimized GMP routines.
29225 * sysdeps/sparc/sparc64/multiarch/add_n-vis3.S: New file.
29226 * sysdeps/sparc/sparc64/multiarch/add_n.S: New file.
29227 * sysdeps/sparc/sparc64/multiarch/addmul_1-vis3.S: New file.
29228 * sysdeps/sparc/sparc64/multiarch/addmul_1.S: New file.
29229 * sysdeps/sparc/sparc64/multiarch/mul_1-vis3.S: New file.
29230 * sysdeps/sparc/sparc64/multiarch/mul_1.S: New file.
29231 * sysdeps/sparc/sparc64/multiarch/sub_n-vis3.S: New file.
29232 * sysdeps/sparc/sparc64/multiarch/sub_n.S: New file.
29233 * sysdeps/sparc/sparc64/multiarch/submul_1-vis3.S: New file.
29234 * sysdeps/sparc/sparc64/multiarch/submul_1.S: New file.
29235
29236 * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Properly optimize for 32-bit
29237 sparc V9 rather than using V8 code.
29238 * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
29239 * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
29240
29241 * sysdeps/sparc/sparc32/sparcv9/fpu/unix/sysv/linux/multiarch/Implies:
29242 Move to...
29243 * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/fpu/multiarch/Implies:
29244 Here.
29245
292462013-01-11 Roland McGrath <roland@hack.frob.com>
29247
29248 * configure.in (sysnames): Use $multi_arch_d in setting up $mach list,
29249 not in the main loop.
29250 * configure: Regenerated.
29251
292522013-01-11 Joseph Myers <joseph@codesourcery.com>
29253
29254 * include/features.h (__GLIBC_HAVE_LONG_LONG): Remove.
29255 * bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change #elif condition
29256 to just #else.
29257 * bits/types.h [__GLIBC_HAVE_LONG_LONG]: Likewise. Remove
29258 [!__GLIBC_HAVE_LONG_LONG] case.
29259 * posix/sys/types.h [__GLIBC_HAVE_LONG_LONG]: Change #elif
29260 condition to just #else.
29261 * stdlib/stdlib.h [__USE_ISOC99 || (__GLIBC_HAVE_LONG_LONG &&
29262 __USE_MISC)]: Change all uses to [__USE_ISOC99 || __USE_MISC].
29263 [__GLIBC_HAVE_LONG_LONG && __USE_BSD]: Change to [__USE_BSD].
29264 * string/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Make code
29265 unconditional.
29266 * string/endian.h [__GLIBC_HAVE_LONG_LONG]: Likewise.
29267 * sysdeps/s390/bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change
29268 #elif condition to just #else.
29269 * sysdeps/unix/sysv/linux/sys/sysmacros.h
29270 [__GLIBC_HAVE_LONG_LONG]: Make code unconditional.
29271 * sysdeps/x86/bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change
29272 #elif condition to just #else.
29273
292742013-01-11 Steve Ellcey <sellcey@mips.com>
29275
29276 * elf/elf.h (EF_MIPS_ARCH_32): Fix value.
29277 (EF_MIPS_ARCH_64): Fix value.
29278 (EF_MIPS_ARCH_32R2): New.
29279 (EF_MIPS_ARCH_64R2): New.
29280
292812013-01-11 H.J. Lu <hongjiu.lu@intel.com>
29282
29283 * Makeconfig (+link-pie-before-libc): New.
29284 (+link-pie-after-libc): Likewise.
29285 (+link-pie-tests): Likewise.
29286 (+link-pie): Rewritten.
29287 (link-before-libc): Remove $(config-LDFLAGS).
29288 (+link): Add $(rtld-LDFLAGS) after $(+link-before-libc).
29289 (+link-tests): Add $(rtld-tests-LDFLAGS) after $(+link-before-libc).
29290 (config-LDFLAGS): Renamed to ...
29291 (rtld-LDFLAGS): This.
29292 (rtld-tests-LDFLAGS): New macro.
29293 (link-libc-rpath-link): Likewise.
29294 (link-libc-tests-rpath-link): Likewise.
29295 (link-libc-before-gnulib): Remove -Wl,-rpath-link=$(rpath-link).
29296 (link-libc): Prepand $(link-libc-rpath-link).
29297 (link-libc-tests): Prepand $(link-libc-tests-rpath-link).
29298 (test-program-prefix): New macro.
29299 (test-via-rtld-prefix): Likewise.
29300 (test-program-cmd): Likewise.
29301 (host-test-program-cmd): Likewise.
29302 * Makefile ($(common-objpfx)testrun.sh): Replace
29303 $(run-program-prefix) with $(test-program-prefix).
29304 * Makerules ($(LINK.o)): Replace $(config-LDFLAGS) with
29305 $(rtld-LDFLAGS).
29306 ($(common-objpfx)shlib.lds): Likewise.
29307 (build-module-helper): Likewise.
29308 ($(common-objpfx)format.lds): Likewise.
29309 * Rules (binaries-pie-tests): New.
29310 (binaries-pie-notests): Likewise.
29311 (binaries-pie): Rewritten.
29312 ($(addprefix $(objpfx),$(binaries-pie))): Renamed to ...
29313 ($(addprefix $(objpfx),$(binaries-pie-notests))): This.
29314 ($(addprefix $(objpfx),$(binaries-pie-tests))): New.
29315 (make-test-out): Replace $(host-built-program-cmd) with
29316 $(host-test-program-cmd).
29317 * config.make.in (build-hardcoded-path-in-tests): New variable.
29318 * configure.in (--enable-hardcoded-path-in-tests): New configure
29319 option.
29320 (hardcoded_path_in_tests): New AC_SUBST.
29321 * configure: Regenerated.
29322 * catgets/Makefile ($(objpfx)test-gencat.out): Replace
29323 $(built-program-cmd) with $(test-program-cmd).
29324 * catgets/test-gencat.sh (run_program_cmd): Renamed to ...
29325 (test_program_cmd): This.
29326 * elf/Makefile ($(objpfx)order.out): Run test with
29327 $(test-program-prefix).
29328 ($(objpfx)order2.out): Likewise.
29329 ($(objpfx)tst-initorder.out): Likewise.
29330 ($(objpfx)tst-initorder2.out): Likewise.
29331 ($(objpfx)tst-array1.out): Replace $(built-program-cmd) with
29332 $(test-program-cmd).
29333 ($(objpfx)tst-array1-static.out): Likewise.
29334 ($(objpfx)tst-array2.out): Likewise.
29335 ($(objpfx)tst-array3.out): Likewise.
29336 ($(objpfx)tst-array4.out): Likewise.
29337 ($(objpfx)tst-array5.out): Likewise.
29338 ($(objpfx)tst-array5-static.out): Likewise.
29339 (tst-stackguard1-ARGS): Replace $(built-program-cmd) with
29340 $(test-program-cmd).
29341 * grp/Makefile ($(objpfx)tst_fgetgrent.out): Replace
29342 $(run-program-prefix) with $(test-program-prefix).
29343 * grp/tst_fgetgrent.sh (run_program_prefix): Renamed to ...
29344 (test_program_prefix): This.
29345 * iconvdata/Makefile ($(objpfx)tst-tables.out): Replace
29346 $(run-program-prefix) with $(test-program-prefix).
29347 * iconvdata/tst-table.sh (run_program_prefix): Renamed to ...
29348 (test_program_prefix): This.
29349 * iconvdata/tst-tables.sh: Likewise.
29350 * intl/Makefile ($(objpfx)tst-gettext.out): Replace
29351 $(run-program-prefix) with $(test-program-prefix).
29352 ($(objpfx)tst-translit.out): Likewise.
29353 ($(objpfx)tst-gettext2.out): Likewise.
29354 ($(objpfx)tst-gettext4.out): Likewise.
29355 ($(objpfx)tst-gettext6.out): Likewise.
29356 * intl/tst-gettext.sh (run_program_prefix): Renamed to ...
29357 (test_program_prefix): This.
29358 * intl/tst-gettext2.sh: Likewise.
29359 * intl/tst-gettext4.sh Likewise.
29360 * intl/tst-gettext6.sh: Likewise.
29361 * intl/tst-translit.sh: Likewise.
29362 * io/Makefile ($(objpfx)ftwtest.out): Replace $(run-program-cmd)
29363 with $(test-program-cmd).
29364 * libio/Makefile ($(objpfx)test-freopen.out): Replace
29365 $(run-program-prefix) with $(test-program-prefix).
29366 * libio/test-freopen.sh (run_program_prefix): Renamed to ...
29367 (test_program_prefix): This.
29368 * malloc/Makefile ($(objpfx)tst-mtrace.out): Replace
29369 $(run-program-prefix) with $(test-program-prefix).
29370 * malloc/tst-mtrace.sh (run_program_prefix): Renamed to ...
29371 (test_program_prefix): This.
29372 * manual/install.texi: Document --enable-hardcoded-path-in-tests.
29373 * posix/Makefile ($(objpfx)globtest.out): Replace
29374 $(run-via-rtld-prefix) and $(test-wrapper) with
29375 $(test-program-prefix) and $(test-via-rtld-prefix).
29376 ($(objpfx)wordexp-tst.out): Replace $(run-program-prefix) with
29377 $(test-program-prefix).
29378 (tst-exec-ARGS): Replace $(host-built-program-cmd) with
29379 $(host-test-program-cmd).
29380 (tst-spawn-ARGS): Likewise.
29381 ($(objpfx)tst-rxspencer-mem): Replace $(run-program-prefix) with
29382 $(test-program-prefix).
29383 * posix/globtest.sh (un_via_rtld_prefix): Renamed to ...
29384 (test_via_rtld_prefix): This.
29385 (test_wrapper): Renamed to ...
29386 (test_program_prefix): This.
29387 (run_program_prefix): Replaced by test_program_prefix.
29388 * posix/wordexp-tst.sh (run_program_prefix): Renamed to ...
29389 (test_program_prefix): This.
29390 * rt/Makefile (tst-mqueue7-ARGS): Replace $(host-built-program-cmd)
29391 with $(host-test-program-cmd).
29392 * stdio-common/Makefile ($(objpfx)tst-unbputc.out): Replace
29393 $(run-program-prefix) with $(test-program-prefix).
29394 ($(objpfx)tst-printf.out): Likewise.
29395 ($(objpfx)tst-setvbuf1.out): Replace $(built-program-cmd) with
29396 $(test-program-cmd).
29397 * stdio-common/tst-printf.sh (run_program_prefix): Renamed to ...
29398 (test_program_prefix): This.
29399 * stdio-common/tst-unbputc.sh: Likewise.
29400 * stdlib/Makefile ($(objpfx)tst-fmtmsg.out): Replace
29401 $(run-program-prefix) with $(test-program-prefix).
29402 * stdlib/tst-fmtmsg.sh (run_program_prefix): Renamed to ...
29403 (test_program_prefix): This.
29404 * string/Makefile ($(objpfx)tst-svc.out): Replace
29405 $(built-program-cmd) with $(test-program-cmd).
29406
294072013-01-11 Andreas Jaeger <aj@suse.de>
29408
29409 [BZ #15003]
29410 * sysdeps/unix/sysv/linux/bits/socket.h (MSG_FASTOPEN): New
29411 value. Sync with Linux 3.7.
29412
294132013-01-10 David S. Miller <davem@davemloft.net>
29414
29415 * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Revert previous changes.
29416 * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
29417 * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
29418
294192013-01-10 Roland McGrath <roland@hack.frob.com>
29420
29421 * configure.in (sysnames): Drop use of $m0sub and $msub, which are
29422 never set.
29423 * configure: Regenerated.
29424
294252013-01-10 David S. Miller <davem@davemloft.net>
29426
29427 * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Properly optimize for 32-bit
29428 sparc V9 rather than using V8 code.
29429 * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
29430 * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
29431
294322013-01-10 Roland McGrath <roland@hack.frob.com>
29433
29434 * elf/elf.h (DT_SPARC_REGISTER, DT_SPARC_NUM): Fix whitespace.
29435 (EF_MIPS_NOREORDER, EF_MIPS_PIC, EF_MIPS_CPIC, EF_MIPS_XGOT): Likewise.
29436 (EF_MIPS_64BIT_WHIRL, EF_MIPS_ABI2, EF_MIPS_ABI_ON32): Likewise.
29437 (EF_MIPS_ARCH, EF_MIPS_ARCH_1, EF_MIPS_ARCH_2): Likewise.
29438 (EF_MIPS_ARCH_3, EF_MIPS_ARCH_4, EF_MIPS_ARCH_5): Likewise.
29439 (EF_MIPS_ARCH_32, EF_MIPS_ARCH_64): Likewise.
29440 (E_MIPS_ARCH_1): Define in terms of EF_MIPS_ARCH_* counterpart.
29441 (E_MIPS_ARCH_2, E_MIPS_ARCH_3, E_MIPS_ARCH_4, E_MIPS_ARCH_5): Likewise.
29442 (E_MIPS_ARCH_32, E_MIPS_ARCH_64): Likewise.
29443 (SHN_MIPS_ACOMMON, SHN_MIPS_TEXT, SHN_MIPS_DATA): Fix whitespace.
29444 (SHN_MIPS_SCOMMON, SHN_MIPS_SUNDEFINED): Likewise.
29445 (SHT_MIPS_LIBLIST, SHT_MIPS_MSYM, SHT_MIPS_CONFLICT): Likewise.
29446 (SHT_MIPS_GPTAB, SHT_MIPS_UCODE, SHT_MIPS_DEBUG): Likewise.
29447 (SHT_MIPS_REGINFO, SHT_MIPS_PACKAGE, SHT_MIPS_PACKSYM): Likewise.
29448 (SHT_MIPS_RELD, SHT_MIPS_IFACE, SHT_MIPS_CONTENT): Likewise.
29449 (SHT_MIPS_OPTIONS, SHT_MIPS_SHDR, SHT_MIPS_FDESC): Likewise.
29450 (SHT_MIPS_EXTSYM, SHT_MIPS_DENSE, SHT_MIPS_PDESC): Likewise.
29451 (SHT_MIPS_LOCSYM, SHT_MIPS_AUXSYM, SHT_MIPS_OPTSYM): Likewise.
29452 (SHT_MIPS_LOCSTR, SHT_MIPS_LINE, SHT_MIPS_RFDESC): Likewise.
29453 (SHT_MIPS_DELTASYM, SHT_MIPS_DELTAINST, SHT_MIPS_DELTACLASS): Likewise.
29454 (SHT_MIPS_DELTADECL, SHT_MIPS_SYMBOL_LIB, SHT_MIPS_EVENTS): Likewise.
29455 (SHT_MIPS_TRANSLATE, SHT_MIPS_PIXIE, SHT_MIPS_XLATE): Likewise.
29456 (SHT_MIPS_XLATE_DEBUG, SHT_MIPS_WHIRL, SHT_MIPS_EH_REGION): Likewise.
29457 (SHT_MIPS_XLATE_OLD, SHT_MIPS_PDR_EXCEPTION): Likewise.
29458 (SHF_MIPS_GPREL, SHF_MIPS_MERGE, SHF_MIPS_ADDR): Likewise.
29459 (SHF_MIPS_STRINGS, SHF_MIPS_NOSTRIP, SHF_MIPS_LOCAL): Likewise.
29460 (SHF_MIPS_NAMES, SHF_MIPS_NODUPE): Likewise.
29461
294622013-01-10 David S. Miller <davem@davemloft.net>
29463
29464 * sysdeps/sparc/fpu/libm-test-ulps: Update.
29465
294662013-01-10 H.J. Lu <hongjiu.lu@intel.com>
29467
29468 * posix/Makefile (tests-static): New variable.
29469 (tests): Add $(tests-static).
29470 (tst-exec-static-ARGS): New variable.
29471 (tst-spawn-static-ARGS): Likewise.
29472 * posix/tst-exec-static.c: New file.
29473 * posix/tst-spawn-static.c: Likewise.
29474 * posix/tst-exec.c: Support run directly.
29475 * posix/tst-spawn.c: Likewise.
29476
294772013-01-10 Joseph Myers <joseph@codesourcery.com>
29478
29479 * elf/link.h (struct dl_phdr_info): Use __extension__ with long
29480 long.
29481 * math/bits/mathcalls.h (llrint): Likewise.
29482 (llround): Likewise.
29483 * stdlib/stdlib.h (struct drand48_data): Likewise.
29484 * sysdeps/generic/inttypes.h (imaxdiv_t): Likewise.
29485 * sysdeps/s390/bits/byteswap.h (__bswap_64): Likewise.
29486 * sysdeps/unix/sysv/linux/sparc/bits/ipc.h (struct ipc_perm):
29487 Likewise.
29488 * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu):
29489 Likewise.
29490 * sysdeps/unix/sysv/linux/x86/sys/procfs.h [__x86_64__]
29491 (elf_greg_t): Likewise.
29492 * sysdeps/x86/bits/setjmp.h [__x86_64__ && __WORDSIZE != 64]
29493 (__jmp_buf): Likewise.
29494 * sysdeps/x86/fpu/bits/mathinline.h (llrintf): Likewise, for all
29495 definitions.
29496 (llrint): Likewise, for all definitions.
29497 (llrintl): Likewise.
29498
29499 * string/string.h [__USE_BSD && __USE_GNU && __GNUC__] (ffsll):
29500 Remove [__GNUC__] condition.
29501 * wcsmbs/wchar.h [__USE_ISOC99 || (__GNUC__ && __USE_GNU)]: Change
29502 condition to just [__USE_ISOC99].
29503 [__GNUC__ && __USE_GNU]: Change condition to just [__USE_GNU].
29504
295052013-01-10 H.J. Lu <hongjiu.lu@intel.com>
29506
29507 [BZ #14200]
29508 * sysdeps/unix/sysv/linux/x86/bits/environments.h
29509 (_POSIX_V7_ILP32_OFF32): Defined as 1 only if __x86_64__ isn't
29510 defined.
29511 (_POSIX_V6_ILP32_OFF32): Likewise.
29512 (_XBS5_ILP32_OFF32): Likewise.
29513 (__ILP32_OFFBIG_CFLAGS): Defined as "-mx32" for x32.
29514 (__ILP32_OFFBIG_LDFLAGS): Likewise.
29515
295162013-01-10 Siddhesh Poyarekar <siddhesh@redhat.com>
29517
29518 * sysdeps/ieee754/dbl-64/mpexp.c: Fix formatting.
29519
29520 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): New array of
29521 doubles __mpexp_twomm1. Adjust usage.
29522 * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_twomm1):
29523 Remove.
29524
295252013-01-10 Andreas Schwab <schwab@suse.de>
29526
29527 [BZ #14964]
29528 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (FALLOC_FL_KEEP_SIZE)
29529 (FALLOC_FL_PUNCH_HOLE) [__USE_GNU]: New macros.
29530
295312013-01-09 David S. Miller <davem@davemloft.net>
29532
29533 [BZ #15003]
29534 * sysdeps/gnu/netinet/tcp.h (TCP_COOKIE_TRANSACTIONS)
29535 (TCP_THIN_LINEAR_TIMEOUTS, TCP_THIN_DUPACK, TCP_USER_TIMEOUT)
29536 (TCP_REPAIR, TCP_REPAIR_QUEUE, TCP_QUEUE_SEQ, TCP_REPAIR_OPTIONS)
29537 (TCP_FASTOPEN): Define.
29538 (tcp_repair_opt): New structure.
29539 (TCP_NO_QUEUE, TCP_RECV_QUEUE, TCP_SEND_QUEUE, TCP_QUEUES_NR): New
29540 enum values.
29541 (TCP_COOKIE_MIN, TCP_COOKIE_MAX, TCP_COOKIE_PAIR_SIZE)
29542 (TCP_COOKIE_IN_ALWAYS, TCP_COOKIE_OUT_NEVER, TCP_S_DATA_IN)
29543 (TCP_S_DATA_OUT, TCP_MSS_DEFAULT, TCP_MSS_DESIRED): Define.
29544 (tcp_cookie_transactions): New structure.
29545
295462013-01-09 Anton Blanchard <anton@samba.org>
29547
29548 * sysdeps/unix/sysv/linux/powerpc/sched_getcpu.c: New file.
29549 * sysdeps/unix/sysv/linux/powerpc/Versions: Add __vdso_getcpu.
29550 * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Likewise.
29551 * sysdeps/unix/sysv/linux/powerpc/init-first.c: Likewise.
29552
295532013-01-09 Joseph Myers <joseph@codesourcery.com>
29554
29555 * include/features.h (__USE_ANSI): Remove.
29556
295572013-01-09 Roland McGrath <roland@hack.frob.com>
29558
29559 * posix/Makefile (others): Depend on $(objpfx)getconf.speclist.
29560
29561 * misc/error.c (error_tail: ALLOCA_LIMIT): Remove unused macro.
29562
295632013-01-09 Siddhesh Poyarekar <siddhesh@redhat.com>
29564
29565 * sysdeps/s390/fpu/libm-test-ulps: Update.
29566
29567 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
29568
29569 * sysdeps/ieee754/dbl-64/mpa.c (mcr): Reword comment.
29570 (__acr): Likewise.
29571 (__cpy): Likewise.
29572 (norm): Likewise.
29573 (denorm): Likewise.
29574 (__mp_dbl): Likewise.
29575 (__dbl_mp): Likewise.
29576 (add_magnitudes): Likewise.
29577 (sub_magnitudes): Likewise.
29578 (__add): Likewise.
29579 (__sub): Likewise.
29580 (__mul): Likewise.
29581 (__inv): Likewise.
29582 (__dvd): Likewise.
29583 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (mcr): Likewise.
29584 (__acr): Likewise.
29585 (__cpy): Likewise.
29586 (norm): Likewise.
29587 (denorm): Likewise.
29588 (__mp_dbl): Likewise.
29589 (__dbl_mp): Likewise.
29590 (add_magnitudes): Likewise.
29591 (sub_magnitudes): Likewise.
29592 (__add): Likewise.
29593 (__sub): Likewise.
29594 (__mul): Likewise.
29595 (__inv): Likewise.
29596 (__dvd): Likewise.
29597 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (mcr): Likewise.
29598 (__acr): Likewise.
29599 (__cpy): Likewise.
29600 (norm): Likewise.
29601 (denorm): Likewise.
29602 (__mp_dbl): Likewise.
29603 (__dbl_mp): Likewise.
29604 (add_magnitudes): Likewise.
29605 (sub_magnitudes): Likewise.
29606 (__add): Likewise.
29607 (__sub): Likewise.
29608 (__mul): Likewise.
29609 (__inv): Likewise.
29610 (__dvd): Likewise.
29611
296122013-01-08 Joseph Myers <joseph@codesourcery.com>
29613
29614 * io/sys/stat.h [__GNUC__ && __GNUC__ >= 2 &&
29615 __USE_EXTERN_INLINES]: Change condition to [__USE_EXTERN_INLINES].
29616 * sysdeps/unix/sysv/linux/sys/sysmacros.h [__GNUC__ && __GNUC__ >=
29617 2 && __USE_EXTERN_INLINES]: Likewise.
29618
296192013-01-08 Andreas Jaeger <aj@suse.de>
29620
29621 [BZ# 14985]
29622 * sysdeps/unix/sysv/linux/sparc/bits/epoll.h (EPOLL_NONBLOCK):
29623 Remove.
29624 * sysdeps/unix/sysv/linux/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
29625 * sysdeps/unix/sysv/linux/x86/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
29626
296272013-01-07 Anton Blanchard <anton@samba.org>
29628
29629 * sysdeps/powerpc/fpu/feholdexcpt.c: Fixed spelling errors.
29630 * sysdeps/powerpc/fpu/feupdateenv.c: Likewise.
29631 * sysdeps/powerpc/fpu/math_ldbl.h: Likewise.
29632 * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
29633 * sysdeps/powerpc/powerpc32/cell/memcpy.S: Likewise.
29634 * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
29635 * sysdeps/powerpc/powerpc32/dl-start.S: Likewise.
29636 * sysdeps/powerpc/powerpc32/memset.S: Likewise.
29637 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
29638 * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
29639 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
29640 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
29641 * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
29642 * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
29643 * sysdeps/powerpc/powerpc32/power4/strncmp.S: Likewise.
29644 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
29645 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
29646 * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
29647 * sysdeps/powerpc/powerpc32/power7/memchr.S: Likewise.
29648 * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.
29649 * sysdeps/powerpc/powerpc32/power7/memrchr.S: Likewise.
29650 * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: Likewise.
29651 * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
29652 * sysdeps/powerpc/powerpc32/strncmp.S: Likewise.
29653 * sysdeps/powerpc/powerpc64/bits/atomic.h: Likewise.
29654 * sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise.
29655 * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
29656 * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Likewise.
29657 * sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S: Likewise.
29658 * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
29659 * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
29660 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
29661 * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
29662 * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
29663 * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
29664 * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
29665 * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
29666 * sysdeps/powerpc/powerpc64/power7/memchr.S: Likewise.
29667 * sysdeps/powerpc/powerpc64/power7/memcmp.S: Likewise.
29668 * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.
29669 * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: Likewise.
29670 * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
29671 * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
29672
296732013-01-07 Joseph Myers <joseph@codesourcery.com>
29674
29675 * malloc/malloc.h (__MALLOC_P): Remove all definitions.
29676 (__MALLOC_PMT): Likewise.
29677 [__GNUC__] (__MALLOC_HOOK_VOLATILE): Make not conditional on
29678 [__GNUC__], only on [_LIBC].
29679 [__GNUC__] (__MALLOC_DEPRECATED): Likewise.
29680 [!__GNUC__] (__MALLOC_HOOK_VOLATILE): Remove definition.
29681 [!__GNUC__] (__MALLOC_DEPRECATED): Likewise.
29682 * malloc/malloc.c (malloc_hook_ini): Do not use __MALLOC_P in
29683 forward declaration.
29684 (realloc_hook_ini): Likewise.
29685 (memalign_hook_ini): Likewise.
29686 (__libc_memalign): Do not use __MALLOC_PMT in variable
29687 declaration.
29688 (__libc_valloc): Likewise.
29689 (__libc_pvalloc): Likewise.
29690 (__libc_calloc): Likewise.
29691 (__posix_memalign): Likewise.
29692
29693 [BZ #14996]
29694 * math/s_casinh.c: Include <float.h>.
29695 (__casinh): Do not do computation with squaring and square root
29696 for large arguments.
29697 * math/s_casinhf.c: Include <float.h>.
29698 (__casinhf): Do not do computation with squaring and square root
29699 for large arguments.
29700 * math/s_casinhl.c: Include <float.h>.
29701 [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine and redefine.
29702 (__casinhl): Do not do computation with squaring and square root
29703 for large arguments.
29704 * math/libm-test.inc (casin_test): Add more tests.
29705 (casinh_test): Likewise.
29706 * sysdeps/i386/fpu/libm-test-ulps: Update.
29707 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
29708
297092013-01-04 H.J. Lu <hongjiu.lu@intel.com>
29710
29711 * sysdeps/i386/i686/cacheinfo.c (__x86_64_data_cache_size): Removed.
29712 (__x86_64_raw_data_cache_size): Likewise.
29713 (__x86_64_data_cache_size_half): Likewise.
29714 (__x86_64_raw_data_cache_size_half): Likewise.
29715 (__x86_64_shared_cache_size): Likewise.
29716 (__x86_64_raw_shared_cache_size): Likewise.
29717 (__x86_64_shared_cache_size_half): Likewise.
29718 (__x86_64_raw_shared_cache_size_half): Likewise.
29719 * sysdeps/x86_64/cacheinfo.c (__x86_64_data_cache_size): Renamed
29720 to ...
29721 (__x86_data_cache_size): This.
29722 (__x86_64_raw_data_cache_size): Renamed to ...
29723 (__x86_raw_data_cache_size): This.
29724 (__x86_64_data_cache_size_half): Renamed to ...
29725 (__x86_data_cache_size_half): This.
29726 (__x86_64_raw_data_cache_size_half): Renamed to ...
29727 (__x86_raw_data_cache_size_half): This.
29728 (__x86_64_shared_cache_size): Renamed to ...
29729 (__x86_shared_cache_size): This.
29730 (__x86_64_raw_shared_cache_size): Renamed to ...
29731 (__x86_raw_shared_cache_size): This.
29732 (__x86_64_shared_cache_size_half): Renamed to ...
29733 (__x86_shared_cache_size_half): This.
29734 (__x86_64_raw_shared_cache_size_half): Renamed to ...
29735 (__x86_raw_shared_cache_size_half): This.
29736 * sysdeps/x86_64/memcpy.S: Updated.
29737 * sysdeps/x86_64/memset.S: Likewise.
29738 * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
29739 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
29740 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
29741
297422013-01-04 David S. Miller <davem@davemloft.net>
29743
29744 * sysdeps/sparc/fpu/libm-test-ulps: Update.
29745
297462013-01-04 Andreas Schwab <schwab@linux-m68k.org>
29747
29748 * sysdeps/powerpc/fpu/test-powerpc-snan.c (_GNU_SOURCE): Define as
29749 1 to avoid redefinition warning.
29750 (__USE_GNU): Don't define.
29751 (init_signaling_nan): Protoize.
29752
29753 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
29754
297552013-01-04 Siddhesh Poyarekar <siddhesh@redhat.com>
29756
29757 * sysdeps/ieee754/dbl-64/mpa.c: Remove commented code.
29758 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__cr): Remove.
29759 (__cpymn): Likewise.
29760 (norm): Remove commented code.
29761 (denorm): Likewise.
29762 (__mp_dbl): Likewise.
29763 (__inv): Likewise.
29764 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__cr): Remove.
29765 (__cpymn): Likewise.
29766 (norm): Remove commented code.
29767 (denorm): Likewise.
29768 (__mp_dbl): Likewise.
29769 (__inv): Likewise.
29770
29771 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (mpone): Define
29772 mp_no value for 1.0 and 2.0.
29773 (norm): Use RADIXI instead of radixi.d.
29774 (denorm): Likewise.
29775 (__mul): Use 0.0 instead of zero.d.
29776 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (mpone): Define
29777 mp_no value for 1.0 and 2.0.
29778 (norm): Use RADIXI instead of radixi.d.
29779 (denorm): Likewise.
29780 (__mul): Use 0.0 instead of zero.d.
29781
297822013-01-04 Joseph Myers <joseph@codesourcery.com>
29783
29784 [BZ #14994]
29785 * math/s_casinh.c (__casinh): Reduce finite argument to first
29786 quadrant then set signs of results at the end.
29787 * math/s_casinhf.c (__casinhf): Likewise.
29788 * math/s_casinhl.c (__casinhl): Likewise.
29789 * math/libm-test.inc (casin_test): Add more tests.
29790 (casinh_test): Likewise.
29791 * sysdeps/i386/fpu/libm-test-ulps: Update.
29792 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
29793
297942013-01-04 Siddhesh Poyarekar <siddhesh@redhat.com>
29795
29796 * sysdeps/ieee754/dbl-64/mpa.h: Fix code formatting.
29797
29798 * sysdeps/ieee754/dbl-64/mpa.h: Clean up comment for MP_NO.
29799
29800 * sysdeps/ieee754/dbl-64/mpa.c(norm): Remove commented
29801 declarations.
29802 (denorm): Likewise.
29803 (__mp_dbl): Likewise.
29804 (__inv): Likewise.
29805
29806 * sysdeps/ieee754/dbl-64/mpa.h: Remove commented declarations
29807 and adjust the header comment.
29808
29809 * sysdeps/ieee754/dbl-64/mpa.h (__mpexp): Remove unnecessary
29810 variable name from declaration.
29811
298122013-01-03 H.J. Lu <hongjiu.lu@intel.com>
29813
29814 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
29815 Initialize COMMON_CPUID_INDEX_7 element.
29816 * sysdeps/x86_64/multiarch/init-arch.h (bit_RTM): New macro.
29817 (CPUID_RTM): Likewise.
29818 (HAS_RTM): Likewise.
29819 (COMMON_CPUID_INDEX_7): New enum.
29820
298212013-01-03 Andreas Schwab <schwab@linux-m68k.org>
29822
29823 [BZ #14981]
29824 * malloc/mtrace.c (tr_reallochook): If realloc returns NULL when
29825 size is zero, record memory as freed.
29826
298272013-01-03 Andreas Jaeger <aj@suse.de>
29828
29829 * po/ia.po: Add new Interlingua translation.
29830
298312012-01-03 Allan McRae <allan@archlinux.org>
29832
29833 * locale/programs/localedef.c: Fix description of '--posix' flag.
29834
298352013-01-02 Joseph Myers <joseph@codesourcery.com>
29836
29837 * NEWS: Update dates in second copyright notice.
29838 * README: Update copyright dates in example.
29839 * manual/libc.texinfo: Update copyright dates.
29840 * scripts/test-installation.pl: Update copyright date in --version
29841 output.
29842
29843 * hurd/ctty-input.c: Fix copyright notice formatting.
29844 * hurd/ctty-output.c: Likewise.
29845 * hurd/dtable.c: Likewise.
29846 * hurd/hurd-raise.c: Likewise.
29847 * hurd/hurdprio.c: Likewise.
29848 * hurd/msgportdemux.c: Likewise.
29849 * misc/sys/file.h: Likewise.
29850 * misc/sys/ioctl.h: Likewise.
29851 * sysdeps/gnu/netinet/ip_icmp.h: Likewise.
29852 * sysdeps/mach/hurd/chdir.c: Likewise.
29853 * sysdeps/mach/hurd/fchdir.c: Likewise.
29854 * sysdeps/mach/hurd/rename.c: Likewise.
29855 * sysdeps/mach/hurd/rmdir.c: Likewise.
29856 * sysdeps/mach/hurd/seekdir.c: Likewise.
29857 * sysdeps/mach/hurd/setsid.c: Likewise.
29858 * sysdeps/posix/wait3.c: Likewise.
29859
29860 * All files with FSF copyright notices: Update copyright dates
29861 using scripts/update-copyrights.
29862 * intl/plural.c: Regenerated.
29863 * locale/programs/charmap-kw.h: Likewise.
29864 * locale/programs/locfile-kw.h: Likewise.
29865
298662013-01-02 Siddhesh Poyarekar <siddhesh@redhat.com>
29867
29868 * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_twomm1): Fix first
29869 four values.
29870
29871 * sysdeps/ieee754/dbl-64/mpa.c (__mul): Split mantissa
29872 calculation loop and add branch prediction.
29873
29874 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Add assert to
29875 check access beyond bounds of m1np.
29876
29877 * sysdeps/ieee754/dbl-64/mpa.c [! NO__CONST]: New constant
29878 MPTWO.
29879 (__inv): Remove local variable MPTWO to use the global
29880 constant.
29881 * sysdeps/ieee754/dbl-64/mpa.h: Declare MPTWO.
29882 * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove local
29883 variable MPTWO.
29884 * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Make MPHALF and
29885 MP3HALFS static const.
29886
298872013-01-01 David S. Miller <davem@davemloft.net>
29888
29889 * po/ca.po: Update from translation team.
29890
298912013-01-01 Joseph Myers <joseph@codesourcery.com>
29892
29893 * scripts/update-copyrights: New file.
29894 * Makeconfig: Reformat copyright notice.
29895 * ctype/ctype.h: Likewise.
29896 * debug/swprintf_chk.c: Likewise.
29897 * elf/dl-cache.c: Likewise.
29898 * elf/dl-debug.c: Likewise.
29899 * elf/dl-object.c: Likewise.
29900 * grp/initgroups.c: Likewise.
29901 * hurd/Makefile: Likewise.
29902 * hurd/hurd/signal.h: Likewise.
29903 * hurd/hurdfault.c: Likewise.
29904 * hurd/hurdioctl.c: Likewise.
29905 * hurd/hurdlookup.c: Likewise.
29906 * hurd/intr-msg.c: Likewise.
29907 * iconv/gconv_open.c: Likewise.
29908 * libio/swprintf.c: Likewise.
29909 * locale/lc-ctype.c: Likewise.
29910 * locale/nl_langinfo.c: Likewise.
29911 * mach/Machrules: Likewise.
29912 * mach/Makefile: Likewise.
29913 * malloc/obstack.h: Likewise.
29914 * manual/Makefile: Likewise.
29915 * manual/tsort.awk: Likewise.
29916 * misc/bits/stab.def: Likewise.
29917 * nis/nis_print_group_entry.c: Likewise.
29918 * nis/nis_table.c: Likewise.
29919 * nis/nss_compat/compat-pwd.c: Likewise.
29920 * nis/nss_compat/compat-spwd.c: Likewise.
29921 * po/Makefile: Likewise.
29922 * posix/fnmatch.c: Likewise.
29923 * posix/regex.h: Likewise.
29924 * resolv/Makefile: Likewise.
29925 * resolv/nss_dns/dns-network.c: Likewise.
29926 * resolv/res_hconf.c: Likewise.
29927 * scripts/gen-sorted.awk: Likewise.
29928 * soft-fp/soft-fp.h: Likewise.
29929 * stdio-common/printf.h: Likewise.
29930 * stdlib/monetary.h: Likewise.
29931 * stdlib/random.c: Likewise.
29932 * stdlib/random_r.c: Likewise.
29933 * sysdeps/generic/Makefile: Likewise.
29934 * sysdeps/gnu/Makefile: Likewise.
29935 * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
29936 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
29937 * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
29938 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
29939 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
29940 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
29941 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
29942 * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
29943 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
29944 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
29945 * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
29946 * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
29947 * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
29948 * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
29949 * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
29950 * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
29951 * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
29952 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
29953 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
29954 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
29955 * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
29956 * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
29957 * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
29958 * sysdeps/ieee754/ldbl-128/ldbl2mpn.c: Likewise.
29959 * sysdeps/ieee754/ldbl-128/mpn2ldbl.c: Likewise.
29960 * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c: Likewise.
29961 * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: Likewise.
29962 * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Likewise.
29963 * sysdeps/mach/hurd/errnos.awk: Likewise.
29964 * sysdeps/mach/hurd/fork.c: Likewise.
29965 * sysdeps/mach/hurd/getcwd.c: Likewise.
29966 * sysdeps/mach/hurd/i386/trampoline.c: Likewise.
29967 * sysdeps/mach/hurd/mmap.c: Likewise.
29968 * sysdeps/mach/hurd/utimes.c: Likewise.
29969 * sysdeps/mach/hurd/xmknod.c: Likewise.
29970 * sysdeps/posix/profil.c: Likewise.
29971 * sysdeps/posix/readdir_r.c: Likewise.
29972 * sysdeps/powerpc/bits/mathdef.h: Likewise.
29973 * sysdeps/powerpc/bits/setjmp.h: Likewise.
29974 * sysdeps/powerpc/powerpc32/__longjmp-common.S: Likewise.
29975 * sysdeps/powerpc/powerpc32/memset.S: Likewise.
29976 * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
29977 * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Likewise.
29978 * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
29979 * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
29980 * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
29981 * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Likewise.
29982 * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
29983 * sysdeps/pthread/lio_listio.c: Likewise.
29984 * sysdeps/sparc/dl-procinfo.h: Likewise.
29985 * sysdeps/unix/i386/sysdep.S: Likewise.
29986 * sysdeps/unix/sysv/linux/aio_sigqueue.c: Likewise.
29987 * sysdeps/unix/sysv/linux/fstatvfs64.c: Likewise.
29988 * sysdeps/unix/sysv/linux/getdents.c: Likewise.
29989 * sysdeps/unix/sysv/linux/msgctl.c: Likewise.
29990 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
29991 * sysdeps/unix/sysv/linux/semctl.c: Likewise.
29992 * sysdeps/unix/sysv/linux/shmctl.c: Likewise.
29993 * sysdeps/unix/sysv/linux/speed.c: Likewise.
29994 * sysdeps/unix/sysv/linux/xstatconv.h: Likewise.
29995 * sysdeps/wordsize-32/divdi3.c: Likewise.
29996 * time/sys/time.h: Likewise.
29997 * wcsmbs/Makefile: Likewise.
29998
299992013-01-01 David S. Miller <davem@davemloft.net>
30000
30001 * po/fr.po: Update from translation team.
30002
30003 * catgets/gencat.c: Update copyright year.
30004 * csu/version.c: Likewise.
30005 * debug/catchsegv.sh: Likewise.
30006 * debug/pcprofiledump.c: Likewise.
30007 * debug/xtrace.sh: Likewise.
30008 * elf/ldconfig.c: Likewise.
30009 * elf/ldd.bash.in: Likewise.
30010 * elf/pldd.c: Likewise.
30011 * elf/sotruss.ksh: Likewise.
30012 * elf/sprof.c: Likewise.
30013 * iconv/iconv_prog.c: Likewise.
30014 * iconv/iconvconfig.c: Likewise.
30015 * locale/programs/locale.c: Likewise.
30016 * locale/programs/localedef.c: Likewise.
30017 * login/programs/pt_chown.c: Likewise.
30018 * malloc/memusage.sh: Likewise.
30019 * malloc/memusagestat.c: Likewise.
30020 * malloc/mtrace.pl: Likewise.
30021 * nscd/nscd.c: Likewise.
30022 * nss/getent.c: Likewise.
30023 * nss/makedb.c: Likewise.
30024 * posix/getconf.c: Likewise.
30025
300262012-12-31 Siddhesh Poyarekar <siddhesh@redhat.com>
30027
30028 * sysdeps/ieee754/dbl-64/mpa.c (__mp_dbl): Favour normal
30029 numbers.
30030
300312012-12-30 Mike Frysinger <vapier@gentoo.org>
30032
30033 * math/bits/mathcalls.h (modf): Use __nonnull.
30034
300352012-12-29 Siddhesh Poyarekar <siddhesh@redhat.com>
30036
30037 * sysdeps/ieee754/dbl-64/branred.h: Include dla.h.
30038 (split): Use macro CN instead of the bare value.
30039 * sysdeps/ieee754/dbl-64/dla.h: Add comment to explain why CN
30040 could be used.
30041 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Use CN
30042 instead of the bare value.
30043 (power1): Likewise.
30044
300452012-12-28 Siddhesh Poyarekar <siddhesh@redhat.com>
30046
30047 * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove
30048 __ATAN_TWOM.
30049 * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
30050
30051 * sysdeps/ieee754/dbl-64/atnat.h: Replaced constants with
30052 their values.
30053 * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
30054 * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
30055 * sysdeps/ieee754/dbl-64/ulog.h: Likewise.
30056 * sysdeps/ieee754/dbl-64/utan.h: Likewise.
30057
300582012-12-28 Andreas Jaeger <aj@suse.de>
30059
30060 * elf/elf.h (NT_S390_TDB, NT_FILE, NT_SIGINFO): Define. New
30061 values are from Linux 3.7.
30062
30063 * sysdeps/gnu/netinet/tcp.h (TCPI_OPT_SYN_DATA)
30064 (TCPI_OPT_ECN_SEEN): Define. Sync with Linux 3.7.
30065
300662012-12-28 Siddhesh Poyarekar <siddhesh@redhat.com>
30067
30068 * misc/sys/cdefs.h (__glibc_likely): Wrap __builtin_expect for
30069 TRUE case.
30070
30071 * sysdeps/ieee754/dbl-64/mpa.c (norm): Define R as RADIXI.
30072 (norm): Likewise.
30073 * sysdeps/ieee754/dbl-64/mpa2.h: Remove all static const
30074 variables with preprocessor constants.
30075 * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
30076 * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
30077 * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
30078
300792012-12-27 Bruno Haible <bruno@clisp.org>
30080
30081 [BZ #14317]
30082 * string/xpg-strerror.c (__xpg_strerror_r): Optimize, call strlen
30083 only if needed.
30084
300852012-12-27 Siddhesh Poyarekar <siddhesh@redhat.com>
30086
30087 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Eliminate __mpexp_nn
30088 and use variable directly.
30089 * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_nn): Remove.
30090
30091 * sysdeps/ieee754/dbl-64/mpa.c [! NO__CONST]: New constant
30092 MPONE.
30093 * sysdeps/ieee754/dbl-64/mpa.h: Declare MPONE.
30094 * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove local
30095 variable MPONE.
30096 * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
30097 * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
30098 * sysdeps/ieee754/dbl-64/mplog.c (__mplog): Remove mplog.h
30099 include directive. Remove local variable MPONE.
30100 * sysdeps/ieee754/dbl-64/mplog.h: Remove.
30101 * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: Define NO__CONST.
30102 * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
30103
301042012-12-25 David S. Miller <davem@davemloft.net>
30105
30106 * version.h (RELEASE): Set to "development".
30107 (VERSION): Set to "2.17.90".
30108 * NEWS: Add 2.18 section.
30109
301102012-12-21 David S. Miller <davem@davemloft.net>
30111
30112 * po/hr.po: Update from translation team.
30113
301142012-12-21 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
30115
30116 * sysdeps/s390/fpu/libm-test-ulps: Refreshed.
30117
301182012-12-19 Steve Ellcey <sellcey@mips.com>
30119
30120 * NEWS: Mention new memcpy for MIPS.
30121
301222012-12-18 Marcus Shawcroft <marcus.shawcroft@linaro.org>
30123
30124 * manual/contrib.texi (Contributors): Spelling correction.
30125
301262012-12-15 David S. Miller <davem@davemloft.net>
30127
30128 * po/ru.po: Update from translation team.
30129
301302012-12-13 David S. Miller <davem@davemloft.net>
30131
30132 * NEWS: Mention IFUNC testsuite enhancements.
30133
30134 * po/pl.po: Update from translation team.
30135 * po/bg.po: Likewise.
30136
30137 * manual/contrib.texi (Contributors): Update entries for Hongjiu
30138 Lu and Joseph S. Myers. Add entry for Marcus Shawcroft.
30139
301402012-12-11 David S. Miller <davem@davemloft.net>
30141
30142 * po/sv.po: Update from translation team.
30143
30144 * po/vi.po: Update from translation team.
30145
30146 * po/cs.po: Update from translation team.
30147
30148 * po/de.po: Update from translation team.
30149 * po/eo.po: Likewise.
30150 * po/nl.po: Likewise.
30151
301522012-12-11 Siddhesh Poyarekar <siddhesh@redhat.com>
30153
30154 [BZ #14246]
30155 * manual/argp.texi (Argp Helper Functions): Move node to follow
30156 Argp Parsing State.
30157
30158 [BZ #14872]
30159 * manual/conf.texi (Limits on File System Capacity): Mention if
30160 terminating null is included in the max size.
30161
301622012-12-10 Andreas Jaeger <aj@suse.de>
30163
30164 * po/cs.po: Update from translation team.
30165
301662012-12-08 Siddhesh Poyarekar <siddhesh@redhat.com>
30167
30168 * sysdeps/s390/jmpbuf-unwind.h (_jmpbuf_sp): Declare SP as
30169 void pointer and cast to uintptr_t.
30170 * sysdeps/s390/s390-64/memcmp.S: Pick sysdep.h from include
30171 path.
30172 * sysdeps/s390/s390-64/memcpy.S: Likewise.
30173 * sysdeps/s390/s390-64/memset.S: Likewise.
30174
301752012-12-08 Benno Schulenberg <bensberg@justemail.net>
30176
30177 [BZ #14833]
30178 * menual/message.texi (Message Translation): Fix typos.
30179 (Helper programs for gettext): Likewise.
30180
301812012-12-07 Andreas Schwab <schwab@linux-m68k.org>
30182
30183 [BZ #14898]
30184 * include/link.h (FORCED_DYNAMIC_TLS_OFFSET) [NO_TLS_OFFSET == 0]:
30185 Change to -1.
30186
301872012-12-07 David S. Miller <davem@davemloft.net>
30188
30189 * po/libc.pot: Update.
30190
301912012-12-07 Richard Henderson <rth@redhat.com>
30192
30193 [BZ #10114]
30194 * soft-fp/op-common.h (_FP_MUL): Pull computation of R_e from the
30195 normal/normal case to before the switch.
30196 (_FP_DIV): Likewise.
30197
301982012-12-06 Carlos O'Donell <carlos@systemhalted.org>
30199 Mike Frysinger <vapier@gentoo.org>
30200
30201 * sysdeps/unix/sysv/linux/posix_fadvise.c (posix_fadvise): Also
30202 check for __NR_fadvise64_64.
30203
302042012-12-06 Chris Metcalf <cmetcalf@tilera.com>
30205
30206 * sysdeps/generic/fpu_control.h (_FPU_GETCW): Define to set cw to
30207 0, not just to plain "0" as a statement.
30208 (_FPU_SETCW): Define to (void) (cw), rather than doing nothing
30209 with cw.
30210
302112012-12-06 Joseph Myers <joseph@codesourcery.com>
30212
30213 * NEWS: Use sourceware.org in Bugzilla URL.
30214
302152012-12-06 Siddhesh Poyarekar <siddhesh@redhat.com>
30216
30217 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
30218 (INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
30219
30220 * stdio-common/tst-put-error.c (do_test): Add newline to the
30221 padded test to ensure flush.
30222
302232012-12-05 Jeff Law <law@redhat.com>
30224
30225 * sunrpc/etc.rpc (fedfs_admin): Add entry.
30226
302272012-12-05 Joseph Myers <joseph@codesourcery.com>
30228
30229 * README: Don't refer to ports add-on as distributed separately.
30230 Mention AArch64 in list of systems supported in the ports add-on.
30231
30232 * LICENSES: Add more non-FSF copyright and license notices.
30233
30234 * soft-fp/op-common.h (_FP_DECL): Declare X##_s with __attribute__
30235 ((unused)).
30236
30237 * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Include <stdlib.h>.
30238
30239 * stdio-common/tst-put-error.c (do_test): Use 10000000 instead of
30240 10000 as width of padded output.
30241
302422012-12-04 Joseph Myers <joseph@codesourcery.com>
30243
30244 * sysdeps/powerpc/sysdep.h (_SYS_AUXV_H): Define to 1 not empty.
30245
30246 * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Mark
30247 variable LX with __attribute__ ((unused)).
30248 * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
30249 Likewise.
30250 * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (___isnanl): Likewise.
30251 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
30252 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Mark variable LY
30253 with __attribute__ ((unused)).
30254
302552012-12-04 David S. Miller <davem@abraco.davemloft.net>
30256
30257 * sysdeps/generic/memcopy.h: Add multiple inclusion protection.
30258
302592012-12-04 Joseph Myers <joseph@codesourcery.com>
30260
30261 * sysdeps/ieee754/ldbl-opt/Makefile [$(subdir) = math]
30262 (CFLAGS-nldbl-acos.c): New variable.
30263 [$(subdir) = math] (CFLAGS-nldbl-acosh.c): Likewise.
30264 [$(subdir) = math] (CFLAGS-nldbl-asin.c): Likewise.
30265 [$(subdir) = math] (CFLAGS-nldbl-asinh.c): Likewise.
30266 [$(subdir) = math] (CFLAGS-nldbl-atan.c): Likewise.
30267 [$(subdir) = math] (CFLAGS-nldbl-atan2.c): Likewise.
30268 [$(subdir) = math] (CFLAGS-nldbl-atanh.c): Likewise.
30269 [$(subdir) = math] (CFLAGS-nldbl-cabs.c): Likewise.
30270 [$(subdir) = math] (CFLAGS-nldbl-cacos.c): Likewise.
30271 [$(subdir) = math] (CFLAGS-nldbl-cacosh.c): Likewise.
30272 [$(subdir) = math] (CFLAGS-nldbl-carg.c): Likewise.
30273 [$(subdir) = math] (CFLAGS-nldbl-casin.c): Likewise.
30274 [$(subdir) = math] (CFLAGS-nldbl-casinh.c): Likewise.
30275 [$(subdir) = math] (CFLAGS-nldbl-catan.c): Likewise.
30276 [$(subdir) = math] (CFLAGS-nldbl-catanh.c): Likewise.
30277 [$(subdir) = math] (CFLAGS-nldbl-cbrt.c): Likewise.
30278 [$(subdir) = math] (CFLAGS-nldbl-ccos.c): Likewise.
30279 [$(subdir) = math] (CFLAGS-nldbl-ccosh.c): Likewise.
30280 [$(subdir) = math] (CFLAGS-nldbl-ceil.c): Likewise.
30281 [$(subdir) = math] (CFLAGS-nldbl-cexp.c): Likewise.
30282 [$(subdir) = math] (CFLAGS-nldbl-cimag.c): Likewise.
30283 [$(subdir) = math] (CFLAGS-nldbl-clog.c): Likewise.
30284 [$(subdir) = math] (CFLAGS-nldbl-clog10.c): Likewise.
30285 [$(subdir) = math] (CFLAGS-nldbl-conj.c): Likewise.
30286 [$(subdir) = math] (CFLAGS-nldbl-copysign.c): Likewise.
30287 [$(subdir) = math] (CFLAGS-nldbl-cos.c): Likewise.
30288 [$(subdir) = math] (CFLAGS-nldbl-cosh.c): Likewise.
30289 [$(subdir) = math] (CFLAGS-nldbl-cpow.c): Likewise.
30290 [$(subdir) = math] (CFLAGS-nldbl-cproj.c): Likewise.
30291 [$(subdir) = math] (CFLAGS-nldbl-creal.c): Likewise.
30292 [$(subdir) = math] (CFLAGS-nldbl-csin.c): Likewise.
30293 [$(subdir) = math] (CFLAGS-nldbl-csinh.c): Likewise.
30294 [$(subdir) = math] (CFLAGS-nldbl-csqrt.c): Likewise.
30295 [$(subdir) = math] (CFLAGS-nldbl-ctan.c): Likewise.
30296 [$(subdir) = math] (CFLAGS-nldbl-ctanh.c): Likewise.
30297 [$(subdir) = math] (CFLAGS-nldbl-drem.c): Likewise.
30298 [$(subdir) = math] (CFLAGS-nldbl-erf.c): Likewise.
30299 [$(subdir) = math] (CFLAGS-nldbl-erfc.c): Likewise.
30300 [$(subdir) = math] (CFLAGS-nldbl-exp.c): Likewise.
30301 [$(subdir) = math] (CFLAGS-nldbl-exp10.c): Likewise.
30302 [$(subdir) = math] (CFLAGS-nldbl-exp2.c): Likewise.
30303 [$(subdir) = math] (CFLAGS-nldbl-expm1.c): Likewise.
30304 [$(subdir) = math] (CFLAGS-nldbl-fabs.c): Likewise.
30305 [$(subdir) = math] (CFLAGS-nldbl-fdim.c): Likewise.
30306 [$(subdir) = math] (CFLAGS-nldbl-finite.c): Likewise.
30307 [$(subdir) = math] (CFLAGS-nldbl-floor.c): Likewise.
30308 [$(subdir) = math] (CFLAGS-nldbl-fma.c): Likewise.
30309 [$(subdir) = math] (CFLAGS-nldbl-fmax.c): Likewise.
30310 [$(subdir) = math] (CFLAGS-nldbl-fmin.c): Likewise.
30311 [$(subdir) = math] (CFLAGS-nldbl-fmod.c): Likewise.
30312 [$(subdir) = math] (CFLAGS-nldbl-frexp.c): Likewise.
30313 [$(subdir) = math] (CFLAGS-nldbl-gamma.c): Likewise.
30314 [$(subdir) = math] (CFLAGS-nldbl-hypot.c): Likewise.
30315 [$(subdir) = math] (CFLAGS-nldbl-ilogb.c): Likewise.
30316 [$(subdir) = math] (CFLAGS-nldbl-isinf.c): Likewise.
30317 [$(subdir) = math] (CFLAGS-nldbl-isnan.c): Likewise.
30318 [$(subdir) = math] (CFLAGS-nldbl-j0.c): Likewise.
30319 [$(subdir) = math] (CFLAGS-nldbl-j1.c): Likewise.
30320 [$(subdir) = math] (CFLAGS-nldbl-jn.c): Likewise.
30321 [$(subdir) = math] (CFLAGS-nldbl-ldexp.c): Likewise.
30322 [$(subdir) = math] (CFLAGS-nldbl-lgamma.c): Likewise.
30323 [$(subdir) = math] (CFLAGS-nldbl-lgamma_r.c): Likewise.
30324 [$(subdir) = math] (CFLAGS-nldbl-llrint.c): Likewise.
30325 [$(subdir) = math] (CFLAGS-nldbl-llround.c): Likewise.
30326 [$(subdir) = math] (CFLAGS-nldbl-log.c): Likewise.
30327 [$(subdir) = math] (CFLAGS-nldbl-log10.c): Likewise.
30328 [$(subdir) = math] (CFLAGS-nldbl-log1p.c): Likewise.
30329 [$(subdir) = math] (CFLAGS-nldbl-log2.c): Likewise.
30330 [$(subdir) = math] (CFLAGS-nldbl-logb.c): Likewise.
30331 [$(subdir) = math] (CFLAGS-nldbl-lrint.c): Likewise.
30332 [$(subdir) = math] (CFLAGS-nldbl-lround.c): Likewise.
30333 [$(subdir) = math] (CFLAGS-nldbl-modf.c): Likewise.
30334 [$(subdir) = math] (CFLAGS-nldbl-nan.c): Likewise.
30335 [$(subdir) = math] (CFLAGS-nldbl-nearbyint.c): Likewise.
30336 [$(subdir) = math] (CFLAGS-nldbl-nextafter.c): Likewise.
30337 [$(subdir) = math] (CFLAGS-nldbl-nexttoward.c): Likewise.
30338 [$(subdir) = math] (CFLAGS-nldbl-nexttowardf.c): Likewise.
30339 [$(subdir) = math] (CFLAGS-nldbl-pow.c): Likewise.
30340 [$(subdir) = math] (CFLAGS-nldbl-pow10.c): Likewise.
30341 [$(subdir) = math] (CFLAGS-nldbl-remainder.c): Likewise.
30342 [$(subdir) = math] (CFLAGS-nldbl-remquo.c): Likewise.
30343 [$(subdir) = math] (CFLAGS-nldbl-rint.c): Likewise.
30344 [$(subdir) = math] (CFLAGS-nldbl-round.c): Likewise.
30345 [$(subdir) = math] (CFLAGS-nldbl-scalb.c): Likewise.
30346 [$(subdir) = math] (CFLAGS-nldbl-scalbln.c): Likewise.
30347 [$(subdir) = math] (CFLAGS-nldbl-scalbn.c): Likewise.
30348 [$(subdir) = math] (CFLAGS-nldbl-significand.c): Likewise.
30349 [$(subdir) = math] (CFLAGS-nldbl-sin.c): Likewise.
30350 [$(subdir) = math] (CFLAGS-nldbl-sincos.c): Likewise.
30351 [$(subdir) = math] (CFLAGS-nldbl-sinh.c): Likewise.
30352 [$(subdir) = math] (CFLAGS-nldbl-sqrt.c): Likewise.
30353 [$(subdir) = math] (CFLAGS-nldbl-tan.c): Likewise.
30354 [$(subdir) = math] (CFLAGS-nldbl-tanh.c): Likewise.
30355 [$(subdir) = math] (CFLAGS-nldbl-tgamma.c): Likewise.
30356 [$(subdir) = math] (CFLAGS-nldbl-trunc.c): Likewise.
30357 [$(subdir) = math] (CFLAGS-nldbl-y0.c): Likewise.
30358 [$(subdir) = math] (CFLAGS-nldbl-y1.c): Likewise.
30359 [$(subdir) = math] (CFLAGS-nldbl-yn.c): Likewise.
30360
30361 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
30362 (INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
30363
30364 [BZ #14914]
30365 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Clear
30366 whole low double instead of just low 47 bits when splitting values
30367 into two parts.
30368
303692012-12-03 Allan McRae <allan@archlinux.org>
30370
30371 * manual/stdio.texi (Predefined Printf Handlers): Remove
30372 @hsep and @vsep usage.
30373
303742012-12-03 Mike Frysinger <vapier@gentoo.org>
30375
30376 * bits/byteswap.h [__GNUC__]: Change __GNUC_PREREQ from 4.2 to 4.3.
30377 * sysdeps/x86/bits/byteswap.h [__GNUC__]: Likewise.
30378
303792012-12-03 Jeff Law <law@redhat.com>
30380
30381 * time/sys/time.h (settimeofday): Do not mark TV argument
30382 as __nonnull.
30383
303842012-12-01 Mike Frysinger <vapier@gentoo.org>
30385
30386 * libio/fileops.c (_IO_new_file_close_it): Do not always flush
30387 when currently writing and seek to current position when not.
30388 * libio/Makefile (tests): Remove bug-fclose1.
30389 * libio/bug-fclose1.c: Delete.
30390
303912012-12-01 Joseph Myers <joseph@codesourcery.com>
30392
30393 * manual/arith.texi (feenableexcept): Fix typo.
30394 (fedisableexcept): Likewise.
30395
303962012-11-30 Roland McGrath <roland@hack.frob.com>
30397
30398 * sysdeps/powerpc/powerpc64/entry.h (TEXT_START): Define using a
30399 second, differently-typed declaration, rather than a cast.
30400
304012012-11-30 Siddhesh Poyarekar <siddhesh@redhat.com>
30402
30403 * sunrpc/rpc/svc.h (__svc_accept_failed): Move declaration...
30404 * include/rpc/svc.h: ... here.
30405
304062012-11-30 Aurelien Jarno <aurel32@debian.org>
30407
30408 [BZ #13013]
30409 * resolv/res_query.c(__libc_res_nquery): Assign hp and hp2
30410 depending n and resplen2 to catch cases where answer
30411 equals answerp2.
30412
304132012-11-29 Carlos O'Donell <carlos@systemhalted.org>
30414
30415 * elf/get-dynamic-info.h (elf_get_dynamic_info): Warn
30416 for unsupported DF_1_* bits when DL_DEBUG_FILES is set.
30417
304182012-11-29 Mike Frysinger <vapier@gentoo.org>
30419
30420 * sysdeps/unix/sysv/linux/clock_getcpuclockid.c (HAS_CPUCLOCK): Delete.
30421
304222012-11-29 Roland McGrath <roland@hack.frob.com>
30423
30424 * inet/tst-inet6_rth.c (do_test): Use a union rather than type punning.
30425
304262012-11-28 Jeff Law <law@redhat.com>
30427
30428 [BZ #13761]
30429 * nscd/grpcache.c (cache_addgr): Rename alloca_used to
30430 dataset_temporary. Track alloca usage into alloca_used.
30431 If dataset is large allocate and release it via malloc/free.
30432
304332012-06-04 Florian Weimer <fweimer@redhat.com>
30434
30435 [BZ #14197]
30436 * debug/test-strcpy_chk.c: Mention __chk_fail ABI test.
30437
304382012-11-28 David S. Miller <davem@davemloft.net>
30439
30440 * sysdeps/sparc/fpu/libm-test-ulps: Update.
30441
304422012-11-28 Joseph Myers <joseph@codesourcery.com>
30443
30444 [BZ #14803]
30445 * sysdeps/ieee754/ldbl-96/e_asinl.c (pio2_hi): Use hex float value
30446 of pi/2 rounded to nearest to 64 bits.
30447 (pio2_lo): Use hex float value of pi/2 - pio2_hi rounded to
30448 nearest to 64 bits.
30449 (pio4_hi): Use hex float value of pi/4 rounded to nearest to 64
30450 bits.
30451
304522012-11-28 Jeff Law <law@redhat.com>
30453 Martin Osvald <mosvald@redhat.com>
30454
30455 [BZ #14889]
30456 * sunrpc/rpc/svc.h (__svc_accept_failed): New prototype.
30457 * sunrpc/svc.c: Include time.h.
30458 (__svc_accept_failed): New function.
30459 * sunrpc/svc_tcp.c (rendezvous_request): If the accept fails for
30460 any reason other than EINTR, call __svc_accept_failed.
30461 * sunrpc/svc_udp.c (svcudp_recv): Similarly.
30462 * sunrpc/svc_unix.c (rendezvous_request): Similarly.
30463
304642012-11-28 Andreas Schwab <schwab@suse.de>
30465
30466 * scripts/abilist.awk: Also handle indirect functions in .opd
30467 section.
30468
304692012-11-28 Joseph Myers <joseph@codesourcery.com>
30470
30471 [BZ #13881]
30472 * sysdeps/x86/fpu/powl_helper.c: New file.
30473 * sysdeps/x86/fpu/Makefile: Likewise.
30474 * sysdeps/i386/fpu/e_powl.S (limit): Remove object.
30475 (p3): New object.
30476 (__ieee754_powl): Use __powl_helper for finite arguments except
30477 integer exponents below 8.
30478 * sysdeps/x86_64/fpu/e_powl.S (limit): Remove object.
30479 (p3): New object.
30480 (__ieee754_powl): Use __powl_helper for finite arguments except
30481 integer exponents below 8.
30482 * math/libm-test.inc (pow_test): Add more tests and enable some
30483 previously disabled tests.
30484 * sysdeps/i386/fpu/libm-test-ulps: Update.
30485 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
30486
304872012-11-28 Siddhesh Poyarekar <siddhesh@redhat.com>
30488 Carlos O'Donell <carlos_odonell@mentor.com>
30489
30490 * nss/makedb.c (is_prime): Assert that input is odd and greater
30491 than 4. Note that fact in a comment too.
30492 (next_prime): Add 4 to input.
30493
304942012-11-27 Siddhesh Poyarekar <siddhesh@redhat.com>
30495
30496 [BZ #11741]
30497 * libio/Makefile (tests): Add test case tst-fwrite-error.
30498 * libio/iofwrite.c (_IO_fwrite): Return 0 on EOF.
30499 * libio/iofwrite_u.c (fwrite_unlocked): Likewise.
30500 * libio/tst-fwrite-error.c: New test case.
30501
305022012-11-26 H.J. Lu <hongjiu.lu@intel.com>
30503
30504 * elf/dl-load.c (_dl_map_object_from_fd): Cast to uintptr_t
30505 before casting to void *.
30506 * include/libc-internal.h (__pointer_type): New macro.
30507 (__integer_if_pointer_type_sub): Likewise.
30508 (__integer_if_pointer_type): Likewise.
30509 (cast_to_integer): Likewise.
30510 * sysdeps/x86_64/bits/atomic.h: Include <libc-internal.h>.
30511 (__arch_c_compare_and_exchange_val_64_acq): Use cast_to_integer
30512 before casting to atomic64_t.
30513 (atomic_exchange_acq): Likewise.
30514 (__arch_exchange_and_add_body): Likewise.
30515 (__arch_add_body): Likewise.
30516 (atomic_add_negative): Likewise.
30517 (atomic_add_zero): Likewise.
30518
305192012-11-26 Joseph Myers <joseph@codesourcery.com>
30520
30521 * sysdeps/generic/unwind-dw2-fde.c (get_pc_begin): New function.
30522 (fde_unencoded_compare): Use get_pc_begin instead of type-punning.
30523 (add_fdes): Likewise.
30524 (linear_search_fdes): Likewise.
30525 (binary_search_unencoded_fdes): Likewise.
30526
305272012-11-26 Andreas Schwab <schwab@linux-m68k.org>
30528
30529 * elf/sotruss.ksh: Correctly locate argument of -F and -T options.
30530
305312012-11-24 Adam Conrad <adconrad@0c3.net>
30532
30533 * configure.in: Autodetect C++ header directories.
30534 * configure: Regenerated.
30535
305362012-11-23 Mike Frysinger <vapier@gentoo.org>
30537
30538 * elf/Makefile ($(objpfx)ld.so): Change readelf to $(READELF).
30539
305402012-11-23 Andreas Schwab <schwab@linux-m68k.org>
30541
30542 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
30543
305442012-11-22 Joseph Myers <joseph@codesourcery.com>
30545
30546 * math/libm-test.inc (fma_test_towardzero) [TEST_LDOUBLE &&
30547 LDBL_MANT_DIG == 106]: Disable some tests.
30548 (fma_test_downward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
30549 Likewise.
30550 (fma_test_upward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
30551 Likewise.
30552
30553 [BZ #14871]
30554 * sysdeps/ieee754/ldbl-128ibm/s_atanl.c (__atanl): Return the
30555 input for small inputs. Return +/- pi/2 for large inputs.
30556 * math/libm-test.inc (atan_test): Add more tests.
30557
30558 * sysdeps/generic/unwind-dw2-fde-glibc.c
30559 (_Unwind_IteratePhdrCallback): Declare P_DYNAMIC with
30560 __attribute__ ((unused)).
30561
30562 [BZ #14645]
30563 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c (__fmal): Compute result as
30564 x * y if x and y are nonzero and z is zero.
30565
30566 [BZ #14811]
30567 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Saturate
30568 nonzero exponents with absolute value below 0x1p-117 to +/-
30569 0x1p-117.
30570
30571 [BZ #14869]
30572 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Scale
30573 up arguments below 2**-450, not just those below 2**-500.
30574 * math/libm-test.inc (hypot_test): Add another test.
30575
30576 [BZ #14868]
30577 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl):
30578 Return a+b for ratio over 2**120, not 2**60.
30579 * math/libm-test.inc (hypot_test): Add another test.
30580
30581 * math/libm-test.inc (clog_test): Use
30582 UNDERFLOW_EXCEPTION_LDOUBLE_IBM on two tests.
30583 (clog10_test): Likewise.
30584
30585 [BZ #6778]
30586 * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (big): Change to 1e290L.
30587
305882012-11-22 Andreas Schwab <schwab@suse.de>
30589
30590 * sysdeps/i386/fpu/libm-test-ulps: Update.
30591
305922012-11-22 Pino Toscano <toscano.pino@tiscali.it>
30593
30594 * sysdeps/x86_64/multiarch/test-multiarch.c (get_cpuinfo): Terminate
30595 printf output with newline.
30596
305972012-11-21 H.J. Lu <hongjiu.lu@intel.com>
30598
30599 [BZ #14865]
30600 * aclocal.m4 (LIBC_LINKER_FEATURE): New macro.
30601 * configure.in: Use LIBC_LINKER_FEATURE to check -z nodelete,
30602 -z nodlopen, -z initfirst and -z execstack support.
30603 * configure: Regenerated.
30604
30605 * elf/elf.h (DF_1_NODIRECT): New macro.
30606 (DF_1_IGNMULDEF): Likewise.
30607 (DF_1_NOKSYMS): Likewise.
30608 (DF_1_NOHDR): Likewise.
30609 (DF_1_EDITED): Likewise.
30610 (DF_1_NORELOC): Likewise.
30611 (DF_1_SYMINTPOSE): Likewise.
30612 (DF_1_GLOBAUDIT): Likewise.
30613 (DF_1_SINGLETON): Likewise.
30614 * elf/get-dynamic-info.h (elf_get_dynamic_info): Assert
30615 DT_1_SUPPORTED_MASK bits.
30616 * include/elf.h (DT_1_SUPPORTED_MASK): New macro.
30617
306182012-11-20 Carlos O'Donell <carlos_odonell@mentor.com>
30619
30620 * sysdeps/unix/make-syscalls.sh: Document prefixes.
30621
306222012-11-20 Thomas Schwinge <thomas@codesourcery.com>
30623
30624 * sysdeps/sh/dl-machine.h (ELF_MACHINE_RUNTIME_FIXUP_PARAMS): New
30625 macro.
30626
30627 * sysdeps/unix/sysv/linux/bits/socket.h (struct mmsghdr, recvmmsg)
30628 (sendmmsg): Move declarations...
30629 * socket/sys/socket.h: ... here.
30630 * sysdeps/unix/sysv/linux/recvmmsg.c [!defined __NR_recvmmsg &&
30631 !defined __NR_socketcall] (recvmmsg): Move ENOSYS stub into and
30632 include it from...
30633 * socket/recvmmsg.c: ... this new file.
30634 * sysdeps/unix/sysv/linux/internal_sendmmsg.S [__ASSUME_SENDMMSG]
30635 (sendmmsg): Rename to __sendmmsg, create weak alias and make
30636 definition of __sendmmsg hidden.
30637 * sysdeps/unix/sysv/linux/sendmmsg.c (sendmmsg): Likewise.
30638 [!defined __NR_sendmmsg && !defined __NR_socketcall] (sendmmsg):
30639 Move ENOSYS stub into and include it from...
30640 * socket/sendmmsg.c: ... this new file.
30641 * sysdeps/unix/sysv/linux/Makefile [subdir=socket]
30642 (sysdep_routines): Move recvmmsg and sendmmsg...
30643 * socket/Makefile (routines): ... here.
30644 * socket/Versions (GLIBC_2.17): Add recvmmsg and sendmmsg.
30645 (GLIBC_PRIVATE): Add __sendmmsg.
30646 * include/sys/socket.h (__sendmmsg): Add declarations.
30647 * resolv/res_send.c (send_dg): Invoke __sendmmsg instead of
30648 sendmmsg.
30649
306502012-11-20 Joseph Myers <joseph@codesourcery.com>
30651
30652 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Mark
30653 variable I1 with __attribute__ ((unused)).
30654 * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
30655
306562012-11-19 Joseph Myers <joseph@codesourcery.com>
30657
30658 * stdio-common/_itowa.c (_itowa) [BITS_PER_MP_LIMB == 64]: Declare
30659 DUMMY variables with __attribute__ ((unused)).
30660
30661 * bits/byteswap.h: Include <bits/types.h>.
30662 (__bswap_64): Use __uint64_t instead of unsigned long long int.
30663
306642012-11-19 Pino Toscano <toscano.pino@tiscali.it>
30665
30666 * sysdeps/mach/hurd/ptsname.c (ptsname): Change the type of PEERNAME to
30667 string_t. Do not manually set errno.
30668 (__ptsname_r): Change the type of PEERNAME to string_t, and check its
30669 length with __strnlen. Make sure to both set errno and return it on
30670 failure.
30671
306722012-11-19 David S. Miller <davem@davemloft.net>
30673
30674 With help from Joseph Myers.
30675 * sysdeps/ieee754/ldbl-128/s_atanl.c (__atanl): Handle tiny and
30676 very large arguments properly.
30677 * math/libm-test.inc (atan_test): New tests.
30678 (atan2_test): New tests.
30679 * sysdeps/sparc/fpu/libm-test-ulps: Update.
30680 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
30681
306822012-11-19 Joseph Myers <joseph@codesourcery.com>
30683
30684 [BZ #14856]
30685 * posix/bits/posix1_lim.h [!__USE_XOPEN2K] (_POSIX_TZNAME_MAX):
30686 Define to 3.
30687
30688 * conform/data/errno.h-data [POSIX] (EADDRINUSE): Do not expect.
30689 [POSIX] (EADDRNOTAVAIL): Likewise.
30690 [POSIX] (EAFNOSUPPORT): Likewise.
30691 [POSIX] (EALREADY): Likewise.
30692 [POSIX] (ECONNABORTED): Likewise.
30693 [POSIX] (ECONNREFUSED): Likewise.
30694 [POSIX] (ECONNRESET): Likewise.
30695 [POSIX] (EDESTADDRREQ): Likewise.
30696 [POSIX] (EDQUOT): Likewise.
30697 [POSIX] (EHOSTUNREACH): Likewise.
30698 [POSIX] (EIDRM): Likewise.
30699 [POSIX] (EISCONN): Likewise.
30700 [POSIX] (ELOOP): Likewise.
30701 [POSIX] (EMULTIHOP): Likewise.
30702 [POSIX] (ENETDOWN): Likewise.
30703 [POSIX] (ENETUNREACH): Likewise.
30704 [POSIX] (ENOBUFS): Likewise.
30705 [POSIX] (ENODATA): Likewise.
30706 [POSIX] (ENOLINK): Likewise.
30707 [POSIX] (ENOMSG): Likewise.
30708 [POSIX] (ENOPROTOOPT): Likewise.
30709 [POSIX] (ENOSR): Likewise.
30710 [POSIX] (ENOSTR): Likewise.
30711 [POSIX] (ENOTCONN): Likewise.
30712 [POSIX] (ENOTSOCK): Likewise.
30713 [POSIX] (EOPNOTSUPP): Likewise.
30714 [POSIX] (EOVERFLOW): Likewise.
30715 [POSIX] (EPROTO): Likewise.
30716 [POSIX] (EPROTONOSUPPORT): Likewise.
30717 [POSIX] (EPROTOTYPE): Likewise.
30718 [POSIX] (ESTALE): Likewise.
30719 [POSIX] (ETIME): Likewise.
30720 [POSIX] (ETXTBSY): Likewise.
30721 [POSIX] (EWOULDBLOCK): Likewise.
30722 [!ISO && !ISO99 && !ISO11] (E*): Do not allow.
30723 * conform/data/fcntl.h-data [POSIX] (SEEK_SET): Allow.
30724 [POSIX] (SEEK_CUR): Likewise.
30725 [POSIX] (SEEK_END): Likewise.
30726 [POSIX || UNIX98] (mode_t): Do not require.
30727 [POSIX] (off_t): Likewise.
30728 [POSIX] (pid_t): Likewise.
30729 [POSIX] (sys/stat.h): Do not allow header.
30730 [POSIX] (unistd.h): Likewise.
30731 [!ISO && !ISO99 && !ISO11] (timespec): Do not allow.
30732 [!ISO && !ISO99 && !ISO11] (tv_nsec): Likewise.
30733 [!ISO && !ISO99 && !ISO11] (tv_sec): Likewise.
30734 * conform/data/locale.h-data [POSIX] (LC_MESSAGES): Do not
30735 require.
30736 * conform/data/mqueue.h-data [!ISO && !ISO99 && !ISO11] (struct
30737 sigevent): Specify elements.
30738 [XOPEN2K8 || POSIX2008] (struct sigevent): Remove duplicate type
30739 entry.
30740 [!ISO && !ISO99 && !ISO11] (mq_*): Allow.
30741 [!ISO && !ISO99 && !ISO11] (MQ_*): Likewise.
30742
30743 * conform/data/cpio.h-data [POSIX]: Disable whole file.
30744 * conform/data/glob.h-data [POSIX] (GLOB_NOSYS): Do not expect.
30745 * conform/data/limits.h-data [!ISO && !ISO99 && !ISO11]
30746 (AIO_LIST_MAX): Change to AIO_LISTIO_MAX.
30747 [!ISO && !ISO99 && !ISO11] (ATEXT_MAX): Remove.
30748 [!ISO && !ISO99 && !ISO11 && !POSIX && !XPG3] (ATEXIT_MAX): Allow.
30749 [POSIX || POSIX2008 || XPG3] (IOV_MAX): Do not allow.
30750 [POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Likewise.
30751 [!ISO && !ISO99 && !ISO11] (MQ_PRIO_MAX): Allow.
30752 [!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Remove duplicate entry.
30753 [POSIX || XPG3 || XPG4 || UNIX98] (SS_REPL_MAX): Do not allow.
30754 [POSIX || XPG3 || XPG4 || UNIX98] (SYMLOOP_MAX): Likewise.
30755 [POSIX || XPG3 || XPG4] (FILESIZEBITS): Likewise.
30756 [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_ALLOC_SIZE_MIN):
30757 Likewise.
30758 [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_INCR_XFER_SIZE):
30759 Likewise.
30760 [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_MAX_XFER_SIZE):
30761 Likewise.
30762 [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_XFER_ALIGN):
30763 Likewise.
30764 [POSIX || XPG3 || XPG4 || UNIX98] (SYMLINK_MAX): Likewise.
30765 [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SS_REPL_MAX): Likewise.
30766 [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLINK_MAX): Likewise.
30767 [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLOOP_MAX): Likewise.
30768 [!ISO && !ISO99 && !ISO11] (BC_BASE_MAX): Use macro-constant.
30769 Specify lower bound on value.
30770 [!ISO && !ISO99 && !ISO11] (BC_DIM_MAX): Likewise.
30771 [!ISO && !ISO99 && !ISO11] (BC_SCALE_MAX): Likewise.
30772 [!ISO && !ISO99 && !ISO11] (BC_STRING_MAX): Likewise.
30773 [!ISO && !ISO99 && !ISO11] (COLL_WEIGHTS_MAX): Likewise.
30774 [!ISO && !ISO99 && !ISO11] (EXPR_NEST_MAX): Likewise.
30775 [!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Likewise
30776 [POSIX || XPG3 || XPG4] (CHARCLASS_NAME_MAX): Do not allow.
30777 [!ISO && !ISO99 && !ISO11] (_POSIX_CLOCKRES_MIN): Specify exact
30778 value.
30779 [!ISO && !ISO99 && !ISO11] (_POSIX_AIO_LISTIO_MAX): Do not specify
30780 as optional.
30781 [!ISO && !ISO99 && !ISO11] (_POSIX_AIO_MAX): Likewise.
30782 [!ISO && !ISO99 && !ISO11] (_POSIX_ARG_MAX): Likewise.
30783 [!ISO && !ISO99 && !ISO11] (_POSIX_CHILD_MAX): Likewise.
30784 [!ISO && !ISO99 && !ISO11] (_POSIX_DELAYTIMER_MAX): Likewise.
30785 [!ISO && !ISO99 && !ISO11] (_POSIX_LINK_MAX): Likewise.
30786 [!ISO && !ISO99 && !ISO11] (_POSIX_LOGIN_NAME_MAX): Likewise.
30787 [!ISO && !ISO99 && !ISO11] (_POSIX_MAX_CANON): Likewise.
30788 [!ISO && !ISO99 && !ISO11] (_POSIX_MAX_INPUT): Likewise.
30789 [!ISO && !ISO99 && !ISO11] (_POSIX_MQ_OPEN_MAX): Likewise.
30790 [!ISO && !ISO99 && !ISO11] (_POSIX_MQ_PRIO_MAX): Likewise.
30791 [!ISO && !ISO99 && !ISO11] (_POSIX_NAME_MAX): Likewise.
30792 [!ISO && !ISO99 && !ISO11] (_POSIX_NGROUPS_MAX): Likewise.
30793 [!ISO && !ISO99 && !ISO11] (_POSIX_OPEN_MAX): Likewise.
30794 [!ISO && !ISO99 && !ISO11] (_POSIX_PATH_MAX): Likewise.
30795 [!ISO && !ISO99 && !ISO11] (_POSIX_PIPE_BUF): Likewise.
30796 [!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Remove duplicate
30797 entry.
30798 [!ISO && !ISO99 && !ISO11] (_POSIX_RTSIG_MAX): Do not specify as
30799 optional.
30800 [!ISO && !ISO99 && !ISO11] (_POSIX_SEM_NSEMS_MAX): Likewise.
30801 [!ISO && !ISO99 && !ISO11] (_POSIX_SEM_VALUE_MAX): Likewise.
30802 [!ISO && !ISO99 && !ISO11] (_POSIX_SIGQUEUE_MAX): Likewise.
30803 [!ISO && !ISO99 && !ISO11] (_POSIX_SSIZE_MAX): Likewise.
30804 [!ISO && !ISO99 && !ISO11] (_POSIX_STREAM_MAX): Likewise.
30805 [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_DESTRUCTOR_ITERATIONS):
30806 Likewise.
30807 [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_KEYS_MAX): Likewise.
30808 [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_THREADS_MAX): Likewise.
30809 [!ISO && !ISO99 && !ISO11] (_POSIX_TIMER_MAX): Likewise.
30810 [!ISO && !ISO99 && !ISO11] (_POSIX_TTY_NAME_MAX): Likewise.
30811 [!ISO && !ISO99 && !ISO11] (_POSIX_TZNAME_MAX): Likewise. Give
30812 value as 3 for [POSIX || XPG3 || XPG4 || UNIX98].
30813 [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_BASE_MAX): Do not specify
30814 as optional.
30815 [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_DIM_MAX): Likewise.
30816 [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_SCALE_MAX): Likewise.
30817 [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_STRING_MAX): Likewise.
30818 [!ISO && !ISO99 && !ISO11] (_POSIX2_CHARCLASS_NAME_MAX):
30819 Likewise. Do not allow for [POSIX || XPG3 || XPG4 || UNIX98].
30820 [!ISO && !ISO99 && !ISO11] (_POSIX2_COLL_WEIGHTS_MAX): Do not
30821 specify as optional.
30822 [!ISO && !ISO99 && !ISO11] (_POSIX2_EXPR_NEST_MAX): Likewise.
30823 [!ISO && !ISO99 && !ISO11] (_POSIX2_LINE_MAX): Likewise.
30824 [!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Likewise.
30825 [POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Do not allow.
30826 [POSIX || XPG3] (NL_ARGMAX): Do not allow.
30827 [XPG3] (NL_LANGMAX): Likewise.
30828 [POSIX || XPG3] (NL_MSGMAX): Likewise.
30829 [POSIX || XPG3] (NL_NMAX): Likewise.
30830 [POSIX || XPG3] (NL_SETMAX): Likewise.
30831 [POSIX || XPG3] (NL_TEXTMAX): Likewise.
30832 [XPG3] (NZERO): Likewise.
30833 [XPG4 || UNIX98] (TMP_MAX): Only enable for these conditions.
30834 [POSIX || XPG3 || XPG4 || UNIX98] (*_MIN): Do not allow.
30835 [!ISO && !ISO99 && !ISO11] (*_t): Allow.
30836 * conform/data/regex.h-data [!ISO && !ISO99 && !ISO11]
30837 (REG_ERANGE): Expect.
30838 * conform/data/stdio.h-data [POSIX] (L_cuserid): Use
30839 optional-constant.
30840 [POSIX || XOPEN2K || XOPEN2K8 || POSIX2008] (getchar_unlocked):
30841 Use (void) in prototype.
30842 [POSIX] (*_t): Allow.
30843 * conform/data/sys/times.h-data [POSIX]: Enable whole file.
30844 * conform/data/wordexp.h-data [!ISO && !ISO99 && !ISO11]
30845 (WRDE_BADVAL): Expect.
30846
30847 * conform/data/fcntl.h-data [XPG3 || XPG4] (O_DSYNC): Do not
30848 expect.
30849 [XPG3 || XPG4] (O_RSYNC): Likewise.
30850 * conform/data/signal.h-data [XPG3 || XPG4] (pthread_kill):
30851 Likewise.
30852 [XPG3 || XPG4] (pthread_sigmask): Likewise.
30853 [XPG3 || XPG4] (sigqueue): Likewise.
30854 [XPG3 || XPG4] (sigtimedwait): Likewise.
30855 [XPG3 || XPG4] (sigwaitinfo): Likewise.
30856 * conform/data/stdio.h-data [XPG3 || XPG4] (snprintf): Likewise.
30857 [XPG3 || XPG4] (vsnprintf): Likewise.
30858 * conform/data/sys/stat.h-data [XPG3 || XPG4] (blkcnt_t):
30859 Likewise.
30860 [XPG3 || XPG4] (blksize_t): Likewise.
30861 * conform/data/time.h-data [XPG3 || XPG4] (struct timespec):
30862 Likewise.
30863 [XPG3 || XPG4] (CLOCK_PROCESS_CPUTIME_ID): Likewise.
30864 [XPG3 || XPG4] (CLOCK_THREAD_CPUTIME_ID): Likewise.
30865 [XPG3 || XPG4] (struct itimerspec): Likewise.
30866 [XPG3 || XPG4] (CLOCK_REALTIME): Likewise.
30867 [XPG3 || XPG4] (TIMER_ABSTIME): Likewise.
30868 [XPG3 || XPG4] (CLOCK_MONOTONIC): Likewise.
30869 [XPG3 || XPG4] (clockid_t): Likewise.
30870 [XPG3 || XPG4] (timer_t): Likewise.
30871 [XPG3 || XPG4] (clock_getres): Likewise.
30872 [XPG3 || XPG4] (clock_gettime): Likewise.
30873 [XPG3 || XPG4] (clock_settime): Likewise.
30874 [XPG3 || XPG4] (nanosleep): Likewise.
30875 [XPG3 || XPG4] (timer_create): Likewise.
30876 [XPG3 || XPG4] (timer_delete): Likewise.
30877 [XPG3 || XPG4] (timer_gettime): Likewise.
30878 [XPG3 || XPG4] (timer_getoverrun): Likewise.
30879 [XPG3 || XPG4] (timer_settime): Likewise.
30880 * conform/data/unistd.h-data [XPG3 || XPG4] (fdatasync): Likewise.
30881 [XPG3 || XPG4] (getlogin_r): Likewise.
30882 [XPG3 || XPG4] (pread): Likewise.
30883 [XPG3 || XPG4] (pthread_atfork): Likewise.
30884 [XPG3 || XPG4] (pwrite): Likewise.
30885
30886 [BZ #14835]
30887 * signal/signal.h [__USE_XOPEN_EXTENDED]: Include
30888 <bits/siginfo.h>.
30889
308902012-11-19 Pino Toscano <toscano.pino@tiscali.it>
30891
30892 * malloc/mtrace.c (muntrace): Reset MALLSTREAM and the hooks before
30893 finalizing MALLSTREAM.
30894
30895 * sysdeps/mach/hurd/syncfs.c: New file.
30896
308972012-11-19 Siddhesh Poyarekar <siddhesh@redhat.com>
30898
30899 [BZ #14719]
30900 * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Set h_errno to
30901 NETDB_INTERNAL when NSS_STATUS_UNAVAIL.
30902 * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Set
30903 h_errno to NETDB_INTERNAL when errno is EMFILE or ENFILE.
30904 (_nss_dns_gethostbyname4_r): Likewise.
30905 * sysdeps/posix/getaddrinfo.c (gaih_inet): Set result to
30906 EAI_SYSTEM if NSS_STATUS_UNAVAIL.
30907
309082012-11-19 Peng Haitao <penght@cn.fujitsu.com>
30909
30910 [BZ #13763]
30911 * sunrpc/bindrsvprt.c: Add lock to protect static variable.
30912
309132012-11-19 Steve McIntyre <steve.mcintyre@linaro.org>
30914
30915 * sysdeps/generic/ldconfig.h (FLAG_AARCH64_LIB64): New macro.
30916 * elf/cache.c (print_entry): Print ",AArch64" for
30917 FLAG_AARCH64_LIB64
30918
30919 * sysdeps/generic/ldconfig.h (FLAG_ARM_LIBHF): New macro.
30920 * elf/cache.c (print_entry): Print ",hard-float" for
30921 FLAG_ARM_LIBHF.
30922
309232012-11-18 David S. Miller <davem@davemloft.net>
30924
30925 With help from Joseph Myers.
30926 * sysdeps/ieee754/flt-32/e_j0f.c (__ieee754_y0f): Adjust tinyness
30927 cutoff to 2**-13.
30928 * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_y1f): Adjust tinyness
30929 cutoff to 2**-25.
30930 * sysdeps/ieee754/ldbl-128/e_j0l.c (U0): New constant.
30931 ( __ieee754_y0l): Avoid arithmetic underflow when 'x' is very
30932 small.
30933 * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_y1l): Likewise.
30934 * math/libm-test.inc (y0_test): New tests.
30935 (y1_test): New tests.
30936 * sysdeps/i386/fpu/libm-test-ulps: Update.
30937 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
30938 * sysdeps/sparc/fpu/libm-test-ulps: Update.
30939
309402012-11-18 Andreas Schwab <schwab@linux-m68k.org>
30941
30942 * configure.in (libc_cv_ld_gnu_indirect_function): Use .quad on
30943 64-bit targets.
30944 * configure: Regenerated.
30945
309462012-11-17 David S. Miller <davem@davemloft.net>
30947
30948 [BZ #14811]
30949 * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Saturate
30950 nonzero exponents with absolute value below 0x1p-128 to +/-
30951 0x1p-128.
30952
309532012-11-17 Joseph Myers <joseph@codesourcery.com>
30954
30955 * sysdeps/unix/sysv/linux/fxstatat.c: Include <string.h>.
30956
30957 * elf/dl-runtime.c [!ELF_MACHINE_NO_PLT]: Make code unconditional.
30958
30959 * posix/getconf-speclist.c: New file.
30960 * posix/posix-envs.def: Likewise.
30961 * posix/confstr.c (START_ENV_GROUP): New macro.
30962 (END_ENV_GROUP): Likewise.
30963 (KNOWN_ABSENT_ENVIRONMENT): Likewise.
30964 (KNOWN_PRESENT_ENV_STRING): Likewise.
30965 (KNOWN_PRESENT_ENVIRONMENT): Likewise.
30966 (UNKNOWN_ENVIRONMENT): Likewise.
30967 (confstr): Include posix-envs.def instead of handling
30968 _CS_V7_WIDTH_RESTRICTED_ENVS, _CS_V6_WIDTH_RESTRICTED_ENVS and
30969 _CS_V5_WIDTH_RESTRICTED_ENVS directly here.
30970 * sysdeps/posix/sysconf.c (START_ENV_GROUP): New macro.
30971 (END_ENV_GROUP): Likewise.
30972 (KNOWN_ABSENT_ENVIRONMENT): Likewise.
30973 (KNOWN_PRESENT_ENVIRONMENT): Likewise.
30974 (UNKNOWN_ENVIRONMENT): Likewise.
30975 (__sysconf): Include posix-envs.def instead of handling associated
30976 cases directly here.
30977 * posix/Makefile ($(objpfx)getconf.speclist): Generate by
30978 preprocessing getconf-speclist.c rather than running getconf or
30979 generating empty file.
30980
309812012-11-16 Pino Toscano <toscano.pino@tiscali.it>
30982
30983 * scripts/check-local-headers.sh: Ignore 'mach' headers.
30984
309852012-11-16 Andrej Lajovic <natrij@gmail.com>
30986
30987 [BZ #14672]
30988 * iconv/iconv_prog.c (main): Fix -c handling of '/'.
30989
309902012-11-16 David S. Miller <davem@davemloft.net>
30991
30992 * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): If xm1 is
30993 smaller than LDBL_EPSILON/2.0L, just return xm1.
30994
309952012-11-16 H.J. Lu <hongjiu.lu@intel.com>
30996
30997 * elf/tst-array1.c (init): Set constructor priority to 1000.
30998 (fini): Set destructor priority to 1000.
30999 * elf/tst-array2dep.c: Likewise.
31000
310012012-11-16 Siddhesh Poyarekar <siddhesh@redhat.com>
31002
31003 [BZ #11741]
31004 * libio/fileops.c (_IO_new_file_write): Correctly return error.
31005 (_IO_new_file_xsputn): Also return EOF if none of the input
31006 data was written when overflow failed.
31007 * libio/iopadn.c (_IO_padn): Likewise.
31008 * libio/iowpadn.c (_IO_wpadn): Likewise.
31009 * stdio-common/tst-put-error.c: Add copyright notice.
31010 (do_test): Add case for printing padded string.
31011 * stdio-common/vfprintf [!COMPILE_WPRINTF] (PAD): Flag error if
31012 _IO_padn returned error.
31013 [COMPILE_WPRINTF] (PAD): Flag error if _IO_wpadn returned error.
31014 * libio/libioP.h (_IO_xsputn_t): Note in comment that xsputn can
31015 return EOF.
31016
310172012-11-16 Siddhesh Poyarekar <siddhesh@redhat.com>
31018
31019 * libio/libioP.h: Add comment note that the references to C++
31020 bits are now obsolete.
31021
310222012-11-15 Marcus Shawcroft <marcus.shawcroft@linaro.org>
31023
31024 * math/libm-test.inc (check_complex): Use asprintf.
31025
310262012-11-14 Joseph Myers <joseph@codesourcery.com>
31027
31028 * debug/pcprofiledump.c (print_version): Update copyright year.
31029 * malloc/memusagestat.c (print_version): Likewise.
31030
310312012-11-14 H.J. Lu <hongjiu.lu@intel.com>
31032
31033 [BZ #14831]
31034 * elf/Makefile (tests): Add tst-audit8.
31035 ($(objpfx)tst-audit8): Also depend on $(common-objpfx)math/libm.so.
31036 ($(objpfx)tst-audit8.out): New target.
31037 (tst-audit8-ENV): New variable.
31038 * elf/dl-runtime.c (_dl_profile_fixup): Call _dl_fixup to skip
31039 audit if l_reloc_result is NULL.
31040 (ELF_MACHINE_RUNTIME_FIXUP_PARAMS): Issue an error if it isn't
31041 defined and ELF_MACHINE_RUNTIME_FIXUP_ARGS is defined.
31042 * elf/tst-audit8.c: New file.
31043
310442012-11-14 Marcus Shawcroft <marcus.shawcroft@linaro.org>
31045
31046 * io/Makefile (CFLAGS-open.c, CFLAGS-open64.c): Define.
31047 * misc/Makefile (CFLAGS-select.c): Define.
31048 * posix/Makefile (CFLAGS-pause.c): Define.
31049
310502012-11-13 David S. Miller <davem@davemloft.net>
31051
31052 * crypt/Makefile: Move test targets after toplevel Rules
31053 inclusion. Grab any necessary sysdep routines when linking.
31054 * crypt/md5.c (md5_process_block): Remove define, we will always
31055 name it __md5_process_block.
31056 (md5_finish_ctx): Update md5_process_block call.
31057 (md5_stream): Likewise.
31058 (md5_process_bytes): Likewise.
31059 (md5_process_block): Rename to __md5_process_block and move to ...
31060 * crypt/md5-block.c: ... here.
31061 * crypt/sha256.c (sha256_process_block): Move to ...
31062 * crypt/sha256-block.c: ... here.
31063 * crypt/sha512.c (sha512_process_block): Move to ...
31064 * crypt/sha512-block.c: ... here.
31065 * locale/Makefile (CFLAGS-md5.c): Define to add crypt/ to include
31066 path.
31067 * sysdeps/sparc/sparc-ifunc.c (sparc_libc_ifunc): Define.
31068 * sysdeps/sparc/sparc64/multiarch/Makefile
31069 (libcrypt-sysdep_routines): Add crypto assembler sysdeps when in
31070 crypt subdir.
31071 (localedef-aux): Add md5 crypto assembler when in locale subdir.
31072 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Mirror sparc64
31073 multiarch changes.
31074 * sysdeps/sparc/sparc64/multiarch/md5-block.c: New file.
31075 * sysdeps/sparc/sparc64/multiarch/md5-crop.S: New file.
31076 * sysdeps/sparc/sparc64/multiarch/sha256-block.c: New file.
31077 * sysdeps/sparc/sparc64/multiarch/sha256-crop.S: New file.
31078 * sysdeps/sparc/sparc64/multiarch/sha512-block.c: New file.
31079 * sysdeps/sparc/sparc64/multiarch/sha512-crop.S: New file.
31080 * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-block.c: New file.
31081 * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-crop.S: New file.
31082 * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-block.c: New
31083 file.
31084 * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-crop.S: New file.
31085 * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-block.c: New
31086 file.
31087 * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-crop.S: New file.
31088
310892012-11-13 Joseph Myers <joseph@codesourcery.com>
31090
31091 * timezone/tzselect.ksh: Update from tzcode git revision
31092 a435f9f0ecafa56d9e0263835836bd0c64cd7307.
31093 * timezone/zdump.c: Likewise.
31094 * timezone/zic.c: Likewise.
31095 * timezone/Makefile ($(objpfx)version.h): Only include $(version)
31096 in TZVERSION setting, not $(PKGVERSION).
31097 ($(objpfx)tzselect): Likewise. Also substitute PKGVERSION and
31098 REPORT_BUGS_TO settings.
31099
31100 [BZ #14838]
31101 * resolv/netdb.h [__USE_XOPEN_EXTENDED] (IPPORT_RESERVED): Define
31102 macro.
31103
311042012-11-13 Marcus Shawcroft <marcus.shawcroft@linaro.org>
31105
31106 * soft-fp/op-common.h (_FP_PACK_SEMIRAW): Move underflow
31107 detection to immediately after _FP_ROUND().
31108 * soft-fp/soft-fp.h (_FP_ROUND): Don't round if working
31109 bits are 0.
31110
311112012-11-11 David S. Miller <davem@davemloft.net>
31112
31113 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Include
31114 inttypes.h
31115 (__get_clockfreq_via_proc_openprom): Use __open, __read, and
31116 __close rather than their public counterparts.
31117
311182012-11-10 Joseph Myers <joseph@codesourcery.com>
31119
31120 * conform/data/semaphore.h-data [XPG3 || XPG4]: Disable whole
31121 file.
31122 [UNIX98] (sem_timedwait): Do not expect.
31123 * conform/data/sys/socket.h-data [XPG3]: Disable whole file.
31124 [XPG4 || UNIX98] (sockatmark): Do not expect.
31125 * conform/data/time.h-data [XPG3 || XPG4 || UNIX98]
31126 (clock_getcpuclockid): Do not expect.
31127 [XPG3 || XPG4 || UNIX98] (clock_nanosleep): Do not expect.
31128 * conform/data/unistd.h-data [XPG3 || XPG4 || UNIX98] (setegid):
31129 Do not expect.
31130 [XPG3 || XPG4 || UNIX98] (seteuid): Likewise.
31131 * conform/data/wchar.h-data [UNIX98] (vfwscanf): Do not expect.
31132 [UNIX98] (vwscanf): Likewise.
31133 [UNIX98] (vswscanf): Likewise.
31134
311352012-11-09 Joseph Myers <joseph@codesourcery.com>
31136
31137 * timezone/version.h: Remove file.
31138 * timezone/README: Do not refer to version.h.
31139 * timezone/Makefile ($(objpfx)zic.o): New dependency on
31140 $(objpfx)version.h.
31141 ($(objpfx)zdump.o): Likewise.
31142 ($(objpfx)version.h): New target.
31143
31144 * timezone/tzselect.ksh: Change to verbatim copy from tzcode
31145 2012i.
31146 * timezone/README: Don't mention modification to tzselect.ksh.
31147 * timezone/Makefile ($(objpfx)tzselect): Update substitutions to
31148 work on unmodified tzselect.ksh. Substitute version numbers in
31149 tzselect.ksh.
31150
31151 * Makefile (format-me): Remove.
31152 (INSTALL): Adjust indentation. Use commands directly instead of
31153 using $(format-me).
31154
31155 * aclocal.m4 (ACX_PKGVERSION): New macro.
31156 (ACX_BUGURL): Likewise.
31157 * configure.in: Use ACX_PKGVERSION and ACX_BUGURL.
31158 (PKGVERSION): New AC_DEFINE_UNQUOTED.
31159 (REPORT_BUGS_TO): Likewise.
31160 * configure: Regenerated.
31161 * config.h.in (PKGVERSION): New macro.
31162 (REPORT_BUGS_TO): Likewise.
31163 * config.make.in (PKGVERSION): New variable.
31164 (PKGVERSION_TEXI): Likewise.
31165 (REPORT_BUGS_TO): Likewise.
31166 (REPORT_BUGS_TEXI): Likewise.
31167 * Makefile (format-me): Use -I$(common-objpfx)manual.
31168 (INSTALL): Depend on $(common-objpfx)manual/pkgvers.texi.
31169 ($(common-objpfx)manual/%): New target.
31170 (manual/%): Remove target.
31171 * catgets/gencat.c (more_help): Use REPORT_BUGS_TO.
31172 (print_version): Use PKGVERSION.
31173 * csu/version.c (banner): Use PKGVERSION and REPORT_BUGS_TO.
31174 * debug/Makefile ($(objpfx)catchsegv): Also substitute PKGVERSION
31175 and REPORT_BUGS_TO.
31176 ($(objpfx)xtrace): Likewise.
31177 * debug/catchsegv.sh: Use PKGVERSION and REPORT_BUGS_TO.
31178 * debug/pcprofiledump.c (more_help): Use REPORT_BUGS_TO.
31179 (print_version): Use PKGVERSION.
31180 * debug/xtrace.sh (do_help): Use REPORT_BUGS_TO.
31181 (do_version): Use PKGVERSION.
31182 * elf/Makefile ($(objpfx)sotruss): Also substitute PKGVERSION and
31183 REPORT_BUGS_TO.
31184 (common-ldd-rewrite): Likewise.
31185 * elf/dl-close.c (_dl_close_worker): Use REPORT_BUGS_TO.
31186 * elf/ldconfig.c (more_help): Use REPORT_BUGS_TO.
31187 (print_version): Use PKGVERSION.
31188 * elf/ldd.bash.in: Use PKGVERSION and REPORT_BUGS_TO.
31189 * elf/pldd.c (argp_program_bug_address): Remove variable.
31190 (more_help): New function.
31191 (argp): Use more_help.
31192 (print_version): Use PKGVERSION.
31193 * elf/sln.c (main): Use PKGVERSION.
31194 (usage): Use REPORT_BUGS_TO.
31195 * elf/sotruss.ksh (do_help): Use REPORT_BUGS_TO.
31196 (top level): Use PKGVERSION.
31197 * elf/sprof.c (more_help): Use REPORT_BUGS_TO.
31198 (print_version): Use PKGVERSION.
31199 * iconv/iconv_prog.c (more_help): Use REPORT_BUGS_TO.
31200 (print_version): Use PKGVERSION.
31201 * iconv/iconvconfig.c (more_help): Use REPORT_BUGS_TO.
31202 (print_version): Use PKGVERSION.
31203 * locale/programs/locale.c (more_help): Use REPORT_BUGS_TO.
31204 (print_version): Use PKGVERSION.
31205 * locale/programs/localedef.c (more_help): Use REPORT_BUGS_TO.
31206 (print_version): Use PKGVERSION.
31207 * login/programs/pt_chown.c (more_help): Use REPORT_BUGS_TO.
31208 (print_version): Use PKGVERSION.
31209 * malloc/Makefile ($(objpfx)mtrace): Also substitute PKGVERSION
31210 and BUGURL.
31211 ($(objpfx)memusage): Likewise.
31212 * malloc/memusage.sh (do_help): Use REPORT_BUGS_TO.
31213 (do_version): Use PKGVERSION.
31214 * malloc/memusagestat.c (more_help): Use REPORT_BUGS_TO.
31215 (print_version): Use PKGVERSION.
31216 * malloc/mtrace.pl ($PACKAGE): Remove variable.
31217 ($PKGVERSION): New variable.
31218 ($REPORT_BUGS_TO): Likewise.
31219 (usage): Use $REPORT_BUGS_TO.
31220 (top level): Use $PKGVERSION.
31221 * manual/Makefile (libc-texi-generated): Add pkgvers.texi.
31222 ($(objpfx)pkgvers.texi): New rule.
31223 ($(objpfx)stamp-pkgvers): Likewise.
31224 * manual/install.texi: Include pkgvers.texi.
31225 (--with-pkgversion): Document new configure option.
31226 (--with-bugurl): Likewise.
31227 (Reporting Bugs): Describe Bugzilla as upstream tracker rather
31228 than necessarily for this particular distribution. Use
31229 REPORT_BUGS_TO for where to report bugs.
31230 * INSTALL: Regenerated.
31231 * manual/libc.texinfo: Include pkgvers.texi.
31232 [!PKGVERSION_DEFAULT]: Include PKGVERSION in version information.
31233 * nscd/nscd.c (more_help): Use REPORT_BUGS_TO.
31234 (print_version): Use PKGVERSION.
31235 * nss/getent.c (more_help): Use REPORT_BUGS_TO.
31236 (print_version): Use PKGVERSION.
31237 * nss/makedb.c (more_help): Use REPORT_BUGS_TO.
31238 (print_version): Use PKGVERSION.
31239 * posix/getconf.c (main): Use PKGVERSION and REPORT_BUGS_TO.
31240 * sunrpc/proto.h [IS_IN_build] (_libc_intl_domainname): Remove
31241 macro.
31242 * sunrpc/rpc_main.c (options_usage): Use REPORT_BUGS_TO.
31243 (print_version): Use PKGVERSION.
31244 * sunrpc/rpcinfo.c (usage): Use REPORT_BUGS_TO.
31245 (print_version): Use PKGVERSION.
31246 * sysdeps/unix/sysv/linux/lddlibc4.c (main): Use REPORT_BUGS_TO
31247 and PKGVERSION.
31248
31249 * timezone/checktab.awk: Update from tzcode 2012i.
31250 * timezone/ialloc.c: Likewise.
31251 * timezone/private.h: Likewise.
31252 * timezone/scheck.c: Likewise.
31253 * timezone/tzfile.h: Likewise.
31254 * timezone/tzselect.ksh: Merge in changes from tzcode 2012i.
31255 (TZVERSION): Hardcode tzcode version number.
31256 * timezone/zdump.c: Update from tzcode 2012i.
31257 * timezone/zic.c: Likewise.
31258 * timezone/version.h: New file.
31259 * timezone/README: Describe version.h. Update upstream location.
31260
31261 [BZ #14824]
31262 * stdlib/stdlib.h [__USE_XOPEN_EXTENDED && __USE_XOPEN2K]
31263 (mktemp): Enable declaration.
31264 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (ecvt): Likewise.
31265 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (fcvt): Likewise.
31266 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (gcvt): Likewise.
31267 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qecvt):
31268 Likewise.
31269 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qfcvt):
31270 Likewise.
31271 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qgcvt):
31272 Likewise.
31273 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (ecvt_r):
31274 Likewise.
31275 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (fcvt_r):
31276 Likewise.
31277 [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (gcvt_r):
31278 Likewise.
31279
31280 [BZ #14821]
31281 * sunrpc/clnt_tcp.c (clnttcp_control): Access values at fixed
31282 offset in buffer as u_int32_t not u_long. Consistently use memcpy
31283 for copies of such integer values.
31284 * sunrpc/clnt_udp.c (clntudp_control): Likewise.
31285 * sunrpc/clnt_unix.c (clntunix_control): Likewise.
31286
312872012-11-09 Andreas Jaeger <aj@suse.de>
31288
31289 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Remove all
31290 definitions and declarations that are provided by
31291 <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
31292
312932012-11-08 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
31294
31295 * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Add "te".
31296 * sysdeps/s390/dl-procinfo.h (HWCAP_S390_TE): Add enum value.
31297 * sysdeps/unix/sysv/linux/s390/hwcap.h (HWCAP_S390_TE): Add macro
31298 definition.
31299
313002012-11-08 Marcus Shawcroft <marcus.shawcroft@linaro.org>
31301
31302 * elf/elf.h: Update comment before AArch64 relocations.
31303
313042012-11-07 David S. Miller <davem@davemloft.net>
31305
31306 * sysdeps/unix/sysv/linux/sparc/sparc64/__start_context.S: New file.
31307 * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c
31308 (__start_context): Declare.
31309 (__makecontext_ret): Delete.
31310 (__makecontext): Hook up __start_context instead of
31311 __makecontext_ret.
31312 * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile
31313 (sysdep_routines): Add __start_context when in stdlib.
31314
313152012-11-07 Joseph Myers <joseph@codesourcery.com>
31316
31317 * sysdeps/x86/Makefile ($(objpfx)tst-xmmymm.out): Pass $(NM),
31318 $(OBJDUMP) and $(READELF) to tst-xmmymm.sh.
31319 * sysdeps/x86/tst-xmmymm.sh (NM): New variable. Use it instead of
31320 hardcoded "nm".
31321 (OBJDUMP): New variable. Use it instead of hardcoded "objdump".
31322 (READELF): New variable. Use it instead of hardcoded "readelf".
31323
313242012-11-07 H.J. Lu <hongjiu.lu@intel.com>
31325
31326 * sysdeps/x86_64/Makefile ($(objpfx)tst-xmmymm.out): Moved to ...
31327 * sysdeps/x86/Makefile: Here.
31328 * sysdeps/x86_64/tst-xmmymm.sh: Renamed to ...
31329 * sysdeps/x86/tst-xmmymm.sh: This.
31330
313312012-11-07 Joseph Myers <joseph@codesourcery.com>
31332
31333 * conform/data/pthread.h-data [XPG3 || XPG4]: Disable all
31334 expectations.
31335 [UNIX98] (pthread_barrier_t): Do not expect.
31336 [UNIX98] (pthread_barrierattr_t): Likewise.
31337 [UNIX98] (pthread_spinlock_t): Likewise.
31338 [UNIX98] (pthread_barrier_destroy): Likewise.
31339 [UNIX98] (pthread_barrier_init): Likewise.
31340 [UNIX98] (pthread_barrier_wait): Likewise.
31341 [UNIX98] (pthread_barrierattr_destroy): Likewise.
31342 [UNIX98] (pthread_barrierattr_getpshared): Likewise.
31343 [UNIX98] (pthread_barrierattr_init): Likewise.
31344 [UNIX98] (pthread_barrierattr_setpshared): Likewise.
31345 [UNIX98] (pthread_getcpuclockid): Likewise.
31346 [UNIX98] (pthread_mutex_timedlock): Likewise.
31347 [UNIX98] (pthread_rwlock_timedrdlock): Likewise.
31348 [UNIX98] (pthread_rwlock_timedwrlock): Likewise.
31349 [UNIX98] (pthread_sigmask): Likewise.
31350 [UNIX98] (pthread_spin_destroy): Likewise.
31351 [UNIX98] (pthread_spin_init): Likewise.
31352 [UNIX98] (pthread_spin_lock): Likewise.
31353 [UNIX98] (pthread_spin_trylock): Likewise.
31354 [UNIX98] (pthread_spin_unlock): Likewise.
31355 * conform/data/sys/types.h-data [XPG3 || XPG4] (pthread_attr_t):
31356 Do not expect.
31357 [XPG3 || XPG4 || UNIX98] (pthread_barrier_t): Likewise.
31358 [XPG3 || XPG4 || UNIX98] (pthread_barrierattr_t): Likewise.
31359 [XPG3 || XPG4] (pthread_cond_t): Likewise.
31360 [XPG3 || XPG4] (pthread_condattr_t): Likewise.
31361 [XPG3 || XPG4] (pthread_key_t): Likewise.
31362 [XPG3 || XPG4] (pthread_mutex_t): Likewise.
31363 [XPG3 || XPG4] (pthread_mutexattr_t): Likewise.
31364 [XPG3 || XPG4] (pthread_once_t): Likewise.
31365 [XPG3 || XPG4] (pthread_rwlock_t): Likewise.
31366 [XPG3 || XPG4] (pthread_rwlockattr_t): Likewise.
31367 [XPG3 || XPG4 || UNIX98] (pthread_spinlock_t): Likewise.
31368 [XPG3 || XPG4] (pthread_t): Likewise.
31369
31370 * conform/data/stdlib.h-data [XPG3 || XPG4 || UNIX98] (setenv): Do
31371 not expect.
31372 [XPG3 || XPG4 || UNIX98] (unsetenv): Likewise.
31373
31374 * conform/data/math.h-data [XPG3 || XPG4 || UNIX98] (isnan):
31375 Change function return type to int.
31376
31377 * conform/data/sys/mman.h-data [!POSIX] (POSIX_MADV_NORMAL):
31378 Change condition to [!POSIX && !XPG3 && !XPG4 && !UNIX98].
31379 [!POSIX] (POSIX_MADV_SEQUENTIAL): Likewise.
31380 [!POSIX] (POSIX_MADV_RANDOM): Likewise.
31381 [!POSIX] (POSIX_MADV_WILLNEED): Likewise.
31382 [!POSIX] (POSIX_MADV_DONTNEED): Likewise.
31383 [!POSIX] (posix_madvise): Likewise.
31384 (POSIX_TYPED_MEM_ALLOCATE): Condition on [!POSIX && !XPG3 && !XPG4
31385 && !UNIX98].
31386 (POSIX_TYPED_MEM_ALLOCATE_CONTIG): Likewise.
31387 (POSIX_TYPED_MEM_MAP_ALLOCATABLE): Likewise.
31388 (mode_t): Likewise.
31389 (posix_mem_offset): Likewise.
31390 (posix_typed_mem_get_info): Likewise.
31391 (posix_typed_mem_open): Likewise.
31392
31393 * conform/data/sys/stat.h-data [!POSIX && !POSIX2008] (mknodat):
31394 Change condition to [XOPEN2K8].
31395
31396 * conform/conformtest.pl: Preprocess allow-header data with -x c
31397 instead of from stdin.
31398 (@headers): Add stdalign.h, stdbool.h and stdnoreturn.h.
31399 * conform/data/complex.h-data [C99-based standards] (cerf): Allow.
31400 [C99-based standards] (cerfc): Likewise.
31401 [C99-based standards] (cexp2): Likewise.
31402 [C99-based standards] (cexpm1): Likewise.
31403 [C99-based standards] (clog10): Likewise.
31404 [C99-based standards] (clog1p): Likewise.
31405 [C99-based standards] (clog2): Likewise.
31406 [C99-based standards] (clgamma): Likewise.
31407 [C99-based standards] (ctgamma): Likewise.
31408 [C99-based standards] (cerff): Likewise.
31409 [C99-based standards] (cerfcf): Likewise.
31410 [C99-based standards] (cexp2f): Likewise.
31411 [C99-based standards] (cexpm1f): Likewise.
31412 [C99-based standards] (clog10f): Likewise.
31413 [C99-based standards] (clog1pf): Likewise.
31414 [C99-based standards] (clog2f): Likewise.
31415 [C99-based standards] (clgammaf): Likewise.
31416 [C99-based standards] (ctgammaf): Likewise.
31417 [C99-based standards] (cerfl): Likewise.
31418 [C99-based standards] (cerfcl): Likewise.
31419 [C99-based standards] (cexp2l): Likewise.
31420 [C99-based standards] (cexpm1l): Likewise.
31421 [C99-based standards] (clog10l): Likewise.
31422 [C99-based standards] (clog1pl): Likewise.
31423 [C99-based standards] (clog2l): Likewise.
31424 [C99-based standards] (clgammal): Likewise.
31425 [C99-based standards] (ctgammal): Likewise.
31426 * conform/data/inttypes.h-data [C99-based standards]: Include
31427 stdint.h-data. Remove all expectations for stdint.h contents.
31428 [C99-based standards] (PRI*): Do not allow.
31429 [C99-based standards] (SCN*): Likewise.
31430 [C99-based standards] (*_t): Likewise.
31431 [C99-based-standards] (PRId8): Expect macro.
31432 [C99-based-standards] (PRIi8): Likewise.
31433 [C99-based-standards] (PRIo8): Likewise.
31434 [C99-based-standards] (PRIu8): Likewise.
31435 [C99-based-standards] (PRIx8): Likewise.
31436 [C99-based-standards] (PRIX8): Likewise.
31437 [C99-based-standards] (SCNd8): Likewise.
31438 [C99-based-standards] (SCNi8): Likewise.
31439 [C99-based-standards] (SCNo8): Likewise.
31440 [C99-based-standards] (SCNu8): Likewise.
31441 [C99-based-standards] (SCNx8): Likewise.
31442 [C99-based-standards] (PRIdLEAST8): Likewise.
31443 [C99-based-standards] (PRIiLEAST8): Likewise.
31444 [C99-based-standards] (PRIoLEAST8): Likewise.
31445 [C99-based-standards] (PRIuLEAST8): Likewise.
31446 [C99-based-standards] (PRIxLEAST8): Likewise.
31447 [C99-based-standards] (PRIXLEAST8): Likewise.
31448 [C99-based-standards] (SCNdLEAST8): Likewise.
31449 [C99-based-standards] (SCNiLEAST8): Likewise.
31450 [C99-based-standards] (SCNoLEAST8): Likewise.
31451 [C99-based-standards] (SCNuLEAST8): Likewise.
31452 [C99-based-standards] (SCNxLEAST8): Likewise.
31453 [C99-based-standards] (PRIdFAST8): Likewise.
31454 [C99-based-standards] (PRIiFAST8): Likewise.
31455 [C99-based-standards] (PRIoFAST8): Likewise.
31456 [C99-based-standards] (PRIuFAST8): Likewise.
31457 [C99-based-standards] (PRIxFAST8): Likewise.
31458 [C99-based-standards] (PRIXFAST8): Likewise.
31459 [C99-based-standards] (SCNdFAST8): Likewise.
31460 [C99-based-standards] (SCNiFAST8): Likewise.
31461 [C99-based-standards] (SCNoFAST8): Likewise.
31462 [C99-based-standards] (SCNuFAST8): Likewise.
31463 [C99-based-standards] (SCNxFAST8): Likewise.
31464 [C99-based-standards] (PRId16): Likewise.
31465 [C99-based-standards] (PRIi16): Likewise.
31466 [C99-based-standards] (PRIo16): Likewise.
31467 [C99-based-standards] (PRIu16): Likewise.
31468 [C99-based-standards] (PRIx16): Likewise.
31469 [C99-based-standards] (PRIX16): Likewise.
31470 [C99-based-standards] (SCNd16): Likewise.
31471 [C99-based-standards] (SCNi16): Likewise.
31472 [C99-based-standards] (SCNo16): Likewise.
31473 [C99-based-standards] (SCNu16): Likewise.
31474 [C99-based-standards] (SCNx16): Likewise.
31475 [C99-based-standards] (PRIdLEAST16): Likewise.
31476 [C99-based-standards] (PRIiLEAST16): Likewise.
31477 [C99-based-standards] (PRIoLEAST16): Likewise.
31478 [C99-based-standards] (PRIuLEAST16): Likewise.
31479 [C99-based-standards] (PRIxLEAST16): Likewise.
31480 [C99-based-standards] (PRIXLEAST16): Likewise.
31481 [C99-based-standards] (SCNdLEAST16): Likewise.
31482 [C99-based-standards] (SCNiLEAST16): Likewise.
31483 [C99-based-standards] (SCNoLEAST16): Likewise.
31484 [C99-based-standards] (SCNuLEAST16): Likewise.
31485 [C99-based-standards] (SCNxLEAST16): Likewise.
31486 [C99-based-standards] (PRIdFAST16): Likewise.
31487 [C99-based-standards] (PRIiFAST16): Likewise.
31488 [C99-based-standards] (PRIoFAST16): Likewise.
31489 [C99-based-standards] (PRIuFAST16): Likewise.
31490 [C99-based-standards] (PRIxFAST16): Likewise.
31491 [C99-based-standards] (PRIXFAST16): Likewise.
31492 [C99-based-standards] (SCNdFAST16): Likewise.
31493 [C99-based-standards] (SCNiFAST16): Likewise.
31494 [C99-based-standards] (SCNoFAST16): Likewise.
31495 [C99-based-standards] (SCNuFAST16): Likewise.
31496 [C99-based-standards] (SCNxFAST16): Likewise.
31497 [C99-based-standards] (PRId32): Likewise.
31498 [C99-based-standards] (PRIi32): Likewise.
31499 [C99-based-standards] (PRIo32): Likewise.
31500 [C99-based-standards] (PRIu32): Likewise.
31501 [C99-based-standards] (PRIx32): Likewise.
31502 [C99-based-standards] (PRIX32): Likewise.
31503 [C99-based-standards] (SCNd32): Likewise.
31504 [C99-based-standards] (SCNi32): Likewise.
31505 [C99-based-standards] (SCNo32): Likewise.
31506 [C99-based-standards] (SCNu32): Likewise.
31507 [C99-based-standards] (SCNx32): Likewise.
31508 [C99-based-standards] (PRIdLEAST32): Likewise.
31509 [C99-based-standards] (PRIiLEAST32): Likewise.
31510 [C99-based-standards] (PRIoLEAST32): Likewise.
31511 [C99-based-standards] (PRIuLEAST32): Likewise.
31512 [C99-based-standards] (PRIxLEAST32): Likewise.
31513 [C99-based-standards] (PRIXLEAST32): Likewise.
31514 [C99-based-standards] (SCNdLEAST32): Likewise.
31515 [C99-based-standards] (SCNiLEAST32): Likewise.
31516 [C99-based-standards] (SCNoLEAST32): Likewise.
31517 [C99-based-standards] (SCNuLEAST32): Likewise.
31518 [C99-based-standards] (SCNxLEAST32): Likewise.
31519 [C99-based-standards] (PRIdFAST32): Likewise.
31520 [C99-based-standards] (PRIiFAST32): Likewise.
31521 [C99-based-standards] (PRIoFAST32): Likewise.
31522 [C99-based-standards] (PRIuFAST32): Likewise.
31523 [C99-based-standards] (PRIxFAST32): Likewise.
31524 [C99-based-standards] (PRIXFAST32): Likewise.
31525 [C99-based-standards] (SCNdFAST32): Likewise.
31526 [C99-based-standards] (SCNiFAST32): Likewise.
31527 [C99-based-standards] (SCNoFAST32): Likewise.
31528 [C99-based-standards] (SCNuFAST32): Likewise.
31529 [C99-based-standards] (SCNxFAST32): Likewise.
31530 [C99-based-standards] (PRId64): Likewise.
31531 [C99-based-standards] (PRIi64): Likewise.
31532 [C99-based-standards] (PRIo64): Likewise.
31533 [C99-based-standards] (PRIu64): Likewise.
31534 [C99-based-standards] (PRIx64): Likewise.
31535 [C99-based-standards] (PRIX64): Likewise.
31536 [C99-based-standards] (SCNd64): Likewise.
31537 [C99-based-standards] (SCNi64): Likewise.
31538 [C99-based-standards] (SCNo64): Likewise.
31539 [C99-based-standards] (SCNu64): Likewise.
31540 [C99-based-standards] (SCNx64): Likewise.
31541 [C99-based-standards] (PRIdLEAST64): Likewise.
31542 [C99-based-standards] (PRIiLEAST64): Likewise.
31543 [C99-based-standards] (PRIoLEAST64): Likewise.
31544 [C99-based-standards] (PRIuLEAST64): Likewise.
31545 [C99-based-standards] (PRIxLEAST64): Likewise.
31546 [C99-based-standards] (PRIXLEAST64): Likewise.
31547 [C99-based-standards] (SCNdLEAST64): Likewise.
31548 [C99-based-standards] (SCNiLEAST64): Likewise.
31549 [C99-based-standards] (SCNoLEAST64): Likewise.
31550 [C99-based-standards] (SCNuLEAST64): Likewise.
31551 [C99-based-standards] (SCNxLEAST64): Likewise.
31552 [C99-based-standards] (PRIdFAST64): Likewise.
31553 [C99-based-standards] (PRIiFAST64): Likewise.
31554 [C99-based-standards] (PRIoFAST64): Likewise.
31555 [C99-based-standards] (PRIuFAST64): Likewise.
31556 [C99-based-standards] (PRIxFAST64): Likewise.
31557 [C99-based-standards] (PRIXFAST64): Likewise.
31558 [C99-based-standards] (SCNdFAST64): Likewise.
31559 [C99-based-standards] (SCNiFAST64): Likewise.
31560 [C99-based-standards] (SCNoFAST64): Likewise.
31561 [C99-based-standards] (SCNuFAST64): Likewise.
31562 [C99-based-standards] (SCNxFAST64): Likewise.
31563 [C99-based-standards] (PRIdMAX): Likewise.
31564 [C99-based-standards] (PRIiMAX): Likewise.
31565 [C99-based-standards] (PRIoMAX): Likewise.
31566 [C99-based-standards] (PRIuMAX): Likewise.
31567 [C99-based-standards] (PRIxMAX): Likewise.
31568 [C99-based-standards] (PRIXMAX): Likewise.
31569 [C99-based-standards] (SCNdMAX): Likewise.
31570 [C99-based-standards] (SCNiMAX): Likewise.
31571 [C99-based-standards] (SCNoMAX): Likewise.
31572 [C99-based-standards] (SCNuMAX): Likewise.
31573 [C99-based-standards] (SCNxMAX): Likewise.
31574 [C99-based-standards] (PRIdPTR): Likewise.
31575 [C99-based-standards] (PRIiPTR): Likewise.
31576 [C99-based-standards] (PRIoPTR): Likewise.
31577 [C99-based-standards] (PRIuPTR): Likewise.
31578 [C99-based-standards] (PRIxPTR): Likewise.
31579 [C99-based-standards] (PRIXPTR): Likewise.
31580 [C99-based-standards] (SCNdPTR): Likewise.
31581 [C99-based-standards] (SCNiPTR): Likewise.
31582 [C99-based-standards] (SCNoPTR): Likewise.
31583 [C99-based-standards] (SCNuPTR): Likewise.
31584 [C99-based-standards] (SCNxPTR): Likewise.
31585 * conform/data/iso646.h-data [ISO C standards] (*_t): Do not
31586 allow.
31587 * conform/data/stdint.h-data: Update comments to clarify
31588 requirements.
31589 [C99-based standards] (INT8_MIN): Use macro-int-constant. Specify
31590 type.
31591 [C99-based standards] (INT8_MAX): Likewise.
31592 [C99-based standards] (INT16_MIN): Likewise.
31593 [C99-based standards] (INT16_MAX): Likewise.
31594 [C99-based standards] (INT32_MIN): Likewise.
31595 [C99-based standards] (INT32_MAX): Likewise.
31596 [C99-based standards] (INT64_MIN): Likewise.
31597 [C99-based standards] (INT64_MAX): Likewise.
31598 [C99-based standards] (UINT8_MAX): Likewise.
31599 [C99-based standards] (UINT16_MAX): Likewise.
31600 [C99-based standards] (UINT32_MAX): Likewise.
31601 [C99-based standards] (UINT64_MAX): Likewise.
31602 [C99-based standards] (INT_LEAST8_MIN): Likewise.
31603 [C99-based standards] (INT_LEAST8_MAX): Likewise.
31604 [C99-based standards] (INT_LEAST16_MIN): Likewise.
31605 [C99-based standards] (INT_LEAST16_MAX): Likewise.
31606 [C99-based standards] (INT_LEAST32_MIN): Likewise.
31607 [C99-based standards] (INT_LEAST32_MAX): Likewise.
31608 [C99-based standards] (INT_LEAST64_MIN): Likewise.
31609 [C99-based standards] (INT_LEAST64_MAX): Likewise.
31610 [C99-based standards] (UINT_LEAST8_MAX): Likewise.
31611 [C99-based standards] (UINT_LEAST16_MAX): Likewise.
31612 [C99-based standards] (UINT_LEAST32_MAX): Likewise.
31613 [C99-based standards] (UINT_LEAST64_MAX): Likewise.
31614 [C99-based standards] (INT_FAST8_MIN): Likewise.
31615 [C99-based standards] (INT_FAST8_MAX): Likewise.
31616 [C99-based standards] (INT_FAST16_MIN): Likewise.
31617 [C99-based standards] (INT_FAST16_MAX): Likewise.
31618 [C99-based standards] (INT_FAST32_MIN): Likewise.
31619 [C99-based standards] (INT_FAST32_MAX): Likewise.
31620 [C99-based standards] (INT_FAST64_MIN): Likewise.
31621 [C99-based standards] (INT_FAST64_MAX): Likewise.
31622 [C99-based standards] (UINT_FAST8_MAX): Likewise.
31623 [C99-based standards] (UINT_FAST16_MAX): Likewise.
31624 [C99-based standards] (UINT_FAST32_MAX): Likewise.
31625 [C99-based standards] (UINT_FAST64_MAX): Likewise.
31626 [C99-based standards] (INTPTR_MIN): Likewise.
31627 [C99-based standards] (INTPTR_MAX): Likewise.
31628 [C99-based standards] (UINTPTR_MAX): Likewise.
31629 [C99-based standards] (INTMAX_MIN): Likewise.
31630 [C99-based standards] (INTMAX_MAX): Likewise.
31631 [C99-based standards] (UINTMAX_MAX): Likewise.
31632 [C99-based standards] (PTRDIFF_MIN): Likewise.
31633 [C99-based standards] (PTRDIFF_MAX): Likewise.
31634 [C99-based standards] (SIG_ATOMIC_MAX): Likewise.
31635 [C99-based standards] (SIZE_MAX): Likewise.
31636 [C99-based standards] (WCHAR_MAX): Likewise.
31637 [C99-based standards] (WINT_MAX): Likewise.
31638 [C99-based standards] (SIG_ATOMIC_MIN): Likewise. Do not specify
31639 constraint on value.
31640 [C99-based standards] (WCHAR_MIN): Likewise.
31641 [C99-based standards] (WINT_MIN): Likewise.
31642 [C99-based standards] (*_t): Allow.
31643 * conform/data/tgmath.h-data [XOPEN2K || POSIX2008]: Change
31644 condition to [!ISO && !POSIX && !XPG3 && !XPG4 && !UNIX98].
31645 Include math.h-data and complex.h-data. Remove all expectations
31646 of math.h and complex.h contents.
31647 * conform/data/uchar.h-data [ISO11] (c16rtomb): Remove stray "16"
31648 at end of line.
31649 * conform/data/wchar.h-data [!ISO && !POSIX && !XPG3 && !XPG4]
31650 (struct tm): Expect tag.
31651 [C99-based-standards] (wcstof): Expect function.
31652 [C99-based-standards] (wcstold): Likewise.
31653 [C99-based-standards] (wcstoll): Likewise.
31654 [C99-based-standards] (wcstoull): Likewise.
31655 [!ISO && !POSIX && !XPG3 && !XPG4] (WCHAR_MIN): Use
31656 macro-int-constant. Specify type.
31657 [!ISO && !POSIX && !XPG3 && !XPG4] (WCHAR_MAX): Likewise. Specify
31658 constraint on value.
31659 [!ISO && !POSIX && !XPG3 && !XPG4] (WEOF): Use macro-constant.
31660 Specify type.
31661 [!ISO && !POSIX && !XPG3 && !XPG4] (NULL): Use macro-constant.
31662 Specify value.
31663 [ISO C standards]: Do not allow headers.
31664 [!ISO && !POSIX && !XPG3 && !XPG4] (wcs*): Change to
31665 wcs[abcdefghijklmnopqrstuvwxyz]*.
31666 [ISO C standards] (*_t): Do not allow.
31667 * conform/data/wctype.h-data [C99-based standards] (iswblank):
31668 Expect function.
31669 [XOPEN2K8 || POSIX2008] (iswblank_l): Likewise.
31670 [!ISO && !POSIX && !XPG3 && !XPG4] (WEOF): Use macro-constant.
31671 Specify type.
31672 [ISO C standards]: Do not allow headers.
31673 [!ISO && !POSIX && !XPG3 && !XPG4] (is*): Change to
31674 is[abcdefghijklmnopqrstuvwxyz]*.
31675 [!ISO && !POSIX && !XPG3 && !XPG4] (to*): Change to
31676 to[abcdefghijklmnopqrstuvwxyz]*.
31677 [ISO C standards] (*_t): Do not allow.
31678 * conform/data/stdalign.h-data: New file.
31679 * conform/data/stdbool.h-data: Likewise.
31680 * conform/data/stdnoreturn.h-data: Likewise.
31681
316822012-11-07 Roland McGrath <roland@hack.frob.com>
31683
31684 [BZ #14815]
31685 * manual/filesys.texi (Directory Entries): Typo fix.
31686 Reported by <h-iwamoto@kit.hi-ho.ne.jp>.
31687
316882012-11-07 Marcus Shawcroft <marcus.shawcroft@linaro.org>
31689
31690 * elf/elf.h (EM_AARCH64): New macro.
31691 (R_AARCH64_NONE, R_AARCH64_ABS64, R_AARCH64_ABS32): Likewise.
31692 (R_AARCH64_COPY, R_AARCH64_GLOB_DAT, R_AARCH64_JUMP_SLOT): Likewise.
31693 (R_AARCH64_RELATIVE, R_AARCH64_TLS_DTPMOD64): Likewise.
31694 (R_AARCH64_TLS_DTPREL64, R_AARCH64_TLS_TPREL64): Likewise.
31695 (R_AARCH64_TLSDESC): Likewise.
31696 (NT_ARM_TLS): Likewise.
31697 (NT_ARM_HW_BREAK): Likewise.
31698 (NT_ARM_HW_WATCH): Likewise.
31699
317002012-11-07 Joseph Myers <joseph@codesourcery.com>
31701
31702 [BZ #14811]
31703 * sysdeps/i386/fpu/e_powl.S (pm79): New object.
31704 (__ieee754_powl): Saturate nonzero exponents with absolute value
31705 below 0x1p-79 to +/- 0x1p-79.
31706 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Saturate nonzero
31707 exponents with absolute value below 0x1p-64 to +/- 0x1p-64.
31708 * sysdeps/ieee754/flt-32/e_powf.c (__ieee754_powf): Saturate
31709 nonzero exponents with absolute value below 0x1p-32 to +/-
31710 0x1p-32.
31711 * sysdeps/x86_64/fpu/e_powl.S (pm79): New object.
31712 (__ieee754_powl): Saturate nonzero exponents with absolute value
31713 below 0x1p-79 to +/- 0x1p-79.
31714 * math/libm-test.inc (pow_test): Add more tests.
31715
317162012-11-07 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
31717
31718 * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Sync
31719 _dl_s390_cap_flags with kernel. Increase string length.
31720 (_dl_s390_platforms): Add z196 and zEC12.
31721
317222012-11-07 Joseph Myers <joseph@codesourcery.com>
31723
31724 * conform/data/time.h-data [!XOPEN21K && !XOPEN2K8 && !POSIX2008]:
31725 Change XOPEN21K to XOPEN2K.
31726
317272012-11-06 Maxim Kuvyrkov <maxim@codesourcery.com>
31728
31729 * string/memmove.c: Use memcpy when possible.
31730
317312012-11-06 Andreas Jaeger <aj@suse.de>
31732
31733 * po/eo.po: Update from translation team.
31734
317352012-11-06 Joseph Myers <joseph@codesourcery.com>
31736
31737 [BZ #14793]
31738 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): In case of large z
31739 exponent and small x and y exponents, scale x or y up. Increase
31740 by 2 the exponent used in scaling up.
31741 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
31742 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
31743 * math/libm-test.inc (fma_test): Add more tests.
31744 (fma_test_towardzero): Likewise.
31745 (fma_test_downward): Likewise.
31746 (fma_test_upward): Likewise.
31747
317482012-11-05 Joseph Myers <joseph@codesourcery.com>
31749
31750 [BZ #14805]
31751 * sysdeps/sh/sh4/fpu/bits/fenv.h (FE_DFL_ENV): Use cast to const
31752 fenv_t *.
31753
31754 [BZ #14801]
31755 * sysdeps/s390/fpu/bits/fenv.h (fenv_t): Use implementation
31756 namespace for names of struct fields.
31757 * sysdeps/s390/fpu/fegetenv.c (fegetenv): Update references to
31758 fenv_t fields.
31759 * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Likewise.
31760 * sysdeps/s390/fpu/fesetenv.c (fesetenv): Likewise.
31761
317622012-11-04 Samuel Thibault <samuel.thibault@ens-lyon.org>
31763
31764 [BZ #3665]
31765 * sysdeps/mach/hurd/bits/errno.h: Regenerated.
31766
317672012-11-04 Thomas Schwinge <thomas@codesourcery.com>
31768
31769 * csu/libc-start.c (LIBC_START_MAIN): Conditionalize use of
31770 PTR_DEMANGLE.
31771
31772 [BZ #5246]
31773 * sysdeps/mach/hurd/i386/____longjmp_chk.S: Conditionalize use of
31774 PTR_DEMANGLE.
31775
317762012-11-04 Joseph Myers <joseph@codesourcery.com>
31777
31778 [BZ #14797]
31779 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Compute cases that
31780 definitely overflow as x * y not x * y + z.
31781 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
31782 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
31783 * math/libm-test.inc (fma_test): Add more tests.
31784 (fma_test_towardzero): Likewise.
31785 (fma_test_downward): Likewise.
31786 (fma_test_upward): Likewise.
31787
317882012-11-04 Thomas Schwinge <thomas@codesourcery.com>
31789
31790 [BZ #157]
31791
31792 * include/stub-tag.h: Remove file.
31793 * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Don't emit
31794 '#include' of it.
31795 * manual/maint.texi (Porting): Don't reference it.
31796 * Makerules ($(objpfx)stubs): Likewise.
31797 * dirent/closedir.c: Don't include <stub-tag.h>.
31798 * dirent/dirfd.c: Likewise.
31799 * dirent/fdopendir.c: Likewise.
31800 * dirent/getdents.c: Likewise.
31801 * dirent/getdents64.c: Likewise.
31802 * dirent/opendir.c: Likewise.
31803 * dirent/readdir.c: Likewise.
31804 * dirent/readdir64.c: Likewise.
31805 * dirent/readdir64_r.c: Likewise.
31806 * dirent/readdir_r.c: Likewise.
31807 * dirent/rewinddir.c: Likewise.
31808 * dirent/seekdir.c: Likewise.
31809 * dirent/telldir.c: Likewise.
31810 * gmon/profil.c: Likewise.
31811 * grp/setgroups.c: Likewise.
31812 * inet/if_index.c: Likewise.
31813 * io/access.c: Likewise.
31814 * io/chdir.c: Likewise.
31815 * io/chmod.c: Likewise.
31816 * io/chown.c: Likewise.
31817 * io/close.c: Likewise.
31818 * io/dup.c: Likewise.
31819 * io/dup2.c: Likewise.
31820 * io/dup3.c: Likewise.
31821 * io/euidaccess.c: Likewise.
31822 * io/faccessat.c: Likewise.
31823 * io/fchdir.c: Likewise.
31824 * io/fchmod.c: Likewise.
31825 * io/fchmodat.c: Likewise.
31826 * io/fchown.c: Likewise.
31827 * io/fchownat.c: Likewise.
31828 * io/fcntl.c: Likewise.
31829 * io/flock.c: Likewise.
31830 * io/fstatfs.c: Likewise.
31831 * io/fstatfs64.c: Likewise.
31832 * io/fstatvfs.c: Likewise.
31833 * io/fstatvfs64.c: Likewise.
31834 * io/futimens.c: Likewise.
31835 * io/fxstat.c: Likewise.
31836 * io/fxstat64.c: Likewise.
31837 * io/fxstatat.c: Likewise.
31838 * io/fxstatat64.c: Likewise.
31839 * io/getcwd.c: Likewise.
31840 * io/isatty.c: Likewise.
31841 * io/lchmod.c: Likewise.
31842 * io/lchown.c: Likewise.
31843 * io/link.c: Likewise.
31844 * io/linkat.c: Likewise.
31845 * io/lseek.c: Likewise.
31846 * io/lseek64.c: Likewise.
31847 * io/lxstat64.c: Likewise.
31848 * io/mkdir.c: Likewise.
31849 * io/mkdirat.c: Likewise.
31850 * io/mkfifo.c: Likewise.
31851 * io/mkfifoat.c: Likewise.
31852 * io/open.c: Likewise.
31853 * io/open64.c: Likewise.
31854 * io/openat.c: Likewise.
31855 * io/openat64.c: Likewise.
31856 * io/pipe.c: Likewise.
31857 * io/pipe2.c: Likewise.
31858 * io/poll.c: Likewise.
31859 * io/posix_fadvise.c: Likewise.
31860 * io/posix_fadvise64.c: Likewise.
31861 * io/posix_fallocate.c: Likewise.
31862 * io/posix_fallocate64.c: Likewise.
31863 * io/read.c: Likewise.
31864 * io/readlink.c: Likewise.
31865 * io/readlinkat.c: Likewise.
31866 * io/rmdir.c: Likewise.
31867 * io/sendfile.c: Likewise.
31868 * io/sendfile64.c: Likewise.
31869 * io/statfs.c: Likewise.
31870 * io/statfs64.c: Likewise.
31871 * io/statvfs.c: Likewise.
31872 * io/statvfs64.c: Likewise.
31873 * io/symlink.c: Likewise.
31874 * io/symlinkat.c: Likewise.
31875 * io/ttyname.c: Likewise.
31876 * io/ttyname_r.c: Likewise.
31877 * io/umask.c: Likewise.
31878 * io/unlink.c: Likewise.
31879 * io/unlinkat.c: Likewise.
31880 * io/utime.c: Likewise.
31881 * io/utimensat.c: Likewise.
31882 * io/write.c: Likewise.
31883 * io/xmknod.c: Likewise.
31884 * io/xmknodat.c: Likewise.
31885 * io/xstat.c: Likewise.
31886 * io/xstat64.c: Likewise.
31887 * login/getpt.c: Likewise.
31888 * login/grantpt.c: Likewise.
31889 * login/unlockpt.c: Likewise.
31890 * math/e_acoshl.c: Likewise.
31891 * math/e_acosl.c: Likewise.
31892 * math/e_asinl.c: Likewise.
31893 * math/e_atan2l.c: Likewise.
31894 * math/e_atanhl.c: Likewise.
31895 * math/e_coshl.c: Likewise.
31896 * math/e_expl.c: Likewise.
31897 * math/e_fmodl.c: Likewise.
31898 * math/e_gammal_r.c: Likewise.
31899 * math/e_hypotl.c: Likewise.
31900 * math/e_j0l.c: Likewise.
31901 * math/e_j1l.c: Likewise.
31902 * math/e_jnl.c: Likewise.
31903 * math/e_lgammal_r.c: Likewise.
31904 * math/e_log10l.c: Likewise.
31905 * math/e_log2l.c: Likewise.
31906 * math/e_logl.c: Likewise.
31907 * math/e_powl.c: Likewise.
31908 * math/e_rem_pio2l.c: Likewise.
31909 * math/e_sinhl.c: Likewise.
31910 * math/e_sqrtl.c: Likewise.
31911 * math/fclrexcpt.c: Likewise.
31912 * math/fedisblxcpt.c: Likewise.
31913 * math/feenablxcpt.c: Likewise.
31914 * math/fegetenv.c: Likewise.
31915 * math/fegetexcept.c: Likewise.
31916 * math/fegetround.c: Likewise.
31917 * math/feholdexcpt.c: Likewise.
31918 * math/fesetenv.c: Likewise.
31919 * math/fesetround.c: Likewise.
31920 * math/feupdateenv.c: Likewise.
31921 * math/fgetexcptflg.c: Likewise.
31922 * math/fraiseexcpt.c: Likewise.
31923 * math/fsetexcptflg.c: Likewise.
31924 * math/ftestexcept.c: Likewise.
31925 * math/k_cosl.c: Likewise.
31926 * math/k_rem_pio2l.c: Likewise.
31927 * math/k_sinl.c: Likewise.
31928 * math/k_tanl.c: Likewise.
31929 * math/s_asinhl.c: Likewise.
31930 * math/s_atanl.c: Likewise.
31931 * math/s_cbrtl.c: Likewise.
31932 * math/s_erfl.c: Likewise.
31933 * math/s_expm1l.c: Likewise.
31934 * math/s_log1pl.c: Likewise.
31935 * math/s_tanhl.c: Likewise.
31936 * misc/acct.c: Likewise.
31937 * misc/brk.c: Likewise.
31938 * misc/chflags.c: Likewise.
31939 * misc/chroot.c: Likewise.
31940 * misc/fchflags.c: Likewise.
31941 * misc/fgetxattr.c: Likewise.
31942 * misc/flistxattr.c: Likewise.
31943 * misc/fremovexattr.c: Likewise.
31944 * misc/fsetxattr.c: Likewise.
31945 * misc/fsync.c: Likewise.
31946 * misc/ftruncate.c: Likewise.
31947 * misc/futimes.c: Likewise.
31948 * misc/futimesat.c: Likewise.
31949 * misc/getdomain.c: Likewise.
31950 * misc/getdtsz.c: Likewise.
31951 * misc/gethostid.c: Likewise.
31952 * misc/gethostname.c: Likewise.
31953 * misc/getloadavg.c: Likewise.
31954 * misc/getpagesize.c: Likewise.
31955 * misc/getsysstats.c: Likewise.
31956 * misc/getxattr.c: Likewise.
31957 * misc/gtty.c: Likewise.
31958 * misc/ioctl.c: Likewise.
31959 * misc/lgetxattr.c: Likewise.
31960 * misc/listxattr.c: Likewise.
31961 * misc/llistxattr.c: Likewise.
31962 * misc/lremovexattr.c: Likewise.
31963 * misc/lsetxattr.c: Likewise.
31964 * misc/lutimes.c: Likewise.
31965 * misc/madvise.c: Likewise.
31966 * misc/mincore.c: Likewise.
31967 * misc/mlock.c: Likewise.
31968 * misc/mlockall.c: Likewise.
31969 * misc/mmap.c: Likewise.
31970 * misc/mprotect.c: Likewise.
31971 * misc/msync.c: Likewise.
31972 * misc/munlock.c: Likewise.
31973 * misc/munlockall.c: Likewise.
31974 * misc/munmap.c: Likewise.
31975 * misc/preadv.c: Likewise.
31976 * misc/preadv64.c: Likewise.
31977 * misc/ptrace.c: Likewise.
31978 * misc/pwritev.c: Likewise.
31979 * misc/pwritev64.c: Likewise.
31980 * misc/readv.c: Likewise.
31981 * misc/reboot.c: Likewise.
31982 * misc/remap_file_pages.c: Likewise.
31983 * misc/removexattr.c: Likewise.
31984 * misc/revoke.c: Likewise.
31985 * misc/select.c: Likewise.
31986 * misc/setdomain.c: Likewise.
31987 * misc/setegid.c: Likewise.
31988 * misc/seteuid.c: Likewise.
31989 * misc/sethostid.c: Likewise.
31990 * misc/sethostname.c: Likewise.
31991 * misc/setregid.c: Likewise.
31992 * misc/setreuid.c: Likewise.
31993 * misc/setxattr.c: Likewise.
31994 * misc/sstk.c: Likewise.
31995 * misc/stty.c: Likewise.
31996 * misc/swapoff.c: Likewise.
31997 * misc/swapon.c: Likewise.
31998 * misc/sync.c: Likewise.
31999 * misc/syncfs.c: Likewise.
32000 * misc/syscall.c: Likewise.
32001 * misc/truncate.c: Likewise.
32002 * misc/ualarm.c: Likewise.
32003 * misc/usleep.c: Likewise.
32004 * misc/ustat.c: Likewise.
32005 * misc/utimes.c: Likewise.
32006 * misc/vhangup.c: Likewise.
32007 * misc/writev.c: Likewise.
32008 * posix/_exit.c: Likewise.
32009 * posix/alarm.c: Likewise.
32010 * posix/execve.c: Likewise.
32011 * posix/fexecve.c: Likewise.
32012 * posix/fork.c: Likewise.
32013 * posix/fpathconf.c: Likewise.
32014 * posix/getaddrinfo.c: Likewise.
32015 * posix/getegid.c: Likewise.
32016 * posix/geteuid.c: Likewise.
32017 * posix/getgid.c: Likewise.
32018 * posix/getgroups.c: Likewise.
32019 * posix/getlogin.c: Likewise.
32020 * posix/getlogin_r.c: Likewise.
32021 * posix/getpgid.c: Likewise.
32022 * posix/getpid.c: Likewise.
32023 * posix/getppid.c: Likewise.
32024 * posix/getresgid.c: Likewise.
32025 * posix/getresuid.c: Likewise.
32026 * posix/getsid.c: Likewise.
32027 * posix/getuid.c: Likewise.
32028 * posix/glob64.c: Likewise.
32029 * posix/nanosleep.c: Likewise.
32030 * posix/pathconf.c: Likewise.
32031 * posix/pause.c: Likewise.
32032 * posix/posix_madvise.c: Likewise.
32033 * posix/pread.c: Likewise.
32034 * posix/pread64.c: Likewise.
32035 * posix/pwrite.c: Likewise.
32036 * posix/pwrite64.c: Likewise.
32037 * posix/sched_getaffinity.c: Likewise.
32038 * posix/sched_getp.c: Likewise.
32039 * posix/sched_gets.c: Likewise.
32040 * posix/sched_primax.c: Likewise.
32041 * posix/sched_primin.c: Likewise.
32042 * posix/sched_rr_gi.c: Likewise.
32043 * posix/sched_setaffinity.c: Likewise.
32044 * posix/sched_setp.c: Likewise.
32045 * posix/sched_sets.c: Likewise.
32046 * posix/sched_yield.c: Likewise.
32047 * posix/setgid.c: Likewise.
32048 * posix/setlogin.c: Likewise.
32049 * posix/setpgid.c: Likewise.
32050 * posix/setresgid.c: Likewise.
32051 * posix/setresuid.c: Likewise.
32052 * posix/setsid.c: Likewise.
32053 * posix/setuid.c: Likewise.
32054 * posix/sleep.c: Likewise.
32055 * posix/spawni.c: Likewise.
32056 * posix/sysconf.c: Likewise.
32057 * posix/times.c: Likewise.
32058 * posix/wait.c: Likewise.
32059 * posix/wait3.c: Likewise.
32060 * posix/wait4.c: Likewise.
32061 * posix/waitpid.c: Likewise.
32062 * resolv/gai_sigqueue.c: Likewise.
32063 * resource/getpriority.c: Likewise.
32064 * resource/getrlimit.c: Likewise.
32065 * resource/getrusage.c: Likewise.
32066 * resource/nice.c: Likewise.
32067 * resource/setpriority.c: Likewise.
32068 * resource/setrlimit.c: Likewise.
32069 * resource/ulimit.c: Likewise.
32070 * rt/aio_cancel.c: Likewise.
32071 * rt/aio_fsync.c: Likewise.
32072 * rt/aio_read.c: Likewise.
32073 * rt/aio_sigqueue.c: Likewise.
32074 * rt/aio_suspend.c: Likewise.
32075 * rt/aio_write.c: Likewise.
32076 * rt/clock_getres.c: Likewise.
32077 * rt/clock_gettime.c: Likewise.
32078 * rt/clock_nanosleep.c: Likewise.
32079 * rt/clock_settime.c: Likewise.
32080 * rt/lio_listio.c: Likewise.
32081 * rt/mq_close.c: Likewise.
32082 * rt/mq_getattr.c: Likewise.
32083 * rt/mq_notify.c: Likewise.
32084 * rt/mq_open.c: Likewise.
32085 * rt/mq_receive.c: Likewise.
32086 * rt/mq_send.c: Likewise.
32087 * rt/mq_setattr.c: Likewise.
32088 * rt/mq_timedreceive.c: Likewise.
32089 * rt/mq_timedsend.c: Likewise.
32090 * rt/mq_unlink.c: Likewise.
32091 * rt/shm_open.c: Likewise.
32092 * rt/shm_unlink.c: Likewise.
32093 * rt/timer_create.c: Likewise.
32094 * rt/timer_delete.c: Likewise.
32095 * rt/timer_getoverr.c: Likewise.
32096 * rt/timer_gettime.c: Likewise.
32097 * rt/timer_settime.c: Likewise.
32098 * setjmp/__longjmp.c: Likewise.
32099 * setjmp/setjmp.c: Likewise.
32100 * signal/kill.c: Likewise.
32101 * signal/killpg.c: Likewise.
32102 * signal/raise.c: Likewise.
32103 * signal/sigaction.c: Likewise.
32104 * signal/sigaltstack.c: Likewise.
32105 * signal/sigblock.c: Likewise.
32106 * signal/sigignore.c: Likewise.
32107 * signal/sigintr.c: Likewise.
32108 * signal/signal.c: Likewise.
32109 * signal/sigpause.c: Likewise.
32110 * signal/sigpending.c: Likewise.
32111 * signal/sigqueue.c: Likewise.
32112 * signal/sigreturn.c: Likewise.
32113 * signal/sigset.c: Likewise.
32114 * signal/sigsetmask.c: Likewise.
32115 * signal/sigstack.c: Likewise.
32116 * signal/sigsuspend.c: Likewise.
32117 * signal/sigtimedwait.c: Likewise.
32118 * signal/sigvec.c: Likewise.
32119 * signal/sigwait.c: Likewise.
32120 * signal/sigwaitinfo.c: Likewise.
32121 * signal/sysv_signal.c: Likewise.
32122 * socket/accept.c: Likewise.
32123 * socket/accept4.c: Likewise.
32124 * socket/bind.c: Likewise.
32125 * socket/connect.c: Likewise.
32126 * socket/getpeername.c: Likewise.
32127 * socket/getsockname.c: Likewise.
32128 * socket/getsockopt.c: Likewise.
32129 * socket/isfdtype.c: Likewise.
32130 * socket/listen.c: Likewise.
32131 * socket/recv.c: Likewise.
32132 * socket/recvfrom.c: Likewise.
32133 * socket/recvmsg.c: Likewise.
32134 * socket/send.c: Likewise.
32135 * socket/sendmsg.c: Likewise.
32136 * socket/sendto.c: Likewise.
32137 * socket/setsockopt.c: Likewise.
32138 * socket/shutdown.c: Likewise.
32139 * socket/sockatmark.c: Likewise.
32140 * socket/socket.c: Likewise.
32141 * socket/socketpair.c: Likewise.
32142 * stdio-common/ctermid.c: Likewise.
32143 * stdio-common/cuserid.c: Likewise.
32144 * stdio-common/remove.c: Likewise.
32145 * stdio-common/rename.c: Likewise.
32146 * stdio-common/renameat.c: Likewise.
32147 * stdio-common/tempname.c: Likewise.
32148 * stdlib/getcontext.c: Likewise.
32149 * stdlib/makecontext.c: Likewise.
32150 * stdlib/setcontext.c: Likewise.
32151 * stdlib/swapcontext.c: Likewise.
32152 * stdlib/system.c: Likewise.
32153 * streams/fattach.c: Likewise.
32154 * streams/fdetach.c: Likewise.
32155 * streams/getmsg.c: Likewise.
32156 * streams/getpmsg.c: Likewise.
32157 * streams/putmsg.c: Likewise.
32158 * streams/putpmsg.c: Likewise.
32159 * sysdeps/unix/bsd/getpt.c: Likewise.
32160 * sysdeps/unix/sysv/linux/epoll_pwait.c: Likewise.
32161 * sysdeps/unix/sysv/linux/futimens.c: Likewise.
32162 * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
32163 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c:
32164 Likewise.
32165 * sysdeps/unix/sysv/linux/readahead.c: Likewise.
32166 * sysdeps/unix/sysv/linux/sync_file_range.c: Likewise.
32167 * sysdeps/unix/sysv/linux/utimensat.c: Likewise.
32168 * sysvipc/msgctl.c: Likewise.
32169 * sysvipc/msgget.c: Likewise.
32170 * sysvipc/msgrcv.c: Likewise.
32171 * sysvipc/msgsnd.c: Likewise.
32172 * sysvipc/semctl.c: Likewise.
32173 * sysvipc/semget.c: Likewise.
32174 * sysvipc/semop.c: Likewise.
32175 * sysvipc/semtimedop.c: Likewise.
32176 * sysvipc/shmat.c: Likewise.
32177 * sysvipc/shmctl.c: Likewise.
32178 * sysvipc/shmdt.c: Likewise.
32179 * sysvipc/shmget.c: Likewise.
32180 * termios/tcdrain.c: Likewise.
32181 * termios/tcflow.c: Likewise.
32182 * termios/tcflush.c: Likewise.
32183 * termios/tcgetattr.c: Likewise.
32184 * termios/tcgetpgrp.c: Likewise.
32185 * termios/tcsendbrk.c: Likewise.
32186 * termios/tcsetattr.c: Likewise.
32187 * termios/tcsetpgrp.c: Likewise.
32188 * time/adjtime.c: Likewise.
32189 * time/clock.c: Likewise.
32190 * time/getitimer.c: Likewise.
32191 * time/gettimeofday.c: Likewise.
32192 * time/setitimer.c: Likewise.
32193 * time/settimeofday.c: Likewise.
32194 * time/stime.c: Likewise.
32195 * time/time.c: Likewise.
32196
321972012-11-04 Pino Toscano <toscano.pino@tiscali.it>
32198
32199 * sysdeps/generic/paths.h (_PATH_STDPATH): Remove /usr/contrib/bin and
32200 /usr/old/bin.
32201
32202 * sysdeps/generic/paths.h (_PATH_MNTTAB, _PATH_MOUNTED): Use tabs
32203 instead of spaces.
32204 * sysdeps/unix/sysv/linux/paths.h (_PATH_UTMP, _PATH_WTMP): Likewise.
32205
322062012-11-03 Joseph Myers <joseph@codesourcery.com>
32207
32208 [BZ #14796]
32209 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Set rounding mode to
32210 FE_TONEAREST before applying Dekker multiplication and Knuth
32211 addition. Clear inexact exceptions and check for exact zero
32212 results afterwards.
32213 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
32214 * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
32215 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
32216 * math/libm-test.inc (fma_test): Add more tests.
32217 (fma_test_towardzero): Likewise.
32218 (fma_test_downward): Likewise.
32219 (fma_test_upward): Likewise.
32220 * sysdeps/generic/math_private.h (default_libc_fesetround): New
32221 function.
32222 (libc_fesetround): New macro.
32223 (libc_fesetroundf): Likewise.
32224 (libc_fesetroundl): Likewise.
32225 * sysdeps/i386/fpu/fenv_private.h (libc_fesetround_sse): New
32226 function.
32227 (libc_fesetround_387): Likewise.
32228 (libc_fesetroundf): New macro.
32229 (libc_fesetround): Likewise.
32230 (libc_fesetroundl): Likewise.
32231 * sysdeps/sparc/fpu/fenv_private.h (libc_fesetround): New
32232 function.
32233 (libc_fesetroundf): New macro.
32234 (libc_fesetround): Likewise.
32235 (libc_fesetroundl): Likewise.
32236 * include/fenv.h (feclearexcept): Add libm_hidden_proto.
32237 * math/fclrexcpt.c (feclearexcept): Add libm_hidden_ver.
32238 * sysdeps/i386/fpu/fclrexcpt.c (feclearexcept): Add
32239 libm_hidden_ver.
32240 * sysdeps/powerpc/fpu/fclrexcpt.c (feclearexcept): Likewise.
32241 * sysdeps/s390/fpu/fclrexcpt.c (feclearexcept): Add
32242 libm_hidden_def.
32243 * sysdeps/sh/sh4/fpu/fclrexcpt.c (feclearexcept): Likewise.
32244 * sysdeps/sparc/fpu/fclrexcpt.c (feclearexcept): Add
32245 libm_hidden_ver.
32246 * sysdeps/x86_64/fpu/fclrexcpt.c (feclearexcept): Add
32247 libm_hidden_def.
32248
32249 [BZ #3439]
32250 * sysdeps/powerpc/bits/fenv.h (FE_INEXACT): Define macro to
32251 integer constant usable in #if and use that to give value to enum
32252 constant.
32253 (FE_DIVBYZERO): Likewise.
32254 (FE_UNDERFLOW): Likewise.
32255 (FE_OVERFLOW): Likewise.
32256 (FE_INVALID): Likewise.
32257 (FE_INVALID_SNAN): Likewise.
32258 (FE_INVALID_ISI): Likewise.
32259 (FE_INVALID_IDI): Likewise.
32260 (FE_INVALID_ZDZ): Likewise.
32261 (FE_INVALID_IMZ): Likewise.
32262 (FE_INVALID_COMPARE): Likewise.
32263 (FE_INVALID_SOFTWARE): Likewise.
32264 (FE_INVALID_SQRT): Likewise.
32265 (FE_INVALID_INTEGER_CONVERSION): Likewise.
32266 (FE_TONEAREST): Likewise.
32267 (FE_TOWARDZERO): Likewise.
32268 (FE_UPWARD): Likewise.
32269 (FE_DOWNWARD): Likewise.
32270 * sysdeps/s390/fpu/bits/fenv.h (FE_INVALID): Likewise.
32271 (FE_DIVBYZERO): Likewise.
32272 (FE_OVERFLOW): Likewise.
32273 (FE_UNDERFLOW): Likewise.
32274 (FE_INEXACT): Likewise.
32275 (FE_TONEAREST): Likewise.
32276 (FE_DOWNWARD): Likewise.
32277 (FE_UPWARD): Likewise.
32278 (FE_TOWARDZERO): Likewise.
32279 * sysdeps/sh/sh4/fpu/bits/fenv.h (FE_INEXACT): Likewise.
32280 (FE_UNDERFLOW): Likewise.
32281 (FE_OVERFLOW): Likewise.
32282 (FE_DIVBYZERO): Likewise.
32283 (FE_INVALID): Likewise.
32284 (FE_TONEAREST): Likewise.
32285 (FE_TOWARDZERO): Likewise.
32286 * sysdeps/sparc/fpu/bits/fenv.h (FE_INVALID): Likewise.
32287 (FE_OVERFLOW): Likewise.
32288 (FE_UNDERFLOW): Likewise.
32289 (FE_DIVBYZERO): Likewise.
32290 (FE_INEXACT): Likewise.
32291 (FE_TONEAREST): Likewise.
32292 (FE_TOWARDZERO): Likewise.
32293 (FE_UPWARD): Likewise.
32294 (FE_DOWNWARD): Likewise.
32295 * sysdeps/x86/fpu/bits/fenv.h (FE_INVALID): Likewise.
32296 (FE_DIVBYZERO): Likewise.
32297 (FE_OVERFLOW): Likewise.
32298 (FE_UNDERFLOW): Likewise.
32299 (FE_INEXACT): Likewise.
32300 (FE_TONEAREST): Likewise.
32301 (FE_DOWNWARD): Likewise.
32302 (FE_UPWARD): Likewise.
32303 (FE_TOWARDZERO): Likewise.
32304
323052012-11-02 Chris Metcalf <cmetcalf@tilera.com>
32306
32307 * elf/elf.h (R_TILEGX_IMM16_X[01]_HW[012]_(|LAST_)PLT_PCREL): Add.
32308
323092012-11-03 Andreas Schwab <schwab@linux-m68k.org>
32310
32311 * scripts/cross-test-ssh.sh (command): Use newlines to separate
32312 commands. Quote $PWD.
32313 (blacklist_exports): Don't use remove_newlines. Replace "declare
32314 -x" by "export".
32315 (remove_newlines): Remove.
32316
323172012-11-02 H.J. Lu <hongjiu.lu@intel.com>
32318
32319 * stdlib/Makefile (headers): Add bits/stdlib-float.h.
32320 * stdlib/stdlib.h (atof): Moved to ...
32321 * include/bits/stdlib-float.h: Here. New file.
32322 * stdlib/stdlib.h: Include <bits/stdlib-float.h>.
32323 * stdlib/bits/stdlib-float.h: New file.
32324 * sysdeps/x86/Makefile (CFLAGS-.os): Compile rtld routines with
32325 -mno-sse -mno-mmx.
32326 * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: Include
32327 <xmmintrin.h>.
32328
323292012-11-02 Joseph Myers <joseph@codesourcery.com>
32330
32331 * conform/conformtest.pl (@headers): Add fenv.h.
32332 * conform/data/fenv.h-data: New file.
32333 * include/fenv.h [_ISOMAC]: Disable all contents of file except
32334 include of <math/fenv.h>.
32335
32336 * conform/data/complex.h-data [ISO99 || ISO11 || XOPEN2K ||
32337 POSIX2008]: Change condition to [!ISO && !POSIX && !XPG3 && !XPG4
32338 && !UNIX98]. Enables tests for XOPEN2K8.
32339 * conform/data/inttypes.h-data [ISO99 || ISO11 || XOPEN2K ||
32340 POSIX2008]: Likewise.
32341
32342 * conform/data/sys/wait.h-data [XPG3 || XOPEN2K8 || POSIX2008]
32343 (struct rusage): Do not expect type or its members.
32344
32345 [BZ #3439]
32346 * math/math.h (FP_NAN): Define macro to integer constant usable in
32347 #if and use that to give value to enum constant.
32348 (FP_INFINITE): Likewise.
32349 (FP_ZERO): Likewise.
32350 (FP_SUBNORMAL): Likewise.
32351 (FP_NORMAL): Likewise.
32352
323532012-11-02 Andreas Schwab <schwab@linux-m68k.org>
32354
32355 * iconvdata/bug-iconv8.c (do_test): Use %z for size_t arguments.
32356 * iconvdata/bug-iconv9.c (do_test): Use %t for ptrdiff_t
32357 arguments.
32358
323592012-11-02 Roland McGrath <roland@hack.frob.com>
32360
32361 * aclocal.m4 (GLIBC_AUTOCONF_VERSION): New macro.
32362 Check that AC_AUTOCONF_VERSION matches it and m4_fatal at
32363 autoconf-time if not.
32364 * configure.in: Remove AC_PREREQ.
32365
323662012-11-02 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
32367
32368 * sysdeps/powerpc/sys/platform/ppc.h (__ppc_get_timebase): Use
32369 __builtin_ppc_get_timebase when building with GCC >= 4.8 instead
32370 of the internal implementation.
32371
323722012-11-02 Joseph Myers <joseph@codesourcery.com>
32373
32374 * include/sys/syslog.h [_ISOMAC]: Disable all contents of file
32375 except include of <misc/sys/syslog.h>.
32376
323772012-11-01 Andreas Schwab <schwab@linux-m68k.org>
32378
32379 * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: If the
32380 function returns with a NULL context exit with zero.
32381
323822012-11-01 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
32383
32384 * sysdeps/powerpc/Makefile (cflags): Remove -mnew-mnemonics.
32385
323862012-11-01 H.J. Lu <hongjiu.lu@intel.com>
32387
32388 * catgets/test-gencat.sh (run_program_prefix): Renamed to ...
32389 (run_program_cmd): This.
32390 * localedata/tst-langinfo.sh (run_program_prefix): Removed.
32391 (tst_langinfo): New variable. Use it.
32392
323932012-11-01 Sebastan Andrzej Siewior <bigeasy@linutronix.de>
32394
32395 * sysdeps/powerpc/powerpc32/dl-trampoline.S: Put __NO_FPRS__ around
32396 floating point opcodes.
32397
323982012-11-01 Thomas Schwinge <thomas@codesourcery.com>
32399
32400 * sysdeps/mach/hurd/Makefile (link-libc-static-tests): New
32401 variable.
32402
32403 * elf/dl-support.c: Unconditionally include "setup-vdso.h".
32404
32405 * sysdeps/mach/hurd/powerpc: Remove directory.
32406 * sysdeps/mach/powerpc: Likewise.
32407
324082012-11-01 Andreas Schwab <schwab@linux-m68k.org>
32409
32410 * scripts/check-local-headers.sh: Ignore c++ headers.
32411
324122012-11-01 Thomas Schwinge <thomas@codesourcery.com>
32413
32414 * libio/genops.c (_IO_flush_all_lockp): Use NULL rather than 0 for
32415 __libc_cleanup_region_start argument.
32416
324172012-11-01 Joseph Myers <joseph@codesourcery.com>
32418
32419 [BZ #14784]
32420 [BZ #14785]
32421 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Handle cases with small
32422 x * y using scaling, not as x * y + z.
32423 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
32424 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
32425 * math/libm-test.inc (fma_test): Add more tests.
32426 (fma_test_towardzero): Likewise.
32427 (fma_test_downward): Likewise.
32428 (fma_test_upward): Likewise.
32429
324302012-11-01 Thomas Schwinge <thomas@codesourcery.com>
32431
32432 * sysdeps/mach/hurd/bits/param.h: Remove stray #endif.
32433
324342012-10-31 Joseph Myers <joseph@codesourcery.com>
32435
32436 * sysdeps/sh/Makefile [$(subdir) = debug] (CFLAGS-backtrace.c):
32437 New variable.
32438
324392012-10-31 Thomas Schwinge <thomas@codesourcery.com>
32440
32441 * rt/tst-shm.c (worker): Correct checking for mmap failure.
32442
324432012-10-31 Andreas Schwab <schwab@linux-m68k.org>
32444
32445 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
32446 Fix sort order.
32447 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
32448 Likewise.
32449
324502012-10-31 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
32451
32452 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
32453 Fix the order of the list for glibc 2.17.
32454 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
32455 Likewise.
32456
324572012-10-31 Andreas Schwab <schwab@linux-m68k.org>
32458
32459 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
32460
324612012-10-31 Joseph Myers <joseph@codesourcery.com>
32462
32463 [BZ #14610]
32464 * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c (__ieee754_atan2l): Check
32465 for low part of x being zero before using __atanl (y).
32466 * math/libm-test.inc (atan2_test): Add another test.
32467
32468 * manual/install.texi (Configuring and compiling): Document
32469 general use of test-wrapper and test-wrapper-env.
32470 * INSTALL: Regenerated.
32471
32472 * sysdeps/ieee754/dbl-64/s_fma.c: Include <tininess.h>.
32473 (__fma): Do not extract and scale down low bits on after-rounding
32474 systems when result rounded to normal precision would have normal
32475 exponent.
32476 * sysdeps/ieee754/ldbl-128/s_fmal.c: Include <tininess.h>.
32477 (__fmal): Do not extract and scale down low bits on after-rounding
32478 systems when result rounded to normal precision would have normal
32479 exponent.
32480 * sysdeps/ieee754/ldbl-96/s_fmal.c: Include <tininess.h>.
32481 (__fmal): Do not extract and scale down low bits on after-rounding
32482 systems when result rounded to normal precision would have normal
32483 exponent.
32484 * math/libm-test.inc (UNDERFLOW_EXCEPTION_BEFORE_ROUNDING): New
32485 macro.
32486 (fma_test): Add more tests.
32487 (fma_test_towardzero): Likewise.
32488 (fma_test_downward): Likewise.
32489 (fma_test_upward): Likewise.
32490
324912012-10-30 H.J. Lu <hongjiu.lu@intel.com>
32492
32493 * sysdeps/i386/tininess.h: Renamed to ...
32494 * sysdeps/x86/tininess.h: This.
32495 * sysdeps/x86_64/tininess.h: Removed.
32496
324972012-10-30 Joseph Myers <joseph@codesourcery.com>
32498
32499 * elf/Makefile ($(objpfx)tst-array1.out): Depend on comparison
32500 input. Use $(build-program-cmd).
32501 ($(objpfx)tst-array1-static.out): Likewise.
32502 ($(objpfx)tst-array2.out): Likewise.
32503 ($(objpfx)tst-array3.out): Likewise.
32504 ($(objpfx)tst-array4.out): Likewise.
32505 ($(objpfx)tst-array5.out): Likewise.
32506 ($(objpfx)tst-array5-static.out): Likewise.
32507
325082012-10-30 Chris Metcalf <cmetcalf@tilera.com>
32509
32510 * elf/dl-load.c (_dl_map_object_from_fd): Call DL_AFTER_LOAD
32511 if defined.
32512
32513 * nss/nsswitch.h (nss_interface_function): Provide new
32514 macro for use with NSS functions.
32515 * grp/initgroups.c: Use new macro.
32516 * nss/getXXbyYY.c: Likewise.
32517 * nss/getXXbyYY_r.c: Likewise.
32518 * nss/getXXent.c: Likewise.
32519 * nss/getXXent_r.c: Likewise.
32520 * sysdeps/posix/getaddrinfo.c: Likewise.
32521
325222012-10-30 Andreas Jaeger <aj@suse.de>
32523
32524 * po/ru.po: Update Russion translation from translation project.
32525
325262012-10-30 Joseph Myers <joseph@codesourcery.com>
32527
32528 [BZ #14152]
32529 [BZ #14783]
32530 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Extract low bits of
32531 result and shift together with sticky bit instead of replicating
32532 round-to-nearest rounding.
32533 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
32534 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
32535 * math/libm-test.inc (fma_test): Add more tests. Do not permit
32536 missing underflow exceptions.
32537 (fma_test_towardzero): Add more tests.
32538 (fma_test_downward): Likewise.
32539 (fma_test_upward): Likewise.
32540
32541 [BZ #14047]
32542 * sysdeps/generic/tininess.h: New file.
32543 * sysdeps/i386/tininess.h: Likewise.
32544 * sysdeps/sh/tininess.h: Likewise.
32545 * sysdeps/x86_64/tininess.h: Likewise.
32546 * stdlib/tst-strtod-underflow.c: Likewise.
32547 * stdlib/tst-tininess.c: Likewise.
32548 * stdlib/strtod_l.c: Include <tininess.h>.
32549 (round_and_return): Do not set errno for exact underflow cases.
32550 Force an underflow exception when setting errno for underflow.
32551 Determine underflow based on rounding to normal precision if
32552 TININESS_AFTER_ROUNDING.
32553 * stdlib/tst-strtod.c (tests): Do not expect errno to be set to
32554 ERANGE for exact underflow cases.
32555 * stdlib/Makefile (tests): Add tst-tininess and
32556 tst-strtod-underflow.
32557 ($(objpfx)tst-tininess): Use $(link-libm).
32558 ($(objpfx)tst-strtod-underflow): Likewise.
32559
325602012-10-30 Andreas Jaeger <aj@suse.de>
32561
32562 [BZ#14767]
32563 * elf/Makefile (tests): Remove conditional for have-initfini-array
32564 since this is now always required and the variable does not exist
32565 anymore.
32566 (tests-static): Likewise.
32567 (modules-names): Likewise.
32568
32569 * po/eo.po: Add Esperanto translation from translation project.
32570
32571 * elf/tst-array1.c (fini_array): Make writeable so that it can be
32572 merged with constructor/destructor.
32573 (init_array): Likewise.
32574 * elf/tst-array2dep.c (fini_array): Likewise.
32575 (init_array): Likewise.
32576
325772012-10-29 Mike Frysinger <vapier@gentoo.org>
32578
32579 * manual/message.texi: Delete @cartouche tags.
32580
325812012-10-29 Pino Toscano <toscano.pino@tiscali.it>
32582
32583 * sysdeps/mach/hurd/fdatasync.c: Turn ERR into EINVAL if it is
32584 EOPNOTSUPP.
32585 * sysdeps/mach/hurd/fsync.c: Likewise.
32586
32587 * sysdeps/pthread/aio_notify.c (__aio_notify_only)
32588 [_POSIX_REALTIME_SIGNALS]: Change condition to
32589 [_POSIX_REALTIME_SIGNALS > 0].
32590
325912012-10-27 Andreas Jaeger <aj@suse.de>
32592
32593 * sysdeps/unix/sysv/linux/x86/bits/fcntl.h (__O_LARGEFILE)
32594 [!__x86_64]: Do not define, take value from <bits/fcntl-linux.h>.
32595 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (__O_LARGEFILE):
32596 [__WORDSIZE != 64]: Likewise.
32597
325982012-10-26 H.J. Lu <hongjiu.lu@intel.com>
32599
32600 * iconvdata/tst-table.sh: Remove ${SHELL}.
32601 * iconvdata/tst-tables.sh: Likewise.
32602
326032012-10-25 David S. Miller <davem@davemloft.net>
32604
32605 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
32606 (__get_clockfreq_via_proc_openprom): Use strtoumax instead
32607 of strtoull.
32608
32609 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Add comments for
32610 ifunc-impl-list.c
32611 * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
32612 * sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c: New file.
32613 * sysdeps/sparc/sparc32/sparcv9/multiarch/ifunc-impl-list.c: New
32614 file.
32615
326162012-10-25 Roland McGrath <roland@hack.frob.com>
32617
32618 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
32619 (__get_clockfreq_via_proc_openprom): Use __getdents instead of
32620 __getdirentries.
32621
326222012-10-25 Joseph Myers <joseph@codesourcery.com>
32623 Jim Blandy <jimb@codesourcery.com>
32624
32625 * scripts/cross-test-ssh.sh: New file.
32626 * manual/install.texi (Configuring and compiling): Document use of
32627 cross-test-ssh.sh.
32628 * INSTALL: Regenerated.
32629
326302012-10-25 Pino Toscano <toscano.pino@tiscali.it>
32631
32632 * sysdeps/mach/hurd/ptrace.c (ptrace): Use __hurd_fail to return
32633 EOPNOTSUPP.
32634
326352012-10-25 Joseph Myers <joseph@codesourcery.com>
32636
32637 * Makeconfig (run-program-prefix): Fix comment.
32638
326392012-10-24 Joseph Myers <joseph@codesourcery.com>
32640 Jim Blandy <jimb@codesourcery.com>
32641
32642 * Makeconfig (test-wrapper): New variable,
32643 (test-wrapper-env): Likewise.
32644 [$(cross-compiling) = yes && $(test-wrapper) != ""]
32645 (run-built-tests): Define to yes.
32646 (run-program-prefix): Use $(test-wrapper).
32647 (built-program-cmd): Likewise.
32648 * Rules (make-test-out): Use $(test-wrapper-env) and
32649 $(host-built-program-cmd).
32650 * elf/Makefile ($(objpfx)order.out): Use $(test-wrapper).
32651 ($(objpfx)tst-pathopt.out): Pass $(test-wrapper-env) to
32652 tst-pathopt.sh.
32653 ($(objpfx)tst-rtld-load-self.out): Pass $(test-wrapper) and
32654 $(test-wrapper-env) to tst-rtld-load-self.sh.
32655 ($(objpfx)order2.out): Use $(test-wrapper).
32656 ($(objpfx)tst-initorder.out): Likewise.
32657 ($(objpfx)tst-initorder2.out): Likewise.
32658 ($(objpfx)tst-unused-dep.out): Use $(test-wrapper-env).
32659 * elf/tst-pathopt.sh (run_program_prefix): Remove unused variable.
32660 (test_wrapper_env): New variable. Use it to run ld.so.
32661 * elf/tst-rtld-load-self.sh (test_wrapper): New variable.
32662 Use it to run ld.so.
32663 (test_wrapper_env): Likewise.
32664 * iconvdata/Makefile ($(objpfx)iconv-test.out): Pass
32665 $(test-wrapper) to run-iconv-test.sh.
32666 * iconvdata/run-iconv-test.sh (test_wrapper): New variable.
32667 (ICONV): Use $test_wrapper.
32668 * posix/Makefile ($(objpfx)globtest.out): Pass
32669 $(run-via-rtld-prefix), $(test-wrapper) and $(test-wrapper-env) to
32670 globtest.sh, not $(run-program-prefix).
32671 * posix/globtest.sh (run_via_rtld_prefix): New variable.
32672 (test_wrapper): Likewise.
32673 (test_wrapper_env): Likewise. Use it to run globtest with HOME
32674 set together with run_via_rtld_prefix.
32675 (run_program_prefix): Define in terms of test_wrapper and
32676 run_via_rtld_prefix.
32677
326782012-10-24 Roland McGrath <roland@hack.frob.com>
32679
32680 * nscd/Makefile ($(objpfx)nscd): Remove librt dependency.
32681 * posix/Makefile ($(objpfx)tst-regex, $(objpfx)tst-regex2):
32682 Targets removed.
32683
32684 [BZ #14743]
32685 * include/time.h: Remove librt_hidden_proto (clock_gettime).
32686 Declare __clock_getres, __clock_gettime, __clock_settime,
32687 __clock_nanosleep, and __clock_getcpuclockid.
32688 * rt/clock_gettime.c: Define __clock_gettime as an alias.
32689 Remove librt_hidden_def (clock_gettime).
32690 * sysdeps/unix/clock_gettime.c: Likewise.
32691 * rt/clock_getcpuclockid.c: Define __clock_getcpuclockid as an alias.
32692 * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: Likewise.
32693 * rt/clock_getres.c: Define __clock_getres as an alias.
32694 * sysdeps/posix/clock_getres.c: Likewise.
32695 * rt/clock_settime.c: Define __clock_settime as an alias.
32696 * sysdeps/unix/clock_settime.c: Likewise.
32697 * rt/clock_nanosleep.c: Define __clock_nanosleep as an alias.
32698 * sysdeps/unix/clock_nanosleep.c: Likewise.
32699 * sysdeps/unix/sysv/linux/clock_nanosleep.c: Likewise.
32700 * rt/clock-compat.c: New file.
32701 * rt/Makefile (librt-routines): Add clock-compat and move
32702 $(clock-routines) to ...
32703 (routines): ... here, new variable.
32704 * sysdeps/unix/sysv/linux/powerpc/Makefile (sysdep_routines):
32705 Don't add get_clockfreq here.
32706 * rt/Versions (libc: GLIBC_2.17): New version set.
32707 Add clock_* symbols here.
32708 (libc: GLIBC_PRIVATE): New version set. Add __clock_* symbols here.
32709 * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist
32710 (GLIBC_2.17): Add clock_* symbols.
32711 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Likewise.
32712 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Likewise.
32713 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
32714 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
32715 Likewise.
32716 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
32717 Likewise.
32718 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
32719 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Likewise.
32720 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Likewise.
32721 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Likewise.
32722 * NEWS: Mention the move.
32723
32724 * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
32725 Use __open, __read, __close rather than their public counterparts.
32726 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
32727 (__get_clockfreq_via_cpuinfo): Likewise.
32728 (__get_clockfreq_via_proc_openprom): Likewise, and __getdirentries.
32729 (__get_clockfreq_via_dev_openprom): Likewise, and __ioctl.
32730
32731 * config.h.in (HAVE_IFUNC): New #undef.
32732 * configure.in: Define it if libc_cv_ld_gnu_indirect_function
32733 was successful.
32734 * configure: Regenerated.
32735
327362012-10-24 Mike Frysinger <vapier@gentoo.org>
32737
32738 * configure.in: Move READELF check to start of file.
32739 (libc_cv_ld_gnu_indirect_function): Change to a link test. Rename from
32740 libc_cv_asm_gnu_indirect_function in the process.
32741 * configure: Regenerated.
32742
327432012-10-24 Mike Frysinger <vapier@gentoo.org>
32744
32745 * configure.in (libc_cv_gcc_static_libgcc): Drop -q flag to grep and
32746 send the output to /dev/null.
32747 (libc_cv_cc_with_libunwind): Likewise.
32748 (libc_cv_as_noexecstack): Likewise.
32749 * configure: Regenerate.
32750
327512012-10-24 Joseph Myers <joseph@codesourcery.com>
32752
32753 * io/ftwtest-sh (tmp): Define to ${objpfx}io, not using `pwd`.
32754
32755 * posix/globtest.sh (TMPDIR): Do not set.
32756 (testdir): Define using ${common_objpfx}posix not $TMPDIR.
32757 (testout): Likewise.
32758
327592012-10-24 Andreas Jaeger <aj@suse.de>
32760
32761 * io/fcntl.h: Always define mode_t, off_t, pid_t and use these
32762 types for creat, creat64, lockf, posix_fadvise, posix_fallocate.
32763 [__USE_LARGEFILE64 && !__off64_t_defined]: Define off64_t.
32764 [__USE_LARGEFILE64]: Use off64_t in declaration of lock64,
32765 posix_fadvise64, posix_fallocate64.
32766
32767 * sysdeps/unix/sysv/linux/x86/bits/fcntl.h (F_GETLK, F_SETLK)
32768 (F_SETLKW) [__x86_64]: Remove, provided by <bits/fcntl-linux.h>.
32769 (F_GETLK, F_SETLK, F_SETLKW) [!__USE_FILE_OFFSET64 && !__x86_64__]:
32770 Likewise.
32771 (F_GETLK, F_SETLK, F_SETLKW) [__USE_FILE_OFFSET64 && ! __x86_64__]:
32772 Likewise.
32773 (F_GETLK64, F_SETLK64, F_SETLKW64) [!__x86_64__]: Likewise.
32774
32775 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (F_GETLK, F_SETLK)
32776 (F_SETLKW) [__USE_FILE_OFFSET64]: Remove, provided by
32777 <bits/fcntl-linux.h>.
32778 (F_GETLK64, F_SETLK64, F_SETLKW64) [__WORDSIZE == 64]: Likewise.
32779
32780 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (F_DUPFD, F_GETFD)
32781 (F_SETFD, F_GETFL, F_SETFL): Remove, provided by <bits/fcntl-linux.h>.
32782 (F_GETLK, F_SETLK, F_SETLKW) [__WORDSIZE == 64]: Likewise.
32783 (F_GETLK, F_SETLK, F_SETLKW, F_GETLK64, F_SETLK64, F_SETLKW64)
32784 [__WORDSIZE != 64]: Likewise.
32785
327862012-10-23 Joseph Myers <joseph@codesourcery.com>
32787
32788 * Makeconfig (run-built-tests): New variable.
32789 * Rules [$(cross-compiling) = yes]: Change condition to
32790 [$(run-built-tests) = no].
32791 * catgets/Makefile [$(cross-compiling) != yes]: Change condition
32792 to [$(run-built-tests) = yes].
32793 * elf/Makefile [$(cross-compiling) = no]: Likewise
32794 * grp/Makefile [$(cross-compiling) = no]: Likewise.
32795 * iconv/Makefile [$(cross-compiling) != yes]: Likewise.
32796 * iconvdata/Makefile [$(cross-compiling) = no]: Likewise.
32797 * intl/Makefile [$(cross-compiling) = no]: Likewise.
32798 * io/Makefile [$(cross-compiling) = no]: Likewise.
32799 * libio/Makefile [$(cross-compiling) = no]: Likewise.
32800 * malloc/Makefile [$(cross-compiling) = no]: Likewise.
32801 * misc/Makefile [$(cross-compiling) = no]: Likewise.
32802 * posix/Makefile [$(cross-compiling) = no]: Likewise.
32803 * resolv/Makefile [$(cross-compiling) = no]: Likewise.
32804 * stdio-common/Makefile [$(cross-compiling) = no]: Likewise.
32805 * stdlib/Makefile [$(cross-compiling) = no]: Likewise.
32806 * string/Makefile [$(cross-compiling) = no]: Likewise.
32807
32808 * posix/Makefile ($(objpfx)globtest.out): Pass
32809 $(run-program-prefix) to globtest.sh, not $(elf-objpfx) and
32810 $(rtld-installed-name).
32811 * posix/globtest.sh (elf_objpfx): Remove variable.
32812 (rtld_installed_name): Likewise.
32813 (library_path): Likewise.
32814 (run_program_prefix): New variable. Use for running globtest
32815 binary.
32816
328172012-10-23 Jim Blandy <jimb@codesourcery.com>
32818 Joseph Myers <joseph@codesourcery.com>
32819
32820 * Makeconfig (host-built-program-cmd): New variable.
32821 * elf/Makefile (tst-stackguard1-ARGS): Use
32822 $(host-built-program-cmd).
32823 * posix/Makefile (tst-exec-ARGS): Use $(host-built-program-cmd).
32824 (tst-spawn-ARGS): Likewise.
32825 * rt/Makefile (tst-mqueue7-ARGS): Use $(host-built-program-cmd).
32826
328272012-10-23 Joseph Myers <joseph@codesourcery.com>
32828 Jim Blandy <jimb@codesourcery.com>
32829
32830 * Makeconfig (run-via-rtld-prefix): New variable.
32831 (run-program-prefix): Define in terms of $(run-via-rtld-prefix).
32832 (built-program-cmd): Likewise.
32833
328342012-10-22 Andreas Jaeger <aj@suse.de>
32835
32836 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (O_RSYNC): Define to
32837 __O_RSYNC if it exists, otherwise to O_SYNC.
32838
328392012-10-22 Jim Blandy <jimb@codesourcery.com>
32840 Joseph Myers <joseph@codesourcery.com>
32841
32842 * iconvdata/run-iconv-test.sh: Redirect iconv stdin in loops from
32843 /dev/null.
32844 * iconvdata/tst-tables.sh: Redirect tst-table.sh stdin in loop
32845 from /dev/null
32846 * posix/tst-getconf.sh: Redirect getconf stdin in loop from
32847 /dev/null.
32848
328492012-10-22 Andreas Jaeger <aj@suse.de>
32850
32851 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (__O_LARGEFILE):
32852 Define always.
32853 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (__O_LARGEFILE): Likewise.
32854
32855 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
32856 bits/fcntl-linux.h.
32857
32858 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (F_GETLK, F_SETLK)
32859 (F_SETLKW) [!F_GETLK]: Define values for [!__USE_FILE_OFFSET64].
32860
32861 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (O_LARGEFILE): Rename
32862 to __O_LARGEFILE.
32863 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_LARGEFILE): Rename
32864 to __O_LARGEFILE.
32865
328662012-10-21 Jim Blandy <jimb@codesourcery.com>
32867 Joseph Myers <joseph@codesourcery.com>
32868
32869 * config.make.in (NM): New variable.
32870
328712012-10-21 Andreas Jaeger <aj@suse.de>
32872
32873 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Remove all
32874 definitions and declarations that are provided by
32875 <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
32876
328772012-10-20 H.J. Lu <hongjiu.lu@intel.com>
32878
32879 [BZ #14683]
32880 * elf/Makefile (tests-static): Add tst-leaks1-static.
32881 (tests): Also depend on $(objpfx)tst-leaks1-static-mem.
32882 ($(objpfx)tst-leaks1-static): New rule.
32883 ($(objpfx)tst-leaks1-static-mem): Likewise.
32884 (tst-leaks1-static-ENV): New macro.
32885 * elf/dl-open.c (dl_open_worker): Check the main application
32886 only if SHARED is defined.
32887 * elf/tst-leaks1-static.c: New file.
32888
328892012-10-20 Andreas Jaeger <aj@suse.de>
32890
32891 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: New file, contains
32892 generic values for Linux.
32893 * sysdeps/unix/sysv/linux/x86/bits/fcntl.h: Remove all definitions
32894 and declarations that are provided by <bits/fcntl-linux.h> and
32895 include <bits/fcntl-linux.h>.
32896 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
32897 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
32898
328992012-10-20 Roland McGrath <roland@hack.frob.com>
32900
32901 * io/fcntl.h: Move include of <bits/types.h> to the top and
32902 include it unconditionally.
32903
329042012-10-20 H.J. Lu <hongjiu.lu@intel.com>
32905
32906 * wcsmbs/Makefile (tests-ifunc): New variable.
32907 (tests): Add $(tests-ifunc).
32908 * wcsmbs/test-wcschr-ifunc.c: New file.
32909 * wcsmbs/test-wcscmp-ifunc.c: Likewise.
32910 * wcsmbs/test-wcscpy-ifunc.c: Likewise.
32911 * wcsmbs/test-wcslen-ifunc.c: Likewise.
32912 * wcsmbs/test-wcsrchr-ifunc.c: Likewise.
32913 * wcsmbs/test-wmemcmp-ifunc.c: Likewise.
32914
32915 * string/Makefile (tests-ifunc): New variable.
32916 (tests): Add $(tests-ifunc).
32917 * string/test-memccpy.c (TEST_NAME): New macro.
32918 * string/test-memchr.c (TEST_NAME): Likewise.
32919 * string/test-memcmp.c (TEST_NAME): Likewise.
32920 * string/test-memcpy.c (TEST_NAME): Likewise.
32921 * string/test-memmem.c (TEST_NAME): Likewise.
32922 * string/test-memmove.c (TEST_NAME): Likewise.
32923 * string/test-memset.c (TEST_NAME): Likewise.
32924 * string/test-rawmemchr.c (TEST_NAME): Likewise.
32925 * string/test-stpcpy.c (TEST_NAME): Likewise.
32926 * string/test-stpncpy.c (TEST_NAME): Likewise.
32927 * string/test-strcasecmp.c (TEST_NAME): Likewise.
32928 * string/test-strcasestr.c (TEST_NAME): Likewise.
32929 * string/test-strcat.c (TEST_NAME): Likewise.
32930 * string/test-strchr.c (TEST_NAME): Likewise.
32931 * string/test-strcmp.c(TEST_NAME): Likewise.
32932 * string/test-strcpy.c (TEST_NAME): Likewise.
32933 * string/test-strcspn.c (TEST_NAME): Likewise.
32934 * string/test-strlen.c (TEST_NAME): Likewise.
32935 * string/test-strncasecmp.c (TEST_NAME): Likewise.
32936 * string/test-strncmp.c (TEST_NAME): Likewise.
32937 * string/test-strncpy.c (TEST_NAME): Likewise.
32938 * string/test-strnlen.c (TEST_NAME): Likewise.
32939 * string/test-strpbrk.c (TEST_NAME): Likewise.
32940 * string/test-strrchr.c (TEST_NAME): Likewise.
32941 * string/test-strspn.c (TEST_NAME): Likewise.
32942 * string/test-strstr.c (TEST_NAME): Likewise.
32943 * string/test-bcopy-ifunc.c: New file.
32944 * string/test-bzero-ifunc.c: Likewise.
32945 * string/test-memccpy-ifunc.c: Likewise.
32946 * string/test-memchr-ifunc.c: Likewise.
32947 * string/test-memcmp-ifunc.c: Likewise.
32948 * string/test-memcpy-ifunc.c: Likewise.
32949 * string/test-memmem-ifunc.c: Likewise.
32950 * string/test-memmove-ifunc.c: Likewise.
32951 * string/test-mempcpy-ifunc.c: Likewise.
32952 * string/test-memset-ifunc.c: Likewise.
32953 * string/test-rawmemchr-ifunc.c: Likewise.
32954 * string/test-stpcpy-ifunc.c: Likewise.
32955 * string/test-stpncpy-ifunc.c: Likewise.
32956 * string/test-strcasecmp-ifunc.c: Likewise.
32957 * string/test-strcasestr-ifunc.c: Likewise.
32958 * string/test-strcat-ifunc.c: Likewise.
32959 * string/test-strchr-ifunc.c: Likewise.
32960 * string/test-strchrnul-ifunc.c: Likewise.
32961 * string/test-strcmp-ifunc.c: Likewise.
32962 * string/test-strcpy-ifunc.c: Likewise.
32963 * string/test-strcspn-ifunc.c: Likewise.
32964 * string/test-strlen-ifunc.c: Likewise.
32965 * string/test-strncasecmp-ifunc.c: Likewise.
32966 * string/test-strncat-ifunc.c: Likewise.
32967 * string/test-strncmp-ifunc.c: Likewise.
32968 * string/test-strncpy-ifunc.c: Likewise.
32969 * string/test-strnlen-ifunc.c: Likewise.
32970 * string/test-strpbrk-ifunc.c: Likewise.
32971 * string/test-strrchr-ifunc.c: Likewise.
32972 * string/test-strspn-ifunc.c: Likewise.
32973 * string/test-strstr-ifunc.c: Likewise.
32974
32975 * debug/Makefile (tests-ifunc): New variable.
32976 (tests): Add $(tests-ifunc).
32977 * debug/test-stpcpy_chk.c (TEST_NAME): New macro.
32978 * debug/test-strcpy_chk.c (TEST_NAME): Likewise.
32979 * debug/test-stpcpy_chk-ifunc.c: New file.
32980 * debug/test-strcpy_chk-ifunc.c: Likewise.
32981
329822012-10-20 Siddhesh Poyarekar <siddhesh@redhat.com>
32983
32984 [BZ #13601]
32985 * elf/dl-load.c (open_verify): Retry read if the entire ELF
32986 header is not read in.
32987
329882012-10-19 Joseph Myers <joseph@codesourcery.com>
32989
32990 * io/Makefile ($(objpfx)ftwtest.out): Depend on ftwtest-sh. Pass
32991 script to $(SHELL) as $<. Pass $(common-objpfx) to script
32992 directly. Pass built executable to script as
32993 $(built-program-cmd).
32994 * io/ftwtest-sh (ldso): Remove variable. Run ftwtest directly as
32995 $testprogram without using LD_LIBRARY_PATH and $ldso.
32996
32997 * grp/Makefile ($(objpfx)tst_fgetgrent.out): Pass
32998 $(run-program-prefix) to tst_fgetgrent.sh, not $(elf-objpfx) and
32999 $(rtld-installed-name).
33000 * grp/tst_fgetgrent.sh (elf_objpfx): Remove variable.
33001 (rtld_installed_name): Likewise.
33002 (library_path): Likewise.
33003 (run_program_prefix): New variable. Use it to run tst_fgetgrent.
33004 * iconvdata/Makefile ($(objpfx)tst-tables.out): Pass
33005 $(run-program-prefix) to tst-tables.sh.
33006 * iconvdata/tst-table.sh (run_program_prefix): New variable. Use
33007 it to run tst-table-from and tst-table-to.
33008 * iconvdata/tst-tables.sh (run_program_prefix): New variable.
33009 Pass it to tst-table.sh.
33010 * intl/Makefile ($(objpfx)tst-gettext.out): Pass
33011 $(run-program-prefix) to tst-gettext.sh.
33012 ($(objpfx)tst-translit.out): Pass $(run-program-prefix) to
33013 tst-translit.sh.
33014 ($(objpfx)tst-gettext2.out): Pass $(run-program-prefix) to
33015 tst-gettext2.sh.
33016 * intl/tst-gettext.sh (run_program_prefix): New variable. Use it
33017 to run tst-gettext.
33018 * intl/tst-gettext2.sh (run_program_prefix): New variable. Use it
33019 to run tst-gettext2.
33020 * intl/tst-translit.sh (run_program_prefix): New variable. Use it
33021 to run tst-translit.
33022 * malloc/Makefile ($(objpfx)tst-mtrace.out): Pass
33023 $(run-program-prefix) to tst-mtrace.sh.
33024 * malloc/tst-mtrace.sh (run_program_prefix): New variable. Use it
33025 to run tst-mtrace.
33026 * posix/Makefile ($(objpfx)wordexp-tst.out): Pass
33027 $(run-program-prefix) to wordexp-tst.sh, not $(elf-objpfx) and
33028 $(rtld-installed-name).
33029 * posix/wordexp-tst.sh (elf_objpfx): Remove variable.
33030 (rtld_installed_name): Likewise.
33031 (run_program_prefix): New variable. Use it to run wordexp-test.
33032
33033 * Makeconfig (ARCH): Remove all definitions.
33034 (machine): Likewise.
33035 [ARCH]: Remove conditional code.
33036 [!objdir]: Give error.
33037 [!objdir] (objpfx): Remove.
33038 [!objdir] (common-objpfx): Likewise.
33039 [!objdir] (common-objdir): Likewise.
33040 * configure.in (config_makefile): Remove. Hardcode Makefile in
33041 AC_CONFIG_FILES call.
33042 * configure: Regenerated.
33043
33044 [BZ #13888]
33045 * io/ftwtest-sh (tmp): Set to use the working directory, not /tmp
33046 or TMPDIR.
33047 (testout): Likewise.
33048
33049 * posix/Makefile ($(objpfx)tst-getconf.out): Pass
33050 $(built-program-cmd) to tst-getconf.sh, not $(elf-objpfx) and
33051 $(rtld-installed-name).
33052 * posix/tst-getconf.sh (elf_objpfx): Remove variable.
33053 (rtld_installed_name): Likwise.
33054 (runit): Remove function.
33055 (run_getconf): New variable, Use it for running getconf binary.
33056
330572012-10-18 H.J. Lu <hongjiu.lu@intel.com>
33058
33059 [BZ #14716]
33060 * string/test-memmem.c (check_result): New function.
33061 (do_one_test): Use it.
33062 (check1): New function.
33063 (test_main): Use it.
33064
330652012-10-18 Markus Trippelsdorf <markus@trippelsdorf.de>
33066
33067 * math/Makefile: Comment on slow compilation of test-tgmath2.c.
33068
330692012-10-18 Joseph Myers <joseph@codesourcery.com>
33070
33071 * sysdeps/generic/_G_config.h (_G_OPEN64): Remove.
33072 (_G_LSEEK64): Likewise.
33073 (_G_MMAP64): Likewise.
33074 (_G_FSTAT64): Likewise.
33075 * sysdeps/unix/sysv/linux/_G_config.h (_G_OPEN64): Remove.
33076 (_G_LSEEK64): Likewise.
33077 (_G_MMAP64): Likewise.
33078 (_G_FSTAT64): Likewise.
33079 * libio/fileops.c (mmap_remap_check) [_G_MMAP64]: Make code
33080 unconditional. Call __mmap64 directly.
33081 (mmap_remap_check) [!_G_MMAP64]: Remove conditional code.
33082 (mmap_remap_check) [_G_LSEEK64]: Make code unconditional. Call
33083 __lseek64 directly.
33084 (mmap_remap_check) [!_G_LSEEK64]: Remove conditional code.
33085 (decide_maybe_mmap) [_G_MMAP64]: Make code unconditional. Call
33086 __mmap64 directly.
33087 (decide_maybe_mmap) [!_G_MMAP64]: Remove conditional code.
33088 (decide_maybe_mmap) [_G_LSEEK64]: Make code unconditional. Call
33089 __lseek64 directly.
33090 (decide_maybe_mmap) [!_G_LSEEK64]: Remove conditional code.
33091 (_IO_file_sync_mmap) [_G_LSEEK64]: Make code unconditional. Call
33092 __lseek64 directly.
33093 (_IO_file_sync_mmap) [!_G_LSEEK64]: Remove conditional code.
33094 (_IO_file_seek) [_G_LSEEK64]: Make code unconditional. Call
33095 __lseek64 directly.
33096 (_IO_file_seek) [!_G_LSEEK64]: Remove conditional code.
33097 (_IO_file_stat) [_G_FSTAT64]: Make code unconditional. Call
33098 __fxstat64 directly.
33099 (_IO_file_stat) [!_G_FSTAT64]: Remove conditional code.
33100 * libio/freopen64.c (freopen64) [_G_OPEN64]: Make code
33101 unconditional.
33102 (freopen64) [!_G_OPEN64]: Remove conditional code.
33103 * libio/fseeko64.c (fseeko64) [_G_LSEEK64]: Make code
33104 unconditional.
33105 (fseeko64) [!_G_LSEEK64]: Remove conditional code.
33106 * libio/ftello64.c (ftello64) [_G_LSEEK64]: Make code
33107 unconditional.
33108 (ftello64) [!_G_LSEEK64]: Remove conditional code.
33109 * libio/iofgetpos64.c (_IO_new_fgetpos64) [_G_LSEEK64]: Make code
33110 unconditional.
33111 (_IO_new_fgetpos64) [!_G_LSEEK64]: Remove conditional code.
33112 * libio/iofopen64.c (_IO_fopen64) [_G_OPEN64]: Make code
33113 unconditional.
33114 (_IO_fopen64) [!_G_OPEN64]: Remove conditional code.
33115 * libio/iofsetpos64.c (_IO_new_fsetpos64) [_G_LSEEK64]: Make code
33116 unconditional.
33117 (_IO_new_fsetpos64) [!_G_LSEEK64]: Remove conditional code.
33118 * libio/oldiofgetpos64.c (_IO_old_fgetpos64) [_G_LSEEK64]: Make code
33119 unconditional.
33120 (_IO_old_fgetpos64) [!_G_LSEEK64]: Remove conditional code.
33121 * libio/oldiofsetpos64.c (_IO_old_fsetpos64) [_G_LSEEK64]: Make code
33122 unconditional.
33123 (_IO_old_fsetpos64) [!_G_LSEEK64]: Remove conditional code.
33124
331252012-10-18 Siddhesh Poyarekar <siddhesh@redhat.com>
33126
33127 [BZ #12140]
33128 * manual/memory.texi (Malloc Tunable Parameters): Add note
33129 about free list pointers overwriting some perturb bytes.
33130 Wording suggested by Roland McGrath.
33131
331322012-10-17 Joseph Myers <joseph@codesourcery.com>
33133
33134 * math/libm-test.inc (gamma_test): Do not call feclearexcept.
33135 (lgamma_test): Likewise.
33136 (tgamma_test): Likewise.
33137
331382012-10-16 Florian Weimer <fweimer@redhat.com>
33139
33140 [BZ #14700]
33141 * sysdeps/posix/opendir.c (MAX_DIR_BUFFER_SIZE): New constant.
33142 (__alloc_dir): Limit buffer to MAX_DIR_BUFFER_SIZE.
33143
331442012-10-16 Maxim Kuvyrkov <maxim@codesourcery.com>
33145
33146 * NEWS: Mention BZ #14716.
33147 * string/str-two-way.h (two_way_short_needle): Fix thinko introduced
33148 when removing AVAILABLE1_USES_J macro.
33149
331502012-10-12 H.J. Lu <hongjiu.lu@intel.com>
33151
33152 * sysdeps/x86/bits/byteswap.h: Include <bits/types.h>.
33153 (__bswap_64): __uint64_t for unsigned 64-bit int.
33154
331552012-10-12 Andreas Schwab <schwab@linux-m68k.org>
33156
33157 * include/string.h (memmem): Declare libc hidden alias.
33158 * string/memmem.c (memmem): Define libc hidden alias.
33159 * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Use __open,
33160 __read, __close instead of open, read, close.
33161
331622012-10-11 H.J. Lu <hongjiu.lu@intel.com>
33163
33164 * sysdeps/x86_64/multiarch/ifunc-impl-list.c: New file.
33165 * sysdeps/x86_64/multiarch/memcmp.S (__memcmp_sse2): Make it
33166 global and hidden.
33167 * sysdeps/x86_64/multiarch/memcpy.S (__memcpy_sse2): Likewise.
33168 * sysdeps/x86_64/multiarch/mempcpy.S (__mempcpy_sse2): Likewise.
33169 * sysdeps/x86_64/multiarch/rawmemchr.S (__rawmemchr_sse42):
33170 Likewise.
33171 (__rawmemchr_sse2): Likewise.
33172 * sysdeps/x86_64/multiarch/strcat.S (STRCAT_SSE2): Likewise.
33173 * sysdeps/x86_64/multiarch/strchr.S (__strchr_sse42): Likewise.
33174 (__strchr_sse2): Likewise.
33175 * sysdeps/x86_64/multiarch/strcmp-sse42.S (STRCMP_SSE42): Likewise.
33176 * sysdeps/x86_64/multiarch/strcmp.S (STRCMP_SSE2): Likewise.
33177 (__strcasecmp_sse2): Likewise.
33178 (__strncasecmp_sse2): Likewise.
33179 * sysdeps/x86_64/multiarch/strcpy.S (STRCPY_SSE2): Likewise.
33180 * sysdeps/x86_64/multiarch/strlen.S (__strlen_sse2): Likewise.
33181 * sysdeps/x86_64/multiarch/strnlen.S (__strnlen_sse2): Likewise.
33182 * sysdeps/x86_64/multiarch/strrchr.S (__strrchr_sse42): Likewise.
33183 (__strrchr_sse2): Likewise.
33184 * sysdeps/x86_64/multiarch/memcmp.S: Add comments for
33185 ifunc-impl-list.c.
33186 * sysdeps/x86_64/multiarch/memcpy.S: Likewise.
33187 * sysdeps/x86_64/multiarch/memcpy_chk.S: Likewise.
33188 * sysdeps/x86_64/multiarch/memmove.c: Likewise.
33189 * sysdeps/x86_64/multiarch/memmove_chk.c: Likewise.
33190 * sysdeps/x86_64/multiarch/mempcpy.S: Likewise.
33191 * sysdeps/x86_64/multiarch/mempcpy_chk.S: Likewise.
33192 * sysdeps/x86_64/multiarch/memset.S: Likewise.
33193 * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
33194 * sysdeps/x86_64/multiarch/rawmemchr.S: Likewise.
33195 * sysdeps/x86_64/multiarch/stpcpy.S: Likewise.
33196 * sysdeps/x86_64/multiarch/stpncpy.S: Likewise.
33197 * sysdeps/x86_64/multiarch/strcasecmp_l.S: Likewise.
33198 * sysdeps/x86_64/multiarch/strcasestr-c.c: Likewise.
33199 * sysdeps/x86_64/multiarch/strcat.S: Likewise.
33200 * sysdeps/x86_64/multiarch/strchr.S: Likewise.
33201 * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
33202 * sysdeps/x86_64/multiarch/strcpy.S: Likewise.
33203 * sysdeps/x86_64/multiarch/strcspn.S: Likewise.
33204 * sysdeps/x86_64/multiarch/strlen.S: Likewise.
33205 * sysdeps/x86_64/multiarch/strncase_l.S: Likewise.
33206 * sysdeps/x86_64/multiarch/strncat.S: Likewise.
33207 * sysdeps/x86_64/multiarch/strncmp.S: Likewise.
33208 * sysdeps/x86_64/multiarch/strncpy.S: Likewise.
33209 * sysdeps/x86_64/multiarch/strnlen.S: Likewise.
33210 * sysdeps/x86_64/multiarch/strpbrk.S: Likewise.
33211 * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
33212 * sysdeps/x86_64/multiarch/strspn.S: Likewise.
33213 * sysdeps/x86_64/multiarch/strstr-c.c: Likewise.
33214 * sysdeps/x86_64/multiarch/wcscpy.S: Likewise.
33215 * sysdeps/x86_64/multiarch/wmemcmp.S: Likewise.
33216
33217 * sysdeps/i386/i686/multiarch/bcopy.S (__bcopy_ia32): Make it
33218 global and hidden.
33219 * sysdeps/i386/i686/multiarch/bzero.S (__bzero_ia32): Likewise.
33220 * sysdeps/i386/i686/multiarch/memcmp.S (__memcmp_ia32): Likewise.
33221 * sysdeps/i386/i686/multiarch/memcpy.S (__memcpy_ia32): Likewise.
33222 * sysdeps/i386/i686/multiarch/memmove.S (__memmove_ia32):
33223 Likewise.
33224 * sysdeps/i386/i686/multiarch/mempcpy.S (__mempcpy_ia32):
33225 Likewise.
33226 * sysdeps/i386/i686/multiarch/strcat.S (STRCAT_IA32): Likewise.
33227 * sysdeps/i386/i686/multiarch/strcmp.S (__STRCMP_IA32): Likewise.
33228 * sysdeps/i386/i686/multiarch/strcpy.S (STRCPY_IA32): Likewise.
33229 * sysdeps/i386/i686/multiarch/bcopy.S: Add comments for
33230 ifunc-impl-list.c.
33231 * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
33232 * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
33233 * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
33234 * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
33235 * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
33236 * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
33237 * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
33238 * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
33239 * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
33240 * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
33241 * sysdeps/i386/i686/multiarch/memset.S: Likewise.
33242 * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
33243 * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
33244 * sysdeps/i386/i686/multiarch/stpcpy.S: Likewise.
33245 * sysdeps/i386/i686/multiarch/stpncpy.S: Likewise.
33246 * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
33247 * sysdeps/i386/i686/multiarch/strcasecmp_l.S: Likewise.
33248 * sysdeps/i386/i686/multiarch/strcasestr-c.c: Likewise.
33249 * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
33250 * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
33251 * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
33252 * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
33253 * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
33254 * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
33255 * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
33256 * sysdeps/i386/i686/multiarch/strncase_l.S: Likewise.
33257 * sysdeps/i386/i686/multiarch/strncat.S: Likewise.
33258 * sysdeps/i386/i686/multiarch/strncmp.S: Likewise.
33259 * sysdeps/i386/i686/multiarch/strncpy.S: Likewise.
33260 * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
33261 * sysdeps/i386/i686/multiarch/strpbrk.S: Likewise.
33262 * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
33263 * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
33264 * sysdeps/i386/i686/multiarch/strstr-c.c: Likewise.
33265 * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
33266 * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
33267 * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
33268 * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
33269 * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
33270 * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
33271 * sysdeps/i386/i686/multiarch/ifunc-impl-list.c: New file.
33272
33273 * Rules [$(multi-arch) = no] (tests): Filter out $(tests-ifunc).
33274 [$(multi-arch) = no] (xtests): Filter out $(xtests-ifunc).
33275 * include/ifunc-impl-list.h: New file.
33276 * misc/ifunc-impl-list.c: Likewise.
33277 * misc/Makefile (routines): Add ifunc-impl-list.
33278 * misc/Versions (GLIBC_PRIVATE): Add __libc_ifunc_impl_list.
33279 * string/test-string.h: Include <ifunc-impl-list.h>.
33280 (func_list, func_count, impl_count, impl_array) [TEST_IFUNC &&
33281 TEST_NAME]: New variables.
33282 (FOR_EACH_IMPL): Support func_list if TEST_IFUNC and TEST_NAME
33283 are defined.
33284 (test_init): Call __libc_ifunc_impl_list to initialize
33285 func_list if TEST_IFUNC and TEST_NAME are defined.
33286
33287 * string/Makefile (strop-tests): Add bcopy and bzero.
33288 * string/test-bcopy.c: New file.
33289 * string/test-bzero.c: Likewise.
33290 * string/test-memmove.c: Support bcopy test if TEST_BCOPY is
33291 defined.
33292 * string/test-memset.c: Support bzero test if TEST_BZERO is
33293 defined.
33294 * sysdeps/x86_64/multiarch/bcopy.S (bcopy): Jump to
33295 __libc_memmove.
33296 * sysdeps/x86_64/multiarch/bzero.S (__bzero): Jump to
33297 __libc_memset.
33298 * sysdeps/x86_64/multiarch/memset.S (__libc_memset): New alias
33299 of memset.
33300
333012012-10-10 Joseph Myers <joseph@codesourcery.com>
33302
33303 * configure.in: Run $CXX, not cc1plus, to locate C++ headers.
33304 * configure: Regenerated.
33305
33306 * Makeconfig (+link-static-before-libc): Don't include
33307 $(link-static-libc).
33308
33309 * libio/libio.h (_IO_pos_t): Remove.
33310
333112012-10-10 Alexandre Oliva <aoliva@redhat.com>
33312
33313 * NEWS: Add note about FIPS mode. Wording suggested by Roland
33314 McGrath.
33315
333162012-10-10 Alexandre Oliva <aoliva@redhat.com>
33317
33318 * crypt/crypt-entry.c: Include fips-private.h.
33319 (__crypt_r, __crypt): Disable MD5 and DES if FIPS is enabled.
33320 * crypt/md5c-test.c (main): Tolerate disabled MD5.
33321 * sysdeps/unix/sysv/linux/fips-private.h: New file.
33322 * sysdeps/generic/fips-private.h: New file, dummy fallback.
33323
333242012-10-10 Alexandre Oliva <aoliva@redhat.com>
33325
33326 * crypt/crypt-private.h: Include stdbool.h.
33327 (_ufc_setup_salt_r): Return bool.
33328 * crypt/crypt-entry.c: Include errno.h.
33329 (__crypt_r): Return NULL with EINVAL for bad salt.
33330 * crypt/crypt_util.c (bad_for_salt): New.
33331 (_ufc_setup_salt_r): Check that salt is long enough and within
33332 the specified alphabet.
33333 * crypt/badsalttest.c: New file.
33334 * crypt/Makefile (tests): Add it.
33335 ($(objpfx)badsalttest): New.
33336
333372012-10-09 Maxim Kuvyrkov <maxim@codesourcery.com>
33338
33339 * NEWS: Add entry for BZ #14602.
33340
333412012-10-09 Joseph Myers <joseph@codesourcery.com>
33342
33343 * math/gen-libm-test.pl (parse_args): Handle comparison macros as
33344 type-generic.
33345 * math/libm-test.inc: Update comment listing what functions and
33346 macros are tested.
33347 (isgreater_test): New function.
33348 (isgreaterequal_test): Likewise.
33349 (isless_test): Likewise.
33350 (islessequal_test): Likewise.
33351 (islessgreater_test): Likewise.
33352 (isunordered_test): Likewise.
33353 (main): Call the new functions.
33354
333552012-10-09 Roland McGrath <roland@hack.frob.com>
33356
33357 * aclocal.m4 (GLIBC_PROVIDES): Provide _AS_BASENAME_PREPARE,
33358 _AS_ME_PREPARE, _AS_VAR_ARITH_PREPARE, AS_SHELL_FN_as_fn_set_status,
33359 AS_SHELL_FN_as_fn_exit, AS_SHELL_FN_ac_fn_c_try_compile.
33360 * sysdeps/i386/configure: Regenerated.
33361 * sysdeps/ieee754/ldbl-opt/configure: Regenerated.
33362 * sysdeps/mach/configure: Regenerated.
33363 * sysdeps/mach/hurd/configure: Regenerated.
33364 * sysdeps/powerpc/configure: Regenerated.
33365 * sysdeps/powerpc/powerpc32/configure: Regenerated.
33366 * sysdeps/powerpc/powerpc64/configure: Regenerated.
33367 * sysdeps/s390/s390-32/configure: Regenerated.
33368 * sysdeps/s390/s390-64/configure: Regenerated.
33369 * sysdeps/sh/configure: Regenerated.
33370 * sysdeps/sparc/configure: Regenerated.
33371 * sysdeps/unix/sysv/linux/configure: Regenerated.
33372 * sysdeps/unix/sysv/linux/powerpc/configure: Regenerated.
33373 * sysdeps/x86_64/configure: Regenerated.
33374
33375 * dlfcn/dlerror.c (check_free): Call _dl_addr only if SHARED is
33376 defined. Don't check if MAP is NULL.
33377
333782012-10-09 Joseph Myers <joseph@codesourcery.com>
33379
33380 * sysdeps/generic/_G_config.h (_G_off64_t): Remove.
33381 (_G_stat64): Likewise.
33382 * sysdeps/unix/sysv/linux/_G_config.h (_G_off64_t): Remove.
33383 (_G_stat64): Likewise.
33384 * libio/filedoalloc.c (_IO_file_doallocate): Use struct stat64
33385 instead of struct _G_stat64.
33386 * libio/fileops.c (mmap_remap_check): Likewise.
33387 (decide_maybe_mmap): Likewise.
33388 (_IO_new_file_seekoff): Likewise.
33389 (_IO_file_stat): Likewise.
33390 * libio/libio.h (_IO_off64_t): Define to __off64_t, not
33391 _G_off64_t.
33392 * libio/oldfileops.c (_IO_old_file_seekoff): Use struct stat64
33393 instead of struct _G_stat64.
33394 * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
33395
333962012-10-08 Maxim Kuvyrkov <maxim@codesourcery.com>
33397
33398 [BZ #14602]
33399 * string/str-two-way.h (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
33400 Replace with ...
33401 (CHECK_EOL): New macro.
33402 (two_way_short_needle): Check beginning of haystack for EOL. Use
33403 CHECK_EOL.
33404 * string/strcasestr.c (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
33405 Replace with CHECK_EOL.
33406 * string/strstr.c (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
33407 Replace with CHECK_EOL.
33408
334092012-10-08 Joseph Myers <joseph@codesourcery.com>
33410
33411 * math/gen-libm-test.pl (parse_args): Handle isinf and isnan as
33412 type-generic.
33413 * math/libm-test.inc: Update comment listing what functions and
33414 macros are tested.
33415 (finite_test): New function.
33416 (isinf_test): Likewise.
33417 (isnan_test): Likewise.
33418 (fpclassify_test): Test subnormal input.
33419 (isfinite_test): Likewise.
33420 (isnormal_test): Likewise.
33421 (main): Call the new functions.
33422
334232012-10-08 Jonathan Nieder <jrnieder@gmail.com>
33424
33425 [BZ #14660]
33426 * Makerules (%.dynsym): Force C locale when running
33427 $(OBJDUMP) --dynamic-syms.
33428
334292012-10-08 Andreas Schwab <schwab@linux-m68k.org>
33430
33431 * sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c: Include
33432 <stdint.h>.
33433
334342012-10-06 David S. Miller <davem@davemloft.net>
33435
33436 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: On 32-bit, clear
33437 upper 32-bits of the length value in %o2 since we use branch-on-register
33438 tests which consider the entire 64-bit register.
33439
334402012-10-06 H.J. Lu <hongjiu.lu@intel.com>
33441
33442 * string/test-strstr.c (check2): Add a test for page boundary.
33443
334442012-10-05 David S. Miller <davem@davemloft.net>
33445
33446 * sysdeps/sparc/sparc64/multiarch/memset-niagara4.S: New file.
33447 * sysdeps/sparc/sparc32/sparcv9/multiarch/memset-niagara4.S: New
33448 file.
33449 * sysdeps/sparc/sparc64/multiarch/Makefile: Add to
33450 sysdep_routines.
33451 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Likewise.
33452 * sysdeps/sparc/sparc64/multiarch/memset.S: Use Niagara-4 memset
33453 and bzero when HWCAP_SPARC_CRYPTO is present.
33454
334552012-10-05 H.J. Lu <hongjiu.lu@intel.com>
33456
33457 [BZ #14602]
33458 * string/test-strstr.c (check2): New function.
33459 (test_main): Call check2.
33460
33461 * string/Makefile (tests): Remove bug-strstr1, bug-strcasestr1
33462 and bug-strchr1.
33463 * string/bug-strcasestr1.c (do_test): Moved to ...
33464 * string/test-strcasestr.c (check1): Here. New function.
33465 (do_one_test): Break out result checking code into ...
33466 (check_result): This. New function.
33467 (do_one_test): Call check_result.
33468 (test_main): Call check1.
33469 * string/bug-strchr1.c (do_test): Moved to ...
33470 * string/test-strchr.c (check1): Here. New function.
33471 (do_one_test): Break out result checking code into ...
33472 (check_result): This. New function.
33473 (do_one_test): Call check_result.
33474 (test_main): Call check1.
33475 * string/bug-strstr1.c (main): Moved to ...
33476 * string/test-strstr.c (check1): Here. New function.
33477 (do_one_test): Break out result checking code into ...
33478 (check_result): This. New function.
33479 (do_one_test): Call check_result.
33480 (test_main): Call check1.
33481 * string/bug-strcasestr1.c: Removed.
33482 * string/bug-strchr1.c: Likewise.
33483 * string/bug-strstr1.c: Likewise.
33484
33485 * elf/Makefile (dl-routines): Add hwcaps.
33486 * elf/dl-support.c (_dl_important_hwcaps): Removed.
33487 * elf/dl-sysdep.c (_DL_FIRST_EXTRA): Likewise.
33488 (_dl_important_hwcaps): Moved to ...
33489 * elf/dl-hwcaps.c: Here. New file.
33490 * sysdeps/mach/hurd/dl-sysdep.c (_dl_important_hwcaps): Removed.
33491
33492 [BZ #14557]
33493 * elf/setup-vdso.h (setup_vdso): Set GL(dl_nns) to 1 for vDSO
33494 if IS_IN_rtld isn't defined.
33495
33496 * elf/dl-support.c (_dl_sysinfo_map): New.
33497 Include "get-dynamic-info.h" and "setup-vdso.h".
33498 (_dl_non_dynamic_init): Call setup_vdso.
33499 * elf/dynamic-link.h: Don't include <assert.h>.
33500 (elf_get_dynamic_info): Moved to ...
33501 * elf/get-dynamic-info.h: Here. New file.
33502 * elf/dynamic-link.h: Include "get-dynamic-info.h".
33503 * elf/rtld.c (dl_main): Break out vDSO setup code into ...
33504 * elf/setup-vdso.h: Here. New file.
33505 * elf/rtld.c: Include "setup-vdso.h".
33506 (dl_main): Call setup_vdso.
33507
335082012-10-05 Joseph Myers <joseph@codesourcery.com>
33509
33510 * math/libm-test.inc: List nexttoward, cimag, clog10, conf and
33511 creal in comment listing functions tested. List finite, isinf,
33512 isnan, isless, islessequal, isgreater, isgreaterequal,
33513 islessgreater, isunordered, lgamma_r and pow10 as functions and
33514 macros not tested. Mention which functions not tested are aliases
33515 for other functions. Fix typo. Note that signs of NaNs are not
33516 tested.
33517
33518 * scripts/config.guess: Update from config.git.
33519 * scripts/config.sub: Likewise.
33520
335212012-10-04 Roland McGrath <roland@hack.frob.com>
33522
33523 * misc/Versions (GLIBC_PRIVATE): New set, add __madvise.
33524 * misc/madvise.c (madvise): Renamed to __madvise.
33525 Make madvise a weak alias.
33526 * include/sys/mman.h: Declare __madvise.
33527 Replace libc_hidden_proto (madvise) with libc_hidden_proto (__madvise).
33528 * sysdeps/unix/syscalls.list
33529 (madvise): Make __madvise the strong name, and madvise a weak alias.
33530 * sysdeps/unix/sysv/linux/syscalls.list
33531 (madvise, mmap): Remove redundant entries.
33532 * malloc/arena.c (shrink_heap): Use __madvise, not madvise.
33533 * malloc/malloc.c (mtrim): Likewise.
33534 * sysdeps/mach/hurd/malloc-machine.h (madvise): Renamed to __madvise.
33535
335362012-10-03 Roland McGrath <roland@hack.frob.com>
33537
33538 * sysdeps/mach/hurd/dl-cache.c: File removed.
33539 * config.h.in (USE_LDCONFIG): New #undef.
33540 * configure.in (use_ldconfig): If set, define USE_LDCONFIG.
33541 * configure: Regenerated.
33542 * elf/Makefile (dl-routines): Add dl-cache only under
33543 [$(use-ldconfig) = yes].
33544 * elf/dl-load.c (_dl_map_object): Conditionalize code consulting the
33545 cache on [USE_LDCONFIG].
33546 * elf/dl-open.c (_dl_open): Call _dl_unload_cache only under
33547 [USE_LDCONFIG].
33548 * elf/rtld.c (dl_main): Likewise.
33549
335502012-10-03 Pino Toscano <toscano.pino@tiscali.it>
33551
33552 * sysdeps/posix/sysconf.c (__sysconf): Return 0 also for
33553 _SC_LEVEL4_CACHE_LINESIZE.
33554
335552012-10-03 Roland McGrath <roland@hack.frob.com>
33556
33557 * sysdeps/unix/bsd/confstr.h: File removed.
33558
335592012-10-02 Alexandre Oliva <aoliva@redhat.com>
33560
33561 * scripts/check-local-headers.sh: Exclude sys/sdt.h and
33562 sys/sdt-config.h.
33563
335642012-10-02 Roland McGrath <roland@hack.frob.com>
33565
33566 * elf/dl-load.c (_dl_map_object_from_fd: struct loadcmd):
33567 Make 'mapoff' field ElfW(Off) rather than off_t.
33568
335692012-10-02 Dmitry V. Levin <ldv@altlinux.org>
33570
33571 * nscd/Makefile: Remove nscd-cflags and all its users.
33572 (CPPFLAGS-nonlib): Add preprocessor flags for nscd modules.
33573 (CFLAGS-nonlib): Add compiler flags for nscd modules.
33574
33575 [BZ #10631]
33576 * malloc.c (malloc_printerr): Clarify error message.
33577
335782012-10-02 H.J. Lu <hongjiu.lu@intel.com>
33579
33580 [BZ #14648]
33581 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
33582 Set bit_FMA_Usable if FMA is supported.
33583 * sysdeps/x86_64/multiarch/init-arch.h (bit_FMA_Usable): New
33584 macro.
33585 (bit_FMA4_Usable): Updated.
33586 (index_FMA_Usable): New macro.
33587 (CPUID_FMA): Likewise
33588 (HAS_FMA): Defined with bit_FMA_Usable.
33589
335902012-10-01 Roland McGrath <roland@hack.frob.com>
33591
33592 * bits/types.h (__swblk_t): Type removed.
33593 * bits/typesizes.h (__SWBLK_T_TYPE): Macro removed.
33594 * sysdeps/mach/hurd/bits/typesizes.h (__SWBLK_T_TYPE): Likewise.
33595 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
33596 (__SWBLK_T_TYPE): Likewise.
33597 * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
33598 (__SWBLK_T_TYPE): Likewise.
33599 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
33600 (__SWBLK_T_TYPE): Likewise.
33601 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
33602 (__SWBLK_T_TYPE): Likewise.
33603
336042012-10-01 Patsy Franklin <pfrankli@redhat.com>
33605 Honza Horak <hhorak@redhat.com>
33606
33607 * nis/yp_xdr.c (xdr_domainname): Use YPMAXDOMAIN as maxsize.
33608 (xdr_mapname): Use YPMAXMAP as maxsize.
33609 (xdr_peername): Use YPMAXPEER as maxsize.
33610 (xdr_keydat): Use YPAXRECORD as maxsize.
33611 (xdr_valdat): Use YPMAXRECORD as maxsize.
33612
336132012-10-01 Roland McGrath <roland@hack.frob.com>
33614
33615 * io/openat.c [!__ASSUME_ATFCTS] (__have_atfcts): New global variable.
33616
33617 * sysdeps/unix/sysv/linux/init-first.c: Moved to ...
33618 * csu/init-first.c: ... here.
33619 * sysdeps/unix/sysv/linux/powerpc/init-first.c: Update #include.
33620 * sysdeps/unix/sysv/linux/s390/init-first.c: Likewise.
33621 * sysdeps/unix/sysv/linux/x86_64/init-first.c: Likewise.
33622 * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: Likewise.
33623 * sysdeps/i386/init-first.c: File removed.
33624 * sysdeps/sh/init-first.c: File removed.
33625
336262012-10-01 Joseph Myers <joseph@codesourcery.com>
33627
33628 [BZ #14645]
33629 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Compute result as x * y
33630 if x * y might underflow to zero and z is zero.
33631 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
33632 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
33633 * math/libm-test.inc (min_subnorm_value): New variable.
33634 (fma_test): Add more tests.
33635 (fma_test_towardzero): Likewise.
33636 (fma_test_downward): Likewise
33637 (fma_test_upward): Likewise.
33638 (initialize): Set min_subnorm_value.
33639
336402012-09-29 Joseph Myers <joseph@codesourcery.com>
33641
33642 [BZ #14638]
33643 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use x * y + z for exact
33644 0 + 0.
33645 * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Use original rounding
33646 mode for addition resulting in exact zero.
33647 * sysdeps/ieee754/ldbl-128/s_fma.c (__fma): Likewise.
33648 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Use x * y + z for
33649 exact 0 + 0.
33650 * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
33651 * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
33652 * math/libm-test.inc (fma_test): Add more tests.
33653 (fma_test_towardzero): New function.
33654 (fma_test_downward): Likewise.
33655 (fma_test_upward): Likewise.
33656 (main): Call the new functions.
33657
336582012-09-28 David S. Miller <davem@davemloft.net>
33659
33660 * sysdeps/sparc/fpu/libm-test-ulps: Fix garbage in file.
33661
336622012-09-28 Roland McGrath <roland@hack.frob.com>
33663
33664 * sysdeps/posix/sleep.c (__sleep): Rewritten using __nanosleep
33665 instead of SIGALRM.
33666
33667 * sysdeps/gnu/_G_config.h: Moved to ...
33668 * sysdeps/unix/sysv/linux/_G_config.h: ... here.
33669 * sysdeps/mach/hurd/_G_config.h: Moved to ...
33670 * sysdeps/generic/_G_config.h: ... here.
33671
33672 * io/open.c (__open): Renamed to __libc_open. Make __open an alias.
33673
33674 * posix/Makefile ($(objpfx)config-name.h): Do $(make-target-directory).
33675
33676 * nss/Makefile ($(objpfx)/libnss_test1.so$(libnss_test1.so-version)):
33677 Conditionalize target on [libnss_test1.so-version].
33678
33679 * elf/dl-sysdep.c: Conditionalize whole contents on [SHARED].
33680
33681 * Makeconfig (nssobjdir, resolvobjdir): Remove variables.
33682 (elfobjdir): Move out of conditionals.
33683
33684 * nss/nsswitch.c (nss_new_service): Conditionalize definition and
33685 declaration on [!DO_STATIC_NSS || SHARED], matching its only caller.
33686 (__nss_lookup_function): Conditionalize label remove_from_tree on
33687 [!DO_STATIC_NSS || SHARED], matching its only use.
33688
336892012-09-28 David S. Miller <davem@davemloft.net>
33690
33691 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: New file.
33692 * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy-niagara4.S: New
33693 file.
33694 * sysdeps/sparc/sparc64/multiarch/Makefile: Add to
33695 sysdep_routines.
33696 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Likewise.
33697 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Use Niagara-4 memcpy
33698 when HWCAP_SPARC_CRYPTO is present.
33699
337002012-09-28 Pino Toscano <toscano.pino@tiscali.it>
33701
33702 * io/tst-mknodat.c: Create a FIFO instead of a socket.
33703
337042012-09-28 Andreas Schwab <schwab@linux-m68k.org>
33705
33706 [BZ #6530]
33707 * stdio-common/vfprintf.c (process_string_arg): Revert
33708 2000-07-22 change.
33709
337102011-09-28 Jonathan Nieder <jrnieder@gmail.com>
33711
33712 * stdio-common/Makefile (tst-sprintf-ENV): Set environment
33713 for testcase.
33714 * stdio-common/tst-sprintf.c: Include <locale.h>
33715 (main): Test sprintf's handling of incomplete multibyte
33716 characters.
33717
337182012-09-28 H.J. Lu <hongjiu.lu@intel.com>
33719
33720 * elf/dl-runtime.c (VERSYMIDX): Removed.
33721 * elf/dl-version.c (VERSYMIDX): Likewise.
33722 * elf/do-rel.h (VERSYMIDX): Likewise.
33723 (VALIDX): Likewise.
33724 * elf/dynamic-link.h (VERSYMIDX): Likewise.
33725 * elf/rtld.c (VALIDX): Likewise.
33726 (ADDRIDX): Likewise.
33727 * sysdeps/sparc/sparc32/dl-machine.h (VALIDX): Likewise.
33728 * sysdeps/sparc/sparc64/dl-machine.h (VALIDX): Likewise.
33729 * sysdeps/x86_64/dl-tlsdesc.h (ADDRIDX): Likewise.
33730 * sysdeps/generic/ldsodefs.h (VERSYMIDX): New macro.
33731 (VALIDX): Likewise.
33732 (ADDRIDX): Likewise.
33733
337342012-09-28 Pino Toscano <toscano.pino@tiscali.it>
33735
33736 * sysdeps/pthread/aio_fsync.c: Fix the file mode checking.
33737
337382012-09-28 Dmitry V. Levin <ldv@altlinux.org>
33739
33740 [BZ #11438]
33741 * sysdeps/posix/getaddrinfo.c (default_scopes): Map RFC 1918 addresses
33742 to global scope.
33743 * posix/tst-rfc3484.c: Verify 10/8, 172.16/12 and 196.128/16
33744 addresses are in the same scope as 192.0.2/24.
33745 * posix/gai.conf: Document new scope table defaults.
33746
337472012-09-28 Siddhesh Poyarekar <siddhesh@redhat.com>
33748
33749 [BZ #5298]
33750 * libio/fileops.c (_IO_new_file_seekoff): Don't flush buffer
33751 for ftell. Compute offsets from write pointers instead.
33752 * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
33753
337542012-09-28 Siddhesh Poyarekar <siddhesh@redhat.com>
33755
33756 [BZ #14543]
33757 * libio/Makefile (tests): New test case tst-fseek.
33758 * libio/tst-fseek.c: New test case to verify that fseek/ftell
33759 combination works in wide mode.
33760 * libio/wfileops.c (_IO_wfile_seekoff): Adjust internal buffer
33761 state when the external buffer state changes.
33762
337632012-09-27 David S. Miller <davem@davemloft.net>
33764
33765 [BZ #14376]
33766 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Do not
33767 pass reloc->r_addend in as the 'high' argument to
33768 sparc64_fixup_plt when handling R_SPARC_JMP_IREL relocations.
33769
33770 * sysdeps/sparc/fpu/libm-test-ulps: Update.
33771
337722012-09-28 Pino Toscano <toscano.pino@tiscali.it>
33773
33774 * rt/tst-aio2.c: Include <pthread.h>.
33775 * rt/tst-aio3.c: Likewise.
33776
337772012-09-27 Steve Ellcey <sellcey@mips.com>
33778
33779 * sysdeps/ieee754/ldbl-128/bits/huge_vall.h: Remove.
33780
337812012-09-27 H.J. Lu <hongjiu.lu@intel.com>
33782
33783 * sysdeps/x86_64/multiarch/strncmp-ssse3.S: Conditionalize
33784 contents on [SHARED].
33785
337862012-09-26 Marek Polacek <polacek@redhat.com>
33787
33788 [BZ #14530]
33789 [BZ #13741]
33790 * misc/sys/cdefs.h: Define __extern_inline and __extern_always_inline
33791 for C++ and GCC <4.3 as well as for non GCC compilers.
33792
337932012-09-26 Markus Trippelsdorf <markus@trippelsdorf.de>
33794
33795 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
33796
337972012-09-25 Roland McGrath <roland@hack.frob.com>
33798
33799 * Makefile.in (all, install): Declare with .PHONY.
33800 Reported by Michael Hope <michael.hope@linaro.org>.
33801
338022012-09-25 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
33803
33804 * manual/platform.texi (PowerPC): Document __ppc_get_timebase_freq.
33805 * sysdeps/powerpc/sys/platform/ppc.h: Include the operating
33806 system header.
33807 * sysdeps/unix/sysv/linux/powerpc/Makefile (sysdep_headers):
33808 Likewise.
33809 (sydep_routines): Add the new and the internal functions.
33810 * sysdeps/unix/sysv/linux/powerpc/bits/ppc.h: New file.
33811 * sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c: Likewise.
33812 * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions
33813 (GLIBC_2.17): Add the new function.
33814 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist
33815 (GLIBC_2.17): Likewise.
33816 * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions
33817 (GLIBC_2.17): Likewise.
33818 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist
33819 (GLIBC_2.17): Likewise.
33820 * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c: New file.
33821
338222012-09-25 Alan Modra <amodra@gmail.com>
33823
33824 * sysdeps/unix/sysv/linux/powerpc/pthread_once.c (__pthread_once):
33825 Add release barrier before setting once_control to say
33826 initialisation is done. Add hints on lwarx. Use macro in
33827 place of isync.
33828 (clear_once_control): Add release barrier.
33829
338302012-09-25 Joseph Myers <joseph@codesourcery.com>
33831
33832 [BZ #13629]
33833 * math/s_clog.c (__clog): Handle more values close to |z| = 1
33834 specially.
33835 * math/s_clog10.c (__clog10): Likewise.
33836 * math/s_clog10f.c (__clog10f): Likewise.
33837 * math/s_clog10l.c (__clog10l): Likewise.
33838 * math/s_clogf.c (__clogf): Likewise.
33839 * math/s_clogl.c (__clogl): Likewise.
33840 * math/Makefile (libm-calls): Add x2y2m1.
33841 * sysdeps/generic/math_private.h (__x2y2m1f): Declare.
33842 (__x2y2m1): Likewise.
33843 (__x2y2m1l): Likewise.
33844 * sysdeps/ieee754/dbl-64/x2y2m1.c: New file.
33845 * sysdeps/ieee754/dbl-64/x2y2m1f.c: Likewise.
33846 * sysdeps/ieee754/ldbl-128/x2y2m1l.c: Likewise.
33847 * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
33848 * sysdeps/ieee754/ldbl-96/x2y2m1.c: Likewise.
33849 * sysdeps/ieee754/ldbl-96/x2y2m1l.c: Likewise.
33850 * math/libm-test.inc (clog_test, clog10_test): Add more tests.
33851 * sysdeps/i386/fpu/libm-test-ulps: Update.
33852 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
33853
33854 [BZ #14621]
33855 * posix/glob.c (next_brace_sub): Use size_t instead of unsigned
33856 int as type of variable DEPTH.
33857 (glob): Use size_t instead of int as type of variables NEWCOUNT
33858 and OLD_PATHC.
33859
338602012-09-25 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
33861
33862 * sysdeps/i386/i686/fpu/multiarch/Makefile (sysdep_routines):
33863 Add s_sincosf-sse2.
33864 * sysdeps/i386/i686/fpu/multiarch/s_sincosf.c: New file.
33865 * sysdeps/i386/i686/fpu/multiarch/s_sincosf-sse2.S: New file.
33866 * sysdeps/ieee754/flt-32/s_sincosf.c (SINCOSF, SINCOSF_FUNC): Add
33867 macros for using routine as __sincosf_ia32.
33868 Use macro for function declaration and weak_alias.
33869 * sysdeps/i386/fpu/libm-test-ulps: Update.
33870
33871 * sysdeps/x86_64/fpu/s_sincosf.S: New file.
33872 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
33873
33874 * math/s_ccoshf.c (__ccoshf): Fix wrong usage of sincos for
33875 subnormal argument.
33876 * math/s_cexpf.c (__cexpf): Likewise.
33877 * math/s_csinf.c (__csinf): Likewise.
33878 * math/s_csinhf.c (__csinhf): Likewise.
33879 * math/s_ctanf.c (__ctanf): Likewise.
33880 * math/s_ctanhf.c (__ctanhf): Likewise.
33881 * math/s_ccosh.c (__ccoshf): Likewise.
33882 * math/s_cexp.c (__cexpl): Likewise.
33883 * math/s_csin.c (__csin): Likewise.
33884 * math/s_csinh.c (__csinh): Likewise.
33885 * math/s_ctan.c (__ctan): Likewise.
33886 * math/s_ctanh.c (ctanh): Likewise.
33887 * math/s_ccoshl.c (__ccoshl): Likewise.
33888 * math/s_cexpl.c (__cexpl): Likewise.
33889 * math/s_csinl.c (__csinl): Likewise.
33890 * math/s_csinhl.c (__csinhl): Likewise.
33891 * math/s_ctanl.c (__ctanl): Likewise.
33892 * math/s_ctanhl.c (__ctanhl): Likewise.
33893
338942012-09-25 Joseph Myers <joseph@codesourcery.com>
33895
33896 * libio/libio.h (_IO_size_t): Define to size_t, not _G_size_t.
33897 (_IO_ssize_t): Define to __ssize_t, not _G_ssize_t.
33898 (_IO_off_t): Define to __off_t, not _G_off_t.
33899 (_IO_pid_t): Define to __pid_t, not _G_pid_t.
33900 (_IO_uid_t): Define to __uid_t, not _G_uid_t.
33901 (_IO_wint_t): Define to wint_t, not _G_wint_t.
33902 * libio/libioP.h (struct _IO_jump_t): Use size_t not _G_size_t as
33903 type of __dummy and __dummy2 fields.
33904 * sysdeps/generic/_G_config.h (_G_size_t): Remove.
33905 (_G_ssize_t): Likewise.
33906 (_G_off_t): Likewise.
33907 (_G_pid_t): Likewise.
33908 (_G_uid_t): Likewise.
33909 (_G_wchar_t): Likewise.
33910 (_G_wint_t): Likewise.
33911 * sysdeps/gnu/_G_config.h (_G_size_t): Remove.
33912 (_G_ssize_t): Likewise.
33913 (_G_off_t): Likewise.
33914 (_G_pid_t): Likewise.
33915 (_G_uid_t): Likewise.
33916 (_G_wchar_t): Likewise.
33917 (_G_wint_t): Likewise.
33918 * sysdeps/mach/hurd/_G_config.h (_G_size_t): Remove.
33919 (_G_ssize_t): Likewise.
33920 (_G_off_t): Likewise.
33921 (_G_pid_t): Likewise.
33922 (_G_uid_t): Likewise.
33923 (_G_wchar_t): Likewise.
33924 (_G_wint_t): Likewise.
33925
339262012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
33927
33928 * malloc/arena.c: Include malloc-sysdep.h.
33929 (shrink_heap): Use check_may_shrink_heap to decide if madvise
33930 is sufficient to shrink the heap or an unmap is needed.
33931 * sysdeps/generic/malloc-sysdep.h: New file. Define
33932 new function check_may_shrink_heap.
33933 * sysdeps/unix/sysv/linux/malloc-sysdep.h: New file. Define
33934 new function check_may_shrink_heap.
33935
339362012-09-25 Siddhesh Poyarekar <siddhesh@redhat.com>
33937
33938 * libio/fileops.c (_IO_new_file_seekoff): Fix typos in
33939 comments.
33940
339412012-09-24 Dmitry V. Levin <ldv@altlinux.org>
33942
33943 * catgets/test-gencat.sh: Add "set -e".
33944 * elf/tst-pathopt.sh: Likewise.
33945 * grp/tst_fgetgrent.sh: Likewise.
33946 * iconvdata/run-iconv-test.sh: Likewise.
33947 * intl/tst-gettext.sh: Likewise.
33948 * intl/tst-gettext2.sh: Likewise.
33949 * intl/tst-gettext4.sh: Likewise.
33950 * intl/tst-gettext6.sh: Likewise.
33951 * intl/tst-translit.sh: Likewise.
33952 * io/ftwtest-sh: Likewise.
33953 * libio/test-freopen.sh: Likewise.
33954 * malloc/tst-mtrace.sh: Likewise.
33955 * posix/globtest.sh: Likewise.
33956 * posix/tst-getconf.sh: Likewise.
33957 * posix/wordexp-tst.sh: Likewise.
33958 * stdio-common/tst-printf.sh: Likewise.
33959 * stdio-common/tst-unbputc.sh: Likewise.
33960 * stdlib/tst-fmtmsg.sh: Likewise.
33961 * sysdeps/x86_64/tst-xmmymm.sh: Likewise.
33962 * catgets/Makefile: Do not specify -e option when running
33963 testsuite shell scripts.
33964 * elf/Makefile: Likewise.
33965 * grp/Makefile: Likewise.
33966 * iconvdata/Makefile: Likewise.
33967 * intl/Makefile: Likewise.
33968 * io/Makefile: Likewise.
33969 * libio/Makefile: Likewise.
33970 * malloc/Makefile: Likewise.
33971 * posix/Makefile: Likewise.
33972 * stdio-common/Makefile: Likewise.
33973 * stdlib/Makefile: Likewise.
33974 * sysdeps/x86_64/Makefile: Likewise.
33975
33976 * io/ftwtest-sh: Add copyright header.
33977 * posix/globtest.sh: Likewise.
33978 * posix/tst-getconf.sh: Likewise.
33979 * posix/wordexp-tst.sh: Likewise.
33980 * sysdeps/x86_64/tst-xmmymm.sh: Likewise.
33981
339822012-09-24 H.J. Lu <hongjiu.lu@intel.com>
33983
33984 [BZ #13679]
33985 * Makeconfig (+link): Defined as $(+link-static) if
33986 $(build-shared) isn't yes.
33987 (link-tests): Defined as $(+link-static-tests) if $(build-shared)
33988 isn't yes.
33989 (static-gnulib): Add -lgcc_eh if $(build-shared) isn't yes.
33990
33991 * Makeconfig (+postctorT): Replace crtendS.o with crtend.o.
33992
33993 [BZ #14562]
33994 * malloc/arena.c (heap_trim): Properly get fencepost and adjust
33995 new chunk size with MALLOC_ALIGN_MASK.
33996
339972012-09-24 Joseph Myers <joseph@codesourcery.com>
33998
33999 [BZ #5044]
34000 * stdio-common/printf_fphex.c: Include <stdbool.h> and
34001 <rounding-mode.h>.
34002 (__printf_fphex): Determine rounding using get_rounding_mode and
34003 round_away.
34004 * stdio-common/tst-printf-round.c (struct hex_test): New
34005 structure.
34006 (hex_tests): New variable.
34007 (test_hex_in_one_mode): New function.
34008 (do_test): Also run tests for hex float output.
34009
340102012-09-21 Joseph Myers <joseph@codesourcery.com>
34011
34012 * libio/iopopen.c [_IO_HAVE_SYS_WAIT]: Make code unconditional.
34013 [!_IO_HAVE_SYS_WAIT]: Remove conditional code.
34014 * libio/libio.h (_IO_HAVE_SYS_WAIT): Remove.
34015 * libio/oldiopopen.c [_IO_HAVE_SYS_WAIT]: Make code unconditional.
34016 [!_IO_HAVE_SYS_WAIT]: Remove conditional code.
34017 * sysdeps/generic/_G_config.h (_G_HAVE_SYS_WAIT): Remove.
34018 * sysdeps/gnu/_G_config.h (_G_HAVE_SYS_WAIT): Likewise.
34019 * sysdeps/mach/hurd/_G_config.h (_G_HAVE_SYS_WAIT): Likewise.
34020
340212012-09-20 Joseph Myers <joseph@codesourcery.com>
34022
34023 * libio/libio.h [_G_NEED_STDARG_H]: Make code unconditional.
34024 * sysdeps/generic/_G_config.h (_G_NEED_STDARG_H): Remove.
34025 * sysdeps/gnu/_G_config.h (_G_NEED_STDARG_H): Remove.
34026 * sysdeps/mach/hurd/_G_config.h (_G_NEED_STDARG_H): Remove.
34027
340282012-09-19 Dmitry V. Levin <ldv@altlinux.org>
34029
34030 [BZ #14579]
34031 * elf/rtld.c (dl_main): Limit the check for self loading to normal
34032 mode only.
34033 * elf/tst-rtld-load-self.sh: New test.
34034 * elf/Makefile: Run it.
34035
340362012-09-18 Joseph Myers <joseph@codesourcery.com>
34037
34038 * sysdeps/wordsize-64/Makefile [$(subdir) = misc]
34039 (tst-writev-ENV): Remove.
34040 * sysdeps/wordsize-64/tst-writev.c (TIMEOUT): Define.
34041
340422012-09-17 Chris Metcalf <cmetcalf@tilera.com>
34043
34044 * crypt/md5test-giant.c (TIMEOUT): Increase to 8 minutes for tilegx.
34045
340462012-09-17 Joseph Myers <joseph@codesourcery.com>
34047
34048 * libio/iogetline.c [_LIBC || !_G_HAVE_IO_GETLINE_INFO]: Make code
34049 unconditional.
34050 * libio/iogetwline.c [_LIBC || !_G_HAVE_IO_GETLINE_INFO]:
34051 Likewise.
34052 * sysdeps/generic/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Remove.
34053 * sysdeps/gnu/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Likewise.
34054 * sysdeps/mach/hurd/_G_config.h (_G_HAVE_IO_GETLINE_INFO):
34055 Likewise.
34056
340572012-09-14 H.J. Lu <hongjiu.lu@intel.com>
34058
34059 [BZ #14587]
34060 * Makeconfig (ASFLAGS): Remove $(have-cpp-asm-debuginfo) check.
34061 * config.make.in (have-cpp-asm-debuginfo): Removed.
34062 * configure.in: Don't substitute libc_cv_cpp_asm_debuginfo.
34063 * configure: Regenerated.
34064
340652012-09-14 Joseph Myers <joseph@codesourcery.com>
34066
34067 [BZ #5044]
34068 * stdio-common/printf_fp.c: Include <stdbool.h> and
34069 <rounding-mode.h>.
34070 (___printf_fp): Determine rounding using get_rounding_mode and
34071 round_away.
34072 * stdio-common/tst-printf-round.c: New file.
34073 * stdio-common/Makefile (tests): Add tst-printf-round.
34074 (link-libm): New variable.
34075 ($(objpfx)tst-printf-round): Depend in $(link-libm).
34076
340772012-09-13 H.J. Lu <hongjiu.lu@intel.com>
34078
34079 [BZ #14576]
34080 * bits/libc-lock.h (__rtld_lock_init_recursive): Removed.
34081 * sysdeps/mach/bits/libc-lock.h (__rtld_lock_init_recursive):
34082 Likewise.
34083 * sysdeps/mach/hurd/bits/libc-lock.h (__rtld_lock_init_recursive):
34084 Likewise.
34085
340862012-09-13 Joseph Myers <joseph@codesourcery.com>
34087
34088 * libio/libio.h [!_G_HAVE_PRINTF_FP] (_IO_USE_DTOA): Remove.
34089 * sysdeps/generic/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
34090 * sysdeps/gnu/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
34091 * sysdeps/mach/hurd/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
34092
340932012-09-12 Joseph Myers <joseph@codesourcery.com>
34094
34095 [BZ #14518]
34096 * include/rounding-mode.h: New file.
34097 * sysdeps/generic/get-rounding-mode.h: Likewise.
34098 * sysdeps/s390/fpu/get-rounding-mode.h: Likewise.
34099 * stdlib/strtod_l.c: Include <rounding-mode.h>.
34100 (MAX_VALUE): New macro.
34101 (MIN_VALUE): Likewise.
34102 (overflow_value): New function.
34103 (underflow_value): Likewise.
34104 (round_and_return): Use overflow_value and underflow_value to
34105 determine return values in overflow and underflow cases. Use
34106 round_away to determine rounding depending on rounding mode.
34107 (____STRTOF_INTERNAL): Use overflow_value and underflow_value to
34108 determine return values in overflow and underflow cases.
34109 * stdlib/tst-strtod-round.c: Include <fenv.h>.
34110 (struct test_results): New structure.
34111 (struct test): Use struct test_results to store expected results
34112 for all rounding modes.
34113 (TEST): Include expected results for all rounding modes.
34114 (test_in_one_mode): New function.
34115 (do_test): Use test_in_one_mode to compute and check results.
34116 Check results for all rounding modes.
34117 * stdlib/Makefile ($(objpfx)tst-strtod-round): Depend on
34118 $(link-libm).
34119
341202012-12-09 Allan McRae <allan@archlinux.org>
34121
34122 * sysdeps/i386/fpu/libm-test-ulps: Update
34123
341242012-09-11 Joseph Myers <joseph@codesourcery.com>
34125
34126 * sysdeps/generic/_G_config.h (_G_int16_t): Remove.
34127 (_G_int32_t): Likewise.
34128 (_G_uint16_t): Likewise.
34129 (_G_uint32_t): Likewise.
34130 (_G_HAVE_BOOL): Likewise.
34131 (_G_HAVE_ATEXIT): Likewise.
34132 (_G_HAVE_LONG_DOUBLE_IO): Likewise.
34133 (_G_HAVE_IO_FILE_OPEN): Likewise.
34134 * sysdeps/gnu/_G_config.h (_G_int16_t): Remove.
34135 (_G_int32_t): Likewise.
34136 (_G_uint16_t): Likewise.
34137 (_G_uint32_t): Likewise.
34138 (_G_HAVE_BOOL): Likewise.
34139 (_G_HAVE_ATEXIT): Likewise.
34140 (_G_HAVE_LONG_DOUBLE_IO): Likewise.
34141 (_G_HAVE_IO_FILE_OPEN): Likewise.
34142 * sysdeps/mach/hurd/_G_config.h (_G_int16_t): Remove.
34143 (_G_int32_t): Likewise.
34144 (_G_uint16_t): Likewise.
34145 (_G_uint32_t): Likewise.
34146 (_G_HAVE_BOOL): Likewise.
34147 (_G_HAVE_ATEXIT): Likewise.
34148 (_G_HAVE_LONG_DOUBLE_IO): Likewise.
34149 (_G_HAVE_IO_FILE_OPEN): Likewise.
34150
341512012-09-11 H.J. Lu <hongjiu.lu@intel.com>
34152
34153 * csu/libc-tls.c: Update copyright years.
34154
341552012-09-10 Joseph Myers <joseph@codesourcery.com>
34156
34157 * libioP.h [_G_USING_THUNKS]: Make code unconditional.
34158 [!_G_USING_THUNKS]: Remove conditional code.
34159 * sysdeps/gnu/_G_config.h (_G_USING_THUNKS): Remove.
34160 * sysdeps/mach/hurd/_G_config.h (_G_USING_THUNKS): Likewise.
34161
34162 * libio/libioP.h [__GNUC__] (VTABLE_LABEL): Remove.
34163 [!builtinbuf_vtable && __cplusplus] (builtinbuf_vtable): Likewise.
34164 * sysdeps/generic/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
34165 (_G_VTABLE_LABEL_PREFIX): Likewise.
34166 (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
34167 * sysdeps/gnu/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
34168 (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
34169 (_G_VTABLE_LABEL_PREFIX): Likewise.
34170 (_G_VTABLE_LABEL_PREFIX_ID): Likewise.
34171 * sysdeps/mach/hurd/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
34172 (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
34173 (_G_VTABLE_LABEL_PREFIX): Likewise.
34174 (_G_VTABLE_LABEL_PREFIX_ID): Likewise.
34175
341762012-09-10 H.J. Lu <hongjiu.lu@intel.com>
34177
34178 * libio/Makefile: Include ../Makeconfig before tests.
34179 (tests): Add tst-fopenloc and depend on $(objpfx)tst-fopenloc.check
34180 only if $(build-shared) is yes.
34181
34182 * iconv/gconv_db.c: Update copyright years.
34183
341842012-09-10 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
34185
34186 * sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S: Fix
34187 unwind info if defined PIC. Fix special cases description.
34188 * sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S: Likewise.
34189
34190 * sysdeps/x86_64/fpu/s_sinf.S: Fix special cases description, fix
34191 DP_HI_MASK entry.
34192 * sysdeps/x86_64/fpu/s_cosf.S: Likewise.
34193
341942012-09-07 H.J. Lu <hongjiu.lu@intel.com>
34195
34196 * scripts/check-local-headers.sh: Add "shopt -s nullglob".
34197
34198 * iconv/gconv_db.c (free_derivation): Check if deriv->steps
34199 is NULL.
34200
34201 * debug/Makefile (LDFLAGS-tst-chk4): Renamed to ...
34202 (LDLIBS-tst-chk4): This.
34203 (LDFLAGS-tst-chk5): Renamed to ...
34204 (LDLIBS-tst-chk5): This.
34205 (LDFLAGS-tst-chk6): Renamed to ...
34206 (LDLIBS-tst-chk6): This.
34207 (LDFLAGS-tst-lfschk4): Renamed to ...
34208 (LDLIBS-tst-lfschk4): This.
34209 (LDFLAGS-tst-lfschk5): Renamed to ...
34210 (LDLIBS-tst-lfschk5): This.
34211 (LDFLAGS-tst-lfschk6): Renamed to ...
34212 (LDLIBS-tst-lfschk6): This.
34213
34214 * Makefile ($(inst_includedir)/gnu/stubs.h): Remove dependency
34215 on $(common-objpfx)soversions.mk.
34216
342172012-09-07 Joseph Myers <joseph@codesourcery.com>
34218
34219 [BZ #10014]
34220 * manual/examples/inetcli.c (SERVERHOST): Use www.gnu.org as
34221 example host name.
34222
342232012-09-07 Siddhesh Poyarekar <siddhesh@redhat.com>
34224
34225 * malloc/arena.c (arena_get_retry): New function that gets
34226 another arena for the caller to try its request on.
34227 * malloc/malloc.c (__libc_malloc): Use get_another_arena if the
34228 current arena cannot fulfill the request.
34229 (__libc_memalign): Likewise.
34230 (__libc_memalign): Likewise.
34231 (__libc_pvalloc): Likewise.
34232 (__libc_calloc): Likewise.
34233
342342012-09-05 John Tobey <john.tobey@gmail.com>
34235
34236 [BZ #13542]
34237 * manual/arith.texi (Operations on Complex): Fix description
34238 of carg branch cut.
34239
342402012-09-06 Joseph Myers <joseph@codesourcery.com>
34241
34242 [BZ #10014]
34243 * manual/socket.texi (Host Addresses): Use www.gnu.org as example
34244 host name.
34245
34246 [BZ #10038]
34247 * manual/memory.texi (Memory): Make order of menu items match
34248 order of sections.
34249
342502012-09-06 H.J. Lu <hongjiu.lu@intel.com>
34251
34252 * elf/dl-tls.c (DL_INITIAL_DTV): Removed.
34253 (_dl_initial_dtv): New. Defined if SHARED isn't defined.
34254 (_dl_deallocate_tls): Restore GL(dl_initial_dtv).
34255
342562012-09-06 H.J. Lu <hongjiu.lu@intel.com>
34257
34258 * csu/libc-tls.c (static_dtv): Renamed to ...
34259 (_dl_static_dtv): This. Make it global.
34260 (_dl_initial_dtv): Removed.
34261 (__libc_setup_tls): Updated.
34262 * elf/dl-tls.c (DL_INITIAL_DTV): New macro.
34263 (_dl_deallocate_tls): Replace GL(dl_initial_dtv) with
34264 DL_INITIAL_DTV.
34265
342662012-09-06 Petr Machata <pmachata@redhat.com>
34267
34268 * elf/elf.h (NT_S390_HIGH_GPRS): New macro.
34269 (NT_S390_TIMER, NT_S390_TODCMP, NT_S390_TODPREG): Likewise.
34270 (NT_S390_CTRS, NT_S390_PREFIX, NT_S390_LAST_BREAK): Likewise.
34271 (NT_S390_SYSTEM_CALL, NT_ARM_VFP): Likewise.
34272
342732012-09-06 H.J. Lu <hongjiu.lu@intel.com>
34274
34275 [BZ #14545]
34276 * csu/libc-tls.c (_dl_initial_dtv): New variable.
34277 * elf/dl-tls.c (_dl_deallocate_tls): Always check dtv before
34278 freeing dtv[-1].
34279
342802012-09-06 H.J. Lu <hongjiu.lu@intel.com>
34281
34282 [BZ #14544]
34283 * Makeconfig (link-static-before-libc): Replace $(+prector)
34284 with $(+prectorT).
34285 (link-static-after-libc): Replace $(+postctor) with
34286 $(+postctorT).
34287 (link-bounded): Replace $(+prector)/$(+postctor) with
34288 $(+prectorT)/$(+postctorT).
34289 (+prectorT): New macro.
34290 (+postctorT): Likewise.
34291
342922012-09-06 Joseph Myers <joseph@codesourcery.com>
34293
34294 * stdlib/gen-tst-strtod-round.c: Include <assert.h>.
34295 (round_str): Handle values above the maximum for IBM long double
34296 as inexact.
34297 * stdlib/tst-strtod-round.c (tests): Regenerated.
34298
342992012-09-06 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
34300
34301 * sysdeps/s390/s390-32/multiarch/Makefile: Remove -mzarch
34302 assembler flag.
34303 * sysdeps/s390/s390-32/multiarch/memcmp.S: Use .machinemode
34304 zarch_nohighgprs around the zarch optimized routines.
34305 * sysdeps/s390/s390-32/multiarch/memcpy.S: Likewise.
34306 * sysdeps/s390/s390-32/multiarch/memset.S: Likewise.
34307 * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Explicitly check
34308 for zarch.
34309
343102012-09-05 David S. Miller <davem@davemloft.net>
34311
34312 * sysdeps/sparc/fpu/libm-test-ulps: Update.
34313
34314 * sysdeps/sparc/bits/hwcap.h (HWCAP_SPARC_PAUSE)
34315 (HWCAP_SPARC_CBCOND, HWCAP_SPARC_CRYPTO): Define.
34316 * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Increase to 27.
34317 * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add new
34318 entries.
34319
343202012-09-05 Alexandre Oliva <aoliva@redhat.com>
34321
34322 * malloc/arena.c: Fold copyright years.
34323 * malloc/mcheck.c, malloc/memusage.c: Likewise.
34324
343252012-09-05 Alexandre Oliva <aoliva@redhat.com>
34326
34327 * malloc/malloc.c (__libc_mallopt) <M_MMAP_MAX>: Fix indentation.
34328
343292012-09-05 Alexandre Oliva <aoliva@redhat.com>
34330
34331 * manual/contrib.texi (Contributors): Fix typo. Complete entry.
34332
343332012-09-05 Alexandre Oliva <aoliva@redhat.com>
34334
34335 * malloc/malloc.c (__libc_mallopt) <M_MMAP_THRESHOLD>: Do not
34336 change internal state upon failure.
34337
343382012-09-05 Alexandre Oliva <aoliva@redhat.com>
34339
34340 * malloc/mcheck.c (mcheck_check_all): Fix typo.
34341 * malloc/memusage.c (mmap): Likewise.
34342 (mmap64, mremap): Likewise. Adjust name in comment.
34343
343442012-09-05 Siddhesh Poyarekar <siddhesh@redhat.com>
34345
34346 * libio/fileops.c: Fix typos in comments.
34347 * libio/oldfileops.c: Likewise.
34348 * libio/wfileops.c: Likewise.
34349
343502012-09-05 Siddhesh Poyarekar <siddhesh@redhat.com>
34351
34352 [BZ #1349]
34353 * malloc/Makefile (tests): Add tst-malloc-usable test case.
34354 (tst-malloc-usable-ENV): Set environment for test case.
34355 * malloc/hooks.c (malloc_check_get_size): New function to get
34356 requested size.
34357 * malloc/malloc.c (musable): Use malloc_check_get_size.
34358 * malloc/tst-malloc-usable.c: New test case.
34359
343602012-09-05 Andreas Schwab <schwab@linux-m68k.org>
34361
34362 * stdlib/tst-strtod-overflow.c (TIMEOUT): Define.
34363
343642012-09-05 Allan McRae <allan@archlinux.org>
34365
34366 [BZ #13966]
34367 * configure.in (CXX_SYSINCLUDES): Use compiler output to
34368 determine header location.
34369 * configure: Regenerated.
34370
343712012-09-05 Andreas Schwab <schwab@linux-m68k.org>
34372
34373 * stdlib/gen-tst-strtod-round.c (formats): Add Motorola extended
34374 float format.
34375 * stdlib/tst-strtod-round.c (TEST) [LDBL_MANT_DIG == 64 &&
34376 LDBL_MAX_EXP == 16384]: Add case for Motorola extended float
34377 format.
34378 (test): Regenerate.
34379
343802012-09-04 David S. Miller <davem@davemloft.net>
34381
34382 * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: New file.
34383 * sysdeps/sparc/sparc32/sparcv9/submul_1.S: New file.
34384 * sysdeps/sparc/sparc32/sparcv9/mul_1.S: New file.
34385
343862012-09-04 Florian Weimer <fweimer@redhat.com>
34387
34388 * stdlib/tst-secure-getenv.c (alternative_main): Only warn on SGID
34389 failures.
34390
34391 * stdlib/tst-secure-getenv.c: Fix whitespace in comments.
34392
343932012-09-04 Joseph Myers <joseph@codesourcery.com>
34394
34395 [BZ #9914]
34396 * libio/iogetdelim.c: Include <limits.h>.
34397 (_IO_getdelim): Avoid integer overflow in testing whether cur_len
34398 + len + 1 would overflow.
34399
344002012-09-03 Andreas Jaeger <aj@suse.de>
34401
34402 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
34403 * sysdeps/i386/fpu/libm-test-ulps: Update.
34404
344052012-09-03 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
34406
34407 * sysdeps/i386/i686/fpu/multiarch/Makefile (sysdep_routines):
34408 Add s_sinf-sse2, s_conf-sse2.
34409
34410 * sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S: New file.
34411 * sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S: New file.
34412 * sysdeps/i386/i686/fpu/multiarch/s_sinf.c: New file.
34413 * sysdeps/i386/i686/fpu/multiarch/s_cosf.c: New file.
34414
34415 * sysdeps/ieee754/flt-32/s_sinf.c (SINF, SINF_FUNC): Add macros
34416 for using routine as __sinf_ia32.
34417 Use macro for function declaration and weak_alias.
34418 * sysdeps/ieee754/flt-32/s_cosf.c (COSF, COSF_FUNC): Add macros
34419 for using routine as __cosf_ia32.
34420 Use macro for function declaration and weak_alias.
34421
34422 * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Fix Copyright.
34423 * sysdeps/i386/i686/fpu/multiarch/e_expf.c: Fix Copyright.
34424
34425 * sysdeps/x86_64/fpu/s_sinf.S: New file.
34426 * sysdeps/x86_64/fpu/s_cosf.S: New file.
34427 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
34428
34429 * math/libm-test.inc (cos_test): Add more test cases.
34430 (sin_test): Likewise.
34431 (sincos_test): Likewise.
34432
344332012-09-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
34434
34435 * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c
34436 (IFUNC_RESOLVE): Make pointers to the specialized implementations
34437 hidden.
34438 * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
34439
344402012-09-02 H.J. Lu <hongjiu.lu@intel.com>
34441
34442 [BZ #14538]
34443 * sysdeps/x86_64/dl-machine.h (elf_machine_dynamic): Use the
34444 first element of the GOT.
34445 (elf_machine_load_address): Return the difference between
34446 the runtime address of _DYNAMIC and elf_machine_dynamic ().
34447
344482012-09-01 Allan McRae <allan@archlinux.org>
34449
34450 [BZ #13412]
34451 * configure.in (AWK): Require gawk version 3.0 or later.
34452 * configure: Regenerated.
34453
344542012-09-01 Joseph Myers <joseph@codesourcery.com>
34455
34456 * sysdeps/unix/sysv/linux/kernel-features.h
34457 (__ASSUME_POSIX_CPU_TIMERS): Remove.
34458 * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
34459 [__NR_clock_getres]: Make code unconditional.
34460 [!__ASSUME_POSIX_CPU_TIMERS]: Remoce conditional code.
34461 (clock_getcpuclockid): Remove code left unreachable by removal of
34462 conditionals.
34463 * sysdeps/unix/sysv/linux/clock_getres.c [__NR_clock_getres]: Make
34464 code unconditional.
34465 [__ASSUME_POSIX_CPU_TIMERS]: Likewise.
34466 [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
34467 * sysdeps/unix/sysv/linux/clock_gettime.c [__NR_clock_gettime]:
34468 Make code unconditional.
34469 [__ASSUME_POSIX_CPU_TIMERS]: Likewise.
34470 [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
34471 * sysdeps/unix/sysv/linux/clock_settime.c
34472 [__ASSUME_POSIX_CPU_TIMERS <= 0 && __NR_clock_settime]: Remove
34473 conditional code.
34474 [__ASSUME_POSIX_CPU_TIMERS]: Make code unconditional.
34475 [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
34476
344772012-08-29 H.J. Lu <hongjiu.lu@intel.com>
34478
34479 [BZ #14476]
34480 * Makefile (install): Also pass LD_SO=$(ld.so-version) to
34481 scripts/test-installation.pl.
34482
34483 * scripts/test-installation.pl: Use LD_SO to get $ld_so_name
34484 and $ld_so_version if it is set.
34485
344862012-08-29 Siddhesh Poyarekar <siddhesh@redhat.com>
34487
34488 [BZ #14516]
34489 * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Don't return
34490 failure if reading from procfs failed.
34491 * sysdeps/unix/sysv/linux/ttyname_r.c (ttyname_r): Likewise.
34492
344932012-08-27 Joseph Myers <joseph@codesourcery.com>
34494
34495 * sysdeps/unix/sysv/linux/kernel-features.h
34496 (__ASSUME_STAT64_SYSCALL): Remove all definitions.
34497 * sysdeps/unix/sysv/linux/fxstat64.c [!__ASSUME_STAT64_SYSCALL]:
34498 Remove conditional code.
34499 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
34500 * sysdeps/unix/sysv/linux/fxstatat64.c [!__ASSUME_STAT64_SYSCALL]:
34501 Remove conditional code.
34502 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
34503 * sysdeps/unix/sysv/linux/i386/fxstat.c
34504 [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
34505 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
34506 * sysdeps/unix/sysv/linux/i386/fxstatat.c
34507 [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
34508 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
34509 * sysdeps/unix/sysv/linux/i386/lxstat.c
34510 [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
34511 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
34512 * sysdeps/unix/sysv/linux/i386/xstat.c [!__ASSUME_STAT64_SYSCALL]:
34513 Remove conditional code.
34514 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
34515 * sysdeps/unix/sysv/linux/lxstat64.c [!__ASSUME_STAT64_SYSCALL]:
34516 Remove conditional code.
34517 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
34518 * sysdeps/unix/sysv/linux/sparc/sparc64/xstat.c: Do not include
34519 <kernel-features.h>.
34520 [__NR_stat64 && !__ASSUME_STAT64_SYSCALL] (__have_no_stat64):
34521 Remove.
34522 * sysdeps/unix/sysv/linux/xstat64.c [!__ASSUME_STAT64_SYSCALL]:
34523 Remove conditional code.
34524 [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
34525 * sysdeps/unix/sysv/linux/xstatconv.c [!__ASSUME_STAT64_SYSCALL]:
34526 Remove conditional.
34527
345282012-08-27 Mike Frysinger <vapier@gentoo.org>
34529
34530 [BZ #5400]
34531 * NEWS: Add fixed bug number.
34532
345332012-08-27 Joseph Myers <joseph@codesourcery.com>
34534
34535 [BZ #14519]
34536 * stdlib/strtod_l.c (round_and_return): Return -0.0 for
34537 underflowing exponent in case of negative sign.
34538 * stdlib/tst-strtod-round-data: Add more tests.
34539 * stdlib/tst-strtod-round.c (tests): Regenerated.
34540
34541 [BZ #3479]
34542 * stdlib/strtod_l.c (NDIG): Remove.
34543 (HEXNDIG): Likewise.
34544 (MPNSIZE): Increase to represent 10^n where 2^-n is 1/4 ulp of the
34545 smallest representable value.
34546 (____STRTOF_INTERNAL): Use all fractional decimal digits that may
34547 lie within an exact representation of 1/2 ulp of the result.
34548 * stdlib/fpioconst.c (__tens): Include 10^2^9 and 10^2^10
34549 unconditionally.
34550 (TENS_P9_IDX): Define unconditionally.
34551 (TENS_P9_SIZE): Likewise.
34552 (TENS_P10_IDX): Likewise.
34553 (TENS_P10_SIZE): Likewise.
34554 [BITS_PER_MP_LIMB == 32]: Change condition for larger powers of 10
34555 to !defined __NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024.
34556 [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024] (__tens): Add
34557 entries for 10^2^13 and 10^2^14.
34558 [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024]
34559 (TENS_P13_IDX): Define.
34560 (TENS_P13_SIZE): Likewise.
34561 (TENS_P14_IDX): Likewise.
34562 (TENS_P14_SIZE): Likewise.
34563 (_fpioconst_pow10): Change array size to
34564 FPIOCONST_POW10_ARRAY_SIZE. Make entries for 10^2^9 and 10^2^10
34565 unconditional.
34566 (_fpioconst_pow10) [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ >
34567 1024]: Add entries for 10^2^13 and 10^2^14.
34568 [LAST_POW10 > _LAST_POW10]: Remove #error.
34569 * stdlib/fpioconst.h (FPIOCONST_POW10_ARRAY_SIZE): Define.
34570 (_fpioconst_pow10): Change array size to
34571 FPIOCONST_POW10_ARRAY_SIZE.
34572 * stdlib/gen-fpioconst.c: New file.
34573 * stdlib/gen-tst-strtod-round.c: Likewise.
34574 * stdlib/tst-strtod-round-data: Likewise.
34575 * stdlib/tst-strtod-round.c: Likewise.
34576 * stdlib/Makefile (tests): Add tst-strtod-round.
34577
34578 [BZ #14459]
34579 * stdlib/strtod_l.c: Include <stdint.h>.
34580 (NDEBUG): Do not define.
34581 (round_and_return): Change EXPONENT parameter to type intmax_t.
34582 Rearrange calculations to avoid internal overflow possibilities.
34583 (str_to_mpn): Change EXPONENT parameter to type intmax_t *.
34584 Rearrange calculations to avoid internal overflow possibilities.
34585 Assert that number fits inside MPNSIZE limbs.
34586 (____STRTOF_INTERNAL): Change EXPONENT variable to type intmax_t.
34587 Change DIG_NO, INT_NO and LEAD_ZERO to type size_t. Rearrange
34588 calculations and add assertions to avoid internal overflow
34589 possibilities. Add casts to avoid signed/unsigned operations.
34590 * stdlib/tst-strtod-overflow.c: New file.
34591 * stdlib/Makefile (tests): Add tst-strtod-overflow.
34592
345932012-08-25 Marek Polacek <polacek@redhat.com>
34594
34595 * time/time.h: Fix some typos in comments.
34596
345972012-08-23 Roland McGrath <roland@hack.frob.com>
34598
34599 * posix/tst-rfc3484.c: #undef USE_NSCD before including getaddrinfo.c.
34600 * posix/tst-rfc3484-2.c: Likewise.
34601 * posix/tst-rfc3484-3.c: Likewise.
34602
346032012-08-23 Steve McIntyre <steve.mcintyre@linaro.org>
34604
34605 * elf/elf.h (EF_ARM_ABI_FLOAT_SOFT): New macro.
34606 (EF_ARM_ABI_FLOAT_HARD): Likewise.
34607
346082012-08-23 Joseph Myers <joseph@codesourcery.com>
34609
34610 * sysdeps/unix/sysv/linux/dl-fxstatat64.c: Use <> instead of "" in
34611 #include of fxstatat64.c.
34612
346132012-08-22 Roland McGrath <roland@hack.frob.com>
34614
34615 * shadow/getspent.c: #undef USE_NSCD before #include that gets the code.
34616 * shadow/getspent_r.c: Likewise.
34617 * shadow/getspnam.c: Likewise.
34618 * shadow/getspnam_r.c: Likewise.
34619 * gshadow/getsgent.c: Likewise.
34620 * gshadow/getsgent_r.c: Likewise.
34621 * gshadow/getsgnam.c: Likewise.
34622 * gshadow/getsgnam_r.c: Likewise.
34623 * inet/getnetbyad.c: Likewise.
34624 * inet/getnetbyad_r.c: Likewise.
34625 * inet/getnetbynm.c: Likewise.
34626 * inet/getnetbynm_r.c: Likewise.
34627 * inet/getnetent.c: Likewise.
34628 * inet/getnetent_r.c: Likewise.
34629 * inet/getproto.c: Likewise.
34630 * inet/getproto_r.c: Likewise.
34631 * inet/getprtent.c: Likewise.
34632 * inet/getprtent_r.c: Likewise.
34633 * inet/getprtname.c: Likewise.
34634 * inet/getprtname_r.c: Likewise.
34635 * inet/getrpcbyname.c: Likewise.
34636 * inet/getrpcbyname_r.c: Likewise.
34637 * inet/getrpcbynumber.c: Likewise.
34638 * inet/getrpcbynumber_r.c: Likewise.
34639 * inet/getrpcent.c: Likewise.
34640 * inet/getrpcent_r.c: Likewise.
34641 * inet/getaliasent.c: Likewise.
34642 * inet/getaliasent_r.c: Likewise.
34643 * inet/getaliasname.c: Likewise.
34644 * inet/getaliasname_r.c: Likewise.
34645 * nscd/getgrgid_r.c: Likewise.
34646 * nscd/getgrnam_r.c: Likewise.
34647 * nscd/gethstbyad_r.c: Likewise.
34648 * nscd/gethstbynm3_r.c: Likewise.
34649 * nscd/getpwnam_r.c: Likewise.
34650 * nscd/getpwuid_r.c: Likewise.
34651 * nscd/getsrvbynm_r.c: Likewise.
34652 * nscd/getsrvbypt_r.c: Likewise.
34653 * nscd/gai.c: Likewise.
34654
34655 * configure.in (build_nscd): New substituted variable, set
34656 by --disable-build-nscd and defaults to $use_nscd.
34657 * configure: Regenerated.
34658 * config.make.in (build-nscd): New substituted variable.
34659 * nscd/Makefile (others, others-pie, install-sbin, extra-objs):
34660 Change conditional to require [$(build-nscd) = yes] as well.
34661 * NEWS: Mention --disable-build-nscd in the --disable-nscd item.
34662
34663 [BZ# 13696]
34664 * configure.in (use_nscd): New substituted variable, set by
34665 --disable-nscd. If enabled, define USE_NSCD.
34666 * configure: Regenerated.
34667 * config.h.in: Add USE_NSCD.
34668 * config.make.in (use-nscd): New substituted variable.
34669 * inet/Makefile (CFLAGS-gethstbyad_r.c): Likewise.
34670 (CFLAGS-gethstbynm_r.c, CFLAGS-gethstbynm2_r.c): Likewise.
34671 (CFLAGS-getsrvbynm_r.c, CFLAGS-getsrvbypt_r.c): Variables removed.
34672 * grp/Makefile (CFLAGS-getgrgid_r.c): Remove -DUSE_NSCD.
34673 (CFLAGS-getgrnam_r.c): Likewise.
34674 (CFLAGS-initgroups.c): Likewise.
34675 * posix/Makefile (CFLAGS-getaddrinfo.c): Remove -DUSE_NSCD.
34676 * pwd/Makefile (CFLAGS-getpwuid_r.c, CFLAGS-getpwnam_r.c):
34677 Variables removed.
34678 * inet/getnetgrent_r.c
34679 (nscd_setnetgrent): New function, broken out of ...
34680 (setnetgrent): ... here. Call it.
34681 (innetgr): Conditionalize nscd bits on [USE_NSCD].
34682 (nscd_getnetgrent): Conditionalize on [USE_NSCD].
34683 (__internal_getnetgrent_r): Conditionalize its use on [USE_NSCD].
34684 * nscd/Makefile (routines, aux): Move definitions after include of
34685 Makeconfig. Conditionalize on [$(use-nscd) != no].
34686 * nss/nsswitch.c (nss_load_all_libraries, __nss_disable_nscd):
34687 Conditionalize on [USE_NSCD].
34688 (is_nscd, nscd_init_cb): Likewise.
34689 (nss_load_library): Conditionalize init callback on [USE_NSCD].
34690 * nss/nss_files/files-init.c: Conditionalize body on [USE_NSCD].
34691 * nss/nss_db/db-init.c: Likewise.
34692 * nscd/nscd.c (main): Conditionalize __nss_disable_nscd call on
34693 [USE_NSCD].
34694 * sysdeps/unix/sysv/linux/check_pf.c (get_nl_timestamp): New function.
34695 (make_request): Use it.
34696 (cache_valid_p): New function.
34697 (__check_pf): Use it.
34698 * NEWS: Add item for --disable-nscd.
34699
347002012-08-22 Dmitry V. Levin <ldv@altlinux.org>
34701
34702 * configure.in (SED): Update AC_CHECK_PROG_VER's version extract regexp
34703 to support sed >= 4.2.1-20-ga9bf076.
34704 * configure: Regenerated.
34705
347062012-08-22 Roland McGrath <roland@hack.frob.com>
34707
34708 * csu/libc-start.c (apply_irel): Move extern declarations inside here.
34709 Conditionalize whole body on [IREL].
34710
347112012-08-22 Jeff Law <law@redhat.com>
34712
34713 [BZ #14505]
34714 * sysdeps/posix/getaddrinfo.c (gaih_inet): Only use gethostbyname4_r
34715 if the family is PF_UNSPEC.
34716
347172012-08-22 Mike Frysinger <vapier@gentoo.org>
34718
34719 * Makerules (lib-version): Rename from V.
34720 (install-lib-nosubdir): Change V to lib-version.
34721
347222012-08-22 Will Schmidt <will_schmidt@vnet.ibm.com>
34723
34724 [BZ #14252]
34725 * powerpc32/power6/wcschr.c: New file.
34726 * powerpc32/power6/wcscpy.c: New file.
34727 * powerpc32/power6/wcsrchr.c: New file.
34728 * powerpc64/power6/wcschr.c: New file.
34729 * powerpc64/power6/wcscpy.c: New file.
34730 * powerpc64/power6/wcsrchr.c: New file.
34731
347322012-08-21 Maxim Kuvyrkov <maxim@codesourcery.com>
34733
34734 * string/str-two-way.h (AVAILABLE1_USES_J): New macro, define default.
34735 (two_way_short_needle): Use it.
34736 * string/strstr.c (AVAILABLE1_USES_J): Define.
34737 * string/strcasestr.c: Likewise.
34738
34739 * string/str-two-way.h (two_way_short_needle): Use pointers instead of
34740 array references.
34741 * string/strcasestr.c (TOLOWER): Make side-effect safe.
34742
34743 [BZ #11607]
34744 * NEWS: Add an entry.
34745 * string/str-two-way.h (AVAILABLE1, AVAILABLE2, RET0_IF_0): New macros,
34746 define their defaults.
34747 (two_way_short_needle): Detect end-of-string on-the-fly.
34748 * string/strcasestr.c, string/strstr.c (AVAILABLE): Update.
34749 (AVAILABLE1, AVAILABLE2, RET0_IF_0, AVAILABLE_USES_J): Define.
34750 * string/bug-strcasestr1.c: New test.
34751 * string/Makefile: Run it.
34752
347532012-08-21 Maxim Kuvyrkov <maxim@codesourcery.com>
34754
34755 [BZ #11607]
34756 * string/str-two-way.h (two_way_short_needle): Optimize matching of
34757 the first character.
34758
347592012-08-21 Roland McGrath <roland@hack.frob.com>
34760
34761 * csu/elf-init.c (__libc_csu_irel): Function removed.
34762 * csu/libc-start.c (apply_irel): New function.
34763 (LIBC_START_MAIN): Call it instead of __libc_csu_irel.
34764
347652012-08-21 Joseph Myers <joseph@codesourcery.com>
34766
34767 * sysdeps/unix/sysv/linux/kernel-features.h
34768 (__ASSUME_FADVISE64_64_SYSCALL): Remove.
34769 * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Do not include
34770 <kernel-features.h>.
34771 [__NR_fadvise64_64]: Make code unconditional.
34772 [!__ASSUME_FADVISE64_64_SYSCALL]: Remove conditional code.
34773 [__NR_fadvise64 && (!__ASSUME_FADVISE64_64_SYSCALL ||
34774 !__NR_fadvise64_64)]: Likewise.
34775 [!(__NR_fadvise64 && (!__ASSUME_FADVISE64_64_SYSCALL ||
34776 !__NR_fadvise64_64))]: Likewise.
34777 [__NR_fadvise64]: Make code unconditional.
34778 [!__NR_fadvise64]: Remove conditional code.
34779 * sysdeps/unix/sysv/linux/posix_fadvise64.c: Do not include
34780 <kernel-features.h>.
34781 (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
34782 unconditional.
34783 (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
34784 conditional code.
34785 * sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise64.c: Do
34786 not include <kernel-features.h>.
34787 (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
34788 unconditional.
34789 (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
34790 conditional code.
34791 * sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c: Do not
34792 include <kernel-features.h>.
34793 (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
34794 unconditional.
34795 (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
34796 conditional code.
34797
347982012-08-21 Will Schmidt <will_schmidt@vnet.ibm.com>
34799
34800 * sysdeps/powerpc/powerpc64/power7/memchr.S: Unrolled short loop and
34801 slight instruction rearrangements per scrollpipe analysis.
34802 * sysdeps/powerpc/powerpc64/power7/memchr.S: Likewise.
34803
348042012-08-20 Roland McGrath <roland@hack.frob.com>
34805
34806 * manual/syslog.texi (syslog; vsyslog, closelog):
34807 Fix typo repeated twice: @file{dev/log} -> @file{/dev/log}.
34808 Reported by Ricardo Catalinas Jiménez <jimenezrick@gmail.com>.
34809
34810 * elf/dl-sysdep.c (_dl_important_hwcaps): Fix conditional on using
34811 DSOCAPS to match condition on defining it.
34812
348132012-08-20 Joseph Myers <joseph@codesourcery.com>
34814
34815 * sysdeps/unix/sysv/linux/kernel-features.h
34816 (__ASSUME_SWAPCONTEXT_SYSCALL): Remove.
34817 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
34818 [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
34819 [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
34820 * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
34821 [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
34822 [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
34823 * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
34824 [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
34825 [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
34826
34827 * sysdeps/unix/sysv/linux/kernel-features.h [__s390__ &&
34828 __LINUX_KERNEL_VERSION >= 0x020616] (__ASSUME_UTIMES): Define.
34829
34830 * sysdeps/unix/sysv/linux/kernel-features.h
34831 (__ASSUME_MMAP2_SYSCALL): Remove all definitions.
34832 * sysdeps/unix/sysv/linux/mmap64.c [__NR_mmap2]: Make code
34833 unconditional.
34834 [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
34835 * sysdeps/unix/sysv/linux/i386/mmap.S (__mmap)
34836 [__ASSUME_MMAP2_SYSCALL]: Make code unconditional.
34837 (__mmap) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
34838 * sysdeps/unix/sysv/linux/i386/mmap64.S (__mmap64) [__NR_mmap2]:
34839 Make code unconditional.
34840 (__mmap64) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
34841 (__mmap64) [!__NR_mmap2]: Likewise.
34842 * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S (__mmap)
34843 [__ASSUME_MMAP2_SYSCALL]: Make code unconditional.
34844 (__mmap) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
34845 * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S (__mmap64)
34846 [__NR_mmap2]: Make code unconditional.
34847 (__mmap64) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
34848 (__mmap64) [!__NR_mmap2]: Likewise.
34849
348502012-08-20 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
34851
34852 * sysdeps/unix/sysv/linux/s390/s390-32/getrlimit.c: Remove.
34853
348542012-08-18 Andreas Jaeger <aj@suse.de>
34855
34856 * stdio-common/_itoa.c (_itoa): Add missing DUMMY variable.
34857
348582012-08-18 Mike Frysinger <vapier@gentoo.org>
34859
34860 * include/sys/socket.h (__have_sock_cloexec): Add attribute_hidden.
34861 * include/unistd.h (__have_sock_cloexec): Likewise.
34862 (__have_pipe2): Likewise.
34863 (__have_dup3): Likewise.
34864
348652012-08-18 Mike Frysinger <vapier@gentoo.org>
34866
34867 [BZ #9685]
34868 * include/unistd.h (__have_pipe2): Change define into an extern int.
34869 (__have_dup3): Likewise.
34870 * socket/have_sock_cloexec.c: Include fcntl.h.
34871 (__have_pipe2): New variable.
34872 (__have_dup3): Likewise.
34873
348742012-08-17 Mike Frysinger <vapier@gentoo.org>
34875
34876 * sysdeps/unix/sysv/linux/nice.c: Adjust #include.
34877
348782012-08-17 Marek Polacek <polacek@redhat.com>
34879
34880 * sysdeps/ieee754/ldbl-96/s_sincosl.c (__sincosl): Use __attribute__
34881 ((unused)) on I1, which is set by GET_LDOUBLE_WORDS but never used.
34882
348832012-08-17 Roland McGrath <roland@hack.frob.com>
34884
34885 * configure.in: Add AC_SUBST for sysheaders.
34886 * configure: Regenerated.
34887 * config.make.in (sysheaders): New substituted variable.
34888
34889 * sysdeps/unix/mkfifo.c: Moved ...
34890 * sysdeps/posix/mkfifo.c: ... here.
34891 * sysdeps/unix/mkfifoat.c: Moved ...
34892 * sysdeps/posix/mkfifoat.c: ... here.
34893
34894 * sysdeps/unix/utime.c: Moved ...
34895 * sysdeps/posix/utime.c: ... here.
34896
34897 * sysdeps/unix/time.c: Moved ...
34898 * sysdeps/posix/time.c: ... here.
34899 * sysdeps/unix/sysv/linux/time.c: Adjust #include.
34900 * sysdeps/unix/sysv/linux/sparc/sparc64/time.c: Likewise.
34901
34902 * sysdeps/unix/nice.c: Moved ...
34903 * sysdeps/posix/nice.c: ... here.
34904
34905 * sysdeps/unix/alarm.c: Moved ...
34906 * sysdeps/posix/alarm.c: ... here.
34907
34908 * intl/Makefile ($(codeset_mo)): Depend on the input file.
34909
349102012-08-17 Jeff Law <law@redhat.com>
34911
34912 * intl/Makefile (codeset_mo): New variable.
34913 ($(codeset_mo)): New target.
34914 (tst-codeset.out): Depend on that. Remove explicit rule.
34915 (tst-gettext3.out, tst-gettext5.out): Likewise.
34916 (LOCPATH-ENV, tst-codeset-ENV): New variables.
34917 (tst-gettext3-ENV, tst-gettext5-ENV): Likewise.
34918 * intl/tst-codeset.sh: Remove.
34919 * intl/tst-gettext3.sh: Likewise.
34920 * intl/tst-gettext5.sh: Likewise.
34921
349222012-08-17 Roland McGrath <roland@hack.frob.com>
34923
34924 * sysdeps/unix/inet/syscalls.list: File removed. Move contents into ...
34925 * sysdeps/unix/syscalls.list: ... here.
34926
34927 * sysdeps/posix/getaddrinfo.c
34928 (save_gaiconf_mtime, check_gaiconf_mtime): New functions.
34929 (gaiconf_init, gaiconf_reload): Use them.
34930 [!_STATBUF_ST_NSEC]
34931 (gaiconf_mtime, save_gaiconf_mtime, check_gaiconf_mtime):
34932 Define using time_t rather than struct timespec.
34933
34934 * sysdeps/generic/malloc-machine.h (MUTEX_INITIALIZER): New macro.
34935 (atomic_full_barrier, atomic_read_barrier, atomic_write_barrier):
34936 Macros removed.
34937 * malloc/arena.c (save_malloc_hook, save_free_hook): Conditionalize on
34938 [!NO_THREADS].
34939 (malloc_atfork, free_atfork, atfork_recursive_cntr): Likewise.
34940 (ptmalloc_lock_all, ptmalloc_unlock_all, ptmalloc_unlock_all2):
34941 Likewise.
34942
34943 * elf/dl-iteratephdr.c (__dl_iterate_phdr): Use NULL rather than 0 for
34944 __libc_cleanup_push argument.
34945
34946 * bits/param.h: New file.
34947 * misc/sys/param.h: New file.
34948 * include/sys/param.h: New file.
34949 * misc/Makefile (headers): Add bits/param.h.
34950 * sysdeps/generic/sys/param.h: File removed.
34951 * sysdeps/unix/sysv/linux/bits/param.h: New file.
34952 * sysdeps/unix/sysv/linux/sys/param.h: File removed.
34953 * sysdeps/mach/hurd/bits/param.h: New file.
34954 * sysdeps/mach/hurd/sys/param.h: File removed.
34955
34956 * elf/dl-close.c (_dl_close_worker): Add a cast and a comment to the
34957 last change.
34958
34959 * libio/genops.c (_IO_unbuffer_write): Conditionalize locking code on
34960 [_IO_MTSAFE_IO].
34961 * libio/libioP.h [!_IO_MTSAFE_IO && !NOT_IN_libc]
34962 (_IO_acquire_lock, _IO_acquire_lock_clear_flags2, _IO_release_lock):
34963 New macros.
34964
34965 * Makeconfig [$(libc-reentrant) = yes] (libio-mtsafe): New variable.
34966 * libio/Makefile (CPPFLAGS): Append $(libio-mtsafe) unconditionally
34967 rather than -D_IO_MTSAFE_IO conditionally.
34968 * stdio-common/Makefile (CPPFLAGS): Likewise.
34969 * wcsmbs/Makefile (CPPFLAGS): Likewise.
34970 * stdlib/Makefile (CFLAGS-strfmon.c, CFLAGS-strfmon_l.c):
34971 Use $(libio-mtsafe).
34972 * debug/Makefile (CFLAGS-sprintf_chk.c): Use $(libio-mtsafe) instead
34973 of -D_IO_MTSAFE_IO.
34974 (CFLAGS-snprintf_chk.c, CFLAGS-vsprintf_chk.c): Likewise.
34975 (CFLAGS-vsnprintf_chk.c, CFLAGS-asprintf_chk.c): Likewise.
34976 (CFLAGS-vasprintf_chk.c, CFLAGS-obprintf_chk.c): Likewise.
34977 (CFLAGS-dprintf_chk.c, CFLAGS-vdprintf_chk.c): Likewise.
34978 (CFLAGS-printf_chk.c, CFLAGS-fprintf_chk.c): Likewise.
34979 (CFLAGS-vprintf_chk.c, CFLAGS-vfprintf_chk.c): Likewise.
34980 (CFLAGS-gets_chk.c, CFLAGS-fgets_chk.c): Likewise.
34981 (CFLAGS-fgets_u_chk.c, CFLAGS-fread_chk.c): Likewise.
34982 (CFLAGS-fread_u_chk.c): Likewise.
34983 (CFLAGS-swprintf_chk.c, CFLAGS-vswprintf_chk.c): Likewise.
34984 (CFLAGS-wprintf_chk.c, CFLAGS-fwprintf_chk.c): Likewise.
34985 (CFLAGS-vwprintf_chk.c, CFLAGS-vfwprintf_chk.c): Likewise.
34986 (CFLAGS-fgetws_chk.c, CFLAGS-fgetws_u_chk.c): Likewise.
34987 * grp/Makefile (CFLAGS-fgetgrent_r.c, CFLAGS-putgrent.c): Likewise.
34988 * gshadow/Makefile (CFLAGS-fgetsgent_r.c, CFLAGS-putsgent.c): Likewise.
34989 * misc/Makefile (CFLAGS-mntent_r.c): Likewise.
34990 * pwd/Makefile (CFLAGS-fgetpwent_r.c): Likewise.
34991 * shadow/Makefile (CFLAGS-fgetspent_r.c, CFLAGS-putspent.c): Likewise.
34992
34993 * libio/Makefile: Test [$(libc-reentrant) = yes]
34994 instead of [$(filter %REENTRANT, $(defines)) nonempty].
34995
34996 * Makeconfig
34997 [$(libc-reentrant) = yes] (defines): Append -D_LIBC_REENTRANT.
34998 * sysdeps/pthread/configure: File removed.
34999 * sysdeps/pthread/Makeconfig: New file.
35000 * sysdeps/mach/hurd/Makeconfig (libc-reentrant): New variable.
35001 * sysdeps/mach/hurd/configure.in: Don't touch DEFINES here.
35002
350032012-08-16 Gary Benson <gbenson@redhat.com>
35004
35005 * elf/dl-close.c (_dl_close_worker): Also set r->r_map when
35006 unmapping the first object in a namespace.
35007
350082012-08-16 Roland McGrath <roland@hack.frob.com>
35009
35010 * inet/getnetgrent_r.c (internal_setnetgrent): Renamed to ...
35011 (__internal_setnetgrent): ... this. Add internal_function to
35012 definition. Add libc_hidden_def.
35013 (setnetgrent): Update caller.
35014 (internal_endnetgrent): Renamed to ...
35015 (__internal_endnetgrent): ... this. Add internal_function to
35016 definition. Add libc_hidden_def.
35017 (endnetgrent): Update caller.
35018 (internal_getnetgrent_r): Renamed to ...
35019 (__internal_getnetgrent_r): ... this. Add internal_function to
35020 definition. Add libc_hidden_def.
35021 (__getnetgrent_r): Update caller.
35022 * inet/netgroup.h: Update declarations. Add libc_hidden_proto uses.
35023
350242012-08-16 Joseph Myers <joseph@codesourcery.com>
35025
35026 * stdlib/longlong.h: Update from GCC.
35027
350282012-08-16 Roland McGrath <roland@hack.frob.com>
35029
35030 * stdlib/gmp-impl.h (udiv_qrnnd_preinv): Use __attribute__ ((unused))
35031 on _QL, which is set by umul_ppmm but never used.
35032 * stdio-common/_itoa.c (_itoa): Use __attribute__ ((unused)) on DUMMY
35033 variables, which are set by GMP macros but never used.
35034 * stdio-common/_itowa.c (_itowa): Likewise.
35035 * stdlib/divmod_1.c (mpn_divmod_1): Likewise.
35036 * stdlib/mod_1.c (mpn_mod_1): Likewise.
35037
350382012-08-16 Carlos O'Donell <carlos_odonell@mentor.com>
35039
35040 * sysdeps/sh/ldsodefs.h (ARCH_PLTENTER_MEMBERS) <sh_gnu_pltenter>:
35041 struct La_sh_regs is not constant.
35042 * sysdeps/sparc/ldsodefs.h (ARCH_PLTENTER_MEMBERS)
35043 <sparc32_gnu_pltenter, sparc64_gnu_pltenter>: struct La_sparc32_regs
35044 and struct La_sparc64_regs are not constant.
35045
350462012-08-16 Joseph Myers <joseph@codesourcery.com>
35047
35048 * sysdeps/unix/sysv/linux/kernel-features.h
35049 (__ASSUME_POSIX_TIMERS): Remove.
35050 * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
35051 [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
35052 * sysdeps/unix/sysv/linux/clock_getres.c [__ASSUME_POSIX_TIMERS]:
35053 Make code unconditional.
35054 [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
35055 * sysdeps/unix/sysv/linux/clock_gettime.c [__ASSUME_POSIX_TIMERS]:
35056 Make code unconditional.
35057 [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
35058 * sysdeps/unix/sysv/linux/clock_nanosleep.c
35059 [__ASSUME_POSIX_TIMERS]: Make code unconditional.
35060 [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
35061 * sysdeps/unix/sysv/linux/clock_settime.c [__ASSUME_POSIX_TIMERS]:
35062 Make code unconditional.
35063 [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
35064 [__ASSUME_POSIX_CPU_TIMERS <= 0 && __NR_clock_settime]
35065 (__libc_missing_posix_timers): Remove.
35066
350672012-08-15 Roland McGrath <roland@hack.frob.com>
35068
35069 * elf/dl-load.c (_dl_map_object_from_fd) [SHARED]: Conditionalize
35070 check of GL(dl_error_catch_tsd) on [_LIBC_REENTRANT].
35071
35072 * bits/libc-lock.h (__rtld_lock_initialize): New macro.
35073
35074 * elf/dl-sym.c: Include <stdlib.h>.
35075
35076 * posix/regcomp.c (init_word_char): Use temporaries to hold the 64-bit
35077 constants, which avoids warnings in 32-bit builds.
35078
35079 * bits/fcntl.h [__USE_POSIX199309 || __USE_UNIX98]:
35080 (O_DSYNC, O_RSYNC): New macros (with NetBSD values).
35081
35082 * misc/lseek.c: File moved to ...
35083 * io/lseek.c: ... here.
35084
35085 * rt/clock_nanosleep.c: Include <time.h>, not <sys/time.h>.
35086
35087 * crypt/sha512.c (sha512_process_block) [!USE_TOTAL128]: Avoid
35088 shifting LEN more than 31 bits at once.
35089
350902012-08-15 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
35091
35092 [BZ #14195]
35093 * sysdeps/i386/i686/multiarch/strcmp-sssse3.S: Fix
35094 segmentation fault for a case of two empty input strings.
35095 * string/test-strncasecmp.c (check1): Renamed to...
35096 (bz12205): ...this.
35097 (bz14195): Add new testcase for two empty input strings and N > 0.
35098 (test_main): Call new testcase, adapt for renamed function.
35099
351002012-08-15 Andreas Jaeger <aj@suse.de>
35101
35102 [BZ #14090]
35103 * crypt/md5test2.c: New test, based on test supplied by Serge
35104 Belyshev <belyshev@depni.sinp.msu.ru>.
35105 * crypt/Makefile (xtests): Add md5test-giant..
35106 * crypt/Makefile ($(objpfx)md5test-giant): Add.
35107
351082012-08-15 Paul Eggert <eggert@cs.ucla.edu>
35109
35110 [BZ #14090]
35111 * crypt/md5.c (md5_process_block): Don't assume the buffer
35112 length is less than 2**32.
35113 * crypt/sha512.c (sha512_process_block): Don't assume the buffer
35114 length is less than 2**64.
35115
351162012-08-15 Roland McGrath <roland@hack.frob.com>
35117
35118 * string/str-two-way.h: Include <sys/param.h>.
35119 (MAX): Macro removed.
35120
35121 * sysdeps/x86_64/multiarch/strstr-c.c: Add copyright header.
35122 Move #define and #undef of memmove to just before and after
35123 including <string.h>.
35124
35125 * sysdeps/x86_64/multiarch/memmove.c: Don't include <stddef.h>.
35126 [!NOT_IN_libc]: Move #define and #undef of memmove to just before
35127 and after including <string.h>. Move declarations of
35128 __memmove_sse2, __memmove_ssse3, and __memmove_ssse3_back
35129 to before #include "string/memmove.c".
35130
35131 * include/dirent.h: Declare __getdirentries.
35132
35133 * sysdeps/posix/system.c (do_system): Cast SUB_REF () to void when not
35134 using its value, to avoid warnings in the [!_LIBC_REENTRANT] case.
35135
351362012-08-14 Mike Frysinger <vapier@gentoo.org>
35137
35138 * config.h.in (HAVE_CPP_ASM_DEBUGINFO): Delete.
35139 * sysdeps/i386/configure.in: Remove assembler-with-cpp debug check.
35140 * sysdeps/i386/configure: Regenerated.
35141 * sysdeps/i386/sysdep.h (ENTRY): Remove calls to STABS_CURRENT_FILE1,
35142 STABS_CURRENT_FILE, and STABS_FUN.
35143 (END): Remove call to STABS_FUN_END.
35144 (STABS_CURRENT_FILE1): Delete.
35145 (STABS_CURRENT_FILE): Likewise.
35146 (STABS_FUN): Likewise.
35147 (STABS_FUN_END): Likewise.
35148 (STABS_FUN2): Likewise.
35149 * sysdeps/x86_64/configure.in: Remove assembler-with-cpp debug check.
35150 * sysdeps/x86_64/configure: Regenerated.
35151
351522012-08-14 Roland McGrath <roland@hack.frob.com>
35153
35154 * elf/dl-open.c: Include <atomic.h>.
35155 * elf/dl-lookup.c: Likewise.
35156
351572012-08-14 Joseph Myers <joseph@codesourcery.com>
35158
35159 * sysdeps/unix/sysv/linux/kernel-features.h
35160 (__ASSUME_CLONE_THREAD_FLAGS): Remove.
35161 * sysdeps/unix/sysv/linux/s390/system.c (FORK): Define
35162 unconditionally.
35163 * sysdeps/unix/sysv/linux/sparc/system.c (FORK): Define
35164 unconditionally.
35165 * sysdeps/unix/sysv/linux/system.c [!FORK] (FORK): Do not
35166 condition on __ASSUME_CLONE_THREAD_FLAGS.
35167
351682012-08-14 Andreas Jaeger <aj@suse.de>
35169
35170 * sysdeps/i386/fpu/libm-test-ulps: Update.
35171
351722012-08-13 Maxim Kuvyrkov <maxim@codesourcery.com>
35173
35174 * include/atomic.h (atomic_exchange_and_add): Split into ...
35175 (atomic_exchange_and_add_acq, atomic_exchange_and_add_rel): ... these.
35176 New atomic macros.
35177
351782012-08-13 Markus Trippelsdorf <markus@trippelsdorf.de>
35179
35180 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
35181
351822012-08-13 Jeff Law <law@redhat.com>
35183
35184 * manual/stdio.texi (snprintf): Clarify handling of the trailing
35185 null byte in the output string.
35186
351872012-08-10 Joseph Myers <joseph@codesourcery.com>
35188
35189 * sysdeps/unix/sysv/linux/kernel-features.h
35190 (__LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL): Define.
35191 [__LINUX_KERNEL_VERSION >= __LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL]
35192 (__ASSUME_ARG_MAX_STACK_BASED): Define.
35193 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
35194 [__LINUX_KERNEL_VERSION < 0x020617]: Change condition to
35195 !__ASSUME_ARG_MAX_STACK_BASED. Compare version with
35196 __LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL.
35197
351982012-08-09 Jeff Law <law@redhat.com>
35199
35200 [BZ #13939]
35201 * malloc.c/arena.c (reused_arena): New parameter, avoid_arena.
35202 When avoid_arena is set, don't retry in the that arena. Pick the
35203 next one, whatever it might be.
35204 (arena_get2): New parameter avoid_arena, pass through to reused_arena.
35205 (arena_lock): Pass in new parameter to arena_get2.
35206 * malloc/malloc.c (__libc_memalign): Pass in new parameter to
35207 arena_get2.
35208 (__libc_malloc): Unify retrying after main arena failure with
35209 __libc_memalign version.
35210 (__libc_valloc, __libc_pvalloc, __libc_calloc): Likewise.
35211
352122012-08-09 H.J. Lu <hongjiu.lu@intel.com>
35213
35214 [BZ #14166]
35215 * sysdeps/i386/i686/multiarch/strstr-c.c (strstr): Redefined
35216 to __redirect_strstr.
35217 (__strstr_sse42): Use typeof __redirect_strstr.
35218 (__strstr_ia32): Likewise.
35219 (__libc_strstr): New prototype.
35220 (strstr): Renamed to ...
35221 (__libc_strstr): This.
35222 (strstr): New strong alias of __libc_strstr.
35223 * sysdeps/x86_64/multiarch/strstr-c.c: Likewise.
35224 * sysdeps/unix/sysv/linux/x86_64/time.c (time): Redefined to
35225 __redirect_time.
35226 Include <time.h>.
35227 (__libc_time): New prototype.
35228 (time_ifunc): Replace time with __libc_time.
35229 (time): New strong alias and hidden definition of __libc_time.
35230 (__GI_time): Remove strong alias.
35231 * sysdeps/x86_64/multiarch/memmove.c: Don't include <string.h>.
35232 Include <stddef.h>.
35233 (memmove): Redefined to __redirect_memmove.
35234 (__memmove_sse2): Use typeof __redirect_memmove.
35235 (__memmove_ssse3): Likewise.
35236 (__memmove_ssse3_back): Likewise.
35237 (__libc_memmove): New prototype.
35238 (memmove): Renamed to ...
35239 (__libc_memmove): This.
35240 (memmove): New strong alias of __libc_memmove.
35241
352422012-08-08 Mark Salter <msalter@redhat.com>
35243
35244 * elf/elf.h
35245 (R_MN10300_TLS_GD): Define.
35246 (R_MN10300_TLS_LD): Likewise.
35247 (R_MN10300_TLS_LDO): Likewise.
35248 (R_MN10300_TLS_GOTIE): Likewise.
35249 (R_MN10300_TLS_IE): Likewise.
35250 (R_MN10300_TLS_LE): Likewise.
35251 (R_MN10300_TLS_DTPMOD): Likewise.
35252 (R_MN10300_TLS_DTPOFF): Likewise.
35253 (R_MN10300_TLS_TPOFF): Likewise.
35254 (R_MN10300_SYM_DIFF): Likewise.
35255 (R_MN10300_ALIGN): Likewise.
35256 (R_MN10300_NUM): Update.
35257
352582012-08-08 Joseph Myers <joseph@codesourcery.com>
35259
35260 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_TGKILL):
35261 Remove.
35262
352632012-08-08 Roland McGrath <roland@hack.frob.com>
35264
35265 * sysdeps/posix/fdopendir.c: Include <stddef.h>.
35266
35267 * sysdeps/unix/sysv/linux/readdir64_r.c: Update #include for
35268 sysdeps/unix -> sysdeps/posix move.
35269 * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
35270
352712012-08-07 Allan McRae <allan@archlinux.org>
35272
35273 [BZ #14303]
35274 * sunrpc/rpc_main.c (SVR4_CPP): Remove.
35275 (SUNOS_CPP): Likewise.
35276 (find_cpp): Fall back to selecting system cpp when /lib/cpp is
35277 not found.
35278 (open_input): Call CPP using execvp.
35279
352802012-08-07 Joseph Myers <joseph@codesourcery.com>
35281
35282 * sysdeps/unix/sysv/linux/kernel-features.h
35283 (__ASSUME_PROT_GROWSUPDOWN): Remove.
35284 (__ASSUME_NO_CLONE_DETACHED): Likewise.
35285 (__ASSUME_GETDENTS32_D_TYPE): Likewise.
35286 (__ASSUME_WAITID_SYSCALL): Likewise.
35287 * sysdeps/unix/sysv/linux/dl-execstack.c
35288 (_dl_make_stack_executable) [PROT_GROWSDOWN || PROT_GROWSUP]: Make
35289 code unconditional.
35290 (_dl_make_stack_executable) [!__ASSUME_PROT_GROWSUPDOWN]: Remove
35291 conditional code.
35292 * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS)
35293 [__ASSUME_GETDENTS32_D_TYPE]: Make code unconditional.
35294 (__GETDENTS) [!__ASSUME_GETDENTS32_D_TYPE]: Remove conditional
35295 code.
35296 * sysdeps/unix/sysv/linux/waitid.c [__NR_waitid]: Make code
35297 unconditional.
35298 [__ASSUME_WAITID_SYSCALL]: Likewise.
35299 [!__ASSUME_WAITID_SYSCALL]: Remove conditional code.
35300
353012012-08-07 Roland McGrath <roland@hack.frob.com>
35302
35303 * sysdeps/unix/closedir.c: Renamed to ...
35304 * sysdeps/posix/closedir.c: ... here.
35305 * sysdeps/unix/dirfd.c: Renamed to ...
35306 * sysdeps/posix/dirfd.c: ... here.
35307 * sysdeps/unix/dirstream.h: Renamed to ...
35308 * sysdeps/posix/dirstream.h: ... here.
35309 * sysdeps/unix/fdopendir.c: Renamed to ...
35310 * sysdeps/posix/fdopendir.c: ... here.
35311 * sysdeps/unix/opendir.c: Renamed to ...
35312 * sysdeps/posix/opendir.c: ... here.
35313 * sysdeps/unix/readdir.c: Renamed to ...
35314 * sysdeps/posix/readdir.c: ... here.
35315 * sysdeps/unix/readdir_r.c: Renamed to ...
35316 * sysdeps/posix/readdir_r.c: ... here.
35317 * sysdeps/unix/rewinddir.c: Renamed to ...
35318 * sysdeps/posix/rewinddir.c: ... here.
35319 * sysdeps/unix/seekdir.c: Renamed to ...
35320 * sysdeps/posix/seekdir.c: ... here.
35321 * sysdeps/unix/telldir.c: Renamed to ...
35322 * sysdeps/posix/telldir.c: ... here.
35323 * sysdeps/unix/sysv/linux/opendir.c: Update #include.
35324 * sysdeps/unix/sysv/linux/readdir64.c: Likewise.
35325 * sysdeps/unix/sysv/linux/i386/readdir64.c: Likewise.
35326 * sysdeps/unix/sysv/linux/wordsize-64/readdir.c: Likewise.
35327
35328 * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h: Renamed to ...
35329 * bits/fcntl.h: ... here.
35330
35331 * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h (O_NOCTTY): Define to 0x8000,
35332 not 0.
35333 (O_ASYNC, O_FSYNC, O_SYNC): Move outside [__USE_MISC].
35334 [__USE_XOPEN2K8] (O_DIRECTORY, O_NOFOLLOW, O_CLOEXEC): New macros.
35335 (FCREAT, FEXCL, FTRUNC, FNOCTTY, FNONBLOCK): Macros removed.
35336 (struct flock): Move l_start, l_len to the beginning.
35337 Use __pid_t for l_pid.
35338 [__USE_XOPEN2K] (POSIX_FADV_NORMAL, POSIX_FADV_RANDOM): New macros.
35339 [__USE_XOPEN2K] (POSIX_FADV_SEQUENTIAL, POSIX_FADV_WILLNEED): Likewise.
35340 [__USE_XOPEN2K] (POSIX_FADV_DONTNEED, POSIX_FADV_NOREUSE): Likewise.
35341 (F_GETLK64, F_SETLK64, F_SETLKW64): New macros.
35342 [__USE_XOPEN2K8] (F_DUPFD_CLOEXEC): New macro.
35343 [__USE_LARGEFILE64] (struct flock64): New type.
35344 (F_GETOWN, F_SETOWN): Also define for [__USE_XOPEN2K8].
35345
35346 * sysdeps/unix/bsd/bsd4.4/bits/dirent.h: Renamed to ...
35347 * bits/dirent.h: ... here.
35348
35349 * sysdeps/unix/bsd/bsd4.4/bits/dirent.h
35350 [__INO_T_MATCHES_INO64_T] (_DIRENT_MATCHES_DIRENT64): New macro.
35351
353522012-08-07 Joseph Myers <joseph@codesourcery.com>
35353
35354 * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
35355 Change from 2.6.0 to 2.6.16.
35356 * sysdeps/unix/sysv/linux/configure: Regenerated.
35357 * sysdeps/unix/sysv/linux/kernel-features.h
35358 (__ASSUME_POSIX_CPU_TIMERS): Define unconditionally.
35359 (__ASSUME_TGKILL): Define conditional on architectures, not kernel
35360 version.
35361 (__ASSUME_UTIMES): Likewise.
35362 (__ASSUME_CLONE_STOPPED): Remove.
35363 (__ASSUME_FADVISE64_64_SYSCALL): Define conditional on
35364 architectures, not kernel version.
35365 (__ASSUME_PROT_GROWSUPDOWN): Define unconditionally.
35366 (__ASSUME_NO_CLONE_DETACHED): Likewise.
35367 (__ASSUME_GETDENTS32_D_TYPE): Likewise.
35368 (__ASSUME_WAITID_SYSCALL): Likewise.
35369 [__sparc__ && __arch64__] (__ASSUME_STAT64_SYSCALL): Do not
35370 condition definition on __LINUX_KERNEL_VERSION >= 0x02060c.
35371 * README: State 2.6.16 as minimum Linux kernel version. Do not
35372 refer to older versions.
35373
353742012-08-06 Roland McGrath <roland@hack.frob.com>
35375
35376 * dirent/alphasort.c [_DIRENT_MATCHES_DIRENT64]:
35377 Define alphasort64 as an alias.
35378 * dirent/versionsort.c [_DIRENT_MATCHES_DIRENT64]:
35379 Define versionsort64 as an alias.
35380 * dirent/scandir.c [_DIRENT_MATCHES_DIRENT64]:
35381 Define scandir64 as an alias.
35382 * dirent/scandirat.c [_DIRENT_MATCHES_DIRENT64]:
35383 Define scandirat64 as an alias.
35384 * dirent/alphasort64.c (alphasort64):
35385 Conditionalize on [!_DIRENT_MATCHES_DIRENT64].
35386 * dirent/versionsort64.c: Likewise.
35387 * dirent/scandir64.c: Likewise.
35388 * dirent/scandirat64.c: Likewise.
35389 * sysdeps/wordsize-64/alphasort.c: File removed.
35390 * sysdeps/wordsize-64/alphasort64.c: File removed.
35391 * sysdeps/wordsize-64/scandir.c: File removed.
35392 * sysdeps/wordsize-64/scandir64.c: File removed.
35393 * sysdeps/wordsize-64/scandirat.c: File removed.
35394 * sysdeps/wordsize-64/scandirat64.c: File removed.
35395 * sysdeps/wordsize-64/versionsort.c: File removed.
35396 * sysdeps/wordsize-64/versionsort64.c: File removed.
35397 * sysdeps/unix/sysv/linux/x86_64/x32/alphasort.c: File removed.
35398 * sysdeps/unix/sysv/linux/x86_64/x32/alphasort64.c: File removed.
35399 * sysdeps/unix/sysv/linux/x86_64/x32/scandir.c: File removed.
35400 * sysdeps/unix/sysv/linux/x86_64/x32/scandir64.c: File removed.
35401 * sysdeps/unix/sysv/linux/x86_64/x32/scandirat.c: File removed.
35402 * sysdeps/unix/sysv/linux/x86_64/x32/scandirat64.c: File removed.
35403 * sysdeps/unix/sysv/linux/x86_64/x32/versionsort.c: File removed.
35404 * sysdeps/unix/sysv/linux/x86_64/x32/versionsort64.c: File removed.
35405
35406 * bits/typesizes.h [__LP64__] (__INO_T_MATCHES_INO64_T): New macros.
35407 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h:
35408 [__s390x__] (__INO_T_MATCHES_INO64_T): New macro.
35409 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
35410 [defined __arch64__ || defined __sparcv9]
35411 (__INO_T_MATCHES_INO64_T): New macro.
35412 * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
35413 [__x86_64__] (__INO_T_MATCHES_INO64_T): New macro.
35414 * bits/dirent.h (_DIRENT_MATCHES_DIRENT64): New macro.
35415 * sysdeps/unix/sysv/linux/bits/dirent.h
35416 [defined __OFF_T_MATCHES_OFF64_T && defined __INO_T_MATCHES_INO64_T]
35417 (_DIRENT_MATCHES_DIRENT64): New macro.
35418
35419 * io/lockf.c [__OFF_T_MATCHES_OFF64_T]:
35420 Define lockf64 as an alias.
35421 * libio/fseeko.c [__OFF_T_MATCHES_OFF64_T]:
35422 Define fseeko64 as an alias.
35423 * libio/ftello.c [__OFF_T_MATCHES_OFF64_T]:
35424 Define ftello64 as an alias.
35425 * libio/iofgetpos.c [__OFF_T_MATCHES_OFF64_T]:
35426 Define _IO_fgetpos64 and fgetpos64 as aliases.
35427 * libio/iofsetpos.c [__OFF_T_MATCHES_OFF64_T]:
35428 Define _IO_fsetpos64 and fsetpos64 as aliases.
35429 * io/lockf64.c [!__OFF_T_MATCHES_OFF64_T]:
35430 Conditionalize body on this.
35431 * libio/fseeko64.c: Likewise.
35432 * libio/ftello64.c: Likewise.
35433 * libio/iofgetpos64.c: Likewise.
35434 * libio/iofsetpos64.c: Likewise.
35435 * sysdeps/wordsize-64/lockf.c: File removed.
35436 * sysdeps/wordsize-64/lockf64.c: File removed.
35437 * sysdeps/wordsize-64/fseeko.c: File removed.
35438 * sysdeps/wordsize-64/fseeko64.c: File removed.
35439 * sysdeps/wordsize-64/ftello.c: File removed.
35440 * sysdeps/wordsize-64/ftello64.c: File removed.
35441 * sysdeps/wordsize-64/iofgetpos.c: File removed.
35442 * sysdeps/wordsize-64/iofgetpos64.c: File removed.
35443 * sysdeps/wordsize-64/iofsetpos.c: File removed.
35444 * sysdeps/wordsize-64/iofsetpos64.c: File removed.
35445 * sysdeps/unix/sysv/linux/x86_64/x32/lockf.c: File removed.
35446 * sysdeps/unix/sysv/linux/x86_64/x32/lockf64.c: File removed.
35447 * sysdeps/unix/sysv/linux/x86_64/x32/fseeko.c: File removed.
35448 * sysdeps/unix/sysv/linux/x86_64/x32/fseeko64.c: File removed.
35449 * sysdeps/unix/sysv/linux/x86_64/x32/ftello.c: File removed.
35450 * sysdeps/unix/sysv/linux/x86_64/x32/ftello64.c: File removed.
35451 * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos.c: File removed.
35452 * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos64.c: File removed.
35453 * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos.c: File removed.
35454 * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos64.c: File removed.
35455
35456 * bits/typesizes.h [__LP64__] (__OFF_T_MATCHES_OFF64_T): New macro.
35457 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h:
35458 [__s390x__] (__OFF_T_MATCHES_OFF64_T): New macro.
35459 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
35460 [defined __arch64__ || defined __sparcv9]
35461 (__OFF_T_MATCHES_OFF64_T): New macro.
35462 * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
35463 [__x86_64__] (__OFF_T_MATCHES_OFF64_T): New macro.
35464 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
35465 (__OFF_T_MATCHES_OFF64_T): New macro.
35466
354672012-08-06 H.J. Lu <hongjiu.lu@intel.com>
35468
35469 * stdlib/secure-getenv.c (__secure_getenv): Replace
35470 GLIBC_2_16 with GLIBC_2_17.
35471
354722012-08-06 H.J. Lu <hongjiu.lu@intel.com>
35473
35474 * sysdeps/unix/sysv/linux/x86_64/x32/iofopen.c: Removed.
35475 * sysdeps/unix/sysv/linux/x86_64/x32/iofopen64.c: Likewise.
35476
354772012-08-03 David S. Miller <davem@davemloft.net>
35478
35479 * sysdeps/sparc/fpu/libm-test-ulps: Update.
35480
354812012-08-03 Joseph Myers <joseph@codesourcery.com>
35482
35483 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_SECURE):
35484 Remove.
35485 (__ASSUME_CORRECT_SI_PID): Likewise.
35486 (__ASSUME_BRK_PAGE_ROUNDED): Likewise.
35487 (__ASSUME_TMPFS_NAME): Likewise.
35488 * sysdeps/unix/sysv/linux/dl-sysdep.c (frob_brk)
35489 [!__ASSUME_BRK_PAGE_ROUNDED]: Remove conditional code.
35490 * sysdeps/unix/sysv/linux/ldsodefs.h [__ASSUME_AT_SECURE]
35491 (HAVE_AUX_SECURE): Make definition unconditional.
35492 * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs)
35493 [!__ASSUME_TMPFS_NAME]: Remove conditional code.
35494
354952012-08-03 Roland McGrath <roland@hack.frob.com>
35496
35497 * sysdeps/mach/hurd/sys/param.h (MAXSYMLINKS): Macro removed.
35498 * sysdeps/mach/hurd/bits/local_lim.h (SYMLOOP_MAX): Macro removed.
35499 * sysdeps/mach/hurd/eloop-threshold.h: New file.
35500 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use
35501 __eloop_threshold instead of SYMLOOP_MAX.
35502
35503 * sysdeps/generic/eloop-threshold.h: New file.
35504 * stdlib/canonicalize.c (__realpath): Use __eloop_threshold instead
35505 of MAXSYMLINKS.
35506 * elf/chroot_canon.c (chroot_canon): Likewise.
35507
355082012-08-03 Joseph Myers <joseph@codesourcery.com>
35509
35510 [BZ #13717]
35511 * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
35512 Change to 2.6.0 everywhere.
35513 * sysdeps/unix/sysv/linux/configure: Regenerated.
35514 * sysdeps/unix/sysv/linux/kernel-features.h
35515 (__ASSUME_SET_THREAD_AREA_SYSCALL): Remove.
35516 (__ASSUME_CLONE_THREAD_FLAGS): Condition on architectures, not
35517 kernel versions.
35518 (__ASSUME_POSIX_TIMERS): Define unconditionally.
35519 (__ASSUME_FUTEX_REQUEUE): Remove.
35520 (__ASSUME_STATFS64): Define unconditionally.
35521 (__ASSUME_AT_SECURE): Likewise.
35522 (__ASSUME_CORRECT_SI_PID): Likewise.
35523 (__ASSUME_TGKILL): Define without depending on kernel version for
35524 i386.
35525 (__ASSUME_UTIMES): Likewise.
35526 (__ASSUME_SWAPCONTEXT_SYSCALL): Condition on architecture, not
35527 kernel version.
35528 (__ASSUME_BRK_PAGE_ROUNDED): Define unconditionally.
35529 (__ASSUME_TMPFS_NAME): Likewise.
35530 * README: Update reference to Linux kernel versions.
35531
355322012-08-02 Marek Polacek <polacek@redhat.com>
35533
35534 [BZ# 14150]
35535 * configure.in (libc_cv_asm_type_prefix): Remove test. Replace
35536 libc_cv_asm_type_prefix with %.
35537 * configure: Regenerated.
35538 * include/libc-symbols.h: Remove comment about
35539 ASM_TYPE_DIRECTIVE_PREFIX. Replace ASM_TYPE_DIRECTIVE_PREFIX with %.
35540 (declare_symbol_alias_1_paste) [__ASSEMBLER__]: Do not define.
35541 (declare_symbol_alias_1_paste_1) [__ASSEMBLER__]: Likewise.
35542 (declare_symbol_alias_1_stringify) [!__ASSEMBLER__]: Likewise.
35543 (declare_symbol_alias_1_stringify_1) [!__ASSEMBLER__]: Likewise.
35544 * elf/tst-unique2mod2.c: Replace ASM_TYPE_DIRECTIVE_PREFIX with %.
35545 [HAVE_ASM_UNIQUE_OBJECT]: Do not define S.
35546 [HAVE_ASM_UNIQUE_OBJECT]: Do not define _S.
35547 * elf/tst-unique2mod1.c: Likewise.
35548 * elf/tst-unique1mod2.c: Likewise.
35549 * elf/tst-unique1mod1.c: Likewise.
35550 * config.h.in: Do not undef ASM_TYPE_DIRECTIVE_PREFIX.
35551 * sysdeps/s390/s390-32/sysdep.h: Do not define ASM_TYPE_DIRECTIVE.
35552 Replace ASM_TYPE_DIRECTIVE with .type.
35553 * sysdeps/s390/s390-64/sysdep.h: Likewise.
35554 * sysdeps/i386/sysdep.h: Likewise.
35555 * sysdeps/x86_64/sysdep.h: Likewise.
35556 * sysdeps/sh/sysdep.h: Likewise.
35557 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
35558 Do not define ASM_TYPE_DIRECTIVE.
35559 * sysdeps/powerpc/sysdep.h: Likewise.
35560 * sysdeps/powerpc/powerpc32/sysdep.h:
35561 Replace ASM_TYPE_DIRECTIVE with .type.
35562 * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
35563 * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
35564 * sysdeps/i386/fpu/e_powf.S: Likewise.
35565 * sysdeps/i386/fpu/e_expl.S: Likewise.
35566 * sysdeps/i386/fpu/e_atanhf.S: Likewise.
35567 * sysdeps/i386/fpu/e_acosh.S: Likewise.
35568 * sysdeps/i386/fpu/e_pow.S: Likewise.
35569 * sysdeps/i386/fpu/s_asinhl.S: Likewise.
35570 * sysdeps/i386/fpu/e_acoshl.S: Likewise.
35571 * sysdeps/i386/fpu/s_expm1.S: Likewise.
35572 * sysdeps/i386/fpu/s_frexpf.S: Likewise.
35573 * sysdeps/i386/fpu/e_log2.S: Likewise.
35574 * sysdeps/i386/fpu/e_log2l.S: Likewise.
35575 * sysdeps/i386/fpu/e_scalb.S: Likewise.
35576 * sysdeps/i386/fpu/e_powl.S: Likewise.
35577 * sysdeps/i386/fpu/e_log10f.S: Likewise.
35578 * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
35579 * sysdeps/i386/fpu/e_logl.S: Likewise.
35580 * sysdeps/i386/fpu/s_cbrt.S: Likewise.
35581 * sysdeps/i386/fpu/s_frexpl.S: Likewise.
35582 * sysdeps/i386/fpu/s_expm1f.S: Likewise.
35583 * sysdeps/i386/fpu/e_log2f.S: Likewise.
35584 * sysdeps/i386/fpu/e_acoshf.S: Likewise.
35585 * sysdeps/i386/fpu/e_log.S: Likewise.
35586 * sysdeps/i386/fpu/e_scalbf.S: Likewise.
35587 * sysdeps/i386/fpu/e_logf.S: Likewise.
35588 * sysdeps/i386/fpu/e_log10l.S: Likewise.
35589 * sysdeps/i386/fpu/e_atanh.S: Likewise.
35590 * sysdeps/i386/fpu/s_asinhf.S: Likewise.
35591 * sysdeps/i386/fpu/e_log10.S: Likewise.
35592 * sysdeps/i386/fpu/s_frexp.S: Likewise.
35593 * sysdeps/i386/fpu/e_atanhl.S: Likewise.
35594 * sysdeps/i386/fpu/s_asinh.S: Likewise.
35595 * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
35596 * sysdeps/i386/fpu/e_scalbl.S: Likewise.
35597 * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Likewise.
35598 * sysdeps/i386/i686/fpu/e_logl.S: Likewise.
35599 * sysdeps/i386/i686/strtok.S: Likewise.
35600 * sysdeps/i386/i386-mcount.S: Likewise.
35601 * sysdeps/i386/strtok.S: Likewise.
35602 * sysdeps/x86_64/fpu/e_expl.S: Likewise.
35603 * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
35604 * sysdeps/x86_64/fpu/e_powl.S: Likewise.
35605 * sysdeps/x86_64/fpu/e_logl.S: Likewise.
35606 * sysdeps/x86_64/fpu/e_expf.S: Likewise.
35607 * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
35608 * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
35609 * sysdeps/x86_64/fpu/s_copysign.S: Likewise.
35610 * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
35611 * sysdeps/x86_64/_mcount.S: Likewise.
35612 * sysdeps/x86_64/strtok.S: Likewise.
35613 * sysdeps/sh/_mcount.S: Likewise.
35614
356152012-08-01 Roland McGrath <roland@hack.frob.com>
35616
35617 * libio/iofopen.c: Include <fcntl.h>.
35618 [_LIBC] [!defined O_LARGEFILE || O_LARGEFILE == 0]
35619 (_IO_fopen64, fopen64): Define as aliases.
35620 * libio/iofopen64.c: Include <fcntl.h>.
35621 [!defined _LIBC || (defined O_LARGEFILE && O_LARGEFILE != 0)]:
35622 Conditionalize body on this.
35623 * sysdeps/wordsize-64/iofopen.c: File removed.
35624 * sysdeps/wordsize-64/iofopen64.c: File removed.
35625
356262012-08-01 Marek Polacek <polacek@redhat.com>
35627
35628 * libc/Makeconfig: Use elf in place of binfmt-subdir.
35629 Use dlfcn directly instead of a variable.
35630 (binfmt-subdir): Do not define.
35631 (dlfcn): Likewise.
35632
356332012-08-01 Joseph Myers <joseph@codesourcery.com>
35634
35635 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_FCNTL64):
35636 Remove all definitions.
35637 * sysdeps/unix/sysv/linux/i386/fcntl.c: Do not include
35638 <kernel-features.h>.
35639 [!__ASSUME_FCNTL64] (__have_no_fcntl64): Remove.
35640 (miss_F_GETOWN_EX): Remove all definitions.
35641 [NO_CANCELLATION && !__ASSUME_FCNTL64] (__fcntl_nocancel): Remove
35642 macro definition.
35643 [!__ASSUME_FCNTL64]: Remove conditional code.
35644 [__ASSUME_FCNTL64]: Make code unconditional.
35645 * sysdeps/unix/sysv/linux/i386/lockf64.c: Do not include
35646 <kernel-features.h>.
35647 [__NR_fcntl64 && !__ASSUME_FCNTL64] (__have_no_fcntl64): Remove.
35648 (lockf64) [!__ASSUME_FCNTL64]: Remove conditional code.
35649 (lockf64) [__NR_fcntl64]: Make code unconditional.
35650 (lockf64) [__ASSUME_FCNTL64]: Likewise.
35651
35652 * sysdeps/unix/sysv/linux/kernel-features.h
35653 (__ASSUME_VFORK_SYSCALL): Remove all definitions.
35654 * sysdeps/unix/sysv/linux/i386/vfork.S (__vfork) [__NR_vfork]:
35655 Make code unconditional.
35656 (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
35657 (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
35658 * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S (__vfork)
35659 [__NR_vfork]: Make code unconditional.
35660 (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
35661 (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
35662 * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S (__vfork)
35663 [__NR_vfork]: Make code unconditional.
35664 (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
35665 (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
35666
356672012-08-01 Roland McGrath <roland@hack.frob.com>
35668
35669 * sysdeps/generic/sys/param.h (NGROUPS): Define only if [NGROUPS_MAX].
35670 (MAXSYMLINKS): Define only if [SYMLOOP_MAX].
35671
35672 * misc/mkstemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
35673 Define mkstemp64 as an alias.
35674 * misc/mkstemps.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
35675 Define mkstemps64 as an alias.
35676 * misc/mkostemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
35677 Define mkostemp64 as an alias.
35678 * misc/mkostemps.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
35679 Define mkostemps64 as an alias.
35680 * misc/mkstemp64.c [defined O_LARGEFILE && O_LARGEFILE != 0]:
35681 Conditionalize body on this.
35682 * misc/mkostemp64.c: Likewise.
35683 * misc/mkostemps64.c: Likewise.
35684 * misc/mkstemps64.c: Likewise.
35685 * sysdeps/wordsize-64/mkstemp64.c: File removed.
35686 * sysdeps/wordsize-64/mkostemp64.c: File removed.
35687 * sysdeps/wordsize-64/mkostemp.c: File removed.
35688 * sysdeps/wordsize-64/mkstemp.c: File removed.
35689 * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c: File removed.
35690 * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c: File removed.
35691 * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c: File removed.
35692 * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c: File removed.
35693
35694 [BZ #14138]
35695 * sysdeps/unix/sysv/linux/syscalls.list: Add getrlimit/ugetrlimit line.
35696 * sysdeps/unix/sysv/linux/i386/getrlimit.c: File removed.
35697 * sysdeps/unix/sysv/linux/powerpc/getrlimit.c: File removed.
35698 * sysdeps/unix/sysv/linux/sh/getrlimit.c: File removed.
35699
35700 * sysdeps/unix/make-syscalls.sh: Emit uses of the versioned_symbol and
35701 compat_symbol macros from <shlib-compat.h> rather than the underlying
35702 default_symbol_version and symbol_version macros, so that DEFAULT
35703 lines in shlib-versions are respected.
35704 * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Likewise.
35705
357062012-08-01 Florian Weimer <fweimer@redhat.com>
35707
35708 * posix/unistd.h (setuid, setreuid, seteuid, setresuid):
35709 Declare with warn_unused_result.
35710 (setgid, setregid, setegid, setresgid): Likewise.
35711 * sysdeps/unix/sysv/linux/sys/fsuid.h (setfsuid, setfsgid):
35712 Likewise.
35713 * WUR-REPORT: Remove set*id functions.
35714
357152012-07-31 Pino Toscano <toscano.pino@tiscali.it>
35716
35717 * sysdeps/mach/hurd/renameat.c: New file, mostly copied from rename.c.
35718
357192012-07-31 Roland McGrath <roland@hack.frob.com>
35720
35721 [BZ #10191]
35722 * include/sys/socket.h (__libc_accept, __libc_accept4):
35723 Add attribute_hidden.
35724 * socket/accept4.c (__libc_accept4): Remove libc_hidden_def.
35725
35726 * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Conditionalize
35727 use of PTR_MANGLE.
35728 * inet/getnetgrent_r.c (setup): Likewise.
35729
35730 * sysdeps/generic/siglist.h: Put SIGWINCH under #ifdef.
35731
357322012-07-31 David S. Miller <davem@davemloft.net>
35733
35734 * sysdeps/sparc/fpu/libm-test-ulps: Update.
35735
357362012-07-31 Joseph Myers <joseph@codesourcery.com>
35737
35738 [BZ #13629]
35739 * math/s_clog.c (__clog): Use __log1p if larger part has absolute
35740 value between 1.0 and 2.0 and smaller part has absolute value less
35741 than 1.0.
35742 * math/s_clog10.c (__clog10): Likewise.
35743 * math/s_clog10f.c (__clog10f): Likewise.
35744 * math/s_clog10l.c (__clog10l): Likewise.
35745 * math/s_clogf.c (__clogf): Likewise.
35746 * math/s_clogl.c (__clogl): Likewise.
35747 * math/libm-test.inc (clog_test): Add more tests.
35748 (clog10_test): Likewise.
35749 * sysdeps/i386/fpu/libm-test-ulps: Update.
35750 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
35751
357522012-07-31 Florian Weimer <fweimer@redhat.com>
35753
35754 * stdlib/tst-secure-getenv.c: Use printf for error reporting.
35755 Exit with zero in case no suitable GID is found, and write a
35756 message to standard error.
35757
357582012-07-30 Roland McGrath <roland@hack.frob.com>
35759
35760 * sysdeps/generic/sys/param.h (MAXSYMLINKS): Define to SYMLOOP_MAX
35761 rather than to 1.
35762 (NBBY, NGROUPS, CANBSIZ, NCARGS): New macros.
35763 (MAXPATHLEN): Removed.
35764 (NOGROUP, NODEV): New macros.
35765 (setbit, clrbit, isset, isclr): New macros.
35766 (howmany, roundup, powerof2): New macros.
35767 (DEV_BSIZE): New macro.
35768
35769 * include/unistd.h: Add attribute_hidden on __libc_pwrite64.
35770 * sysdeps/posix/pwrite64.c: Remove libc_hidden_def (__libc_pwrite64).
35771
35772 * sysdeps/ieee754/k_standard.c (__kernel_standard_l): Conditionalize
35773 definition on [!__NO_LONG_DOUBLE_MATH].
35774
35775 * nss/nsswitch.c (__nss_lookup_function): Conditionalize use of
35776 PTR_MANGLE and PTR_DEMANGLE.
35777
35778 * socket/accept4.c (accept4): Rename to __libc_accept4.
35779 Define accept4 as a weak alias.
35780
35781 * sysdeps/posix/getcwd.c (__getcwd): Conditionalize d_type field use
35782 on [_DIRENT_HAVE_D_TYPE].
35783 * io/ftw.c (ftw_dir): Likewise.
35784
35785 * io/xmknod.c (__xmknod): Don't check PATH for being null.
35786
35787 * libio/genops.c (flush_cleanup): Move inside [_IO_MTSAFE_IO].
35788
35789 * bits/signum.h (SIGSTOP, SIGCONT, SIGTSTP, SIGTTIN, SIGTTOU, SIGCHLD):
35790 Use the BSD numbers rather than the arbitrary ones we had.
35791 (SIGBUS, SIGIO, SIGPOLL, SIGPROF, SIGSYS): New macros.
35792 (SIGTRAP, SIGURG, SIGUSR1, SIGUSR2, SIGVTALRM): New macros.
35793 (SIGXCPU, SIGXFSZ): New macros.
35794 (_NSIG): Now 32.
35795
35796 * elf/rtld.c (_rtld_global): Conditionalize .dl_ns[LM_ID_BASE]
35797 initializer on [_LIBC_REENTRANT].
35798
35799 * iconv/iconv_charmap.c (charmap_conversion): Move ST, ADDR
35800 definitions inside [_POSIX_MAPPED_FILES].
35801
35802 * posix/regex.c: Include <sys/param.h> for MIN/MAX.
35803
35804 * dirent/opendir.c: Include <fcntl.h>.
35805
35806 * bits/libc-lock.h (__libc_setspecific): Evaluate arguments.
35807 (__libc_getspecific): Likewise.
35808 (__libc_key_create): Likewise.
35809
35810 * stdio-common/tmpfile64.c: Include <fcntl.h> first.
35811 [defined O_LARGEFILE && O_LARGEFILE != 0]: Conditionalize on this.
35812 * stdio-common/tmpfile.c [!defined O_LARGEFILE || O_LARGEFILE == 0]
35813 (tmpfile64): Define as alias.
35814 * sysdeps/wordsize-64/tmpfile.c: File removed.
35815 * sysdeps/wordsize-64/tmpfile64.c: File removed.
35816 * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile64.c: File removed.
35817 * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile.c: File removed.
35818
35819 * stdio-common/vfscanf.c: Include <stdbool.h>.
35820 * nss/makedb.c: Likewise.
35821 * stdio-common/_i18n_number.h: Likewise.
35822 * argp/argp-help.c: Likewise.
35823 * posix/wordexp.c: Likewise.
35824 * sysdeps/posix/spawni.c: Likewise.
35825 * nss/nss_files/files-initgroups.c: Likewise.
35826 * stdio-common/reg-modifier.c: Include <stdlib.h>.
35827 * nss/nss_files/files-initgroups.c: Likewise.
35828 * nss/nss_db/db-netgrp.c: Likewise.
35829 * nss/nss_db/db-initgroups.c: Likewise.
35830 * io/fchmodat.c: Include <sys/stat.h>.
35831
35832 * sysdeps/generic/ldsodefs.h (struct rtld_global): Use
35833 __rtld_lock_define_recursive macro instead of __rtld_lock_recursive_t.
35834
35835 * intl/loadmsgcat.c (_nl_load_domain): Don't use MAP_FAILED outside of
35836 [HAVE_MMAP].
35837
35838 * bits/stat.h: Fix inclusion guard to accept _FCNTL_H too.
35839 Add multiple inclusion protection.
35840
358412012-07-27 David S. Miller <davem@davemloft.net>
35842
35843 * sysdeps/sparc/fpu/libm-test-ulps: Update.
35844
358452012-07-27 Gary Benson <gbenson@redhat.com>
35846
35847 [BZ #14298]
35848 * elf/rtld.c: Include <stap-probe.h>.
35849 (dl_main): Added static probes "init_start" and "init_complete".
35850 * elf/dl-load.c: Include <stap-probe.h>.
35851 (lose): Take new parameter "nsid".
35852 Added static probe "map_failed".
35853 (_dl_map_object_from_fd): Pass namespace id to lose.
35854 Added static probe "map_start".
35855 (open_verify): Pass namespace id to lose.
35856 * elf/dl-open.c: Include <stap-probe.h>.
35857 (dl_open_worker) Added static probes "map_complete", "reloc_start"
35858 and "reloc_complete".
35859 * elf/dl-close.c: Include <stap-probe.h>.
35860 (_dl_close_worker): Added static probes "unmap_start" and
35861 "unmap_complete".
35862 * elf/rtld-debugger-interface.txt: New file documenting the above.
35863
358642012-07-26 Roland McGrath <roland@hack.frob.com>
35865
35866 * sunrpc/rpc_hout.c (pdeclaration): Call f_print with a "%s" format
35867 rather than a string variable.
35868 * sunrpc/rpc_main.c (h_output): Likewise.
35869 * sunrpc/rpc_svcout.c (write_real_program): Likewise.
35870
358712012-07-26 Pino Toscano <toscano.pino@tiscali.it>
35872
35873 * inet/check_native.c: New file.
35874
358752012-07-26 Joseph Myers <joseph@codesourcery.com>
35876
35877 [BZ #13629]
35878 * math/s_clog.c (__clog): Use __log1p or direct log1p calculation
35879 if larger part has absolute value 1.0.
35880 * math/s_clog10.c (__clog10): Likewise.
35881 * math/s_clog10f.c (__clog10f): Likewise.
35882 * math/s_clog10l.c (__clog10l): Likewise.
35883 * math/s_clogf.c (__clogf): Likewise.
35884 * math/s_clogl.c (__clogl): Likewise.
35885 * math/libm-test.inc (clog_test): Add more tests.
35886 (clog10_test): Likewise.
35887 * sysdeps/i386/fpu/libm-test-ulps: Update.
35888 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
35889
35890 * elf/tst-auditmod1.c (pltenter): Remove all definitions of macro.
35891 (pltexit): Likewise.
35892 (La_regs): Likewise.
35893 (La_retval): Likewise.
35894 (int_retval): Likewise.
35895 Update #error for removed macros to refer only to definitions in
35896 tst-audit.h.
35897 * elf/tst-auditmod3b.c (pltenter): Remove all definitions of
35898 macro.
35899 (pltexit): Likewise.
35900 (La_regs): Likewise.
35901 (La_retval): Likewise.
35902 (int_retval): Likewise.
35903 * elf/tst-auditmod4b.c (pltenter): Remove all definitions of
35904 macro.
35905 (pltexit): Likewise.
35906 (La_regs): Likewise.
35907 (La_retval): Likewise.
35908 (int_retval): Likewise.
35909 * elf/tst-auditmod5b.c (pltenter): Remove all definitions of
35910 macro.
35911 (pltexit): Likewise.
35912 (La_regs): Likewise.
35913 (La_retval): Likewise.
35914 (int_retval): Likewise.
35915 * elf/tst-auditmod6b.c (pltenter): Remove all definitions of
35916 macro.
35917 (pltexit): Likewise.
35918 (La_regs): Likewise.
35919 (La_retval): Likewise.
35920 (int_retval): Likewise.
35921 * elf/tst-auditmod6c.c (pltenter): Remove all definitions of
35922 macro.
35923 (pltexit): Likewise.
35924 (La_regs): Likewise.
35925 (La_retval): Likewise.
35926 (int_retval): Likewise.
35927 * elf/tst-auditmod7b.c (pltenter): Remove all definitions of
35928 macro.
35929 (pltexit): Likewise.
35930 (La_regs): Likewise.
35931 (La_retval): Likewise.
35932 (int_retval): Likewise.
35933 * sysdeps/generic/tst-audit.h: Update comment to refer only to
35934 macro definitions in tst-audit.h.
35935 * sysdeps/i386/tst-audit.h: New file.
35936 * sysdeps/powerpc/powerpc32/tst-audit.h: Likewise.
35937 * sysdeps/powerpc/powerpc64/tst-audit.h: Likewise.
35938 * sysdeps/s390/s390-32/tst-audit.h: Likewise.
35939 * sysdeps/s390/s390-64/tst-audit.h: Likewise.
35940 * sysdeps/sh/tst-audit.h: Likewise.
35941 * sysdeps/sparc/sparc32/tst-audit.h: Likewise.
35942 * sysdeps/sparc/sparc64/tst-audit.h: Likewise.
35943 * sysdeps/x86_64/tst-audit.h: Likewise.
35944
359452012-07-26 Andreas Jaeger <aj@suse.de>
35946
35947 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Add __THROW for
35948 ptrace.
35949
35950 * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_eventcodes): Add
35951 new value PTRACE_EVENT_SECCOMP from Linux 3.5.
35952 (__ptrace_setoptions): Add new value PTRACE_O_TRACESECCOMP, adjust
35953 PTRACE_O_MASK.
35954 * sysdeps/unix/sysv/linux/s390/bits/ptrace.h: Likewise.
35955 * sysdeps/unix/sysv/linux/sparc/bits/ptrace.h: Likewise.
35956 * sysdeps/unix/sysv/linux/powerpc/bits/ptrace.h: Likewise.
35957
35958 * sysdeps/unix/sysv/linux/sys/epoll.h (EPOLLWAKEUP): Add new
35959 value.
35960
35961 * sysdeps/unix/sysv/linux/bits/siginfo.h (siginfo_t): Add
35962 _sigsys.
35963 (si_call_addr, si_syscall, si_arch): Define new macro.
35964 * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (siginfo_t): Add
35965 _sigsys.
35966 (si_call_addr, si_syscall, si_arch): Define new marcro.
35967 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (siginfo_t): Add
35968 _sigsys.
35969 (si_call_addr, si_syscall, si_arch): Define new macro.
35970 * sysdeps/unix/sysv/linux/x86/bits/siginfo.h (struct): Add
35971 _sigsys.
35972 (si_call_addr, si_syscall, si_arch): Define new macro.
35973
359742012-07-25 Joseph Myers <joseph@codesourcery.com>
35975
35976 [BZ #13717]
35977 * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
35978 Change to 2.4.21 where previously 2.4.1.
35979 * sysdeps/unix/sysv/linux/configure: Regenerated.
35980 * sysdeps/unix/sysv/linux/kernel-features.h [(__powerpc__ ||
35981 __sh__) && !__powerpc64__] (__ASSUME_FCNTL64): Do not condition on
35982 Linux kernel version.
35983 (__ASSUME_STD_AUXV): Remove.
35984 [__powerpc__] (__ASSUME_VFORK_SYSCALL): Do not condition on Linux
35985 kernel version.
35986 [__powerpc__ && !__powerpc64] (__ASSUME_MMAP2_SYSCALL): Likewise.
35987 (__ASSUME_NEW_PRCTL_SYSCALL): Remove.
35988 (__ASSUME_FIXED_CLONE_SYSCALL): Likewise.
35989 (__ASSUME_NEW_RT_SIGRETURN_SYSCALL): Likewise.
35990 (__ASSUME_NETLINK_SUPPORT): Likewise.
35991 * nscd/gai.c [NEED_NETLINK && __ASSUME_NETLINK_SUPPORT == 0]
35992 (__no_netlink_support): Remove conditional definition.
35993 * sysdeps/unix/sysv/linux/check_pf.c (__no_netlink_support):
35994 Remove.
35995 (__check_pf) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional code.
35996 [__ASSUME_NETLINK_SUPPORT]: Make code unconditional.
35997 * sysdeps/unix/sysv/linux/if_index.c [!__ASSUME_NETLINK_SUPPORT]
35998 (if_nameindex_ioctl): Remove.
35999 (if_nameindex_netlink): Do not handle __no_netlink_support.
36000 (if_nameindex) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional
36001 code.
36002 * sysdeps/unix/sysv/linux/ifaddrs.c [!__ASSUME_NETLINK_SUPPORT]:
36003 Remove conditional code.
36004 (__netlink_open) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional
36005 code.
36006 (getifaddrs_internal) [__ASSUME_NETLINK_SUPPORT]: Make code
36007 unconditional.
36008 [!__ASSUME_NETLINK_SUPPORT]: Remove conditional code.
36009 [__ASSUME_NETLINK_SUPPORT] (freeifaddrs): Make code unconditional.
36010 * sysdeps/unix/sysv/linux/netlinkaccess.h (__no_netlink_support):
36011 Remove.
36012 * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
36013 [!__ASSUME_STD_AUXV]: Remove conditional code.
36014 * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S (__clone)
36015 [!__ASSUME_FIXED_CLONE_SYSCALL]: Remove conditional code.
36016 [__ASSUME_FIXED_CLONE_SYSCALL]: Make code unconditional.
36017 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c
36018 [!__ASSUME_NEW_PRCTL_SYSCALL] (fe_mask_handler): Remove.
36019 (__fe_mask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove conditional
36020 code.
36021 [__ASSUME_NEW_PRCTL_SYSCALL]: Make code unconditional.
36022 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
36023 [!__ASSUME_NEW_PRCTL_SYSCALL] (fe_nomask_handler): Remove.
36024 (__fe_nomask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove
36025 conditional code.
36026 [__ASSUME_NEW_PRCTL_SYSCALL]: Make code unconditional.
36027 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c
36028 (__fe_mask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove conditional
36029 code.
36030 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
36031 (__fe_nomask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove
36032 conditional code.
36033 * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
36034 (__novec_getcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
36035 code unconditional.
36036 (__novec_getcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
36037 conditional code.
36038 (__getcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
36039 unconditional.
36040 (__getcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
36041 conditional code.
36042 * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
36043 (__makecontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
36044 unconditional.
36045 (__makecontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
36046 conditional code.
36047 * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
36048 (__novec_setcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
36049 code unconditional.
36050 (__novec_setcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
36051 conditional code.
36052 (__setcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
36053 unconditional.
36054 (__setcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
36055 conditional code.
36056 * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
36057 (__novec_swapcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
36058 code unconditional.
36059 (__novec_swapcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
36060 conditional code.
36061 (__swapcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
36062 unconditional.
36063 (__swapcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
36064 conditional code.
36065
360662012-07-25 Andreas Schwab <schwab@linux-m68k.org>
36067
36068 * sysdeps/unix/sysv/linux/i386/accept4.S: Remove pseudo_end label.
36069 * sysdeps/unix/sysv/linux/i386/call_sync_file_range.S: Likewise.
36070 * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
36071 * sysdeps/unix/sysv/linux/i386/epoll_pwait.S: Likewise.
36072 * sysdeps/unix/sysv/linux/i386/getcontext.S: Likewise.
36073 * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
36074 * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
36075 * sysdeps/unix/sysv/linux/i386/semtimedop.S: Likewise.
36076 * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
36077 * sysdeps/unix/sysv/linux/i386/socket.S: Likewise.
36078 * sysdeps/unix/sysv/linux/i386/swapcontext.S: Likewise.
36079 * sysdeps/unix/sysv/linux/i386/syscall.S: Likewise.
36080 * sysdeps/unix/sysv/linux/i386/sysdep.h (PSEUDO): Likewise.
36081 * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
36082 * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
36083 * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Likewise.
36084 * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Likewise.
36085 * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Likewise.
36086 * sysdeps/unix/sysv/linux/x86_64/syscall.S: Likewise.
36087 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PSEUDO): Likewise.
36088 * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Likewise.
36089 * sysdeps/unix/sysv/linux/x86_64/vfork.S: Likewise.
36090 * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Likewise.
36091
360922012-07-25 Florian Weimer <fweimer@redhat.com>
36093
36094 * Versions.def: Add GLIBC_2.17.
36095 * stdlib/stdlib.h: Rename __secure_getenv to secure_getenv.
36096 * include/stdlib.h: Rename __secure_getenv to secure_getenv.
36097 Introduce __libc_secure_getenv.
36098 * stdlib/Versions (2.17): Add secure_getenv
36099 (GLIBC_PRIVATE): Add __libc_secure_getenv.
36100 * stdlib/secure-getenv.c: Rename __secure_getenv to
36101 __libc_secure_getenv. Add secure_getenv alias. Add compatibility
36102 symbol __secure_getenv for GLIBC_2.0.
36103 * stdlib/tst-secure-getenv.c: New.
36104 * stdlib/Makefile (tests): Add testcase.
36105 * manual/startup.texi (Environment Access): Document
36106 secure_getenv.
36107 * hesiod/hesiod.c (hesiod_init): Rename __secure_getenv to
36108 __libc_secure_getenv.
36109 * inet/ruserpass.c (ruserpass): Likewise.
36110 * malloc/mtrace.c (mtrace): Likewise.
36111 * sysdeps/mach/hurd/tmpfile.c (__tmpfile): Likewise.
36112 * sysdeps/posix/libc_fatal.c (__libc_fatal): Likewise.
36113 * sysdeps/posix/sysconf.c (__sysconf__check_spec): Likewise.
36114 * sysdeps/posix/tempname.c: Likewise. Evaluate
36115 HAVE_SECURE_GETENV.
36116 * sysdeps/unix/sysv/linux/libc_fatal.c (__libc_message): Rename
36117 __secure_getenv to __libc_secure_getenv.
36118 * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Add secure_getenv.
36119 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
36120 Likewise.
36121 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
36122 Likewise.
36123 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Likewise.
36124 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Likewise.
36125 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
36126 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Likewise.
36127 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Likewise.
36128 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
36129 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Likewise.
36130
361312012-07-25 Joseph Myers <joseph@codesourcery.com>
36132
36133 * sysdeps/generic/ldsodefs.h (struct La_i86_regs): Remove.
36134 (struct La_i86_retval): Likewise.
36135 (struct La_x86_64_regs): Likewise.
36136 (struct La_x86_64_retval): Likewise.
36137 (struct La_x32_regs): Likewise.
36138 (struct La_x32_retval): Likewise.
36139 (struct La_ppc32_regs): Likewise.
36140 (struct La_ppc32_retval): Likewise.
36141 (struct La_ppc64_regs): Likewise.
36142 (struct La_ppc64_retval): Likewise.
36143 (struct La_sh_regs): Likewise.
36144 (struct La_sh_retval): Likewise.
36145 (struct La_s390_32_regs): Likewise.
36146 (struct La_s390_32_retval): Likewise.
36147 (struct La_s390_64_regs): Likewise.
36148 (struct La_s390_64_retval): Likewise.
36149 (struct La_sparc32_regs): Likewise.
36150 (struct La_sparc32_retval): Likewise.
36151 (struct La_sparc64_regs): Likewise.
36152 (struct La_sparc64_retval): Likewise.
36153 (struct audit_ifaces): Remove architecture-specific pltenter and
36154 pltexit members.
36155 * sysdeps/i386/ldsodefs.h: New file.
36156 * sysdeps/powerpc/ldsodefs.h: Likewise.
36157 * sysdeps/s390/ldsodefs.h: Likewise.
36158 * sysdeps/sh/ldsodefs.h: Likewise.
36159 * sysdeps/sparc/ldsodefs.h: Likewise.
36160 * sysdeps/x86_64/ldsodefs.h: Likewise.
36161
361622012-07-25 Marek Polacek <polacek@redhat.com>
36163
36164 [BZ #6808]
36165 * math/libm-test.inc (yn_test): Add another test.
36166 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_ynl): Set errno
36167 to ERANGE when the result is +-Inf.
36168 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Likewise.
36169 * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_ynf): Likewise.
36170 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_ynl): Likewise.
36171 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_yn): Likewise.
36172
361732012-07-24 Joseph Myers <joseph@codesourcery.com>
36174
36175 * conform/data/time.h-data (NULL): Use macro-constant. Require
36176 equal to 0.
36177 (CLOCKS_PER_SEC): Use macro instead of constant. Specify type as
36178 clock_t.
36179 [ISO11] (TIME_UTC): Use macro-int-constant. Require value > 0.
36180
361812012-07-23 Thomas Schwinge <thomas@codesourcery.com>
36182
36183 * configure.in <sysdeps resolving>: Correct printing
36184 Implies_before.
36185 * configure: Regenerate.
36186
361872012-07-22 Thomas Schwinge <thomas@codesourcery.com>
36188
36189 * math/w_ilogb.c: Include <limits.h>.
36190 * math/w_ilogbl.c: Likewise.
36191
361922012-07-20 Joseph Myers <joseph@codesourcery.com>
36193
36194 * manual/lang.texi (__va_copy): Document primarily as ISO C99
36195 va_copy. Document allowing for unavailable va_copy only as
36196 pre-C99 compatibility.
36197 * manual/string.texi (Copying and Concatenation): Use va_copy
36198 instead of __va_copy in concat example.
36199
362002012-07-20 Pino Toscano <toscano.pino@tiscali.it>
36201
36202 * sysdeps/mach/hurd/sendto.c (create_address_port): New subroutine.
36203 (__sendto): Use create_address_port. Initialize APORT and deallocate
36204 it if not null.
36205
36206 * sysdeps/mach/hurd/llistxattr.c: New file, copied from listxattr.c
36207 with O_NOLINK passed to __file_name_lookup.
36208
36209 * sysdeps/mach/hurd/lremovexattr.c: New file, copied from removexattr.c
36210 with O_NOLINK passed to __file_name_lookup.
36211
36212 * sysdeps/mach/hurd/getgroups.c: Return -1 and set EINVAL for
36213 negative N or less than NGIDS.
36214
36215 * sysdeps/mach/hurd/getlogin_r.c: Make LOGIN non-static and change its
36216 type to string_t. Set ERANGE as errno and return it if NAME is not big
36217 enough. Use memcpy instead of strncpy.
36218
362192012-07-20 Joseph Myers <joseph@codesourcery.com>
36220
36221 * elf/Makefile (check-data): Remove.
36222 (localplt.data): New vpath directive.
36223 ($(objpfx)check-localplt.out): Use localplt.data from vpath
36224 instead of $(check-data).
36225 * scripts/data/localplt-generic.data: Move to ...
36226 * sysdeps/generic/localplt.data: ... here.
36227 * scripts/data/localplt-i386-linux-gnu.data: Move to ...
36228 * sysdeps/unix/sysv/linux/i386/nptl/localplt.data: ... here.
36229 * scripts/data/localplt-powerpc-linux-gnu.data: Move to ...
36230 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/localplt.data:
36231 ... here.
36232 * scripts/data/localplt-powerpc64-linux-gnu.data: Move to ...
36233 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/localplt.data:
36234 ... here.
36235 * scripts/data/localplt-s390-linux-gnu.data: Move to ...
36236 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/localplt.data:
36237 ... here.
36238 * scripts/data/localplt-s390x-linux-gnu.data: Move to ...
36239 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/localplt.data:
36240 ... here.
36241 * scripts/data/localplt-sparc-linux-gnu.data: Move to ...
36242 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/localplt.data:
36243 ... here.
36244 * scripts/data/localplt-sparc64-linux-gnu.data: Move to ...
36245 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/localplt.data:
36246 ... here.
36247
362482012-07-19 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
36249
36250 * sysdeps/powerpc/tls-macros.h: Split PowerPC definitions in
36251 PPC32 and PPC64 files.
36252 * sysdeps/powerpc/powerpc32/tls-macros.h: New file.
36253 * sysdeps/powerpc/powerpc64/tls-macros.h: Likewise.
36254
362552012-07-19 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
36256
36257 * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c: Move
36258 __makecontext_ret to ...
36259 * sysdeps/unix/sysv/linux/s390/s390-32/__makecontext_ret.S:
36260 ... here and call exit if uc_link is NULL. New file.
36261 * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Add
36262 __makecontext_ret.S.
36263 * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Move
36264 __makecontext_ret to ...
36265 * sysdeps/unix/sysv/linux/s390/s390-64/__makecontext_ret.S:
36266 ... here and call exit if uc_link is NULL. New file.
36267 * sysdeps/unix/sysv/linux/s390/s390-64/Makefile: Add
36268 __makecontext_ret.S.
36269
362702012-07-19 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
36271
36272 * elf/elf.h (R_390_IRELATIVE): New definition.
36273 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Invoke the
36274 resolver function for IFUNC symbols. Support R_390_IRELATIVE.
36275 (elf_machine_lazy_rel): Support R_390_IRELATIVE.
36276 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
36277 (elf_machine_lazy_rel): Likewise.
36278 * sysdeps/s390/dl-irel.h: New file.
36279 * sysdeps/s390/s390-64/memcpy.S: New asm code.
36280 * sysdeps/s390/s390-64/memset.S: New asm code.
36281 * sysdeps/s390/s390-64/memcmp.S: New asm code.
36282 * sysdeps/s390/s390-64/multiarch/memset.S: New file.
36283 * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: New file.
36284 * sysdeps/s390/s390-64/multiarch/memcmp.S: New file.
36285 * sysdeps/s390/s390-64/multiarch/memcpy.S: New file.
36286 * sysdeps/s390/s390-64/multiarch/Makefile: New file.
36287 * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: New file.
36288 * sysdeps/s390/s390-32/multiarch/Makefile: New file.
36289 * sysdeps/s390/s390-32/multiarch/memcmp.S: New file.
36290 * sysdeps/s390/s390-32/multiarch/memcpy.S: New file.
36291 * sysdeps/s390/s390-32/multiarch/memset.S: New file.
36292 * sysdeps/s390/s390-32/memcpy.S: New asm code.
36293 * sysdeps/s390/s390-32/memset.S: New asm code.
36294 * sysdeps/s390/s390-32/memcmp.S: New asm code.
36295
362962012-07-17 Marek Polacek <polacek@redhat.com>
36297
36298 [BZ #14349]
36299 * sysdeps/s390/s390-32/configure.in: Remove TLS check.
36300 * sysdeps/s390/s390-64/configure.in: Likewise.
36301 * sysdeps/sparc/configure.in: Likewise.
36302 * sysdeps/powerpc/powerpc32/configure.in: Likewise.
36303 * sysdeps/powerpc/powerpc64/configure.in: Likewise.
36304 * sysdeps/i386/configure.in: Likewise.
36305 * sysdeps/x86_64/configure.in: Likewise.
36306 * sysdeps/sh/configure.in: Likewise.
36307 * sysdeps/s390/s390-32/configure: Regenerated.
36308 * sysdeps/s390/s390-64/configure: Likewise.
36309 * sysdeps/x86_64/configure: Likewise.
36310 * sysdeps/sh/configure: Likewise.
36311 * sysdeps/powerpc/powerpc64/configure: Likewise.
36312 * sysdeps/powerpc/powerpc32/configure: Likewise.
36313 * sysdeps/sparc/configure: Likwise.
36314 * sysdeps/i386/configure: Likewise.
36315
36316 * elf/dl-open.c: Comment fixes.
36317
363182012-07-17 Joseph Myers <joseph@codesourcery.com>
36319
36320 * Makefile [CXX] (check-data): Remove.
36321 [CXX] (c++-types.data): New vpath directive.
36322 [CXX] ($(objpfx)c++-types-check.out): Use c++-types.data from
36323 vpath. Do not allow for C++ type data being missing.
36324 * scripts/data/c++-types-alpha-linux-gnu.data: Move to
36325 ports/sysdeps/unix/sysv/linux/alpha/nptl/c++-types.data.
36326 * scripts/data/c++-types-ia64-linux-gnu.data: Move to
36327 ports/sysdeps/unix/sysv/linux/ia64/nptl/c++-types.data.
36328 * scripts/data/c++-types-i386-linux-gnu.data: Move to ...
36329 * sysdeps/unix/sysv/linux/i386/nptl/c++-types.data: ... here.
36330 * scripts/data/c++-types-powerpc-linux-gnu.data: Move to ...
36331 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/c++-types.data:
36332 ... here.
36333 * scripts/data/c++-types-powerpc64-linux-gnu.data: Move to ...
36334 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/c++-types.data:
36335 ... here.
36336 * scripts/data/c++-types-s390-linux-gnu.data: Move to ...
36337 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/c++-types.data:
36338 ... here.
36339 * scripts/data/c++-types-s390x-linux-gnu.data: Move to ...
36340 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/c++-types.data:
36341 ... here.
36342 * scripts/data/c++-types-sparc-linux-gnu.data: Move to ...
36343 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/c++-types.data:
36344 ... here.
36345 * scripts/data/c++-types-sparc64-linux-gnu.data: Move to ...
36346 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/c++-types.data:
36347 ... here.
36348 * scripts/data/c++-types-x32-linux-gnu.data: Move to ...
36349 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/c++-types.data:
36350 ... here.
36351 * scripts/data/c++-types-x86_64-linux-gnu.data: Move to ...
36352 * sysdeps/unix/sysv/linux/x86_64/64/nptl/c++-types.data: ... here.
36353
36354 * elf/tls-macros.h (TLS_LE): Move architecture-specific
36355 definitions to architecture-specific files.
36356 (TLS_IE): Likewise.
36357 (TLS_LD): Likewise.
36358 (TLS_GD): Likewise.
36359 * sysdeps/i386/tls-macros.h: New file.
36360 * sysdeps/powerpc/tls-macros.h: Likewise.
36361 * sysdeps/s390/s390-32/tls-macros.h: Likewise.
36362 * sysdeps/s390/s390-64/tls-macros.h: Likewise.
36363 * sysdeps/sh/tls-macros.h: Likewise.
36364 * sysdeps/sparc/sparc32/tls-macros.h: Likewise.
36365 * sysdeps/sparc/sparc64/tls-macros.h: Likewise.
36366 * sysdeps/x86_64/tls-macros.h: Likewise.
36367
363682012-07-17 Thomas Schwinge <thomas@codesourcery.com>
36369
36370 * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Preserve
36371 zero value for regular exit case.
36372
36373 * sysdeps/unix/sysv/linux/x86_64/__start_context.S
36374 (__start_context): Preserve zero value for regular exit case.
36375
363762012-07-17 Thomas Schwinge <thomas@codesourcery.com>
36377 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
36378
36379 * manual/setjmp.texi (setcontext): Clarify normal process
36380 termination when uc_link is the null pointer.
36381 * stdlib/tst-makecontext.c (cf): Exercise this: remove explicit
36382 exit call.
36383
363842012-07-16 Andreas Schwab <schwab@linux-m68k.org>
36385
36386 * stdlib/bug-getcontext.c (do_test): Don't test FE_ALL_EXCEPT in
36387 preprocessor. Test for each exception mask separately.
36388
363892012-07-16 Andreas Jaeger <aj@suse.de>
36390
36391 * po/ru.po: Update from translation team.
36392
363932012-07-15 Joseph Myers <joseph@codesourcery.com>
36394
36395 * conform/data/string.h-data (NULL): Use macro-constant. Require
36396 equal to 0.
36397 [ISO || ISO99 || ISO11] (stddef.h): Do not allow header.
36398 (str*): Change to str[abcdefghijklmnopqrstuvwxyz]*.
36399 (wcs*): Change to wcs[abcdefghijklmnopqrstuvwxyz]*.
36400 (mem[abcdefghijklmnopqrstuvwxyz]*): Allow.
36401 [ISO || ISO99 || ISO11] (*_t): Do not allow.
36402
364032012-07-13 Andreas Jaeger <aj@suse.de>
36404
36405 * po/fr.po: Update from translation team.
36406
364072012-07-12 Marek Polacek <polacek@redhat.com>
36408
36409 [BZ #14173]
36410 * math/libm-test.inc (yn_test): Add test for BZ #14173.
36411 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Correct
36412 loop condition.
36413
364142012-07-12 Joseph Myers <joseph@codesourcery.com>
36415
36416 [BZ #13717]
36417 * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
36418 Change to 2.4.1 where previously 2.4.0.
36419 * sysdeps/unix/sysv/linux/configure: Regenerated.
36420 * sysdeps/unix/sysv/linux/kernel-features.h [!__sh__]
36421 (__ASSUME_ST_INO_64_BIT): Do not condition definition on kernel
36422 version.
36423 [__i386__ || __sparc__] (__ASSUME_FCNTL64): Likewise.
36424 (__ASSUME_AT_CLKTCK): Remove.
36425 (__ASSUME_AT_PAGESIZE): Likewise.
36426 (__ASSUME_AT_XID): Likewise.
36427 (__ASSUME_GETDENTS64_SYSCALL): Define unconditionally.
36428 [__i386__] (__ASSUME_VFORK_SYSCALL): Define unconditionally.
36429 * sysdeps/unix/sysv/linux/ldsodefs.h (HAVE_AUX_XID): Define
36430 unconditionally.
36431 (HAVE_AUX_PAGESIZE): Likewise.
36432 * sysdeps/unix/sysv/linux/prof-freq.c (__profile_frequency)
36433 [__ASSUME_AT_CLKTCK]: Make code unconditional.
36434 [!__ASSUME_AT_CLKTCK]: Remove conditional code.
36435
364362012-07-12 Jeroen van Bemmel <jvb127@gmail.com>
36437
36438 [BZ #14307]
36439 * sysdeps/posix/getaddrinfo.c (gaih_inet): Increase the size of
36440 the temporary buffer used to invoke __gethostbyname2_r,
36441 __gethostbyaddr_r and gethostbyname4_r to make room for struct
36442 host_data / struct gaih_addrtuple.
36443 * resolv/nss_dns/dns-host.c (global scope): Move definition of
36444 implementation constants MAX_NR_ALIASES and MAX_NR_ADDRS to
36445 header file nss/nsswitch.h.
36446 * nss/nsswitch.h (global scope): Add definition of implementation
36447 constants MAX_NR_ALIASES and MAX_NR_ADDRS (moved from
36448 resolv/nss_dns/dns-host.c).
36449
364502012-07-11 Andreas Jaeger <aj@suse.de>
36451
36452 * po/fr.po: Update from translation team.
36453
36454 * po/sv.po: Update from translation team
36455 * po/fr.po: Another update from translation team.
36456
364572012-07-11 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
36458
36459 * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c: Do not call sinh and cosh
36460 for subnormals or multiply small sinh result by itself.
36461 * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c: Likewise.
36462 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
36463
364642012-07-11 David S. Miller <davem@davemloft.net>
36465
36466 * sysdeps/sparc/fpu/libm-test-ulps: Update.
36467
364682012-07-10 Andreas Schwab <schwab@linux-m68k.org>
36469
36470 [BZ #14347]
36471 * misc/sys/syslog.h (LOG_MAKEPRI): Don't shift first argument.
36472 (INTERNAL_MARK): Shift it here.
36473
364742012-07-10 Marek Polacek <polacek@redhat.com>
36475
36476 [BZ #14151]
36477 * configure.in (libc_cv_asm_global_directive): Remove test. Replace
36478 libc_cv_asm_global_directive with .globl.
36479 * configure: Regenerated.
36480 * sysdeps/i386/configure.in: Replace libc_cv_asm_global_directive
36481 with .globl.
36482 * sysdeps/i386/configure: Regenerated.
36483 * sysdeps/x86_64/configure.in: Replace libc_cv_asm_global_directive
36484 with .globl.
36485 * sysdeps/x86_64/configure: Regenerated.
36486 * config.h.in: Do not undefine ASM_GLOBAL_DIRECTIVE.
36487 * include/libc-symbols.h: Replace ASM_GLOBAL_DIRECTIVE with .globl.
36488 * elf/tst-unique2mod2.c: Likewise.
36489 * elf/tst-unique2mod1.c: Likewise.
36490 * elf/tst-unique1mod2.c: Likewise.
36491 * elf/tst-unique1mod1.c: Likewise.
36492 * sysdeps/s390/s390-32/sysdep.h: Likewise.
36493 * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
36494 * sysdeps/s390/s390-64/sysdep.h: Likewise.
36495 * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
36496 * sysdeps/mach/sysdep.h: Likewise.
36497 * sysdeps/i386/sysdep.h: Likewise.
36498 * sysdeps/i386/i386-mcount.S: Likewise.
36499 * sysdeps/x86_64/_mcount.S: Likewise.
36500 * sysdeps/x86_64/sysdep.h: Likewise.
36501 * sysdeps/sh/_mcount.S: Likewise.
36502 * sysdeps/sh/sysdep.h: Likewise.
36503 * sysdeps/powerpc/powerpc32/gprsave1.S: Likewise.
36504 * sysdeps/powerpc/powerpc32/fpu/fprrest.S: Likewise.
36505 * sysdeps/powerpc/powerpc32/fpu/fprsave.S: Likewise.
36506 * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
36507 * sysdeps/powerpc/powerpc32/gprrest1.S: Likewise.
36508 * sysdeps/powerpc/powerpc32/gprsave0.S: Likewise.
36509 * sysdeps/powerpc/powerpc32/gprrest0.S: Likewise.
36510 * locale/localeinfo.h: Likewise.
36511 (_NL_CURRENT_DEFINE_STRINGIFY): Delete macro.
36512 (_NL_CURRENT_DEFINE_STRINGIFY_1): Likewise.
36513
365142012-07-09 Roland McGrath <roland@hack.frob.com>
36515
36516 [BZ #14336]
36517 * manual/charset.texi (Extended Char Intro): Word use fix, "operating
36518 system".
36519 * manual/message.texi (The Uniforum approach): Likewise.
36520 * manual/charset.texi (Extended Char Intro): Spelling fix, "affected".
36521 (glibc iconv Implementation): Likewise.
36522
365232012-07-09 Joseph Myers <joseph@codesourcery.com>
36524
36525 [BZ #14337]
36526 * math/s_clog.c (__clog): Avoid scaling a value down where that
36527 could result in underflow.
36528 * math/s_clog10.c (__clog10): Likewise.
36529 * math/s_clog10f.c (__clog10f): Likewise.
36530 * math/s_clog10l.c (__clog10l): Likewise.
36531 * math/s_clogf.c (__clogf): Likewise.
36532 * math/s_clogl.c (__clogl): Likewise.
36533 * math/libm-test.inc (clog_test): Add more tests.
36534 (clog10_test): Likewise.
36535 * sysdeps/i386/fpu/libm-test-ulps: Update.
36536 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
36537
365382012-07-06 Andreas Schwab <schwab@linux-m68k.org>
36539
36540 [BZ #14283]
36541 * sysdeps/powerpc/fpu/k_rem_pio2f.c (__fp_kernel_rem_pio2f): Shift
36542 by 7 not 8 to examine high bit of fractional part.
36543
36544 [BZ #14042]
36545 * sysdeps/powerpc/powerpc32/ppc-mcount.S [SHARED]: Don't use PLT
36546 for call to __mcount_internal.
36547 * sysdeps/powerpc/powerpc32/Makefile (sysdep_routines)
36548 (shared-only-routines) [$(subdir) = gmon]: Add compat-ppc-mcount.
36549 * sysdeps/powerpc/powerpc32/compat-ppc-mcount.S: New file.
36550
365512012-07-06 Joseph Myers <joseph@codesourcery.com>
36552
36553 [BZ #14154]
36554 * sysdeps/ieee754/flt-32/k_tanf.c (__kernel_tanf): Use linear
36555 approximation for values within 0x1p-13f of an odd multiple of
36556 pi/4.
36557 * math/libm-test.inc (tan_test): Do not allow spurious underflow
36558 exception. Add more tests.
36559 * sysdeps/i386/fpu/libm-test-ulps: Update.
36560
36561 [BZ #6778]
36562 * sysdeps/i386/fpu/s_expm1.S (__expm1): Check for large negative
36563 inputs and return -1 for them. Do not check for +Inf in case not
36564 reachable for +Inf.
36565 * sysdeps/i386/fpu/s_expm1f.S (__expm1f): Likewise.
36566 * sysdeps/i386/fpu/e_expl.S [USE_AS_EXPM1L] (csat): Do not define.
36567 (IEEE754_EXPL) [USE_AS_EXPM1L]: Check for large negative inputs
36568 and return -1 for them. Do not check for +Inf in case not
36569 reachable for +Inf.
36570 * sysdeps/x86_64/fpu/e_expl.S [USE_AS_EXPM1L] (csat): Do not
36571 define.
36572 (IEEE754_EXPL) [USE_AS_EXPM1L]: Check for large negative inputs
36573 and return -1 for them. Do not check for +Inf in case not
36574 reachable for +Inf.
36575 * math/libm-test.inc (expm1_test): Add more tests. Do not allow
36576 spurious underflow.
36577 * sysdeps/i386/fpu/libm-test-ulps: Update.
36578 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
36579
365802012-07-06 Mike Frysinger <vapier@gentoo.org>
36581
36582 * sunrpc/rpc_clntout.c: Change <rpc/types.h> to "rpc/types.h".
36583
365842012-07-05 Joseph Myers <joseph@codesourcery.com>
36585
36586 [BZ #14157]
36587 [BZ #14331]
36588 * math/s_csqrt.c (__csqrt): Avoid multiplying by 0.5 where this
36589 could result in spurious underflow. Scale down values above
36590 DBL_MAX / 4.0 instead of DBL_MAX / 2.0.
36591 * math/s_csqrtf.c (__csqrtf): Likewise.
36592 * math/s_csqrtl.c (__csqrtl): Likewise.
36593 * math/libm-test.inc (csqrt_test): Add more tests. Do not allow
36594 spurious underflow.
36595 * sysdeps/i386/fpu/libm-test-ulps: Update.
36596 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
36597
365982012-07-04 Andreas Schwab <schwab@linux-m68k.org>
36599
36600 * catgets/Makefile ($(objpfx)de.msg): Use xopen-msg.awk instead of
36601 xopen-msg.sed.
36602 * catgets/xopen-msg.awk: New file.
36603 * catgets/xopen-msg.sed: Removed.
36604
36605 * intl/Makefile ($(objpfx)msgs.h): Use po2test.awk instead of
36606 po2text.sed.
36607 * intl/po2test.awk: New file.
36608 * intl/po2test.sed: Removed.
36609
366102012-07-04 Joseph Myers <joseph@codesourcery.com>
36611
36612 [BZ #14328]
36613 * math/s_ctan.c (__ctan): Do not call sinh and cosh for subnormals
36614 or multiply small sinh result by itself.
36615 * math/s_ctanf.c (__ctanf): Likewise.
36616 * math/s_ctanh.c (__ctanh): Likewise.
36617 * math/s_ctanhf.c (__ctanhf): Likewise.
36618 * math/s_ctanhl.c (__ctanhl): Likewise.
36619 * math/s_ctanl.c (__ctanl): Likewise.
36620 * math/libm-test.inc (ctan_test_tonearest): New function.
36621 (ctan_test_towardzero): Likewise.
36622 (ctan_test_downward): Likewise.
36623 (ctan_test_upward): Likewise.
36624 (ctanh_test_tonearest): Likewise.
36625 (ctanh_test_towardzero): Likewise.
36626 (ctanh_test_downward): Likewise.
36627 (ctanh_test_upward): Likewise.
36628 (main): Call these new functions.
36629 * sysdeps/i386/fpu/libm-test-ulps: Update.
36630 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
36631
366322012-07-03 Mike Frysinger <vapier@gentoo.org>
36633
36634 * .gitignore: Delete /ports entry.
36635
366362012-07-03 Andreas Jaeger <aj@suse.de>
36637
36638 * po/bg.po: Update from translation team.
36639 * po/cs.po: Likewise.
36640 * po/de.po: Likewise.
36641 * po/hr.po: Likewise.
36642 * po/nl.pl: Likewise.
36643 * po/pl.po: Likewise.
36644 * po/vi.po: Likewise.
36645
366462012-07-03 Joseph Myers <joseph@codesourcery.com>
36647
36648 * Makeconfig [!+link] (+link-before-libc): New variable.
36649 [!+link] (+link-after-libc): Likewise.
36650 [!+link] (+link-tests): Likewise.
36651 [!+link] (+link): Define in terms of $(+link-before-libc) and
36652 $(+link-after-libc).
36653 [!+link-static] (+link-static-before-libc): New variable.
36654 [!+link-static] (+link-static-after-libc): Likewise.
36655 [!+link-static] (+link-static-tests): Likewise.
36656 [!+link-static] (+link-static): Define in terms of
36657 $(+link-static-before-libc) and $(+link-static-after-libc).
36658 [build-shared] (link-libc-before-gnulib): New variable.
36659 [build-shared] (link-libc-tests): Likewise.
36660 [build-shared] (link-libc): Define in terms of
36661 $(link-libc-before-gnulib).
36662 [!build-shared] (link-libc-tests): New variable.
36663 (link-libc-static-tests): New variable.
36664 [!gnulib] (gnulib-arch): New variable.
36665 [!gnulib] (gnulib-tests): Likewise.
36666 [!gnulib] (static-gnulib-arch): Likewise.
36667 [!gnulib] (static-gnulib-tests): Likewise.
36668 [!gnulib] (gnulib): Use $(gnulib-arch). Do not use $(libgcc_eh).
36669 Define with "=" instead of ":=".
36670 [!gnulib] (static-gnulib): Use $(static-gnulib-arch). Do not use
36671 -lgcc_eh $(libunwind). Define with "=" instead of ":=".
36672 * Rules (binaries-all-notests): New variable.
36673 (binaries-all-tests): Likewise.
36674 (binaries-static-notests): Likewise.
36675 (binaries-static-tests): Likewise.
36676 (binaries-all): Define using $(binaries-all-notests) and
36677 $(binaries-all-tests).
36678 (binaries-static): Define using $(binaries-static-notests) and
36679 $(binaries-static-tests).
36680 (binaries-shared-tests): New variable.
36681 (binaries-shared-notests): Likewise.
36682 (binaries-shared): Remove variable.
36683 ($(addprefix $(objpfx),$(binaries-shared-notests))): New rule.
36684 ($(addprefix $(objpfx),$(binaries-shared-tests))): Likewise.
36685 ($(addprefix $(objpfx),$(binaries-shared))): Remove rule.
36686 ($(addprefix $(objpfx),$(binaries-static-notests))): New rule.
36687 ($(addprefix $(objpfx),$(binaries-static-tests))): Likewise.
36688 ($(addprefix $(objpfx),$(binaries-static))): Remove rule.
36689 * elf/Makefile (sln-modules): New variable.
36690 (extra-objs): Add $(sln-modules:=.o).
36691 (ldconfig-modules): Add static-stubs.
36692 ($(objpfx)sln): Depend on $(sln-modules:%=$(objpfx)%.o).
36693 * elf/static-stubs.c: New file.
36694
36695 [BZ #14283]
36696 * sysdeps/ieee754/flt-32/k_rem_pio2f.c (__kernel_rem_pio2f): Shift
36697 by 7 not 8 to examine high bit of fractional part. Use volatile
36698 variables when splitting into final array of floats if
36699 __FLT_EVAL_METHOD__ != 0.
36700 * math/libm-test.inc (cos_test): Add another test.
36701 (sin_test): Likewise.
36702 * sysdeps/i386/fpu/libm-test-ulps: Update.
36703
36704 [BZ #14273]
36705 * math/libm-test.inc (cosh_test): Add more tests.
36706
36707 * version.h (RELEASE): Set to "development".
36708 (VERSION): Set to "2.16.90".
36709
367102012-06-30 Carlos O'Donell <carlos_odonell@mentor.com>
36711
36712 * NEWS: Update copyright. Remove last-updated date.
36713 Mention math library bug fixes and timezone data changes.
36714 * README: Mention GNU/Hurd, x32, and HPPA support status.
36715
367162012-06-28 Thomas Schwinge <thomas@codesourcery.com>
36717
36718 * manual/contrib.texi (Contributors): Sort alphabetically by last name.
36719
367202012-06-27 Andreas Jaeger <aj@suse.de>
36721
36722 * manual/contrib.texi (Contributors): Add Samuel Thibault.
36723
367242012-06-25 Andreas Jaeger <aj@suse.de>
36725
36726 * sysdeps/s390/fpu/libm-test-ulps: Update.
36727
367282012-06-23 Andreas Schwab <schwab@linux-m68k.org>
36729 Thomas Schwinge <thomas@codesourcery.com>
36730
36731 * sysdeps/unix/sysv/linux/sh/syscalls.list: Add fanotify_mark.
36732 * sysdeps/unix/sysv/linux/sh/Versions (GLIBC_2.16): Add fanotify_mark.
36733 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist (GLIBC_2.16): Add
36734 fanotify_mark.
36735
367362012-06-23 Thomas Schwinge <thomas@codesourcery.com>
36737
36738 * sysdeps/mach/start.c: Remove file.
36739 * sysdeps/mach/hurd/i386/static-start.S: Fix start.S include.
36740 * sysdeps/i386/init-first.c: Fix comment regarding start.S.
36741 * sysdeps/sh/init-first.c: Likewise.
36742
36743 * sysdeps/sh/____longjmp_chk.S (CALL_FAIL): Preserve r12 and pr
36744 registers for frame unwinding purposes, add CFI directives.
36745 * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S (CALL_FAIL): Likewise.
36746 * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Likewise
36747 * sysdeps/unix/sysv/linux/sh/sysdep.h (SYSCALL_ERROR_HANDLER):
36748 Likewise.
36749
36750 * sysdeps/sh/____longjmp_chk.S (CALL_FAIL): Don't plan for the call to
36751 __fortify_fail returning.
36752 * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S (CALL_FAIL): Likewise.
36753
36754 * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S: New file, based on
36755 sysdeps/sh/____longjmp_chk.S.
36756 * sysdeps/unix/sysv/linux/sh/sigaltstack-offsets.sym: New file, based
36757 on sysdeps/unix/sysv/linux/x86_64/sigaltstack-offsets.sym.
36758 * sysdeps/unix/sysv/linux/sh/Makefile [subdir=misc]
36759 (gen-as-const-headers): Append sigaltstack-offsets.sym.
36760
36761 * sysdeps/sh/abort-instr.h: New file.
36762 * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Terminate the
36763 process in case exit returns.
36764
36765 * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Always
36766 initialize the GOT register before use.
36767
36768 * sysdeps/unix/sysv/linux/sh/makecontext.S (__makecontext): Fix
36769 calculation of ARGC > 4.
36770
36771 * sysdeps/unix/sysv/linux/sh/makecontext.S: Add comments and give more
36772 meaningful names to some local labels.
36773
367742012-06-22 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
36775 Kaz Kojima <kkojima@rr.iij4u.or.jp>
36776
36777 * sysdeps/unix/sysv/linux/sh/bits/atomic.h
36778 (__arch_compare_and_exchange_val_8_acq): Remove explicit nop.
36779 (__arch_compare_and_exchange_val_16_acq): Likewise.
36780 (__arch_compare_and_exchange_val_32_acq): Likewise.
36781 (atomic_exchange_and_add): Fix gUSA sequence.
36782 (atomic_add): Likewise.
36783 (atomic_add_negative): Likewise.
36784 (atomic_add_zero): Likewise.
36785 (atomic_bit_test_set): Likewise.
36786
367872012-06-22 Andreas Schwab <schwab@redhat.com>
36788
36789 [BZ #13579]
36790 * include/link.h (struct link_map): Add l_free_initfini.
36791 * elf/dl-deps.c (_dl_map_object_deps): Set it when assigning
36792 l_initfini.
36793 * elf/dl-close.c (_dl_close_worker): Don't free l_initfini.
36794 * elf/rtld.c (dl_main): Clear it on all objects loaded on startup.
36795 * elf/dl-libc.c (free_mem): Free l_initfini if l_free_initfini is
36796 set.
36797
367982012-06-22 Carlos O'Donell <carlos_odonell@mentor.com>
36799
36800 * configure.in: Use AC_LANG_SOURCE.
36801 * configure: Regenerate.
36802
368032012-06-22 Roland McGrath <roland@hack.frob.com>
36804
36805 * configure.in (libc_cv_localstatedir): New substituted variable.
36806 * configure: Regenerated.
36807 * config.make.in (localstatedir): New variable, substituted from
36808 libc_cv_localstatedir.
36809 * Makeconfig (vardbdir): Use $(localstatedir) in place of /var.
36810 * sysdeps/gnu/configure.in (libc_cv_localstatedir): Change
36811 ${prefix}/var to /var when we change ${prefix}/etc to /etc.
36812 * sysdeps/gnu/configure: Regenerated.
36813
368142012-06-21 Jeff Law <law@redhat.com>
36815
36816 [BZ #14277]
36817 * intl/dcigettext.c (_nl_find_msg): Avoid use after potential
36818 free. Simplify list management for _LIBC case.
36819
368202012-06-21 Joseph Myers <joseph@codesourcery.com>
36821
36822 [BZ #14273]
36823 * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c (__ieee754_cosh):
36824 Clear sign bit of 64-bit integer value before comparing against
36825 overflow value.
36826
36827 * sysdeps/mach/configure: Regenerated.
36828
368292012-06-21 H.J. Lu <hongjiu.lu@intel.com>
36830
36831 [BZ #14278]
36832 * sysdeps/i386/sysdep.h (SYSCALL_PIC_SETUP): Fix a typo.
36833
368342012-06-21 Jeff Law <law@redhat.com>
36835
36836 [BZ #13882]
36837 * elf/dl-deps.c (_dl_map_object_deps): Fix cycle detection. Use
36838 uint16_t for elements in the "seen" array to avoid char overflows.
36839 * elf/dl-fini.c (_dl_sort_fini): Likewise.
36840 * elf/dl-open.c (dl_open_worker): Likewise.
36841
368422012-06-21 Carlos O'Donell <carlos_odonell@mentor.com>
36843
36844 * scripts/list-sources.sh: Scan PORTS for translations.
36845 * po/libc.pot: Regenerated.
36846
368472012-06-21 Andreas Jaeger <aj@suse.de>
36848
36849 [BZ #12194]
36850 * sysdeps/s390/bits/byteswap-16.h (__bswap_16): Avoid -Wconversion
36851 warning.
36852 * sysdeps/s390/bits/byteswap.h (__bswap_constant_16): Likewise.
36853 * bits/byteswap-16.h (__bswap_16): Likewise.
36854 * bits/byteswap.h (__bswap_constant_16): Likewise.
36855
368562012-06-18 H.J. Lu <hongjiu.lu@intel.com>
36857
36858 [BZ #14117]
36859 * sysdeps/i386/fpu_control.h: Removed.
36860 * sysdeps/x86_64/fpu_control.h: Moved to ...
36861 * sysdeps/x86/fpu_control.h: Here.
36862
36863 * sysdeps/x86_64/fpu_control.h (_FPU_GETCW): Add __volatile__.
36864 (_FPU_SETCW): Likewise.
36865
368662012-06-15 H.J. Lu <hongjiu.lu@intel.com>
36867
36868 [BZ #14117]
36869 * sysdeps/i386/fpu/bits/mathinline.h: Renamed to ...
36870 * sysdeps/x86/fpu/bits/mathinline.h: This.
36871 * sysdeps/x86_64/fpu/bits/mathinline.h: Removed.
36872
36873 [BZ #14050]
36874 [BZ #14117]
36875 * sysdeps/i386/fpu/bits/mathinline.h: Disable x87 inline
36876 functions if __x86_64__ is defined.
36877
368782012-06-15 Chung-Lin Tang <cltang@codesourcery.com>
36879
36880 * string/endian.h: Add !__ASSEMBLER__ condition for including
36881 conversion interfaces.
36882
368832012-06-15 Joseph Myers <joseph@codesourcery.com>
36884
36885 [BZ #14241]
36886 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Use 0.0 instead
36887 of ABS(x) in calculating zero to negative powers other than odd
36888 integers.
36889 * math/libm-test.inc (pow_test): Add more tests.
36890
368912012-06-15 Andreas Jaeger <aj@suse.de>
36892
36893 * manual/contrib.texi (Contributors): Update entry of Liubov
36894 Dmitrieva and add entries for Will Schmidt and Tulio Magno Quites
36895 Machado Filho.
36896
368972012-06-15 Cyril Hrubis <metan@ucw.cz>
36898
36899 * string/string.h: Add __wur to GNU version of strerror_r.
36900
369012012-06-14 H.J. Lu <hongjiu.lu@intel.com>
36902
36903 [BZ #14229]
36904 * string/Makefile (tests): Add tst-strtok_r.
36905 * string/tst-strtok_r.c: New file.
36906 * sysdeps/x86_64/strtok.S: Use LP_SIZE on save_ptr and use
36907 RAX_LP/RDX_LP on SAVE_PTR.
36908
369092012-06-14 Roland McGrath <roland@hack.frob.com>
36910
36911 * manual/Makefile ($(objpfx)texis): Do $(make-target-directory).
36912
369132012-06-14 Joseph Myers <joseph@codesourcery.com>
36914
36915 * libm_test.inc (csqrt_test): Allow more spurious underflow
36916 exceptions.
36917 (j0_test): Likewise.
36918 (j1_test): Likewise.
36919 (y0_test): Likewise.
36920 (y1_test): Likewise.
36921
369222012-06-13 Carlos O'Donell <carlos_odonell@mentor.com>
36923
36924 * po/Makefile (libc.pot): Use UTF-8 charset.
36925
369262012-06-13 Paul Pluzhnikov <ppluzhnikov@google.com>
36927
36928 [BZ #14210]
36929 Suppress sign-conversion warning from FD_SET.
36930 See <http://sourceware.org/ml/libc-alpha/2012-05/msg01794.html>.
36931 * debug/fdelt_chk.c (__fdelt_chk): Accept and return long int,
36932 not unsigned long int.
36933 * misc/bits/select2.h (__fdelt_chk, __fdelt_warn, __FD_ELT): Likewise.
36934
369352012-06-12 H.J. Lu <hongjiu.lu@intel.com>
36936
36937 [BZ #14050]
36938 [BZ #14117]
36939 * sysdeps/i386/fpu/bits/mathinline.h (__MATH_INLINE): Check
36940 __extern_always_inline instead of __extern_inline.
36941 (__signbitf): Support __SSE2_MATH__ and C++ namespace.
36942 (__signbit): Likewise.
36943 (__signbitl): Support C++ namespace.
36944 (lrintf): New inline function.
36945 (lrint): Likewise.
36946 (llrintf): Likewise.
36947 (llrint): Likewise.
36948 (fmaxf): Likewise.
36949 (fmax): Likewise.
36950 (fminf): Likewise.
36951 (fmin): Likewise.
36952 (rint): Likewise.
36953 (rintf): Likewise.
36954 (ceil): Likewise.
36955 (ceilf): Likewise.
36956 (floor): Likewise.
36957 (floorf): Likewise.
36958 (nearbyint): Likewise.
36959 (nearbyintf): Likewise.
36960
369612012-06-12 Thomas Schwinge <thomas@codesourcery.com>
36962
36963 * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Fix case for
36964 non-default versions.
36965
369662012-06-11 Roland McGrath <roland@hack.frob.com>
36967
36968 [BZ #14218]
36969 * manual/argp.texi (Argp): Reword argp_parse description slightly.
36970
369712012-06-09 Thomas Schwinge <thomas@codesourcery.com>
36972
36973 * sysdeps/sh/sh4/fpu/bits/fenv.h (__FE_UNDEFINED): Define.
36974 (FE_UPWARD, FE_DOWNWARD): Don't define.
36975 * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Adapt to that.
36976 * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
36977
36978 * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Do not re-write fpscr after
36979 reading it.
36980 * sysdeps/sh/sh4/fpu/fegetexcept.c (fegetexcept): Likewise.
36981 * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
36982
369832012-06-09 Kaz Kojima <kkojima@rr.iij4u.or.jp>
36984
36985 * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
36986 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Refreshed.
36987 * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: Refreshed.
36988 * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: Refreshed.
36989
369902012-06-06 H.J. Lu <hongjiu.lu@intel.com>
36991
36992 [BZ #14117]
36993 * sysdeps/i386/fpu/bits/fenv.h: Removed.
36994 * sysdeps/i386/fpu/Implies: New file.
36995 * sysdeps/x86_64/fpu/Implies: Likewise.
36996 * sysdeps/x86_64/fpu/bits/fenv.h: Renamed to ...
36997 * sysdeps/x86/fpu/bits/fenv.h: This.
36998
36999 * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Check
37000 __SSE_MATH__.
37001
370022012-06-06 Siddhesh Poyarekar <siddhesh@redhat.com>
37003
37004 [BZ #14134]
37005 * iconvdata/ibm930.c (BODY) [FROM_LOOP]: Check for invalid
37006 character 0xffff that matches the last element of the
37007 conversion table.
37008
370092012-06-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
37010
37011 * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Fix for wrong ldbl128-ibm
37012 fmodl commit.
37013
370142012-06-05 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
37015
37016 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Fix spurious underflow for
37017 values higher than 25.6283.
37018
370192012-06-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
37020
37021 * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Fix
37022 subnormal exponent extraction and add some __builtin_expect.
37023 * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_extract_mantissa):
37024 Fix for subnormal mantissa calculation.
37025
370262012-06-04 Mike Frysinger <vapier@gentoo.org>
37027
37028 * sysdeps/unix/sysv/linux/tst-getcpu.c (do_test): Call perror when
37029 cpu2 is -1 and errno is not ENOSYS.
37030
370312012-06-04 H.J. Lu <hongjiu.lu@intel.com>
37032
37033 [BZ #14117]
37034 * sysdeps/i386/i486/bits/string.h: Renamed to ...
37035 * sysdeps/x86/bits/string.h: This.
37036 * sysdeps/x86_64/bits/string.h: Removed.
37037
37038 * sysdeps/i386/i486/bits/string.h: Define inline functions only
37039 if not compiling for x86-64, but compiling for >= i486.
37040
37041 * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: Renamed to ...
37042 * sysdeps/unix/sysv/linux/x86/bits/sigcontext.h: This.
37043
37044 * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (FP_XSTATE_MAGIC1):
37045 New macro from Linux kernel 3.4.0.
37046 (FP_XSTATE_MAGIC2): Likewise.
37047 (FP_XSTATE_MAGIC2_SIZE): Likewise.
37048 (X86_FXSR_MAGIC): New macro from Linux i386 kernel.
37049 (struct _fpx_sw_bytes): New struct.
37050 (struct _xsave_hdr): Likewise.
37051 (struct _ymmh_state): Likewise.
37052 (struct _xstate): Likewise.
37053
37054 * sysdeps/unix/sysv/linux/i386/sys/debugreg.h: Removed.
37055 * sysdeps/unix/sysv/linux/i386/sys/reg.h: Likewise.
37056 * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Renamed to ...
37057 * sysdeps/unix/sysv/linux/x86/sys/debugreg.h: This.
37058 * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Renamed to ...
37059 * sysdeps/unix/sysv/linux/x86/sys/reg.h: This.
37060
37061 * sysdeps/unix/sysv/linux/i386/sys/io.h: Removed.
37062 * sysdeps/unix/sysv/linux/x86_64/sys/io.h: Renamed to ...
37063 * sysdeps/unix/sysv/linux/x86/sys/io.h: This.
37064 * sysdeps/unix/sysv/linux/i386/sys/perm.h: Removed.
37065 * sysdeps/unix/sysv/linux/x86_64/sys/perm.h: Renamed to ...
37066 * sysdeps/unix/sysv/linux/x86/sys/perm.h: This.
37067
370682012-06-04 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
37069
37070 [BZ #13743]
37071 * sysdeps/powerpc/sys/platform/ppc.h: New file for PowerPC features.
37072 * sysdeps/powerpc/Makefile (tests): Add test-gettimebase.
37073 (sysdep_headers): Include sys/platform/ppc.h.
37074 * sysdeps/powerpc/test-gettimebase.c: Test for
37075 __ppc_get_timebase() to catch future ISA opcode/insn changes.
37076 * manual/Makefile (appendices): Include platform.texi.
37077 * manual/contrib.texi (Contributors): Update @node pointers.
37078 * manual/maint.texi (Maintenance): Likewise.
37079 (Platform): New node.
37080 * manual/platform.texi: New file. Document the new features.
37081
370822012-06-04 Siddhesh Poyarekar <siddhesh@redhat.com>
37083 Jakub Jelinek <jakub@redhat.com>
37084
37085 [BZ #14188]
37086 * misc/sys/cdefs.h (__glibc_unlikely): New macro to wrap cases
37087 where __builtin_expect is unavailable.
37088
370892012-06-03 David S. Miller <davem@davemloft.net>
37090
37091 * stdlib/longlong.h: Updated from GCC.
37092
370932012-06-02 Andreas Schwab <schwab@linux-m68k.org>
37094
37095 [BZ #14042]
37096 * sysdeps/powerpc/powerpc32/mcount.c: New file.
37097 * sysdeps/powerpc/powerpc32/Versions (GLIBC_2.16): Add
37098 __mcount_internal.
37099 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist
37100 (GLIBC_2.16): Likewise.
37101
371022012-06-01 H.J. Lu <hongjiu.lu@intel.com>
37103
37104 * sysdeps/unix/sysv/linux/x86_64/sys/io.h (outsw): Fix a typo.
37105
371062012-06-01 Joseph Myers <joseph@codesourcery.com>
37107
37108 * sysdeps/unix/sysv/linux/powerpc/powerpc32/Makefile
37109 (default-abi): New variable.
37110 * sysdeps/unix/sysv/linux/powerpc/powerpc64/Makefile: New file.
37111 * sysdeps/unix/sysv/linux/s390/s390-32/Makefile (default-abi): New
37112 variable.
37113 * sysdeps/unix/sysv/linux/s390/s390-64/Makefile (default-abi):
37114 Likewise.
37115 * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile (default-abi):
37116 Likewise.
37117 * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile (default-abi):
37118 Likewise.
37119
37120 * Makeconfig [abi-variants && !default-abi] (default-abi): Remove
37121 definition. Document in comment.
37122
371232012-06-01 David S. Miller <davem@davemloft.net>
37124
37125 * stdlib/longlong.h: Updated from GCC.
37126
371272012-06-01 H.J. Lu <hongjiu.lu@intel.com>
37128
37129 [BZ #14117]
37130 * sysdeps/unix/sysv/linux/i386/Makefile (sysdep_headers):
37131 Don't add sys/elf.h sys/perm.h sys/reg.h sys/vm86.h
37132 sys/debugreg.h sys/io.h here.
37133 * sysdeps/unix/sysv/linux/x86/Makefile (sysdep_headers): Add
37134 sys/elf.h sys/perm.h sys/reg.h sys/vm86.h sys/debugreg.h
37135 sys/io.h.
37136 * sysdeps/unix/sysv/linux/x86_64/Makefile (sysdep_headers):
37137 Don't add sys/perm.h sys/reg.h sys/debugreg.h sys/io.h here.
37138 * sysdeps/unix/sysv/linux/i386/sys/elf.h: Renamed to ...
37139 * sysdeps/unix/sysv/linux/x86/sys/elf.h: This.
37140 * sysdeps/unix/sysv/linux/i386/sys/vm86.h: Renamed to ...
37141 * sysdeps/unix/sysv/linux/x86/sys/vm86.h: This.
37142
37143 * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h (DR_LEN_8):
37144 Define only if __x86_64__ is defined.
37145
371462012-06-01 Joseph Myers <joseph@codesourcery.com>
37147
37148 [BZ #14048]
37149 * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c (__ieee754_fmod):
37150 Use int64_t for variable i.
37151 * math/libm-test.inc (fmod_test): Add more tests.
37152
37153 * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Ensure temp + (double)
37154 z computation is not scheduled after fetestexcept.
37155 * sysdeps/ieee754/ldbl-128/s_fmal.c: Include <math_private.h>.
37156 Use math_force_eval instead of asm to ensure calculation scheduled
37157 before exception test.
37158 * sysdeps/ieee754/ldbl-96/s_fmal.c: Include <math_private.h>.
37159 Ensure a1 + u.d computation is not scheduled after fetestexcept.
37160
371612012-06-01 Aurelien Jarno <aurelien@aurel32.net>
37162
37163 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Ensure a1 + u.d
37164 computation is not scheduled after fetestexcept.
37165
371662012-06-01 H.J. Lu <hongjiu.lu@intel.com>
37167
37168 [BZ #14117]
37169 * sysdeps/unix/sysv/linux/i386/bits/wchar.h: Renamed to ...
37170 * sysdeps/unix/sysv/linux/x86/bits/wchar.h: This.
37171
371722012-06-01 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
37173
37174 * sysdeps/powerpc/fpu/k_cosf.c: Fix underflow generation.
37175 * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
37176
371772012-05-31 H.J. Lu <hongjiu.lu@intel.com>
37178
37179 [BZ #14117]
37180 * sysdeps/unix/sysv/linux/i386/bits/wchar.h: Include
37181 <bits/wordsize.h>.
37182 (__WCHAR_MIN): Support __WORDSIZE == 64.
37183 (__WCHAR_MAX): Likewise.
37184
37185 * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h: Renamed to ...
37186 * sysdeps/unix/sysv/linux/x86/bits/typesizes.h: This.
37187
37188 [BZ #14183]
37189 * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h (__FSWORD_T_TYPE):
37190 Defined with __SWORD_TYPE if __x86_64__ isn't defined.
37191
37192 [BZ #14117]
37193 * sysdeps/unix/sysv/linux/x86_64/bits/siginfo.h: Renamed to ...
37194 * sysdeps/unix/sysv/linux/x86/bits/siginfo.h: This.
37195
37196 * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Renamed to ...
37197 * sysdeps/unix/sysv/linux/x86/bits/stat.h: This.
37198
37199 * sysdeps/unix/sysv/linux/x86_64/bits/stat.h (_STAT_VER_KERNEL):
37200 Defined to 1 if __x86_64__ isn't defined.
37201 (_STAT_VER_LINUX_OLD): New.
37202 (st_atime): Remove duplicate.
37203 (st_mtime): Likewise.
37204 (st_ctime): Likewise.
37205
372062012-05-31 David S. Miller <davem@davemloft.net>
37207
37208 * sysdeps/sparc/fpu/libm-test-ulps: Remove sqrt(2) and sqrt test
37209 entries.
37210
372112012-06-01 Andreas Schwab <schwab@linux-m68k.org>
37212
37213 * sysdeps/powerpc/fpu/libm-test-ulps: Sort through
37214 gen-libm-test.pl.
37215
37216 [BZ #14132]
37217 * elf/dl-reloc.c: Include <_itoa.h>.
37218 (_dl_reloc_bad_type): Remove use of INTUSE.
37219 * elf/dl-minimal.c (_itoa, _itoa_lower_digits): Likewise.
37220 * stdio-common/_itoa.c (_itoa_word, _itoa): Likewise.
37221 * stdio-common/psiginfo.c (psiginfo): Likewise.
37222 * stdio-common/psignal.c (psignal): Likewise.
37223 * string/strsignal.c (strsignal): Likewise.
37224 * include/signal.h (_sys_siglist): Declare hidden proto.
37225 * stdio-common/itoa-digits.c: Include <_itoa.h>. Replace
37226 INTVARDEF with libc_hidden_data_def.
37227 * stdio-common/itoa-udigits.c: Likewise.
37228 * sysdeps/generic/_itoa.h (_itoa_upper_digits_internal)
37229 (_itoa_lower_digits_internal): Remove declaration.
37230 (_itoa_upper_digits, _itoa_lower_digits): Declare hidden proto.
37231 * sysdeps/gnu/siglist.c (_sys_siglist_internal)
37232 (_sys_sigabbrev_internal): Remove aliases.
37233 (_sys_siglist): Define hidden alias.
37234
372352012-05-31 Markus Trippelsdorf <markus@trippelsdorf.de>
37236
37237 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
37238 bits/sysctl.h.
37239
372402012-05-31 H.J. Lu <hongjiu.lu@intel.com>
37241
37242 [BZ #14117]
37243 * sysdeps/unix/sysv/linux/x86_64/bits/sysctl.h: Renamed to ...
37244 * sysdeps/unix/sysv/linux/x86/bits/sysctl.h: This.
37245
37246 * sysdeps/unix/sysv/linux/i386/sys/ucontext.h: Removed.
37247 * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Renamed to ...
37248 * sysdeps/unix/sysv/linux/x86/sys/ucontext.h: This.
37249 * sysdeps/unix/sysv/linux/i386/sys/user.h: Removed.
37250 * sysdeps/unix/sysv/linux/x86_64/sys/user.h: Renamed to ...
37251 * sysdeps/unix/sysv/linux/x86/sys/user.h: This.
37252
37253 * sysdeps/unix/sysv/linux/i386/sys/procfs.h: Removed.
37254 * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: Renamed to ...
37255 * sysdeps/unix/sysv/linux/x86/sys/procfs.h: This.
37256
37257 * sysdeps/unix/sysv/linux/x86_64/sys/io.h (insb): Replace addr
37258 with __addr.
37259 (insw): Likewise.
37260 (insl): Likewise.
37261 (outsb): Likewise.
37262 (outsw): Likewise.
37263 (outsl): Likewise.
37264
37265 * sysdeps/unix/sysv/linux/i386/bits/mman.h: Removed.
37266 * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Renamed to ...
37267 * sysdeps/unix/sysv/linux/x86/bits/mman.h: This.
37268
37269 * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Renamed to ...
37270 * sysdeps/unix/sysv/linux/x86/bits/msq.h: This.
37271 * sysdeps/unix/sysv/linux/x86_64/bits/sem.h: Renamed to ...
37272 * sysdeps/unix/sysv/linux/x86/bits/sem.h: This.
37273 * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Renamed to ...
37274 * sysdeps/unix/sysv/linux/x86/bits/shm.h: This.
37275
37276 * sysdeps/unix/sysv/linux/x86_64/bits/ipctypes.h: Renamed to ...
37277 * sysdeps/unix/sysv/linux/x86/bits/ipctypes.h: This.
37278
37279 * sysdeps/unix/sysv/linux/x86_64/bits/epoll.h: Renamed to ...
37280 * sysdeps/unix/sysv/linux/x86/bits/epoll.h: This.
37281
37282 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Removed.
37283 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Renamed to ...
37284 * sysdeps/unix/sysv/linux/x86/bits/fcntl.h: This.
37285
37286 * sysdeps/unix/sysv/linux/i386/bits/environments.h: Removed.
37287 * sysdeps/unix/sysv/linux/x86_64/bits/environments.h: Renamed
37288 to ...
37289 * sysdeps/unix/sysv/linux/x86/bits/environments.h: This.
37290
37291 * sysdeps/unix/sysv/linux/i386/bits/a.out.h: Removed.
37292 * sysdeps/unix/sysv/linux/x86_64/bits/a.out.h: Renamed to ...
37293 * sysdeps/unix/sysv/linux/x86/bits/a.out.h: This.
37294
37295 * sysdeps/unix/sysv/linux/i386/sys/elf.h: Error when compiling
37296 for x86-64.
37297 * sysdeps/unix/sysv/linux/i386/sys/vm86.h: Likewise.
37298
372992012-05-31 Joseph Myers <joseph@codesourcery.com>
37300
37301 * math/math.h (M_El): Use two more decimal places.
37302 (M_LOG2El): Likewise.
37303 (M_LOG10El): Likewise.
37304 (M_LN2l): Likewise.
37305 (M_LN10l): Likewise.
37306 (M_PIl): Likewise.
37307 (M_PI_2l): Likewise.
37308 (M_PI_4l): Likewise.
37309 (M_1_PIl): Likewise.
37310 (M_2_PIl): Likewise.
37311 (M_2_SQRTPIl): Likewise.
37312 (M_SQRT2l): Likewise.
37313 (M_SQRT1_2l): Likewise.
37314
373152012-05-31 David S. Miller <davem@davemloft.net>
37316
37317 * sysdeps/sparc/sparc64/memcpy.S: Use fsrc2 to move 64-bit
37318 values between float registers.
37319 * sysdeps/sparc/sparc64/memset.S: Likewise.
37320 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
37321
373222012-05-31 Mike Frysinger <vapier@gentoo.org>
37323
37324 * debug/Makefile (CFLAGS-tst-longjmp_chk.c): Delete
37325 -D_FORTIFY_SOURCE=1.
37326 (CPPFLAGS-tst-longjmp_chk.c): Define.
37327 (CFLAGS-tst-longjmp_chk2.c): Delete -D_FORTIFY_SOURCE=1.
37328 (CPPFLAGS-tst-longjmp_chk2.c): Define.
37329 * wcsmbs/Makefile (CPPFLAGS-tst-wchar-h.c): Rename from
37330 CFLAGS-tst-wchar-h.c.
37331
373322012-05-31 Marek Polacek <polacek@redhat.com>
37333
37334 [BZ #14132]
37335 * include/mntent.h (__setmntent_internal, __getmntent_r_internal
37336 __endmntent_internal): Remove declaration.
37337 (__setmntent, __endmntent, __getmntent_r) [NOT_IN_libc]: Remove macro.
37338 (__setmntent, __endmntent, __getmntent_r): Declare hidden proto.
37339 * misc/mntent_r.c: Replace INTDEF with libc_hidden_def.
37340
373412012-05-30 David S. Miller <davem@davemloft.net>
37342
37343 * sysdeps/sparc/sparc32/soft-fp/q_util.c
37344 (___Q_simulate_exceptions): Use real FP ops rather than writing
37345 into the %fsr.
37346 * sysdeps/sparc/sparc32/soft-fp/q_util.c (__Qp_handle_exceptions):
37347 Likewise.
37348
373492012-05-30 H.J. Lu <hongjiu.lu@intel.com>
37350
37351 [BZ #14117]
37352 * sysdeps/x86_64/bits/xtitypes.h: Renamed to ...
37353 * sysdeps/x86/bits/xtitypes.h: This.
37354
37355 * sysdeps/x86_64/bits/wordsize.h: Renamed to ...
37356 * sysdeps/x86/bits/wordsize.h: This.
37357
37358 * sysdeps/i386/bits/huge_vall.h: Renamed to ...
37359 * sysdeps/x86/bits/huge_vall.h: This.
37360
37361 * sysdeps/i386/bits/select.h: Removed.
37362 * sysdeps/x86_64/bits/select.h: Renamed to ...
37363 * sysdeps/x86/bits/select.h: This.
37364
37365 * sysdeps/i386/bits/setjmp.h: Removed.
37366 * sysdeps/x86_64/bits/setjmp.h: Renamed to ...
37367 * sysdeps/x86/bits/setjmp.h: This.
37368
37369 * sysdeps/i386/bits/mathdef.h: Removed.
37370 * sysdeps/x86_64/bits/mathdef.h: Renamed to ...
37371 * sysdeps/x86/bits/mathdef.h: This.
37372
373732012-05-30 Andreas Schwab <schwab@linux-m68k.org>
37374
37375 [BZ #14132]
37376 * include/sys/socket.h (__connect_internal)
37377 (__libc_sa_len_internal): Remove declaration.
37378 (__connect, __libc_sa_len): Declare hidden_proto.
37379 (SA_LEN): Remove use of INTUSE.
37380 * socket/connect.c: Add libc_hidden_def.
37381 * sysdeps/mach/hurd/connect.c: Replace INTDEF by libc_hidden_def.
37382 * sysdeps/unix/sysv/linux/sa_len.c: Likewise.
37383 * sysdeps/unix/inet/syscalls.list: Remove __connect_internal
37384 alias.
37385 * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
37386 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
37387 * sysdeps/unix/sysv/linux/connect.S: Use libc_hidden_weak instead
37388 of adding _internal alias.
37389
373902012-05-30 H.J. Lu <hongjiu.lu@intel.com>
37391
37392 [BZ #14117]
37393 * sysdeps/i386/bits/link.h: Removed.
37394 * sysdeps/i386/bits/linkmap.h: Likewise.
37395 * sysdeps/x86_64/bits/link.h: Renamed to ...
37396 * sysdeps/x86/bits/link.h: This.
37397 * sysdeps/x86_64/bits/linkmap.h: Renamed to ...
37398 * sysdeps/x86/bits/linkmap.h: This.
37399
37400 * sysdeps/i386/bits/endian.h: Removed.
37401 * sysdeps/x86_64/bits/endian.h: Renamed to ...
37402 * sysdeps/x86/bits/endian.h: This.
37403
37404 * sysdeps/i386/bits/byteswap.h: Removed.
37405 * sysdeps/i386/bits/byteswap-16.h: Likewise.
37406 * sysdeps/x86_64/bits/byteswap.h: Renamed to ...
37407 * sysdeps/x86/bits/byteswap.h: This.
37408 * sysdeps/x86_64/bits/byteswap-16.h: Renamed to ...
37409 * sysdeps/x86/bits/byteswap-16.h: This.
37410 * sysdeps/i386/Implies: Add x86.
37411 * sysdeps/x86_64/Implies: Likewise.
37412
374132012-05-30 David S. Miller <davem@davemloft.net>
37414
37415 * soft-fp/soft-fp.h (FP_CUR_EXCEPTIONS): Define.
37416 (FP_TRAPPING_EXCEPTIONS): Provide default implementation.
37417 * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h
37418 (FP_TRAPPING_EXCEPTIONS): Define.
37419 * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h
37420 (FP_TRAPPING_EXCEPTIONS): Define.
37421 * soft-fp/op-common.h (_FP_PACK_SEMIRAW): Signal underflow for
37422 subnormals only when inexact has been signalled or underflow
37423 exceptions are enabled.
37424 (_FP_PACK_CANONICAL): Likewise.
37425
374262012-05-30 H.J. Lu <hongjiu.lu@intel.com>
37427
37428 [BZ #14183]
37429 * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h (__NLINK_T_TYPE):
37430 Defined with __UWORD_TYPE if __x86_64__ isn't defined.
37431
374322012-05-30 Richard Henderson <rth@twiddle.net>
37433
37434 * sysdeps/unix/make-syscalls.sh: Protect symbol_version output
37435 with #ifndef NOT_IN_libc.
37436
37437 * scripts/abilist.awk: Accept 8 fields. Handle Alpha functions
37438 marked to avoid plt entry.
37439
374402012-05-30 H.J. Lu <hongjiu.lu@intel.com>
37441
37442 [BZ #14112]
37443 * Makeconfig (default-abi): New macro.
37444 (abi-includes): Likewise.
37445 ($(common-objpfx)soversions.mk): Remove WORDSIZE check. Use
37446 $(abi-$(default-abi)-lib-soname) for soname if defined.
37447 ($(common-objpfx)gnu/lib-names.stmp): Generate from
37448 abi-variants.
37449 * Makefile (installed-stubs): Likewise.
37450 * include/stubs-biarch.h: Removed.
37451 * scripts/lib-names.awk: Only handle one library at a time.
37452 * scripts/soversions.awk: Remove WORDSIZE support.
37453 * shlib-versions: Remove WORDSIZE and i.86/s390x/powerpc64 ld
37454 entries.
37455 * sysdeps/unix/sysv/linux/Makefile (syscall-list-variants):
37456 Removed.
37457 (syscall-list-default-condition): Likewise.
37458 (syscall-list-default-condition): Likewise.
37459 (syscall-list-includes): Likewise.
37460 ($(objpfx)bits/syscall%h $(objpfx)bits/syscall%d): Replace
37461 syscall-list-* with abi-*. Handle undefined abi-variants.
37462 * sysdeps/unix/sysv/linux/i386/Makefile (default-abi): New macro.
37463 * sysdeps/unix/sysv/linux/i386/Implies: New file.
37464 * sysdeps/unix/sysv/linux/x86/Makefile: Likewise.
37465 * sysdeps/unix/sysv/linux/x86_64/64/Makefile: Likewise.
37466 * sysdeps/unix/sysv/linux/x86_64/Implies: Add unix/sysv/linux/x86.
37467 * sysdeps/unix/sysv/linux/x86_64/Makefile (syscall-list-variants):
37468 Removed.
37469 (syscall-list-32-options): Likewise.
37470 (syscall-list-32-condition): Likewise.
37471 (syscall-list-64-options): Likewise.
37472 (syscall-list-64-condition): Likewise.
37473 * sysdeps/unix/sysv/linux/x86_64/x32/Makefile (default-abi): New
37474 macro.
37475 * sysdeps/unix/sysv/linux/powerpc/Makefile (syscall-list-*):
37476 Renamed to ...
37477 (abi-*): This.
37478 (abi-64-ld-soname): New macro.
37479 * sysdeps/unix/sysv/linux/s390/Makefile: Likewise.
37480 * sysdeps/unix/sysv/linux/sparc/Makefile (syscall-list-*):
37481 Renamed to ...
37482 (abi-*): This.
37483 * sysdeps/x86_64/64/shlib-versions: Remove ld entry.
37484 * sysdeps/x86_64/x32/shlib-versions: Likewise.
37485
374862012-05-30 Joseph Myers <joseph@codesourcery.com>
37487
37488 * sysdeps/unix/sysv/linux/kernel-features.h
37489 (__ASSUME_TRUNCATE64_SYSCALL): Remove all definitions.
37490 * sysdeps/unix/sysv/linux/ftruncate64.c: Do not
37491 include <kernel-features.h>.
37492 [!__NR_ftruncate64]: Remove conditional code.
37493 [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
37494 [__NR_ftruncate64]: Make code unconditional.
37495 [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
37496 * sysdeps/unix/sysv/linux/truncate64.c: Do not
37497 include <kernel-features.h>.
37498 [!__NR_ftruncate64]: Remove conditional code.
37499 [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
37500 [__NR_ftruncate64]: Make code unconditional.
37501 [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
37502 * sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c: Do not
37503 include <kernel-features.h>.
37504 [!__NR_ftruncate64]: Remove conditional code.
37505 [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
37506 [__NR_ftruncate64]: Make code unconditional.
37507 [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
37508 * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Do not
37509 include <kernel-features.h>.
37510 [!__NR_ftruncate64]: Remove conditional code.
37511 [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
37512 [__NR_ftruncate64]: Make code unconditional.
37513 [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
37514
37515 * configure.in (libc_cv_fpie): Weaken to a compile test using
37516 LIBC_TRY_CC_OPTION.
37517 * configure: Regenerated.
37518
375192012-05-29 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
37520
37521 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: Refreshed.
37522 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Refreshed.
37523 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: Refreshed.
37524 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
37525 Refreshed.
37526 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: Refreshed.
37527 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: Refreshed.
37528 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: Refreshed.
37529 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Refreshed.
37530 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: Refreshed.
37531 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
37532 Refreshed.
37533
375342012-05-27 David S. Miller <davem@davemloft.net>
37535
37536 * sysdeps/sparc/sparc32/soft-fp/q_util.c (___Q_numbers): Delete.
37537 (___Q_zero): New.
37538 (__Q_simulate_exceptions): Return void. Change to simulate
37539 exceptions by writing into the %fsr.
37540 * sysdeps/sparc/sparc64/soft-fp/qp_util.c
37541 (__Qp_handle_exceptions): Likewise.
37542 (numbers): Delete.
37543 * sysdeps/sparc/sparc64/soft-fp/Versions: Remove entry for
37544 __Qp_handle_exceptions.
37545 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Remove
37546 __Qp_handle_exceptions.
37547 * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h (_FP_DECL_EX): Mark
37548 as unused and give dummy FP_RND_NEAREST initializer.
37549 (FP_INHIBIT_RESULTS): Define.
37550 (___Q_simulate_exceptions): Update declaration.
37551 (FP_HANDLE_EXCEPTIONS): Use ___Q_zero and tidy inline asm
37552 formatting.
37553 * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h (_FP_DECL_EX): Mark
37554 as unused and give dummy FP_RND_NEAREST initializer.
37555 (__Qp_handle_exceptions): Update declaration.
37556 (FP_HANDLE_EXCEPTIONS, QP_NO_EXCEPTIONS): Tidy inline asm
37557 formatting.
37558
375592012-05-27 Thomas Schwinge <thomas@codesourcery.com>
37560
37561 * sysdeps/sh/sh4/fpu/fclrexcpt.c (feclearexcept): Use fpu_control_t for
37562 the temporary FPU control word.
37563 * sysdeps/sh/sh4/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
37564 * sysdeps/sh/sh4/fpu/feenablxcpt.c (feenableexcept): Likewise.
37565 * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Likewise.
37566 * sysdeps/sh/sh4/fpu/fegetexcept.c (fegetexcept): Likewise.
37567 * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
37568 * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Likewise.
37569 * sysdeps/sh/sh4/fpu/fesetenv.c (fesetenv): Likewise.
37570 * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
37571 * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
37572 * sysdeps/sh/sh4/fpu/fsetexcptflg.c (fesetexceptflag): Likewise.
37573 * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
37574
375752012-05-27 Kaz Kojima <kkojima@rr.iij4u.or.jp>
37576
37577 * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Restore fpscr flag
37578 fields.
37579
375802012-05-27 Chung-Lin Tang <cltang@codesourcery.com>
37581
37582 * sysdeps/sh/_mcount.S (_mount): Add CFI directives.
37583 * sysdeps/unix/sh/sysdep.S (__syscall_error): Likewise.
37584 * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S (__setcontext): Likewise.
37585 * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S (__swapcontext):
37586 Likewise.
37587 * sysdeps/unix/sysv/linux/sh/sh4/setcontext.S (__setcontext): Likewise.
37588 * sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S (__swapcontext):
37589 Likewise.
37590
375912012-05-27 Ulrich Drepper <drepper@gmail.com>
37592
37593 * po/h.po: Update from translation team.
37594
375952012-05-26 Andreas Schwab <schwab@linux-m68k.org>
37596
37597 * sysdeps/powerpc/powerpc32/dl-irel.h: Include <ldsodefs.h>.
37598
37599 * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Optimize
37600 handling of denormals.
37601 * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
37602 * sysdeps/ieee754/flt-32/s_logbf.c (__logbf): Likewise.
37603 * sysdeps/ieee754/ldbl-96/s_logbl.c (__logbl): Likewise.
37604 * sysdeps/ieee754/ldbl-128/s_logbl.c (__logbl): Likewise.
37605 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
37606 * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c (_logb): Likewise.
37607 * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c (_logbl):
37608 Likewise.
37609
376102012-05-26 Marek Polacek <polacek@redhat.com>
37611
37612 [BZ #14152]
37613 * math/libm-test.inc (fma_test): Don't always expect underflow
37614 exception.
37615
376162012-05-26 Siddhesh Poyarekar <siddhesh@redhat.com>
37617
37618 [BZ #12416]
37619 * elf/tst-execstack.c: Include stackinfo.h.
37620 (do_test): Adjust test case to ensure that pthread_getattr_np
37621 behaviour remains the same after marking stack executable.
37622
376232012-05-25 Joseph Myers <joseph@codesourcery.com>
37624
37625 * sysdeps/unix/sysv/linux/kernel-features.h
37626 (__ASSUME_NEW_GETRLIMIT_SYSCALL): Remove all definitions.
37627 * sysdeps/unix/sysv/linux/i386/getrlimit.c: Do not include
37628 kernel-features.h.
37629 [!__ASSUME_NEW_GETRLIMIT_SYSCALL]: Remove conditional code.
37630 [__ASSUME_NEW_GETRLIMIT_SYSCALL]: Make code unconditional.
37631 * sysdeps/unix/sysv/linux/i386/setrlimit.c Do not include
37632 kernel-features.h.
37633 [!__ASSUME_NEW_GETRLIMIT_SYSCALL]: Remove conditional code.
37634 [__ASSUME_NEW_GETRLIMIT_SYSCALL]: Make code unconditional.
37635
376362012-05-25 H.J. Lu <hongjiu.lu@intel.com>
37637
37638 * configure.in: Define the default includes to being none.
37639 * configure: Regenerated.
37640
376412012-05-25 Roland McGrath <roland@hack.frob.com>
37642
37643 * sysdeps/x86_64/__longjmp.S: Add a static probe here.
37644 * sysdeps/x86_64/setjmp.S: Likewise.
37645 * sysdeps/i386/bsd-setjmp.S: Likewise.
37646 * sysdeps/i386/bsd-_setjmp.S: Likewise.
37647 * sysdeps/i386/setjmp.S: Likewise.
37648 * sysdeps/i386/__longjmp.S: Likewise.
37649 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Likewise.
37650 * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S: Likewise.
37651
37652 * include/stap-probe.h: New file.
37653 * configure.in: Handle --enable-systemtap.
37654 * configure: Regenerated.
37655 * config.h.in (USE_STAP_PROBE): New #undef.
37656 * extra-lib.mk (CPPFLAGS-$(lib)): Add -DIN_LIB=$(lib).
37657 * elf/Makefile (CPPFLAGS-.os): Add -DIN_LIB=rtld.
37658 * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
37659
376602012-05-25 Joseph Myers <joseph@codesourcery.com>
37661
37662 [BZ #13717]
37663 * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel): Set
37664 to 2.4.0 where earlier.
37665 * sysdeps/unix/sysv/linux/configure: Regenerated.
37666 * sysdeps/unix/sysv/linux/i386/chown.c: Do not include
37667 <kernel-features.h>.
37668 [__ASSUME_32BITUIDS]: Make code unconditional.
37669 [!__ASSUME_32BITUIDS]: Remove conditional code.
37670 * sysdeps/unix/sysv/linux/i386/fchown.c: Do not include
37671 <kernel-features.h>.
37672 [__ASSUME_32BITUIDS]: Make code unconditional.
37673 [!__ASSUME_32BITUIDS]: Remove conditional code.
37674 * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat)
37675 [__ASSUME_32BITUIDS]: Make code unconditional.
37676 (fchownat) [!__ASSUME_32BITUIDS]: Remove conditional code.
37677 * sysdeps/unix/sysv/linux/i386/getegid.c: Do not include
37678 <kernel-features.h>.
37679 [__ASSUME_32BITUIDS]: Make code unconditional.
37680 [!__ASSUME_32BITUIDS]: Remove conditional code.
37681 * sysdeps/unix/sysv/linux/i386/geteuid.c: Do not include
37682 <kernel-features.h>.
37683 [__ASSUME_32BITUIDS]: Make code unconditional.
37684 [!__ASSUME_32BITUIDS]: Remove conditional code.
37685 * sysdeps/unix/sysv/linux/i386/getgid.c: Do not include
37686 <kernel-features.h>.
37687 [__ASSUME_32BITUIDS]: Make code unconditional.
37688 [!__ASSUME_32BITUIDS]: Remove conditional code.
37689 * sysdeps/unix/sysv/linux/i386/getgroups.c: Do not include
37690 <kernel-features.h>.
37691 [__ASSUME_32BITUIDS]: Make code unconditional.
37692 [!__ASSUME_32BITUIDS]: Remove conditional code.
37693 * sysdeps/unix/sysv/linux/i386/getresgid.c: Do not include
37694 <kernel-features.h>.
37695 [__ASSUME_32BITUIDS]: Make code unconditional.
37696 [!__ASSUME_32BITUIDS]: Remove conditional code.
37697 * sysdeps/unix/sysv/linux/i386/getresuid.c: Do not include
37698 <kernel-features.h>.
37699 [__ASSUME_32BITUIDS]: Make code unconditional.
37700 [!__ASSUME_32BITUIDS]: Remove conditional code.
37701 * sysdeps/unix/sysv/linux/i386/getuid.c: Do not include
37702 <kernel-features.h>.
37703 [__ASSUME_32BITUIDS]: Make code unconditional.
37704 [!__ASSUME_32BITUIDS]: Remove conditional code.
37705 * sysdeps/unix/sysv/linux/i386/lchown.c: Do not include
37706 <kernel-features.h>.
37707 [__ASSUME_32BITUIDS]: Make code unconditional.
37708 [!__ASSUME_32BITUIDS]: Remove conditional code.
37709 * sysdeps/unix/sysv/linux/i386/msgctl.c: Do not include
37710 <kernel-features.h>.
37711 [__ASSUME_32BITUIDS]: Make code unconditional.
37712 [!__ASSUME_32BITUIDS]: Remove conditional code.
37713 * sysdeps/unix/sysv/linux/i386/semctl.c: Do not include
37714 <kernel-features.h>.
37715 [__ASSUME_32BITUIDS]: Make code unconditional.
37716 [!__ASSUME_32BITUIDS]: Remove conditional code.
37717 * sysdeps/unix/sysv/linux/i386/setegid.c: Do not include
37718 <kernel-features.h>.
37719 [__NR_setresgid] (__setresgid): Do not declare.
37720 [__ASSUME_32BITUIDS]: Make code unconditional.
37721 [!__ASSUME_32BITUIDS]: Remove conditional code.
37722 * sysdeps/unix/sysv/linux/i386/seteuid.c: Do not include
37723 <kernel-features.h>.
37724 [__NR_setresuid] (__setresuid): Do not declare.
37725 [__ASSUME_32BITUIDS]: Make code unconditional.
37726 [!__ASSUME_32BITUIDS]: Remove conditional code.
37727 * sysdeps/unix/sysv/linux/i386/setfsgid.c: Do not include
37728 <kernel-features.h>.
37729 [__ASSUME_32BITUIDS]: Make code unconditional.
37730 [!__ASSUME_32BITUIDS]: Remove conditional code.
37731 * sysdeps/unix/sysv/linux/i386/setfsuid.c: Do not include
37732 <kernel-features.h>.
37733 [__ASSUME_32BITUIDS]: Make code unconditional.
37734 [!__ASSUME_32BITUIDS]: Remove conditional code.
37735 * sysdeps/unix/sysv/linux/i386/setgid.c: Do not include
37736 <kernel-features.h>.
37737 [__ASSUME_32BITUIDS]: Make code unconditional.
37738 [!__ASSUME_32BITUIDS]: Remove conditional code.
37739 * sysdeps/unix/sysv/linux/i386/setgroups.c: Do not include
37740 <kernel-features.h>.
37741 [__ASSUME_32BITUIDS]: Make code unconditional.
37742 [!__ASSUME_32BITUIDS]: Remove conditional code.
37743 * sysdeps/unix/sysv/linux/i386/setregid.c: Do not include
37744 <kernel-features.h>.
37745 [__ASSUME_32BITUIDS]: Make code unconditional.
37746 [!__ASSUME_32BITUIDS]: Remove conditional code.
37747 * sysdeps/unix/sysv/linux/i386/setresgid.c: Do not include
37748 <kernel-features.h>.
37749 [__ASSUME_32BITUIDS]: Make code unconditional.
37750 [!__ASSUME_32BITUIDS]: Remove conditional code.
37751 * sysdeps/unix/sysv/linux/i386/setresuid.c: Do not include
37752 <kernel-features.h>.
37753 [__ASSUME_32BITUIDS]: Make code unconditional.
37754 [!__ASSUME_32BITUIDS]: Remove conditional code.
37755 * sysdeps/unix/sysv/linux/i386/setreuid.c: Do not include
37756 <kernel-features.h>.
37757 [__ASSUME_32BITUIDS]: Make code unconditional.
37758 [!__ASSUME_32BITUIDS]: Remove conditional code.
37759 * sysdeps/unix/sysv/linux/i386/setuid.c: Do not include
37760 <kernel-features.h>.
37761 [__ASSUME_32BITUIDS]: Make code unconditional.
37762 [!__ASSUME_32BITUIDS]: Remove conditional code.
37763 * sysdeps/unix/sysv/linux/i386/shmctl.c: Do not include
37764 <kernel-features.h>.
37765 [__ASSUME_32BITUIDS]: Make code unconditional.
37766 [!__ASSUME_32BITUIDS]: Remove conditional code.
37767 * sysdeps/unix/sysv/linux/kernel-features.h
37768 (__ASSUME_SETRESUID_SYSCALL): Remove.
37769 (__ASSUME_SETRESGID_SYSCALL): Likewise.
37770 (__ASSUME_32BITUIDS): Likewise.
37771 (__ASSUME_LDT_WORKS): Likewise.
37772 (__ASSUME_O_DIRECTORY): Likewise.
37773 (__ASSUME_NEW_GETRLIMIT_SYSCALL): Define conditional on
37774 architecture but not kernel version.
37775 (__ASSUME_TRUNCATE64_SYSCALL): Likewise.
37776 (__ASSUME_MMAP2_SYSCALL): Likewise.
37777 (__ASSUME_STAT64_SYSCALL): Likewise.
37778 (__ASSUME_IPC64): Likewise.
37779 * sysdeps/unix/sysv/linux/local-setxid.h: Do not include
37780 <kernel-features.h>.
37781 [__ASSUME_32BITUIDS]: Make code unconditional.
37782 [!__ASSUME_32BITUIDS]: Remove conditional code.
37783 * sysdeps/unix/sysv/linux/opendir.c: Do not include
37784 <kernel-features.h>.
37785 [__ASSUME_O_DIRECTORY]: Make code unconditional.
37786 * sysdeps/unix/sysv/linux/opensock.c [__LINUX_KERNEL_VERSION <
37787 132096]: Remove conditional code.
37788 [__LINUX_KERNEL_VERSION >= 132096]: Make code unconditional.
37789 * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Do not include
37790 <kernel-features.h>.
37791 [__ASSUME_32BITUIDS]: Make code unconditional.
37792 [!__ASSUME_32BITUIDS]: Remove conditional code.
37793 * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Do not include
37794 <kernel-features.h>.
37795 [__ASSUME_32BITUIDS]: Make code unconditional.
37796 [!__ASSUME_32BITUIDS]: Remove conditional code.
37797 * sysdeps/unix/sysv/linux/setegid.c: Do not include
37798 <kernel-features.h>.
37799 [__NR_setresgid || __ASSUME_SETRESGID_SYSCALL]: Make code
37800 unconditional.
37801 (__setresgid): Do not declare.
37802 [__ASSUME_32BITUIDS]: Make code unconditional.
37803 [!__ASSUME_32BITUIDS]: Remove conditional code.
37804 * sysdeps/unix/sysv/linux/seteuid.c: Do not include
37805 <kernel-features.h>.
37806 [__NR_setresuid || __ASSUME_SETRESUID_SYSCALL]: Make code
37807 unconditional.
37808 (__setresuid): Do not declare.
37809 [__ASSUME_32BITUIDS]: Make code unconditional.
37810 [!__ASSUME_32BITUIDS]: Remove conditional code.
37811 * sysdeps/unix/sysv/linux/sh/chown.c: Do not include
37812 <kernel-features.h>.
37813 [__ASSUME_32BITUIDS]: Make code unconditional.
37814 [!__ASSUME_32BITUIDS]: Remove conditional code.
37815 * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Do not include
37816 <kernel-features.h>.
37817 [__ASSUME_32BITUIDS]: Make code unconditional.
37818 [!__ASSUME_32BITUIDS]: Remove conditional code.
37819
378202012-05-25 Richard Henderson <rth@twiddle.net>
37821
37822 * sysdeps/powerpc/powerpc32/dl-irel.h (elf_ifunc_invoke): Pass
37823 dl_hwcap to ifunc resolver.
37824 * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Use
37825 elf_ifunc_invoke.
37826 * sysdeps/powerpc/powerpc64/dl-irel.h (elf_ifunc_invoke): Pass
37827 dl_hwcap to ifunc resolver.
37828 * sysdeps/powerpc/powerpc64/dl-machine.h (resolve_ifunc): Likewise.
37829
378302012-05-24 Joseph Myers <joseph@codesourcery.com>
37831
37832 [BZ #14153]
37833 * sysdeps/ieee754/flt-32/e_acosf.c (__ieee754_acosf): Return pi/2
37834 for |x| <= 2**-26, not 2**-57.
37835 * math/libm-test.inc (acos_test): Do not allow spurious underflow
37836 exception.
37837
378382012-05-24 Jeff Law <law@redhat.com>
37839
37840 * stdio-common/Makefile (tests): Add bug25.
37841 * stdio-common/bug25.c: New test.
37842
378432012-05-24 H.J. Lu <hongjiu.lu@intel.com>
37844
37845 [BZ #13576]
37846 * malloc/malloc.c (sYSMALLOc): Free the old top chunk with a
37847 multiple of MALLOC_ALIGNMENT in size.
37848 (_int_free): Check chunk size is a multiple of MALLOC_ALIGNMENT.
37849
378502012-05-24 Joseph Myers <joseph@codesourcery.com>
37851
37852 * conform/data/stdio.h-data (BUFSIZ): Use macro-int-constant.
37853 Require >= 256.
37854 (FILENAME_MAX): Use macro-int-constant.
37855 (FOPEN_MAX): Use macro-int-constant. Require >= 8.
37856 (_IOFBF): Use macro-int-constant.
37857 (_IOLBF): Likewise.
37858 (_IONBF): Likewise.
37859 (SEEK_CUR): Likewise.
37860 (SEEK_END): Likewise.
37861 (SEEK_SET): Likewise.
37862 (TMP_MAX): Likewise.
37863 (EOF): Use macro-int-constant. Require < 0.
37864 (NULL): Use macro-constant. Require == 0.
37865 (stdin): Require type to be FILE *.
37866 (stdout): Likewise.
37867 (stderr): Likewise.
37868 * conform/data/stdlib.h-data (EXIT_FAILURE): Use
37869 macro-int-constant.
37870 (EXIT_SUCCESS): Likewise.
37871 (NULL): Use macro-constant. Require == 0.
37872 (RAND_MAX): Use macro-int-constant.
37873 [ISO99 || ISO11] (lldiv_t): Require also for these standards.
37874 [C99-based standards] (strtof): Require function.
37875 [C99-based standards] (strtold): Likewise.
37876 [C99-based standards] (strtoll): Likewise.
37877 [C99-based standards] (strtoull): Likewise.
37878 [ISO || ISO99 || ISO11] (stddef.h): Do not allow header.
37879 [ISO || ISO99 || ISO11] (limits.h): Likewise.
37880 [ISO || ISO99 || ISO11] (math.h): Likewise.
37881 [ISO || ISO99 || ISO11] (sys/wait.h): Likewise.
37882 (str*): Change to str[abcdefghijklmnopqrstuvwxyz]*.
37883 [ISO || ISO99 || ISO11] (*_t): Do not allow.
37884
378852012-05-24 Andreas Schwab <schwab@linux-m68k.org>
37886
37887 [BZ #14132]
37888 * argp/argp-help.c (dgettext) [_LIBC]: Remove use of INTUSE.
37889 * argp/argp-parse.c (dgettext) [_LIBC]: Likewise.
37890 * intl/dgettext.c (DCGETTEXT): Likewise.
37891 * intl/gettext.c (DCGETTEXT): Likewise.
37892 * intl/l10nflist.c (__argz_count, __argz_stringify): Likewise.
37893 * posix/regex_internal.h (gettext): Likewise.
37894 * include/libintl.h (__dcgettext_internal, __dcngettext_internal):
37895 Remove declaration.
37896 * include/argz.h (__argz_count_internal)
37897 (__argz_stringify_internal): Remove declaration.
37898 (__argz_count, __argz_stringify): Declare hidden proto.
37899 * intl/dcgettext.c: Remove use of INTDEF.
37900 * string/argz-count.c: Replace INTDEF with libc_hidden_def.
37901 * string/argz-stringify.c: Likewise.
37902 * include/libio.h (_IO_free_backup_area, _IO_free_wbackup_area)
37903 (_IO_padn, _IO_putc, _IO_sgetn, _IO_vfprintf, _IO_vfscanf):
37904 Declare hidden proto.
37905 * include/libio.h (_IO_free_backup_area, _IO_free_wbackup_area)
37906 (_IO_padn, _IO_putc, _IO_sgetn, _IO_vfprintf, _IO_vfscanf):
37907 Declare hidden proto.
37908 * include/stdio.h (__asprintf_internal): Don't declare.
37909 (__asprintf): Don't define as macro. Declare hidden proto.
37910 * include/stdio_ext.h (__fsetlocking_internal): Don't declare.
37911 (__fsetlocking): Declare hidden proto.
37912 * libio/iolibio.h (_IO_fdopen, _IO_fflush, _IO_ftell, _IO_fread)
37913 (_IO_fwrite, _IO_setbuffer, _IO_setvbuf, _IO_vsprintf): Declare
37914 hidden proto.
37915 (_IO_vprintf, _IO_freopen, _IO_freopen64, _IO_setbuf)
37916 (_IO_setlinebuf): Remove use of INTUSE.
37917 (_IO_setbuffer_internal, _IO_fread_internal, _IO_fdopen_internal)
37918 (_IO_vsprintf_internal, _IO_fflush_internal, _IO_fwrite_internal)
37919 (_IO_ftell_internal, _IO_fputs_internal, _IO_setvbuf_internal):
37920 Remove declaration.
37921 * libio/libioP.h (INTUSE, INTDEF, INTDEF2): Don't define.
37922 (_IO_do_flush): Remove use of INTUSE.
37923 (_IO_switch_to_get_mode, _IO_init, _IO_sputbackc, _IO_un_link)
37924 (_IO_link_in, _IO_doallocbuf, _IO_unsave_markers, _IO_setb)
37925 (_IO_adjust_column, _IO_least_wmarker)
37926 (_IO_switch_to_main_wget_area, _IO_switch_to_wbackup_area)
37927 (_IO_switch_to_wget_mode, _IO_wsetb, _IO_sputbackwc)
37928 (_IO_wdoallocbuf, _IO_default_uflow, _IO_wdefault_uflow)
37929 (_IO_default_doallocate, _IO_wdefault_doallocate)
37930 (_IO_default_finish, _IO_wdefault_finish, _IO_default_pbackfail)
37931 (_IO_wdefault_pbackfail, _IO_default_xsputn, _IO_wdefault_xsputn)
37932 (_IO_default_xsgetn, _IO_wdefault_xsgetn, _IO_do_write)
37933 (_IO_wdo_write, _IO_flush_all, _IO_flush_all_linebuffered)
37934 (_IO_file_doallocate, _IO_file_setbuf, _IO_file_seekoff)
37935 (_IO_file_xsputn, _IO_file_xsgetn, _IO_file_stat, _IO_file_close)
37936 (_IO_file_underflow, _IO_file_overflow, _IO_file_init)
37937 (_IO_file_attach, _IO_file_fopen, _IO_file_read, _IO_file_sync)
37938 (_IO_file_close_it, _IO_file_seek, _IO_file_finish)
37939 (_IO_wfile_xsputn, _IO_wfile_sync, _IO_wfile_underflow)
37940 (_IO_wfile_overflow, _IO_wfile_seekoff, _IO_str_underflow)
37941 (_IO_str_overflow, _IO_str_pbackfail, _IO_str_seekoff)
37942 (_IO_getline, _IO_getline_info, _IO_list_all): Declare hidden
37943 proto.
37944 (_IO_flush_all_internal, _IO_adjust_column_internal)
37945 (_IO_default_uflow_internal, _IO_default_finish_internal)
37946 (_IO_default_pbackfail_internal, _IO_default_xsputn_internal)
37947 (_IO_default_xsgetn_internal, _IO_default_doallocate_internal)
37948 (_IO_wdefault_finish_internal, _IO_wdefault_pbackfail_internal)
37949 (_IO_wdefault_xsputn_internal, _IO_wdefault_xsgetn_internal)
37950 (_IO_wdefault_doallocate_internal, _IO_wdefault_uflow_internal)
37951 (_IO_file_doallocate_internal, _IO_file_setbuf_internal)
37952 (_IO_file_seekoff_internal, _IO_file_xsputn_internal)
37953 (_IO_file_xsgetn_internal, _IO_file_stat_internal)
37954 (_IO_file_close_internal, _IO_file_close_it_internal)
37955 (_IO_file_underflow_internal, _IO_file_overflow_internal)
37956 (_IO_file_init_internal, _IO_file_attach_internal)
37957 (_IO_file_fopen_internal, _IO_file_read_internal)
37958 (_IO_file_sync_internal, _IO_file_seek_internal)
37959 (_IO_file_finish_internal, _IO_wfile_xsputn_internal)
37960 (_IO_wfile_seekoff_internal, _IO_wfile_sync_internal)
37961 (_IO_str_underflow_internal, _IO_str_overflow_internal)
37962 (_IO_str_pbackfail_internal, _IO_str_seekoff_internal)
37963 (_IO_file_jumps_internal, _IO_wfile_jumps_internal)
37964 (_IO_list_all_internal, _IO_link_in_internal)
37965 (_IO_sputbackc_internal, _IO_wdoallocbuf_internal)
37966 (_IO_sgetn_internal, _IO_flush_all_linebuffered_internal)
37967 (_IO_switch_to_wget_mode_internal, _IO_unsave_markers_internal)
37968 (_IO_switch_to_main_wget_area_internal, _IO_wdo_write_internal)
37969 (_IO_do_write_internal, _IO_padn_internal)
37970 (_IO_getline_info_internal, _IO_getline_internal)
37971 (_IO_free_wbackup_area_internal, _IO_free_backup_area_internal)
37972 (_IO_switch_to_wbackup_area_internal, _IO_setb_internal)
37973 (_IO_sputbackwc_internal, _IO_switch_to_get_mode_internal)
37974 (_IO_vfscanf_internal, _IO_vfprintf_internal)
37975 (_IO_doallocbuf_internal, _IO_wsetb_internal, _IO_putc_internal)
37976 (_IO_init_internal, _IO_un_link_internal): Don't declare.
37977 * libio/fileops.c: Replace INTDEF with libc_hidden_def and INTDEF2
37978 with libc_hidden_ver, remove use of INTUSE.
37979 * libio/genops.c: Likewise.
37980 * libio/freopen.c: Likewise.
37981 * libio/freopen64.c: Likewise.
37982 * libio/iofclose.c: Likewise.
37983 * libio/iofdopen.c: Likewise.
37984 * libio/iofflush.c: Likewise.
37985 * libio/iofflush_u.c: Likewise.
37986 * libio/iofgets.c: Likewise.
37987 * libio/iofgets_u.c: Likewise.
37988 * libio/iofopen.c: Likewise.
37989 * libio/iofopncook.c: Likewise.
37990 * libio/iofread.c: Likewise.
37991 * libio/iofread_u.c: Likewise.
37992 * libio/ioftell.c: Likewise.
37993 * libio/iofwrite.c: Likewise.
37994 * libio/iogetline.c: Likewise.
37995 * libio/iogets.c: Likewise.
37996 * libio/iogetwline.c: Likewise.
37997 * libio/iopadn.c: Likewise.
37998 * libio/iopopen.c: Likewise.
37999 * libio/ioseekoff.c: Likewise.
38000 * libio/ioseekpos.c: Likewise.
38001 * libio/iosetbuffer.c: Likewise.
38002 * libio/iosetvbuf.c: Likewise.
38003 * libio/ioungetc.c: Likewise.
38004 * libio/ioungetwc.c: Likewise.
38005 * libio/iovdprintf.c: Likewise.
38006 * libio/iovsprintf.c: Likewise.
38007 * libio/iovsscanf.c: Likewise.
38008 * libio/memstream.c: Likewise.
38009 * libio/obprintf.c: Likewise.
38010 * libio/oldfileops.c: Likewise.
38011 * libio/oldiofclose.c: Likewise.
38012 * libio/oldiofdopen.c: Likewise.
38013 * libio/oldiofopen.c: Likewise.
38014 * libio/oldiopopen.c: Likewise.
38015 * libio/oldstdfiles.c: Likewise.
38016 * libio/putc.c: Likewise.
38017 * libio/setbuf.c: Likewise.
38018 * libio/setlinebuf.c: Likewise.
38019 * libio/stdfiles.c: Likewise.
38020 * libio/strops.c: Likewise.
38021 * libio/vasprintf.c: Likewise.
38022 * libio/vscanf.c: Likewise.
38023 * libio/vsnprintf.c: Likewise.
38024 * libio/vswprintf.c: Likewise.
38025 * libio/wfiledoalloc.c: Likewise.
38026 * libio/wfileops.c: Likewise.
38027 * libio/wgenops.c: Likewise.
38028 * libio/wmemstream.c: Likewise.
38029 * libio/wstrops.c: Likewise.
38030 * libio/__fpurge.c: Likewise.
38031 * libio/__fsetlocking.c: Likewise.
38032 * assert/assert.c: Likewise.
38033 * debug/fgets_chk.c: Likewise.
38034 * debug/fgets_u_chk.c: Likewise.
38035 * debug/fread_chk.c: Likewise.
38036 * debug/fread_u_chk.c: Likewise.
38037 * debug/gets_chk.c: Likewise.
38038 * debug/obprintf_chk.c: Likewise.
38039 * debug/vasprintf_chk.c: Likewise.
38040 * debug/vdprintf_chk.c: Likewise.
38041 * debug/vsnprintf_chk.c: Likewise.
38042 * debug/vsprintf_chk.c: Likewise.
38043 * malloc/mtrace.c: Likewise.
38044 * misc/error.c: Likewise.
38045 * misc/syslog.c: Likewise.
38046 * stdio-common/asprintf.c: Likewise.
38047 * stdio-common/fxprintf.c: Likewise.
38048 * stdio-common/getw.c: Likewise.
38049 * stdio-common/isoc99_fscanf.c: Likewise.
38050 * stdio-common/isoc99_scanf.c: Likewise.
38051 * stdio-common/isoc99_vfscanf.c: Likewise.
38052 * stdio-common/isoc99_vscanf.c: Likewise.
38053 * stdio-common/isoc99_vsscanf.c: Likewise.
38054 * stdio-common/printf-prs.c: Likewise.
38055 * stdio-common/printf_fp.c: Likewise.
38056 * stdio-common/printf_fphex.c: Likewise.
38057 * stdio-common/printf_size.c: Likewise.
38058 * stdio-common/putw.c: Likewise.
38059 * stdio-common/scanf.c: Likewise.
38060 * stdio-common/sprintf.c: Likewise.
38061 * stdio-common/tmpfile.c: Likewise.
38062 * stdio-common/vfprintf.c: Likewise.
38063 * stdio-common/vfscanf.c: Likewise.
38064 * stdlib/strfmon_l.c: Likewise.
38065 * sunrpc/openchild.c: Likewise.
38066 * sunrpc/xdr_stdio.c: Likewise.
38067 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Likewise.
38068 * sysdeps/mach/hurd/tmpfile.c: Likewise.
38069
380702012-05-24 Roland McGrath <roland@hack.frob.com>
38071
38072 * sysdeps/unix/sysv/linux/x86_64/x32/syscalls.list: New file.
38073
38074 * sysdeps/unix/make-syscalls.sh: Support "syscall:vdso_name@VDSOVER"
38075 in the third column, to generate for the shared library an IFUNC
38076 that uses _dl_vdso_vsym.
38077 * Makerules (COMPILE.c, compile-stdin.c): New variables.
38078 * Makeconfig (object-suffixes-noshared): New variable.
38079
38080 * sysdeps/unix/sysv/linux/dl-vdso.h (PREPARE_VERSION_KNOWN): New macro.
38081 (VDSO_NAME_LINUX_2_6, VDSO_HASH_LINUX_2_6): New macros.
38082 (VDSO_NAME_LINUX_2_6_15, VDSO_HASH_LINUX_2_6_15): New macros.
38083 (VDSO_NAME_LINUX_2_6_29, VDSO_HASH_LINUX_2_6_29): New macros.
38084
38085 [BZ #14132]
38086 * include/sys/time.h (__gettimeofday): Remove macro.
38087 (__gettimeofday, gettimeofday): Add libc_hidden_proto.
38088 * time/gettimeofday.c (__gettimeofday): Remove #undef.
38089 Remove INTDEF.
38090 (__gettimeofday): Add libc_hidden_def.
38091 (gettimeofday): Add libc_hidden_weak.
38092 * sysdeps/mach/gettimeofday.c: Likewise.
38093 * sysdeps/posix/gettimeofday.c: Likewise.
38094 * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Likewise.
38095 * sysdeps/unix/sysv/linux/s390/gettimeofday.c: Likewise.
38096 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c
38097 (__gettimeofday_internal): Remove strong_alias.
38098 (__gettimeofday): Add libc_hidden_def.
38099 (gettimeofday): Add libc_hidden_weak.
38100 * sysdeps/unix/syscalls.list (gettimeofday):
38101 Remove __gettimeofday_internal alias.
38102
381032012-05-24 Daniel Jacobowitz <drow@false.org>
38104 H.J. Lu <hongjiu.lu@intel.com>
38105
38106 [BZ #12495]
38107 * malloc/malloc.c (SMALLBIN_CORRECTION): New.
38108 (MIN_LARGE_SIZE, smallbin_index): Use it to handle 16-byte alignment.
38109 (largebin_index_32_big): New.
38110 (largebin_index): Use it for 16-byte alignment.
38111 (sYSMALLOc): Handle MALLOC_ALIGNMENT > 2 * SIZE_SZ. Don't update
38112 correction with front_misalign.
38113
381142012-05-24 H.J. Lu <hongjiu.lu@intel.com>
38115
38116 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/ld.abilist: New file.
38117 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libBrokenLocale.abilist:
38118 Likewise.
38119 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libanl.abilist:
38120 Likewise.
38121 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist:
38122 Likewise.
38123 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist:
38124 Likewise.
38125 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libdl.abilist:
38126 Likewise.
38127 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libm.abilist:
38128 Likewise.
38129 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libnsl.abilist:
38130 Likewise.
38131 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist:
38132 Likewise.
38133 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libresolv.abilist:
38134 Likewise.
38135 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/librt.abilist:
38136 Likewise.
38137 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libthread_db.abilist:
38138 Likewise.
38139 * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libutil.abilist:
38140 Likewise.
38141
38142 * scripts/data/c++-types-x32-linux-gnu.data: New file.
38143 * sysdeps/x86_64/x32/shlib-versions: Add x32 ABI entry.
38144
381452012-05-24 Joseph Myers <joseph@codesourcery.com>
38146
38147 [BZ #10846]
38148 [BZ #14036]
38149 * math/libm-test.inc (exp_test): Add test from bug 14036.
38150 (pow_test): Add test from bug 10846.
38151
38152 * math/gen-libm-test.pl (%beautify): Remove entries for exceptions
38153 and other flags.
38154 (special_function): Do not include flags in test name.
38155 (parse_args): Likewise.
38156 * sysdeps/i386/fpu/libm-test-ulps: Update.
38157 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
38158 * sysdeps/s390/fpu/libm-test-ulps: Likewise.
38159 * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
38160 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
38161
38162 * math/gen-libm-test.pl (%beautify): Add entries for underflow
38163 exceptions.
38164 * math/libm-test.inc ("Philosophy"): Update comment about
38165 exception testing.
38166 (UNDERFLOW_EXCEPTION): New macro.
38167 (UNDERFLOW_EXCEPTION_OK): Likewise.
38168 (UNDERFLOW_EXCEPTION_FLOAT): Likewise.
38169 (UNDERFLOW_EXCEPTION_OK_FLOAT): Likewise.
38170 (UNDERFLOW_EXCEPTION_DOUBLE): Likewise.
38171 (UNDERFLOW_EXCEPTION_LDOUBLE_IBM): Likewise.
38172 (INVALID_EXCEPTION_OK): Update value.
38173 (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
38174 (OVERFLOW_EXCEPTION_OK): Likewise.
38175 (IGNORE_ZERO_INF_SIGN): Likewise.
38176 (test_exceptions): Handle underflow exceptions.
38177 (acos_test): Update for underflow exception expectations.
38178 (cexp_test): Likewise.
38179 (clog_test): Likewise.
38180 (clog10_test): Likewise.
38181 (csqrt_test): Likewise.
38182 (ctan_test): Likewise.
38183 (ctanh_test): Likewise.
38184 (exp_test): Likewise.
38185 (exp10_test): Likewise.
38186 (exp2_test): Likewise.
38187 (expm1_test): Likewise.
38188 (fma_test): Likewise.
38189 (j0_test): Likewise.
38190 (jn_test): Likewise.
38191 (nexttoward_test): Likewise.
38192 (pow_test): Likewise.
38193 (scalbn_test): Likewise.
38194 (scalbln_test): Likewise.
38195 (tan_test): Likewise.
38196 (y1_test): Likewise.
38197 * sysdeps/i386/fpu/libm-test-ulps: Update.
38198 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
38199
382002012-05-23 David S. Miller <davem@davemloft.net>
38201
38202 * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c
38203 (__libc_sigaction): Remove unused local variables.
38204
382052012-05-23 H.J. Lu <hongjiu.lu@intel.com>
38206
38207 * sysdeps/unix/sysv/linux/x86_64/x32/configure: New file.
38208
382092012-05-23 Paul Eggert <eggert@cs.ucla.edu>
38210
38211 mktime: avoid signed integer overflow
38212 * time/mktime.c (__mktime_internal): Do not mishandle the case
38213 where diff == INT_MIN.
38214
38215 mktime: simplify computation of average
38216 * time/mktime.c (ranged_convert): Use new time_t_avg function
38217 instead of rolling our own (probably-slower) code.
38218
38219 mktime: do not assume signed right shift propagates sign bit
38220 * time/mktime.c (isdst_differ): New static function.
38221 (__mktime_internal): No need to normalize tm_isdst now.
38222 (__mktime_internal, not_equal_tm): Use isdst_differ to compare
38223 tm_isdst values.
38224
38225 mktime: merge another wrapv change from gnulib
38226 * time/mktime.c (TYPE_MAXIMUM): Rework slightly to avoid diagnostics
38227 from some compilers.
38228
38229 mktime: remove incorrect attempt at unusual arithmetics
38230 * time/mktime.c (TYPE_ONES_COMPLEMENT, TYPE_SIGNED_MAGNITUDE): Remove.
38231 The code didn't really work on such machines anyway.
38232 (TYPE_MINIMUM): Assume two's complement.
38233 (twos_complement_arithmetic): Verify that long_int and time_t
38234 are two's complement (or unsigned, in the latter case).
38235
38236 mktime: check signed shifts on long_int and time_t, too
38237 * time/mktime.c (SHR): Check that shifts work as desired
38238 on the types long_int and time_t too, as SHR is used on
38239 such types.
38240
38241 mktime: do not assume 'long' is wide enough
38242 * time/mktime.c (verify): Move decl up.
38243 (long_int): New type.
38244 (leapyear, ydhms_diff, guess_time_tm, __mktime_internal): Use it,
38245 to remove assumption in the code that 'long' is wide enough to
38246 store year values. This assumption is not true on x32 and on
38247 some non-glibc platforms.
38248
38249 mktime: merge wrapv change from gnulib
38250 * time/mktime.c (WRAPV): New macro.
38251 (time_t_avg, time_t_add_ok, time_t_int_add_ok): New static functions.
38252 (guess_time_tm, __mktime_internal): Do not assume that signed
38253 integer overflow wraps around; modern compilers generate code
38254 where this assumption is no longer valid.
38255
382562012-05-23 H.J. Lu <hongjiu.lu@intel.com>
38257
38258 * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
38259 Replace "jmp L(pseudo_end)" with "ret".
38260 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_ERROR_HANDLER):
38261 Likewise.
38262
382632012-05-23 Andreas Jaeger <aj@suse.de>
38264
38265 * sysdeps/unix/sysv/linux/syscalls.list: Add poll.
38266 * sysdeps/unix/sysv/linux/poll.c: Remove file.
38267
382682012-05-23 Andreas Jaeger <aj@suse.de>
38269 Maximilian Attems <max@stro.at>
38270
38271 * sysdeps/unix/sysv/linux/sys/reboot.h (RB_SW_SUSPEND, RB_KEXEC):
38272 New macros.
38273
382742012-05-23 H.J. Lu <hongjiu.lu@intel.com>
38275
38276 * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Rearrange
38277 code so that pseudo_end is just ret and the stack pointer is
38278 correct also for static library in error case.
38279
382802012-05-23 Joseph Myers <joseph@codesourcery.com>
38281
38282 * sysdeps/unix/sysv/linux/powerpc/chown.c: Add comment suggesting
38283 move to syscalls.list.
38284 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Likewise.
38285 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
38286 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
38287 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
38288
38289 * manual/install.texi (Running make install): Do not mention Linux
38290 kernel version for which pt_chown is not needed.
38291 (Linux): Do not mention problems with nscd with 2.0 kernels.
38292 * INSTALL: Regenerated.
38293
382942012-05-23 Andreas Jaeger <aj@suse.de>
38295
38296 * sysdeps/unix/sysv/linux/powerpc/bits/mman.h
38297 (MADV_DONTDUMP,MADV_DODUMP): New macros from Linux 3.4.
38298 macro.
38299 * sysdeps/unix/sysv/linux/s390/bits/mman.h
38300 (MADV_DONTDUMP,MADV_DODUMP): Likewise.
38301 * sysdeps/unix/sysv/linux/sh/bits/mman.h
38302 (MADV_DONTDUMP,MADV_DODUMP): Likewise.
38303 * sysdeps/unix/sysv/linux/i386/bits/mman.h
38304 (MADV_DONTDUMP,MADV_DODUMP): Likewise.
38305 * sysdeps/unix/sysv/linux/sparc/bits/mman.h
38306 (MADV_DONTDUMP,MADV_DODUMP): Likewise.
38307 * sysdeps/unix/sysv/linux/x86_64/bits/mman.h
38308 (MADV_DONTDUMP,MADV_DODUMP): Likewise.
38309 * sysdeps/unix/sysv/linux/bits/in.h
38310 (IP_MULTICAST_ALL,IP_UNICAST_IF): Likewise.
38311
383122012-05-22 Roland McGrath <roland@hack.frob.com>
38313
38314 * sysdeps/unix/sysv/linux/dl-vdso.h (CHECK_HASH): Macro removed.
38315 (PREPARE_VERSION): Just use assert instead, it will be elided
38316 under [NDEBUG] anyway.
38317
383182012-05-22 H.J. Lu <hongjiu.lu@intel.com>
38319
38320 * sysdeps/unix/sysv/linux/Makefile: Include
38321 $(firstword $(wildcard $(sysdirs:=/sysctl.mk))).
38322 (sysdep_routines): Remove sysctl.
38323 * sysdeps/unix/sysv/linux/bits/sysctl.h: New file.
38324 * sysdeps/unix/sysv/linux/sysctl.mk: Likewise.
38325 * sysdeps/unix/sysv/linux/x86_64/bits/sysctl.h: Likewise.
38326 * sysdeps/unix/sysv/linux/x86_64/x32/sysctl.mk: Likewise.
38327 * sysdeps/unix/sysv/linux/sys/sysctl.h: Include <bits/sysctl.h>.
38328
383292012-05-22 Andreas Jaeger <aj@suse.de>
38330
38331 * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Rearrange code so
38332 that pseudo_end is just ret and the stack pointer is correct also
38333 for static library in error case.
38334
383352012-05-22 Paul Pluzhnikov <ppluzhnikov@google.com>
38336
38337 [BZ #14122]
38338 * nss/nsswitch.c (defconfig_entries): New variable.
38339 (__nss_database_lookup): Don't leak defconfig entries.
38340 (nss_parse_service_list): Don't leak on error paths.
38341 (free_database_entries): New function.
38342 (free_defconfig): New function.
38343 (free_mem): Move common code to free_database_entries.
38344
383452012-05-22 H.J. Lu <hongjiu.lu@intel.com>
38346
38347 * sysdeps/unix/sysv/linux/x86_64/x32/Makefile (sysdep_routines):
38348 Add arch_prctl.
38349 * sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c: New file.
38350
38351 * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
38352 (posix_fallocate): Use INTERNAL_SYSCALL_TYPES if it is defined.
38353 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INLINE_SYSCALL_TYPES):
38354 New macro.
38355 (INTERNAL_SYSCALL_NCS_TYPES): Likewise.
38356 (INTERNAL_SYSCALL_TYPES): Likewise.
38357 (LOAD_ARGS_TYPES_[1-6]): Likewise.
38358 (LOAD_REGS_TYPES_[1-6]): Likewise.
38359 (LOAD_ARGS_[1-6]): Use LOAD_ARGS_TYPES_[1-6].
38360 (LOAD_REGS_[1-6]): Use LOAD_REGS_TYPES_[1-6].
38361
383622012-05-22 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
38363
38364 * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Add compat symbol
38365 copysignl for GLIBC_2_0.
38366 * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Add compat symbol
38367 finitel for GLIBC_2.0 and __finitel for GLIBC_2_1.
38368 * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: Add compat symbol
38369 logbl for GLIBC_2_0.
38370 * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Likewise.
38371 * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Likewise.
38372
383732012-05-22 H.J. Lu <hongjiu.lu@intel.com>
38374
38375 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Don't include
38376 <bits/wordsize.h>. Check __x86_64__ instead of __WORDSIZE.
38377
38378 * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
38379 Use "neg %eax".
38380
38381 * time/mktime.c: Update copyright years.
38382
383832012-05-22 Paul Eggert <eggert@cs.ucla.edu>
38384
38385 mktime: merge comment-quoting-style change from gnulib
38386 * time/mktime.c: Quote 'like this' in comments.
38387 The GNU coding standards suggest that we no longer quote `like this',
38388 as "`" and "'" are typically rendered asymmetrically nowadays.
38389 The typical gnulib style is to quote 'like this' when quoting
38390 code, and "like this" when quoting English.
38391
38392 * time/mktime.c (compile-command): Add "-I.".
38393
38394 mktime: merge mktime-internal.h change from gnulib
38395 * time/mktime.c [!_LIBC]: Include "mktime-internal.h".
38396
38397 mktime: merge time_r change from gnulib
38398 * time/mktime.c [!_LIBC]: Do not include "time_r.h".
38399
38400 mktime: merge DEBUG change from gnulib
38401 * time/mktime.c (mktime) [DEBUG]: #undef before #define-ing, in
38402 case system <time.h> has a #define.
38403
38404 mktime: merge <sys/types.h> change from gnulib
38405 * time/mktime.c: Do not include <sys/types.h>; no longer needed,
38406 since <time.t> is now guaranteed to define time_t.
38407
38408 mktime: merge HAVE_CONFIG_H change from gnulib
38409 * time/mktime.c: Include <config.h> if !_LIBC, not if HAVE_CONFIG_H.
38410
384112012-05-22 H.J. Lu <hongjiu.lu@intel.com>
38412
38413 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_SET_ERRNO):
38414 Use "neg %eax".
38415
38416 * sysdeps/unix/sysv/linux/bits/resource.h (RLIM_INFINITY): Use
38417 __rlim_t cast.
38418 (struct rusage): Use anonymous union to pad each field to
38419 __syscall_slong_t.
38420
384212012-05-21 David S. Miller <davem@davemloft.net>
38422
38423 * Makefules (o-iterator): Remove .s cases.
38424 (compile-command.s): Delete.
38425 (COMPILE.s): Delete.
38426 * sysdeps/unix/make-syscalls.sh: Remove .s file tests.
38427
384282012-05-21 Joseph Myers <joseph@codesourcery.com>
38429
38430 * configure.in (libc_cv_predef_stack_protector): Only consider
38431 "foobar" and "__stack_chk_fail" lines in libc_undefs.
38432 * configure: Regenerated.
38433
384342012-05-21 H.J. Lu <hongjiu.lu@intel.com>
38435
38436 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_SET_ERRNO):
38437 New macro. Use R*LP on int and pointer.
38438 (SYSCALL_ERROR_HANDLER): Use SYSCALL_SET_ERRNO.
38439 * sysdeps/unix/sysv/linux/x86_64/x32/lseek.S: New file.
38440 * sysdeps/unix/sysv/linux/x86_64/x32/llseek.S: Likewise.
38441 * sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h: Likewise.
38442
38443 * sysdeps/gnu/bits/utmp.h (struct lastlog): Check
38444 [__WORDSIZE_TIME64_COMPAT32] instead of
38445 [__WORDSIZE == 64 && __WORDSIZE_COMPAT32].
38446 (struct utmp): Likewise.
38447 * sysdeps/gnu/bits/utmpx.h (struct utmpx): Likewise.
38448 * sysdeps/powerpc/powerpc32/bits/wordsize.h (__WORDSIZE_COMPAT32):
38449 Renamed to ...
38450 (__WORDSIZE_TIME64_COMPAT32): This.
38451 * sysdeps/powerpc/powerpc64/bits/wordsize.h: Likewise.
38452 * sysdeps/sparc/sparc32/bits/wordsize.h: Likewise.
38453 * sysdeps/sparc/sparc64/bits/wordsize.h: Likewise.
38454 * sysdeps/unix/sysv/linux/powerpc/bits/wordsize.h: Likewise.
38455 * sysdeps/x86_64/bits/wordsize.h (__WORDSIZE_COMPAT32): Removed.
38456 (__WORDSIZE_TIME64_COMPAT32): New macro.
38457
384582012-05-21 Andreas Jaeger <aj@suse.de>
38459
38460 * sysdeps/i386/i686/multiarch/wcschr-c.c: Redefine libc_hidden_def
38461 only if [SHARED]. Add prototype for __wcschr_ia32.
38462
384632012-05-21 Roland McGrath <roland@hack.frob.com>
38464
38465 * sysdeps/x86_64/setjmp.S [PTR_MANGLE] [__ILP32__]: Preserve high bits
38466 of %rbp unmolested in the jmp_buf while mangling the low bits.
38467 * sysdeps/x86_64/__longjmp.S [PTR_DEMANGLE] [__ILP32__]: Restore the
38468 unmolested high bits of %rbp while demangling the low bits.
38469 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Likewise.
38470
384712012-05-21 Andreas Jaeger <aj@suse.de>
38472
38473 * include/shlib-compat.h (libc_sunrpc_symbol): New macro.
38474 * sunrpc/svc_simple.c: Use it for registerrpc.
38475 * sunrpc/xcrypt.c: Use it for passwd2des.
38476
38477 * malloc/malloc.c: Include shlib-compat.h for SHLIB_COMPAT.
38478
384792012-05-21 H.J. Lu <hongjiu.lu@intel.com>
38480
38481 * sysdeps/unix/sysv/linux/bits/statvfs.h (_STATVFSBUF_F_UNUSED):
38482 Don't define if [__SYSCALL_WORDSIZE != 32].
38483 * sysdeps/x86_64/bits/wordsize.h (__SYSCALL_WORDSIZE):
38484 New macro.
38485
384862012-05-21 Bruno Haible <bruno@clisp.org>
38487 Andreas Jaeger <aj@suse.de>
38488
38489 [BZ #13691], Revert breakage of iconv() converter for TCVN-5712.
38490 * iconvdata/tcvn5712-1.c (BODY for FROM_LOOP): Don't consider
38491 inptr and inend for must_buffer_ch.
38492 * wcsmbs/tst-mbsnrtowcs.c: Remove file.
38493 * wcsmbs/Makefile (tests): Remove tst-mbsnrtowcs.
38494 * stdio-common/Makefile (tests): Remove bug15.
38495 (bug15-ENV): Remove macro.
38496 * stdio-common/bug15.c: Remove, we do not support vi_VN.TCVN5712-1
38497 anymore.
38498
384992012-05-19 Andreas Jaeger <aj@suse.de>
38500 Roland McGrath <roland@hack.frob.com>
38501
38502 * manual/contrib.texi: Completely rewritten. It contains now an
38503 alphabetical list of contributors and their contributions.
38504
385052012-05-21 Richard Henderson <rth@twiddle.net>
38506
38507 * misc/getauxval.c (__getauxval): Use unsigned long int.
38508 * misc/sys/auxv.h: Include <sys/cdefs.h>.
38509 (getauxval): Use unsigned long int.
38510
385112012-05-21 H.J. Lu <hongjiu.lu@intel.com>
38512
38513 * sysdeps/unix/sysv/linux/x86_64/x32/syscalls.list: New file.
38514
385152012-05-21 Roland McGrath <roland@hack.frob.com>
38516
38517 * malloc/malloc.c [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_16)]
38518 (MALLOC_ALIGNMENT): Set it to the greater of 2 * SIZE_SZ and
38519 __alignof__ (long double).
38520
385212012-05-21 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
38522
38523 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
38524
385252012-05-20 Richard Henderson <rth@twiddle.net>
38526
38527 * misc/getauxval.c: New file.
38528 * misc/sys/auxv.h: New file.
38529 * misc/Makefile (headers): Add sys/auxv.h, bits/hwcap.h.
38530 (routines): Add getauxval.
38531 * misc/Versions (GLIBC_2.16): Add __getauxval, getauxval.
38532 * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Add _dl_auxv.
38533 * elf/dl-sysdep.c (_dl_auxv): Remove.
38534 (_dl_sysdep_start, _dl_show_auxv): Use GLRO to access _dl_auxv.
38535 * elf/dl-support.c (_dl_auxv): New variable.
38536 (_dl_aux_init): Initialize it.
38537 * manual/startup.texi (Auxiliary Vector): New node.
38538 * sysdeps/generic/bits/hwcap.h: New file.
38539 * sysdeps/powerpc/bits/hwcap.h: New file, split out from ...
38540 * sysdeps/powerpc/sysdep.h: ... here. Include it.
38541 * sysdeps/sparc/bits/hwcap.h: New file, split out from ...
38542 * sysdeps/sparc/sysdep.h: ... here. Include it.
38543 * sysdeps/unix/sysv/linux/s390/bits/hwcap.h: New file.
38544 * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Update.
38545 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
38546 Update.
38547 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist: Update.
38548 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Update.
38549 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Update.
38550 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Update.
38551 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Update.
38552 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Update.
38553 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Update.
38554 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Update.
38555
385562012-05-19 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
38557
38558 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
38559
385602012-05-19 David S. Miller <davem@davemloft.net>
38561
38562 * sysdeps/sparc/fpu/libm-test-ulps: Update.
38563
385642012-05-19 Joseph Myers <joseph@codesourcery.com>
38565
38566 [BZ #14123]
38567 * math/s_ccosh.c: Include <float.h>
38568 (__ccosh): Avoid internal overflow calculating sinh and cosh
38569 values before multiplying by sin and cos values.
38570 * math/s_ccoshf.c: Likewise.
38571 * math/s_ccoshl.c: Likewise.
38572 * math/s_csin.c: Likewise.
38573 * math/s_csinf.c: Likewise.
38574 * math/s_csinl.c: Likewise.
38575 * math/s_csinh.c: Likewise.
38576 * math/s_csinhf.c: Likewise.
38577 * math/s_csinhl.c: Likewise.
38578 * math/libm-test.inc (ccos_test): Add more tests.
38579 (ccosh_test): Likewise.
38580 (csin_test): Likewise.
38581 (csinh_test): Likewise.
38582 * sysdeps/i386/fpu/libm-test-ulps: Update.
38583 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
38584
385852012-05-19 H.J. Lu <hongjiu.lu@intel.com>
38586
38587 * sysdeps/unix/sysv/linux/wordsize-64/preadv.c: New file.
38588 * sysdeps/unix/sysv/linux/wordsize-64/pwritev.c: Likewise.
38589
38590 * sysdeps/x86_64/x32/_itoa.h: Add comment.
38591
385922012-05-19 Joseph Myers <joseph@codesourcery.com>
38593
38594 * sysdeps/powerpc/soft-fp/Makefile: Remove file.
38595 * sysdeps/powerpc/soft-fp/Subdirs: Likewise.
38596 * sysdeps/powerpc/soft-fp/Versions: Likewise.
38597 * sysdeps/powerpc/soft-fp/q_add.c: Likewise.
38598 * sysdeps/powerpc/soft-fp/q_cmp.c: Likewise.
38599 * sysdeps/powerpc/soft-fp/q_cmpe.c: Likewise.
38600 * sysdeps/powerpc/soft-fp/q_div.c: Likewise.
38601 * sysdeps/powerpc/soft-fp/q_dtoq.c: Likewise.
38602 * sysdeps/powerpc/soft-fp/q_feq.c: Likewise.
38603 * sysdeps/powerpc/soft-fp/q_fge.c: Likewise.
38604 * sysdeps/powerpc/soft-fp/q_fgt.c: Likewise.
38605 * sysdeps/powerpc/soft-fp/q_fle.c: Likewise.
38606 * sysdeps/powerpc/soft-fp/q_flt.c: Likewise.
38607 * sysdeps/powerpc/soft-fp/q_fne.c: Likewise.
38608 * sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
38609 * sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
38610 * sysdeps/powerpc/soft-fp/q_mul.c: Likewise.
38611 * sysdeps/powerpc/soft-fp/q_neg.c: Likewise.
38612 * sysdeps/powerpc/soft-fp/q_qtod.c: Likewise.
38613 * sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
38614 * sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
38615 * sysdeps/powerpc/soft-fp/q_qtos.c: Likewise.
38616 * sysdeps/powerpc/soft-fp/q_qtou.c: Likewise.
38617 * sysdeps/powerpc/soft-fp/q_qtoull.c: Likewise.
38618 * sysdeps/powerpc/soft-fp/q_sqrt.c: Likewise.
38619 * sysdeps/powerpc/soft-fp/q_stoq.c: Likewise.
38620 * sysdeps/powerpc/soft-fp/q_sub.c: Likewise.
38621 * sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
38622 * sysdeps/powerpc/soft-fp/q_util.c: Likewise.
38623 * sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
38624 * sysdeps/powerpc/soft-fp/sfp-machine.h: Likewise.
38625
386262012-05-18 Andreas Jaeger <aj@suse.de>
38627
38628 * csu/.gitignore: Delete.
38629
386302012-05-18 H.J. Lu <hongjiu.lu@intel.com>
38631
38632 * sysdeps/unix/sysv/linux/bits/timex.h: Include <bits/types.h>.
38633 (timex): Use __syscall_slong_t.
38634
386352012-05-18 Andreas Jaeger <aj@suse.de>
38636 Carlos O'Donell <carlos_odonell@mentor.com>
38637
38638 * manual/install.texi (Configuring and compiling): Update
38639 description about files modified in the source directory.
38640 * INSTALL: Regenerated.
38641
386422012-05-18 H.J. Lu <hongjiu.lu@intel.com>
38643
38644 * sysdeps/unix/x86_64/sysdep.S: Use RAX_LP to access return
38645 value. Use "or" to set return value to -1.
38646 * sysdeps/unix/sysv/linux/x86_64/sysdep.S: Use RAX_LP to
38647 negate return value.
38648
386492012-05-18 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
38650
38651 * sysdeps/powerpc/powerpc32/power4/Makefile (CFLAGS-wordcopy.c)
38652 (CFLAGS-memmove.c): remove -ftree-loop-linear which causes a build
38653 failure if the compiler has Graphite support disabled.
38654 * sysdeps/powerpc/powerpc32/power4/fpu/Makefile (CFLAGS-mpa.c):
38655 Likewise.
38656 * sysdeps/powerpc/powerpc64/power4/Makefile (CFLAGS-wordcopy.c)
38657 (CFLAGS-memmove.c): Likewise.
38658 * sysdeps/powerpc/powerpc64/power4/fpu/Makefile (CFLAGS-mpa.c):
38659 Likewise.
38660
386612012-05-18 H.J. Lu <hongjiu.lu@intel.com>
38662
38663 * sysdeps/x86_64/x32/_itoa.h: New file.
38664
38665 * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): Use
38666 getdents system call only if kernel and user dirents have the
38667 same d_ino and d_off.
38668
38669 * stdio-common/_itoa.c: Check _ITOA_NEEDED instead of
38670 LLONG_MAX != LONG_MAX.
38671 (_itoa_word): Use _ITOA_WORD_TYPE on value.
38672 (_fitoa_word): Likewise.
38673
38674 * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: Fold copyright
38675 years.
38676 * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Likewise.
38677 * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: Likewise.
38678 * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Likewise.
38679
38680 * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: Don't
38681 include <bits/wordsize.h>. Check __x86_64__ instead of
38682 __WORDSIZE.
38683 (sigcontext): Use "__uint64_t" instead of "unsigned long int"
38684 if __x86_64__ is defined. Use anonymous union on fpstate.
38685
38686 * sysdeps/unix/sysv/linux/x86_64/sys/user.h (user): Use
38687 anonymous union.
38688
386892012-05-18 Andreas Schwab <schwab@linux-m68k.org>
38690
38691 * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Use
38692 INTUSE on _dl_argv, and _rtld_local instead of _rtld_global.
38693 * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S [IS_IN_rtld]:
38694 Refer to _rtld_local_ro instead of _rtld_global_ro.
38695 * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S [IS_IN_rtld]:
38696 Likewise.
38697 * sysdeps/powerpc/powerpc64/__longjmp-common.S [IS_IN_rtld]:
38698 Likewise.
38699 * sysdeps/powerpc/powerpc64/setjmp-common.S [IS_IN_rtld]:
38700 Likewise.
38701 * sysdeps/powerpc/powerpc64/dl-trampoline.S [SHARED]: Likewise.
38702 * sysdeps/powerpc/powerpc64/dl-machine.h: Use _rtld_local instead
38703 of _rtld_global, and rtld_progname instead of _dl_argv[0].
38704
38705 * sysdeps/powerpc/powerpc32/dl-machine.c
38706 (__elf_machine_runtime_setup) [PROF]: Don't reference
38707 _dl_prof_resolve.
38708
387092012-05-18 Andreas Jaeger <aj@suse.de>
38710
38711 * sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Make inline
38712 function only available for GCCs before 3.4 since GCC 3.4
38713 introduced a builtin.
38714 (lrint): Likewise.
38715 (llrintf): Likewise.
38716 (llrint): Likewise.
38717 (fmaxf): Likewise.
38718 (fmax): Likewise.
38719 (fminf): Likewise.
38720 (fmin): Likewise.
38721 (rint): Likewise.
38722 (rintf): Likewise.
38723 (nearbyint): Likewise.
38724 (nearbyintf): Likewise.
38725 (ceil): Likewise.
38726 (ceilf): Likewise.
38727 (floor): Likewise.
38728 (floorf): Likewise.
38729
387302012-05-17 H.J. Lu <hongjiu.lu@intel.com>
38731
38732 * sysdeps/unix/sysv/linux/pselect.c (data): Use __syscall_ulong_t
38733 on both fields and cast pointer to __syscall_ulong_t.
38734
38735 * bits/types.h (__fsword_t): New type.
38736 * bits/typesizes.h (__FSWORD_T_TYPE): New macro.
38737 sysdeps/mach/hurd/bits/typesizes.h (__FSWORD_T_TYPE): Likewise.
38738 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
38739 (__FSWORD_T_TYPE): Likewise.
38740 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
38741 (__FSWORD_T_TYPE): Likewise.
38742 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
38743 (__FSWORD_T_TYPE): Likewise.
38744 * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h
38745 (__FSWORD_T_TYPE): Likewise.
38746 * sysdeps/unix/sysv/linux/bits/statfs.h (statfs): Replace
38747 __SWORD_TYPE with __fsword_t.
38748 (statfs64): Likewise.
38749
387502012-05-17 David S. Miller <davem@davemloft.net>
38751
38752 * crypt/sha512c-test.c (TIMEOUT): Increase to 32.
38753
387542012-05-17 Andreas Jaeger <aj@suse.de>
38755
38756 * elf/tst-relsort1.c (do_test): Fix function declaration to avoid
38757 warning.
38758
387592012-05-17 H.J. Lu <hongjiu.lu@intel.com>
38760
38761 * sysdeps/x86_64/tst-mallocalign1.c (test): Cast to unsigned long.
38762
387632012-05-17 Andreas Jaeger <aj@suse.de>
38764
38765 * sysdeps/i386/dl-machine.h (elf_machine_rel): Declare refsym only
38766 when it is used.
38767
387682012-05-17 Chris Metcalf <cmetcalf@tilera.com>
38769
38770 * stdio-common/bug22.c (TIMEOUT): Bump up from 30 to 60.
38771
387722012-05-17 H.J. Lu <hongjiu.lu@intel.com>
38773
38774 * sysdeps/x86_64/Makefile (tests): Add tst-mallocalign1.
38775 * sysdeps/x86_64/tst-mallocalign1.c: New file.
38776
387772012-05-17 Andreas Jaeger <aj@suse.de>
38778 Carlos O'Donell <carlos_odonell@mentor.com>
38779
38780 [BZ #14059]
38781 * sysdeps/x86_64/multiarch/init-arch.h
38782 (bit_YMM_Usable): Rename to...
38783 (bit_AVX_Usable): ... this.
38784 (bit_FMA4_Usable): New macro.
38785 (bit_XMM_state): New macro.
38786 (bit_YMM_state): New macro.
38787 [__ASSEMBLER__] (index_YMM_Usable): Rename to...
38788 [__ASSEMBLER__] (index_AVX_Usable): ... this.
38789 [__ASSEMBLER__] (index_FMA4_Usable): New macro.
38790 (CPUID_OSXSAVE): New macro.
38791 (CPUID_AVX): New macro.
38792 (CPUID_FMA4): New macro.
38793 (index_YMM_Usable): Rename to...
38794 (index_AVX_Usable): ... this.
38795 (HAS_AVX): Use HAS_ARCH_FEATURE.
38796 (HAS_FMA4): Likewise.
38797 (HAS_YMM_USABLE): Remove.
38798 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
38799 Enable AVX or FMA4 IFF YMM and XMM states are usable and the features
38800 are present.
38801 * sysdeps/x86_64/multiarch/strcmp.S: Use bit_AVX_Usable.
38802 * sysdeps/i386/i686/multiarch/Makefile: Add test-multiarch to tests.
38803 * sysdeps/x86_64/multiarch/Makefile: Likewise.
38804 * sysdeps/i386/i686/multiarch/test-multiarch.c: New file.
38805 * sysdeps/x86_64/multiarch/test-multiarch.c: New file.
38806
388072012-05-17 Chris Metcalf <cmetcalf@tilera.com>
38808
38809 * math/libm-test.c: Support platforms without multiple rounding modes.
38810 * math/bug-nextafter.c: Support platforms without FP exceptions.
38811 * math/bug-nexttoward.c: Likewise.
38812 * math/test-fenv.c: Likewise.
38813 * math/test-misc.c: Likewise.
38814 * stdlib/bug-getcontext.c: Likewise.
38815
388162012-05-17 Andreas Jaeger <aj@suse.de>
38817
38818 * manual/examples/search.c (critter_cmp): Change signature to
38819 avoid warnings.
38820 * manual/string.texi (Collation Functions): Likewise.
38821
388222012-05-16 H.J. Lu <hongjiu.lu@intel.com>
38823
38824 * bits/types.h: Fold copyright years.
38825 * bits/typesizes.h: Likewise.
38826 * sysdeps/mach/hurd/bits/typesizes.h: Likewise.
38827 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h: Likewise.
38828 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h: Likewise.
38829 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h: Likewise.
38830 * time/time.h: Likewise.
38831
388322012-05-16 Paul Pluzhnikov <ppluzhnikov@google.com>
38833
38834 [BZ #208]
38835 * malloc.c (int_mallinfo): Add parameter to accumulate statistics
38836 in instead of returning them. Return void.
38837 (__libc_mallinfo): Accumulate over all arenas.
38838 (__malloc_stats): Adjust for change in int_mallinfo interface.
38839
388402012-05-16 Roland McGrath <roland@hack.frob.com>
38841
38842 [BZ #10375]
38843 * configure.in (NM): Add AC_CHECK_TOOL for it.
38844 (libc_extra_cflags): New substituted variable.
38845 Check for -fstack-protector being used implicitly.
38846 * configure: Regenerated.
38847 * config.make.in (config-extra-cflags): New variable,
38848 gets @libc_extra_cflags@.
38849 * Makeconfig (CFLAGS): Add $(config-extra-cflags) near the front.
38850
38851 [BZ #10375]
38852 * configure.in: Check for _FORTIFY_SOURCE being predefined.
38853 (CPPUNDEFS): New substituted variable; add -U_FORTIFY_SOURCE if needed.
38854 * configure: Regenerated.
38855 * config.make.in (CPPUNDEFS): New substituted variable.
38856 * Makeconfig (CPPFLAGS): Put $(CPPUNDEFS) at the beginning.
38857 * Makerules ($(stdio_lim:h=st)): Use $(CPPUNDEFS).
38858 * time/ctime.c: Don't #undef __OPTIMIZE__ and ctime.
38859
388602012-05-16 H.J. Lu <hongjiu.lu@intel.com>
38861
38862 * sysdeps/unix/sysv/linux/bits/mqueue.h: Include <bits/types.h>.
38863 (mq_attr): Use __syscall_slong_t.
38864
388652012-05-16 H.J. Lu <hongjiu.lu@intel.com>
38866
38867 * sysdeps/unix/sysv/linux/x86_64/bits/stat.h (_STAT_VER_SVR4):
38868 Check __x86_64__ instead of __WORDSIZE.
38869 (_STAT_VER_LINUX): Likewise.
38870 (stat): Check __x86_64__ instead of __WORDSIZE. Use
38871 __syscall_ulong_t and __syscall_slong_t.
38872 (stat64): Likewise.
38873
388742012-05-16 H.J. Lu <hongjiu.lu@intel.com>
38875
38876 * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h: New file.
38877
388782012-05-16 H.J. Lu <hongjiu.lu@intel.com>
38879
38880 * sysdeps/unix/sysv/linux/x86_64/bits/ipctypes.h: New file.
38881
388822012-05-16 H.J. Lu <hongjiu.lu@intel.com>
38883
38884 * sysdeps/unix/sysv/linux/bits/ipc.h (ipc_perm): Use
38885 __syscall_ulong_t.
38886
38887 * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Don't
38888 include <bits/wordsize.h>. Check __x86_64__ instead of
38889 __WORDSIZE.
38890 (greg_t): Use "__extension__ long long int" if __x86_64__ is
38891 defined.
38892 (mcontext_t): Replace "unsigned long" with "unsigned long long".
38893
38894 * sysdeps/unix/sysv/linux/x86_64/sys/user.h: Don't
38895 include <bits/wordsize.h>. Check __x86_64__ instead of
38896 __WORDSIZE.
38897 (user_regs_struct): Use "__extension__ unsigned long long"
38898 instead of "unsigned long" if __x86_64__ is defined.
38899 (user): Likewise. Pad after pointer field if __ILP32__ is
38900 defined.
38901
389022012-05-16 Joseph Myers <joseph@codesourcery.com>
38903
38904 * configure.in (makeinfo): Require version 4.5 or later. Allow
38905 versions 5 to 9.
38906 * configure: Regenerated.
38907 * manual/install.texi (texinfo): Increase version requirement to
38908 4.5 or later.
38909 * INSTALL: Regenerated.
38910
38911 * include/stdc-predef.h (__STDC_ISO_10646__): Increase to 201103L.
38912
389132012-05-16 H.J. Lu <hongjiu.lu@intel.com>
38914
38915 * sysdeps/x86_64/x32/gmp-mparam.h: New file.
38916
38917 * sysdeps/x86_64/x32/ffs.c: New file.
38918
38919 * sysdeps/unix/sysv/linux/x86_64/bits/shm.h (shmatt_t): Use
38920 __syscall_ulong_t.
38921 (shmid_ds): Add __unused1 and __unused2 only if __x86_64__ isn't
38922 defined. Use __syscall_ulong_t.
38923 (shminfo): Use __syscall_ulong_t.
38924 (shm_info): Likewise.
38925
38926 * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semid_ds): Use
38927 __syscall_ulong_t.
38928
38929 * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Don't include
38930 <bits/wordsize.h>.
38931 (msgqnum_t): Use __syscall_ulong_t.
38932 (msglen_t): Likewise.
38933 (msqid_ds): Check __x86_64__ instead of __WORDSIZE. Use
38934 __syscall_ulong_t.
38935
38936 * sysdeps/unix/sysv/linux/x86_64/bits/a.out.h: Don't include
38937 <bits/wordsize.h>. Check __x86_64__ instead of __WORDSIZE.
38938
38939 * sysdeps/unix/sysv/linux/x86_64/bits/siginfo.h: New file.
38940
38941 * sysdeps/x86_64/x32/divdi3.c: New dummy file.
38942 * sysdeps/x86_64/x32/symbol-hacks.h: Likewise.
38943
38944 * sysvipc/sys/msg.h (msgbuf): Replace long int with
38945 __syscall_slong_t.
38946
38947 * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Don't
38948 include <bits/wordsize.h>. Check __x86_64__ instead of
38949 __WORDSIZE.
38950
38951 * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h (elf_greg_t): Use
38952 "unsigned long long int" if __x86_64__ is defined.
38953 (elf_fpregset_t): Check __x86_64__ instead of __WORDSIZE.
38954
38955 * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Don't include
38956 <bits/wordsize.h>. Check __x86_64__ instead of __WORDSIZE.
38957 (DR_CONTROL_RESERVED): Use ULL instead of UL suffix.
38958
38959 * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: Include
38960 <stdint.h>.
38961 (GET_PC): Cast to uintptr_t first.
38962 (GET_FRAME): Likewise.
38963 (GET_STACK): Likewise.
38964
38965 * sysdeps/unix/sysv/linux/x86_64/x32/alphasort.c: New file.
38966 * sysdeps/unix/sysv/linux/x86_64/x32/alphasort64.c: Likewise.
38967 * sysdeps/unix/sysv/linux/x86_64/x32/fseeko.c: Likewise.
38968 * sysdeps/unix/sysv/linux/x86_64/x32/fseeko64.c: Likewise.
38969 * sysdeps/unix/sysv/linux/x86_64/x32/ftello.c: Likewise.
38970 * sysdeps/unix/sysv/linux/x86_64/x32/ftello64.c: Likewise.
38971 * sysdeps/unix/sysv/linux/x86_64/x32/ftw.c: Likewise.
38972 * sysdeps/unix/sysv/linux/x86_64/x32/ftw64.c: Likewise.
38973 * sysdeps/unix/sysv/linux/x86_64/x32/glob.c: Likewise.
38974 * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos.c: Likewise.
38975 * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos64.c: Likewise.
38976 * sysdeps/unix/sysv/linux/x86_64/x32/iofopen.c: Likewise.
38977 * sysdeps/unix/sysv/linux/x86_64/x32/iofopen64.c: Likewise.
38978 * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos.c: Likewise.
38979 * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos64.c: Likewise.
38980 * sysdeps/unix/sysv/linux/x86_64/x32/lockf.c: Likewise.
38981 * sysdeps/unix/sysv/linux/x86_64/x32/lockf64.c: Likewise.
38982 * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c: Likewise.
38983 * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c: Likewise.
38984 * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c: Likewise.
38985 * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c: Likewise.
38986 * sysdeps/unix/sysv/linux/x86_64/x32/scandir.c: Likewise.
38987 * sysdeps/unix/sysv/linux/x86_64/x32/scandir64.c: Likewise.
38988 * sysdeps/unix/sysv/linux/x86_64/x32/scandirat.c: Likewise.
38989 * sysdeps/unix/sysv/linux/x86_64/x32/scandirat64.c: Likewise.
38990 * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile.c: Likewise.
38991 * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile64.c: Likewise.
38992 * sysdeps/unix/sysv/linux/x86_64/x32/versionsort.c: Likewise.
38993 * sysdeps/unix/sysv/linux/x86_64/x32/versionsort64.c: Likewise.
38994
389952012-05-16 Andreas Schwab <schwab@linux-m68k.org>
38996
38997 * Makerules (+depfiles): Also collect depfiles from .oS in
38998 $(extra-objs).
38999 * sysdeps/ieee754/ldbl-opt/Makefile (extra-objs): Add $(addsuffix
39000 .oS, $(libnldbl-routines)).
39001
39002 * Makerules (native-compile-mkdep-flags): Define.
39003 * sunrpc/Makefile (extra-objs): Add $(addprefix
39004 cross-,$(rpcgen-objs)), don't add $(cross-rpcgen-objs).
39005 ($(cross-rpcgen-objs)): Use $(native-compile-mkdep-flags) instead
39006 of $(compile-mkdep-flags). Depend on $(before-compile) instead of
39007 calling $(make-target-directory).
39008
390092012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39010
39011 * bits/types.h (__snseconds_t): Removed.
39012 * time/time.h (struct timespec): Replace __snseconds_t with
39013 __syscall_slong_t.
39014 * bits/typesizes.h (__SNSECONDS_T_TYPE): Removed.
39015 * sysdeps/mach/hurd/bits/typesizes.h (__SNSECONDS_T_TYPE):
39016 Likewise.
39017 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
39018 (__SNSECONDS_T_TYPE): Likewise.
39019 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
39020 (__SNSECONDS_T_TYPE): Likewise.
39021 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
39022 (__SNSECONDS_T_TYPE): Likewise.
39023
390242012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39025
39026 * sysdeps/mach/hurd/bits/typesizes.h
39027 (__SYSCALL_SLONG_TYPE): New macro.
39028 (__SYSCALL_ULONG_TYPE): Likewise.
39029
390302012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39031
39032 * bits/types.h (__syscall_slong_t): New type.
39033 (__syscall_ulong_t): Likewise.
39034
39035 * bits/typesizes.h (__SYSCALL_SLONG_TYPE): New macro.
39036 (__SYSCALL_ULONG_TYPE): Likewise.
39037 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
39038 (__SYSCALL_SLONG_TYPE): Likewise.
39039 (__SYSCALL_ULONG_TYPE): Likewise.
39040 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
39041 (__SYSCALL_SLONG_TYPE): Likewise.
39042 (__SYSCALL_ULONG_TYPE): Likewise.
39043 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
39044 (__SYSCALL_SLONG_TYPE): Likewise.
39045 (__SYSCALL_ULONG_TYPE): Likewise.
39046
390472012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39048
39049 * sysdeps/unix/sysv/linux/x86_64/Makefile (gen-as-const-headers):
39050 Add sigaltstack-offsets.sym.
39051 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Include
39052 <sigaltstack-offsets.h>.
39053 (CALL_FAIL): Use RSP_LP to operate on stack. Use RDI_LP on
39054 longjmp_msg pointer.
39055 (____longjmp_chk): Use R8_LP and RDX_LP on SP and PC. Use
39056 R*_LP, sizeSS, oSS_FLAGS, oSS_SP and oSS_SIZE for alternate
39057 signal stack.
39058 * sysdeps/unix/sysv/linux/x86_64/sigaltstack-offsets.sym: New.
39059
390602012-05-15 Joseph Myers <joseph@codesourcery.com>
39061
39062 * elf/stackguard-macros.h: Remove file.
39063 * sysdeps/generic/stackguard-macros.h: New file.
39064 * sysdeps/i386/stackguard-macros.h: Likewise.
39065 * sysdeps/powerpc/powerpc32/stackguard-macros.h: Likewise.
39066 * sysdeps/powerpc/powerpc64/stackguard-macros.h: Likewise.
39067 * sysdeps/s390/s390-32/stackguard-macros.h: Likewise.
39068 * sysdeps/s390/s390-64/stackguard-macros.h: Likewise.
39069 * sysdeps/sparc/sparc32/stackguard-macros.h: Likewise.
39070 * sysdeps/sparc/sparc64/stackguard-macros.h: Likewise.
39071 * sysdeps/x86_64/stackguard-macros.h: Likewise.
39072 * nptl/tst-stackguard1.c: Include <stackguard-macros.h> not
39073 <elf/stackguard-macros.h>.
39074
39075 [BZ #14109]
39076 * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h (elf_vrreg_t): Use
39077 __aligned__ in attribute.
39078 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (__psw_t): Likewise.
39079 (gregset_t): Likewise.
39080
390812012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39082
39083 * sysdeps/x86_64/Implies (wordsize-64): Moved to ....
39084 * sysdeps/x86_64/64/Implies-after: Here. New file.
39085 * sysdeps/x86_64/x32/Implies-after: New file.
39086
390872012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39088
39089 * sysdeps/x86_64/dl-trampoline.h: Use R*_LP to pass arguments
39090 and access return value for _dl_profile_fixup. Use R10_LP to
39091 load frame size.
39092
390932012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39094
39095 * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: New.
39096
390972012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39098
39099 * sysdeps/x86_64/sysdep.h: Allowed to be include more than once.
39100 * sysdeps/x86_64/x32/sysdep.h: New file.
39101
391022012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39103
39104 * sysdeps/x86_64/__longjmp.S: Use R*_LP on SP and PC.
39105 * sysdeps/x86_64/setjmp.S: Likewise.
39106
391072012-05-15 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
39108
39109 * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c: New file.
39110 * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c: New file.
39111 * sysdeps/ieee754/dbl-64/e_log2.c: Fixing indents.
39112 * sysdeps/ieee754/dbl-64/e_log10.c: Likewise and also
39113 remove unused global constant.
39114
391152012-05-15 Chris Metcalf <cmetcalf@tilera.com>
39116
39117 * sysdeps/unix/sysv/linux/getsysstats.c: Remove duplicate
39118 include of <not-cancel.h>.
39119
391202012-05-15 Roland McGrath <roland@hack.frob.com>
39121
39122 * nscd/nscd-client.h (__nscd_acquire_maplock): Fix formatting.
39123
391242012-05-15 Jeff Law <law@redhat.com>
39125 Andreas Jaeger <aj@suse.de>
39126
39127 [BZ #13594]
39128 * nscd/nscd-client.h (__nscd_acquire_maplock): New function, split
39129 out from...
39130 * nscd/nscd_helper.c (__nscd_get_map_ref): ... here.
39131 * nscd/nscd-client.h: Add __nscd_acquire_maplock.
39132 * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp): Add locking to
39133 code changing __hst_map_handle.map.
39134
391352012-05-15 Roland McGrath <roland@hack.frob.com>
39136
39137 * configure.in (sysnames): Look for Implies-before and Implies-after
39138 files.
39139 * configure: Regenerated.
39140
391412012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39142
39143 * sysdeps/unix/sysv/linux/x86_64/sigaction.c (RESTORE2): Replace
39144 8-byte data alignment with LP_SIZE alignment.
39145
391462012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39147
39148 * sysdeps/unix/sysv/linux/x86_64/clone.S: Load pointer to TID
39149 into R10_LP.
39150
391512012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39152
39153 * sysdeps/unix/sysv/linux/x86_64/x32/dl-cache.h: New.
39154
391552012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39156
39157 * sysdeps/unix/sysv/linux/x86_64/x32/Makefile: New file.
39158 * sysdeps/unix/sysv/linux/x86_64/x32/getcpu.c: Likewise.
39159 * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu-static.c:
39160 Likewise.
39161 * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Likewise.
39162
391632012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39164
39165 * sysdeps/x86_64/stackinfo.h (stackinfo_get_sp): Use RSP_LP.
39166 (stackinfo_sub_sp): Likewise.
39167
391682012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39169
39170 * sysdeps/x86_64/multiarch/strcmp-sse42.S: Load pointers into
39171 RAX_LP.
39172
391732012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39174
39175 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Load cache sizes
39176 into R*_LP.
39177
391782012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39179
39180 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Load cache
39181 sizes into R*_LP.
39182
391832012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39184
39185 * sysdeps/x86_64/strcmp.S: Load pointers into R*_LP.
39186
391872012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39188
39189 * sysdeps/x86_64/memcpy.S: Load __x86_64_data_cache_size_half
39190 into R11_LP and load __x86_64_shared_cache_size_half into
39191 R8_LP.
39192
391932012-05-15 H.J. Lu <hongjiu.lu@intel.com>
39194
39195 * sysdeps/x86_64/multiarch/memcmp-sse4.S: Load cache size into
39196 R8_LP.
39197
391982012-05-15 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
39199
39200 * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: New file. Optimized
39201 logb for POWER7.
39202 * sysdeps/powerpc/powerpc32/power7/fpu/s_logbf.c: New file. Optimized
39203 logbf for POWER7.
39204 * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c: New file. Optimized
39205 logbl for POWER7.
39206 * sysdeps/powerpc/powerpc64/power7/fpu/s_logb.c: New file. Use
39207 powerpc32/power7/fpu/s_logb.c via #include.
39208 * sysdeps/powerpc/powerpc64/power7/fpu/s_logbf.c: New file. Use
39209 powerpc32/power7/fpu/s_logbf.c via #include.
39210 * sysdeps/powerpc/powerpc64/power7/fpu/s_logbl.c: New file. Use
39211 powerpc32/power7/fpu/s_logbl.c via #include.
39212
392132012-05-15 Joseph Myers <joseph@codesourcery.com>
39214
39215 * README.libm: Remove file.
39216
392172012-05-14 H.J. Lu <hongjiu.lu@intel.com>
39218
39219 * sysdeps/x86_64/start.S: Simulate popping 4-byte argument
39220 count for x32. Use R*_LP and omit operand-size suffix.
39221
392222012-05-14 H.J. Lu <hongjiu.lu@intel.com>
39223
39224 * shlib-versions: Move x86_64-.*-linux.* entries to ...
39225 * sysdeps/x86_64/64/shlib-versions: Here. New file.
39226 * sysdeps/x86_64/x32/shlib-versions: New file.
39227
392282012-05-14 Roland McGrath <roland@hack.frob.com>
39229
39230 * sysdeps/unix/sysv/linux/dl-osinfo.h (dl_fatal): Function removed.
39231 * elf/rtld.c (dl_main) [DL_SYSDEP_OSCHECK]:
39232 Use _dl_fatal_printf instead.
39233
392342012-05-14 Joseph Myers <joseph@codesourcery.com>
39235
39236 * sysdeps/unix/sysv/linux/configure.in (minimum_kernel): Always
39237 set if not set by the user. Do not allow for being unset.
39238 * sysdeps/unix/sysv/linux/configure: Regenerated.
39239
392402012-05-14 H.J. Lu <hongjiu.lu@intel.com>
39241
39242 * sysdeps/x86_64/dl-machine.h (elf_machine_load_address): Remove
39243 the `q' suffix from lea and replace .quad with ASM_ADDR.
39244
392452012-05-14 H.J. Lu <hongjiu.lu@intel.com>
39246
39247 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PTR_MANGLE): Remove
39248 the `q' suffix from xor/rol instructions. Use $2*LP_SIZE+1
39249 instead of $17.
39250 (PTR_DEMANGLE): Likewise.
39251
392522012-05-14 H.J. Lu <hongjiu.lu@intel.com>
39253
39254 * sysdeps/x86_64/sysdep.h (LP_SIZE): New macro.
39255 (LP_OP): Likewise.
39256 (ASM_ADDR): Likewise.
39257 (RAX_LP): Likewise.
39258 (RBP_LP): Likewise.
39259 (RBX_LP): Likewise.
39260 (RCX_LP): Likewise.
39261 (RDI_LP): Likewise.
39262 (RSI_LP): Likewise.
39263 (RSP_LP): Likewise.
39264 (R8_LP): Likewise.
39265 (R9_LP): Likewise.
39266 (R10_LP): Likewise.
39267 (R10_LP): Likewise.
39268 (R11_LP): Likewise.
39269 (R12_LP): Likewise.
39270 (R13_LP): Likewise.
39271 (R14_LP): Likewise.
39272 (R15_LP): Likewise.
39273
392742012-05-14 H.J. Lu <hongjiu.lu@intel.com>
39275
39276 * sysdeps/x86_64/x32/dl-machine.h: New file.
39277
392782012-05-14 Andreas Jaeger <aj@suse.de>
39279
39280 * manual/Makefile (subdir): Remove export of subdir.
39281 (all): Remove target.
39282 (.PHONY): Remove all from list.
39283 (mkinstalldirs): Remove.
39284 (.PHONY): Remove installdirs from list.
39285 ($(inst_infodir)/libc.info): Use make-target-directory.
39286 (installdirs): Remove.
39287 (subdir_%): Remove.
39288 (glibc-targets): Remove.
39289 (lib): Remove.
39290 (stubs): Remove.
39291 ($(objpfx)stubs ../po/manual.pot): Remove.
39292 ($(objpfx)stamp%): Remove.
39293 (make-target-directory): Remove.
39294 (subdir_install): Remove.
39295 (routines): Remove.
39296 (aux): Remove.
39297 (sources): Remove.
39298 (objects): Remove.
39299 (headers): Remove.
39300
39301 [BZ #13750]
39302 * manual/.gitignore: Remove, it's not needed anymore.
39303 * manual/libc-texinfo.sh: Pass OUTDIR as extra argument, create
39304 all files in it.
39305 * manual/Makefile (dvi, pdf, info, html): Depend on files in build
39306 directory.
39307 (texis): Renamed to $(objpfx)texis.
39308 (texis-path): New, contains path to generated files.
39309 (chapters.%): Use texis-path for complete path, add extra argument
39310 libc-texinfo.sh.
39311 (libc.dvi, libc.pdf, libc.info, libc.pdf): Add $(objfpx) as prefix.
39312 (libc/index.html, summary.texi): Add $(objpfx) as prefix.
39313 (summary,texi, stamp-summary): Use complete path of
39314 files. Generate files in build dir.
39315 (dir-add.texi): Build in build dir.
39316 (libm-err.texi,stamp-libm-err): Likewise.
39317 (version.texi, stamp-version): Likewise.
39318 (.%c.texi): Likewise.
39319 (%.info,%.dvi,%.pdf): Add $(objpfx) as prefix, build in build dir.
39320 (mostlyclean): Remove target.
39321 (realclean): Remove target.
39322 (generated): Add new variable with contents from mostlyclean and
39323 realclean, remove entries duplicated in common-mostlyclean, add
39324 stamp-libm-err and stamp-version.
39325 (generated-dirs): Add libc directory.
39326 ($(inst_infodir)/libc.info): Install files from build dir.
39327
39328 * manual/install.texi (Configuring and compiling): Adjust since
39329 the info files are not part of the tar ball anymore.
39330
393312012-05-14 Andreas Jaeger <aj@suse.de>
39332
39333 * sysdeps/unix/sysv/linux/getcwd.c (__getcwd): Remove unused
39334 variable.
39335
393362012-05-14 Joseph Myers <joseph@codesourcery.com>
39337
39338 [BZ #13717]
39339 * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel): Set
39340 to 2.2.0 where earlier.
39341 * sysdeps/unix/sysv/linux/configure: Regenerated.
39342 * sysdeps/unix/sysv/linux/getcwd.c [!__ASSUME_GETCWD_SYSCALL]:
39343 Remove conditional code.
39344 [__ASSUME_GETCWD_SYSCALL]: Make code unconditional.
39345 * sysdeps/unix/sysv/linux/i386/chown.c [!__ASSUME_LCHOWN_SYSCALL]:
39346 Remove conditional code.
39347 [!__NR_lchown]: Likewise.
39348 [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
39349 [__NR_lchown]: Likewise.
39350 * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Remove
39351 comment referencing __ASSUME_LCHOWN_SYSCALL.
39352 * sysdeps/unix/sysv/linux/i386/sigaction.c
39353 [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
39354 [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
39355 * sysdeps/unix/sysv/linux/if_index.c [!__ASSUME_SIOCGIFNAME]:
39356 Remove conditional code.
39357 [__ASSUME_SIOCGIFNAME ]: Make code unconditional.
39358 (__protocol_available): Remove #if 0 code.
39359 * sysdeps/unix/sysv/linux/ifreq.c [!__ASSUME_SIOCGIFNAME]: Remove
39360 conditional code.
39361 [__ASSUME_SIOCGIFNAME]: Make code unconditional.
39362 * sysdeps/unix/sysv/linux/kernel-features.h
39363 (__ASSUME_GETCWD_SYSCALL): Don't define.
39364 (__ASSUME_REALTIME_SIGNALS): Likewise.
39365 (__ASSUME_PREAD_SYSCALL): Likewise.
39366 (__ASSUME_PWRITE_SYSCALL): Likewise.
39367 (__ASSUME_POLL_SYSCALL): Likewise.
39368 (__ASSUME_LCHOWN_SYSCALL): Likewise.
39369 (__ASSUME_SETRESUID_SYSCALL): Define for all kernel versions for
39370 non-SPARC.
39371 (__ASSUME_SIOCGIFNAME): Don't define.
39372 (__ASSUME_MSG_NOSIGNAL): Likewise.
39373 (__ASSUME_SENDFILE): Define unconditionally.
39374 (__ASSUME_PROC_SELF_FD_SYMLINK): Don't define.
39375 * sysdeps/unix/sysv/linux/poll.c [!__ASSUME_POLL_SYSCALL]: Remove
39376 conditional code.
39377 [__ASSUME_POLL_SYSCALL]: Make code unconditional.
39378 * sysdeps/unix/sysv/linux/powerpc/chown.c (__chown)
39379 [!__ASSUME_LCHOWN_SYSCALL]: Remove conditional code.
39380 (__chown) [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
39381 * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat)
39382 [!__ASSUME_LCHOWN_SYSCALL]: Remove conditional code.
39383 (fchownat) [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
39384 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c
39385 [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
39386 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
39387 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c
39388 [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
39389 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
39390 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c
39391 [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
39392 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
39393 * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c
39394 [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
39395 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
39396 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c
39397 [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
39398 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
39399 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c
39400 [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
39401 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
39402 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c
39403 [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
39404 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
39405 * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c
39406 [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
39407 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
39408 * sysdeps/unix/sysv/linux/pread.c [!__ASSUME_PREAD_SYSCALL]:
39409 Remove conditional code.
39410 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
39411 * sysdeps/unix/sysv/linux/pread64.c [!__ASSUME_PREAD_SYSCALL]:
39412 Remove conditional code.
39413 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
39414 * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_internal)
39415 [__LINUX_KERNEL_VERSION < 131443]: Remove conditional code.
39416 * sysdeps/unix/sysv/linux/pwrite.c [!__ASSUME_PWRITE_SYSCALL]:
39417 Remove conditional code.
39418 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
39419 * sysdeps/unix/sysv/linux/pwrite64.c [!__ASSUME_PWRITE_SYSCALL]:
39420 Remove conditional code.
39421 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
39422 * sysdeps/unix/sysv/linux/sh/pread.c [!__ASSUME_PREAD_SYSCALL]:
39423 Remove conditional code.
39424 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
39425 * sysdeps/unix/sysv/linux/sh/pread64.c [!__ASSUME_PREAD_SYSCALL]:
39426 Remove conditional code.
39427 [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
39428 * sysdeps/unix/sysv/linux/sh/pwrite.c [!__ASSUME_PWRITE_SYSCALL]:
39429 Remove conditional code.
39430 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
39431 * sysdeps/unix/sysv/linux/sh/pwrite64.c
39432 [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
39433 [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
39434 * sysdeps/unix/sysv/linux/sigaction.c
39435 [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
39436 [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
39437 * sysdeps/unix/sysv/linux/sigpending.c
39438 [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
39439 [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
39440 * sysdeps/unix/sysv/linux/sigprocmask.c
39441 [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
39442 [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
39443 * sysdeps/unix/sysv/linux/sigsuspend.c
39444 [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
39445 [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
39446 * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c
39447 (__libc_missing_rt_sigs): Remove.
39448 (__libc_sigaction) [__NR_rt_sigaction]: Make code unconditional.
39449 (__libc_sigaction): Do not handle ENOSYS from rt_sigaction.
39450 * sysdeps/unix/sysv/linux/syslog.c [!__ASSUME_MSG_NOSIGNAL]:
39451 Remove conditional code.
39452 [__ASSUME_MSG_NOSIGNAL]: Make code unconditional.
39453 * sysdeps/unix/sysv/linux/testrtsig.h (kernel_has_rtsig): Always
39454 return 1.
39455 * sysdeps/unix/sysv/linux/ttyname.c (ttyname)
39456 [!__ASSUME_PROC_SELF_FD_SYMLINK]: Remove conditional code.
39457 * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r)
39458 [!__ASSUME_PROC_SELF_FD_SYMLINK]: Likewise.
39459
394602012-05-14 Andreas Jaeger <aj@suse.de>
39461
39462 * sysdeps/i386/fpu/bits/mathinline.h (__pow2): Remove,
39463 it's not used in glibc.
39464 (__coshm1): Likewise.
39465 (__acosh1p): Likewise.
39466 (__sgn): Likewise.
39467
39468 * manual/string.texi (Copying and Concatenation): Add missing
39469 variable in concat example.
39470 Reported by David C. Rankin <drankinatty@suddenlinkmail.com>.
39471
394722012-05-14 H.J. Lu <hongjiu.lu@intel.com>
39473
39474 [BZ #14103]
39475 * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Replace
39476 __builtin_clzl with __builtin_clzll.
39477
394782012-05-14 H.J. Lu <hongjiu.lu@intel.com>
39479
39480 [BZ #14104]
39481 * sysdeps/unix/sysv/linux/check_pf.c (cache): Use
39482 libc_freeres_ptr.
39483
394842012-05-14 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
39485
39486 * sysdeps/i386/i686/fpu/multiarch/Makefile: New file.
39487 * sysdeps/i386/i686fpu/multiarch/e_expf.c: New file.
39488 * sysdeps/i386/i686fpu/multiarch/e_expf-ia32.S: New file.
39489 * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: New file.
39490
394912012-05-14 Mike Frysinger <vapier@gentoo.org>
39492
39493 * NEWS: Update ia64 info.
39494
394952012-05-12 Andreas Schwab <schwab@linux-m68k.org>
39496
39497 * sysdeps/powerpc/memmove.c (MEMMOVE): Don't return a value if
39498 used as bcopy.
39499
395002012-05-12 Thomas Schwinge <thomas@codesourcery.com>
39501
39502 * io/dup3.c (dup3): Rename to __dup3, add weak alias for dup3.
39503 * sysdeps/unix/syscalls.list (dup3): Likewise.
39504 * libio/freopen.c (freopen): Invoke __dup3 instead of dup3.
39505 * libio/freopen64.c (freopen64): Invoke __dup3 instead of dup3.
39506
395072012-05-11 H.J. Lu <hongjiu.lu@intel.com>
39508
39509 * elf/stackguard-macros.h (STACK_CHK_GUARD) [__x86_64__]: Use
39510 "%c1" with "i" (offsetof (tcbhead_t, stack_guard)).
39511
395122012-05-11 H.J. Lu <hongjiu.lu@intel.com>
39513
39514 * elf/tls-macros.h (TLS_LE): Use mov instead of movq to load
39515 thread pointer.
39516 (TLS_IE): Use mov/add instead of movq/addq to load thread
39517 pointer.
39518 (TLS_GD_PREFIX): New.
39519 (TLS_GD): Use it.
39520
395212012-05-11 David S. Miller <davem@davemloft.net>
39522
39523 * sysdeps/sparc/fpu/bits/fenv.h (__fenv_stfsr): Add __volatile__.
39524 * sysdeps/sparc/fpu/fpu_control.h (_FPU_GETCW): Likewise.
39525 (_FPU_SETCW): Likewise.
39526
395272012-05-10 H.J. Lu <hongjiu.lu@intel.com>
39528
39529 * sysdeps/x86_64/dl-trampoline.S: Check if RTLD_SAVESPACE_SSE
39530 is 32-byte aligned.
39531
395322012-05-11 Andreas Schwab <schwab@linux-m68k.org>
39533
39534 [BZ #11837]
39535 * iconvdata/gb18030.c: Update tables.
39536 (BODY for FROM_LOOP): Update. Handle two-byte encoded non-BMP
39537 characters specially.
39538 (BODY for TO_LOOP): Add encoding of missing ranges.
39539
395402012-05-11 Thomas Schwinge <thomas@codesourcery.com>
39541
39542 [BZ #13673]
39543 * sysdeps/mach/hurd/accept4.c: Replace FSF snail mail address with URL.
39544 * sysdeps/mach/hurd/dup3.c: Likewise.
39545 * sysdeps/mach/hurd/readlinkat.c: Likewise.
39546 * sysdeps/powerpc/memmove.c:: Likewise.
39547
395482012-05-10 H.J. Lu <hongjiu.lu@intel.com>
39549
39550 * sysdeps/x86_64/dl-machine.h (elf_machine_rela_relative): Handle
39551 R_X86_64_RELATIVE64 only if RTLD_BOOTSTRAP isn't defined.
39552
395532012-05-10 H.J. Lu <hongjiu.lu@intel.com>
39554
39555 * elf/elf.h (R_X86_64_RELATIVE64): New.
39556 (R_X86_64_NUM): Updated.
39557 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Handle
39558 R_X86_64_RELATIVE64. Always use Elf64_Addr with R_X86_64_64.
39559 (elf_machine_rela_relative): Handle R_X86_64_RELATIVE64.
39560 * sysdeps/x86_64/Makefile (tests): Add tst-quad1 tst-quad2
39561 tst-quad1pie tst-quad2pie
39562 (modules-names): Add tst-quadmod1 tst-quadmod2.
39563 ($(objpfx)tst-quad1): New dependency.
39564 ($(objpfx)tst-quad2): Likewise.
39565 ($(objpfx)tst-quad1pie): Likewise.
39566 ($(objpfx)tst-quad2pie): Likewise.
39567 * sysdeps/x86_64/tst-quad1.c: New file.
39568 * sysdeps/x86_64/tst-quad1pie.c: New file.
39569 * sysdeps/x86_64/tst-quad2.c: Likewise.
39570 * sysdeps/x86_64/tst-quad2pie.c: Likewise.
39571 * sysdeps/x86_64/tst-quadmod1.S: Likewise.
39572 * sysdeps/x86_64/tst-quadmod1pie.S: Likewise.
39573 * sysdeps/x86_64/tst-quadmod2.S: Likewise.
39574 * sysdeps/x86_64/tst-quadmod2pie.S: Likewise.
39575
395762012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
39577
39578 * io/fcntl.h (mode_t, off_t, pid_t): Define types.
39579 (__mode_t_defined, __off_t_defined, __pid_t_defined): Define macros.
39580 * streams/stropts.h (t_scalar_t): Define type.
39581
39582 * sysdeps/generic/paths.h (_PATH_MAN): Set to "/usr/share/man"
39583 (_PATH_PRESERVE): Set to "/var/lib".
39584 (_PATH_RWHODIR): Set to "/var/spool/rwho".
39585
39586 * sysdeps/mach/hurd/openat.c (__openat): Set type of MODE to mode_t
39587 instead of int.
39588
39589 * sysdeps/mach/hurd/xmknodat.c (__xmknodat): Deallocate NODE port only
39590 if __dir_mkfile succeeded.
39591
39592 * sysdeps/mach/hurd/dup3.c: Lock _hurd_dtable_lock before
39593 checking for _hurd_dtablesize. Unlock it right after having
39594 finished _hurd_dtable allocation.
39595
395962012-05-10 Thomas Schwinge <thomas@schwinge.name>
39597
39598 * sysdeps/mach/hurd/configure.in: Remove warning for --prefix=[...].
39599 * sysdeps/mach/hurd/configure: Regenerated.
39600 * sysdeps/unix/sysv/linux/configure.in: Move --prefix=/usr
39601 special-casing to...
39602 * sysdeps/gnu/configure.in: ... this new file.
39603 * sysdeps/unix/sysv/linux/configure: Regenerated.
39604 * sysdeps/gnu/configure: New generated file.
39605
39606 * sysdeps/mach/hurd/bits/stat.h (struct stat): Align to what is done
39607 for Linux: use nsec instead of usec, as well as:
39608 [__USE_MISC || __USE_XOPEN2K8] (st_atim, st_mtim, st_ctim): New
39609 members of type struct timespec.
39610 [__USE_MISC || __USE_XOPEN2K8] (st_atime, st_mtime, st_ctime):
39611 New macros.
39612 (struct stat64): Likewise.
39613 (_STATBUF_ST_NSEC): New macro.
39614 * sysdeps/mach/hurd/xstatconv.c (xstat64_conv): Adapt to that.
39615
39616 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use
39617 __strtoul_internal rather than strtoul.
39618
396192012-05-10 Pino Toscano <toscano.pino@tiscali.it>
39620
39621 * hurd/hurdsock.c (_hurd_socket_server): Check for negative domains,
39622 and reject them.
39623
396242012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
39625
39626 * sysdeps/mach/hurd/setresgid.c (__setresgid): Handle the -1 case,
39627 which preserves existing values.
39628 * sysdeps/mach/hurd/setresuid.c (__setresuid): Likewise.
39629
396302012-05-10 Pino Toscano <toscano.pino@tiscali.it>
39631
39632 * hurd/hurdselect.c (_hurd_select): Return EINVAL for negative
39633 TIMEOUT values. Return EINVAL for NFDS values either negative or
39634 greater than FD_SETSIZE.
39635
396362012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
39637
39638 * sysdeps/mach/hurd/brk.c (_hurd_set_brk): When more space needs to be
39639 allocated, call __vm_protect to finish enabling the existing space, and
39640 pass a copy of _hurd_data_end instead of PAGEBRK to __vm_allocate to
39641 allocate the remainder.
39642
396432012-05-10 Pino Toscano <toscano.pino@tiscali.it>
39644
39645 * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Check also for a null
39646 address port. Set ADDR_LEN to 0 when not filling ADDRARG.
39647
396482012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
39649
39650 * sysdeps/mach/hurd/readlinkat.c: New file, heavily derived from
39651 sysdeps/mach/hurd/readlink.c.
39652
39653 * posix/tst-sysconf.c (posix_options): Only use
39654 _POSIX_PRIORITIZED_IO, _POSIX_PRIORITY_SCHEDULING, and
39655 _POSIX_SYNCHRONIZED_IO when they are defined
39656 * sysdeps/mach/hurd/bits/posix_opt.h:
39657 (_POSIX_PRIORITY_SCHEDULING): Undefine macro.
39658 (_XOPEN_REALTIME): Undefine macro.
39659 (_XOPEN_REALTIME_THREADS): Undefine macro.
39660 (_XOPEN_SHM): Undefine macro.
39661 [__USE_XOPEN2K8] (_POSIX_THREAD_ROBUST_PRIO_INHERIT): Define
39662 macro to -1.
39663 [__USE_XOPEN2K8] (_POSIX_THREAD_ROBUST_PRIO_PROTECT): Define
39664 macro to -1.
39665 (_POSIX_ASYNC_IO): Undefine macro.
39666 (_POSIX_PRIORITIZED_IO): Undefine macro.
39667 (_POSIX_SPIN_LOCKS): Define macro to -1.
39668
39669 * bits/sigaction.h [__USE_XOPEN2K8]: Define SA_RESTART,
39670 SA_NODEFER, SA_RESETHAND.
39671 * sysdeps/mach/hurd/bits/fcntl.h [__USE_XOPEN2K8]: Define
39672 O_NOFOLLOW, O_DIRECTORY, O_CLOEXEC, F_GETOWN, F_SETOWN,
39673 F_DUPFD_CLOEXEC.
39674
396752012-05-10 Thomas Schwinge <thomas@schwinge.name>
39676
39677 * elf/Makefile (pldd-modules): Define unconditionally.
39678
396792012-05-10 Thomas Schwinge <thomas@schwinge.name>
39680
39681 * sysdeps/mach/hurd/opendir.c (__opendirat): New function.
39682
396832012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
39684
39685 * hurd/hurdchdir.c (_hurd_change_directory_port_from_name):
39686 Return ENOENT when name is empty.
39687 * sysdeps/mach/hurd/chroot.c (chroot): Likewise.
39688
396892012-05-10 Thomas Schwinge <thomas@schwinge.name>
39690
39691 * include/libc-symbols.h [NO_HIDDEN] (hidden_nolink): New macro.
39692
39693 * nss/makedb.c (MAP_POPULATE): If not defined, define to zero.
39694
396952012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
39696
39697 Fix mlock in all cases except non-readable pages.
39698 * sysdeps/mach/hurd/mlock.c (mlock): Give VM_PROT_READ
39699 instead of VM_PROT_ALL as parameter to __vm_wire function.
39700
39701 * sysdeps/mach/hurd/mkdir.c: Include <string.h>.
39702 (__mkdir): When path is `/', just fail with EEXIST.
39703 * sysdeps/mach/hurd/mkdirat.c: Likewise.
39704
397052012-05-10 Thomas Schwinge <thomas@schwinge.name>
39706
39707 * nss/makedb.c: Include <sys/param.h> (for MAX and roundup), and
39708 <sys/uio.h> (for writev).
39709 * nss/nss_db/db-initgroups.c: Include <limits.h> (for ULONG_MAX),
39710 and <sys/param.h> (for MIN).
39711
397122012-05-10 Pino Toscano <toscano.pino@tiscali.it>
39713
39714 * sysdeps/mach/nanosleep.c: Return EINVAL for invalid values of
39715 REQUESTED_TIME. Properly set the remaining time and return EINTR
39716 if interrupted.
39717
397182012-05-10 Thomas Schwinge <thomas@schwinge.name>
39719
39720 * sysdeps/mach/hurd/Makefile ($(common-objpfx)linkobj/libc.so):
39721 Depend on against $(link-rpcuserlibs).
39722
397232012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
39724
39725 * sysdeps/generic/ldsodefs.h [LIBC_STACK_END_NOT_RELRO]
39726 (__libc_stack_end): Do not use attribute_relro.
39727 * sysdeps/mach/hurd/dl-sysdep.h (LIBC_STACK_END_NOT_RELRO): Define.
39728 * sysdeps/mach/hurd/i386/init-first.c (init): Update __libc_stack_end
39729 to libthread-provided value.
39730 * sysdeps/mach/hurd/dl-sysdep.c (__libc_stack_end): Do not use
39731 attribute_relro.
39732
397332012-05-10 Thomas Schwinge <thomas@schwinge.name>
39734
39735 [BZ #3748]
39736 * bits/libc-lock.h (__libc_once_get): New macro.
39737 * sysdeps/mach/bits/libc-lock.h: Likewise.
39738 * sysdeps/mach/hurd/bits/libc-lock.h: Likewise.
39739 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Use __libc_once_get
39740 instead of using implementation details.
39741
39742 * libio/fileops.c: Unconditionally include <kernel-features.h>.
39743 * libio/freopen.c: Likewise.
39744 * libio/freopen64.c: Likewise.
39745 * misc/syslog.c: Likewise.
39746 * nscd/connections.c: Likewise.
39747 * nscd/netgroupcache.c: Likewise.
39748 * sysdeps/posix/getcwd.c: Likewise.
39749
397502012-05-10 Roland McGrath <roland@hack.frob.com>
39751
39752 * math/w_ilogbf.c: Add #include <limits.h>.
39753
397542012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
39755
39756 * sysdeps/mach/hurd/setitimer.c (setitimer_locked): Use common exit
39757 path instead of returning without unlocking.
39758
39759 * sysdeps/mach/hurd/bits/ioctls.h (_IOIW): New macro for
39760 immediate-write ioctls.
39761 * sysdeps/mach/hurd/ioctl.c: Handle cases with no arguments.
39762
397632012-05-10 Thomas Schwinge <thomas@schwinge.name>
39764
39765 * sysdeps/mach/hurd/i386/init-first.c (init): Use
39766 __builtin_frame_address instead of making assumptions about the
39767 location of the return address relative to DATA. Force early load of
39768 the return address.
39769 (_dl_init_first, doinit1 in doinit in _hurd_stack_setup): Don't use
39770 __builtin_frame_address.
39771
39772 dup3 for GNU Hurd.
39773 * include/unistd.h: Declare __dup3 and use libc_hidden_proto on it.
39774 * sysdeps/mach/hurd/dup3.c: New file, copy from dup2.c. Evolve it to
39775 implement dup3 and do some further code clean-ups.
39776 * sysdeps/mach/hurd/dup2.c (__dup2): Reimplement using __dup3.
39777 * sysdeps/mach/hurd/kernel-features.h (__ASSUME_DUP3): Define.
39778
397792012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
39780
39781 * sysdeps/mach/hurd/dl-sysdep.c: Conditionalize contents on [SHARED].
39782
39783 * hurd/hurd/fd.h (_hurd_fd_get): Call HURD_CRITICAL_BEGIN/
39784 HURD_CRITICAL_END around holding _hurd_dtable_lock.
39785 * sysdeps/mach/hurd/dirfd (dirfd): Likewise.
39786 * sysdeps/mach/hurd/opendir.c (_hurd_fd_opendir): Call
39787 HURD_CRITICAL_BEGIN/HURD_CRITICAL_END around holding
39788 d->port.lock.
39789
39790 * hurd/catch-signal.c (hurd_catch_signal): Use sigsetjmp/siglongjmp
39791 instead of setjmp/longjmp to restore the signal mask. Call sigsetjmp
39792 when handler == SIG_ERR, not when handler != SIG_ERR.
39793
397942012-05-10 Thomas Schwinge <thomas@schwinge.name>
39795
39796 * sysdeps/mach/hurd/bits/socket.h: New file, copy from the bsd4.4 one.
39797 (SOCK_MAX, SOCK_TYPE_MASK, SOCK_CLOEXEC, SOCK_NONBLOCK): New
39798 definitions.
39799
39800 accept4 for GNU Hurd.
39801 * include/sys/socket.h (__libc_accept4): New prototype.
39802 * sysdeps/mach/hurd/accept4.c: New file, copy from accept.c. Evolve it
39803 to implement __libc_accept4.
39804 * sysdeps/mach/hurd/accept.c (accept): Reimplement using
39805 __libc_accept4.
39806 * sysdeps/mach/hurd/kernel-features.h (__ASSUME_ACCEPT4): Define.
39807
39808 * sysdeps/mach/hurd/i386/____longjmp_chk.S: New file.
39809 * sysdeps/mach/hurd/i386/signal-defines.sym: New file.
39810 * sysdeps/mach/hurd/i386/Makefile (gen-as-const-headers): Add
39811 signal-defines.sym.
39812
398132012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
39814
39815 * bits/in.h (SOL_IP, SOL_IPV6, SOL_ICMPV6): New macros.
39816
398172012-05-10 Thomas Schwinge <thomas@schwinge.name>
39818
39819 * sysdeps/mach/hurd/dl-sysdep.c (open_file): Do not raise
39820 assertion on O_CLOEXEC flag.
39821 * hurd/hurd/fd.h: Update comment to mention O_CLOEXEC.
39822 * hurd/intern-fd.c: Likewise.
39823 * hurd/port2fd.c: Likewise.
39824
398252012-05-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
39826
39827 [BZ #3906]
39828 * bits/in.h (IPV6_PKTINFO): Define new macro.
39829 (IPV6_RXINFO,IPV6_TXINFO,SCM_SRCINFO): Redefine to IPV6_PKTINFO.
39830
398312012-05-09 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
39832
39833 [BZ #13954]
39834 [BZ #13955]
39835 [BZ #13956]
39836 * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Fix for subnormal number.
39837 * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
39838 * sysdeps/ieee754/flt-32/s_logbf.c (__logf): Likewise.
39839 * sysdeps/ieee754/ldbl-128/s_logbl.c (__logbl): Likewise.
39840 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
39841 * sysdeps/ieee754/ldbl-96/s_logbl.c (__logbl): Likewise.
39842 * math/libm-test.inc (logb_test) : Additional logb tests.
39843
398442012-05-09 Andreas Schwab <schwab@linux-m68k.org>
39845 Andreas Jaeger <aj@suse.de>
39846
39847 * configure.in (obsolete-rpc): Add new option --enable-obsolete-rpc.
39848 * configure: Regenerated.
39849 * config.h.in (LINK_OBSOLETE_RPC): New macro.
39850 * config.make.in (link-obsolete-rpc): New substituted variable.
39851 * include/libc-symbols.h (libc_hidden_nolink_sunrpc): Rename from
39852 libc_hidden_nolink and define based on LINK_OBSOLETE_RPC.
39853 * sunrpc/Makefile (headers) [link-obsolete-rpc]: Add rpc headers.
39854 (shared-only-routines): Don't set it under [link-obsolete-rpc],
39855 so that libc.a contains the symbols.
39856 * nis/Makefile (headers) [link-obsolete-rpc]: Add rpc headers.
39857 * sunrpc/auth_des.c: Use libc_hidden_nolink_sunrpc.
39858 * sunrpc/auth_none.c: Likewise.
39859 * sunrpc/auth_unix.c: Likewise.
39860 * sunrpc/authdes_prot.c: Likewise.
39861 * sunrpc/authuxprot.c: Likewise.
39862 * sunrpc/clnt_gen.c: Likewise.
39863 * sunrpc/clnt_perr.c: Likewise.
39864 * sunrpc/clnt_raw.c: Likewise.
39865 * sunrpc/clnt_simp.c: Likewise.
39866 * sunrpc/clnt_tcp.c: Likewise.
39867 * sunrpc/clnt_udp.c: Likewise.
39868 * sunrpc/clnt_unix.c: Likewise.
39869 * sunrpc/des_crypt.c: Likewise.
39870 * sunrpc/des_soft.c: Likewise.
39871 * sunrpc/get_myaddr.c: Likewise.
39872 * sunrpc/key_call.c: Likewise.
39873 * sunrpc/key_prot.c: Likewise.
39874 * sunrpc/netname.c: Likewise.
39875 * sunrpc/pm_getmaps.c: Likewise.
39876 * sunrpc/pm_getport.c: Likewise.
39877 * sunrpc/pmap_clnt.c: Likewise.
39878 * sunrpc/pmap_prot.c: Likewise.
39879 * sunrpc/pmap_prot2.c: Likewise.
39880 * sunrpc/pmap_rmt.c: Likewise.
39881 * sunrpc/publickey.c: Likewise.
39882 * sunrpc/rpc_cmsg.c: Likewise.
39883 * sunrpc/rpc_common.c: Likewise.
39884 * sunrpc/rpc_dtable.c: Likewise.
39885 * sunrpc/rpc_prot.c: Likewise.
39886 * sunrpc/rpc_thread.c: Likewise.
39887 * sunrpc/rtime.c: Likewise.
39888 * sunrpc/svc.c: Likewise.
39889 * sunrpc/svc_auth.c: Likewise.
39890 * sunrpc/svc_raw.c: Likewise.
39891 * sunrpc/svc_run.c: Likewise.
39892 * sunrpc/svc_tcp.c: Likewise.
39893 * sunrpc/svc_udp.c: Likewise.
39894 * sunrpc/svc_unix.c: Likewise.
39895 * sunrpc/svcauth_des.c: Likewise.
39896 * sunrpc/xcrypt.c: Likewise.
39897 * sunrpc/xdr.c: Likewise.
39898 * sunrpc/xdr_array.c: Likewise.
39899 * sunrpc/xdr_float.c: Likewise.
39900 * sunrpc/xdr_intXX_t.c: Likewise.
39901 * sunrpc/xdr_mem.c: Likewise.
39902 * sunrpc/xdr_rec.c: Likewise.
39903 * sunrpc/xdr_ref.c: Likewise.
39904 * sunrpc/xdr_sizeof.c: Likewise.
39905 * sunrpc/xdr_stdio.c: Likewise.
39906
399072012-05-10 Roland McGrath <roland@hack.frob.com>
39908
39909 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Fix typo in last
39910 change. Update copyright years.
39911
399122012-05-10 Joseph Myers <joseph@codesourcery.com>
39913
39914 * include/stdc-predef.h (__STDC_NO_THREADS__): Define.
39915
399162012-05-10 Maxim Kuvyrkov <maxim@codesourcery.com>
39917 Joseph Myers <joseph@codesourcery.com>
39918 Paul Pluzhnikov <ppluzhnikov@google.com>
39919
39920 [BZ #14012]
39921 * sunrpc/Makefile [cross-compiling] (headers): Enable additions
39922 requiring rpcgen.
39923 [cross-compiling] (extra-libs): Likewise.
39924 [cross-compiling] (extra-libs-others): Likewise.
39925 [cross-compiling] (librpcsvc-routines): Likewise.
39926 [cross-compiling] (librpcsvc-inhibit-o): Likewise.
39927 [cross-compiling] (omit-deps): Likewise.
39928 (sunrpc-CPPFLAGS): New variable.
39929 (CPPFLAGS): Define using $(sunrpc-CPPFLAGS).
39930 (BUILD_CPPFLAGS): Append $(sunrpc-CPPFLAGS).
39931 (cross-rpcgen-objs): New variable.
39932 (extra-objs): Append $(cross-rpcgen-objs).
39933 ($(cross-rpcgen-objs)): New rule.
39934 ($(objpfx)cross-rpcgen): Likewise.
39935 (rpcgen-cmd): Define to use $(built-program-file). Expand
39936 comment.
39937 ($(objpfx)rpcsvc/%.stmp): Depend on cross-rpcgen.
39938 ($(objpfx)x%.stmp): Likewise.
39939 * sunrpc/proto.h [IS_IN_build] (_): Define.
39940 [IS_IN_build] (_libc_intl_domainname): Likewise.
39941
399422012-05-10 H.J. Lu <hongjiu.lu@intel.com>
39943
39944 * sysdeps/x86_64/dl-machine.h (elf_machine_rela) [__ILP32__]:
39945 Sign extend relocation result to 64 bits for R_X86_64_DTPOFF64
39946 and R_X86_64_TPOFF64.
39947
399482012-05-10 Joseph Myers <joseph@codesourcery.com>
39949
39950 * sysdeps/unix/sysv/linux/syscalls.list (alarm): Add entry from
39951 sysdeps/unix/sysv/syscalls.list.
39952 (stime): Likewise.
39953 (utime): Likewise.
39954 * sysdeps/unix/sysv/syscalls.list: Remove file.
39955
399562012-05-10 Paul Eggert <eggert@cs.ucla.edu>
39957
39958 [BZ #3440]
39959 * locale/bits/locale.h (__LC_CTYPE, __LC_NUMERIC, __LC_TIME)
39960 (__LC_COLLATE, __LC_MONETARY, __LC_MESSAGES, __LC_ALL, __LC_PAPER)
39961 (__LC_NAME, __LC_ADDRESS, __LC_TELEPHONE, __LC_MEASUREMENT)
39962 (__LC_IDENTIFICATION): Make these macros useful in #if
39963 expressions, as required by C99.
39964
399652012-05-10 Andreas Schwab <schwab@linux-m68k.org>
39966
39967 * sunrpc/Makefile (extra-objs) [$(build-shared) = yes]: Add
39968 $(addsuffix .os,$(rpc-compat-routines)). Move include ../Rules
39969 after this.
39970
399712012-05-09 H.J. Lu <hongjiu.lu@intel.com>
39972
39973 * stdlib/longlong.h: Updated from GCC.
39974
399752012-05-09 Andreas Jaeger <aj@suse.de>
39976
39977 * nscd/nscd.c (run_modes): Make named enum, reorder so that
39978 default is first entry.
39979 (run_mode): Set type.
39980 (main): Remove informal message about syslog.
39981 (options): Fix typo.
39982
39983 [BZ #14053]
39984 * sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Add __volatile
39985 to asm.
39986 (lrint): Likewise.
39987 (llrintf): Likewise.
39988 (llrint): Likewise.
39989 (rint): Likewise.
39990 (rintf): Likewise.
39991 (nearbyint): Likewise.
39992 (nearbyintf): Likewise.
39993
399942012-05-09 Andreas Jaeger <aj@suse.de>
39995 Pedro Alves <palves@redhat.com>
39996
39997 * nscd/nscd.c (run_mode): Use enum.
39998 (main): Cleanup coding style issue.
39999
400002012-05-09 Alexandre Oliva <aoliva@redhat.com>
40001 Andreas Jaeger <aj@suse.de>
40002
40003 * nscd/nscd.c (go_background): Replaced with...
40004 (run_mode): ... this.
40005 (RUN_FOREGROUND, RUN_DAEMONIZE, RUN_DEBUG): Add.
40006 (options): Add -F --foreground.
40007 (main): Implement it.
40008 (parse_opt): Parse it.
40009
400102012-05-09 Andreas Jaeger <aj@suse.de>
40011
40012 [BZ #14083]
40013 * string/bits/string2.h (strspn) [__GNUC_PREREQ(3, 2) &&
40014 !_HAVE_STRING_ARCH_strspn]: Cast zero to size_t to avoid
40015 -Wconversion warning.
40016 (strspn) [!__GNUC_PREREQ(3, 2) && !_HAVE_STRING_ARCH_strspn]:
40017 Likewise.
40018
400192012-05-09 Joseph Myers <joseph@codesourcery.com>
40020
40021 * conform/data/locale.h-data (NULL): Use macro-constant. Require
40022 == 0.
40023 (LC_ALL): Use macro-int-constant.
40024 (LC_COLLATE): Likewise.
40025 (LC_CTYPE): Likewise.
40026 (LC_MESSAGES): Likewise.
40027 (LC_MONETARY): Likewise.
40028 (LC_NUMERIC): Likewise.
40029 (LC_TIME): Likewise.
40030 [ISO || ISO99 || ISO11] (LC_MESSAGES): Do not require.
40031 (LC_*): Change to LC_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
40032 [ISO || ISO99 || ISO11] (*_t): Do not allow.
40033 * conform/data/math.h-data (HUGE_VAL): Use macro-constant.
40034 Specify type.
40035 [C99-based standards] (float_t): Expect type.
40036 [C99-based standards] (double_t): Expect type.
40037 [C99-based standards] (HUGE_VALF): Use macro-constant. Specify
40038 type.
40039 [C99-based standards] (HUGE_VALL): Likewise.
40040 [C99-based standards] (INFINITY): Likewise.
40041 [C99-based standards] (NAN): Likewise.
40042 [C99-based standards] (FP_INFINITE): Use macro-int-constant.
40043 [C99-based standards] (FP_NAN): Likewise.
40044 [C99-based standards] (FP_NORMAL): Likewise.
40045 [C99-based standards] (FP_SUBNORMAL): Likewise.
40046 [C99-based standards] (FP_ZERO): Likewise.
40047 [C99-based standards] (FP_FAST_FMA): Use
40048 optional-macro-int-constant. Specify type. Require == 1.
40049 [C99-based standards] (FP_FAST_FMAF): Likewise.
40050 [C99-based standards] (FP_FAST_FMAL): Likewise.
40051 [C99-based standards] (FP_ILOGB0): Use macro-int-constant.
40052 [C99-based standards] (FP_ILOGBNAN): Likewise.
40053 [C99-based standards] (MATH_ERRNO): Use macro-int-constant.
40054 Specify type.
40055 [C99-based standards] (MATH_ERREXCEPT): Likewise.
40056 [C99-based standards] (math_errhandling): Specify type.
40057 [ISO99 || ISO11] (signgam): Do not allow.
40058 [non-C99-based standards] (copysignf): Do not allow.
40059 [non-C99-based standards] (exp2f): Likewise.
40060 [non-C99-based standards] (log2f): Likewise.
40061 [non-C99-based standards] (modff): Allow.
40062 [non-C99-based standards] (erff): Do not allow.
40063 [non-C99-based standards] (erfcf): Likewise.
40064 [non-C99-based standards] (gammaf): Likewise.
40065 [non-C99-based standards] (hypotf): Likewise.
40066 [non-C99-based standards] (j0f): Likewise.
40067 [non-C99-based standards] (j1f): Likewise.
40068 [non-C99-based standards] (jnf): Likewise.
40069 [non-C99-based standards] (lgammaf): Likewise.
40070 [non-C99-based standards] (tgammaf): Likewise.
40071 [non-C99-based standards] (y0f): Likewise.
40072 [non-C99-based standards] (y1f): Likewise.
40073 [non-C99-based standards] (ynf): Likewise.
40074 [non-C99-based standards] (isnanf): Likewise.
40075 [non-C99-based standards] (acoshf): Likewise.
40076 [non-C99-based standards] (asinhf): Likewise.
40077 [non-C99-based standards] (atanhf): Likewise.
40078 [non-C99-based standards] (cbrtf): Likewise.
40079 [non-C99-based standards] (expm1f): Likewise.
40080 [non-C99-based standards] (ilogbf): Likewise.
40081 [non-C99-based standards] (log1pf): Likewise.
40082 [non-C99-based standards] (logbf): Likewise.
40083 [non-C99-based standards] (nextafterf): Likewise.
40084 [non-C99-based standards] (remainderf): Likewise.
40085 [non-C99-based standards] (rintf): Likewise.
40086 [non-C99-based standards] (scalbf): Likewise.
40087 [non-C99-based standards] (copysignl): Likewise.
40088 [non-C99-based standards] (exp2l): Likewise.
40089 [non-C99-based standards] (log2l): Likewise.
40090 [non-C99-based standards] (modfl): Allow.
40091 [non-C99-based standards] (erfl): Do not allow.
40092 [non-C99-based standards] (erfcl): Likewise.
40093 [non-C99-based standards] (gammal): Likewise.
40094 [non-C99-based standards] (hypotl): Likewise.
40095 [non-C99-based standards] (j0l): Likewise.
40096 [non-C99-based standards] (j1l): Likewise.
40097 [non-C99-based standards] (jnl): Likewise.
40098 [non-C99-based standards] (lgammal): Likewise.
40099 [non-C99-based standards] (tgammal): Likewise.
40100 [non-C99-based standards] (y0l): Likewise.
40101 [non-C99-based standards] (y1l): Likewise.
40102 [non-C99-based standards] (ynl): Likewise.
40103 [non-C99-based standards] (isnanl): Likewise.
40104 [non-C99-based standards] (acoshl): Likewise.
40105 [non-C99-based standards] (asinhl): Likewise.
40106 [non-C99-based standards] (atanhl): Likewise.
40107 [non-C99-based standards] (cbrtl): Likewise.
40108 [non-C99-based standards] (expm1l): Likewise.
40109 [non-C99-based standards] (ilogbl): Likewise.
40110 [non-C99-based standards] (log1pl): Likewise.
40111 [non-C99-based standards] (logbl): Likewise.
40112 [non-C99-based standards] (nextafterl): Likewise.
40113 [non-C99-based standards] (remainderl): Likewise.
40114 [non-C99-based standards] (rintl): Likewise.
40115 [non-C99-based standards] (scalbl): Likewise.
40116 [ISO || ISO99 || ISO11] (*_t): Do not allow.
40117 [non-C99-based standards] (FP_*): Do not allow.
40118 [C99-based standards] (FP_*): Change to
40119 FP_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
40120 * conform/data/setjmp.h-data [ISO || ISO99 || ISO11] (*_t): Do not
40121 allow.
40122 * conform/data/signal.h-data (SIG_DFL): Use macro-constant.
40123 (SIG_ERR): Likewise.
40124 [X/Open-based standards] (SIG_HOLD): Likewise.
40125 (SIG_IGN): Likewise.
40126 (SIGABRT): Use macro-int-constant. Specify type. Require
40127 positive value.
40128 (SIGFPE): Likewise.
40129 (SIGILL): Likewise.
40130 (SIGINT): Likewise.
40131 (SIGSEGV): Likewise.
40132 (SIGTER): Likewise.
40133 [!ISO && !ISO99 && !ISO11] (SIGALRM): Likewise.
40134 [!ISO && !ISO99 && !ISO11] (SIGHUP): Likewise.
40135 [!ISO && !ISO99 && !ISO11] (SIGIO): Likewise.
40136 [!ISO && !ISO99 && !ISO11] (SIGKILL): Likewise.
40137 [!ISO && !ISO99 && !ISO11] (SIGPIPE): Likewise.
40138 [!ISO && !ISO99 && !ISO11] (SIGQUIT): Likewise.
40139 [!ISO && !ISO99 && !ISO11] (SIGUSR1): Likewise.
40140 [!ISO && !ISO99 && !ISO11] (SIGUSR2): Likewise.
40141 [!ISO && !ISO99 && !ISO11] (SIGCHLD): Likewise.
40142 [!ISO && !ISO99 && !ISO11] (SIGCONT): Likewise.
40143 [!ISO && !ISO99 && !ISO11] (SIGSTOP): Likewise.
40144 [!ISO && !ISO99 && !ISO11] (SIGTSTP): Likewise.
40145 [!ISO && !ISO99 && !ISO11] (SIGTTIN): Likewise.
40146 [!ISO && !ISO99 && !ISO11] (SIGTTOU): Likewise.
40147 [!ISO && !ISO99 && !ISO11] (SIGBUS): Likewise.
40148 [!ISO && !ISO99 && !ISO11] (SIGPOLL): Likewise.
40149 [!ISO && !ISO99 && !ISO11] (SIGPROF): Likewise.
40150 [!ISO && !ISO99 && !ISO11] (SIGSYS): Likewise.
40151 [X/Open-based standards] (SIGTRAP): Likewise.
40152 [!ISO && !ISO99 && !ISO11] (SIGURG): Likewise.
40153 [!ISO && !ISO99 && !ISO11] (SIGVTALRM): Likewise.
40154 [!ISO && !ISO99 && !ISO11] (SIGXCPU): Likewise.
40155 [!ISO && !ISO99 && !ISO11] (SIGXFSZ): Likewise.
40156 * conform/data/stdarg.h-data [ISO || ISO99 || ISO11] (*_t): Do not
40157 allow.
40158
401592012-05-08 Ian Wienand <ianw@vmware.com>
40160
40161 [BZ #14080]
40162 * time/tzset.c (__tzset_parse_tz): Update default rules for
40163 daylight time changes in the Energy Policy Act of 2005.
40164
401652012-05-09 Andreas Jaeger <aj@suse.de>
40166
40167 [BZ #13983]
40168 * elf/ldconfig.c (parse_conf): Change string to make clear that
40169 ldconfig only issued a warning if ld.so.conf does not exist.
40170
401712012-05-08 David S. Miller <davem@davemloft.net>
40172
40173 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S: Use
40174 movxtod instead of popping the value on the stack.
40175
40176 * sysdeps/sparc/fpu/libm-test-ulps: Update.
40177
401782012-05-08 Carlos O'Donell <carlos_odonell@mentor.com>
40179
40180 * config.h.in: Add HAVE_ARM_PCS_VFP.
40181
401822012-05-08 Roland Mc Grath <roland@hack.frob.com>
40183
40184 [BZ #13979]
40185 * include/features.h: Warn if user requests __FORTIFY_SOURCE
40186 checking but the checks are disabled for any reason.
40187
401882012-05-08 H.J. Lu <hongjiu.lu@intel.com>
40189
40190 * sysdeps/x86_64/dl-machine.h: Replace Elf64_XXX with ElfW(XXX)
40191 and ELF64_R_TYPE with ELFW(R_TYPE).
40192
401932012-05-08 Joseph Myers <joseph@codesourcery.com>
40194
40195 * sysdeps/unix/sysv/syscalls.list (pause): Remove.
40196 (ulimit): Likewise.
40197
40198 * sysdeps/unix/sysv/syscalls.list (setrlimit): Remove.
40199 (settimeofday): Likewise.
40200
402012012-05-08 Mike Frysinger <vapier@gentoo.org>
40202
40203 * inet/arpa/tftp.h (struct tftphdr): Rename th_u to th_u1. Add
40204 a struct th_u2 inside the union, and move tu_block/tu_code into
40205 a new th_u3 union of tu_block/tu_code inside of that. Move
40206 th_data[1] into the th_u2 as tu_data[0]. Change tu_stuff[1] to
40207 tu_stuff[0]. Add a new tu_padding[4] to keep sizeof() the same.
40208 (th_block): Change to th_u1.th_u2.th_u3.tu_block.
40209 (th_code): Change to th_u1.th_u2.th_u3.tu_code.
40210 (th_stuff): Change to th_u1.tu_stuff.
40211 (th_data): Define.
40212 (th_msg): Change to th_u1.th_u2.tu_data.
40213
402142012-05-07 David S. Miller <davem@davemloft.net>
40215
40216 * sysdeps/sparc/fpu/libm-test-ulps: Update.
40217
40218 [BZ #14074]
40219 * sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK_CALL): New macro.
40220 (SETUP_PIC_REG): Use it.
40221 (SETUP_PIC_REG_LEAF): Use it.
40222
402232012-05-07 Joseph Myers <joseph@codesourcery.com>
40224
40225 [BZ #13885]
40226 [BZ #13923]
40227 * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
40228 USE_AS_EXPM1L.
40229 (EXPL_FINITE): Likewise.
40230 (FLDLOG): Likewise.
40231 (IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
40232 * sysdeps/i386/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
40233 e_expl.S.
40234 * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
40235 USE_AS_EXPM1L.
40236 (EXPL_FINITE): Likewise.
40237 (FLDLOG): Likewise.
40238 (IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
40239 * sysdeps/x86_64/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
40240 e_expl.S.
40241 * math/libm-test.inc (expm1_test): Add more tests. Do not disable
40242 test of -max_value argument for long double.
40243 * sysdeps/i386/fpu/libm-test-ulps: Update.
40244 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
40245
402462012-05-06 David S. Miller <davem@davemloft.net>
40247
40248 * scripts/data/localplt-sparc-linux-gnu.data: Add '?' markers to
40249 quad soft-float symbols whose references which are compiler
40250 generated.
40251 * scripts/data/localplt-sparc64-linux-gnu.data: Likewise.
40252
402532012-05-06 Joseph Myers <joseph@codesourcery.com>
40254
40255 [BZ #13884]
40256 [BZ #13914]
40257 * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
40258 USE_AS_EXP10L.
40259 (EXPL_FINITE): Likewise.
40260 (FLDLOG): Likewise.
40261 (c0): Likewise.
40262 (c1): Likewise.
40263 (__ieee754_expl): Change to IEEE754_EXPL. Use FLDLOG macro.
40264 Adjust comments for base varying.
40265 (__expl_finite): Change alias to EXPL_FINITE.
40266 * sysdeps/i386/fpu/e_exp10l.S: Define USE_AS_EXP10L and include
40267 e_expl.S.
40268 * sysdeps/ieee754/dbl-64/e_exp10.c: New file.
40269 * sysdeps/ieee754/ldbl-128/e_exp10l.c: Likewise.
40270 * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise.
40271 * sysdeps/x86_64/fpu/e_exp10l.S: Likewise.
40272 * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
40273 USE_AS_EXP10L.
40274 (EXPL_FINITE): Likewise.
40275 (FLDLOG): Likewise.
40276 (c0): Likewise.
40277 (c1): Likewise.
40278 (__ieee754_expl): Change to IEEE754_EXPL. Use FLDLOG macro.
40279 Adjust comments for base varying.
40280 (__expl_finite): Change alias to EXPL_FINITE.
40281 * math/libm-test.inc (exp10_test): Add more tests. Do not disable
40282 tests for bugs.
40283 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
40284
40285 [BZ #14064]
40286 * math/libm-test.inc (check_float_internal): Correct ulp
40287 calculation for subnormal expected results.
40288
402892012-05-06 Andreas Jaeger <aj@suse.de>
40290
40291 * Makeconfig (+math-flags): New, set to -frounding-math.
40292 (+cflags): Add +math-flags so that all of glibc gets compiled with
40293 it.
40294
40295 * sysdeps/x86_64/fpu/libm-test-ulps: Updated.
40296
402972012-05-05 Joseph Myers <joseph@codesourcery.com>
40298
40299 * math/libm-test.inc (hypot_test) [TEST_DOUBLE && TEST_INLINE]:
40300 Disable one test.
40301
40302 [BZ #13787]
40303 [BZ #13922]
40304 [BZ #14036]
40305 * sysdeps/i386/fpu/e_expl.S (csat): New constant.
40306 (__ieee754_expl): Allow for and saturate large arguments.
40307 * sysdeps/ieee754/dbl-64/w_exp.c (o_threshold): Remove variable.
40308 (u_threshold): Likewise.
40309 (__exp): Call __ieee754_exp before checking for overflow and
40310 underflow.
40311 * sysdeps/ieee754/flt-32/w_expf.c (o_threshold): Remove variable.
40312 (u_threshold): Likewise.
40313 (__expf): Call __ieee754_expf before checking for overflow and
40314 underflow.
40315 * sysdeps/ieee754/ldbl-96/w_expl.c (o_threshold): Remove variable.
40316 (u_threshold): Likewise.
40317 (__expl): Call __ieee754_expl before checking for overflow and
40318 underflow.
40319 * sysdeps/x86_64/fpu/e_expl.S (csat): New constant.
40320 (__ieee754_expl): Allow for and saturate large arguments.
40321 * math/libm-test.inc (exp_test): Add another test. Do not allow
40322 missing overflow exception on overflow.
40323 (expm1_test): Do not allow missing overflow exception on overflow.
40324
40325 * sysdeps/i386/fpu/e_expl.c: Move to ...
40326 * sysdeps/i386/fpu/e_expl.S: ... here. Write directly in assembly
40327 rather than using inline asm.
40328 * sysdeps/x86_64/fpu/e_expl.c: Remove file.
40329 * sysdeps/x86_64/fpu/e_expl.S: Copy from
40330 sysdeps/i386/fpu/e_expl.S, adjusted for x86_64.
40331
40332 * sysdeps/unix/sysv/syscalls.list (ftime): Remove.
40333 (nice): Likewise.
40334 (poll): Likewise.
40335 (signal): Likewise.
40336 (time): Likewise.
40337 (times): Likewise.
40338
403392012-05-04 Joseph Myers <joseph@codesourcery.com>
40340
40341 * sysdeps/unix/syscalls.list (adjtime): Add entry from
40342 sysdeps/unix/common/syscalls.list.
40343 (fchmod): Likewise.
40344 (fchown): Likewise.
40345 (ftruncate): Likewise.
40346 (getrusage): Likewise.
40347 (gettimeofday): Likewise.
40348 (setpgid): Likewise.
40349 (setregid): Likewise.
40350 (setreuid): Likewise.
40351 (sigaction): Likewise.
40352 (truncate): Likewise.
40353 (vhangup): Likewise.
40354 * sysdeps/unix/common/syscalls.list: Remove file.
40355 * sysdeps/unix/bsd/Implies: Don't include unix/common.
40356 * sysdeps/unix/sysv/linux/Implies: Likewise.
40357
403582012-05-04 H.J. Lu <hongjiu.lu@intel.com>
40359
40360 * sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: Moved to ...
40361 * sysdeps/unix/sysv/linux/x86_64/64/nptl/ld.abilist: Here.
40362 * sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist:
40363 Moved to ...
40364 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libBrokenLocale.abilist:
40365 Here.
40366 * sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: Moved
40367 to ...
40368 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libanl.abilist: Here.
40369 * sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: Moved
40370 to ...
40371 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Here.
40372 * sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: Moved
40373 to ...
40374 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist: Here.
40375 * sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: Moved
40376 to ...
40377 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libdl.abilist: Here.
40378 * sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: Moved
40379 to ...
40380 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libm.abilist: Here.
40381 * sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: Moved
40382 to ...
40383 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libnsl.abilist: Here.
40384 * sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: Moved
40385 to ...
40386 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist:
40387 Here.
40388 * sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: Moved
40389 to ...
40390 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libresolv.abilist:
40391 Here.
40392 * sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: Moved
40393 to ...
40394 * sysdeps/unix/sysv/linux/x86_64/64/nptl/librt.abilist: Here.
40395 * sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist:
40396 Moved to ...
40397 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libthread_db.abilist:
40398 Here.
40399 * sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: Moved
40400 to ...
40401 * sysdeps/unix/sysv/linux/x86_64/64/nptl/libutil.abilist: Here.
40402
404032012-05-04 Joseph Myers <joseph@codesourcery.com>
40404
40405 * sysdeps/unix/common/bits/dirent.h: Remove file.
40406 * sysdeps/unix/common/bits/fcntl.h: Likewise.
40407
40408 * sysdeps/unix/bsd/bits/dirent.h: Remove file.
40409 * sysdeps/unix/bsd/bits/fcntl.h: Likewise.
40410 * sysdeps/unix/bsd/bsd4.4/isatty.c: Likewise.
40411 * sysdeps/unix/bsd/isatty.c: Likewise.
40412 * sysdeps/unix/bsd/tcdrain.c: Likewise.
40413 * sysdeps/unix/bsd/tcgetattr.c: Likewise.
40414 * sysdeps/unix/bsd/tcsetattr.c: Likewise.
40415
404162012-05-04 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
40417
40418 [BZ #13563]
40419 * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Fix
40420 long double comparison inaccuracies.
40421 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
40422 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
40423
404242012-05-04 Andreas Schwab <schwab@linux-m68k.org>
40425
40426 * sysdeps/unix/make-syscalls.sh: Fix check for version aliases.
40427 * sysdeps/unix/sysv/linux/i386/syscalls.list: Revert last change.
40428
404292012-05-04 Joseph Myers <joseph@codesourcery.com>
40430
40431 [BZ #14049]
40432 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Check for trailing
40433 nonzero digits before rounding a hex value.
40434 * stdlib/tst-strtod.c (tests): Add another test.
40435
404362012-05-03 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
40437
40438 * sysdeps/s390/fpu/libm-test-ulps: Update.
40439
404402012-05-03 Andreas Jaeger <aj@suse.de>
40441
40442 * malloc/mcheck.c (mcheck): Add barrier so that malloc/free pair
40443 does not get optimized out.
40444 (malloc_opt_barrier): New.
40445
404462012-05-03 Andreas Jaeger <aj@suse.de>
40447 Roland McGrath <roland@hack.frob.com>
40448
40449 * Makerules (.PRECIOUS): Add %.symlist pattern to prevent
40450 intermediate file deletion.
40451 (generated): Add .symlist files.
40452
404532012-05-03 Joseph Myers <joseph@codesourcery.com>
40454
40455 [BZ #13775]
40456 * libio/bits/stdio-ldbl.h [__USE_XOPEN2K8] (__dprintf_chk):
40457 Redirect under this condition.
40458 [__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
40459 [__USE_GNU] (__dprintf_chk): Not under this condition.
40460 [__USE_GNU] (__vdprintf_chk): Likewise.
40461 * libio/bits/stdio2.h [__USE_XOPEN2K8] (__dprintf_chk): Declare
40462 under this condition.
40463 [__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
40464 [__USE_XOPEN2K8] (dprintf): Define under this condition.
40465 [__USE_XOPEN2K8] (vdprintf): Likewise.
40466 [__USE_GNU] (__dprintf_chk): Not under this condition.
40467 [__USE_GNU] (__vdprintf_chk): Likewise.
40468 [__USE_GNU] (dprintf): Likewise.
40469 [__USE_GNU] (vdprintf): Likewise.
40470
404712012-05-03 Roland McGrath <roland@hack.frob.com>
40472
40473 * elf/Makefile (common-generated): Set this instead of generated for
40474 .dyn, .phdr, .jmprel files. Remove $(common-objpfx) from the
40475 $(all-built-dso)-derived lists.
40476
404772012-05-03 Andreas Jaeger <aj@suse.de>
40478
40479 * sysdeps/i386/fpu/libm-test-ulps: Update.
40480
40481 * FAQ: Removed.
40482 * FAQ.in: Likewise.
40483 * scripts/gen-FAQ.pl: Likewise.
40484 * manual/install.texi (Installation): Point to online location of
40485 FAQ.
40486 * Makefile (files-for-dist): Remove FAQ.
40487 (FAQ): Remove.
40488
404892012-05-02 Allan McRae <allan@archlinux.org>
40490
40491 * elf/Makefile: (LDFLAGS-nodel2mod3.so: Use $(no-as-needed).
40492 (LDFLAGS-reldepmod5.so): Likewise.
40493 (LDFLAGS-reldep6mod1.so): Likewise.
40494 (LDFLAGS-reldep6mod4.so): Likewise.
40495 (LDFLAGS-reldep8mod3.so): Likewise.
40496 (LDFLAGS-unload4mod1.so): Likewise.
40497 (LDFLAGS-unload4mod2.so): Likewise.
40498 (LDFLAGS-tst-initorder): Likewise.
40499 (LDFLAGS-tst-initordera2.so): Likewise.
40500 (LDFLAGS-tst-initordera3.so): Likewise.
40501 (LDFLAGS-tst-initordera4.so): Likewise.
40502 (LDFLAGS-tst-initorderb2.so): Likewise.
40503 (LDFLAGS-noload): Likewise.
40504 (LDFLAGS-next): Likewise.
40505 (LDFLAGS-order2mod1.so): Likewise.
40506 (LDFLAGS-order2mod2.so): Likewise.
40507 (LDFLAGS-tst-initorder2): Likewise.
40508 (LDFLAGS-tst-initorder2a.so): Likewise.
40509 (LDFLAGS-tst-initorder2b.so): Likewise.
40510 (LDFLAGS-tst-initorder2c.so): Likewise.
40511 * stdlib/Makefile: (LDFLAGS-tst-putenv): Likewise.
40512
405132012-05-02 David S. Miller <davem@davemloft.net>
40514
40515 * sysdeps/sparc/fpu/libm-test-ulps: Update.
40516
405172012-05-02 Paul Pluzhnikov <ppluzhnikov@google.com>
40518
40519 [BZ #14055]
40520 * elf/dl-sysdep.c (_dl_show_auxv): Add bounds check.
40521
405222012-05-02 Andreas Jaeger <aj@suse.de>
40523
40524 * math/Makefile (CPPFLAGS-test-ildoubl.c): Add -frounding-math
40525 since we manipulate rounding mode.
40526 (CPPFLAGS-test-idouble.c): Likewise.
40527 (CPPFLAGS-test-ifloat.c): Likewise.
40528 (CFLAGS-test-ldouble.c): Likewise.
40529 (CFLAGS-test-double.c): Likewise.
40530 (CFLAGS-test-float.c): Likewise.
40531 (CFLAGS-test-misc.c): Likewise.
40532 (CFLAGS-test-test-fenv.c): Likewise.
40533
405342012-05-02 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
40535
40536 [BZ #2550]
40537 [BZ #2570]
40538 * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Use floating-point
40539 comparisons to determine direction to adjust input.
40540
405412012-05-01 Roland McGrath <roland@hack.frob.com>
40542
40543 * elf/Makefile ($(objpfx)check-localplt.out): Redirect the test's
40544 output to the target.
40545
40546 * scripts/localplt.awk: New file.
40547 * elf/Makefile ($(objpfx)check-localplt): Target removed.
40548 (check-localplt-CFLAGS): Variable removed.
40549 ($(all-built-dso:=.jmprel)): New static pattern rule.
40550 (generated): Add those targets.
40551 (localplt-built-dso): New variable.
40552 ($(objpfx)check-localplt.out): Use the script on the .jmprel files.
40553
40554 * elf/check-localplt.c: File removed.
40555
40556 * scripts/check-execstack.awk: New file.
40557 * elf/Makefile ($(objpfx)check-execstack): Target removed.
40558 (check-execstack-CFLAGS): Variable removed.
40559 ($(objpfx)check-execstack.h): Target removed.
40560 ($(objpfx)execstack-default): New target.
40561 (generated): Add that instead of check-execstack.h.
40562 ($(all-built-dso:=.phdr)): New static pattern rule.
40563 (generated): Add those targets.
40564 * elf/check-execstack.c: File removed.
40565
40566 * scripts/check-textrel.awk: New file.
40567 * elf/Makefile ($(objpfx)check-textrel): Target removed.
40568 (check-textrel-CFLAGS): Variable removed.
40569 (all-built-dso): Use := to define.o
40570 ($(all-built-dso:=.dyn)): New static pattern rule.
40571 (generated): Add those targets.
40572 ($(objpfx)check-textrel.out): Use the script on the .dyn files.
40573 * config.make.in (READELF): New substituted variable.
40574 * elf/check-textrel.c: File removed.
40575
405762012-05-01 Joseph Myers <joseph@codesourcery.com>
40577
40578 * conform/data/assert.h-data [ISO || ISO99 || ISO11] (*_t): Do not
40579 allow.
40580 * conform/data/ctype.h-data [C99-based standards] (isblank):
40581 Expect function.
40582 (is*): Change to is[abcdefghijklmnopqrstuvwxyz]*.
40583 (to*): Change to to[abcdefghijklmnopqrstuvwxyz]*.
40584 [ISO || ISO99 || ISO11] (*_t): Do not allow.
40585 * conform/data/errno.h-data (EDOM): Use macro-int-constant.
40586 Specify type. Require positive value.
40587 (EILSEQ): Likewise.
40588 (ERANGE): Likewise.
40589 [ISO || POSIX] (EILSEQ): Do not expect.
40590 [!ISO && !ISO99 && !ISO11] (E2BIG): Use macro-int-constant.
40591 Specify type. Require positive value.
40592 [!ISO && !ISO99 && !ISO11] (EACCES): Likewise.
40593 [!ISO && !ISO99 && !ISO11] (EADDRINUSE): Likewise.
40594 [!ISO && !ISO99 && !ISO11] (EADDRNOTAVAIL): Likewise.
40595 [!ISO && !ISO99 && !ISO11] (EAFNOSUPPORT): Likewise.
40596 [!ISO && !ISO99 && !ISO11] (EAGAIN): Likewise.
40597 [!ISO && !ISO99 && !ISO11] (EALREADY): Likewise.
40598 [!ISO && !ISO99 && !ISO11] (EBADF): Likewise.
40599 [!ISO && !ISO99 && !ISO11] (EBADMSG): Likewise.
40600 [!ISO && !ISO99 && !ISO11] (EBUSY): Likewise.
40601 [!ISO && !ISO99 && !ISO11] (ECANCELED): Likewise.
40602 [!ISO && !ISO99 && !ISO11] (ECHILD): Likewise.
40603 [!ISO && !ISO99 && !ISO11] (ECONNABORTED): Likewise.
40604 [!ISO && !ISO99 && !ISO11] (ECONNREFUSED): Likewise.
40605 [!ISO && !ISO99 && !ISO11] (ECONNRESET): Likewise.
40606 [!ISO && !ISO99 && !ISO11] (EDEADLK): Likewise.
40607 [!ISO && !ISO99 && !ISO11] (EDESTADDRREQ): Likewise.
40608 [!ISO && !ISO99 && !ISO11] (EDQUOT): Likewise.
40609 [!ISO && !ISO99 && !ISO11] (EEXIST): Likewise.
40610 [!ISO && !ISO99 && !ISO11] (EFAULT): Likewise.
40611 [!ISO && !ISO99 && !ISO11] (EFBIG): Likewise.
40612 [!ISO && !ISO99 && !ISO11] (EHOSTUNREACH): Likewise.
40613 [!ISO && !ISO99 && !ISO11] (EIDRM): Likewise.
40614 [!ISO && !ISO99 && !ISO11] (EINPROGRESS): Likewise.
40615 [!ISO && !ISO99 && !ISO11] (EINTR): Likewise.
40616 [!ISO && !ISO99 && !ISO11] (EINVAL): Likewise.
40617 [!ISO && !ISO99 && !ISO11] (EIO): Likewise.
40618 [!ISO && !ISO99 && !ISO11] (EISCONN): Likewise.
40619 [!ISO && !ISO99 && !ISO11] (EISDIR): Likewise.
40620 [!ISO && !ISO99 && !ISO11] (ELOOP): Likewise.
40621 [!ISO && !ISO99 && !ISO11] (EMFILE): Likewise.
40622 [!ISO && !ISO99 && !ISO11] (EMLINK): Likewise.
40623 [!ISO && !ISO99 && !ISO11] (EMSGSIZE): Likewise.
40624 [!ISO && !ISO99 && !ISO11] (EMULTIHOP): Likewise.
40625 [!ISO && !ISO99 && !ISO11] (ENAMETOOLONG): Likewise.
40626 [!ISO && !ISO99 && !ISO11] (ENETDOWN): Likewise.
40627 [!ISO && !ISO99 && !ISO11] (ENETUNREACH): Likewise.
40628 [!ISO && !ISO99 && !ISO11] (ENFILE): Likewise.
40629 [!ISO && !ISO99 && !ISO11] (ENOBUFS): Likewise.
40630 [!ISO && !ISO99 && !ISO11] (ENODATA): Likewise.
40631 [!ISO && !ISO99 && !ISO11] (ENODEV): Likewise.
40632 [!ISO && !ISO99 && !ISO11] (ENOENT): Likewise.
40633 [!ISO && !ISO99 && !ISO11] (ENOEXEC): Likewise.
40634 [!ISO && !ISO99 && !ISO11] (ENOLCK): Likewise.
40635 [!ISO && !ISO99 && !ISO11] (ENOLINK): Likewise.
40636 [!ISO && !ISO99 && !ISO11] (ENOMEM): Likewise.
40637 [!ISO && !ISO99 && !ISO11] (ENOMSG): Likewise.
40638 [!ISO && !ISO99 && !ISO11] (ENOPROTOOPT): Likewise.
40639 [!ISO && !ISO99 && !ISO11] (ENOSPC): Likewise.
40640 [!ISO && !ISO99 && !ISO11] (ENOSR): Likewise.
40641 [!ISO && !ISO99 && !ISO11] (ENOSTR): Likewise.
40642 [!ISO && !ISO99 && !ISO11] (ENOSYS): Likewise.
40643 [!ISO && !ISO99 && !ISO11] (ENOTCONN): Likewise.
40644 [!ISO && !ISO99 && !ISO11] (ENOTDIR): Likewise.
40645 [!ISO && !ISO99 && !ISO11] (ENOTEMPTY): Likewise.
40646 [!ISO && !ISO99 && !ISO11] (ENOTSOCK): Likewise.
40647 [!ISO && !ISO99 && !ISO11] (ENOTSUP): Likewise.
40648 [!ISO && !ISO99 && !ISO11] (ENOTTY): Likewise.
40649 [!ISO && !ISO99 && !ISO11] (ENXIO): Likewise.
40650 [!ISO && !ISO99 && !ISO11] (EOPNOTSUPP): Likewise.
40651 [!ISO && !ISO99 && !ISO11] (EOVERFLOW): Likewise.
40652 [!ISO && !ISO99 && !ISO11] (EPERM): Likewise.
40653 [!ISO && !ISO99 && !ISO11] (EPIPE): Likewise.
40654 [!ISO && !ISO99 && !ISO11] (EPROTO): Likewise.
40655 [!ISO && !ISO99 && !ISO11] (EPROTONOSUPPORT): Likewise.
40656 [!ISO && !ISO99 && !ISO11] (EPROTOTYPE): Likewise.
40657 [!ISO && !ISO99 && !ISO11] (EROFS): Likewise.
40658 [!ISO && !ISO99 && !ISO11] (ESPIPE): Likewise.
40659 [!ISO && !ISO99 && !ISO11] (ESRCH): Likewise.
40660 [!ISO && !ISO99 && !ISO11] (ESTALE): Likewise.
40661 [!ISO && !ISO99 && !ISO11] (ETIME): Likewise.
40662 [!ISO && !ISO99 && !ISO11] (ETIMEDOUT): Likewise.
40663 [!ISO && !ISO99 && !ISO11] (ETXTBSY): Likewise.
40664 [!ISO && !ISO99 && !ISO11] (EWOULDBLOCK): Likewise.
40665 [!ISO && !ISO99 && !ISO11] (EXDEV): Likewise.
40666 [XOPEN2K8 || defined POSIX2008] (ENOTRECOVERABLE): Likewise.
40667 [XOPEN2K8 || defined POSIX2008] (EOWNERDEAD): Likewise.
40668 * conform/data/float.h-data (FLT_RADIX): Use macro-int-constant.
40669 Require >= 2.
40670 (FLT_ROUNDS): Expect as macro, not constant.
40671 (FLT_MANT_DIG): Use macro-int-constant.
40672 (DBL_MANT_DIG): Likewise.
40673 (LDBL_MANT_DIG): Likewise.
40674 (FLT_DIG): Likewise.
40675 (DBL_DIG): Likewise.
40676 (LDBL_DIG): Likewise.
40677 (FLT_MIN_EXP): Use macro-int-constant. Require < 0.
40678 (DBL_MIN_EXP): Likewise.
40679 (LDBL_MIN_EXP): Likewise.
40680 (FLT_MAX_EXP): Use macro-int-constant.
40681 (DBL_MAX_EXP): Likewise.
40682 (LDBL_MAX_EXP): Likewise.
40683 (FLT_MAX_10_EXP): Likewise.
40684 (DBL_MAX_10_EXP): Likewise.
40685 (LDBL_MAX_10_EXP): Likewise.
40686 (FLT_MAX): Use macro-constant.
40687 (DBL_MAX): Likewise.
40688 (LDBL_MAX): Likewise.
40689 (FLT_EPSILON): Use macro-constant. Give upper bound.
40690 (DBL_EPSILON): Likewise.
40691 (LDBL_EPSILON): Likewise.
40692 (FLT_MIN): Likewise.
40693 (DBL_MIN): Likewise.
40694 (LDBL_MIN): Likewise.
40695 [C99-based standards] (DECIMAL_DIG): Use macro-int-constant.
40696 [C99-based standards] (FLT_EVAL_METHOD): Likewise.
40697 [ISO11] (DBL_HAS_SUBNORM): Use macro-int-constant.
40698 [ISO11] (FLT_HAS_SUBNORM): Likewise.
40699 [ISO11] (LDBL_HAS_SUBNORM): Likewise.
40700 [ISO11] (DBL_DECIMAL_DIG): Likewise.
40701 [ISO11] (FLT_DECIMAL_DIG): Likewise.
40702 [ISO11] (LDBL_DECIMAL_DIG): Likewise.
40703 [ISO11] (DBL_TRUE_MIN): Use macro-constant.
40704 [ISO11] (FLT_TRUE_MIN): Likewise.
40705 [ISO11] (LDBL_TRUE_MIN): Likewise.
40706 [ISO || ISO99 || ISO11] (*_t): Do not allow.
40707 * conform/data/limits.h-data (CHAR_BIT): Use macro-int-constant.
40708 (SCHAR_MIN): Use macro-int-constant. Specify type.
40709 (SCHAR_MAX): Likewise.
40710 (UCHAR_MAX): Likewise.
40711 (CHAR_MIN): Likewise.
40712 (CHAR_MAX): Likewise.
40713 (MB_LEN_MAX): Use macro-int-constant.
40714 (SHRT_MIN): Use macro-int-constant. Specify type.
40715 (SHRT_MAX): Likewise.
40716 (USHRT_MAX): Likewise.
40717 (INT_MAX): Likewise.
40718 (INT_MIN): Use macro-int-constant. Specify type. Make upper
40719 bound negative.
40720 (UINT_MAX): Use macro-int-constant. Specify type. Suffix lower
40721 bound with "U".
40722 (LONG_MAX): Use macro-int-constant. Specify type. Suffix lower
40723 bound with "L".
40724 (LONG_MIN): Use macro-int-constant. Specify type. Make upper
40725 bound negative. Suffix upper bound with "L".
40726 (ULONG_MAX): Use macro-int-constant. Specify type. Suffix lower
40727 bound with "UL".
40728 [C99-based standards] (LLONG_MIN): Use macro-int-constant.
40729 Specify type.
40730 [C99-based standards] (LLONG_MAX): Likewise.
40731 [C99-based standards] (ULLONG_MAX): Likewise.
40732 * conform/data/stddef.h-data (NULL): Use macro-constant. Require
40733 == 0.
40734 [ISO11] (max_align_t): Require type.
40735 [ISO || ISO99 || ISO11] (*_t): Do not allow.
40736
40737 * conform/conformtest.pl ($CFLAGS_namespace): Define separately
40738 from $CFLAGS, without defining away __attribute__ calls.
40739 (checknamespace): Use $CFLAGS_namespace.
40740
40741 * conform/conformtest.pl (@keywords): Only include C99 keywords
40742 for standards based on C99 or C11.
40743
40744 * conform/data/iso646.h-data [ISO || POSIX || XPG3 || XPG4]:
40745 Disable tests.
40746 * conform/data/stdint.h-data [ISO || POSIX || XPG3 || XPG4 ||
40747 UNIX98]: Likewise.
40748
40749 * conform/conformtest.pl: Handle "macro-int-constant" and test for
40750 usability of symbols in #if.
40751
40752 * conform/conformtest.pl: If macro or constant types start
40753 "promoted:", expect the symbol to be of the following type
40754 promoted by the integer promotions.
40755
40756 * conform/conformtest.pl: Parse all "constant" and "macro" lines
40757 in one place. Also handle "macro-constant".
40758
40759 * conform/conformtest.pl: Only accept expected macro values with
40760 "==". Parse all "macro" lines in one place.
40761 * conform/data/stdlib.h-data: Use "==" form on "macro" lines.
40762
40763 * conform/conformtest.pl: Handle braced types on "constant" lines
40764 instead of handling "typed-constant".
40765 * conform/data/signal.h-data: Use "constant" instead of
40766 "typed-constant".
40767
40768 * conform/conformtest.pl: Handle "optional-" at start of lines in
40769 one place rather than duplicating several cases. Handle each
40770 format of "macro" line with initial "optional-".
40771
40772 * conform/conformtest.pl: Only accept expected constant or
40773 optional-constant values with "==". Parse all "constant" lines in
40774 one place. Parse all "optional-constant" lines in one place.
40775 * conform/data/cpio.h-data: Use "==" form on "constant" lines.
40776 * conform/data/fmtmsg.h-data: Likewise.
40777 * conform/data/netinet/in.h-data: Likewise.
40778 * conform/data/tar.h-data: Likewise.
40779 * conform/data/limits.h-data: Use "==" form on "constant" and
40780 "optional-constant" lines.
40781
40782 * conform/conformtest.pl: Use -ansi for XPG3, XPG4 and UNIX98.
40783 Use -std=c99 for XOPEN2K.
40784 (@knownproblems): Remove.
40785 (newtoken): Don't check %isknown.
40786
40787 * conform/data/math.h-data [XPG3 || XPG4 || UNIX98] (fpclassify):
40788 Do not expect macro.
40789 [XPG3 || XPG4 || UNIX98] (isfinite): Likewise.
40790 [XPG3 || XPG4 || UNIX98] (isinf): Likewise.
40791 [XPG3 || XPG4 || UNIX98] (isnan): Likewise.
40792 [XPG3 || XPG4 || UNIX98] (isnormal): Likewise.
40793 [XPG3 || XPG4 || UNIX98] (signbit): Likewise.
40794 [XPG3 || XPG4 || UNIX98] (isgreater): Likewise.
40795 [XPG3 || XPG4 || UNIX98] (isgreaterequal): Likewise.
40796 [XPG3 || XPG4 || UNIX98] (isless): Likewise.
40797 [XPG3 || XPG4 || UNIX98] (islessequal): Likewise.
40798 [XPG3 || XPG4 || UNIX98] (islessgreater): Likewise.
40799 [XPG3 || XPG4 || UNIX98] (isunordered): Likewise.
40800 [XPG3 || XPG4 || UNIX98] (isnan): Expect as function.
40801 [XPG3 || XPG4 || UNIX98] (HUGE_VALF): Do not expect.
40802 [XPG3 || XPG4 || UNIX98] (HUGE_VALL): Likewise.
40803 [XPG3 || XPG4 || UNIX98] (INFINITY): Likewise.
40804 [XPG3 || XPG4 || UNIX98] (NAN): Likewise.
40805 [XPG3 || XPG4 || UNIX98] (FP_INFINITE): Likewise.
40806 [XPG3 || XPG4 || UNIX98] (FP_NAN): Likewise.
40807 [XPG3 || XPG4 || UNIX98] (FP_NORMAL): Likewise.
40808 [XPG3 || XPG4 || UNIX98] (FP_SUBNORMAL): Likewise.
40809 [XPG3 || XPG4 || UNIX98] (FP_ZERO): Likewise.
40810 [XPG3 || XPG4 || UNIX98] (FP_FAST_FMA): Likewise.
40811 [XPG3 || XPG4 || UNIX98] (FP_FAST_FMAF): Likewise.
40812 [XPG3 || XPG4 || UNIX98] (FP_FAST_FMAL): Likewise.
40813 [XPG3 || XPG4 || UNIX98] (FP_ILOGB0): Likewise.
40814 [XPG3 || XPG4 || UNIX98] (FP_ILOGBNAN): Likewise.
40815 [XPG3 || XPG4 || UNIX98] (copysign): Likewise.
40816 [XPG3 || XPG4 || UNIX98] (exp2): Likewise.
40817 [XPG3 || XPG4 || UNIX98] (log2): Likewise.
40818 [XPG3 || XPG4 || UNIX98] (tgama): Likewise.
40819 [XPG3] (acosh): Likewise.
40820 [XPG3] (asinh): Likewise.
40821 [XPG3] (atanh): Likewise.
40822 [XPG3] (cbrt): Likewise.
40823 [XPG3] (expm1): Likewise.
40824 [XPG3] (ilogb): Likewise.
40825 [XPG3] (log1p): Likewise.
40826 [XPG3] (logb): Likewise.
40827 [XPG3] (nextafter): Likewise.
40828 [XPG3 || XPG4 || UNIX98] (nexttoward): Likewise.
40829 [XPG3 || XPG4 || UNIX98] (nearbyint): Likewise.
40830 [XPG3] (remainder): Likewise.
40831 [XPG3] (rint): Likewise.
40832 [XPG3 || XPG4 || UNIX98] (round): Likewise.
40833 [XPG3 || XPG4 || UNIX98] (trunc): Likewise.
40834 [XPG3 || XPG4 || UNIX98] (lrint): Likewise.
40835 [XPG3 || XPG4 || UNIX98] (llrint): Likewise.
40836 [XPG3 || XPG4 || UNIX98] (lround): Likewise.
40837 [XPG3 || XPG4 || UNIX98] (llround): Likewise.
40838 [XPG3 || XPG4 || UNIX98] (remquo): Likewise.
40839 [UNIX98 || XOPEN2K] (scalb): Expect.
40840 [XPG3 || XPG4 || UNIX98] (scalbn): Do not expect.
40841 [XPG3 || XPG4 || UNIX98] (scalbln): Likewise.
40842 [XPG3 || XPG4 || UNIX98] (fdim): Likewise.
40843 [XPG3 || XPG4 || UNIX98] (fmax): Likewise.
40844 [XPG3 || XPG4 || UNIX98] (fmin): Likewise.
40845 [XPG3 || XPG4 || UNIX98] (fma): Likewise.
40846 [XPG3 || XPG4 || UNIX98] (nan): Likewise.
40847 [XPG3 || XPG4 || UNIX98] (acosf): Likewise.
40848 [XPG3 || XPG4 || UNIX98] (asinf): Likewise.
40849 [XPG3 || XPG4 || UNIX98] (atanf): Likewise.
40850 [XPG3 || XPG4 || UNIX98] (atan2f): Likewise.
40851 [XPG3 || XPG4 || UNIX98] (ceilf): Likewise.
40852 [XPG3 || XPG4 || UNIX98] (copysignf): Likewise.
40853 [XPG3 || XPG4 || UNIX98] (cosf): Likewise.
40854 [XPG3 || XPG4 || UNIX98] (coshf): Likewise.
40855 [XPG3 || XPG4 || UNIX98] (expf): Likewise.
40856 [XPG3 || XPG4 || UNIX98] (exp2f): Likewise.
40857 [XPG3 || XPG4 || UNIX98] (fabsf): Likewise.
40858 [XPG3 || XPG4 || UNIX98] (floorf): Likewise.
40859 [XPG3 || XPG4 || UNIX98] (fmodf): Likewise.
40860 [XPG3 || XPG4 || UNIX98] (frexpf): Likewise.
40861 [XPG3 || XPG4 || UNIX98] (ldexpf): Likewise.
40862 [XPG3 || XPG4 || UNIX98] (logf): Likewise.
40863 [XPG3 || XPG4 || UNIX98] (log10f): Likewise.
40864 [XPG3 || XPG4 || UNIX98] (log2f): Likewise.
40865 [XPG3 || XPG4 || UNIX98] (modff): Likewise.
40866 [XPG3 || XPG4 || UNIX98] (powf): Likewise.
40867 [XPG3 || XPG4 || UNIX98] (sinf): Likewise.
40868 [XPG3 || XPG4 || UNIX98] (sinhf): Likewise.
40869 [XPG3 || XPG4 || UNIX98] (sqrtf): Likewise.
40870 [XPG3 || XPG4 || UNIX98] (tanf): Likewise.
40871 [XPG3 || XPG4 || UNIX98] (tanhf): Likewise.
40872 [XPG3 || XPG4 || UNIX98] (erff): Likewise.
40873 [XPG3 || XPG4 || UNIX98] (erfcf): Likewise.
40874 [XPG3 || XPG4 || UNIX98] (gammaf): Likewise.
40875 [XPG3 || XPG4 || UNIX98] (hypotf): Likewise.
40876 [XPG3 || XPG4 || UNIX98] (j0f): Likewise.
40877 [XPG3 || XPG4 || UNIX98] (j1f): Likewise.
40878 [XPG3 || XPG4 || UNIX98] (jnf): Likewise.
40879 [XPG3 || XPG4 || UNIX98] (lgammaf): Likewise.
40880 [XPG3 || XPG4 || UNIX98] (tgammaf): Likewise.
40881 [XPG3 || XPG4 || UNIX98] (y0f): Likewise.
40882 [XPG3 || XPG4 || UNIX98] (y1f): Likewise.
40883 [XPG3 || XPG4 || UNIX98] (ynf): Likewise.
40884 [XPG3 || XPG4 || UNIX98] (acoshf): Likewise.
40885 [XPG3 || XPG4 || UNIX98] (asinhf): Likewise.
40886 [XPG3 || XPG4 || UNIX98] (atanhf): Likewise.
40887 [XPG3 || XPG4 || UNIX98] (cbrtf): Likewise.
40888 [XPG3 || XPG4 || UNIX98] (expm1f): Likewise.
40889 [XPG3 || XPG4 || UNIX98] (ilogbf): Likewise.
40890 [XPG3 || XPG4 || UNIX98] (log1pf): Likewise.
40891 [XPG3 || XPG4 || UNIX98] (logbf): Likewise.
40892 [XPG3 || XPG4 || UNIX98] (nextafterf): Likewise.
40893 [XPG3 || XPG4 || UNIX98] (nexttowardf): Likewise.
40894 [XPG3 || XPG4 || UNIX98] (nearbyintf): Likewise.
40895 [XPG3 || XPG4 || UNIX98] (remainderf): Likewise.
40896 [XPG3 || XPG4 || UNIX98] (rintf): Likewise.
40897 [XPG3 || XPG4 || UNIX98] (roundf): Likewise.
40898 [XPG3 || XPG4 || UNIX98] (truncf): Likewise.
40899 [XPG3 || XPG4 || UNIX98] (lrintf): Likewise.
40900 [XPG3 || XPG4 || UNIX98] (llrintf): Likewise.
40901 [XPG3 || XPG4 || UNIX98] (lroundf): Likewise.
40902 [XPG3 || XPG4 || UNIX98] (llroundf): Likewise.
40903 [XPG3 || XPG4 || UNIX98] (remquof): Likewise.
40904 [XPG3 || XPG4 || UNIX98] (scalbf): Likewise.
40905 [XPG3 || XPG4 || UNIX98] (scalbnf): Likewise.
40906 [XPG3 || XPG4 || UNIX98] (scalblnf): Likewise.
40907 [XPG3 || XPG4 || UNIX98] (fdimf): Likewise.
40908 [XPG3 || XPG4 || UNIX98] (fmaxf): Likewise.
40909 [XPG3 || XPG4 || UNIX98] (fminf): Likewise.
40910 [XPG3 || XPG4 || UNIX98] (fmaf): Likewise.
40911 [XPG3 || XPG4 || UNIX98] (nanf): Likewise.
40912 [XPG3 || XPG4 || UNIX98] (acosl): Likewise.
40913 [XPG3 || XPG4 || UNIX98] (asinl): Likewise.
40914 [XPG3 || XPG4 || UNIX98] (atanl): Likewise.
40915 [XPG3 || XPG4 || UNIX98] (atan2l): Likewise.
40916 [XPG3 || XPG4 || UNIX98] (ceill): Likewise.
40917 [XPG3 || XPG4 || UNIX98] (copysignl): Likewise.
40918 [XPG3 || XPG4 || UNIX98] (cosl): Likewise.
40919 [XPG3 || XPG4 || UNIX98] (coshl): Likewise.
40920 [XPG3 || XPG4 || UNIX98] (expl): Likewise.
40921 [XPG3 || XPG4 || UNIX98] (exp2l): Likewise.
40922 [XPG3 || XPG4 || UNIX98] (fabsl): Likewise.
40923 [XPG3 || XPG4 || UNIX98] (floorl): Likewise.
40924 [XPG3 || XPG4 || UNIX98] (fmodl): Likewise.
40925 [XPG3 || XPG4 || UNIX98] (frexpl): Likewise.
40926 [XPG3 || XPG4 || UNIX98] (ldexpl): Likewise.
40927 [XPG3 || XPG4 || UNIX98] (logl): Likewise.
40928 [XPG3 || XPG4 || UNIX98] (log10l): Likewise.
40929 [XPG3 || XPG4 || UNIX98] (log2l): Likewise.
40930 [XPG3 || XPG4 || UNIX98] (modfl): Likewise.
40931 [XPG3 || XPG4 || UNIX98] (powl): Likewise.
40932 [XPG3 || XPG4 || UNIX98] (sinl): Likewise.
40933 [XPG3 || XPG4 || UNIX98] (sinhl): Likewise.
40934 [XPG3 || XPG4 || UNIX98] (sqrtl): Likewise.
40935 [XPG3 || XPG4 || UNIX98] (tanl): Likewise.
40936 [XPG3 || XPG4 || UNIX98] (tanhl): Likewise.
40937 [XPG3 || XPG4 || UNIX98] (erfl): Likewise.
40938 [XPG3 || XPG4 || UNIX98] (erfcl): Likewise.
40939 [XPG3 || XPG4 || UNIX98] (gammal): Likewise.
40940 [XPG3 || XPG4 || UNIX98] (hypotl): Likewise.
40941 [XPG3 || XPG4 || UNIX98] (j0l): Likewise.
40942 [XPG3 || XPG4 || UNIX98] (j1l): Likewise.
40943 [XPG3 || XPG4 || UNIX98] (jnl): Likewise.
40944 [XPG3 || XPG4 || UNIX98] (lgammal): Likewise.
40945 [XPG3 || XPG4 || UNIX98] (tgammal): Likewise.
40946 [XPG3 || XPG4 || UNIX98] (y0l): Likewise.
40947 [XPG3 || XPG4 || UNIX98] (y1l): Likewise.
40948 [XPG3 || XPG4 || UNIX98] (ynl): Likewise.
40949 [XPG3 || XPG4 || UNIX98] (acoshl): Likewise.
40950 [XPG3 || XPG4 || UNIX98] (asinhl): Likewise.
40951 [XPG3 || XPG4 || UNIX98] (atanhl): Likewise.
40952 [XPG3 || XPG4 || UNIX98] (cbrtl): Likewise.
40953 [XPG3 || XPG4 || UNIX98] (expm1l): Likewise.
40954 [XPG3 || XPG4 || UNIX98] (ilogbl): Likewise.
40955 [XPG3 || XPG4 || UNIX98] (log1pl): Likewise.
40956 [XPG3 || XPG4 || UNIX98] (logbl): Likewise.
40957 [XPG3 || XPG4 || UNIX98] (nextafterl): Likewise.
40958 [XPG3 || XPG4 || UNIX98] (nexttowardl): Likewise.
40959 [XPG3 || XPG4 || UNIX98] (nearbyintl): Likewise.
40960 [XPG3 || XPG4 || UNIX98] (remainderl): Likewise.
40961 [XPG3 || XPG4 || UNIX98] (rintl): Likewise.
40962 [XPG3 || XPG4 || UNIX98] (roundl): Likewise.
40963 [XPG3 || XPG4 || UNIX98] (truncl): Likewise.
40964 [XPG3 || XPG4 || UNIX98] (lrintl): Likewise.
40965 [XPG3 || XPG4 || UNIX98] (llrintl): Likewise.
40966 [XPG3 || XPG4 || UNIX98] (lroundl): Likewise.
40967 [XPG3 || XPG4 || UNIX98] (llroundl): Likewise.
40968 [XPG3 || XPG4 || UNIX98] (remquol): Likewise.
40969 [XPG3 || XPG4 || UNIX98] (scalbl): Likewise.
40970 [XPG3 || XPG4 || UNIX98] (scalbnl): Likewise.
40971 [XPG3 || XPG4 || UNIX98] (scalblnl): Likewise.
40972 [XPG3 || XPG4 || UNIX98] (fdiml): Likewise.
40973 [XPG3 || XPG4 || UNIX98] (fmaxl): Likewise.
40974 [XPG3 || XPG4 || UNIX98] (fminl): Likewise.
40975 [XPG3 || XPG4 || UNIX98] (fmal): Likewise.
40976 [XPG3 || XPG4 || UNIX98] (nanl): Likewise.
40977
40978 * conform/conformtest.pl: Define _XOPEN_SOURCE as well as
40979 _XOPEN_SOURCE_EXTENDED for XPG4.
40980
40981 * conform/conformtest.pl: Handle "symbol" lines for allow-header.
40982
40983 * Makeconfig (localtime): Remove variable.
40984 (inst_localtime-file): Likewise.
40985
409862012-05-01 Andreas Schwab <schwab@linux-m68k.org>
40987
40988 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/ld.abilist:
40989 Update.
40990 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
40991 Update.
40992 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libm.abilist:
40993 Update.
40994 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
40995 Update.
40996 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/librt.abilist:
40997 Update.
40998 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist:
40999 Update.
41000 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
41001 Update.
41002 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist:
41003 Update.
41004 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
41005 Update.
41006
410072012-05-01 Joseph Myers <joseph@codesourcery.com>
41008
41009 [BZ #2550]
41010 [BZ #2570]
41011 * math/s_nexttowardf.c (__nexttowardf): Use floating-point
41012 comparisons to determine direction to adjust input.
41013 * sysdeps/i386/fpu/s_nexttoward.c (__nexttoward): Likewise.
41014 * sysdeps/i386/fpu/s_nexttowardf.c(__nexttowardf): Likewise.
41015 * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward):
41016 Likewise.
41017 * sysdeps/ieee754/ldbl-128/s_nexttowardf.c (__nexttowardf):
41018 Likewise.
41019 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
41020 Likewise.
41021 * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
41022 * sysdeps/ieee754/ldbl-96/s_nexttowardf.c (__nexttowardf):
41023 Likewise.
41024 * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c (__nldbl_nexttowardf):
41025 Likewise.
41026 * math/libm-test.inc (nexttoward_test): Add more tests.
41027
410282012-05-01 Andreas Schwab <schwab@linux-m68k.org>
41029
41030 [BZ #14040]
41031 * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S (nearbyintl): Define
41032 in version GLIBC_2.1, not GLIBC_2.0.
41033 * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S (nearbyintl):
41034 Likewise.
41035
410362012-04-30 Joseph Myers <joseph@codesourcery.com>
41037
41038 [BZ #13942]
41039 * sysdeps/i386/fpu/e_acos.S (__ieee754_acos): Calculate 1 - x^2 as
41040 (1 - x) * (1 + x).
41041 * sysdeps/i386/fpu/e_acosl.c (__ieee754_acosl): Likewise.
41042 * sysdeps/i386/fpu/e_asin.S (__ieee754_asin): Likewise.
41043 * math/libm-test.inc (acos_test): Add more tests.
41044 (asin_test): Likewise.
41045 * sysdeps/i386/fpu/libm-test-ulps: Update.
41046 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
41047
41048 [BZ #14034]
41049 * sysdeps/i386/fpu/e_acos.S (__ieee754_acos): Take absolute value
41050 of square root.
41051 * sysdeps/i386/fpu/e_acosf.S (__ieee754_acosf): Likewise.
41052 * sysdeps/i386/fpu/e_acosl.c (__ieee754_acosl): Likewise.
41053 * math/libm-test.inc (acos_test_tonearest): New function.
41054 (acos_test_towardzero): Likewise.
41055 (acos_test_downward): Likewise.
41056 (acos_test_upward): Likewise.
41057 (asin_test_tonearest): Likewise.
41058 (asin_test_towardzero): Likewise.
41059 (asin_test_downward): Likewise.
41060 (asin_test_upward): Likewise.
41061 (main): Call the new functions.
41062 * sysdeps/i386/fpu/libm-test-ulps: Update.
41063 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
41064
41065 [BZ #13884]
41066 [BZ #13924]
41067 * math/e_exp10.c: Include <float.h>.
41068 (__ieee754_exp10): Handle underflow here rather than multiplying
41069 large negative argument by M_LN10.
41070 * math/e_exp10f.c (__ieee754_exp10f): Call __ieee754_exp instead
41071 of __ieee754_expf.
41072 * math/e_exp10l.c: Include <float.h>.
41073 (__ieee754_exp10l): Handle underflow here rather than multiplying
41074 large negative argument by M_LN10l.
41075 * math/libm-test.inc (exp10_test): Add another test. Do not allow
41076 spurious overflow exception on underflow.
41077
410782012-04-29 Marek Polacek <polacek@redhat.com>
41079
41080 * misc/sys/cdefs.h (__attribute_artificial__): New macro.
41081 (__fortify_function): New macro.
41082 (__extern_always_inline): Don't use __attribute__ ((__artificial__)).
41083 * libio/bits/stdio-ldbl.h: Use __fortify_function in place of
41084 __extern_always_inline.
41085 * libio/bits/stdio2.h: Likewise.
41086 * libio/bits/stdio.h: Likewise.
41087 * string/string.h: Likewise.
41088 * string/bits/string3.h: Likewise.
41089 * include/stdio.h: Likewise.
41090 * stdlib/bits/stdlib.h: Likewise.
41091 * stdlib/stdlib.h: Likewise.
41092 * rt/bits/mqueue2.h: Likewise.
41093 * rt/mqueue.h: Likewise.
41094 * posix/bits/unistd.h: Likewise.
41095 * posix/unistd.h: Likewise.
41096 * io/bits/poll2.h: Likewise.
41097 * io/bits/fcntl2.h: Likewise.
41098 * io/fcntl.h: Likewise.
41099 * io/sys/poll.h: Likewise.
41100 * misc/bits/syslog.h: Likewise.
41101 * misc/bits/syslog-ldbl.h: Likewise.
41102 * misc/sys/syslog.h: Likewise.
41103 * socket/bits/socket2.h: Likewise.
41104 * socket/sys/socket.h: Likewise.
41105 * debug/tst-chk1.c: Likewise.
41106 * wcsmbs/bits/wchar2.h: Likewise.
41107 * wcsmbs/bits/wchar-ldbl.h: Likewise.
41108 * wcsmbs/wchar.h: Likewise.
41109
411102012-04-29 Andreas Jaeger <aj@suse.de>
41111
41112 * Makerules (tests): Remove enable-check-abi protection.
41113 (check-abi-warn): Remove.
41114 (check-abi-%): Remove check-abi-warn usage.
41115
41116 * configure.in: Remove check-abi configure option.
41117 * configure: Regenerated.
41118 * config.make.in (enable-check-abi): Remove.
41119
411202012-04-28 Andreas Schwab <schwab@linux-m68k.org>
41121
41122 [BZ #14033]
41123 * math/bits/math-finite.h [__NO_LONG_DOUBLE_MATH]: Redirect long
41124 double functions to double *_finite functions.
41125
41126 [BZ #13941]
41127 * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c
41128 (__mpn_extract_long_double): Use DBL_MIN_EXP instead of
41129 LDBL_MIN_EXP.
41130 * stdio-common/Makefile (tests): Add tst-sprintf3.
41131 * stdio-common/tst-sprintf3.c: New file.
41132
41133 * elf/Makefile ($(objpfx)tst-leaks1-mem, $(objpfx)noload-mem)
41134 ($(objpfx)tst-unused-dep.out): Don't run when cross-compiling.
41135
411362012-04-28 Joseph Myers <joseph@codesourcery.com>
41137
41138 * conform/conformtest.pl: Remove duplicate typed-constant
41139 handling.
41140
411412012-04-28 David S. Miller <davem@davemloft.net>
41142
41143 * Makerules (%.abilist): Add vpath on sysdep_dirs.
41144 (check-abi-%): Remove AWK script prerequisite and explicit
41145 abilist directory.
41146 (check-abi): Rewrite to just diff the symlist with the abilist.
41147 (config-tls, config-abi-config): Delete, no longer used.
41148 (update-abi-%): Remove AWK script and explicit abilist directory.
41149 (update-abi): Rewrite to simply compare and conditionally copy the
41150 symlist and the sysdep abilist file. Remove update-abi-config
41151 checks.
41152 * abilist/ld.abilist: Remove.
41153 * abilist/libBrokenLocale.abilist: Remove.
41154 * abilist/libanl.abilist: Remove.
41155 * abilist/libcrypt.abilist: Remove.
41156 * abilist/libdl.abilist: Remove.
41157 * abilist/librt.abilist: Remove.
41158 * abilist/libthread_db.abilist: Remove.
41159 * abilist/libutil.abilist: Remove.
41160 * scripts/extract-abilist.awk: Remove.
41161 * scripts/merge-abilist.awk: Remove.
41162 * sysdeps/generic/libcidn.abilist: New file.
41163 * sysdeps/generic/libnss_compat.abilist: New file.
41164 * sysdeps/generic/libnss_db.abilist: New file.
41165 * sysdeps/generic/libnss_dns.abilist: New file.
41166 * sysdeps/generic/libnss_files.abilist: New file.
41167 * sysdeps/generic/libnss_hesiod.abilist: New file.
41168 * sysdeps/generic/libnss_nis.abilist: New file.
41169 * sysdeps/generic/libnss_nisplus.abilist: New file.
41170 * sysdeps/unix/sysv/linux/i386/nptl/ld.abilist: New file.
41171 * sysdeps/unix/sysv/linux/i386/nptl/libanl.abilist: New file.
41172 * sysdeps/unix/sysv/linux/i386/nptl/libBrokenLocale.abilist: New
41173 file.
41174 * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: New file.
41175 * sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist: New file.
41176 * sysdeps/unix/sysv/linux/i386/nptl/libdl.abilist: New file.
41177 * sysdeps/unix/sysv/linux/i386/nptl/libm.abilist: New file.
41178 * sysdeps/unix/sysv/linux/i386/nptl/libnsl.abilist: New file.
41179 * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: New file.
41180 * sysdeps/unix/sysv/linux/i386/nptl/libresolv.abilist: New file.
41181 * sysdeps/unix/sysv/linux/i386/nptl/librt.abilist: New file.
41182 * sysdeps/unix/sysv/linux/i386/nptl/libthread_db.abilist: New
41183 file.
41184 * sysdeps/unix/sysv/linux/i386/nptl/libutil.abilist: New file.
41185 * sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: New file.
41186 * sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: New file.
41187 * sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist: New
41188 file.
41189 * sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: New file.
41190 * sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: New file.
41191 * sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: New file.
41192 * sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: New file.
41193 * sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: New file.
41194 * sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: New
41195 file.
41196 * sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: New file.
41197 * sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: New file.
41198 * sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist: New
41199 file.
41200 * sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: New file.
41201 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/ld.abilist:
41202 New file.
41203 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libanl.abilist:
41204 New file.
41205 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libBrokenLocale.abilist:
41206 New file.
41207 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libc.abilist:
41208 New file.
41209 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libcrypt.abilist:
41210 New file.
41211 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libdl.abilist:
41212 New file.
41213 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libm.abilist:
41214 New file.
41215 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libnsl.abilist:
41216 New file.
41217 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libpthread.abilist:
41218 New file.
41219 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libresolv.abilist:
41220 New file.
41221 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/librt.abilist:
41222 New file.
41223 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libthread_db.abilist:
41224 New file.
41225 * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libutil.abilist:
41226 New file.
41227 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist: New
41228 file.
41229 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl.abilist:
41230 New file.
41231 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale.abilist:
41232 New file.
41233 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist: New
41234 file.
41235 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist:
41236 New file.
41237 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl.abilist:
41238 New file.
41239 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist: New
41240 file.
41241 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl.abilist:
41242 New file.
41243 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
41244 New file.
41245 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv.abilist:
41246 New file.
41247 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt.abilist:
41248 New file.
41249 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db.abilist:
41250 New file.
41251 * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil.abilist:
41252 New file.
41253 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: New file.
41254 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libanl.abilist: New
41255 file.
41256 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libBrokenLocale.abilist:
41257 New file.
41258 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: New
41259 file.
41260 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist: New
41261 file.
41262 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libdl.abilist: New
41263 file.
41264 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: New
41265 file.
41266 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libnsl.abilist: New
41267 file.
41268 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
41269 New file.
41270 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libresolv.abilist: New
41271 file.
41272 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: New
41273 file.
41274 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libthread_db.abilist:
41275 New file.
41276 * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: New
41277 file.
41278 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: New file.
41279 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libanl.abilist: New
41280 file.
41281 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libBrokenLocale.abilist:
41282 New file.
41283 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: New
41284 file.
41285 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist: New
41286 file.
41287 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libdl.abilist: New
41288 file.
41289 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: New
41290 file.
41291 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libnsl.abilist: New
41292 file.
41293 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
41294 New file.
41295 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libresolv.abilist: New
41296 file.
41297 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/librt.abilist: New
41298 file.
41299 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libthread_db.abilist:
41300 New file.
41301 * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libutil.abilist: New
41302 file.
41303 * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
41304 * sysdeps/unix/sysv/linux/sh/nptl/libanl.abilist: New file.
41305 * sysdeps/unix/sysv/linux/sh/nptl/libBrokenLocale.abilist: New
41306 file.
41307 * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: New file.
41308 * sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist: New file.
41309 * sysdeps/unix/sysv/linux/sh/nptl/libdl.abilist: New file.
41310 * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: New file.
41311 * sysdeps/unix/sysv/linux/sh/nptl/libnsl.abilist: New file.
41312 * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist: New file.
41313 * sysdeps/unix/sysv/linux/sh/nptl/libresolv.abilist: New file.
41314 * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: New file.
41315 * sysdeps/unix/sysv/linux/sh/nptl/libthread_db.abilist: New file.
41316 * sysdeps/unix/sysv/linux/sh/nptl/libutil.abilist: New file.
41317 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/ld.abilist: New file.
41318 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libanl.abilist: New
41319 file.
41320 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libBrokenLocale.abilist:
41321 New file.
41322 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: New
41323 file.
41324 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist: New
41325 file.
41326 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libdl.abilist: New
41327 file.
41328 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libm.abilist: New
41329 file.
41330 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libnsl.abilist: New
41331 file.
41332 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
41333 New file.
41334 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libresolv.abilist:
41335 New file.
41336 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/librt.abilist: New
41337 file.
41338 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libthread_db.abilist:
41339 New file.
41340 * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libutil.abilist: New
41341 file.
41342 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/ld.abilist: New file.
41343 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libanl.abilist: New
41344 file.
41345 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libBrokenLocale.abilist:
41346 New file.
41347 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: New
41348 file.
41349 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist: New
41350 file.
41351 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libdl.abilist: New
41352 file.
41353 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libm.abilist: New
41354 file.
41355 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libnsl.abilist: New
41356 file.
41357 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
41358 New file.
41359 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libresolv.abilist:
41360 New file.
41361 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/librt.abilist: New
41362 file.
41363 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libthread_db.abilist:
41364 New file.
41365 * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libutil.abilist: New
41366 file.
41367
413682012-04-28 Joseph Myers <joseph@codesourcery.com>
41369
41370 * conform/conformtest.pl: Fix typo in handling typed-constant from
41371 allow-header.
41372
413732012-04-27 Joseph Myers <joseph@codesourcery.com>
41374
41375 * README: Cut down references to pre-2.6 Linux kernels and
41376 Linuxthreads. Update lists of configurations in libc and ports
41377 and sort alphabetically. Say "or newer" with Linux kernel version
41378 requirements.
41379
41380 * config.h.in [IS_IN_build]: Allow compiling without optimization.
41381
413822012-04-27 Ryan S. Arnold <rsa@linux.vnet.ibm.com>
41383
41384 [BZ #887]
41385 * math/libm-test.inc (logb_test_downward): New test to expose
41386 erroneous negative sign on -0.0 result of logb[l](1) in FE_DOWNWARD
41387 rounding mode.
41388
413892012-04-27 Joseph Myers <joseph@codesourcery.com>
41390
41391 [BZ #14027]
41392 * math/fclrexcpt.c (__feclearexcept): Return zero if nothing needs
41393 to be done.
41394 * math/fraiseexcpt.c (__feraiseexcept): Likewise.
41395 * math/fsetexcptflg.c (__fesetexceptflag): Likewise.
41396
413972012-04-26 Joseph Myers <joseph@codesourcery.com>
41398
41399 * sysdeps/unix/i386/brk.S: Remove file.
41400 * sysdeps/unix/i386/dl-brk.S: Likewise.
41401 * sysdeps/unix/i386/pipe.S: Likewise.
41402 * sysdeps/unix/i386/sigreturn.S: Likewise.
41403 * sysdeps/unix/i386/syscall.S: Likewise.
41404 * sysdeps/unix/i386/vfork.S: Likewise.
41405 * sysdeps/unix/i386/wait.S: Likewise.
41406
41407 * sysdeps/unix/common/tcsendbrk.c: Move to ...
41408 * sysdeps/unix/sysv/linux/tcsendbrk.c: ... here.
41409
41410 * configure.in (arm*-none*): Do not allow without
41411 --enable-hacker-mode.
41412 (netbsd*): Remove case setting base_os.
41413 (386bsd*): Likewise.
41414 (freebsd*): Likewise.
41415 (bsdi*): Likewise.
41416 (osf*): Likewise.
41417 (sunos*): Likewise.
41418 (ultrix*): Likewise.
41419 (newsos*): Likewise.
41420 (dynix*): Likewise.
41421 (*bsd*): Likewise.
41422 (sysv*): Likewise.
41423 (isc*): Likewise.
41424 (esix*): Likewise.
41425 (sco*): Likewise.
41426 (minix*): Likewise.
41427 (irix4*): Likewise.
41428 (irix6*): Likewise.
41429 (solaris[2-9]*): Likewise.
41430 (none): Likewise.
41431 * configure: Regenerated.
41432
414332012-04-26 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
41434
41435 [BZ #11521]
41436 * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c (__ctanhl): Avoid internal
41437 overflow or cancellation in calculating denominator.
41438 * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c (__ctanl): Likewise.
41439 * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c (__ieee754_sinhl): Breaking
41440 down expression to avoid unexpected rounding in newer GCCs.
41441 * sysdeps/powerpc/fpu/libm-test-ulps: Update for ctan, ctanh fix.
41442
414432012-04-26 David S. Miller <davem@davemloft.net>
41444
41445 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Generate
41446 long-double compat symbols.
41447 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
41448 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: Likewise.
41449 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: Likewise.
41450 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: Likewise.
41451 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Likewise.
41452 * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Likewise.
41453 * sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S: Likewise.
41454 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S: Likewise.
41455 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S: Likewise.
41456 * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: Likewise.
41457 * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: Likewise.
41458 * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S: Likewise.
41459 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
41460
414612012-04-25 David S. Miller <davem@davemloft.net>
41462
41463 * sysdeps/sparc/sparc32/bits/atomic.h: Include sysdep.h to get
41464 HWCAP_* values only after the memory barriers have been defined.
41465 (atomic_full_barrier): Define.
41466 (atomic_read_barrier): Define.
41467 (atomic_write_barrier): Define.
41468
414692012-04-26 Siddhesh Poyarekar <siddhesh@redhat.com>
41470
41471 * shlib-versions: Add libgcc_s version information.
41472 * sysdeps/generic/libgcc_s.h: Remove.
41473 * sysdeps/generic/framestate.c: Include gnu/lib-names.h instead of
41474 libgcc_s.h.
41475 * sysdeps/gnu/unwind-resume.c: Likewise.
41476 * scripts/test-installation.pl: Remove libgcc_s from link_libs.
41477
414782012-04-25 David S. Miller <davem@davemloft.net>
41479
41480 * sysdeps/unix/sparc/brk.S: Delete.
41481 * sysdeps/unix/sparc/dl-brk.S: Delete.
41482 * sysdeps/unix/sparc/pipe.S: Delete.
41483 * sysdeps/unix/sparc/sysdep.S: Delete.
41484 * sysdeps/unix/sparc/sysdep.h: Delete.
41485 * sysdeps/unix/sparc/vfork.S: Delete.
41486 * sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK, SPARC_PIC_REG)
41487 (SPARC_PIC_REG_LEAF, ENTRY, END, LOC): Define.
41488 * sysdeps/unix/sysv/linux/sparc/sysdep.h (ret, ret_NOERRNO)
41489 (ret_ERRVAL, r0, r1, MOVE): Define.
41490 (JUMPTARGET): Remove.
41491 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Don't include
41492 sysdeps/unix/sparc/sysdep.h
41493 (ENTRY, END): Remove.
41494 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
41495
414962012-04-25 Joseph Myers <joseph@codesourcery.com>
41497
41498 * Makerules (native-compile): Use $(BUILD_LDFLAGS).
41499 (ALL_BUILD_CFLAGS): Use $(BUILD_CPPFLAGS) -D_GNU_SOURCE
41500 -DIS_IN_build.
41501
41502 * timezone/README: Update upstream location and email address for
41503 tzcode and tzdata.
41504 * timezone/zdump.c: Update from tzcode 2012b.
41505 * timezone/zic.c: Likewise.
41506
41507 * configure.in (libc_cv_as_needed): Remove test.
41508 * configure: Regenerated.
41509 * Makeconfig [$(have-as-needed) != yes] (as-needed): Remove
41510 conditional definition.
41511 [$(have-as-needed) != yes] (no-as-needed): Likewise.
41512 [$(have-as-needed) != yes] (libgcc_eh): Likewise.
41513 * config.make.in (have-as-needed): Remove variable.
41514
415152012-04-25 Siddhesh Poyarekar <siddhesh@redhat.com>
41516 Paul Pluzhnikov <ppluzhnikov@google.com>
41517
41518 * elf/dl-minimal.c (__strtoul_internal): Parse hexadecimal and octal
41519 strings correctly.
41520
415212012-04-25 Chung-Lin Tang <cltang@codesourcery.com>
41522
41523 * sysdeps/sh/memcpy.S: Remove include of endian.h, change
41524 preprocessor endian tests to '#ifdef __BIG_ENDIAN__'.
41525 * sysdeps/sh/strlen.S: Likewise.
41526
415272012-04-24 Joseph Myers <joseph@codesourcery.com>
41528
41529 * sysdeps/unix/fork.S: Remove file.
41530 * sysdeps/unix/i386/fork.S: Likewise.
41531 * sysdeps/unix/sparc/fork.S: Likewise.
41532
41533 * sysdeps/unix/system.c: Remove file.
41534 * sysdeps/unix/bsd/bsd4.4/system.c: Likewise.
41535
41536 * sysdeps/unix/getegid.S: Remove file.
41537 * sysdeps/unix/geteuid.S: Likewise.
41538
415392012-04-24 Roland McGrath <roland@hack.frob.com>
41540
41541 * scripts/check-localplt.awk: New file.
41542 * elf/Makefile ($(objpfx)check-localplt.out): Use that script instead
41543 of diff.
41544 * scripts/data/localplt-generic.data: Add a comment.
41545
41546 * sysdeps/mach/hurd/symlink.c: Don't call __mach_port_deallocate on
41547 NODE when __dir_mkfile failed.
41548 * sysdeps/mach/hurd/symlinkat.c: Likewise.
41549 Reported by Ludovic Courtès <ludo@gnu.org>.
41550
415512012-04-24 Andreas Jaeger <aj@suse.de>
41552
41553 * Makerules (common-clean): Also remove gen-as-const-headers
41554 files.
41555
415562012-04-24 Joseph Myers <joseph@codesourcery.com>
41557
41558 * Makerules (native-compile): Do not change working directory for
41559 build. Use $(OUTPUT_OPTION) in command.
41560 (ALL_BUILD_CFLAGS): Use $(common-objpfx) to find config.h.
41561
415622012-04-24 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
41563
41564 [BZ #13886]
41565 * sysdeps/powerpc/powerpc64/fpu/s_floorl.S: Delete file. Use the
41566 sysdeps/ieee754/ldbl-128ibm/s_floorl.c version instead.
41567 * math/libm-test.inc (floor_test): Add more tests.
41568 * sysdeps/powerpc/fpu/libm-test-ulps: Update for pow tests.
41569
415702012-04-24 Joseph Myers <joseph@codesourcery.com>
41571
41572 * sysdeps/unix/getdents.c: Remove file.
41573 * sysdeps/unix/sysv/getdents.c: Likewise.
41574 * sysdeps/unix/sysv/syscalls.list (s_getdents): Remove.
41575
41576 * sysdeps/unix/syscalls.list (madvise): Add syscall from
41577 sysdeps/unix/mman/syscalls.list.
41578 (mmap): Likewise.
41579 (mprotect): Likewise.
41580 (msync): Likewise.
41581 (munmap): Likewise.
41582 * sysdeps/unix/bsd/bsd4.4/Implies: Remove.
41583 * sysdeps/unix/mman/syscalls.list: Remove.
41584 * sysdeps/unix/sysv/linux/Implies: Don't include unix/mman.
41585
41586 * configure.in (libc_cv_libgcc_s_suffix): Remove test.
41587 (libc_cv_as_needed): Don't use $libc_cv_libgcc_s_suffix.
41588 * configure: Regenerated.
41589 * Makeconfig [$(have-as-needed) = yes] (libgcc_eh): Don't use
41590 $(libgcc_s_suffix).
41591 * config.make.in (libgcc_s_suffix): Remove variable.
41592
415932012-04-23 Joseph Myers <joseph@codesourcery.com>
41594
41595 * sysdeps/unix/sysv/gethostname.c: Move to ...
41596 * sysdeps/posix/gethostname.c: ... here.
41597
41598 * sysdeps/unix/execve.S: Remove file.
41599
41600 * sysdeps/unix/_exit.S: Remove file.
41601
416022012-04-23 Andreas Jaeger <aj@suse.de>
41603
41604 [BZ #13739]
41605 * manual/Makefile: Remove make dist support, there's no
41606 need for a stand-alone documentation tar ball.
41607 (TEXI2DVI): Define always, it's not in Makeconfig.
41608 (dist): Removed.
41609 (tar-it): Removed.
41610 (edition): Removed.
41611 (glibc-doc-$(edition).tar): Removed
41612 (%.Z): Removed.
41613 (%.gz): Removed.
41614 (%.uu): Removed.
41615 (ETAGS): Remove, it's in Makeconfig.
41616 (move-if-change): Remove, it's in Makeconfig.
41617
416182012-04-23 Paul Eggert <eggert@cs.ucla.edu>
41619
41620 [BZ #13970]
41621 * stdlib/stdlib.h: Remove warn_unused_result attribute from strtol etc.
41622 (strtod, strtof, strtold, strtol, strtoul, strtoq)
41623 (strtouq, strtoll, strtoull, strtol_l, strtoul_l, strtoll_l, strtoull_l)
41624 (strtod_l, strtof_l, strtold_l): Remove __wur.
41625 It is not necessarily an error to ignore strtol's return value.
41626 One can reliably look at the stored endptr to decide whether
41627 the number had valid syntax.
41628
416292012-04-21 Andreas Jaeger <aj@suse.de>
41630
41631 [BZ #13739]
41632 * sysdeps/s390/s390-64/Makefile (distribute): Remove variable.
41633
416342012-04-21 Joseph Myers <joseph@codesourcery.com>
41635
41636 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.0): Add sysinfo.
41637 * sysdeps/unix/sysv/Versions: Remove file.
41638
416392012-04-21 Markus Trippelsdorf <markus@trippelsdorf.de>
41640
41641 [BZ #13927]
41642 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
41643
416442012-04-21 Nick Alcock <nick.alcock@oracle.com>
41645
41646 [BZ #7064]
41647 * sysdeps/unix/sysv/linux/i386/syscalls.list: Omit explicit
41648 version from __vm86.
41649
416502012-04-20 Joseph Myers <joseph@codesourcery.com>
41651
41652 * sysdeps/unix/common/lxstat.c: Remove file.
41653 * sysdeps/unix/common/syscalls.list (sys_lstat): Remove.
41654
41655 * sysdeps/unix/sysv/Makefile: Remove file.
41656
41657 * sysdeps/unix/sysv/direct.h: Remove file.
41658
41659 * sysdeps/unix/sysv/bits/dirent.h: Remove file.
41660 * sysdeps/unix/sysv/bits/fcntl.h: Likewise.
41661 * sysdeps/unix/sysv/bits/local_lim.h: Likewise.
41662 * sysdeps/unix/sysv/bits/signum.h: Likewise.
41663 * sysdeps/unix/sysv/bits/stat.h: Likewise.
41664 * sysdeps/unix/sysv/bits/utmp.h: Likewise.
41665 * sysdeps/unix/sysv/bits/utsname.h: Likewise.
41666
41667 * sysdeps/unix/sysv/setrlimit.c: Remove file.
41668
41669 * sysdeps/unix/xmknod.c: Remove file.
41670 * sysdeps/unix/syscalls.list (sys_mknod): Remove.
41671
41672 * sysdeps/unix/sysv/settimeofday.c: Remove file.
41673
41674 * sysdeps/unix/sysv/i386/time.S: Remove file.
41675
41676 * sysdeps/unix/fxstat.c: Remove file.
41677 * sysdeps/unix/xstat.c: Likewise.
41678 * sysdeps/unix/syscalls.list (sys_fstat, sys_stat): Remove.
41679
41680 * sysdeps/unix/sysv/sigaction.c: Remove file.
41681
41682 * sysdeps/unix/sysv/Makefile [termio.h not in sysdep_headers]
41683 (sysdep_headers): Remove variable.
41684 [termio.h not in sysdep_headers] (generated): Likewise.
41685 [termio.h not in sysdep_headers] ($(objpfx)termio.h): Remove rule.
41686 * sysdeps/unix/sysv/sysv_termio.h: Remove file.
41687 * sysdeps/unix/sysv/tcdrain.c: Likewise.
41688 * sysdeps/unix/sysv/tcflow.c: Likewise.
41689 * sysdeps/unix/sysv/tcflush.c: Likewise.
41690 * sysdeps/unix/sysv/tcgetattr.c: Likewise.
41691 * sysdeps/unix/sysv/tcgetpgrp.c: Likewise.
41692 * sysdeps/unix/sysv/tcsendbrk.c: Likewise.
41693 * sysdeps/unix/sysv/tcsetattr.c: Likewise.
41694 * sysdeps/unix/sysv/tcsetpgrp.c: Likewise.
41695
41696 * sysdeps/unix/siglist.c: Remove file.
41697
41698 * sysdeps/unix/getppid.S: Remove file.
41699
41700 * sysdeps/unix/mkdir.c: Remove file.
41701 * sysdeps/unix/rmdir.c: Likewise.
41702
417032012-04-19 Andreas Schwab <schwab@linux-m68k.org>
41704
41705 * sysdeps/gnu/errlist-compat.awk (END): Correct computation of
41706 ERR_MAX value.
41707 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.12): Adjust
41708 errlist-compat value.
41709
417102012-04-18 David S. Miller <davem@davemloft.net>
41711
41712 * sysdeps/generic/memcopy.h (reg_char): Delete.
41713 * debug/strcat_chk.c: Use char, not reg_char.
41714 * debug/strcpy_chk.c: Likewise.
41715 * debug/strncat_chk.c: Likewise.
41716 * debug/strncpy_chk.c: Likewise.
41717 * string/memchr.c: Likewise.
41718 * string/memrchr.c: Likewise.
41719 * string/rawmemchr.c: Likewise.
41720 * string/strcat.c: Likewise.
41721 * string/strchr.c: Likewise.
41722 * string/strchrnul.c: Likewise.
41723 * string/strcmp.c: Likewise.
41724 * string/strcpy.c: Likewise.
41725 * string/strncat.c: Likewise.
41726 * string/strncmp.c: Likewise.
41727 * string/strncpy.c: Likewise.
41728
417292012-04-18 Will Schmidt <will_schmidt@vnet.ibm.com>
41730
41731 * sysdeps/powerpc/memmove.c: New file based on string/memmove.c where
41732 __builtin_memcopy is called when src and dest ranges are known to not
41733 overlap.
41734
417352012-04-18 Will Schmidt <will_schmidt@vnet.ibm.com>
41736
41737 * sysdeps/powerpc/powerpc64/power6/wordcopy.c
41738 (_wordcopy_fwd_dest_aligned): Replace switch with a parameterized
41739 fwd_align_merge macro call.
41740 (_wordcopy_bwd_dest_aligned): Replace switch with a parameterized
41741 bwd_align_merge macro call.
41742 * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
41743
417442012-04-18 Will Schmidt <will_schmidt@vnet.ibm.com>
41745
41746 * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Add fwd_align_merge and
41747 bwd_align_merge macros.
41748 (_wordcopy_fwd_dest_aligned): Use fwd_align_merge macro calls.
41749 (_wordcopy_bwd_dest_aligned): Use bwd_align_merge macro calls.
41750 * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
41751
417522012-04-18 David S. Miller <davem@davemloft.net>
41753
41754 * sysdeps/sparc/sparc64/memcopy.h: Delete.
41755
417562012-04-18 Andreas Jaeger <aj@suse.de>
41757
41758 [BZ# 6794]
41759 * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Moved to ...
41760 * sysdeps/ieee754/ldbl-96/e_ilogbl.c: ... here.
41761 Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
41762
41763 * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Moved to ...
41764 * sysdeps/ieee754/ldbl-128/e_ilogbl.c: ... here.
41765 Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
41766
41767 * sysdeps/ieee754/ldbl-64-128/s_ilogbl.c: Moved to ...
41768 * sysdeps/ieee754/ldbl-64-128/e_ilogbl.c: ... here.
41769 Adjust for changed ldbl-128 files.
41770
41771 * sysdeps/sparc/sparc64/soft-fp/s_ilogbl.c: Moved to ...
41772 * sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c: ... here.
41773 Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
41774
417752012-04-17 David S. Miller <davem@davemloft.net>
41776
41777 * sysdeps/sparc/sparc32/memcopy.h: Delete.
41778
417792012-04-17 Andreas Schwab <schwab@linux-m68k.org>
41780
41781 * sysdeps/i386/fpu/e_ilogb.S: Remove __ilogb*_finite alias.
41782 * sysdeps/i386/fpu/e_ilogbf.S: Likewise.
41783 * sysdeps/i386/fpu/e_ilogbl.S: Likewise.
41784 * sysdeps/x86_64/fpu/e_ilogbl.S: Likewise.
41785 * sysdeps/ieee754/dbl-64/e_ilogb.c: Likewise.
41786 * sysdeps/ieee754/flt-32/e_ilogbf.c: Likewise.
41787
417882012-04-17 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
41789
41790 [BZ #6794]
41791 * math/Makefile: Add e_ilogb and w_ilogb, remove s_logb.
41792 * math/libm-test.inc: Add ilogb errno and exception tests.
41793 * math/w_ilogb.c: New file: ilogb wrapper.
41794 * math/w_ilogbf.c: New file: ilogbf wrapper.
41795 * math/w_ilogbl.c: New file: ilogbl wrapper.
41796 * sysdeps/generic/math_private.h: Add __ieee754_ilogb[l|f] prototypes.
41797 * sysdeps/i386/fpu/s_ilogb.S: Moved to ...
41798 * sysdeps/i386/fpu/e_ilogb.S: ... here. Also fixed a FE_DIVBYZERO
41799 exception being thrown with 0.0 as argument.
41800 * sysdeps/i386/fpu/s_ilogbf.S: Moved to ...
41801 * sysdeps/i386/fpu/e_ilogbf.S: ... here. Also fixed a FE_DIVBYZERO
41802 exception being thrown with 0.0 as argument.
41803 * sysdeps/i386/fpu/s_ilogbl.S: Moved to ...
41804 * sysdeps/i386/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
41805 exception being thrown with 0.0 as argument.
41806 * sysdeps/x86_64/fpu/s_ilogbl.S: Moved to ...
41807 * sysdeps/x86_64/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
41808 exception being thrown with 0.0 as argument.
41809 * sysdeps/ieee754/dbl-64/s_ilogb.c: Moved to ...
41810 * sysdeps/ieee754/dbl-64/e_ilogb.c: ... here.
41811 * sysdeps/ieee754/flt-32/s_ilogbf.c: Moved to ...
41812 * sysdeps/ieee754/flt-32/e_ilogbf.c: ... here.
41813 * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Moved to ...
41814 * sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c: ... here.
41815 * sysdeps/ieee754/ldbl-opt/s_ilogb.c: Moved to ...
41816 * sysdeps/ieee754/ldbl-opt/w_ilogb.c: ... here.
41817 * sysdeps/ieee754/ldbl-opt/w_ilogbl.c: New file: ilogbl wrapper.
41818
418192012-04-17 Petr Baudis <pasky@ucw.cz>
41820
41821 * include/sys/uio.h: Change __vector to __iovec to avoid clash
41822 with altivec.
41823
418242012-04-16 Marek Polacek <polacek@redhat.com>
41825
41826 * elf/pldd-xx.c: Rename static_assert to pldd_assert.
41827
418282012-04-16 Marek Polacek <polacek@redhat.com>
41829
41830 * sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Reverse the
41831 operands of fdivp instruction.
41832
418332012-04-13 H.J. Lu <hongjiu.lu@intel.com>
41834
41835 * elf/tst-auditmod1.c: Check __ILP32__ instead of __LP64__.
41836 * elf/tst-auditmod3b.c: Likewise.
41837 * elf/tst-auditmod4b.c: Likewise.
41838 * elf/tst-auditmod5b.c: Likewise.
41839 * elf/tst-auditmod6b.c: Likewise.
41840 * elf/tst-auditmod6c.c: Likewise.
41841 * elf/tst-auditmod7b.c: Likewise.
41842 * sysdeps/x86_64/ffsll.c (ffsl): Likewise.
41843 * sysdeps/x86_64/preconfigure.in: Likewise.
41844 * sysdeps/x86_64/preconfigure: Regenerated.
41845
418462012-04-13 H.J. Lu <hongjiu.lu@intel.com>
41847
41848 * sysdeps/x86_64/bits/wordsize.h (__WORDSIZE): Also check
41849 __ILP32__.
41850
418512012-04-13 Antoine Balestrat <merkil33@gmail.com>
41852
41853 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
41854 (__get_clockfreq_via_proc_openprom): Fix test on wrong variable.
41855
418562012-04-13 Chris Leonard <cjlhomeaddress@gmail.com>
41857
41858 [BZ #13973]
41859 * locale/iso-639.def: Fix gl language name. Spotted by
41860 Yaron Shahrabani.
41861
418622012-04-12 Roland McGrath <roland@hack.frob.com>
41863
41864 [BZ #2074]
41865 * libio/libio.h (__io_write_fn): Update comment.
41866
418672012-04-12 Petr Baudis <pasky@ucw.cz>
41868
41869 [BZ #2074]
41870 * stdio.texi (Hook Functions): The user provided writer function
41871 is not allowed to return -1.
41872
418732012-04-11 David S. Miller <davem@davemloft.net>
41874
41875 * sysdeps/sparc/fpu/libm-test-ulps: Update.
41876
418772012-04-11 Mike Frysinger <vapier@gentoo.org>
41878
41879 * .gitignore: Add /ports, /linuxthreads, and /linuxthreads_db.
41880 Add a leading slash to rtkaio.
41881
418822012-04-11 Jim Meyering <meyering@redhat.com>
41883
41884 [BZ #11959]
41885 * libio/stdio.h (fwrite, fwrite_unlocked): Remove __wur.
41886 It is not necessarily an error to ignore fwrite's return
41887 value. One can reliably use ferror to test for errors after
41888 the fact.
41889
418902012-04-10 H.J. Lu <hongjiu.lu@intel.com>
41891
41892 * bits/types.h (__snseconds_t): New type.
41893 * time/time.h (struct timespec): Use __snseconds_t on tv_nsec.
41894
41895 * bits/typesizes.h (__SNSECONDS_T_TYPE): New macro.
41896 * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
41897 (__SNSECONDS_T_TYPE): Likewise.
41898 * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
41899 (__SNSECONDS_T_TYPE): Likewise.
41900 * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
41901 (__SNSECONDS_T_TYPE): Likewise.
41902
419032012-04-10 Andreas Jaeger <aj@suse.de>
41904
41905 [BZ #2636]
41906 * manual/time.texi (Processor Time): Return type of times is
41907 elapsed real time since an arbitrary point in the past.
41908 (CPU Time): Move CLK_TCK from here...
41909 (Processor Time): ...to here. Correct description.
41910 * manual/conf.texi (Constants for Sysconf): Correct description of
41911 _SC_CLK_TCK.
41912
419132012-04-10 David S. Miller <davem@davemloft.net>
41914
41915 [BZ #13967]
41916 * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Handle the case
41917 where the is a gap between DT_REL(A) and DT_JMPREL.
41918
419192012-04-10 H.J. Lu <hongjiu.lu@intel.com>
41920
41921 * sysdeps/x86_64/bits/byteswap.h: Include <features.h>.
41922 (__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
41923 (__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
41924
419252012-04-10 Siddhesh Poyarekar <siddhesh@redhat.com>
41926
41927 * elf/dl-support.c (_dl_inhibit_cache): New variable.
41928 * elf/rtld.c (_rtld_global_ro): New member _dl_inhibit_cache.
41929 (dl_main): Handle --inhibit-cache.
41930 * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): New member
41931 _dl_inhibit_cache.
41932 * elf/dl-load.c (_dl_map_object): Use it.
41933 * elf/Makefile: Define SYSCONFDIR when building rtld.c.
41934
419352012-04-09 Joseph Myers <joseph@codesourcery.com>
41936
41937 [BZ #13872]
41938 * sysdeps/i386/fpu/e_powl.S (p78): New object.
41939 (__ieee754_powl): Saturate large exponents rather than testing for
41940 overflow of y*log2(x).
41941 * sysdeps/x86_64/fpu/e_powl.S: Likewise.
41942 * math/libm-test.inc (pow_test): Do not permit spurious overflow
41943 exceptions.
41944
41945 [BZ #11521]
41946 * math/s_ctan.c: Include <float.h>.
41947 (__ctan): Avoid internal overflow or cancellation in calculating
41948 denominator.
41949 * math/s_ctanf.c: Likewise.
41950 * math/s_ctanl.c: Likewise.
41951 * math/s_ctanh.c: Likewise.
41952 * math/s_ctanhf.c: Likewise.
41953 * math/s_ctanhl.c: Likewise.
41954 * math/libm-test.inc (ctan_test): Add more tests.
41955 (ctanh_test): Likewise.
41956 * sysdeps/i386/fpu/libm-test-ulps: Update.
41957 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
41958
419592012-04-09 Andreas Jaeger <aj@suse.de>
41960
41961 [BZ #6894]
41962 * manual/filesys.texi (Directory Entries): Mention that d_namlen
41963 is an optional BSD extension.
41964
41965 [BZ #10254]
41966 * manual/stdio.texi (Opening Streams): Document additional fopen
41967 parameters.
41968
419692012-04-09 Roland McGrath <roland@hack.frob.com>
41970
41971 * sysdeps/i386/fpu/bits/mathinline.h (__sincos_code): Don't clobber
41972 %eax without telling the compiler.
41973
419742012-04-09 Carlos O'Donell <carlos_odonell@mentor.com>
41975
41976 [BZ # 13963]
41977 * manual/install.texi: Use sourceware.org.
41978
419792012-04-09 Joseph Myers <joseph@codesourcery.com>
41980
41981 [BZ #13873]
41982 * sysdeps/ieee754/dbl-64/e_pow.c (huge, tiny): New variables.
41983 (__ieee754_pow): Generate overflow and underflow using huge*huge
41984 and tiny*tiny rather than just returning constant infinity or zero
41985 for large exponents.
41986 * math/libm-test.inc (pow_test): Require overflow exceptions for
41987 applicable cases of large exponents.
41988
41989 [BZ #706]
41990 * sysdeps/i386/fpu/e_pow.S (p10): New object.
41991 (__ieee754_pow): Use iterative multiplication algorithm only for
41992 integer exponents with absolute value below 1024. Check for odd
41993 integer exponents when using algorithm for real exponents.
41994 * math/libm-test.inc (pow_test): Add more tests.
41995 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
41996
419972012-04-08 Joseph Myers <joseph@codesourcery.com>
41998
41999 [BZ #13705]
42000 * math/libm-test.inc (exp_test): Do not allow overflow exception
42001 on underflow test.
42002
420032012-04-08 Aurelien Jarno <aurelien@aurel32.net>
42004
42005 [BZ #13705]
42006 * sysdeps/ieee754/dbl-64/w_exp.c (__exp): Use __kernel_standard
42007 instead of __kernel_standard_f.
42008
420092012-04-08 Mike Frysinger <vapier@gentoo.org>
42010
42011 * sysdeps/i386/i686/memset_chk.S: Update copyright year.
42012 * sysdeps/x86_64/memset_chk.S: Likewise.
42013
420142012-04-08 Andreas Jaeger <aj@suse.de>
42015
42016 [BZ #10153]
42017 * manual/startup.texi (Environment Access): Describe return value
42018 for putenv and setenv.
42019
42020 [BZ #6895]
42021 * manual/filesys.texi (Directory Entries): Add description for
42022 DT_LNK.
42023
42024 [BZ #6890]
42025 * manual/filesys.texi (Directory Entries): Clarify that it's file
42026 system not operating system in the description of DT_UNKNOWN.
42027
42028 [BZ #6578]
42029 * manual/syslog.texi (closelog): Fix reference, it's openlog.
42030
420312012-04-08 Stephen Compall <s11@member.fsf.org>
42032
42033 [BZ #6649]
42034 * manual/llio.texi (Opening and Closing Files): Add cross
42035 reference to explain mode argument.
42036
420372012-04-07 Mike Frysinger <vapier@gentoo.org>
42038
42039 * sysdeps/i386/i686/memset_chk.S: Change PIC to SHARED.
42040 * sysdeps/x86_64/memset_chk.S: Likewise.
42041
420422012-04-07 David S. Miller <davem@davemloft.net>
42043
42044 * elf/elf.h (R_SPARC_WDISP10): Define.
42045 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Handle
42046 R_SPARC_SIZE32.
42047 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Handle
42048 R_SPARC_SIZE64 and R_SPARC_H34.
42049
420502012-04-07 Carlos O'Donell <carlos_odonell@mentor.com>
42051
42052 * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Simplify
42053 conditions and remove no longer applicable assertion.
42054
420552012-04-06 H.J. Lu <hongjiu.lu@intel.com>
42056
42057 * bits/byteswap.h: Include <features.h>.
42058 (__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
42059 (__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
42060
420612012-04-06 H.J. Lu <hongjiu.lu@intel.com>
42062
42063 * bits/byteswap.h (__bswap_16): Removed.
42064 Include <bits/byteswap-16.h> to get __bswap_16.
42065 * sysdeps/i386/bits/byteswap.h: Likewise.
42066 * sysdeps/s390/bits/byteswap.h: Likewise.
42067 * sysdeps/x86_64/bits/byteswap.h: Likewise.
42068 * bits/byteswap-16.h: New file.
42069 * sysdeps/i386/bits/byteswap-16.h: Likewise.
42070 * sysdeps/s390/bits/byteswap-16.h: Likewise.
42071 * sysdeps/x86_64/bits/byteswap-16.h: Likewise.
42072 * string/Makefile (headers): Add bits/byteswap-16.h.
42073
420742012-04-06 Paul Pluzhnikov <ppluzhnikov@google.com>
42075
42076 [BZ #13895]
42077 * nss/nsswitch.c (nss_load_library, __nss_lookup_function): Avoid
42078 extra indirection.
42079 * nss/Makefile (tests-static, tests): Add tst-nss-static.
42080 * nss/tst-nss-static.c: New.
42081
420822012-04-06 Robert Millan <rmh@gnu.org>
42083
42084 [BZ #6486]
42085 * manual/llio.texi (File Position Primitive): lseek
42086 refers to WHENCE when it really means OFFSET.
42087
420882012-04-06 Andreas Jaeger <aj@suse.de>
42089
42090 * nss/nss_db/db-initgroups.c: Include <string.h> for strlen and
42091 strncmp declarations.
42092
42093 * abilist/libc.abilist: Add __poll and __ppoll.
42094
420952012-04-05 David S. Miller <davem@davemloft.net>
42096
42097 * scripts/check-local-headers.sh: Accept a host triplet in the
42098 path matched by the exclude regexp.
42099
42100 * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Reduce down to one
42101 definition.
42102 * sysdeps/powerpc/powerpc32/dl-machine.h
42103 (ELF_MACHINE_PLTREL_OVERLAP): Delete.
42104 * sysdeps/s390/s390-32/dl-machine.h
42105 (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
42106 * sysdeps/sparc/sparc32/dl-machine.h
42107 (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
42108 * sysdeps/sparc/sparc64/dl-machine.h
42109 (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
42110
42111 * elf/rtld.c (dl_main): If DL_DEBUG_UNUSED is enabled, turn off
42112 lazy binding.
42113 * elf/dl-lookup.c (_dl_lookup_symbol_x): If DL_DEBUG_UNUSED, ignore
42114 undefined symbol errors.
42115
42116 * elf/rtld.c (dl_main): Skip VDSO when checking for unused
42117 DT_NEEDED entries.
42118
421192012-04-05 Michael Matz <matz@suse.de>
42120
42121 [BZ #13592]
42122 * sysdeps/x86_64/memset.S: Fix size paramater comparisions.
42123
421242012-04-05 Andreas Jaeger <aj@suse.de>
42125
42126 [BZ #13908]
42127 * stdlib/stdlib.h: Don't warn about unused result of mktemp, fix
42128 comment.
42129
421302012-04-05 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42131
42132 * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Fix return value
42133 which ROUND is no valid rounding mode.
42134
421352012-04-05 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42136
42137 * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Set fpscr register which
42138 read again.
42139 * sysdeps/sh/sh4/fpu/ftestexcept.c: Likewise.
42140
421412012-04-05 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42142
42143 * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Produce
42144 an exception using FPU order intentionally.
42145
421462012-04-05 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42147
42148 * sysdeps/sh/sh4/fpu/fedisblxcpt.c: New file.
42149 * sysdeps/sh/sh4/fpu/feenablxcpt.c: New file.
42150 * sysdeps/sh/sh4/fpu/fegetexcept.c: New file.
42151 * sysdeps/sh/sh4/fpu/feupdateenv.c: New file.
42152
421532012-04-05 Simon Josefsson <simon@josefsson.org>
42154
42155 [BZ #12340]
42156 * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Return ERANGE instead of
42157 EINVAL when BUFLEN is too smal.
42158
421592012-04-05 Thomas Schwinge <thomas@codesourcery.com>
42160
42161 [BZ #13553]
42162 * sysdeps/mach/i386/machine-lock.h: Use volatile instead of __volatile.
42163 * sysdeps/mach/powerpc/machine-lock.h: Likewise.
42164
421652012-04-03 Andreas Jaeger <aj@suse.de>
42166
42167 [BZ #13938]
42168 * manual/setjmp.texi (System V contexts): Fix sentence.
42169
42170 [BZ #13926]
42171 * sysdeps/i386/bits/byteswap.h [!__GNUC__](__bswap_constant_64):
42172 New macro for this case.
42173 [!__GNUC__] (__bswap_64): New inline function for this case.
42174 * sysdeps/x86_64/bits/byteswap.h: Likewise.
42175 * bits/byteswap.h: Likewise.
42176 * sysdeps/s390/bits/byteswap.h: [!__GNUC__] (__bswap_64): Use
42177 ull, guard with __GLIBC_HAVE_LONG_LONG.
42178
42179 * string/endian.h (htobe64,htole64,be64toh,le64toh): Guard with
42180 __GLIBC_HAVE_LONG_LONG.
42181
42182 * string/byteswap.h (bswap_64): Guard with __GLIBC_HAVE_LONG_LONG.
42183 Include <features.h> for __GLIBC_HAVE_LONG_LONG.
42184
421852012-04-02 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
42186
42187 [BZ #13691]
42188 * iconvdata/tcvn5712-1.c (FROM_LOOP): Test end of input using
42189 inptr and inend, rather than using last_ch.
42190
421912012-04-02 David S. Miller <davem@davemloft.net>
42192
42193 With help from Paul Eggert, Carlos O'Donell, and Roland McGrath.
42194 * stdio-common/printf-parse.h (read_int): Change return type to
42195 'int', return -1 on INT_MAX overflow.
42196 * stdio-common/vfprintf.c (vfprintf): Validate width and precision
42197 against overflow of INT_MAX. Set errno to EOVERFLOW when 'done'
42198 overflows INT_MAX. Check for overflow of in-format-string precision
42199 values properly. Use EOVERFLOW rather than ERANGE throughout. Use
42200 SIZE_MAX not INT_MAX for integer overflow test.
42201 * stdio-common/printf-parsemb.c: If read_int signals an overflow,
42202 skip the construct in the format string but do not record anything.
42203 * stdio-common/bug22.c: Adjust to test both width/prevision
42204 INT_MAX overflow as well as total length INT_MAX overflow. Check
42205 explicitly for proper errno values.
42206
422072012-04-02 Thomas Schwinge <thomas@codesourcery.com>
42208
42209 * string/test-memcmp.c [! WIDE]: #include <limits.h> for CHAR_MIN,
42210 CHAR_MAX.
42211 * string/test-strcmp.c [! WIDE]: Likewise.
42212 * time/tst-mktime2.c: Likewise for INT_MAX.
42213 * string/test-string.h: #include <sys/param.h> for MIN.
42214
42215 * csu/init-first.c (__libc_init_first): Call __ctype_init.
42216 * sysdeps/i386/init-first.c (init): Likewise.
42217 * sysdeps/mach/hurd/i386/init-first.c (posixland_init): Likewise.
42218 * sysdeps/mach/hurd/powerpc/init-first.c (posixland_init): Likewise.
42219 * sysdeps/sh/init-first.c (init): Likewise.
42220
422212012-04-01 Ulrich Drepper <drepper@gmail.com>
42222
42223 * po/ru.po: Update from translation team.
42224 * po/vi.po: Likewise.
42225
422262012-03-31 Siddhesh Poyarekar <siddhesh@redhat.com>
42227
42228 * resolv/nss_dns/dns-host.c: Merge copyright years.
42229
422302012-03-22 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
42231
42232 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Update.
42233 Optimize memcpy with prefetch if
42234 DATA_CACHE_SIZE_HALF <= len < SHARED_CACHE_SIZE_HALF and
42235 src, dst pointers have unequal 16 byte alignments.
42236
422372012-03-30 Siddhesh Poyarekar <siddhesh@redhat.com>
42238
42239 [BZ #13928]
42240 * resolv/nss_dns/dns-host.c (getanswer_r): Also consider ttl
42241 from a CNAME entry and return the minimum ttl for the query.
42242 (gaih_getanswer_slice): Likewise.
42243
422442012-03-30 Jeff Law <law@redhat.com>
42245
42246 * crypt/md5-crypt.c (__md5_crypt_r): Avoid unbounded alloca uses
42247 due to long keys.
42248 * crypt/sha256-crypt.c (__sha256_crypt_r): Likewise.
42249 * crypt/sha512-crypt.c (__sha512_crypt_r): Likewise.
42250
42251 * resolv/nss_dns/dns-host.c: Update copyright year.
42252
422532012-03-30 Ulrich Drepper <drepper@gmail.com>
42254
42255 * resolv/res_send.c (send_dg): Use sendmmsg if we have to write two
42256 requests to save a system call. Fix check that all bytes are sent.
42257
42258 * sysdeps/unix/sysv/linux/bits/socket.h (struct mmsghdr): Fix up
42259 comments for sendmmsg.
42260
422612012-03-30 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
42262
42263 [BZ #13691]
42264 * iconvdata/tcvn5712-1.c (FROM_LOOP): Fix a bug when converting strings
42265 with only 1 character between 0x0041 and 0x01b0.
42266 * wcsmbs/Makefile (tests): Add tst-mbsnrtowcs.
42267 * wcsmbs/tst-mbsnrtowcs.c: New file.
42268
422692012-03-29 David S. Miller <davem@davemloft.net>
42270
42271 * libio/fileops.c (_IO_new_file_xsputn): Don't try to optimize
42272 small copies by hand.
42273
422742012-03-28 Siddhesh Poyarekar <siddhesh@redhat.com>
42275
42276 [BZ #13761]
42277 * nis/nss_compat/compat-initgroups.c (getgrent_next_nss)
42278 (_nss_compat_initgroups_dyn): Fall back to malloc/free for large
42279 group memberships.
42280
422812012-03-28 David S. Miller <davem@davemloft.net>
42282
42283 * sysdeps/sparc/sparc32/memcpy.S: Implement mempcpy using a stub
42284 that branches into memcpy.
42285 * sysdeps/sparc/sparc64/memcpy.S: Likewise.
42286 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S: Likewise.
42287 * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
42288 * sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: Likewise.
42289 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Add mempcpy multiarch
42290 bits.
42291 * sysdeps/sparc/sparc64/rtld-memcpy.c: Include generic mempcpy
42292 implementation too.
42293 * sysdeps/sparc/mempcpy.S: New file.
42294
42295 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Provide a hidden def to
42296 the IFUNC routine in the libc case.
42297 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
42298
42299 * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memset.c: New file.
42300 * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memcpy.c: New file.
42301 * sysdeps/sparc/sparc32/sparcv9/rtld-memset.c: New file.
42302 * sysdeps/sparc/sparc32/sparcv9/rtld-memcpy.c: New file.
42303 * sysdeps/sparc/sparc64/multiarch/rtld-memset.c: New file.
42304 * sysdeps/sparc/sparc64/multiarch/rtld-memcpy.c: New file.
42305 * sysdeps/sparc/sparc64/rtld-memset.c: New file.
42306 * sysdeps/sparc/sparc64/rtld-memcpy.c: New file.
42307
42308 * sysdeps/sparc/sparc64/multiarch/memset-niagara1.S: Unroll main
42309 loop to 256 bytes instead of 64 bytes and fix test signedness.
42310
42311 * sysdeps/sparc/Makefile: Add -fPIC to ASFLAGS-.os here....
42312 * sysdeps/sparc/sparc32/Makefile: rather than here...
42313 * sysdeps/sparc/sparc64/Makefile: and here.
42314
423152012-03-28 Ulrich Drepper <drepper@gmail.com>
42316
42317 * malloc/mallocbug.c: Avoid warnings about unused variables.
42318
423192012-02-22 Siddhesh Poyarekar <siddhesh@redhat.com>
42320
42321 [BZ #13760]
42322 * resolv/nss_dns/dns-host.c (gaih_getanswer): Look for errno
42323 in the right place. Discard and retry query if response is
42324 larger than input buffer size.
42325
423262012-03-28 Joseph Myers <joseph@codesourcery.com>
42327
42328 [BZ #369]
42329 [BZ #2678]
42330 [BZ #3866]
42331 * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Take absolute value of
42332 x for large integer exponent.
42333 * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
42334 * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise. Adjust
42335 sign of result as needed afterwards.
42336 * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
42337 * sysdeps/ieee754/k_standard.c (__kernel_standard): Handle sign of
42338 result for underflowing pow the same as for overflow.
42339 (__kernel_standard_l): Handle powl overflow and underflow here
42340 rather than calling __kernel_standard.
42341 * math/libm-test.inc (pow_test): Add more tests.
42342
42343 [BZ #3868]
42344 [BZ #13879]
42345 [BZ #13910]
42346 [BZ #13911]
42347 [BZ #13912]
42348 [BZ #13913]
42349 [BZ #13915]
42350 [BZ #13916]
42351 [BZ #13917]
42352 [BZ #13918]
42353 [BZ #13919]
42354 [BZ #13920]
42355 [BZ #13921]
42356 * sysdeps/generic/math_private.h (__kernel_standard_l): Declare.
42357 * sysdeps/ieee754/k_standard.c: Include <float.h>.
42358 (__kernel_standard_l): New function.
42359 * math/w_acoshl.c (__acoshl): Use __kernel_standard_l instead of
42360 __kernel_standard.
42361 * math/w_acosl.c (__acosl): Likewise.
42362 * math/w_asinl.c (__asinl): Likewise.
42363 * math/w_atan2l.c (__atan2l): Likewise.
42364 * math/w_atanhl.c (__atanhl): Likewise.
42365 * math/w_coshl.c (__coshl): Likewise.
42366 * math/w_exp10l.c (__exp10l): Likewise.
42367 * math/w_exp2l.c (__exp2l): Likewise.
42368 * math/w_fmodl.c (__fmodl): Likewise.
42369 * math/w_hypotl.c (__hypotl): Likewise.
42370 * math/w_j0l.c (__j0l, __y0l): Likewise.
42371 * math/w_j1l.c (__j1l, __y1l): Likewise.
42372 * math/w_jnl.c (__jnl, __ynl): Likewise.
42373 * math/w_lgammal.c (__lgammal): Likewise.
42374 * math/w_log10l.c (__log10l): Likewise.
42375 * math/w_log2l.c (__log2l): Likewise.
42376 * math/w_logl.c (__logl): Likewise.
42377 * math/w_powl.c (__powl): Likewise.
42378 * math/w_remainderl.c (__remainderl): Likewise.
42379 * math/w_scalbl.c (sysv_scalbl): Likewise.
42380 * math/w_sinhl.c (__sinhl): Likewise.
42381 * math/w_sqrtl.c (__sqrtl): Likewise.
42382 * math/w_tgammal.c (__tgammal): Likewise.
42383 * sysdeps/ieee754/ldbl-128/w_expl.c (__expl): Likewise.
42384 * sysdeps/ieee754/ldbl-96/w_expl.c (__expl): Likewise.
42385 * math/libm-test.inc (acos_test): Add more tests.
42386 (acosh_test): Likewise.
42387 (asin_test): Likewise.
42388 (atanh_test): Likewise.
42389 (exp_test): Likewise.
42390 (exp10_test): Likewise.
42391 (exp2_test): Likewise.
42392 (expm1_test): Likewise.
42393 (lgamma_test): Likewise.
42394 (log_test): Likewise.
42395 (log10_test): Likewise.
42396 (log1p_test): Likewise.
42397 (log2_test): Likewise.
42398 (pow_test): Do not allow some spurious overflow exceptions.
42399 (sqrt_test): Add more tests.
42400 (tgamma_test): Likewise.
42401 (y0_test): Likewise.
42402 (y1_test): Likewise.
42403 (yn_test): Likewise.
42404
424052012-03-27 Anton Blanchard <anton@samba.org>
42406
42407 * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Define MAP_STACK and
42408 MAP_HUGETLB.
42409 * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
42410 * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
42411 * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
42412
424132012-03-27 David S. Miller <davem@davemloft.net>
42414
42415 * conform/Makefile: Run run-conformtest.sh using $(BASH).
42416
42417 * sysdeps/sparc/sparc64/Makefile (ASFLAGS-.os): Move before
42418 have-as-vis3 check.
42419
424202012-03-27 Andreas Jaeger <aj@suse.de>
42421
42422 * sysdeps/x86_64/elf/configure.in: Moved to ...
42423 * sysdeps/x86_64/configure.in: ... here.
42424 * sysdeps/x86_64/elf/start.S: Moved to ...
42425 * sysdeps/x86_64/start.S: ... here.
42426 * sysdeps/x86_64/elf/configure: Delete.
42427
42428 * sysdeps/x86_64/configure.in: Merge contents from
42429 sysdeps/i386/configure.in (without i686 check).
42430
42431 * sysdeps/i386/elf/Versions: Merge into ...
42432 * sysdeps/i386/Versions: ... this.
42433 * sysdeps/i386/elf/Versions: Delete file.
42434 * sysdeps/i386/elf/start.S: Moved to ...
42435 * sysdeps/i386/start.S: ...here.
42436 * sysdeps/i386/elf/configure.in: Merge into...
42437 * sysdeps/i386/configure.in: ...here.
42438 * sysdeps/i386/elf/configure.in: Delete file.
42439 * sysdeps/i386/elf/configure: Delete file.
42440
42441 * sysdeps/generic/elf/backtracesyms.c: Moved to ...
42442 * debug/backtracesyms.c: ... here.
42443 * sysdeps/generic/elf/backtracesymsfd.c: Moved to ...
42444 * debug/backtracesymsfd.c: ... here.
42445 * sysdeps/generic/elf/ifunc-sel.h: Moved to ...
42446 * sysdeps/generic/ifunc-sel.h: ... here.
42447
42448 * sysdeps/unix/i386/start.c: Delete file.
42449 * sysdeps/unix/sparc/start.c: Delete file.
42450 * sysdeps/unix/start.c: Delete file.
42451
42452 * sysdeps/sh/elf/configure.in: Moved to ...
42453 * sysdeps/sh/configure.in: ... here.
42454 * sysdeps/sh/elf/start.S: Moved to ...
42455 * sysdeps/sh/start.S: ... here.
42456 * sysdeps/sh/elf/configure: Delete file.
42457
42458 * sysdeps/powerpc/powerpc64/elf/bzero.S: Moved to ...
42459 * sysdeps/powerpc/powerpc64/bzero.S: ... here.
42460 * sysdeps/powerpc/powerpc64/elf/entry.h: Moved to ...
42461 * sysdeps/powerpc/powerpc64/entry.h: ... here.
42462 * sysdeps/powerpc/powerpc64/elf/start.S: Moved to ...
42463 * sysdeps/powerpc/powerpc64/start.S: here.
42464 * sysdeps/powerpc/powerpc64/elf/Makefile: Merge into ...
42465 * sysdeps/powerpc/powerpc64/Makefile: ... this.
42466 * sysdeps/powerpc/powerpc64/elf/configure.in: Merge into ...
42467 * sysdeps/powerpc/powerpc64/configure.in: ... this.
42468 * sysdeps/powerpc/powerpc64/elf/configure: Delete file.
42469
42470 * sysdeps/powerpc/powerpc32/elf/bzero.S: Moved to ...
42471 * sysdeps/powerpc/powerpc32/bzero.S: ... here.
42472 * sysdeps/powerpc/powerpc32/elf/start.S: Moved to ...
42473 * sysdeps/powerpc/powerpc32/start.S: ... here.
42474 * sysdeps/powerpc/powerpc32/elf/configure.in: Merge into ...
42475 * sysdeps/powerpc/powerpc32/configure.in: ... this.
42476 * sysdeps/powerpc/powerpc32/elf/configure: Delete file.
42477
42478 * sysdeps/powerpc/elf/ifunc-sel.h: Moved to ...
42479 * sysdeps/powerpc/ifunc-sel.h: ... here.
42480 * sysdeps/powerpc/elf/rtld-global-offsets.sym: Moved to ...
42481 * sysdeps/powerpc/rtld-global-offsets.sym: ... here.
42482
42483 * sysdeps/sparc/elf/configure.in: Moved to ...
42484 * sysdeps/sparc/configure.in: ... here.
42485 * sysdeps/sparc/elf/configure: Delete file.
42486 * sysdeps/sparc/sparc32/elf/start.S: Moved to ...
42487 * sysdeps/sparc/sparc32/start.S: ... here.
42488 * sysdeps/sparc/sparc64/elf/start.S: Moved to ...
42489 * sysdeps/sparc/sparc64/start.S: ... here.
42490 * sysdeps/sparc/sparc32/elf/Makefile: Merged into ...
42491 * sysdeps/sparc/sparc32/Makefile: ... this.
42492 * sysdeps/sparc/sparc64/elf/Makefile: Merged into ...
42493 * sysdeps/sparc/sparc64/Makefile: ... this.
42494
42495 * sysdeps/s390/s390-32/elf/bsd-_setjmp.S: Moved to ...
42496 * sysdeps/s390/s390-32/bsd-_setjmp.S: ... here.
42497 * sysdeps/s390/s390-32/elf/bsd-setjmp.S: Moved to ...
42498 * sysdeps/s390/s390-32/bsd-setjmp.S: ... here.
42499 * sysdeps/s390/s390-32/elf/setjmp.S: Moved to ...
42500 * sysdeps/s390/s390-32/setjmp.S: ... here.
42501 * sysdeps/s390/s390-32/elf/configure.in: Moved to ...
42502 * sysdeps/s390/s390-32/configure.in: ... here.
42503 * sysdeps/s390/s390-32/elf/configure: Delete file.
42504 * sysdeps/s390/s390-32/elf/start.S: Moved to ...
42505 * sysdeps/s390/s390-32/start.S: ... here.
42506
42507 * sysdeps/s390/s390-64/elf/bsd-_setjmp.S: Moved to ...
42508 * sysdeps/s390/s390-64/bsd-_setjmp.S: ... here.
42509 * sysdeps/s390/s390-64/elf/bsd-setjmp.S: Moved to ...
42510 * sysdeps/s390/s390-64/bsd-setjmp.S: ... here.
42511 * sysdeps/s390/s390-64/elf/setjmp.S: Moved to ...
42512 * sysdeps/s390/s390-64/setjmp.S: ... here.
42513 * sysdeps/s390/s390-64/elf/configure.in: Moved to ...
42514 * sysdeps/s390/s390-64/configure.in: ... here
42515 * sysdeps/s390/s390-64/elf/configure: Delete file.
42516 * sysdeps/s390/s390-64/elf/start.S: Moved to ...
42517 * sysdeps/s390/s390-64/start.S: ... here.
42518 * sysdeps/s390/s390-64/elf/configure: Delete.
42519
42520 * configure.in: Remove support for elf directories in sysdeps.
42521
42522 * configure: Regenerated.
42523 * sysdeps/i386/configure: Regenerated.
42524 * sysdeps/powerpc/powerpc32/configure: Regenerated.
42525 * sysdeps/powerpc/powerpc64/configure: Regenerated.
42526 * sysdeps/s390/s390-32/configure: Regenerated.
42527 * sysdeps/s390/s390-64/configure: Regenerated.
42528 * sysdeps/sh/configure: Regenerated.
42529 * sysdeps/sparc/configure: Regenerated.
42530 * sysdeps/x86_64/configure: Regenerated.
42531
425322012-03-26 Andreas Schwab <schwab@linux-m68k.org>
42533
42534 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
42535
42536 * sysdeps/ieee754/ldbl-128ibm/e_expl.c (lomark): Adjust to take
42537 denormal result into account.
42538
425392012-03-25 Roland McGrath <roland@hack.frob.com>
42540
42541 * posix/confstr.c (confstr): Lift RESTENVS definition to function scope.
42542 Reported by Allan McRae <allan@archlinux.org>.
42543
425442012-03-23 Jeff Law <law@redhat.com>
42545
42546 * nss/getnssent.c (__nss_getent): Fix typo.
42547
425482012-03-23 David S. Miller <davem@davemloft.net>
42549
42550 * sysdeps/sparc/fpu/libm-test-ulps: Update.
42551
425522012-03-23 H.J. Lu <hongjiu.lu@intel.com>
42553
42554 * sysdeps/x86_64/dl-tlsdesc.h (tlsdesc): Use anonymous union
42555 to pad to uint64_t for each field.
42556 (dl_tls_index): Replace unsigned long with uint64_t.
42557
425582012-03-23 Daniel Jacobowitz <dmj@google.com>
42559 Paul Pluzhnikov <ppluzhnikov@google.com>
42560
42561 [BZ #6528]
42562 * grp/Makefile (otherlibs): Don't set it.
42563 * inet/Makefile (otherlibs): Likewise.
42564 * login/Makefile (otherlibs): Likewise.
42565 * nscd/Makefile (otherlibs): Likewise.
42566 * posix/Makefile (otherlibs): Likewise.
42567 * pwd/Makefile (otherlibs): Likewise.
42568 * rt/Makefile (otherlibs): Likewise.
42569 * sunrpc/Makefile (otherlibs): Likewise.
42570 * nss/Makefile (otherlibs): Likewise.
42571 Add libnss_files to routines and static-only-routines.
42572 ($(objpfx)getent): Remove rule.
42573 * resolv/Makefile: Add libnss_dns and libresolv to routines and
42574 static-only-routines.
42575
425762012-03-22 Joseph Myers <joseph@codesourcery.com>
42577
42578 [BZ #13892]
42579 * math/s_cexp.c: Include <float.h>.
42580 (__cexp): Handle exp result overflowing not necessarily
42581 overflowing both real and imaginary parts of result.
42582 * math/s_cexpf.c: Likewise.
42583 * math/s_cexpl.c: Likewise.
42584 * math/libm-test.inc (cexp_test): Add more tests.
42585 * sysdeps/i386/fpu/libm-test-ulps: Update.
42586 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
42587
425882012-03-22 H.J. Lu <hongjiu.lu@intel.com>
42589
42590 * include/link.h (ELFW): New macro.
42591 * sysdeps/x86_64/dl-irel.h: Replace Elf64_XXX with ElfW(XXX).
42592 Replace ELF64_R_TYPE with ELFW(R_TYPE).
42593
425942012-03-22 H.J. Lu <hongjiu.lu@intel.com>
42595
42596 * sysdeps/x86_64/dl-tls.h (dl_tls_index): Replace unsigned long
42597 with uint64_t.
42598
425992012-03-22 H.J. Lu <hongjiu.lu@intel.com>
42600
42601 * sysdeps/generic/ldsodefs.h (struct La_x32_regs): New forward
42602 declaration.
42603 (struct La_x32_retval): Likewise.
42604
426052012-03-22 H.J. Lu <hongjiu.lu@intel.com>
42606
42607 * sysdeps/x86_64/preconfigure.in: New file.
42608 * sysdeps/x86_64/preconfigure: New generated file.
42609
426102012-03-22 Joseph Myers <joseph@codesourcery.com>
42611
42612 [BZ #13824]
42613 * math/e_exp2l.c: Include <float.h>.
42614 (__ieee754_exp2l): Handle overflow and underflow cases
42615 separately. Only pass fractional part of argument to
42616 __ieee754_expl.
42617 * math/libm-test.inc (exp2_test): Add more tests.
42618
42619 * sysdeps/ieee754/ldbl-128/k_cosl.c (__kernel_cosl): Negate y if
42620 negating x to take absolute value.
42621 * sysdeps/ieee754/ldbl-128/k_sincosl.c (__kernel_sincosl):
42622 Likewise.
42623 * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
42624 * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c (__kernel_sincosl):
42625 Likewise.
42626 * sysdeps/ieee754/ldbl-128/k_sinl.c (__kernel_sinl): Negate y when
42627 computing low part if x was negated.
42628 * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
42629
426302012-03-21 H.J. Lu <hongjiu.lu@intel.com>
42631
42632 * elf/tst-auditmod1.c: Support la_x32_gnu_pltenter and
42633 la_x32_gnu_pltexit.
42634 (pltexit): Cast int_retval to ptrdiff_t.
42635 * elf/tst-auditmod3b.c: Likewise.
42636 * elf/tst-auditmod4b.c: Likewise.
42637 * elf/tst-auditmod5b.c: Likewise.
42638 * elf/tst-auditmod6b.c: Likewise.
42639 * elf/tst-auditmod6c.c: Likewise.
42640 * elf/tst-auditmod7b.c: Likewise.
42641
42642 * sysdeps/generic/ldsodefs.h (audit_ifaces): Add x32_gnu_pltenter
42643 and x32_gnu_pltexit.
42644
42645 * sysdeps/x86_64/bits/link.h: Check __x86_64__ instead of
42646 __ELF_NATIVE_CLASS.
42647 (La_x32_regs): New macro.
42648 (La_x32_retval): Likewise.
42649 (la_x32_gnu_pltenter): New function prototype.
42650 (la_x32_gnu_pltexit): Likewise.
42651
426522012-03-21 Andreas Schwab <schwab@linux-m68k.org>
42653
42654 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (huge, tiny): Correct
42655 exponent.
42656
42657 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
42658
42659 * configure.in (libc_cv_cc_nofma): Check for option to disable
42660 generation of FMA instructions.
42661 * configure: Regenerate.
42662 * config.make.in (config-cflags-nofma): Set from libc_cv_cc_nofma.
42663 * sysdeps/ieee754/dbl-64/Makefile: New file.
42664 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
42665 Remove brandred-fma4.
42666 (CFLAGS-brandred-fma4.c): Remove.
42667 * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: Remove.
42668 * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c (__branred): Don't
42669 define.
42670 * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c (__branred): Don't
42671 define.
42672
426732012-03-21 H.J. Lu <hongjiu.lu@intel.com>
42674
42675 * stdio-common/_itoa.c: Check _ITOA_NEEDED instead of
42676 LLONG_MAX != LONG_MAX.
42677 (_itoa_word): Use _ITOA_WORD_TYPE on value.
42678 (_fitoa_word): Likewise.
42679 * stdio-common/_itowa.c: Check _ITOA_NEEDED instead of
42680 LLONG_MAX != LONG_MAX.
42681 * stdio-common/_itowa.h: Include <_itoa.h>.
42682 (_itowa_word): Use _ITOA_WORD_TYPE on value.
42683 (_itowa): New macro. Defined only if _ITOA_NEEDED is false.
42684 * sysdeps/generic/_itoa.h (_ITOA_NEEDED): New macro. Defined
42685 only if not defined.
42686 (_ITOA_WORD_TYPE): Likewise.
42687 (_itoa_word): Use _ITOA_WORD_TYPE on value.
42688 Check !_ITOA_NEEDED instead of LONG_MAX == LLONG_MAX.
42689
426902012-03-21 David S. Miller <davem@davemloft.net>
42691
42692 * sysdeps/sparc/fpu/libm-test-ulps: Update.
42693
426942012-03-21 H.J. Lu <hongjiu.lu@intel.com>
42695
42696 * sysdeps/unix/sysv/linux/configure.in: Check x86_64* instead
42697 of x86_64 when setting libc_cv_slibdir, libdir and
42698 libc_cv_localedir.
42699 * sysdeps/unix/sysv/linux/configure: Regenerated.
42700
427012012-03-21 Joseph Myers <joseph@codesourcery.com>
42702
42703 * manual/lang.texi (Old Varargs): Remove section.
42704 (How Variadic): Update menu.
42705 (va_start): Do not mention varargs.h.
42706
427072012-03-21 Thomas Schwinge <thomas@codesourcery.com>
42708 Joseph Myers <joseph@codesourcery.com>
42709
42710 * configure.in (libc_cv_ssp): Use LIBC_TRY_CC_OPTION instead of a
42711 link test.
42712 * configure: Regenerated.
42713
427142012-03-21 Thomas Schwinge <thomas@codesourcery.com>
42715
42716 * conform/conformtest.pl: Handle --tmpdir argument, defaulting to /tmp.
42717 * conform/run-conformtest.sh: Pass --tmpdir argument when invoking
42718 conformtest.pl
42719
427202012-03-21 Joseph Myers <joseph@codesourcery.com>
42721
42722 * NOTES: Remove.
42723 * Makefile (files-for-dist): Remove NOTES.
42724 (NOTES): Remove rule.
42725 * README: Don't refer to NOTES.
42726 * manual/creature.texi: Don't include macros.texi.
42727 * manual/intro.texi (creature.texi): Remove comment referring to
42728 NOTES.
42729
42730 * aclocal.m4 (LIBC_TRY_CC_OPTION): New macro.
42731 * configure.in (libc_cv_cc_submachine): Use LIBC_TRY_CC_OPTION.
42732 * configure: Regenerated.
42733 * sysdeps/i386/configure.in (libc_cv_cc_sse4): Use
42734 LIBC_TRY_CC_OPTION.
42735 (libc_cv_as_i686): Likewise.
42736 (libc_cv_cc_avx): Likewise.
42737 (libc_cv_cc_sse2avx): Likewise.
42738 (libc_cv_cc_fma4): Likewise.
42739 (libc_cv_cc_novzeroupper): Likewise.
42740 * sysdeps/i386/configure: Regenerated.
42741
42742 [BZ #13883]
42743 * sysdeps/i386/fpu/s_cexp.S: Remove.
42744 * sysdeps/i386/fpu/s_cexpf.S: Likewise.
42745 * sysdeps/i386/fpu/s_cexpl.S: Likewise.
42746 * math/libm-test.inc (cexp_test): Add more tests.
42747 * sysdeps/i386/fpu/libm-test-ulps: Update.
42748 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
42749
427502012-03-21 Allan McRae <allan@archlinux.org>
42751
42752 * timezone/Makefile: Do not install iso3166.tab and zone.tab
42753
427542012-03-21 Joseph Myers <joseph@codesourcery.com>
42755
42756 [BZ #13871]
42757 * math/w_exp2.c: Do not include <float.h>.
42758 (o_threshold, u_threshold): Remove.
42759 (__exp2): Calculate result before checking finiteness and calling
42760 __kernel_standard.
42761 * math/w_exp2f.c: Likewise.
42762 * math/w_exp2l.c: Likewise.
42763 * math/libm-test.inc (exp2_test): Require overflow exception for
42764 1e6 input.
42765
42766 [BZ #3866]
42767 * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Test for y outside the
42768 range of signed 64-bit integers before using fistpll. Remove
42769 checks for whether integers fit in mantissa bits.
42770 * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Test for y outside
42771 the range of signed 32-bit integers before using fistpl. Remove
42772 checks for whether integers fit in mantissa bits.
42773 * sysdeps/i386/fpu/e_powl.S (p64): New object.
42774 (__ieee754_powl): Test for y outside the range of signed 64-bit
42775 integers before using fistpll. Reduce 64-bit values to 63-bit
42776 ones as needed.
42777 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Ensure
42778 divide-by-zero is raised for zero to large negative powers.
42779 * sysdeps/x86_64/fpu/e_powl.S (p64): New object.
42780 (__ieee754_powl): Test for y outside the range of signed 64-bit
42781 integers before using fistpll. Reduce 64-bit values to 63-bit
42782 ones as needed.
42783 * math/libm-test.inc (pow_test): Add more tests.
42784
427852012-03-20 H.J. Lu <hongjiu.lu@intel.com>
42786
42787 * debug/backtracesymsfd.c: Include <_itoa.h> instead of
42788 <stdio-common/_itoa.h>.
42789 * debug/segfault.c: Likewise.
42790 * elf/dl-cache.c: Likewise.
42791 * elf/dl-minimal.c: Likewise.
42792 * elf/dl-misc.c: Likewise.
42793 * elf/dl-sysdep.c: Likewise.
42794 * elf/dl-version.c: Likewise.
42795 * elf/rtld.c: Likewise.
42796 * hurd/hurdsock.c: Likewise.
42797 * hurd/lookup-retry.c: Likewise.
42798 * malloc/malloc.c: Likewise.
42799 * malloc/mtrace.c: Likewise.
42800 * nscd/nscd_getgr_r.c: Likewise.
42801 * nscd/nscd_getpw_r.c: Likewise.
42802 * nscd/nscd_getserv_r.c: Likewise.
42803 * posix/getopt_init.c: Likewise.
42804 * posix/wordexp.c: Likewise.
42805 * stdio-common/_itoa.c: Likewise.
42806 * stdio-common/printf_fphex.c: Likewise.
42807 * stdio-common/vfprintf.c: Likewise.
42808 * string/_strerror.c: Likewise.
42809 * sysdeps/generic/elf/backtracesymsfd.c: Likewise.
42810 * sysdeps/i386/i686/hp-timing.h: Likewise.
42811 * sysdeps/mach/_strerror.c: Likewise.
42812 * sysdeps/mach/hurd/powerpc/register-dump.h: Likewise.
42813 * sysdeps/mach/hurd/sethostid.c: Likewise.
42814 * sysdeps/mach/hurd/xmknodat.c: Likewise.
42815 * sysdeps/mach/xpg-strerror.c: Likewise.
42816 * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
42817 * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
42818 * sysdeps/powerpc/powerpc32/register-dump.h: Likewise.
42819 * sysdeps/powerpc/powerpc64/dl-machine.c: Likewise.
42820 * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
42821 * sysdeps/powerpc/powerpc64/register-dump.h: Likewise.
42822 * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
42823 * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
42824 * sysdeps/unix/sysv/linux/fd_to_filename.h: Likewise.
42825 * sysdeps/unix/sysv/linux/futimes.c: Likewise.
42826 * sysdeps/unix/sysv/linux/i386/register-dump.h: Likewise.
42827 * sysdeps/unix/sysv/linux/ptsname.c: Likewise.
42828 * sysdeps/unix/sysv/linux/s390/s390-32/register-dump.h: Likewise.
42829 * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h: Likewise.
42830 * sysdeps/unix/sysv/linux/sh/sh3/register-dump.h: Likewise.
42831 * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Likewise.
42832 * sysdeps/unix/sysv/linux/sparc/sparc32/register-dump.h: Likewise.
42833 * sysdeps/unix/sysv/linux/sparc/sparc64/register-dump.h: Likewise.
42834 * sysdeps/unix/sysv/linux/ttyname.c: Likewise.
42835 * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
42836 * sysdeps/unix/sysv/linux/x86_64/register-dump.h: Likewise.
42837
42838 * stdio-common/_itoa.c: Include <_itoa.h> instead of "_itoa.h".
42839
42840 * stdio-common/_itoa.h: Moved to ...
42841 * sysdeps/generic/_itoa.h: Here.
42842
42843 * stdio-common/_itowa.c: Include <_itowa.h> instead of "_itowa.h".
42844
42845 * stdio-common/printf_fphex.c: Include <_itoa.h> and <_itowa.h>
42846 instead of "_itoa.h" and "_itowa.h".
42847 * stdio-common/vfprintf.: Likewise.
42848
428492012-03-20 H.J. Lu <hongjiu.lu@intel.com>
42850
42851 * sysdeps/x86_64/fpu/bits/mathinline.h: Don't include
42852 <bits/wordsize.h>.
42853 (__signbitf): Check __x86_64__ instead of __WORDSIZE.
42854 (__signbit): Likwise.
42855 (llrintf): Likwise.
42856 (llrint): Likwise.
42857
428582012-03-20 H.J. Lu <hongjiu.lu@intel.com>
42859
42860 * sysdeps/x86_64/bits/setjmp.h (__jmp_buf): Support x86-64 with
42861 __WORDSIZE != 64.
42862
428632012-03-20 Joseph Myers <joseph@codesourcery.com>
42864
42865 * math/gen-libm-test.pl (%beautify): Add OVERFLOW_EXCEPTION and
42866 OVERFLOW_EXCEPTION_OK.
42867 * math/libm-test.inc ("Philosophy"): Update comment about
42868 exception testing.
42869 (OVERFLOW_EXCEPTION): Define.
42870 (OVERFLOW_EXCEPTION_OK): Likewise.
42871 (INVALID_EXCEPTION_OK): Renumber.
42872 (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
42873 (IGNORE_ZERO_INF_SIGN): Likewise.
42874 (test_exceptions): Handle FE_OVERFLOW.
42875 (exp10_test): Expect overflow exceptions.
42876 (exp2_test): Likewise.
42877 (expm1_test): Likewise.
42878 (nextafter_test): Likewise.
42879 (pow_test): Likewise.
42880 (scalbn_test): Likewise.
42881 (scalbln_test): Likewise.
42882
428832012-03-19 H.J. Lu <hongjiu.lu@intel.com>
42884
42885 * sysdeps/x86_64/bits/atomic.h
42886 (__arch_c_compare_and_exchange_val_64_acq): Use atomic64_t on
42887 64bit integer.
42888 (atomic_exchange_acq): Likewise.
42889 (__arch_exchange_and_add_body): Likewise.
42890 (__arch_add_body): Likewise.
42891 (atomic_add_negative): Likewise.
42892 (atomic_add_zero): Likewise.
42893
428942012-03-19 H.J. Lu <hongjiu.lu@intel.com>
42895
42896 * sysdeps/x86_64/fpu/bits/fenv.h: Don't include <bits/wordsize.h>.
42897 (fenv_t): Check __x86_64__ instead of __WORDSIZE.
42898
428992012-03-19 H.J. Lu <hongjiu.lu@intel.com>
42900
42901 * sysdeps/x86_64/bits/mathdef.h: Don't include <bits/wordsize.h>.
42902 Check __x86_64__ instead of __WORDSIZE.
42903
429042012-03-19 H.J. Lu <hongjiu.lu@intel.com>
42905
42906 * sysdeps/unix/sysv/linux/x86_64/ldd-rewrite.sed: Support x32.
42907
429082012-03-19 David S. Miller <davem@davemloft.net>
42909
42910 * sysdeps/sparc/fpu/libm-test-ulps: Update.
42911
42912 * sysdeps/sparc/fpu/fenv_private.h: New file.
42913 * sysdeps/sparc/fpu/math_private.h: Use it.
42914 (libc_feholdexcept, libc_feholdexceptf, libc_feholdexceptl):
42915 Remove.
42916 (libc_feholdexcept_setround, libc_feholdexcept_setroundf)
42917 (libc_feholdexcept_setroundl): Remove.
42918 (libc_fetestexcept, libc_fetestexceptf, libc_fetestexceptl):
42919 Remove.
42920 (libc_fesetenv, libc_fesetenvf, libc_fesetenvl): Remove.
42921 (libc_feupdateenv, libc_feupdateenvf, libc_feupdateenvf): Remove.
42922
429232012-03-19 H.J. Lu <hongjiu.lu@intel.com>
42924
42925 * sysdeps/x86_64/fpu/math_private.h (EXTRACT_WORDS64): Use
42926 int64_t instead of long int.
42927 (INSERT_WORDS64): Likwise.
42928
429292012-03-19 H.J. Lu <hongjiu.lu@intel.com>
42930
42931 * sysdeps/x86_64/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ): Cast
42932 _Unwind_GetCFA return to _Unwind_Ptr first.
42933
429342012-03-19 Joseph Myers <joseph@codesourcery.com>
42935
42936 [BZ #13629]
42937 * math/s_clog.c: Include <float.h>.
42938 (__clog): Scale large or subnormal inputs.
42939 * math/s_clogf.c: Likewise.
42940 * math/s_clogl.c: Likewise.
42941 * math/s_clog10.c: Include <float.h>.
42942 (M_LOG10_2): Define.
42943 (__clog10): Scale large or subnormal inputs.
42944 * math/s_clog10f.c: Likewise.
42945 * math/s_clog10l.c: Likewise.
42946 * math/libm-test.inc (clog_test): Add more tests.
42947 (clog10_test): Likewise.
42948 * sysdeps/i386/fpu/libm-test-ulps: Update.
42949 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
42950
42951 [BZ #11451]
42952 * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Scale large
42953 x and y.
42954 * math/libm-test.inc (atan2_test): Add another test.
42955
42956 * Makerules (common-objdir-compile): Remove.
42957 * sysdeps/unix/Makefile (config-generated): Do not add
42958 $(unix-generated) to variable.
42959 [generic bits/local_lim.h] (mk-local_lim-CFLAGS): Remove variable.
42960 [generic bits/local_lim.h] ($(common-objpfx)bits/local_lim.h):
42961 Remove rule.
42962 [generic bits/local_lim.h] ($(common-objpfx)mk-local_lim):
42963 Likewise.
42964 [generic bits/local_lim.h] (before-compile): Do not append to
42965 variable.
42966 [generic bits/local_lim.h] (common-generated): Likewise.
42967 [generic sys/param.h] (before-compile): Do not append to variable.
42968 [generic sys/param.h] ($(common-objpfx)sys/param.h): Remove rule.
42969 [generic sys/param.h] ($(common-objpfx)param.h.c): Likewise.
42970 [generic sys/param.h] ($(common-objpfx)param.h.dep): Likewise.
42971 [generic sys/param.h] ($(common-objpfx)param.h.dep): Do not
42972 include.
42973 [generic sys/param.h] (sys/param.h-includes): Remove variable.
42974 [generic sys/param.h] (sys/param.h-includes): Remove rule.
42975 [generic sys/param.h] ($(addprefix
42976 $(common-objpfx),$(sys/param.h-includes))): Likewise.
42977 [generic sys/param.h] (common-generated): Do not append to
42978 variable.
42979 [generic sys/param.h] (sysdep_headers): Likewise.
42980 [generic bits/errno.h] (before-compile): Do not append to
42981 variable.
42982 [generic bits/errno.h] ($(common-objpfx)bits/errno.h): Remove
42983 rule.
42984 [generic bits/errno.h] ($(common-objpfx)make-errnos): Likewise.
42985 [generic bits/errno.h] ($(common-objpfx)make-errnos.c): Likewise.
42986 [generic bits/errno.h] ($(common-objpfx)errnos): Likewise.
42987 [generic bits/errno.h] (common-generated): Do not append to
42988 variable.
42989 [generic bits/ioctls.h] (before-compile): Do not append to
42990 variable.
42991 [generic bits/ioctls.h] ($(common-objpfx)bits/ioctls.h): Remove
42992 rule.
42993 [generic bits/ioctls.h] (ioctl-includes): Remove variable.
42994 [generic bits/ioctls.h] (make-ioctls-CFLAGS): Likewise.
42995 [generic bits/ioctls.h] ($(common-objpfx)make-ioctls): Remove
42996 rule.
42997 [generic bits/ioctls.h] ($(common-objpfx)make-ioctls.c): Likewise.
42998 [generic bits/ioctls.h] (bits_termios.h): Remove variable.
42999 [generic bits/ioctls.h] ($(common-objpfx)ioctls): Remove rule.
43000 [generic bits/ioctls.h] (common-generated): Do not append to
43001 variable.
43002 [generic sys/syscall.h] (syscall.h): Remove variable.
43003 [generic sys/syscall.h] ($(common-objpfx)sys/syscall.h): Remove
43004 rule.
43005 [generic sys/syscall.h] (before-compile): Do not append to
43006 variable.
43007 [generic sys/syscall.h] (common-generated): Likewise.
43008 * sysdeps/unix/errnos-tmpl.c: Remove file.
43009 * sysdeps/unix/errnos.awk: Likewise.
43010 * sysdeps/unix/ioctls-tmpl.c: Likewise.
43011 * sysdeps/unix/ioctls.awk: Likewise.
43012 * sysdeps/unix/mk-local_lim.c: Likewise.
43013 * sysdeps/unix/snarf-ioctls: Likewise.
43014
430152012-03-19 Richard Henderson <rth@twiddle.net>
43016
43017 * sysdeps/i386/fpu/fenv_private.h: New file.
43018 * sysdeps/i386/fpu/math_private.h: Use it.
43019 (math_opt_barrier, math_force_eval): Remove.
43020 (libc_feholdexcept_setround_53bit): Remove.
43021 (libc_feupdateenv_53bit): Remove.
43022 * sysdeps/x86_64/fpu/math_private.h: Likewise.
43023 (math_opt_barrier, math_force_eval): Remove.
43024 (libc_feholdexcept): Remove.
43025 (libc_feholdexcept_setround): Remove.
43026 (libc_fetestexcept, libc_fesetenv): Remove.
43027 (libc_feupdateenv_test): Remove.
43028 (libc_feupdateenv, libc_feholdsetround): Remove.
43029 (libc_feresetround): Remove.
43030
43031 * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Avoid the fldenv.
43032 * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Likewise.
43033
43034 * sysdeps/generic/math_private.h (default_libc_feupdateenv_test): New.
43035 (libc_feupdateenv_test, libc_feupdateenv_testf): New.
43036 (libc_feupdateenv_testl): New.
43037 * sysdeps/x86_64/fpu/math_private.h (libc_feupdateenv_test): New.
43038 (libc_feupdateenv_testf): New.
43039 (libc_feupdateenv): Use libc_feupdateenv_test.
43040 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use libc_feupdateenv_test.
43041 * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Likewise.
43042
43043 * sysdeps/generic/math_private.h (libc_feholdsetround): New.
43044 (libc_feholdsetroundf, libc_feholdsetroundl): New.
43045 (libc_feresetround, libc_feresetroundf, libc_feresetroundl): New.
43046 (libc_feresetround_noex): New.
43047 (libc_feresetround_noexf): New.
43048 (libc_feresetround_noexl): New.
43049 (SET_RESTORE_ROUND, SET_RESTORE_ROUNDF, SET_RESTORE_ROUNDL): New.
43050 (SET_RESTORE_ROUND_NOEX, SET_RESTORE_ROUND_NOEXF): New.
43051 (SET_RESTORE_ROUND_NOEXL, SET_RESTORE_ROUND_53BIT): New.
43052 * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Use
43053 SET_RESTORE_ROUND.
43054 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Likewise.
43055 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use SET_RESTORE_ROUND_53BIT.
43056 (__cos): Likewise.
43057 * sysdeps/ieee754/dbl-64/s_tan.c (__tan): Likewise.
43058 * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Use
43059 SET_RESTORE_ROUND_NOEX.
43060 * sysdeps/ieee754/dbl-64/e_exp2f.c (__ieee754_exp2f): Use
43061 SET_RESTORE_ROUND_NOEXF.
43062 * sysdeps/ieee754/flt-32/e_expf.c (__ieee754_expf): Likewise.
43063 * sysdeps/x86_64/fpu/math_private.h (libc_feholdsetround): New.
43064 (libc_feholdsetroundf): New.
43065 (libc_feresetround, libc_feresetroundf): New.
43066
43067 * sysdeps/i386/fpu/math_private.h: Include <fenv.h>, <fpu_control.h>.
43068 (libc_feholdexcept_setround_53bit): Convert from macro to function.
43069 (libc_feupdateenv_53bit): Likewise. Don't force _FPU_EXTENDED.
43070
43071 * sysdeps/generic/math_private.h: Include <fenv.h>.
43072 (default_libc_feholdexcept): New.
43073 (default_libc_feholdexcept_setround): New.
43074 (default_libc_fesetenv, default_libc_feupdateenv): New.
43075 (libc_feholdexcept): Only define if undefined.
43076 (libc_feholdexceptf, libc_feholdexceptl): Likewise.
43077 (libc_feholdexcept_setround, libc_feholdexcept_setroundf): Likewise.
43078 (libc_feholdexcept_setroundl): Likewise.
43079 (libc_feholdexcept_setround_53bit): Likewise.
43080 (libc_fetestexcept, libc_fetestexceptf, libc_fetestexceptl): Likewise.
43081 (libc_fesetenv, libc_fesetenvf, libc_fesetenvl): Likewise.
43082 (libc_feupdateenv, libc_feupdateenvf, libc_feupdateenvl): Likewise.
43083 (libc_feupdateenv_53bit): Likewise.
43084 * sysdeps/x86_64/fpu/math_private.h: Include <fenv.h>.
43085 (libc_feholdexcept): Convert from macro to inline function.
43086 (libc_feholdexcept_setround, libc_fetestexcept): Likewise.
43087 (libc_fesetenv, libc_feupdateenv): Likewise.
43088
43089 * sysdeps/generic/math_private.h (GET_HIGH_WORD): Define only if
43090 not previously defined.
43091 (GET_LOW_WORD, EXTRACT_WORDS64, INSERT_WORDS): Likewise.
43092 (INSERT_WORDS64, SET_HIGH_WORD, SET_LOW_WORD): Likewise.
43093 (GET_FLOAT_WORD, SET_FLOAT_WORD): Likewise.
43094 * sysdeps/ieee754/dbl-64/wordsize-64/math_private.h: New file.
43095 * sysdeps/ieee754/flt-32/math_private.h: New file.
43096 * sysdeps/x86_64/fpu/math_private.h: Move the include_next of
43097 math_private.h below SET_FLOAT_WORD.
43098 (__isnan, __isinf_ns, __finite): Remove.
43099 (__isnanf, __isinf_nsf, __finitef): Remove.
43100
431012012-03-18 Andreas Schwab <schwab@linux-m68k.org>
43102
43103 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
43104
431052012-03-17 David S. Miller <davem@davemloft.net>
43106
43107 [BZ #6471]
43108 * sysdeps/unix/sysv/linux/sparc/Versions: Add __getshmlba entry
43109 for 2.16.
43110
431112012-03-16 David S. Miller <davem@davemloft.net>
43112
43113 * sysdeps/unix/sysv/linux/shmat.c (shmat): Use -1l to avoid
43114 warnings.
43115
43116 [BZ #6471]
43117 * sysdeps/unix/sysv/linux/shmat.c (shmat): Test for syscall errors
43118 properly.
43119 * sysdeps/unix/sysv/linux/sparc/getshmlba.c: New file.
43120 * sysdeps/unix/sysv/linux/sparc/Makefile: Add getshmlba to
43121 sysdep_routines when subdir is sysvipc.
43122 * sysdeps/unix/sysv/linux/sparc/bits/shm.h (SHMLBA): Use new
43123 __getshmlba helper.
43124
43125 * sysdeps/sparc/fpu/libm-test/ulps: Update.
43126
431272012-03-16 H.J. Lu <hongjiu.lu@intel.com>
43128
43129 * sysdeps/x86_64/ffsll.c (ffsl): Define alias only under
43130 [__LP64__].
43131
431322012-03-16 H.J. Lu <hongjiu.lu@intel.com>
43133
43134 * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Moved to ...
43135 * sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c: This.
43136 (__lround): Renamed to ...
43137 (__llround): This. Replace long int with long long int.
43138 Define lround functions as aliases of llround functions.
43139 * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Empty file.
43140
431412012-03-16 H.J. Lu <hongjiu.lu@intel.com>
43142
43143 * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
43144 Use greg_t on sp. Use unsigned int on idx_uc_link. Cast
43145 adresses to uintptr_t. Replace "long int" and "unsigned long
43146 int" with "greg_t" on va_arg.
43147
431482012-03-16 H.J. Lu <hongjiu.lu@intel.com>
43149
43150 * sysdeps/generic/ldconfig.h (FLAG_X8664_LIBX32): New macro.
43151 * elf/cache.c (print_entry): Handle FLAG_X8664_LIBX32.
43152
43153 * sysdeps/unix/sysv/linux/i386/readelflib.c (process_elf_file):
43154 Move e_machine check before EI_CLASS check. Handle x32
43155 libraries. Check EM_IA_64 only if SKIP_EM_IA_64 isn't defined.
43156 * sysdeps/unix/sysv/linux/x86_64/readelflib.c: Just define
43157 SKIP_EM_IA_64 and include
43158 <sysdeps/unix/sysv/linux/i386/readelflib.c>.
43159
43160 * sysdeps/unix/sysv/linux/x86_64/dl-cache.h:
43161 Don't include <sysdeps/unix/sysv/linux/sparc/dl-cache.h>.
43162 (add_system_dir): New macro.
43163
43164 * sysdeps/unix/sysv/linux/x86_64/ldconfig.h
43165 (SYSDEP_KNOWN_INTERPRETER_NAMES): Add /libx32/ld-linux-x32.so.2.
43166
431672012-03-16 Joseph Myers <joseph@codesourcery.com>
43168
43169 [BZ #2551]
43170 [BZ #2552]
43171 [BZ #2553]
43172 [BZ #2554]
43173 [BZ #2562]
43174 [BZ #2563]
43175 [BZ #2565]
43176 [BZ #2566]
43177 [BZ #2576]
43178 * math/w_j0.c (j0): Don't produce TLOSS errors for POSIX libm.
43179 (y0): Likewise.
43180 * math/w_j0f.c (j0f): Likewise.
43181 (y0f): Likewise.
43182 * math/w_j0l.c (__j0l): Likewise.
43183 (__y0l): Likewise.
43184 * math/w_j1.c (j1): Likewise.
43185 (y1): Likewise.
43186 * math/w_j1f.c (j1f): Likewise.
43187 (y1f): Likewise.
43188 * math/w_j1l.c (__j1l): Likewise.
43189 (__y1l): Likewise.
43190 * math/w_jn.c (jn): Likewise.
43191 (yn): Likewise.
43192 * math/w_jnf.c (jnf): Likewise.
43193 (ynf): Likewise.
43194 * math/w_jnl.c (__jnl): Likewise.
43195 (__ynl): Likewise.
43196 * math/libm-test.inc (j0_test): Add more tests.
43197 (j1_test): Likewise.
43198 (jn_test): Likewise. Add trailing semicolon to existing test.
43199 (y0_test): Likewise.
43200 (y1_test): Likewise.
43201 * sysdeps/i386/fpu/libm-test-ulps: Update.
43202 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
43203
43204 [BZ #13851]
43205 [BZ #13854]
43206 * sysdeps/ieee754/dbl-64/s_tan.c (tan): Use
43207 libc_feholdexcept_setround_53bit and libc_feupdateenv_53bit.
43208 * sysdeps/ieee754/ldbl-96/k_tanl.c: New file.
43209 * sysdeps/ieee754/ldbl-96/s_tanl.c: Include <errno.h>.
43210 (__tanl): Set errno for infinite argument.
43211 * sysdeps/i386/fpu/mptan.c: Remove.
43212 * sysdeps/i386/fpu/s_tan.S: Likewise.
43213 * sysdeps/i386/fpu/s_tanl.S: Likewise.
43214 * sysdeps/x86_64/fpu/k_tanl.c: Likewise.
43215 * sysdeps/x86_64/fpu/s_tanl.S: Likewise.
43216 * math/libm-test.inc (tan_test): Add more tests and enable more
43217 tests for double and long double.
43218 * sysdeps/i386/fpu/libm-test-ulps: Update.
43219 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
43220
432212012-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
43222
43223 * sysdeps/x86_64/elf/start.S: Include <sysdep.h>.
43224 (_start): Add cfi_startproc, cfi_undefined for rip and cfi_endproc.
43225
432262012-03-16 Roland McGrath <roland@hack.frob.com>
43227
43228 * aclocal.m4 (LIBC_PRECONFIGURE): New macro.
43229 * configure.in: Use it for both main tree and add-ons.
43230 * configure: Regenerated.
43231
432322012-03-16 H.J. Lu <hongjiu.lu@intel.com>
43233
43234 * time/offtime.c (__offtime): Use time_t on days, rem, y and yg.
43235
432362012-03-16 Joseph Myers <joseph@codesourcery.com>
43237
43238 * sysdeps/ieee754/ldbl-96/t_sincosl.c: Include generator program
43239 in comment.
43240
43241 [BZ #13851]
43242 * sysdeps/ieee754/ldbl-96/e_rem_pio2l.c: New file.
43243 * sysdeps/ieee754/ldbl-96/k_cosl.c: Likewise.
43244 * sysdeps/ieee754/ldbl-96/k_sinl.c: Likewise.
43245 * sysdeps/ieee754/ldbl-96/t_sincosl.c: Likewise.
43246 * sysdeps/ieee754/ldbl-96/s_cosl.c (__cosl): Correct test for
43247 infinite argument.
43248 * sysdeps/ieee754/ldbl-96/s_sinl.c (__sinl): Likewise.
43249 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Handle __FLT_EVAL_METHOD__
43250 != 0 for prec == 2.
43251 * sysdeps/i386/fpu/e_rem_pio2l.c: Remove.
43252 * sysdeps/i386/fpu/k_rem_pio2.c: Likewise.
43253 * sysdeps/i386/fpu/s_cosl.S: Likewise.
43254 * sysdeps/i386/fpu/s_sincosl.S: Likewise.
43255 * sysdeps/i386/fpu/s_sinl.S: Likewise.
43256 * sysdeps/x86_64/fpu/e_rem_pio2l.c: Likewise.
43257 * sysdeps/x86_64/fpu/k_cosl.c: Likewise.
43258 * sysdeps/x86_64/fpu/k_sinl.c: Likewise.
43259 * sysdeps/x86_64/fpu/s_cosl.S: Likewise.
43260 * sysdeps/x86_64/fpu/s_sincosl.S: Likewise.
43261 * sysdeps/x86_64/fpu/s_sinl.S: Likewise.
43262 * math/libm-test.inc (cos_test): Add more tests and enable more
43263 tests for long double.
43264 (sin_test): Likewise.
43265 (sincos_test): Likewise.
43266 * sysdeps/i386/fpu/libm-test-ulps: Update.
43267 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
43268
432692012-03-16 David S. Miller <davem@davemloft.net>
43270
43271 * sysdeps/sparc/fpu/math_private.h: New file.
43272
432732012-03-15 David S. Miller <davem@davemloft.net>
43274
43275 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma-vis3.S: New
43276 file.
43277 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c: New file.
43278 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf-vis3.S: New
43279 file.
43280 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf.c: New file.
43281 * sysdeps/sparc/sparc64/fpu/multiarch/s_fma-vis3.S: New file.
43282 * sysdeps/sparc/sparc64/fpu/multiarch/s_fma.c: New file.
43283 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf-vis3.S: New file.
43284 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf.c: New file.
43285 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add fma/fmaf
43286 sysdep routines.
43287 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Likewise.
43288
43289 * sysdeps/sparc/sparc32/fpu/s_fma.c: New file.
43290 * sysdeps/sparc/sparc64/fpu/s_fma.c: New file.
43291
43292 * sysdeps/sparc/sparc-ifunc.h: New file.
43293 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Use
43294 sparc-ifunc.h
43295 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: Likewise.
43296 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S:
43297 Likewise.
43298 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S:
43299 Likewise.
43300 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Likewise.
43301 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: Likewise.
43302 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
43303 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S:
43304 Likewise.
43305 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: Likewise.
43306 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf.S: Likewise.
43307 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: Likewise.
43308 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf.S: Likewise.
43309 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S:
43310 Likewise.
43311 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S:
43312 Likewise.
43313 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Likewise.
43314 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: Likewise.
43315 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt.S: Likewise.
43316 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf.S: Likewise.
43317 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: Likewise.
43318 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: Likewise.
43319 * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: Likewise.
43320 * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: Likewise.
43321 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: Likewise.
43322 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: Likewise.
43323 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmax.S: Likewise.
43324 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf.S: Likewise.
43325 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin.S: Likewise.
43326 * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf.S: Likewise.
43327 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: Likewise.
43328 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: Likewise.
43329 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: Likewise.
43330 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: Likewise.
43331 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: Likewise.
43332 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: Likewise.
43333 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: Likewise.
43334 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: Likewise.
43335 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: Likewise.
43336 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: Likewise.
43337
433382012-03-15 Andreas Schwab <schwab@linux-m68k.org>
43339
43340 * sysdeps/powerpc/fpu/e_hypotf.c: Use double precision instead of
43341 scaling.
43342 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
43343
433442012-03-15 Andreas Jaeger <aj@suse.de>
43345
43346 [BZ #13852]
43347 * sysdeps/i386/fpu/e_rem_pio2f.c: Delete so that i386 uses the
43348 ieee754/flt-32 implementation for sin, cos and sincos.
43349 * sysdeps/i386/fpu/k_rem_pio2f.c: Likewise.
43350 * sysdeps/i386/fpu/s_cosf.S: Likewise.
43351 * sysdeps/i386/fpu/s_sincosf.S: Likewise.
43352 * sysdeps/i386/fpu/s_sinf.S: Likewise.
43353 * sysdeps/i386/fpu/s_tanf.S: Delete so that i386 uses the
43354 ieee754/flt-32 implementation for tan.
43355
43356 * math/libm-test.inc (cos_test): Enable some large input tests for
43357 float as well
43358 (sin_test): Likewise.
43359 (sincos_test): Likewise.
43360 (tan_test): Add tests for large input.
43361
43362 * sysdeps/i386/fpu/libm-test-ulps: Update.
43363
433642012-03-15 Andreas Jaeger <aj@suse.de>
43365
43366 [BZ #13658]
43367 * math/libm-test.inc (cos_test): Add more test cases.
43368 (sin_test): Likewise.
43369 (sincos_test): Likewise.
43370
433712012-03-15 Andreas Jaeger <aj@suse.de>
43372
43373 [BZ #13837]
43374 * math/libm-test.inc (cos_test): Add a test case for large input
43375 value.
43376 (sin_test): Likewise.
43377 (sincos_test): Likewise.
43378
433792012-03-15 Andreas Jaeger <aj@suse.de>
43380 Joseph Myers <joseph@codesourcery.com>
43381
43382 [BZ #13658]
43383 * sysdeps/x86_64/fpu/s_sincos.S: Delete files so that
43384 x86-64 and i386 use the iee754/dbl-64 sin and cos implementation.
43385 * sysdeps/i386/fpu/branred.c: Likewise.
43386 * sysdeps/i386/fpu/dosincos.c: Likewise.
43387 * sysdeps/i386/fpu/mpa.c: Likewise.
43388 * sysdeps/i386/fpu/s_cos.S: Likewise.
43389 * sysdeps/i386/fpu/s_sin.S: Likewise.
43390 * sysdeps/i386/fpu/s_sincos.S: Likewise.
43391 * sysdeps/i386/fpu/sincos32.c: Likewise.
43392
43393 * sysdeps/generic/math_private.h (libc_feholdexcept_setround_53bit):
43394 Define.
43395 (libc_feupdateenv_53bit): Define.
43396 * sysdeps/i386/fpu/math_private.h (libc_feholdexcept_setround_53bit):
43397 Define.
43398 (libc_feupdateenv_53bit): Define.
43399
43400 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Do double arithmetic in
43401 53 bit (without extend i386 double precision).
43402
43403 * math/libm-test.inc (sincos_test): Add tests for large input.
43404 (sin): Likewise.
43405 (cos): Likewise.
43406
43407 * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
43408
434092012-03-15 Andreas Schwab <schwab@linux-m68k.org>
43410
43411 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
43412
434132012-03-15 David S. Miller <davem@davemloft.net>
43414
43415 * sysdeps/sparc/sparc64/fpu/s_fmax.S: New file.
43416 * sysdeps/sparc/sparc64/fpu/s_fmaxf.S: New file.
43417 * sysdeps/sparc/sparc64/fpu/s_fmin.S: New file.
43418 * sysdeps/sparc/sparc64/fpu/s_fminf.S: New file.
43419 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S: New file.
43420 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmaxf.S: New file.
43421 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S: New file.
43422 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fminf.S: New file.
43423 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmax.S: New file.
43424 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf-vis3.S: New file.
43425 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf.S: New file.
43426 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin-vis3.S: New file.
43427 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin.S: New file.
43428 * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf-vis3.S: New file.
43429 * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf.S: New file.
43430 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax-vis3.S: New
43431 file.
43432 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: New file.
43433 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf-vis3.S: New
43434 file.
43435 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf.S: New file.
43436 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin-vis3.S: New
43437 file.
43438 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: New file.
43439 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf-vis3.S: New
43440 file.
43441 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf.S: New file.
43442 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add new vis3
43443 fmin/fmax sysdep routines.
43444 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Likewise.
43445
434462012-03-14 David S. Miller <davem@davemloft.net>
43447
43448 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S: New file.
43449 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: New file.
43450 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S: New file.
43451 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: New file.
43452 * sysdeps/sparc/sparc64/fpu/multiarch/s_finite-vis3.S: New file.
43453 * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: New file.
43454 * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef-vis3.S: New file.
43455 * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: New file.
43456 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S: New file.
43457 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: New file.
43458 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S: New file.
43459 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: New file.
43460 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf-vis3.S: New file.
43461 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: New file.
43462 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff-vis3.S: New file.
43463 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: New file.
43464 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan-vis3.S: New file.
43465 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: New file.
43466 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf-vis3.S: New file.
43467 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: New file.
43468 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint-vis3.S: New file.
43469 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: New file.
43470 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf-vis3.S: New file.
43471 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: New file.
43472 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint-vis3.S: New file.
43473 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: New file.
43474 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf-vis3.S: New file.
43475 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: New file.
43476 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add new VIS3
43477 routines.
43478 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S: New
43479 file.
43480 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: New file.
43481 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S: New
43482 file.
43483 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: New file.
43484 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs-vis3.S: New
43485 file.
43486 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: New file.
43487 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf-vis3.S: New
43488 file.
43489 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: New file.
43490 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S: New
43491 file.
43492 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: New file.
43493 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S: New
43494 file.
43495 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S: New
43496 file.
43497 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint-vis3.S: New
43498 file.
43499 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: New
43500 file.
43501 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf-vis3.S:
43502 New file.
43503 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S: New
43504 file.
43505 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint-vis3.S: New
43506 file.
43507 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: New file.
43508 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf-vis3.S: New
43509 file.
43510 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: New file.
43511 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt-vis3.S: New
43512 file.
43513 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt.S: New file.
43514 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf-vis3.S: New
43515 file.
43516 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf.S: New file.
43517 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add new
43518 VIS3 routines.
43519
43520 * sysdeps/sparc/sparc32/sparcv9/fpu/unix/sysv/linux/multiarch/Implies:
43521 New file.
43522
43523 * sysdeps/sparc/fpu/libm-test-ulps: Update.
43524
43525 * sysdeps/sparc/configure.in: New file.
43526 * sysdeps/sparc/configure: Generate.
43527 * configure.in (libc_cv_sparc_as_vis3): Substitute.
43528 * configure: Regenerate.
43529 * config.h.in (HAVE_AS_VIS3_SUPPORT): New.
43530 * config.make.in (have-as-vis3): New.
43531 * sysdeps/sparc/sparc32/sparcv9/Makefile (ASFLAGS-*): If VIS3 is
43532 available use -Av9d instead of -Av9a.
43533 * sysdeps/sparc/sparc64/Makefile: Likewise.
43534 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: New file.
43535 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign-vis3.S:
43536 New file.
43537 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S: New
43538 file.
43539 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf-vis3.S:
43540 New file.
43541 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S: New
43542 file.
43543 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: New file.
43544 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit-vis3.S: New file.
43545 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: New file.
43546 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf-vis3.S: New file.
43547 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: New file.
43548
43549 * sysdeps/sparc/sparc64/fpu/s_copysign.S (__copysign): Use
43550 fzeros/fnegs to load 0x80000000 into a float register instead of
43551 using the stack.
43552 * sysdeps/sparc/sparc64/fpu/s_copysignf.S (__copysignf): Likewise.
43553
435542012-03-14 Joseph Myers <joseph@codesourcery.com>
43555
43556 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
43557 bits/syscall.h.
43558 ($(objpfx)syscall-%.h): Rename rule to $(objpfx)bits/syscall%h.
43559 ($(objpfx)syscall-%.d): Rename rule to $(objpfx)bits/syscall%d.
43560 ($(inst_includedir)/bits/syscall.h): Remove rule.
43561 ($(objpfx)bits/syscall.d): Include instead of
43562 $(objpfx)syscall-list.d.
43563 (generated): Change syscall-list.h and syscall-list.d to
43564 bits/syscall.h and bits/syscall.d.
43565
435662012-03-14 Roland McGrath <roland@hack.frob.com>
43567
43568 [BZ #13846]
43569 * manual/llio.texi (Memory-mapped I/O): Fix wrong function name.
43570
435712012-03-14 Joseph Myers <joseph@codesourcery.com>
43572
43573 [BZ #13841]
43574 * math/s_csqrt.c: Include <float.h>.
43575 (__csqrt): Scale large or subnormal inputs.
43576 * math/s_csqrtf.c: Likewise.
43577 * math/s_csqrtl.c: Likewise.
43578 * math/libm-test.inc (csqrt_test): Add more tests.
43579 * sysdeps/i386/fpu/libm-test-ulps: Update.
43580 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
43581
43582 [BZ #13840]
43583 * math/libm-test.inc (hypot_test): Add more tests.
43584
435852012-03-13 David S. Miller <davem@davemloft.net>
43586
43587 [BZ #13840]
43588 * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf): Rewrite to use
43589 double-precision for the calculation instead of scaling.
43590
435912012-03-13 Joseph Myers <joseph@codesourcery.com>
43592
43593 * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Do not
43594 manipulate bits before adding and subtracting TWO52[sx].
43595 * sysdeps/ieee754/dbl-64/s_rint.c (__rint): Likewise.
43596 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c (__nearbyint):
43597 Likewise.
43598 * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c (__rint): Likewise.
43599
436002012-03-13 David S. Miller <davem@davemloft.net>
43601
43602 * sysdeps/sparc/Makefile: Remove rtld-global-offsets.sym handling.
43603 * sysdeps/sparc/elf/rtld-global-offsets.sym: Delete.
43604 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Don't include
43605 rtld-global-offsets.h
43606 * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
43607
43608 * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Use expl for
43609 large parameters.
43610
43611 * sysdeps/unix/sysv/linux/sparc/sparc64/dl-fxstatat64.c: New file.
43612
43613 * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Declare syscall
43614 'err' in the ifdef scope in which it is actually used.
43615
43616 * nss/nss_db/db-init.c: Include string.h
43617
436182012-03-12 David S. Miller <davem@davemloft.net>
43619
43620 * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
43621 masking out of the most significant byte of random value used.
43622 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
43623 Fix coding style in previous change.
43624
43625 * sysdeps/unix/sysv/linux/kernel-features.h
43626 (__ASSUME_CLONE_THREAD_FLAGS): Set on sparc when 2.5.64 and later.
43627 (__ASSUME_TGKILL): Set on sparc when 2.6.1 and later, simplify
43628 expression.
43629 (__ASSUME_FADVISE64_64_SYSCALL): Set on sparc when 2.6.1 and
43630 later.
43631
436322012-03-11 David S. Miller <davem@davemloft.net>
43633
43634 * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c
43635 (__makecontext): Fix signedness of pointer casts setting up 'sp'.
43636 * sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL) Use 'long'
43637 for 'resultvar' otherwise things get truncated on 64-bit.
43638
43639 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
43640 Fix masking out of the most significant byte of random value used.
43641
43642 * sysdeps/sparc/fpu/libm-test-ulps: Update.
43643
436442012-03-10 Andreas Schwab <schwab@linux-m68k.org>
43645
43646 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
43647
436482012-03-09 David S. Miller <davem@davemloft.net>
43649
43650 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Protect local
43651 variables with appropriate CPP guards.
43652 * sysdeps/sparc/sparc32/dl-trampoline.S: Propagate the stack_ptr
43653 from the frame pointer, not the stack pointer. Correct layout
43654 comments. Fix test on resulting framesize and the management of
43655 the outregs buffer for pltexit. Preserve floating point return
43656 values across _dl_call_pltexit call.
43657 * sysdeps/sparc/sparc64/dl-trampoline.S: Fix test on resulting
43658 framesize and the management of the outregs buffer for pltexit.
43659 Preserve floating point return values across _dl_call_pltexit
43660 call.
43661 * elf/sotruss-lib.c (la_sparc32_gnu_pltenter)
43662 (la_sparc64_gnu_pltenter, la_sparc32_gnu_pltexit)
43663 (la_sparc64_gnu_pltexit): New functions.
43664 (print_exit): Fix format string for return register value.
43665
436662012-03-10 Joseph Myers <joseph@codesourcery.com>
43667
43668 * sunrpc/Makefile (others): Add rpcgen.
43669 ($(objpfx)rpcgen): Remove special build rule and dependency on
43670 libc.
43671 * sunrpc/rpcgen.c: New file.
43672
436732012-03-09 Paul Eggert <eggert@cs.ucla.edu>
43674
43675 [BZ #13673]
43676 * posix/bug-regex33.c: Replace FSF snail mail address with URL.
43677 * stdio-common/bug-vfprintf-nargs.c: Likewise.
43678 * sysdeps/i386/crti.S: Likewise.
43679 * sysdeps/i386/crtn.S: Likewise.
43680 * sysdeps/powerpc/powerpc32/crti.S: Likewise.
43681 * sysdeps/powerpc/powerpc32/crtn.S: Likewise.
43682 * sysdeps/powerpc/powerpc64/crti.S: Likewise.
43683 * sysdeps/powerpc/powerpc64/crtn.S: Likewise.
43684 * sysdeps/sh/crti.S: Likewise.
43685 * sysdeps/sh/crtn.S: Likewise.
43686 * sysdeps/x86_64/fpu/e_expf.S: Likewise.
43687
43688 [BZ #13673]
43689 * locale/programs/charmap-kw.gperf: Replace FSF snail mail address
43690 with URL.
43691 * locale/programs/locfile-kw.gperf: Likewise.
43692 * locale/programs/charmap-kw.h: Regenerated.
43693 * locale/programs/locfile-kw.h: Likewise.
43694
43695 [BZ #13673]
43696 * intl/plural.y: Replace FSF snail mail address with URL.
43697 * intl/plural.c: Regenerated.
43698
436992012-03-09 Richard Henderson <rth@twiddle.net>
43700
43701 * include/math_private.h: Remove file.
43702 * math/math_private.h: Move file ...
43703 * sysdeps/generic/math_private.h: ... here.
43704
43705 * sysdeps/i386/fpu/math_private.h: Use include_next for math_private.h.
43706 * sysdeps/powerpc/fpu/math_private.h: Likewise.
43707 * sysdeps/x86_64/fpu/math_private.h: Likewise.
43708
43709 * sysdeps/i386/fpu/s_fpclassifyl.c: Use <> to include both <math.h>
43710 and <math_private.h>.
43711 * sysdeps/i386/fpu/s_isinfl.c: Likewise.
43712 * sysdeps/i386/fpu/s_isnanl.c: Likewise.
43713 * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
43714 * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
43715 * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
43716 * sysdeps/ieee754/dbl-64/branred.c: Likewise.
43717 * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
43718 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
43719 * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
43720 * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
43721 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
43722 * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
43723 * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
43724 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
43725 * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
43726 * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
43727 * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
43728 * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
43729 * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
43730 * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
43731 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
43732 * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
43733 * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
43734 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
43735 * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
43736 * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
43737 * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
43738 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
43739 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
43740 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
43741 * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
43742 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
43743 * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
43744 * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
43745 * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
43746 * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
43747 * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
43748 * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
43749 * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
43750 * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
43751 * sysdeps/ieee754/dbl-64/s_fpclassify.c: Likewise.
43752 * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
43753 * sysdeps/ieee754/dbl-64/s_ilogb.c: Likewise.
43754 * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
43755 * sysdeps/ieee754/dbl-64/s_isinf_ns.c: Likewise.
43756 * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
43757 * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
43758 * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
43759 * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
43760 * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
43761 * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
43762 * sysdeps/ieee754/dbl-64/s_lround.c: Likewise.
43763 * sysdeps/ieee754/dbl-64/s_modf.c: Likewise.
43764 * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
43765 * sysdeps/ieee754/dbl-64/s_remquo.c: Likewise.
43766 * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
43767 * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
43768 * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
43769 * sysdeps/ieee754/dbl-64/s_scalbn.c: Likewise.
43770 * sysdeps/ieee754/dbl-64/s_signbit.c: Likewise.
43771 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
43772 * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
43773 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
43774 * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
43775 * sysdeps/ieee754/dbl-64/s_trunc.c: Likewise.
43776 * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
43777 * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
43778 * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
43779 * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c: Likewise.
43780 * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c: Likewise.
43781 * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: Likewise.
43782 * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
43783 * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Likewise.
43784 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
43785 * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: Likewise.
43786 * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf.c: Likewise.
43787 * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf_ns.c: Likewise.
43788 * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
43789 * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: Likewise.
43790 * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Likewise.
43791 * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Likewise.
43792 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Likewise.
43793 * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Likewise.
43794 * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
43795 * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
43796 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: Likewise.
43797 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c: Likewise.
43798 * sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c: Likewise.
43799 * sysdeps/ieee754/flt-32/e_acosf.c: Likewise.
43800 * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
43801 * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
43802 * sysdeps/ieee754/flt-32/e_atan2f.c: Likewise.
43803 * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
43804 * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
43805 * sysdeps/ieee754/flt-32/e_fmodf.c: Likewise.
43806 * sysdeps/ieee754/flt-32/e_hypotf.c: Likewise.
43807 * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
43808 * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
43809 * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
43810 * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
43811 * sysdeps/ieee754/flt-32/e_log10f.c: Likewise.
43812 * sysdeps/ieee754/flt-32/e_log2f.c: Likewise.
43813 * sysdeps/ieee754/flt-32/e_logf.c: Likewise.
43814 * sysdeps/ieee754/flt-32/e_powf.c: Likewise.
43815 * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
43816 * sysdeps/ieee754/flt-32/e_remainderf.c: Likewise.
43817 * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
43818 * sysdeps/ieee754/flt-32/e_sqrtf.c: Likewise.
43819 * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
43820 * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
43821 * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
43822 * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
43823 * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
43824 * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
43825 * sysdeps/ieee754/flt-32/s_cbrtf.c: Likewise.
43826 * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
43827 * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
43828 * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
43829 * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
43830 * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
43831 * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
43832 * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
43833 * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
43834 * sysdeps/ieee754/flt-32/s_fpclassifyf.c: Likewise.
43835 * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
43836 * sysdeps/ieee754/flt-32/s_ilogbf.c: Likewise.
43837 * sysdeps/ieee754/flt-32/s_isinf_nsf.c: Likewise.
43838 * sysdeps/ieee754/flt-32/s_isinff.c: Likewise.
43839 * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
43840 * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
43841 * sysdeps/ieee754/flt-32/s_llroundf.c: Likewise.
43842 * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
43843 * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
43844 * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
43845 * sysdeps/ieee754/flt-32/s_lroundf.c: Likewise.
43846 * sysdeps/ieee754/flt-32/s_modff.c: Likewise.
43847 * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
43848 * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
43849 * sysdeps/ieee754/flt-32/s_remquof.c: Likewise.
43850 * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
43851 * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
43852 * sysdeps/ieee754/flt-32/s_scalblnf.c: Likewise.
43853 * sysdeps/ieee754/flt-32/s_scalbnf.c: Likewise.
43854 * sysdeps/ieee754/flt-32/s_signbitf.c: Likewise.
43855 * sysdeps/ieee754/flt-32/s_sincosf.c: Likewise.
43856 * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
43857 * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
43858 * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
43859 * sysdeps/ieee754/flt-32/s_truncf.c: Likewise.
43860 * sysdeps/ieee754/k_standard.c: Likewise.
43861 * sysdeps/ieee754/ldbl-128/e_acoshl.c: Likewise.
43862 * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
43863 * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
43864 * sysdeps/ieee754/ldbl-128/e_atan2l.c: Likewise.
43865 * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
43866 * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
43867 * sysdeps/ieee754/ldbl-128/e_fmodl.c: Likewise.
43868 * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
43869 * sysdeps/ieee754/ldbl-128/e_j0l.c: Likewise.
43870 * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
43871 * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
43872 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
43873 * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
43874 * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
43875 * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
43876 * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
43877 * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: Likewise.
43878 * sysdeps/ieee754/ldbl-128/e_remainderl.c: Likewise.
43879 * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
43880 * sysdeps/ieee754/ldbl-128/k_cosl.c: Likewise.
43881 * sysdeps/ieee754/ldbl-128/k_sincosl.c: Likewise.
43882 * sysdeps/ieee754/ldbl-128/k_sinl.c: Likewise.
43883 * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
43884 * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
43885 * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
43886 * sysdeps/ieee754/ldbl-128/s_cbrtl.c: Likewise.
43887 * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
43888 * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
43889 * sysdeps/ieee754/ldbl-128/s_cosl.c: Likewise.
43890 * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
43891 * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
43892 * sysdeps/ieee754/ldbl-128/s_fabsl.c: Likewise.
43893 * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
43894 * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
43895 * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c: Likewise.
43896 * sysdeps/ieee754/ldbl-128/s_frexpl.c: Likewise.
43897 * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Likewise.
43898 * sysdeps/ieee754/ldbl-128/s_isinf_nsl.c: Likewise.
43899 * sysdeps/ieee754/ldbl-128/s_isinfl.c: Likewise.
43900 * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
43901 * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
43902 * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
43903 * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
43904 * sysdeps/ieee754/ldbl-128/s_logbl.c: Likewise.
43905 * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
43906 * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
43907 * sysdeps/ieee754/ldbl-128/s_modfl.c: Likewise.
43908 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
43909 * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
43910 * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
43911 * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
43912 * sysdeps/ieee754/ldbl-128/s_remquol.c: Likewise.
43913 * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
43914 * sysdeps/ieee754/ldbl-128/s_roundl.c: Likewise.
43915 * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
43916 * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
43917 * sysdeps/ieee754/ldbl-128/s_signbitl.c: Likewise.
43918 * sysdeps/ieee754/ldbl-128/s_sincosl.c: Likewise.
43919 * sysdeps/ieee754/ldbl-128/s_sinl.c: Likewise.
43920 * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
43921 * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
43922 * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
43923 * sysdeps/ieee754/ldbl-128/w_expl.c: Likewise.
43924 * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c: Likewise.
43925 * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
43926 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
43927 * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c: Likewise.
43928 * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
43929 * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Likewise.
43930 * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Likewise.
43931 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
43932 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
43933 * sysdeps/ieee754/ldbl-128ibm/e_log10l.c: Likewise.
43934 * sysdeps/ieee754/ldbl-128ibm/e_log2l.c: Likewise.
43935 * sysdeps/ieee754/ldbl-128ibm/e_logl.c: Likewise.
43936 * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
43937 * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c: Likewise.
43938 * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c: Likewise.
43939 * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
43940 * sysdeps/ieee754/ldbl-128ibm/k_cosl.c: Likewise.
43941 * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
43942 * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
43943 * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
43944 * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
43945 * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Likewise.
43946 * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
43947 * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: Likewise.
43948 * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c: Likewise.
43949 * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c: Likewise.
43950 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
43951 * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c: Likewise.
43952 * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c: Likewise.
43953 * sysdeps/ieee754/ldbl-128ibm/s_finitel.c: Likewise.
43954 * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Likewise.
43955 * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
43956 * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Likewise.
43957 * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c: Likewise.
43958 * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c: Likewise.
43959 * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c: Likewise.
43960 * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c: Likewise.
43961 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c: Likewise.
43962 * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
43963 * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
43964 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
43965 * sysdeps/ieee754/ldbl-128ibm/s_remquol.c: Likewise.
43966 * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
43967 * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
43968 * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c: Likewise.
43969 * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c: Likewise.
43970 * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: Likewise.
43971 * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
43972 * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: Likewise.
43973 * sysdeps/ieee754/ldbl-96/e_acoshl.c: Likewise.
43974 * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
43975 * sysdeps/ieee754/ldbl-96/e_atan2l.c: Likewise.
43976 * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
43977 * sysdeps/ieee754/ldbl-96/e_coshl.c: Likewise.
43978 * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
43979 * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
43980 * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
43981 * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
43982 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
43983 * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
43984 * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
43985 * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
43986 * sysdeps/ieee754/ldbl-96/s_cbrtl.c: Likewise.
43987 * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
43988 * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
43989 * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
43990 * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
43991 * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
43992 * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
43993 * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
43994 * sysdeps/ieee754/ldbl-96/s_fpclassifyl.c: Likewise.
43995 * sysdeps/ieee754/ldbl-96/s_frexpl.c: Likewise.
43996 * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Likewise.
43997 * sysdeps/ieee754/ldbl-96/s_isinf_nsl.c: Likewise.
43998 * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
43999 * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
44000 * sysdeps/ieee754/ldbl-96/s_llrintl.c: Likewise.
44001 * sysdeps/ieee754/ldbl-96/s_llroundl.c: Likewise.
44002 * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
44003 * sysdeps/ieee754/ldbl-96/s_lrintl.c: Likewise.
44004 * sysdeps/ieee754/ldbl-96/s_lroundl.c: Likewise.
44005 * sysdeps/ieee754/ldbl-96/s_modfl.c: Likewise.
44006 * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
44007 * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
44008 * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
44009 * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
44010 * sysdeps/ieee754/ldbl-96/s_remquol.c: Likewise.
44011 * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
44012 * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
44013 * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
44014 * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
44015 * sysdeps/ieee754/ldbl-96/s_signbitl.c: Likewise.
44016 * sysdeps/ieee754/ldbl-96/s_sincosl.c: Likewise.
44017 * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
44018 * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
44019 * sysdeps/ieee754/ldbl-96/s_tanl.c: Likewise.
44020 * sysdeps/ieee754/ldbl-96/s_truncl.c: Likewise.
44021 * sysdeps/ieee754/s_lib_version.c: Likewise.
44022 * sysdeps/ieee754/s_matherr.c: Likewise.
44023 * sysdeps/ieee754/s_signgam.c: Likewise.
44024 * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
44025 * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
44026 * sysdeps/powerpc/fpu/e_rem_pio2f.c: Likewise.
44027 * sysdeps/powerpc/fpu/k_cosf.c: Likewise.
44028 * sysdeps/powerpc/fpu/k_rem_pio2f.c: Likewise.
44029 * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
44030 * sysdeps/powerpc/fpu/s_cosf.c: Likewise.
44031 * sysdeps/powerpc/fpu/s_float_bitwise.h: Likewise.
44032 * sysdeps/powerpc/fpu/s_isnan.c: Likewise.
44033 * sysdeps/powerpc/fpu/s_rint.c: Likewise.
44034 * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
44035 * sysdeps/powerpc/fpu/s_sinf.c: Likewise.
44036 * sysdeps/powerpc/fpu/w_sqrt.c: Likewise.
44037 * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
44038 * sysdeps/powerpc/powerpc32/fpu/s_llrintf.c: Likewise.
44039 * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Likewise.
44040 * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
44041 * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Likewise.
44042 * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
44043 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
44044 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
44045
440462012-03-09 Joseph Myers <joseph@codesourcery.com>
44047
44048 * sunrpc/rpc_cout.c: Remove __GNU_LIBRARY__ conditionals.
44049 * sunrpc/rpc_main.c: Likewise.
44050 * sunrpc/rpc_svcout.c: Likewise.
44051
440522012-03-09 David S. Miller <davem@davemloft.net>
44053
44054 * include/math_private.h: New file.
44055
440562012-03-09 Joseph Myers <joseph@codesourcery.com>
44057
44058 * sysdeps/unix/sysv/linux/bits/socket_type.h: New file.
44059 * sysdeps/unix/sysv/linux/sparc/bits/socket_type.h: Likewise.
44060 * sysdeps/unix/sysv/linux/bits/socket.h: Get enum __socket_type
44061 from <bits/socket_type.h>.
44062 (enum __socket_type): Don't define here.
44063 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Remove.
44064 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
44065 bits/socket_type.h.
44066
44067 [BZ #13566]
44068 * libio/stdio.h (gets): Always declare for C++ up to C++11 without
44069 checking __USE_GNU.
44070
44071 * Makerules ($(inst_includedir)/%.h): New rule.
44072 * stdio-common/Makefile (headers): Add bits/stdio_lim.h.
44073 (install-others): Remove variable setting.
44074 ($(inst_includedir)/bits/stdio_lim.h): Remove rule.
44075
440762012-03-08 Richard Henderson <rth@twiddle.net>
44077
44078 * sysdeps/powerpc/fpu/math_private.h (__ieee754_sqrt): Convert
44079 from macro to inline function; merge with the
44080 !__LIBC_INTERNAL_MATH_INLINES version.
44081 (__ieee754_sqrtf): Likewise.
44082
44083 * sysdeps/x86_64/fpu/math_private.h (__rint): Convert from macro
44084 to inline function.
44085 (__rintf, __floor, __floorf): Likewise.
44086
44087 * sysdeps/x86_64/fpu/math_private.h (__ieee754_sqrt): Convert from
44088 macro to inline function.
44089 (__ieee754_sqrtf, __ieee754_sqrtl): Likewise.
44090
44091 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Include <math_private.h>,
44092 not <math/math_private.h>.
44093
440942012-03-08 David S. Miller <davem@davemloft.net>
44095
44096 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Update
44097 copyright year.
44098 * sysdeps/unix/sysv/linux/sparc/sysdep.h: Likewise.
44099
441002012-03-08 Thomas Schwinge <thomas@codesourcery.com>
44101
44102 * resolv/gai_misc.c (handle_requests): Fix struct timespec
44103 normalization.
44104 * rt/tst-cpuclock2.c (test_nanosleep): Likewise.
44105 * sysdeps/pthread/aio_misc.c (handle_fildes_io): Likewise.
44106
441072012-03-08 Ulrich Drepper <drepper@gmail.com>
44108
44109 * stdio-common/tst-fphex.c: Various cleanups. The macros cannot
44110 be defined individually, they must be defined as a block. Define
44111 S for printing a string instead of hidint the different by using a
44112 macro for adding the 'l'.
44113 * stdio-common/tst-fphex-wide.c: Adjust.
44114
441152012-03-07 Marek Polacek <polacek@redhat.com>
44116
44117 * stdio-common/tst-long-dbl-fphex.c: Fix test for non ldbl-96 targets.
44118
441192012-03-08 Marek Polacek <polacek@redhat.com>
44120
44121 [BZ #13806]
44122 * stdio-common/Makefile (tests): Add tst-fphex-wide.
44123 * stdio-common/tst-fphex.c: Define a few macros to make the
44124 test reusable. Use them.
44125 * stdio-common/tst-fphex-wide.c: New file.
44126
441272012-03-08 Joseph Myers <joseph@codesourcery.com>
44128
44129 [BZ #6911]
44130 * manual/macros.texi (gnusystems): New macro.
44131 (nongnusystems): Likewise.
44132 (gnulinuxhurdsystems): Likewise.
44133 (gnuhurdsystems): Likewise..
44134 (gnulinuxsystems): Likewise.
44135 * manual/charset.texi: Use new macros or @theglibc{} to refer to
44136 variants of the GNU system, not "GNU system".
44137 * manual/conf.texi: Likewise.
44138 * manual/errno.texi: Likewise. Update example of errno macro
44139 expansion.
44140 * manual/filesys.texi: Likewise.
44141 (getumask): Document as specific to GNU/Hurd.
44142 * manual/install.texi: Likewise. Reword some references to
44143 GNU/Linux.
44144 * manual/intro.texi: Likewise.
44145 * manual/io.texi: Likewise.
44146 (File Name Portability): Detail which constraints are inapplicable
44147 to all GNU systems and which are only inapplicable to GNU/Hurd.
44148 * manual/job.texi: Likewise.
44149 * manual/llio.texi: Likewise.
44150 (O_NOCTTY): Document as present on GNU/Linux.
44151 * manual/maint.texi: Likewise.
44152 * manual/memory.texi: Likewise.
44153 * manual/pattern.texi: Likewise.
44154 * manual/pipe.texi: Likewise.
44155 * manual/process.texi: Likewise.
44156 * manual/resource.texi: Likewise.
44157 (RUSAGE_CHILDREN): Remove statement about specifying a particular
44158 child on GNU/Hurd.
44159 * manual/setjmp.texi: Likewise.
44160 * manual/signal.texi: Likewise.
44161 * manual/startup.texi: Likewise.
44162 * manual/stdio.texi: Likewise.
44163 * manual/terminal.texi: Likewise.
44164 (ONLCR): Document as POSIX.
44165 (OXTABS): Document availability on GNU/Linux as XTABS.
44166 (ONOEOT): Document availability separately from other bits.
44167 (VLNEXT, VDISCARD, VSTATUS): Document availability individually.
44168 * manual/time.texi: Likewise.
44169 * manual/users.texi: Likewise.
44170 * INSTALL: Regenerated.
44171 * sysdeps/gnu/errlist.c: Regenerated.
44172
44173 * aclocal.m4 (LIBC_TRY_LINK_STATIC): New macro.
44174 * configure.in (libc_cv_preinit_array): Use LIBC_TRY_LINK_STATIC.
44175 (libc_cv_ctors_header): Likewise. Use asm ("") instead of calling
44176 puts.
44177 * configure: Regenerated.
44178
441792012-03-07 Joseph Myers <joseph@codesourcery.com>
44180
44181 * sysdeps/i386/configure.in (cpuid.h): Use AC_CHECK_HEADER with no
44182 default includes instead of AC_HEADER_CHECK.
44183 * sysdeps/i386/configure: Regenerated.
44184
44185 [BZ #10716]
44186 * math/s_cacosh.c (__cacosh): Convert negative log results to 0.
44187 * math/s_cacoshf.c (__cacoshf): Likewise.
44188 * math/s_cacoshl.c (__cacoshl): Likewise.
44189 * math/s_casinh.c (__casinh): Set signs of result from argument.
44190 * math/s_casinhf.c (__casinhf): Likewise.
44191 * math/s_casinhl.c (__casinhl): Likewise.
44192 * math/libm-test.inc (cacos_test, cacosh_test, casin_test)
44193 (casinh_test): Add more tests.
44194 * sysdeps/i386/fpu/libm-test-ulps: Update.
44195 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44196
441972012-03-07 Ulrich Drepper <drepper@gmail.com>
44198
44199 * po/zh_TW.po: Update from translation team.
44200
44201 * login/Makefile (distribute): Remove variable.
44202 * catgets/Makefile: Likewise.
44203 * mach/Makefile: Likewise.
44204 * malloc/Makefile: Likewise.
44205 * misc/Makefile: Likewise.
44206 * iconv/Makefile: Likewise.
44207 * nscd/Makefile: Likewise.
44208 * hurd/Makefile: Likewise.
44209 * manual/Makefile: Likewise.
44210 * locale/Makefile: Likewise.
44211 * intl/Makefile: Likewise.
44212 * conform/Makefile: Likewise.
44213 * nss/Makefile: Likewise.
44214 * time/Makefile: Likewise.
44215 * soft-fp/Makefile: Likewise.
44216 * dirent/Makefile: Likewise.
44217 * gmon/Makefile: Likewise.
44218 * po/Makefile: Likewise.
44219 * rt/Makefile: Likewise.
44220 * socket/Makefile: Likewise.
44221 * math/Makefile: Likewise.
44222 * signal/Makefile: Likewise.
44223 * debug/Makefile: Likewise.
44224 * elf/Makefile: Likewise.
44225 * timezone/Makefile: Likewise.
44226 * stdlib/Makefile: Likewise.
44227 * iconvdata/Makefile: Likewise.
44228 * sunrpc/Makefile: Likewise.
44229 * io/Makefile: Likewise.
44230 * argp/Makefile: Likewise.
44231 * inet/Makefile: Likewise.
44232 * hesiod/Makefile: Likewise.
44233 * grp/Makefile: Likewise.
44234 * csu/Makefile: Likewise.
44235 * wctype/Makefile: Likewise.
44236 * crypt/Makefile: Likewise.
44237 * libio/Makefile: Likewise.
44238 * string/Makefile: Likewise.
44239 * nis/Makefile: Likewise.
44240 * resolv/Makefile: Likewise.
44241 * stdio-common/Makefile: Likewise.
44242 * wcsmbs/Makefile: Likewise.
44243 * dlfcn/Makefile: Likewise.
44244 * posix/Makefile: Likewise.
44245
44246 [BZ #6959]
44247 * timezone/Makefile: Don't install timezone files, just the programs
44248 and scripts.
44249
442502012-03-06 Ulrich Drepper <drepper@gmail.com>
44251
44252 * nss/databases.def: Add missing gshadow entry.
44253
44254 * stdio-common/vfprintf.c: Fix formatting. Missing copyright update.
44255
442562012-03-06 Marek Polacek <polacek@redhat.com>
44257
44258 [BZ #13726]
44259 * sysdeps/ieee754/ldbl-96/printf_fphex.c: Adjust position of wnumstr.
44260 * sysdeps/x86_64/fpu/printf_fphex.c: Likewise.
44261 * stdio-common/Makefile (tests): Add tst-long-dbl-fphex.
44262 * stdio-common/tst-long-dbl-fphex.c: New file.
44263
442642012-03-06 David S. Miller <davem@davemloft.net>
44265
44266 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
44267 (set_obp_int): New function.
44268 (get_obp_int): New function.
44269 (__get_clockfreq_via_dev_openprom): Likewise.
44270 * sysdeps/unix/sysv/linux/sparc/sysdep.h (INTERNAL_SYSCALL_ERROR_P):
44271 Avoid unused variable warnings on 'val' and use builtin_expect.
44272 (INLINE_SYSCALL): Don't wrap INTERNAL_SYSCALL_ERROR_P with
44273 __builtin_expect.
44274 (INLINE_CLONE_SYSCALL): Likewise.
44275
442762012-03-05 David S. Miller <davem@davemloft.net>
44277
44278 * sysdeps/sparc/fpu/libm-test-ulps: Update.
44279
442802012-03-05 Andreas Schwab <schwab@linux-m68k.org>
44281
44282 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
44283
44284 * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Drop exp(-x) term
44285 only for |x| >= 40.
44286 * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
44287
442882012-03-05 H.J. Lu <hongjiu.lu@intel.com>
44289
44290 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c (gettimeofday_ifunc):
44291 Replace gettimeofday with __vdso_gettimeofday.
44292
44293 * sysdeps/unix/sysv/linux/x86_64/init-first.c
44294 (_libc_vdso_platform_setup): Replace clock_gettime and getcpu with
44295 __vdso_clock_gettime and __vdso_getcpu.
44296
44297 * sysdeps/unix/sysv/linux/x86_64/time.c (time_ifunc): Replace
44298 time with __vdso_time.
44299
443002012-03-05 Joseph Myers <joseph@codesourcery.com>
44301
44302 * manual/lang.texi (size_t): Note types to which size_t may be
44303 equivalent with the GNU C Library, but do not describe when
44304 differences between them are significant.
44305
443062012-03-05 Andreas Jaeger <aj@suse.de>
44307
44308 * sysdeps/i386/fpu/libm-test-ulps: Update.
44309
443102012-03-05 Joseph Myers <joseph@codesourcery.com>
44311
44312 [BZ #3976]
44313 * sysdeps/ieee754/dbl-64/e_pow.c: Include <fenv.h>.
44314 (__ieee754_pow): Save and restore rounding mode and use
44315 round-to-nearest for main computations.
44316 * math/libm-test.inc (pow_test_tonearest): New function.
44317 (pow_test_towardzero): Likewise.
44318 (pow_test_downward): Likewise.
44319 (pow_test_upward): Likewise.
44320 (main): Call the new functions.
44321 * sysdeps/i386/fpu/libm-test-ulps: Update.
44322 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44323
44324 [BZ #3976]
44325 * math/libm-test.inc (cosh_test_tonearest): New function.
44326 (cosh_test_towardzero): Likewise.
44327 (cosh_test_downward): Likewise.
44328 (cosh_test_upward): Likewise.
44329 (sinh_test_tonearest): Likewise.
44330 (sinh_test_towardzero): Likewise.
44331 (sinh_test_downward): Likewise.
44332 (sinh_test_upward): Likewise.
44333 (main): Call the new functions.
44334 * sysdeps/i386/fpu/libm-test-ulps: Update.
44335 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44336
443372012-03-05 Tom de Vries <tom@codesourcery.com>
44338
44339 * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Ensure
44340 default stack guard is set in last bytes.
44341 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Same.
44342
443432012-03-05 Kees Cook <keescook@chromium.org>
44344
44345 * stdio-common/vfprintf.c (vfprintf): add missing errno settings.
44346
44347 [BZ #13656]
44348 * stdio-common/vfprintf.c (vfprintf): Check for nargs overflow and
44349 possibly allocate from heap instead of stack.
44350 * stdio-common/bug-vfprintf-nargs.c: New file.
44351 * stdio-common/Makefile (tests): Add nargs overflow test.
44352
443532012-03-03 Andreas Schwab <schwab@linux-m68k.org>
44354
44355 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
44356
443572012-03-03 Marek Polacek <polacek@redhat.com>
44358
44359 * include/sys/cdefs.h: Remove __GNUC_PREREQ macro.
44360 * math/math_private.h: Likewise.
44361 * stdlib/tst-strtod.c: Likewise.
44362 * sysdeps/i386/i486/bits/atomic.h: Likewise.
44363 * sysdeps/x86_64/bits/atomic.h: Likewise.
44364
443652012-03-02 David S. Miller <davem@davemloft.net>
44366
44367 * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: New file.
44368 * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrintf.S: New file.
44369 * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S: New file.
44370 * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrintf.S: New file.
44371 * sysdeps/sparc/sparc64/fpu/s_llrint.S: New file.
44372 * sysdeps/sparc/sparc64/fpu/s_llrintf.S: New file.
44373 * sysdeps/sparc/sparc64/fpu/s_lrint.S: New file.
44374 * sysdeps/sparc/sparc64/fpu/s_lrintf.S: New file.
44375
443762012-03-02 Roland McGrath <roland@hack.frob.com>
44377
44378 [BZ #13792]
44379 * manual/examples/README: New file, says the example source files
44380 can be used under GPL>=2.
44381 * manual/Makefile (%.c.texi): Eat the leading part of the file until a
44382 line containing just "*/".
44383 * manual/examples/add.c: Add copyright header (GPL>=2).
44384 * manual/examples/argp-ex1.c: Likewise.
44385 * manual/examples/argp-ex2.c: Likewise.
44386 * manual/examples/argp-ex3.c: Likewise.
44387 * manual/examples/argp-ex4.c: Likewise.
44388 * manual/examples/atexit.c: Likewise.
44389 * manual/examples/db.c: Likewise.
44390 * manual/examples/dir.c: Likewise.
44391 * manual/examples/dir2.c: Likewise.
44392 * manual/examples/execinfo.c: Likewise.
44393 * manual/examples/filecli.c: Likewise.
44394 * manual/examples/filesrv.c: Likewise.
44395 * manual/examples/fmtmsgexpl.c: Likewise.
44396 * manual/examples/genpass.c: Likewise.
44397 * manual/examples/inetcli.c: Likewise.
44398 * manual/examples/inetsrv.c: Likewise.
44399 * manual/examples/isockad.c: Likewise.
44400 * manual/examples/longopt.c: Likewise.
44401 * manual/examples/memopen.c: Likewise.
44402 * manual/examples/memstrm.c: Likewise.
44403 * manual/examples/mkfsock.c: Likewise.
44404 * manual/examples/mkisock.c: Likewise.
44405 * manual/examples/mygetpass.c: Likewise.
44406 * manual/examples/pipe.c: Likewise.
44407 * manual/examples/popen.c: Likewise.
44408 * manual/examples/rprintf.c: Likewise.
44409 * manual/examples/search.c: Likewise.
44410 * manual/examples/select.c: Likewise.
44411 * manual/examples/setjmp.c: Likewise.
44412 * manual/examples/sigh1.c: Likewise.
44413 * manual/examples/sigusr.c: Likewise.
44414 * manual/examples/stpcpy.c: Likewise.
44415 * manual/examples/strdupa.c: Likewise.
44416 * manual/examples/strftim.c: Likewise.
44417 * manual/examples/strncat.c: Likewise.
44418 * manual/examples/subopt.c: Likewise.
44419 * manual/examples/swapcontext.c: Likewise.
44420 * manual/examples/termios.c: Likewise.
44421 * manual/examples/testopt.c: Likewise.
44422 * manual/examples/testpass.c: Likewise.
44423 * manual/examples/timeval_subtract.c: Likewise.
44424
44425 [BZ #13792]
44426 * manual/time.texi (Elapsed Time): Move timeval_subtract example
44427 function to ...
44428 * manual/timeval_subtract.c.texi: ... here, new file.
44429
444302012-03-02 David S. Miller <davem@davemloft.net>
44431
44432 * sysdeps/sparc/fpu/libm-test-ulps: Update for recently added tests.
44433
444342012-03-02 Joseph Myers <joseph@codesourcery.com>
44435
44436 [BZ #3976]
44437 * sysdeps/ieee754/dbl-64/s_sin.c: Include <fenv.h>
44438 (__sin): Save and restore rounding mode and use round-to-nearest
44439 for all computations.
44440 (__cos): Save and restore rounding mode and use round-to-nearest
44441 for all computations.
44442 * sysdeps/ieee754/dbl-64/s_tan.c: Include "math_private.h" and
44443 <fenv.h>.
44444 (tan): Save and restore rounding mode and use round-to-nearest for
44445 all computations.
44446 * math/libm-test.inc (cos_test_tonearest): New function.
44447 (cos_test_towardzero): Likewise.
44448 (cos_test_downward): Likewise.
44449 (cos_test_upward): Likewise.
44450 (sin_test_tonearest): Likewise.
44451 (sin_test_towardzero): Likewise.
44452 (sin_test_downward): Likewise.
44453 (sin_test_upward): Likewise.
44454 (tan_test_tonearest): Likewise.
44455 (tan_test_towardzero): Likewise.
44456 (tan_test_downward): Likewise.
44457 (tan_test_upward): Likewise.
44458 (main): Call the new functions.
44459 * sysdeps/i386/fpu/libm-test-ulps: Update.
44460 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44461
44462 [BZ #10135]
44463 * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): First test for
44464 small n, then large n, before computing and testing k+n.
44465 * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
44466 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c (__scalbln):
44467 Likewise.
44468 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c (__scalbn):
44469 Likewise.
44470 * sysdeps/ieee754/flt-32/s_scalblnf.c (__scalblnf): Likewise.
44471 * sysdeps/ieee754/flt-32/s_scalbnf.c (__scalbnf): Likewise.
44472 * sysdeps/ieee754/ldbl-128/s_scalblnl.c (__scalblnl): Likewise.
44473 * sysdeps/ieee754/ldbl-128/s_scalbnl.c (__scalbnl): Likewise.
44474 * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
44475 * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
44476 * sysdeps/ieee754/ldbl-96/s_scalblnl.c (__scalblnl): Likewise.
44477 * sysdeps/ieee754/ldbl-96/s_scalbnl.c (__scalbnl): Likewise.
44478 * math/libm-test.inc (scalbn_test): Add more tests.
44479 (scalbln_test): Likewise.
44480
44481 * manual/filesys.texi (mode_t): Describe constraints on size and
44482 signedness, not exact equivalence to a particular type.
44483 (ino_t): Likewise.
44484 (ino64_t): Likewise.
44485 (dev_t): Likewise.
44486 (nlink_t): Likewise.
44487 (blkcnt_t): Likewise.
44488 (blkcnt64_t): Likewise.
44489 * manual/llio.texi (off_t): Likewise.
44490
44491 [BZ #3976]
44492 * sysdeps/ieee754/dbl-64/e_exp.c: Include <fenv.h>.
44493 (__ieee754_exp): Save and restore rounding mode and use
44494 round-to-nearest for all computations.
44495 * math/libm-test.inc (exp_test_tonearest): New function.
44496 (exp_test_towardzero): Likewise.
44497 (exp_test_downward): Likewise.
44498 (exp_test_upward): Likewise.
44499 (main): Call the new functions.
44500 * sysdeps/i386/fpu/libm-test-ulps: Update.
44501 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44502
445032012-03-01 Chris Demetriou <cgd@google.com>
44504
44505 * sysdeps/gnu/errlist-compat.awk: Don't depend on AWK internals to
44506 have predictable order.
44507
445082012-03-01 David S. Miller <davem@davemloft.net>
44509
44510 * sysdeps/unix/sysv/linux/sparc/sparc32/getpagesize.c: Delete.
44511
44512 * sysdeps/sparc/sparc64/fpu/s_finite.S: New file.
44513 * sysdeps/sparc/sparc64/fpu/s_finitef.S: New file.
44514 * sysdeps/sparc/sparc64/fpu/s_isinf.S: New file.
44515 * sysdeps/sparc/sparc64/fpu/s_isinff.S: New file.
44516
44517 * sysdeps/sparc/sparc32/fpu/s_signbit.S: New file.
44518 * sysdeps/sparc/sparc32/fpu/s_signbitf.S: New file.
44519 * sysdeps/sparc/sparc32/fpu/s_signbitl.S: New file.
44520 * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: New file.
44521 * sysdeps/sparc/sparc64/fpu/s_isnan.S: New file.
44522 * sysdeps/sparc/sparc64/fpu/s_isnanf.S: New file.
44523 * sysdeps/sparc/sparc64/fpu/s_signbit.S: New file.
44524 * sysdeps/sparc/sparc64/fpu/s_signbitf.S: New file.
44525 * sysdeps/sparc/sparc64/fpu/s_signbitl.S: New file.
44526
44527 * sysdeps/sparc/fpu/libm-test-ulps: Update.
44528
44529 * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Move...
44530 * sysdeps/sparc/fpu/libm-test-ulps: to here.
44531 * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Delete.
44532
44533 * sysdeps/sparc/crti.S: Remove HAVE_BINUTILS_GOTDATA checks.
44534 * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
44535 * sysdeps/sparc/sparc32/elf/start.S: Likewise.
44536 * sysdeps/sparc/sparc32/fpu/w_sqrt.S: Likewise.
44537 * sysdeps/sparc/sparc32/fpu/w_sqrtf.S: Likewise.
44538 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S: Likewise.
44539 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S: Likewise.
44540 * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
44541 * sysdeps/sparc/sparc64/elf/start.S: Likewise.
44542 * sysdeps/sparc/sparc64/fpu/w_sqrt.S: Likewise.
44543 * sysdeps/sparc/sparc64/fpu/w_sqrtf.S: Likewise.
44544 * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
44545 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
44546 * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Likewise.
44547 * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
44548 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
44549 * config.h.in (HAVE_BINUTILS_GOTDATA): Delete.
44550 * sysdeps/sparc/elf/configure.in: Remove binutils GOTDATA checks.
44551 * sysdeps/sparc/elf/configure: Regenerated.
44552
445532012-03-01 Joseph Myers <joseph@codesourcery.com>
44554
44555 * configure.in (AS, LD): Require binutils 2.20 or later.
44556 * configure: Regenerated.
44557 * manual/install.texi (Tools for Compilation): Give binutils 2.20
44558 as required minimum version.
44559 * INSTALL: Regenerated.
44560
44561 [BZ #2541]
44562 [BZ #4108]
44563 * sysdeps/ieee754/flt-32/s_erff.c (__erfcf): Mask out one more bit
44564 before squaring exponent.
44565 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c (__erfcl): Mask out whole
44566 bottom long double and 27 bits of top long double before squaring
44567 exponent.
44568 * math/libm-test.inc (erfc_test): Add more tests.
44569 * sysdeps/i386/fpu/libm-test-ulps: Update.
44570 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
44571 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44572
445732012-03-01 Kai Tietz <ktietz@redhat.com>
44574
44575 * soft-fp/soft-fp.h (_FP_STRUCT_LAYOUT): New macro.
44576 * soft-fp/quad.h (_FP_UNION_Q): Use _FP_STRUCT_LAYOUT on struct
44577 containing bit-fields.
44578 * soft-fp/extended.h (_FP_UNION_E): Likewise.
44579 * soft-fp/single.h (_FP_UNION_S): Likewise.
44580 * soft-fp/double.h (_FP_UNION_D): Likewise.
44581
445822012-02-29 Joseph Myers <joseph@codesourcery.com>
44583
44584 [BZ #13786]
44585 * sysdeps/i386/i686/multiarch/strcmp.S [USE_AS_STRCASECMP_L]: Do
44586 not include ../strcmp.S.
44587 [USE_AS_STRNCASECMP_L]: Likewise.
44588 * sysdeps/i386/i686/multiarch/strcasecmp_l-c.c
44589 (__strcasecmp_l_ia32): Define as alias to __strcasecmp_l_nonascii.
44590 * sysdeps/i386/i686/multiarch/strncase_l-c.c
44591 (__strncasecmp_l_ia32): Define as alias to
44592 __strncasecmp_l_nonascii.
44593
44594 [BZ #5794]
44595 * math/libm-test.inc (expm1_test): Add test for bug 5794.
44596 * sysdeps/i386/fpu/libm-test-ulps: Update.
44597 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44598
44599 * sysdeps/i386/fpu/libm-test-ulps: Reduce some expected errors.
44600 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44601
446022012-02-29 Jeff Law <law@redhat.com>
44603
44604 * resolv/res_query.c (__libc_res_nquerydomain): Avoid
44605 out of bounds read.
44606
446072012-02-29 Marek Polacek <polacek@redhat.com>
44608
44609 [BZ #13706]
44610 * elf/rtld.c (dl_main): Always set l_used to 1 for vDSO.
44611 * elf/Makefile: Add rules to run tst-unused-dep.out.
44612
446132012-02-28 David S. Miller <davem@davemloft.net>
44614
44615 * sysdeps/sparc/sparc32/fpu/w_sqrt.S: New file.
44616 * sysdeps/sparc/sparc32/fpu/w_sqrtf.S: New file.
44617 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S: New file.
44618 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S: New file.
44619 * sysdeps/sparc/sparc64/fpu/w_sqrt.S: New file.
44620 * sysdeps/sparc/sparc64/fpu/w_sqrtf.S: New file.
44621
446222012-02-29 Joseph Myers <joseph@codesourcery.com>
44623
44624 * math/libm-test.inc (llround_test): Move one test from
44625 lround_test. Use TEST_f_L in moved test.
44626 (lround_test): Move misplaced test to llround_test. Add testcase
44627 from bug 2561.
44628
446292012-02-28 Ulrich Drepper <drepper@gmail.com>
44630
44631 * sysdeps/x86_64/fpu/e_expf.S: New file.
44632 Contributed by Dmitrieva Liubov <liubov.dmitrieva@gmail.com>.
44633
446342012-02-28 Stanislav Brabec <sbrabec@suse.cz>
44635
44636 [BZ #13637]
44637 * posix/regex_internal.c (re_string_skip_chars): Fix miscomputation
44638 of remain_len that may cause incomplete multi-byte character and
44639 false match.
44640 * posix/bug-regex33.c: New file.
44641 * posix/Makefile (tests): Add bug-regex33.
44642
446432012-02-28 Joseph Myers <joseph@codesourcery.com>
44644
44645 * manual/macros.texi: New file.
44646 * Makefile (INSTALL, NOTES): Depend on manual/macros.texi.
44647 * manual/libc.texinfo: Include macros.texi.
44648 * manual/creatute.texi: Likewise.
44649 * manual/install.texi: Likewise.
44650 * manual/arith.texi: Use macros @Theglibc{}, @theglibc{} and
44651 @glibcadj{} in references to the GNU C Library.
44652 * manual/charset.texi: Likewise.
44653 * manual/conf.texi: Likewise.
44654 * manual/contrib.texi: Likewise. Consistently use "GNU C Library"
44655 when not using those macros.
44656 * manual/creature.texi: Likewise.
44657 * manual/crypt.texi: Likewise.
44658 * manual/errno.texi: Likewise.
44659 * manual/filesys.texi: Likewise.
44660 * manual/header.texi: Likewise.
44661 * manual/install.texi: Likewise.
44662 * manual/intro.texi: Likewise.
44663 * manual/io.texi: Likewise.
44664 * manual/job.texi: Likewise.
44665 * manual/lang.texi: Likewise.
44666 * manual/libc.texiinfo: Likewise.
44667 * manual/llio.texi: Likewise.
44668 * manual/locale.texi: Likewise.
44669 * manual/maint.texi: Likewise.
44670 * manual/math.texi: Likewise.
44671 * manual/memory.texi: Likewise.
44672 * manual/message.texi: Likewise.
44673 * manual/nss.texi: Likewise.
44674 * manual/pattern.texi: Likewise.
44675 * manual/process.texi: Likewise.
44676 * manual/resource.texi: Likewise.
44677 * manual/search.texi: Likewise.
44678 * manual/setjmp.texi: Likewise.
44679 * manual/signal.texi: Likewise.
44680 * manual/socket.texi: Likewise.
44681 * manual/startup.texi: Likewise.
44682 * manual/stdio.texi: Likewise.
44683 * manual/string.texi: Likewise.
44684 * manual/sysinfo.texi: Likewise.
44685 * manual/syslog.texi: Likewise.
44686 * manual/terminal.texi: Likewise.
44687 * manual/time.texi: Likewise.
44688 * manual/users.texi: Likewise.
44689 * INSTALL: Regenerated.
44690 * NOTES: Regenerated.
44691 * sysdeps/gnu/errlist.c: Regenerated.
44692
446932012-02-28 Andreas Schwab <schwab@linux-m68k.org>
44694
44695 * include/dirent.h: Include <dirstream.h> before
44696 <dirent/dirent.h>.
44697
446982012-02-28 David S. Miller <davem@davemloft.net>
44699
44700 * sysdeps/sparc/sparc32/fpu/s_copysign.S: New file.
44701 * sysdeps/sparc/sparc32/fpu/s_copysignf.S: New file.
44702 * sysdeps/sparc/sparc64/fpu/s_copysign.S: New file.
44703 * sysdeps/sparc/sparc64/fpu/s_copysignf.S: New file.
44704
447052012-02-27 David S. Miller <davem@davemloft.net>
44706
44707 * sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S: New file.
44708 * sysdeps/sparc/sparc32/sparcv9/fpu/s_floorf.S: New file.
44709 * sysdeps/sparc/sparc64/fpu/s_floor.S: New file.
44710 * sysdeps/sparc/sparc64/fpu/s_floorf.S: New file.
44711
44712 * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Fix accidental use of
44713 frame pointer instead of stack pointer relative arg slot.
44714 * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: Likewise.
44715 * sysdeps/sparc/sparc64/fpu/s_ceil.S: Likewise.
44716 * sysdeps/sparc/sparc64/fpu/s_ceilf.S: Likewise.
44717
447182012-02-27 Carlos O'Donell <carlos_odonell@mentor.com>
44719
44720 [BZ #3992]
44721 * stdlib/fmtmsg.c: Use of uint32_t requires stdint.h.
44722
447232012-02-27 David S. Miller <davem@davemloft.net>
44724
44725 * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Fix comment formatting.
44726 * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: Likewise.
44727 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
44728 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: Likewise.
44729 * sysdeps/sparc/sparc64/fpu/s_ceil.S: Likewise.
44730 * sysdeps/sparc/sparc64/fpu/s_ceilf.S: Likewise.
44731 * sysdeps/sparc/sparc64/fpu/s_rint.S: Likewise.
44732 * sysdeps/sparc/sparc64/fpu/s_rintf.S: Likewise.
44733
447342012-02-27 Joseph Myers <joseph@codesourcery.com>
44735
44736 * configure.in (CC): Restrict allowed GCC versions to 4.3 and
44737 later. Allow versions 5-9.
44738 * configure: Regenerated.
44739 * manual/install.texi (Tools for Compilation): Give GCC 4.3 as
44740 required minimum version and 4.6 as recommended version. Do not
44741 mention bugs in GCC 2.7 and 2.8.
44742 * INSTALL: Regenerated.
44743
447442012-02-27 David S. Miller <davem@davemloft.net>
44745
44746 * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: New file.
44747 * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: New file.
44748 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: New file.
44749 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: New file.
44750 * sysdeps/sparc/sparc64/fpu/s_ceil.S: New file.
44751 * sysdeps/sparc/sparc64/fpu/s_ceilf.S: New file.
44752 * sysdeps/sparc/sparc64/fpu/s_rint.S: New file.
44753 * sysdeps/sparc/sparc64/fpu/s_rintf.S: New file.
44754
44755 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Do not
44756 manipulate bits before adding and subtracting TWO112[sx].
44757 * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
44758
447592012-02-27 Roland McGrath <roland@hack.frob.com>
44760
44761 [BZ #13775]
44762 * libio/bits/stdio-ldbl.h (vdprintf, dprintf): Put these under
44763 [__USE_XOPEN2K8] rather than [__USE_GNU], to match the stdio.h decls.
44764 * libio/stdio.h (vdprintf, dprintf): Remove comment about these not
44765 being in POSIX, because they are in 1003.1-2008.
44766
44767 * rt/tst-aio.c: Include <fcntl.h>.
44768 * rt/tst-aio7.c: Likewise.
44769 * rt/tst-aio64.c: Likewise.
44770
44771 * stdio-common/tst-fmemopen.c (main): Remove spurious const.
44772
447732012-02-27 Joseph Myers <joseph@codesourcery.com>
44774
44775 * manual/install.texi (--with-headers): Describe headers as
44776 interface headers, not private headers.
44777 (Specific advice for GNU/Linux systems): Describe use of headers
44778 from "make headers_install", not private headers from older
44779 kernels.
44780 * INSTALL: Regenerated.
44781 * sysdeps/unix/sysv/linux/configure.in (LIBC_LINUX_VERSION):
44782 Change to 2.6.19.
44783 * sysdeps/unix/sysv/linux/configure: Regenerated.
44784
44785 * manual/llio.texi (fclean): Remove documentation.
44786
44787 * manual/Makefile (libc-texi-generated): New variable. Include
44788 version.texi.
44789 (libc.dvi, libc.pdf, libc.info, libc/index.html): Depend on
44790 $(libc-texi-generated), not duplicated list of files.
44791 (version.texi, stamp-version): New rules.
44792 (realclean): Remove $(libc-texi-generated), not individual files
44793 from that list. Do not remove dir-add.texinfo.
44794 * manual/libc.texinfo: Comment out uses of edition numbers and
44795 references to printed manual. Remove last-updated dates.
44796 (EDITION): Comment out.
44797 (ISBN): Likewise.
44798 (VERSION, UPDATED): Remove.
44799 (version.texi): Include.
44800
448012012-02-27 Andreas Schwab <schwab@linux-m68k.org>
44802
44803 * sysdeps/posix/spawni.c: Include <signal.h>.
44804 * sysdeps/pthread/aio_cancel.c: Include <fcntl.h>.
44805 * sysdeps/pthread/aio_fsync.c: Likewise.
44806
448072012-02-26 Ulrich Drepper <drepper@gmail.com>
44808
44809 * conform/Makefile (tests): Run only when not cross-compiling and
44810 when fast-check is not defined.
44811
44812 * conform/conformtest.pl: XPG7 and POSIX2008 require C99.
44813 * conform/data/limits.h-data: Fixes for POSIX2008.
44814 * conform/run-conformtest.sh: Run all tests.
44815 * include/arpa/inet.h: Changes to allow conformtest.pl to use the
44816 headers.
44817 * include/bits/dlfcn.h: Likewise.
44818 * include/langinfo.h: Likewise.
44819 * include/monetary.h: Likewise.
44820 * include/sys/poll.h: Likewise.
44821
44822 * io/fcntl.h: Define AT_NO_AUTOMOUNT and AT_EMPTY_PATH only
44823 for __USE_GNU.
44824 * posix/spawn.h: Define __need_sigset_t.
44825 * posix/sys/wait.h: Don't include <sys/resource.h>, define id_t here.
44826 * posix/unistd.h: Declare ctermid only for XPG before XPG6.
44827 * rt/aio.h: Don't include fcntl.h and signal.h. Use bits/siginfo.h
44828 to get sigevent_t only.
44829 * sysdeps/unix/sysv/linux/bits/socket.h: Declare sendmmsg and recvmmsg
44830 only for __USE_GNU.
44831 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
44832 * sysdeps/unix/sysv/linux/bits/uio.h: Declare process_vm_readv and
44833 process_vm_writev only for __USE_GNU.
44834 * termios/termios.h: Declare tcgetsid also for POSIX2008.
44835
44836 * conform/Makefile: For now ignore errors from run-conformtest.
44837 * conform/conformtest.pl: Simplify code. Add -ansi to CFLAGS for
44838 POSIX to avoid namespace pollution. Don't prepend headers.
44839 * conform/data/aio.h-data: Fixes for POSIX testing.
44840 * conform/data/fcntl.h-data: Likewise.
44841 * conform/data/glob.h-data: Likewise.
44842 * conform/data/grp.h-data: Likewise.
44843 * conform/data/pthread.h-data: Likewise.
44844 * conform/data/pwd.h-data: Likewise.
44845 * conform/data/signal.h-data: Likewise.
44846 * conform/data/spawn.h-data: Likewise.
44847 * conform/data/stdio.h-data: Likewise.
44848 * conform/data/stdlib.h-data: Likewise.
44849 * conform/data/stropts.h-data: Likewise.
44850 * conform/data/sys/mman.h-data: Likewise.
44851 * conform/data/sys/stat.h-data: Likewise.
44852 * conform/data/sys/types.h-data: Likewise.
44853 * conform/data/sys/wait.h-data: Likewise.
44854 * conform/data/time.h-data: Likewise.
44855 * conform/data/unistd.h-data: Likewise.
44856 * conform/data/utime.h-data: Likewise.
44857
44858 * io/sys/stat.h: fchmod was always in POSIX.
44859 * posix/sys/wait.h: Include <sys/resource.h> only for waitid.
44860 * posix/unistd.h: fsync and ftruncate were in early POSIX as well.
44861 * rt/aio.h: Define __need_timespec before including <time.h>.
44862 * sysdeps/unix/sysv/linux/bits/siginfo.h: Don't name siginfo_t
44863 struct. Add forward declaration of pthread_attr_t and use it in
44864 sigevent.
44865 * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Likewise.
44866 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
44867 * sysdeps/unix/sysv/linux/bits/time.h: Don't let __STRICT_ANSI__
44868 always remove CLK_TCK definition.
44869
448702012-02-26 Andreas Schwab <schwab@linux-m68k.org>
44871
44872 * sysdeps/ieee754/dbl-64/k_tan.c: Replace with empty file.
44873
448742012-02-25 Ulrich Drepper <drepper@gmail.com>
44875
44876 * conform/run-conformtest.sh: New file.
44877 * conform/Makefile: Run run-conformtest for tests.
44878 * conform/conformtest.pl: Many bug fixes. Add ISO C99, ISO C11
44879 support.
44880
44881 * conform/data/uchar.h-data: New file.
44882 * conform/data/aio.h-data: Fixes for ISO C and POSIX 1995 testing.
44883 * conform/data/arpa/inet.h-data: Likewise.
44884 * conform/data/assert.h-data: Likewise.
44885 * conform/data/complex.h-data: Likewise.
44886 * conform/data/cpio.h-data: Likewise.
44887 * conform/data/ctype.h-data: Likewise.
44888 * conform/data/dirent.h-data: Likewise.
44889 * conform/data/dlfcn.h-data: Likewise.
44890 * conform/data/errno.h-data: Likewise.
44891 * conform/data/fcntl.h-data: Likewise.
44892 * conform/data/float.h-data: Likewise.
44893 * conform/data/fmtmsg.h-data: Likewise.
44894 * conform/data/fnmatch.h-data: Likewise.
44895 * conform/data/ftw.h-data: Likewise.
44896 * conform/data/glob.h-data: Likewise.
44897 * conform/data/grp.h-data: Likewise.
44898 * conform/data/iconv.h-data: Likewise.
44899 * conform/data/inttypes.h-data: Likewise.
44900 * conform/data/langinfo.h-data: Likewise.
44901 * conform/data/libgen.h-data: Likewise.
44902 * conform/data/limits.h-data: Likewise.
44903 * conform/data/locale.h-data: Likewise.
44904 * conform/data/math.h-data: Likewise.
44905 * conform/data/monetary.h-data: Likewise.
44906 * conform/data/mqueue.h-data: Likewise.
44907 * conform/data/ndbm.h-data: Likewise.
44908 * conform/data/net/if.h-data: Likewise.
44909 * conform/data/netdb.h-data: Likewise.
44910 * conform/data/netinet/in.h-data: Likewise.
44911 * conform/data/nl_types.h-data: Likewise.
44912 * conform/data/poll.h-data: Likewise.
44913 * conform/data/pthread.h-data: Likewise.
44914 * conform/data/pwd.h-data: Likewise.
44915 * conform/data/regex.h-data: Likewise.
44916 * conform/data/sched.h-data: Likewise.
44917 * conform/data/search.h-data: Likewise.
44918 * conform/data/semaphore.h-data: Likewise.
44919 * conform/data/setjmp.h-data: Likewise.
44920 * conform/data/signal.h-data: Likewise.
44921 * conform/data/spawn.h-data: Likewise.
44922 * conform/data/stdarg.h-data: Likewise.
44923 * conform/data/stdio.h-data: Likewise.
44924 * conform/data/stdlib.h-data: Likewise.
44925 * conform/data/string.h-data: Likewise.
44926 * conform/data/strings.h-data: Likewise.
44927 * conform/data/stropts.h-data: Likewise.
44928 * conform/data/sys/ipc.h-data: Likewise.
44929 * conform/data/sys/mman.h-data: Likewise.
44930 * conform/data/sys/msg.h-data: Likewise.
44931 * conform/data/sys/resource.h-data: Likewise.
44932 * conform/data/sys/select.h-data: Likewise.
44933 * conform/data/sys/sem.h-data: Likewise.
44934 * conform/data/sys/shm.h-data: Likewise.
44935 * conform/data/sys/socket.h-data: Likewise.
44936 * conform/data/sys/stat.h-data: Likewise.
44937 * conform/data/sys/statvfs.h-data: Likewise.
44938 * conform/data/sys/time.h-data: Likewise.
44939 * conform/data/sys/timeb.h-data: Likewise.
44940 * conform/data/sys/times.h-data: Likewise.
44941 * conform/data/sys/types.h-data: Likewise.
44942 * conform/data/sys/uio.h-data: Likewise.
44943 * conform/data/sys/un.h-data: Likewise.
44944 * conform/data/sys/utsname.h-data: Likewise.
44945 * conform/data/sys/wait.h-data: Likewise.
44946 * conform/data/syslog.h-data: Likewise.
44947 * conform/data/tar.h-data: Likewise.
44948 * conform/data/termios.h-data: Likewise.
44949 * conform/data/utime.h-data: Likewise.
44950 * conform/data/utmpx.h-data: Likewise.
44951 * conform/data/varargs.h-data: Likewise.
44952 * conform/data/wchar.h-data: Likewise.
44953 * conform/data/wctype.h-data: Likewise.
44954 * conform/data/wordexp.h-data: Likewise.
44955
44956 * include/stropts.h: New file.
44957 * include/uchar.h: New file.
44958 * include/aio.h: Changes to allow conformtest.pl to use the headers.
44959 * include/assert.h: Likewise.
44960 * include/ctype.h: Likewise.
44961 * include/dirent.h: Likewise.
44962 * include/dlfcn.h: Likewise.
44963 * include/fcntl.h: Likewise.
44964 * include/fnmatch.h: Likewise.
44965 * include/glob.h: Likewise.
44966 * include/grp.h: Likewise.
44967 * include/libio.h: Likewise.
44968 * include/locale.h: Likewise.
44969 * include/math.h: Likewise.
44970 * include/net/if.h: Likewise.
44971 * include/netdb.h: Likewise.
44972 * include/netinet/in.h: Likewise.
44973 * include/pthread.h: Likewise.
44974 * include/pwd.h: Likewise.
44975 * include/regex.h: Likewise.
44976 * include/sched.h: Likewise.
44977 * include/search.h: Likewise.
44978 * include/setjmp.h: Likewise.
44979 * include/signal.h: Likewise.
44980 * include/stdio.h: Likewise.
44981 * include/stdlib.h: Likewise.
44982 * include/string.h: Likewise.
44983 * include/sys/cdefs.h: Likewise.
44984 * include/sys/mman.h: Likewise.
44985 * include/sys/msg.h: Likewise.
44986 * include/sys/resource.h: Likewise.
44987 * include/sys/select.h: Likewise.
44988 * include/sys/socket.h: Likewise.
44989 * include/sys/stat.h: Likewise.
44990 * include/sys/statvfs.h: Likewise.
44991 * include/sys/time.h: Likewise.
44992 * include/sys/times.h: Likewise.
44993 * include/sys/uio.h: Likewise.
44994 * include/sys/utsname.h: Likewise.
44995 * include/sys/wait.h: Likewise.
44996 * include/termios.h: Likewise.
44997 * include/time.h: Likewise.
44998 * include/ulimit.h: Likewise.
44999 * include/unistd.h: Likewise.
45000 * include/utime.h: Likewise.
45001 * include/wchar.h: Likewise.
45002 * include/wctype.h: Likewise.
45003 * include/wordexp.h: Likewise.
45004
45005 * posix/tar.h (TSVTX): Should not be visible for POSIX before 2008.
45006
45007 * time/time.h: TIME_UTC must be a macro.
45008 Make timespec_get available for ISO C11 only as well.
45009
450102012-02-24 Ulrich Drepper <drepper@gmail.com>
45011
45012 * stdlib/fmtmsg.c (fmtmsg): Lock around use of severity list.
45013 Reported by Peng Haitao <penght@cn.fujitsu.com>.
45014
450152012-02-24 Joseph Myers <joseph@codesourcery.com>
45016
45017 * configure.in: Use -o not -a in test for unsupported multi-arch.
45018
450192012-02-24 Joseph Myers <joseph@codesourcery.com>
45020
45021 * manual/texinfo.tex: Update to version 2012-01-19.16.
45022
450232012-02-24 Joseph Myers <joseph@codesourcery.com>
45024
45025 * manual/Makefile (licenses): Change fdl-1.1.texi to fdl-1.3.texi.
45026
450272012-02-24 Roland McGrath <roland@hack.frob.com>
45028
45029 [BZ #13738]
45030 * manual/libc.texinfo (FDL_VERSION): Set to 1.3.
45031 * manual/fdl-1.3.texi: New file.
45032 * manual/fdl-1.1.texi: File removed.
45033
45034 [BZ #13738]
45035 * manual/libc.texinfo (FDL_VERSION): New @set.
45036 Use it for mention of FDL in cover text.
45037 (Documentation License): Use it in @include file name.
45038
450392012-02-22 Joseph Myers <joseph@codesourcery.com>
45040 Roland McGrath <roland@hack.frob.com>
45041
45042 [BZ #5461]
45043 * manual/arith.texi (strtoll): Refer to LLONG_MAX and LLONG_MIN)
45044 (not LONG_LONG_MAX and LONG_LONG_MIN.
45045 * manual/lang.texi (LONG_LONG_MIN): Document first as ISO
45046 LLONG_MIN. Refer to LONG_LONG_MIN only as older GCC-specific
45047 name.
45048 (LONG_LONG_MAX, LLONG_MAX, ULONG_LONG_MAX, ULLONG_MAX): Likewise.
45049
450502012-02-22 Joseph Myers <joseph@codesourcery.com>
45051
45052 [BZ #2547]
45053 [BZ #11365]
45054 * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Do not
45055 manipulate bits before adding and subtracting TWO23[sx].
45056 * math/libm-test.inc (nearbyint_test): Add more tests.
45057
450582012-02-22 Joseph Myers <joseph@codesourcery.com>
45059
45060 [BZ #2548]
45061 * sysdeps/ieee754/flt-32/s_rintf.c (__rintf): Do not manipulate
45062 bits before adding and subtracting TWO23[sx].
45063 * math/libm-test.inc (rint_test): Add more tests.
45064 (rint_test_tonearest): Likewise.
45065 (rint_test_towardzero): Likewise.
45066 (rint_test_downward): Likewise.
45067 (rint_test_upward: Likewise.
45068
450692012-02-22 Joseph Myers <joseph@codesourcery.com>
45070
45071 [BZ #10110]
45072 * include/stdc-predef.h: New file. Extracted from features.h.
45073 * include/features.h: Include stdc-predef.h.
45074 * Makefile (headers): Add stdc-predef.h.
45075 * CONFORMANCE (Compiler limitations): Update.
45076
450772012-02-22 Joseph Myers <joseph@codesourcery.com>
45078
45079 * manual/libc.texinfo (VERSION, UPDATED): Revert.
45080
450812012-02-21 David S. Miller <davem@davemloft.net>
45082
45083 * sysdeps/sparc/sparc32/fpu/libm-test-ulps: More jn test ULP updates.
45084 * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
45085
450862012-02-20 David S. Miller <davem@davemloft.net>
45087
45088 * sysdeps/sparc/sparc32/__longjmp.S: Unwind in the 'thread' path
45089 using a normal save/restore sequence, rather than allocating a
45090 dummy stack frame just to store a frame pointer and restore.
45091 * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
45092
450932012-02-21 Joseph Myers <joseph@codesourcery.com>
45094
45095 * manual/install.texi: Fix stray word in line-wrapped comment.
45096
450972012-02-20 David S. Miller <davem@davemloft.net>
45098
45099 * sysdeps/sparc/elf/configure.in (PI_STATIC_AND_HIDDEN): Define if
45100 both binutils and gcc support GOTDATA.
45101
45102 * sysdeps/unix/sparc/sysdep.h: Document why we don't use
45103 "rd %pc" in the PIC register setup sequences.
45104
45105 * sysdeps/sparc/crti.S: Try to use GOTDATA relocs.
45106 * sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Likewise.
45107 * sysdeps/sparc/sparc32/elf/start.S: Likewise.
45108 * sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise.
45109 * sysdeps/sparc/sparc64/elf/start.S: Likewise.
45110 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
45111 * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
45112 * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
45113 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
45114 (SYSCALL_ERROR_HANDLER): Likewise.
45115 * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Likewise.
45116 * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
45117 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
45118 (SYSCALL_ERROR_HANDLER): Likewise.
45119
45120 * config.h.in (HAVE_BINUTILS_GOTDATA): New.
45121 (HAVE_GCC_GOTDATA): New.
45122 * sysdeps/sparc/elf/configure.in: Test for GOTDATA
45123 relocation support in both binutils and gcc.
45124 * sysdeps/sparc/elf/configure: Regenerate.
45125
45126 * sysdeps/sparc/sparc32/elf/configure.in: Delete.
45127 * sysdeps/sparc/sparc32/elf/configure: Delete.
45128 * sysdeps/sparc/sparc64/elf/configure.in: Delete.
45129 * sysdeps/sparc/sparc64/elf/configure: Delete.
45130 * sysdeps/sparc/elf/configure.in: New file.
45131 * sysdeps/sparc/elf/configure: Generate.
45132
45133 * sysdeps/sparc/sparc32/elf/configure.in: Delete WDISP22 check.
45134 * sysdeps/sparc/sparc32/elf/configure: Regenerate.
45135 * sysdeps/sparc/sparc64/elf/configure.in: Likewise.
45136 * sysdeps/sparc/sparc64/elf/configure: Regenerate.
45137 * config.h.in (BROKEN_SPARC_WDISP22): Remove.
45138
451392012-02-21 Joseph Myers <joseph@codesourcery.com>
45140
45141 * manual/install.texi: Do not mention specific glibc version
45142 numbers.
45143 * manual/libc.texinfo (VERSION, UPDATED): Update.
45144 (@copying): Use @copyright{} and range of years.
45145
451462012-02-21 Joseph Myers <joseph@codesourcery.com>
45147
45148 [BZ #13695]
45149 * csu/Makefile (distribute): Remove initfini.c and defs.awk.
45150 [crti.S not in sysdirs] (generated): Do not append.
45151 [crti.S not in sysdirs] (omit-deps): Likewise.
45152 [crti.S not in sysdirs] ($(crtstuff:%=$(objpfx)%.o)): Remove rule.
45153 [crti.S not in sysdirs] ($(objpfx)initfini.s): Likewise.
45154 [crti.S not in sysdirs] ($(objpfx)crti.S): Likewise.
45155 [crti.S not in sysdirs] ($(objpfx)crtn.S): Likewise.
45156 [crti.S not in sysdirs] ($(patsubst %,$(objpfx)crt%.o,i n)):
45157 Likewise.
45158 [crti.S not in sysdirs] ($(objpfx)defs.h): Likewise.
45159 [crti.S not in sysdirs] (CFLAGS-initfini.s): Remove variable.
45160 [crti.S not in sysdirs] (initfini.c): Remove vpath directive.
45161 * csu/defs.awk: Remove file.
45162 * sysdeps/generic/initfini.c: Likewise.
45163 * sysdeps/powerpc/powerpc32/Makefile (CFLAGS-initfini.s): Remove
45164 variable.
45165 * sysdeps/powerpc/powerpc64/Makefile (CFLAGS-initfini.s):
45166 Likewise.
45167
451682012-02-20 Joseph Myers <joseph@codesourcery.com>
45169
45170 * sysdeps/unix/sysv/linux/bits/epoll.h: New file.
45171 * sysdeps/unix/sysv/linux/sparc/bits/epoll.h: Likewise.
45172 * sysdeps/unix/sysv/linux/x86_64/bits/epoll.h: Likewise.
45173 * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Remove
45174 * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
45175 * sysdeps/unix/sysv/linux/sys/epoll.h: Get flags from
45176 <bits/epoll.h>.
45177 (EPOLL_CLOEXEC, EPOLL_NONBLOCK): Don't define here.
45178 (__EPOLL_PACKED): Define to empty if not defined by
45179 <bits/epoll.h>.
45180 (struct epoll_event): Use __EPOLL_PACKED to make possibly packed.
45181 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
45182 bits/epoll.h.
45183
451842012-02-20 Joseph Myers <joseph@codesourcery.com>
45185
45186 * sysdeps/unix/sysv/linux/bits/timerfd.h: New file.
45187 * sysdeps/unix/sysv/linux/sparc/bits/timerfd.h: Likewise.
45188 * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: Remove.
45189 * sysdeps/unix/sysv/linux/sys/timerfd.h: Get flags from
45190 <bits/timerfd.h>.
45191 (TFD_CLOEXEC, TFD_NONBLOCK): Don't define here.
45192 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
45193 bits/timerfd.h.
45194
451952012-02-20 Joseph Myers <joseph@codesourcery.com>
45196
45197 * sysdeps/i386/fpu/libm-test-ulps: Resort with gen-libm-test.pl -n
45198 in C locale.
45199 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
45200 * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
45201 * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Likewise.
45202 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45203
452042012-02-20 Aurelien Jarno <aurelien@aurel32.net>
45205
45206 * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Adjust ULPs for jn tests.
45207 * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
45208
452092012-02-19 Andreas Schwab <schwab@linux-m68k.org>
45210
45211 * manual/errno.texi (Error Codes): Add EHWPOISON entry.
45212 * sysdeps/unix/sysv/linux/bits/errno.h (EHWPOISON): Define if not
45213 defined.
45214 * sysdeps/unix/sysv/linux/sparc/bits/errno.h (EHWPOISON):
45215 Likewise.
45216 * sysdeps/unix/sysv/linux/sparc/Versions: Add new errlist compat
45217 entry for 2.16.
45218
452192012-02-19 Aurelien Jarno <aurelien@aurel32.net>
45220
45221 * math/w_acos.c: Use non-signaling floating-point comparisons.
45222 * math/w_acosf.c: Likewise.
45223 * math/w_acosh.c: Likewise.
45224 * math/w_acoshf.c: Likewise.
45225 * math/w_acoshl.c: Likewise.
45226 * math/w_acosl.c: Likewise.
45227 * math/w_asin.c: Likewise.
45228 * math/w_asinf.c: Likewise.
45229 * math/w_asinl.c: Likewise.
45230 * math/w_atanh.c: Likewise.
45231 * math/w_atanhf.c: Likewise.
45232 * math/w_atanhl.c: Likewise.
45233 * math/w_exp2.c: Likewise.
45234 * math/w_exp2f.c: Likewise.
45235 * math/w_exp2l.c: Likewise.
45236 * math/w_j0.c: Likewise.
45237 * math/w_j0f.c: Likewise.
45238 * math/w_j0l.c: Likewise.
45239 * math/w_j1.c: Likewise.
45240 * math/w_j1f.c: Likewise.
45241 * math/w_j1l.c: Likewise.
45242 * math/w_jn.c: Likewise.
45243 * math/w_jnf.c: Likewise.
45244 * math/w_log.c: Likewise.
45245 * math/w_log10.c: Likewise.
45246 * math/w_log10f.c: Likewise.
45247 * math/w_log10l.c: Likewise.
45248 * math/w_log2.c: Likewise.
45249 * math/w_log2f.c: Likewise.
45250 * math/w_log2l.c: Likewise.
45251 * math/w_logf.c: Likewise.
45252 * math/w_logl.c: Likewise.
45253 * math/w_sqrt.c: Likewise.
45254 * math/w_sqrtf.c: Likewise.
45255 * math/w_sqrtl.c: Likewise.
45256 * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
45257 * sysdeps/ieee754/dbl-64/w_exp.c: Likewise.
45258 * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
45259 * sysdeps/ieee754/flt-32/w_expf.c: Likewise.
45260 * sysdeps/ieee754/ldbl-96/w_expl.c: Likewise.
45261
452622012-02-19 Joseph Myers <joseph@codesourcery.com>
45263
45264 [BZ #9739]
45265 * manual/string.texi (strnlen): Use correct parameter name in
45266 equivalent expression.
45267
452682012-02-19 Joseph Myers <joseph@codesourcery.com>
45269
45270 [BZ #11174]
45271 * manual/users.texi (seteuid): Consistently use neweuid for
45272 argument name.
45273
452742012-02-19 Joseph Myers <joseph@codesourcery.com>
45275
45276 [BZ #13704]
45277 * manual/nss.texi (Services in the NSS configuration): Correct
45278 list of services in example configuration file.
45279
452802012-02-19 Nick Bowler <nbowler@draconx.ca>
45281
45282 [BZ #11322]
45283 * manual/arith.texi: Remove statements about negative zero
45284 behaving identically to zero.
45285
452862012-02-18 Joseph Myers <joseph@codesourcery.com>
45287
45288 [BZ #5993]
45289 * manual/install.texi: Do not document upgrading from libc5.
45290
452912012-02-18 Joseph Myers <joseph@codesourcery.com>
45292
45293 [BZ #4596]
45294 * manual/conf.texi (_POSIX_VERSION): Do not mention __POSIX__.
45295
452962012-02-18 David S. Miller <davem@davemloft.net>
45297
45298 * sysdeps/unix/sparc/sysdep.h (SPARC_PIC_THUNK): New macro.
45299 (SETUP_PIC_REG): Use SPARC_PIC_THUNK and don't save and restore
45300 %o7 across the call.
45301 (SETUP_PIC_REG_LEAF): Do %o7 save/restore in this new macro
45302 instead.
45303 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Use
45304 SETUP_PIC_REG_LEAF.
45305 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
45306 * sysdeps/sparc/crti.S: Use SETUP_PIC_REG.
45307 * sysdeps/sparc/crtn.S: Likewise.
45308
453092012-02-17 Ulrich Drepper <drepper@gmail.com>
45310
45311 * aout/Makefile: Remove.
45312
453132012-02-18 Rafe Kettler <rafe.kettler@gmail.com>
45314
45315 [BZ #13058]
45316 * manual/examples/argp-ex1.c (main): Format definition in GNU
45317 style.
45318 * manual/examples/argp-ex2.c (main): Likewise.
45319 * manual/examples/argp-ex3.c (main): Likewise.
45320 * manual/examples/argp-ex4.c (main): Likewise.
45321 * manual/examples/longopt.c (main): Use new-style prototype
45322 definition.
45323 * manual/examples/strncat.c (main): Specify return type and use
45324 (void) for arguments.
45325 * manual/examples/subopt.c (main): Use char **argv argument.
45326
453272012-02-17 Joseph Myers <joseph@codesourcery.com>
45328
45329 [BZ #5077]
45330 * manual/lang.texi (FLT_EPSILON): Avoid description depending on
45331 rounding modes.
45332
453332012-02-17 Fabrice Bauzac <fabrice.bauzac@wanadoo.fr>
45334
45335 [BZ #6907]
45336 * manual/string.texi (strchr): Change when strchrnul is
45337 recommended.
45338
453392012-02-17 Dwayne Grant McConnell <decimal@us.ibm.com>
45340
45341 [BZ #174]
45342 * manual/locale.texi (setlocale): Document LOCPATH.
45343
453442012-02-17 Joseph Myers <joseph@codesourcery.com>
45345
45346 [BZ #10210]
45347 * manual/process.texi (execle): Move @dots{} before last argument.
45348
453492012-02-17 Paul Bolle <pebolle@tiscali.nl>
45350
45351 [BZ #12047]
45352 * manual/charset.texi (Generic Charset Conversion): Fix typo
45353 (LC_TYPE -> LC_CTYPE).
45354
453552012-02-17 Nicolas Boulenguez <nicolas.boulenguez@free.fr>
45356
45357 [BZ #5805]
45358 * manual/arith.texi (scalbn): Use @var{} on parameter names.
45359 (scalbnf): Likewise.
45360 (scalbnl): Likewise.
45361 (scalbln): Likewise.
45362 (scalblnf): Likewise.
45363 (scalblnl): Likewise.
45364 * manual/errno.texi (vwarn): Name last parameter as @var{ap}.
45365 (vwarnx): Likewise.
45366 (verr): Likewise.
45367 (verrx): Likewise.
45368 * manual/filesys.texi (telldir): Use braces around return type.
45369 * manual/llio.texi (mmap): Add space after comma.
45370 (mmap64): Likewise.
45371 * manual/math.texi (jn): Use @var{} on parameter names.
45372 (jnf): Likewise.
45373 (jnl): Likewise.
45374 (yn): Likewise.
45375 (ynf): Likewise.
45376 (ynl): Likewise.
45377 * manual/memory.texi (alloca): Remove semicolon on @deftypefun
45378 line.
45379 * manual/resource.texi (ulimit): Use @dots{} instead of literal
45380 "...".
45381 (sched_get_priority_min): Remove semicolon on @deftypefun line.
45382 (sched_get_priority_max): Likewise.
45383 * manual/signal.texi (sigvec): Add space after comma.
45384 * manual/socket.texi (if_nametoindex): Use @var{} on parameter
45385 names.
45386 (if_indextoname): Likewise.
45387 (if_freenameindex): Likewise.
45388 (sendto): Use ',' instead of '.' in prototype.
45389 * manual/startup.texi (syscall): Use @dots{} instead of literal
45390 "...".
45391 * manual/stdio.texi (__fpending): Separate initial words of
45392 paragraph from @deftypefun line.
45393 * manual/syslog.texi (syslog): Use @dots{} instead of literal
45394 "...".
45395 (vsyslog): Use @var{} on parameter names.
45396 * manual/terminal.texi (stty): Use @var{} on parameter names.
45397 * manual/users.texi (getutmp): Use @var{} on parameter names.
45398 (getutmpx): Likewise.
45399
454002012-02-17 Joseph Myers <joseph@codesourcery.com>
45401
45402 [BZ #6884]
45403 * manual/stdio.texi (fopen): Fix typos in description of
45404 ",ccs=STRING".
45405
454062012-02-17 Aurelien Jarno <aurelien@aurel32.net>
45407
45408 [BZ #4026]
45409 * sysdeps/unix/sysv/linux/clock_settime.c: include <time.h> to
45410 get clock_id definition.
45411
454122012-02-17 Thomas Schwinge <thomas@schwinge.name>
45413
45414 [BZ #4822]
45415 * sysdeps/mach/hurd/malloc-machine.h: #include <sys/mman.h>.
45416 (madvise): Cast every argument to void on its own.
45417
454182012-02-17 Joseph Myers <joseph@codesourcery.com>
45419
45420 [BZ #9902]
45421 * manual/startup.texi (Exit Status): Fix typo.
45422
454232012-02-17 Joseph Myers <joseph@codesourcery.com>
45424
45425 [BZ #10140]
45426 * manual/examples/argp-ex1.c: Include <stdlib.h>.
45427 * manual/examples/argp-ex2.c: Likewise.
45428 * manual/examples/argp-ex3.c: Likewise.
45429
454302012-02-16 Richard Henderson <rth@redhat.com>
45431
45432 * sysdeps/s390/s390-32/crti.S, sysdeps/s390/s390-32/crtn.S: New files.
45433 * sysdeps/s390/s390-32/initfini.c: Remove.
45434 * sysdeps/s390/s390-64/crti.S, sysdeps/s390/s390-64/crtn.S:
45435 * sysdeps/s390/s390-64/initfini.c: Remove.
45436
454372012-02-15 Kaz Kojima <kkojima@rr.iij4u.or.jp>
45438
45439 * sysdeps/sh/crti.S, sysdeps/sh/crtn.S: New files, based on
45440 compiler output for sysdeps/generic/initfini.c.
45441 * sysdeps/sh/elf/initfini.c: Remove file.
45442
454432012-02-16 David S. Miller <davem@davemloft.net>
45444
45445 [BZ #11494]
45446 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_FSYNC): Define.
45447
45448 * sysdeps/sparc/Makefile: Add -fPIC when building crt{i,n}.S
45449 * sysdeps/sparc/crti.S: New file.
45450 * sysdeps/sparc/crtn.S: New file.
45451 * sysdeps/sparc/sparc32/Makefile: Remove initfini handling.
45452 * sysdeps/sparc/sparc64/Makefile: Likewise.
45453
454542012-02-15 Mike Frysinger <vapier@gentoo.org>
45455
45456 [BZ #3335]
45457 * sysdeps/unix/sysv/linux/getcwd.c: Include sys/param.h.
45458
454592012-02-15 Roland McGrath <roland@hack.frob.com>
45460
45461 [BZ #4822]
45462 * sysdeps/mach/hurd/malloc-machine.h (madvise): New macro.
45463
45464 * mach/devstream.c (cookie_io_functions_t): Macro removed.
45465 (write, read, close): Likewise.
45466 Patch by Aurelien Jarno <aurelien@aurel32.net>.
45467
454682012-02-15 Joseph Myers <joseph@codesourcery.com>
45469
45470 * sysdeps/unix/sysv/linux/bits/signalfd.h: New file.
45471 * sysdeps/unix/sysv/linux/sparc/bits/signalfd.h: Likewise.
45472 * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h: Remove.
45473 * sysdeps/unix/sysv/linux/sys/signalfd.h: Get flags from
45474 <bits/signalfd.h>.
45475 (SFD_CLOEXEC, SFD_NONBLOCK): Don't define here.
45476 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
45477 bits/signalfd.h.
45478
454792012-02-14 Marek Polacek <polacek@redhat.com>
45480
45481 * sysdeps/x86_64/crti.S: New file.
45482 * sysdeps/x86_64/crtn.S: New file.
45483 * sysdeps/x86_64/elf/initfini.c: Remove file.
45484
454852012-02-13 Joseph Myers <joseph@codesourcery.com>
45486
45487 * sysdeps/unix/sysv/linux/bits/inotify.h: New file.
45488 * sysdeps/unix/sysv/linux/sparc/bits/inotify.h: Likewise.
45489 * sysdeps/unix/sysv/linux/sparc/sys/inotify.h: Remove.
45490 * sysdeps/unix/sysv/linux/sys/inotify.h: Get flags from
45491 <bits/inotify.h>.
45492 (IN_CLOEXEC, IN_NONBLOCK): Don't define here.
45493 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
45494 bits/inotify.h.
45495
454962012-02-13 Joseph Myers <joseph@codesourcery.com>
45497
45498 * sysdeps/unix/sysv/linux/bits/eventfd.h: New file.
45499 * sysdeps/unix/sysv/linux/sparc/bits/eventfd.h: Likewise.
45500 * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: Remove.
45501 * sysdeps/unix/sysv/linux/sys/eventfd.h: Get flags from
45502 <bits/eventfd.h>.
45503 (EFD_SEMAPHORE, EFD_CLOEXEC, EFD_NONBLOCK): Don't define here.
45504 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
45505 bits/eventfd.h.
45506
455072012-02-10 Thomas Schwinge <thomas@codesourcery.com>
45508
45509 * sysdeps/i386/fpu/feupdateenv.c (__feupdateenv): Invoke
45510 __feraiseexcept instead of feraiseexcept.
45511
45512 * rt/tst-cpuclock1.c: Add a few comments, and error checking for
45513 nanosleep invocations.
45514 * rt/tst-cpuclock2.c: Print some values as intended, fix explanatory
45515 strings, and add error checking for a nanosleep invocations.
45516
455172012-02-09 Paul Eggert <eggert@cs.ucla.edu>
45518
45519 Replace FSF snail mail address with URLs, as per GNU coding standards.
45520 Most of the snail mail addresses were wrong anyway, and omitting
45521 them makes the source code easier to maintain. Almost all of the
45522 changes are to license notices and to locale LC_IDENTIFICATION
45523 addresses, except for this one:
45524 * manual/libc.texinfo: In "Published by", give the FSF's URL,
45525 not its snail mail address.
45526
455272012-02-09 Richard Henderson <rth@twiddle.net>
45528
45529 * sysdeps/unix/sysv/linux/internal_statvfs.c: Use <> for include
45530 of kernel-features.h.
45531
45532 * elf/dl-tls.c (update_get_addr): Avoid pointer type mismatch warning.
45533
455342012-02-08 Marek Polacek <polacek@redhat.com>
45535
45536 * libio/libio.h: Remove _G_HAVE_SYS_CDEFS conditional.
45537 * sysdeps/mach/hurd/_G_config.h: Remove _G_HAVE_SYS_CDEFS macro.
45538 * sysdeps/gnu/_G_config.h: Likewise.
45539 * sysdeps/generic/_G_config.h: Likewise.
45540
455412012-02-08 Andreas Schwab <schwab@linux-m68k.org>
45542
45543 * sysdeps/i386/fpu/libm-test-ulps: Reduce ldouble ULPs for jn
45544 tests.
45545 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45546
45547 * sysdeps/powerpc/powerpc32/crti.S: New file.
45548 * sysdeps/powerpc/powerpc32/crtn.S: New file.
45549 * sysdeps/powerpc/powerpc64/crti.S: New file.
45550 * sysdeps/powerpc/powerpc64/crtn.S: New file.
45551
45552 * Makeconfig (have-initfini): Don't set.
45553 * config.make.in (have-initfini, need-nopic-initfini): Don't set.
45554 * configure.in (nopic_initfini): Don't substitute.
45555 * config.h.in (HAVE_INITFINI): Don't #undef.
45556 * csu/Makefile (CPPFLAGS): Don't add -DHAVE_INITFINI.
45557 * csu/gmon-start.c: Assume HAVE_INITFINI is defined.
45558
455592012-02-08 Joseph Myers <joseph@codesourcery.com>
45560
45561 Support crti.S and crtn.S provided directly by architectures.
45562 * csu/Makefile [crti.S in sysdirs] (generated): Do not append.
45563 [crti.S in sysdirs] (omit-deps): Likewise.
45564 [crti.S in sysdirs] (CFLAGS-initfini.s): Do not define variable.
45565 [crti.S in sysdirs] ($(crtstuff:%=$(objpfx)%.o)): Disable rule.
45566 [crti.S in sysdirs] ($(objpfx)initfini.s): Likewise.
45567 [crti.S in sysdirs] ($(objpfx)crti.S): Likewise.
45568 [crti.S in sysdirs] ($(objpfx)crtn.S): Likewise.
45569 [crti.S in sysdirs] ($(patsubst %,$(objpfx)crt%.o,i n)): Likewise.
45570 [crti.S in sysdirs] ($(objpfx)defs.h): Likewise.
45571 [crti.S in sysdirs] (initfini.c): Remove vpath directive.
45572 * sysdeps/i386/crti.S, sysdeps/i386/crtn.S: New files, based on
45573 compiler output for sysdeps/generic/initfini.c.
45574 * sysdeps/i386/elf/Makefile: Remove file.
45575 * sysdeps/i386/Makefile (CFLAGS-initfini.s): Remove variable.
45576
455772012-02-07 Marek Polacek <polacek@redhat.com>
45578
45579 * sysdeps/generic/_G_config.h: Remove _G_ARGS macro.
45580 * sysdeps/gnu/_G_config.h: Likewise.
45581 * sysdeps/mach/hurd/_G_config.h: Likewise.
45582
455832012-02-07 Marek Polacek <polacek@redhat.com>
45584
45585 * math/Makefile (tests): Add tst-CMPLX2.
45586 * math/tst-CMPLX2.c: New file.
45587
455882012-02-07 Andreas Schwab <schwab@linux-m68k.org>
45589
45590 * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ULPs for jn tests.
45591
45592 * math/libm-test.inc (jn_test): Add missing L suffix.
45593
455942012-02-06 Marek Polacek <polacek@redhat.com>
45595
45596 * sysdeps/s390/asm-syntax.h: Remove __ELF__ conditionals.
45597 * sysdeps/i386/fpu/e_powf.S: Likewise.
45598 * sysdeps/i386/fpu/e_atanhf.S: Likewise.
45599 * sysdeps/i386/fpu/s_cexpl.S: Likewise.
45600 * sysdeps/i386/fpu/e_acosh.S: Likewise.
45601 * sysdeps/i386/fpu/e_pow.S: Likewise.
45602 * sysdeps/i386/fpu/s_asinhl.S: Likewise.
45603 * sysdeps/i386/fpu/e_acoshl.S: Likewise.
45604 * sysdeps/i386/fpu/s_expm1.S: Likewise.
45605 * sysdeps/i386/fpu/s_frexpf.S: Likewise.
45606 * sysdeps/i386/fpu/e_log2.S: Likewise.
45607 * sysdeps/i386/fpu/e_log2l.S: Likewise.
45608 * sysdeps/i386/fpu/e_scalb.S: Likewise.
45609 * sysdeps/i386/fpu/e_powl.S: Likewise.
45610 * sysdeps/i386/fpu/s_log1p.S: Likewise.
45611 * sysdeps/i386/fpu/e_log10f.S: Likewise.
45612 * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
45613 * sysdeps/i386/fpu/e_logl.S: Likewise.
45614 * sysdeps/i386/fpu/s_cbrt.S: Likewise.
45615 * sysdeps/i386/fpu/s_expm1l.S: Likewise.
45616 * sysdeps/i386/fpu/s_frexpl.S: Likewise.
45617 * sysdeps/i386/fpu/s_expm1f.S: Likewise.
45618 * sysdeps/i386/fpu/e_log2f.S: Likewise.
45619 * sysdeps/i386/fpu/e_acoshf.S: Likewise.
45620 * sysdeps/i386/fpu/e_log.S: Likewise.
45621 * sysdeps/i386/fpu/s_cexp.S: Likewise.
45622 * sysdeps/i386/fpu/e_scalbf.S: Likewise.
45623 * sysdeps/i386/fpu/s_log1pl.S: Likewise.
45624 * sysdeps/i386/fpu/e_logf.S: Likewise.
45625 * sysdeps/i386/fpu/e_log10l.S: Likewise.
45626 * sysdeps/i386/fpu/e_atanh.S: Likewise.
45627 * sysdeps/i386/fpu/s_log1pf.S: Likewise.
45628 * sysdeps/i386/fpu/s_asinhf.S: Likewise.
45629 * sysdeps/i386/fpu/s_cexpf.S: Likewise.
45630 * sysdeps/i386/fpu/e_log10.S: Likewise.
45631 * sysdeps/i386/fpu/s_frexp.S: Likewise.
45632 * sysdeps/i386/fpu/e_atanhl.S: Likewise.
45633 * sysdeps/i386/fpu/s_asinh.S: Likewise.
45634 * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
45635 * sysdeps/i386/fpu/e_scalbl.S: Likewise.
45636 * sysdeps/i386/i686/fpu/e_logl.S: Likewise.
45637 * sysdeps/i386/asm-syntax.h: Likewise.
45638 * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
45639 * sysdeps/x86_64/fpu/e_powl.S: Likewise.
45640 * sysdeps/x86_64/fpu/e_logl.S: Likewise.
45641 * sysdeps/x86_64/fpu/s_expm1l.S: Likewise.
45642 * sysdeps/x86_64/fpu/s_log1pl.S: Likewise.
45643 * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
45644 * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
45645 * sysdeps/x86_64/fpu/s_copysign.S: Likewise.
45646 * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
45647 * sysdeps/powerpc/sysdep.h: Likewise.
45648 * sysdeps/powerpc/powerpc64/sysdep.h: Likewise.
45649 * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
45650
456512012-02-06 Joseph Myers <joseph@codesourcery.com>
45652
45653 [BZ #411]
45654 * sysdeps/i386/sysdep.h (__i686): Undefine and redefine.
45655
456562012-02-06 Joseph Myers <joseph@codesourcery.com>
45657
45658 * sysdeps/i386/sysdep.h: Include <features.h>.
45659 (GET_PC_THUNK, GET_PC_THUNK_STR): Define conditionally on compiler
45660 version.
45661
456622012-02-05 Joseph Myers <joseph@codesourcery.com>
45663
45664 * sysdeps/i386/sysdep.h (SETUP_PIC_REG_STR, LOAD_PIC_REG_STR):
45665 Define.
45666 * sysdeps/unix/sysv/linux/i386/sysdep.h (check_consistency): Use
45667 LOAD_PIC_REG_STR.
45668
456692012-02-03 Joseph Myers <joseph@codesourcery.com>
45670
45671 * sysdeps/i386/sysdep.h (GET_PC_THUNK, GET_PC_THUNK_STR): Define.
45672 (SETUP_PIC_REG): Use GET_PC_THUNK.
45673 * sysdeps/unix/sysv/linux/i386/sysdep.h: Use GET_PC_THUNK_STR
45674 macro.
45675
456762012-02-03 Joseph Myers <joseph@codesourcery.com>
45677
45678 * sysdeps/i386/sysdep.h (SETUP_PIC_REG, LOAD_PIC_REG): Define also
45679 for non-PIC compilation.
45680 (SETUP_PIC_REG): Add .p2align directive.
45681 * sysdeps/i386/i686/memcmp.S: Use macros for PIC register setup.
45682 * sysdeps/i386/i686/multiarch/bcopy.S: Likewise.
45683 * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
45684 * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
45685 * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
45686 * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
45687 * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
45688 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
45689 * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
45690 * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
45691 * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
45692 * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
45693 * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
45694 * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
45695 * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
45696 * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
45697 * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
45698 * sysdeps/i386/i686/multiarch/memset.S: Likewise.
45699 * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
45700 * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
45701 * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
45702 * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
45703 * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
45704 * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
45705 * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
45706 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
45707 * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
45708 * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
45709 * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
45710 * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
45711 * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
45712 * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
45713 * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
45714 * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
45715 * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
45716 * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
45717 * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
45718 * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
45719 * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
45720 * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
45721 * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
45722
457232012-02-03 Joseph Myers <joseph@codesourcery.com>
45724
45725 * math/tst-CMPLX.c: Include <stdio.h>.
45726
457272012-01-31 Joseph Myers <joseph@codesourcery.com>
45728
45729 * sysdeps/powerpc/bits/mathdef.h (float_t): Always define as
45730 float.
45731 * sysdeps/sh/sh4/bits/mathdef.h: Likewise.
45732 * sysdeps/sparc/bits/mathdef.h: Likewise.
45733
457342012-01-31 Marek Polacek <polacek@redhat.com>
45735
45736 * libio/libio.h: Don't define _PARAMS.
45737 * locale/programs/config.h: Don't define PARAMS.
45738 * stdlib/strtol_l.c: Likewise.
45739 (__strtol_l): Remove PARAMS from the prototype.
45740
457412012-01-31 Ulrich Drepper <drepper@gmail.com>
45742
45743 * malloc/malloc.c: Remove name translation. Don't use mixed-cap
45744 names. Just use the correct names. Remove unnecessary wrapper
45745 functions.
45746 * malloc/arena.c: Likewise.
45747 * malloc/hooks.c: Likewise.
45748
45749 * malloc/arena.c (arena_get2): Really don't call __get_nprocs if
45750 ARENA_TEST says not to. Simplify test for creation of a new arena.
45751 Partially based on a patch by Siddhesh Poyarekar <siddhesh@redhat.com>.
45752
457532012-01-30 Ulrich Drepper <drepper@gmail.com>
45754
45755 * elf/dl-tls.c (__tls_get_addr): Optimize by transforming all calls
45756 into tail calls.
45757 (update_get_addr): New function.
45758 (tls_get_addr_tail): Take GET_ADDR_ARGS parameter, remove
45759 GET_ADDR_MODULE parameter.
45760
457612012-01-30 Joseph Myers <joseph@codesourcery.com>
45762
45763 * crypt/cert.c: Remove __STDC__ conditionals.
45764 * crypt/crypt-entry.c: Likewise.
45765 * crypt/crypt_util.c: Likewise.
45766 * libio/filedoalloc.c: Likewise.
45767 * libio/fileops.c: Likewise.
45768 * libio/genops.c: Likewise.
45769 * libio/iofclose.c: Likewise.
45770 * libio/iofdopen.c: Likewise.
45771 * libio/iofopen.c: Likewise.
45772 * libio/iofopen64.c: Likewise.
45773 * libio/iogetdelim.c: Likewise.
45774 * libio/iopopen.c: Likewise.
45775 * libio/obprintf.c: Likewise.
45776 * libio/oldfileops.c: Likewise.
45777 * libio/oldiofclose.c: Likewise.
45778 * libio/oldiofdopen.c: Likewise.
45779 * libio/oldiofopen.c: Likewise.
45780 * libio/oldiopopen.c: Likewise.
45781 * libio/wfiledoalloc.c: Likewise.
45782 * libio/wgenops.c: Likewise.
45783 * locale/programs/xmalloc.c: Likewise.
45784 * misc/syslog.c: Likewise.
45785 * stdio-common/xbug.c: Likewise.
45786 * string/memchr.c: Likewise.
45787 * string/memcmp.c: Likewise.
45788 * string/memrchr.c: Likewise.
45789 * string/rawmemchr.c: Likewise.
45790 * sysdeps/posix/getcwd.c: Likewise.
45791 * time/strftime_l.c: Likewise.
45792
457932012-01-30 Joseph Myers <joseph@codesourcery.com>
45794
45795 * configure.in (libc_cv_cc_sse2avx): AC_SUBST.
45796 * config.make.in (config-cflags-sse2avx): Define.
45797 * sysdeps/x86_64/fpu/multiarch/Makefile (CFLAGS-slowexp-avx.c):
45798 Fix typo.
45799
458002012-01-29 Chris Metcalf <cmetcalf@tilera.com>
45801
45802 * scripts/config.guess: Update from upstream config git repository.
45803 * scripts/config.sub: Likewise.
45804
458052012-01-28 Chris Metcalf <cmetcalf@tilera.com>
45806
45807 * elf/elf.h (EM_TILEPRO, EM_TILEGX): New macros.
45808 (EM_NUM): Update.
45809 (R_TILEPRO_*, R_TILEGX_*): New macros.
45810
45811 * scripts/firstversions.awk: Fix bug in version range handling.
45812
45813 * sysdeps/unix/sysv/linux/grantpt.c: Use <> brackets for not-cancel.h.
45814
45815 * sysdeps/unix/sysv/linux/faccessat.c (faccessat): Call __fxstatat64.
45816
45817 * include/sys/epoll.h: New file.
45818 * sysdeps/unix/sysv/linux/epoll_pwait.c (epoll_pwait): Mark as
45819 libc_hidden_def.
45820
458212012-01-28 Ulrich Drepper <drepper@gmail.com>
45822
45823 * sysdeps/x86_64/fpu/bits/mathinline.h (__signbitl): Optimize a bit.
45824 Avoid unnecessary __WORDSIZE == 64 test.
45825 (fmaxf): Use VEX format if possible.
45826 (fmax): Likewise.
45827 (fminf): Likewise.
45828 (fmin): Likewise.
45829
45830 * config.h.in: Define HAVE_SSE2AVX_SUPPORT.
45831 * math/math_private.h: Remove libc_fegetround* and
45832 libc_fesetround*.
45833 * sysdeps/i386/configure.in: Check for -msse2avx.
45834 * sysdeps/x86_64/fpu/math_private.h: Use VEX-encoded instructions
45835 also if SSE2AVX is defined.
45836 Remove libc_fegetround* and libc_fesetround*.
45837 * sysdeps/x86_64/fpu/multiarch/Makefile: Compile *-avx functions
45838 if config-cflags-sse2avx is yes. Also add -DSSE2AVX to defines.
45839 * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Use HAS_AVX again instead
45840 of HAS_YMM_USABLE.
45841 * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
45842 * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
45843 * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
45844 * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
45845 * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
45846
45847 * sysdeps/x86_64/fpu/math_private.h: Simplify use of AVX instructions.
45848
458492012-01-19 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
45850
45851 * sysdeps/powerpc/powerpc32/a2/memcpy.S: Fix for when cache line
45852 size is not set.
45853 * sysdeps/powerpc/powerpc64/a2/memcpy.S: Likewise.
45854
458552012-01-27 Ulrich Drepper <drepper@gmail.com>
45856
45857 [BZ #13618]
45858 * elf/dl-open.c (dl_open_worker): Sort objects by dependency before
45859 relocation.
45860 * Makeconfig (libm): Define.
45861 * elf/Makefile: Add rules to build and run tst-relsort1.
45862 * elf/tst-relsort1.c: New file.
45863 * elf/tst-relsort1mod1.c: New file.
45864 * elf/tst-relsort1mod2.c: New file.
45865
458662012-01-27 Joseph Myers <joseph@codesourcery.com>
45867
45868 * math/s_ldexp.c: Remove __STDC__ conditionals.
45869 * math/s_ldexpf.c: Likewise.
45870 * math/s_ldexpl.c: Likewise.
45871 * math/s_nextafter.c: Likewise.
45872 * math/s_nexttowardf.c: Likewise.
45873 * math/s_significand.c: Likewise.
45874 * math/s_significandf.c: Likewise.
45875 * math/s_significandl.c: Likewise.
45876 * math/w_jnl.c: Likewise.
45877 * sysdeps/i386/fpu/s_isinfl.c: Likewise.
45878 * sysdeps/i386/fpu/s_isnanl.c: Likewise.
45879 * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
45880 * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
45881 * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
45882 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
45883 * sysdeps/ieee754/dbl-64/k_tan.c: Likewise.
45884 * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
45885 * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
45886 * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
45887 * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
45888 * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
45889 * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
45890 * sysdeps/ieee754/dbl-64/s_ilogb.c: Likewise.
45891 * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
45892 * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
45893 * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
45894 * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
45895 * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
45896 * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
45897 * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
45898 * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
45899 * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
45900 * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
45901 * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
45902 * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
45903 * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
45904 * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
45905 * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
45906 * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
45907 * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
45908 * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
45909 * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
45910 * sysdeps/ieee754/flt-32/s_ilogbf.c: Likewise.
45911 * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
45912 * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
45913 * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
45914 * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
45915 * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
45916 * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
45917 * sysdeps/ieee754/k_standard.c: Likewise.
45918 * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
45919 * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
45920 * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
45921 * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
45922 * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
45923 * sysdeps/ieee754/ldbl-128/s_cosl.c: Likewise.
45924 * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
45925 * sysdeps/ieee754/ldbl-128/s_fabsl.c: Likewise.
45926 * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
45927 * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
45928 * sysdeps/ieee754/ldbl-128/s_frexpl.c: Likewise.
45929 * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Likewise.
45930 * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
45931 * sysdeps/ieee754/ldbl-128/s_logbl.c: Likewise.
45932 * sysdeps/ieee754/ldbl-128/s_modfl.c: Likewise.
45933 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
45934 * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
45935 * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
45936 * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
45937 * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
45938 * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
45939 * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
45940 * sysdeps/ieee754/ldbl-128/s_sinl.c: Likewise.
45941 * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
45942 * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
45943 * sysdeps/ieee754/ldbl-128/w_expl.c: Likewise.
45944 * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
45945 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
45946 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
45947 * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
45948 * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
45949 * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Likewise.
45950 * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
45951 * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: Likewise.
45952 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
45953 * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c: Likewise.
45954 * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
45955 * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
45956 * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Likewise.
45957 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Likewise.
45958 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
45959 * sysdeps/ieee754/ldbl-128ibm/s_logbl.c: Likewise.
45960 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
45961 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Likewise.
45962 * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
45963 * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Likewise.
45964 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
45965 * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
45966 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
45967 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
45968 * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
45969 * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
45970 * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
45971 * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: Likewise.
45972 * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
45973 * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: Likewise.
45974 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
45975 * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
45976 * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
45977 * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
45978 * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
45979 * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
45980 * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
45981 * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
45982 * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
45983 * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
45984 * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
45985 * sysdeps/ieee754/ldbl-96/s_frexpl.c: Likewise.
45986 * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Likewise.
45987 * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
45988 * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
45989 * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
45990 * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
45991 * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
45992 * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
45993 * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
45994 * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
45995 * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
45996 * sysdeps/ieee754/ldbl-96/s_tanl.c: Likewise.
45997 * sysdeps/ieee754/s_matherr.c: Likewise.
45998 * sysdeps/powerpc/fpu/w_sqrt.c: Likewise.
45999 * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
46000 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
46001 * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
46002
460032012-01-26 Joseph Myers <joseph@codesourcery.com>
46004
46005 * crypt/md5.h: Remove __STDC__ conditionals.
46006 * libio/libioP.h: Likewise.
46007 * locale/programs/config.h: Likewise.
46008 * sysdeps/generic/sysdep.h: Likewise.
46009 * sysdeps/i386/asm-syntax.h: Likewise.
46010 * sysdeps/s390/asm-syntax.h: Likewise.
46011 * sysdeps/unix/sysdep.h: Likewise.
46012 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
46013 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
46014
460152012-01-26 Joseph Myers <joseph@codesourcery.com>
46016
46017 * libio/libio.h: Remove __STDC__ conditionals.
46018 * malloc/obstack.h: Likewise.
46019 * math/complex.h: Likewise.
46020 * math/math.h: Likewise.
46021 * sysdeps/generic/_G_config.h: Likewise.
46022 * sysdeps/gnu/_G_config.h: Likewise.
46023 * sysdeps/mach/hurd/_G_config.h: Likewise.
46024 * sysdeps/powerpc/bits/mathdef.h: Likewise.
46025 * sysdeps/sh/sh4/bits/mathdef.h: Likewise.
46026 * sysdeps/sparc/bits/mathdef.h: Likewise.
46027
460282012-01-26 Ulrich Drepper <drepper@gmail.com>
46029
46030 [BZ #13583]
46031 * sysdeps/x86_64/multiarch/init-arch.h: Define bit_OSXSAVE.
46032 Clean up HAS_* macros.
46033 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): If
46034 bit_AVX is set also check OSXAVE/XCR0 and set bit_YMM_Usable if
46035 possible.
46036 * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Use HAS_YMM_USABLE, not
46037 HAS_AVX.
46038 * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
46039 * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
46040 * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
46041 * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
46042 * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
46043
460442012-01-25 Joseph Myers <joseph@codesourcery.com>
46045
46046 * elf/tst-unique3.cc (gets): Remove declaration.
46047 * elf/tst-unique3lib.cc (gets): Likewise.
46048 * elf/tst-unique3lib2.cc (gets): Likewise.
46049 * elf/tst-unique4.cc (gets): Likewise.
46050
460512012-01-24 Ulrich Drepper <drepper@gmail.com>
46052
46053 * include/stdio.h: Add C++ protection. Add gets declarations and
46054 definitions.
46055 * debug/tst-chk1.c: Don't declare gets here.
46056 * stdio-common/tst-gets.c: Likewise.
46057
460582012-01-24 Joseph Myers <joseph@codesourcery.com>
46059
46060 * posix/glob: Remove directory.
46061
460622012-01-24 Joseph Myers <joseph@codesourcery.com>
46063
46064 * wcsmbs/Makefile (tst-c16c32-1-ENV): Define.
46065
460662012-01-22 Pino Toscano <toscano.pino@tiscali.it>
46067
46068 * sysdeps/mach/hurd/socket.c (__socket): Return EAFNOSUPPORT instead
46069 of the non-standard EPFNOSUPPORT.
46070
460712011-12-26 Samuel Thibault <samuel.thibault@ens-lyon.org>
46072
46073 * sysdeps/mach/hurd/mmap.c (__mmap): When MAPADDR is nonzero, try
46074 __vm_allocate and __vm_map with ANYWHERE set to 0 first, and try with
46075 ANYWHERE set to 1 only on KERN_NO_SPACE error.
46076
460772012-01-21 Ulrich Drepper <drepper@gmail.com>
46078
46079 * wcsmbs/uchar.h: Test __STDC_VERSION__.
46080
460812012-01-20 Ulrich Drepper <drepper@gmail.com>
46082
46083 * nscd/aicache.c (addhstaiX): Do not cache negative results of
46084 transient errors.
46085 * nscd/grpcache.c (cache_addgr): Likewise.
46086 * nscd/hstcache.c (cache_addhst): Likewise.
46087 * nscd/initgrcache.c (addinitgroupsX): Likewise.
46088 * nscd/pwdcache.c (cache_addpw): Likewise.
46089 * nscd/servicescache.c (cache_addserv): Likewise.
46090
460912012-01-16 Ulrich Drepper <drepper@gmail.com>
46092
46093 * malloc/malloc.c: Various cleanups.
46094 * malloc/hooks.c: Likewise.
46095
46096 * stdlib/Makefile (tests): Add bug-fmtmsg1.
46097 * stdlib/bug-fmtmsg1.c: New file.
46098
46099 * stdlib/fmtmsg.c (init): Add missing unlock.
46100 Patch by Peng Haitao <penght@cn.fujitsu.com>.
46101
461022012-01-12 Marek Polacek <polacek@redhat.com>
46103
46104 * libio/bits/stdio2.h: Do not define gets for ISO C11, ISO C++11,
46105 and _GNU_SOURCE.
46106
461072012-01-04 Will Schmidt <will_schmidt@vnet.ibm.com>
46108
46109 * powerpc/powerpc32/sysdep.h: Add GLUE and GENERATE_GOT_LABEL macros.
46110 * unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Call
46111 macro to ensure uniqueness of label name.
46112 * unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
46113 * unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
46114
461152012-01-11 Ulrich Drepper <drepper@gmail.com>
46116
46117 * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c: New file.
46118
46119 * sysdeps/ieee754/dbl-64/s_scalbln.c: Add branch prediction.
46120 * sysdeps/ieee754/flt-32/s_scalblnf.c: Likewise.
46121 * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
46122 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: New file.
46123
461242012-01-10 Ulrich Drepper <drepper@gmail.com>
46125
46126 * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: New file.
46127
46128 * sysdeps/ieee754/dbl-64/s_modf.c: Add branch prediction.
46129 * sysdeps/ieee754/flt-32/s_modff.c: Likewise.
46130 * sysdeps/ieee754/ldbl-96/s_modfl.c: Likewise.
46131
46132 * math/bits/mathcalls.h: Add const attribute to fmin and fmax.
46133
46134 * sysdeps/ieee754/dbl-64/s_scalbn.c: Add branch prediction.
46135 * sysdeps/ieee754/flt-32/s_scalbnf.c: Likewise.
46136 * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
46137 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c: New file.
46138
46139 * math/bits/math-finite.h: Add ldexp support.
46140
461412012-01-10 Marek Polacek <polacek@redhat.com>
46142
46143 * locale/programs/localedef.h (show_archive_content): Add noreturn
46144 attribute.
46145
461462012-01-09 Ulrich Drepper <drepper@gmail.com>
46147
46148 * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Add branch prediction.
46149
461502012-01-08 Ulrich Drepper <drepper@gmail.com>
46151
46152 * io/bits/poll2.h: Add __BEGIN/__END_DECLS.
46153
46154 * io/Makefile (headers): Add bits/poll2.h.
46155
461562011-01-05 Will Schmidt <will_schmidt@vnet.ibm.com>
46157
46158 * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Fix a
46159 typo #include statement.
46160
461612012-01-08 Ulrich Drepper <drepper@gmail.com>
46162
46163 * include/sys/cdefs.h: Define __attribute_alloc_size.
46164 * catgets/gencat.c: Add alloc_size attribute and apply consistently
46165 the malloc attribute to xmalloc, xcalloc, xrealloc, and xstrdup.
46166 * elf/pldd.c: Likewise.
46167 * iconv/iconv_charmap.c: Likewise.
46168 * iconv/iconvconfig.c: Likewise.
46169 * iconv/strtab.c: Likewise.
46170 * locale/programs/locale.c: Likewise.
46171 * locale/programs/localedef.h: Likewise.
46172 * locale/programs/simple-hash.c: Likewise.
46173 * nscd/nscd.h: Likewise.
46174 * nss/makedb.c: Likewise.
46175 * sysdeps/generic/ldconfig.h: Likewise.
46176 * locale/programs/localedef.c: Remove xmalloc prototype.
46177 * nscd/mem.c: Remove xmalloc and xcalloc prototypes.
46178
461792012-01-05 Paul Pluzhnikov <ppluzhnikov@google.com>
46180
46181 * stdio-common/vfscanf.c (_IO_vfscanf_internal): Use alloca when
46182 appropriate.
46183
461842012-01-08 Ulrich Drepper <drepper@gmail.com>
46185
46186 * math/Makefile (tests): Add tst-CMPLX.
46187 * math/tst-CMPLX.c: New file.
46188
46189 * math/complex.h (CMPLXL): Fix typo.
46190
46191 * debug/Makefile (routines): Add poll_chk and ppoll_chk.
46192 * debug/Versions: Export __pool_chk and __ppoll_chk from libc for
46193 GLIBC_2.16.
46194 * debug/tst-chk1.c: Add poll and ppoll tests.
46195 * io/sys/poll.h: Include bits/poll2.h for _FORTIFY_SOURCE.
46196 * include/sys/poll.h: Add hidden proto for ppoll.
46197 * sysdeps/unix/sysv/linux/ppoll.c: Add hidden def.
46198 * sysdeps/mach/hurd/ppoll.c: Likewise.
46199 * io/ppoll.c: Likewise.
46200 * debug/poll_chk.c: New file.
46201 * debug/ppoll_chk.c: New file.
46202 * include/bits/poll2.h: New file.
46203 * io/bits/poll2.h: New file.
46204
46205 [BZ #1350]
46206 * math/complex.h (CMPLX, CMPLXF, CMPLXL): Define.
46207
46208 * configure.in: static is always set to yes. Remove.
46209 * config.make.in: Don't set build-static.
46210 * Makeconfig: Remove use of build-static.
46211 * dlfcn/Makefile: Likewise.
46212 * elf/Makefile: Likewise.
46213 * math/Makefile: Likewise.
46214 * misc/Makefile: Likewise.
46215 * nptl/Makefile: Likewise.
46216 * sysdeps/mach/hurd/Makefile: Likewise.
46217
46218 * configure.in: PWD_P is not used anymore.
46219 * config.make.in: Remove PWD_P entry.
46220
46221 * configure.in: Remove last remnants of RANLIB.
46222 No need to check for signed size_t anymore.
46223 Don't set libc_commonpagesize and libc_relro_required here for Alpha
46224 and IA-64.
46225 Remove __builtin_expect test because we require at least gcc 3.4.
46226 * aclocal.m4: Likewise.
46227
46228 * wcsmbs/mbrtoc16.c: Implement using towc function.
46229 * wcsmbs/wcsmbsload.h: No need for toc16 and fromc16 functions.
46230 * wcsmbs/wcsmbsload.c: Likewise.
46231 * iconv/gconv_simple.c: Likewise.
46232 * iconv/gconv_int.h: Likewise.
46233 * iconv/gconv_builtin.h: Likewise.
46234 * iconv/iconv_prog.c: Remove CHAR16 handling.
46235
46236 * wcsmbs/c16rtomb.c: Remove #if 0'ed code.
46237
46238 * wcsmbs/mbrtowc.c: Better check for invalid inputs.
46239
46240 * configure.in: Remove --with-elf and --enable-bounded options.
46241 Dont set base_machine for ia64. More non-ELF conditions removed.
46242 Remove testing and setting of leading underscore information.
46243 * config.make.in (build-bounded): Set to no.
46244 * config.h.in: Remove NO_UNDERSCORES entry.
46245 * include/libc-symbols.h: Don't define HAVE_WEAK_SYMBOLS. ELF has
46246 them.
46247 * csu/start.c: Remove !NO_UNDERSCORE code.
46248 * locale/localeinfo.h: Likewise.
46249 * sysdeps/generic/machine-gmon.h: Likewise.
46250 * sysdeps/generic/sysdep.h: Likewise.
46251 * sysdeps/i386/sysdep.h: Likewise.
46252 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
46253 * sysdeps/mach/sysdep.h: Likewise.
46254 * sysdeps/s390/s390-32/sysdep.h: Likewise.
46255 * sysdeps/s390/s390-64/sysdep.h: Likewise.
46256 * sysdeps/sh/sysdep.h: Likewise.
46257 * sysdeps/sparc/sparc32/alloca.S: Likewise.
46258 * sysdeps/unix/i386/sysdep.S: Likewise.
46259 * sysdeps/unix/sparc/start.c: Likewise.
46260 * sysdeps/unix/sparc/sysdep.S: Likewise.
46261 * sysdeps/unix/sparc/sysdep.h: Likewise.
46262 * sysdeps/unix/start.c: Likewise.
46263 * sysdeps/unix/x86_64/sysdep.S: Likewise.
46264 * sysdeps/x86_64/sysdep.h: Likewise.
46265
462662012-01-07 Ulrich Drepper <drepper@gmail.com>
46267
46268 [BZ #13553]
46269 * misc/sys/cdefs.h: Remove __const, __signed, and __volatile definition
46270 for non-gcc.
46271 * argp/argp-fmtstream.h: Use const instead __const.
46272 * argp/argp.h: Likewise.
46273 * assert/assert.h: Likewise.
46274 * bits/fenv.h: Likewise.
46275 * bits/sched.h: Likewise.
46276 * bits/sigset.h: Likewise.
46277 * bits/sigthread.h: Likewise.
46278 * catgets/nl_types.h: Likewise.
46279 * conform/data/pthread.h-data: Likewise.
46280 * crypt/crypt-private.h: Likewise.
46281 * crypt/crypt.h: Likewise.
46282 * crypt/crypt_util.c: Likewise.
46283 * ctype/ctype.h: Likewise.
46284 * debug/execinfo.h: Likewise.
46285 * debug/mbsnrtowcs_chk.c: Likewise.
46286 * debug/mbsrtowcs_chk.c: Likewise.
46287 * debug/wcsnrtombs_chk.c: Likewise.
46288 * debug/wcsrtombs_chk.c: Likewise.
46289 * debug/wcstombs_chk.c: Likewise.
46290 * dirent/dirent.h: Likewise.
46291 * dlfcn/dlfcn.h: Likewise.
46292 * elf/neededtest4.c: Likewise.
46293 * grp/grp.h: Likewise.
46294 * gshadow/gshadow.h: Likewise.
46295 * iconv/gconv.h: Likewise.
46296 * iconv/gconv_int.h: Likewise.
46297 * iconv/gconv_simple.c: Likewise.
46298 * iconv/iconv.h: Likewise.
46299 * iconv/loop.c: Likewise.
46300 * iconv/skeleton.c: Likewise.
46301 * include/aio.h: Likewise.
46302 * include/aliases.h: Likewise.
46303 * include/argz.h: Likewise.
46304 * include/arpa/inet.h: Likewise.
46305 * include/assert.h: Likewise.
46306 * include/dirent.h: Likewise.
46307 * include/dlfcn.h: Likewise.
46308 * include/execinfo.h: Likewise.
46309 * include/fcntl.h: Likewise.
46310 * include/fenv.h: Likewise.
46311 * include/glob.h: Likewise.
46312 * include/grp.h: Likewise.
46313 * include/libintl.h: Likewise.
46314 * include/mntent.h: Likewise.
46315 * include/netdb.h: Likewise.
46316 * include/pwd.h: Likewise.
46317 * include/rpc/netdb.h: Likewise.
46318 * include/sched.h: Likewise.
46319 * include/search.h: Likewise.
46320 * include/shadow.h: Likewise.
46321 * include/signal.h: Likewise.
46322 * include/stdio.h: Likewise.
46323 * include/stdlib.h: Likewise.
46324 * include/string.h: Likewise.
46325 * include/sys/socket.h: Likewise.
46326 * include/sys/stat.h: Likewise.
46327 * include/sys/statfs.h: Likewise.
46328 * include/sys/statvfs.h: Likewise.
46329 * include/sys/syslog.h: Likewise.
46330 * include/sys/time.h: Likewise.
46331 * include/sys/uio.h: Likewise.
46332 * include/time.h: Likewise.
46333 * include/unistd.h: Likewise.
46334 * include/utmp.h: Likewise.
46335 * include/wchar.h: Likewise.
46336 * include/wctype.h: Likewise.
46337 * inet/aliases.h: Likewise.
46338 * inet/arpa/inet.h: Likewise.
46339 * inet/netinet/ether.h: Likewise.
46340 * inet/netinet/in.h: Likewise.
46341 * intl/libintl.h: Likewise.
46342 * io/bits/fcntl2.h: Likewise.
46343 * io/fcntl.h: Likewise.
46344 * io/ftw.h: Likewise.
46345 * io/sys/poll.h: Likewise.
46346 * io/sys/stat.h: Likewise.
46347 * io/sys/statfs.h: Likewise.
46348 * io/sys/statvfs.h: Likewise.
46349 * io/utime.h: Likewise.
46350 * libio/bits/stdio.h: Likewise.
46351 * libio/bits/stdio2.h: Likewise.
46352 * libio/libio.h: Likewise.
46353 * libio/libioP.h: Likewise.
46354 * libio/stdio.h: Likewise.
46355 * locale/lc-ctype.c: Likewise.
46356 * locale/locale.h: Likewise.
46357 * login/utmp.h: Likewise.
46358 * malloc/arena.c: Likewise.
46359 * malloc/malloc.c: Likewise.
46360 * malloc/malloc.h: Likewise.
46361 * malloc/mcheck.c: Likewise.
46362 * malloc/mtrace.c: Likewise.
46363 * math/bits/mathcalls.h: Likewise.
46364 * math/fenv.h: Likewise.
46365 * math/math_private.h: Likewise.
46366 * misc/bits/error.h: Likewise.
46367 * misc/bits/syslog.h: Likewise.
46368 * misc/err.h: Likewise.
46369 * misc/error.h: Likewise.
46370 * misc/fstab.h: Likewise.
46371 * misc/mntent.h: Likewise.
46372 * misc/regexp.h: Likewise.
46373 * misc/search.h: Likewise.
46374 * misc/sgtty.h: Likewise.
46375 * misc/sys/mman.h: Likewise.
46376 * misc/sys/syslog.h: Likewise.
46377 * misc/sys/uio.h: Likewise.
46378 * misc/sys/xattr.h: Likewise.
46379 * misc/ttyent.h: Likewise.
46380 * nis/rpcsvc/ypclnt.h: Likewise.
46381 * nss/nss.h: Likewise.
46382 * posix/bits/unistd.h: Likewise.
46383 * posix/fnmatch.h: Likewise.
46384 * posix/glob.h: Likewise.
46385 * posix/sched.h: Likewise.
46386 * posix/spawn.h: Likewise.
46387 * posix/sys/wait.h: Likewise.
46388 * posix/unistd.h: Likewise.
46389 * posix/wordexp.h: Likewise.
46390 * pwd/pwd.h: Likewise.
46391 * resolv/netdb.h: Likewise.
46392 * resource/sys/resource.h: Likewise.
46393 * rt/aio.h: Likewise.
46394 * rt/bits/mqueue2.h: Likewise.
46395 * rt/mqueue.h: Likewise.
46396 * shadow/shadow.h: Likewise.
46397 * signal/signal.h: Likewise.
46398 * socket/send.c: Likewise.
46399 * socket/sendto.c: Likewise.
46400 * socket/sys/socket.h: Likewise.
46401 * stdio-common/printf.h: Likewise.
46402 * stdlib/bits/stdlib.h: Likewise.
46403 * stdlib/fmtmsg.h: Likewise.
46404 * stdlib/monetary.h: Likewise.
46405 * stdlib/stdlib.h: Likewise.
46406 * stdlib/ucontext.h: Likewise.
46407 * streams/stropts.h: Likewise.
46408 * string/argz.h: Likewise.
46409 * string/bits/string2.h: Likewise.
46410 * string/string.h: Likewise.
46411 * string/strings.h: Likewise.
46412 * sunrpc/rpc/auth.h: Likewise.
46413 * sunrpc/rpc/auth_des.h: Likewise.
46414 * sunrpc/rpc/clnt.h: Likewise.
46415 * sunrpc/rpc/netdb.h: Likewise.
46416 * sunrpc/rpc/pmap_clnt.h: Likewise.
46417 * sunrpc/rpc/xdr.h: Likewise.
46418 * sysdeps/generic/inttypes.h: Likewise.
46419 * sysdeps/generic/net/if.h: Likewise.
46420 * sysdeps/generic/sys/swap.h: Likewise.
46421 * sysdeps/gnu/net/if.h: Likewise.
46422 * sysdeps/gnu/utmpx.h: Likewise.
46423 * sysdeps/i386/fpu/bits/fenv.h: Likewise.
46424 * sysdeps/i386/i486/bits/string.h: Likewise.
46425 * sysdeps/ieee754/ldbl-opt/nldbl-strtold_l.c: Likewise.
46426 * sysdeps/s390/bits/string.h: Likewise.
46427 * sysdeps/s390/fpu/bits/fenv.h: Likewise.
46428 * sysdeps/sparc/fpu/bits/fenv.h: Likewise.
46429 * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
46430 * sysdeps/unix/sysv/linux/bits/resource.h: Likewise.
46431 * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
46432 * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
46433 * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
46434 * sysdeps/unix/sysv/linux/bits/sys_errlist.h: Likewise.
46435 * sysdeps/unix/sysv/linux/bits/uio.h: Likewise.
46436 * sysdeps/unix/sysv/linux/i386/glob64.c: Likewise.
46437 * sysdeps/unix/sysv/linux/i386/olddirent.h: Likewise.
46438 * sysdeps/unix/sysv/linux/preadv.c: Likewise.
46439 * sysdeps/unix/sysv/linux/prlimit.c: Likewise.
46440 * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
46441 * sysdeps/unix/sysv/linux/readv.c: Likewise.
46442 * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: Likewise.
46443 * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: Likewise.
46444 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
46445 * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
46446 * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
46447 * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
46448 * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: Likewise.
46449 * sysdeps/unix/sysv/linux/sys/acct.h: Likewise.
46450 * sysdeps/unix/sysv/linux/sys/epoll.h: Likewise.
46451 * sysdeps/unix/sysv/linux/sys/mount.h: Likewise.
46452 * sysdeps/unix/sysv/linux/sys/swap.h: Likewise.
46453 * sysdeps/unix/sysv/linux/sys/timerfd.h: Likewise.
46454 * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
46455 * sysdeps/x86_64/fpu/bits/fenv.h: Likewise.
46456 * sysdeps/x86_64/strcasecmp_l-nonascii.c: Likewise.
46457 * sysdeps/x86_64/strncase_l-nonascii.c: Likewise.
46458 * sysvipc/sys/ipc.h: Likewise.
46459 * sysvipc/sys/msg.h: Likewise.
46460 * sysvipc/sys/sem.h: Likewise.
46461 * sysvipc/sys/shm.h: Likewise.
46462 * termios/termios.h: Likewise.
46463 * time/sys/time.h: Likewise.
46464 * time/time.h: Likewise.
46465 * wcsmbs/bits/wchar2.h: Likewise.
46466 * wcsmbs/uchar.h: Likewise.
46467 * wcsmbs/wchar.h: Likewise.
46468 * wctype/wctype.h: Likewise.
46469
46470 [BZ #13551]
46471 * Makeconfig: Remove all but ELF support including AIX support.
46472 * Makerules: Likewise.
46473 * config.h.in: Likewise.
46474 * config.make.in: Likewise.
46475 * configure: Likewise.
46476 * configure.in: Likewise.
46477 * csu/Makefile: Likewise.
46478 * csu/version.c: Likewise.
46479 * debug/Makefile: Likewise.
46480 * dlfcn/Makefile: Likewise.
46481 * elf/Makefile: Likewise.
46482 * extra-lib.mk: Likewise.
46483 * iconv/Makefile: Likewise.
46484 * include/libc-symbols.h: Likewise.
46485 * include/shlib-compat.h: Likewise.
46486 * resolv/Makefile: Likewise.
46487 * resolv/res_libc.c: Likewise.
46488 * rt/Makefile: Likewise.
46489 * sysdeps/i386/asm-syntax.h: Likewise.
46490 * sysdeps/i386/sysdep.h: Likewise.
46491 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
46492 * sysdeps/mach/sysdep.h: Likewise.
46493 * sysdeps/powerpc/powerpc32/Makefile: Likewise.
46494 * sysdeps/powerpc/powerpc64/Makefile: Likewise.
46495 * sysdeps/s390/asm-syntax.h: Likewise.
46496 * sysdeps/s390/s390-32/sysdep.h: Likewise.
46497 * sysdeps/s390/s390-64/sysdep.h: Likewise.
46498 * sysdeps/sh/sysdep.h: Likewise.
46499 * sysdeps/unix/sparc/sysdep.h: Likewise.
46500 * sysdeps/wordsize-32/divdi3.c: Likewise.
46501 * sysdeps/x86_64/sysdep.h: Likewise.
46502
46503 * argp/Versions: Remove _argp_unlock_xxx.
46504
46505 [BZ #13559]
46506 * abilist/ld.abilist: Update. Adjust for removal of tls option.
46507 * abilist/libBrokenLocale.abilist: Likewise.
46508 * abilist/libanl.abilist: Likewise.
46509 * abilist/libc.abilist: Likewise.
46510 * abilist/libcrypt.abilist: Likewise.
46511 * abilist/libdl.abilist: Likewise.
46512 * abilist/libm.abilist: Likewise.
46513 * abilist/libnsl.abilist: Likewise.
46514 * abilist/libpthread.abilist: Likewise.
46515 * abilist/libresolv.abilist: Likewise.
46516 * abilist/librt.abilist: Likewise.
46517 * abilist/libthread_db.abilist: Likewise.
46518 * abilist/libutil.abilist: Likewise.
46519 * abilist/libnss_db.abilist: New file.
46520
46521 * scripts/abilist.awk: Add support for indirect functions.
46522
46523 * sysdeps/unix/sysv/linux/configure.in: Remove m68k support.
46524
46525 * sysdeps/generic/ldsodefs.h: Remove Alpha support.
46526
46527 * shlib-versions: Remove entries for ports architectures.
46528
46529 * elf/tls-macros.h: Remove support for Alpha and IA-64. Should be in
46530 files in ports.
46531 * elf/stackguard-macros.h: Remove support for IA-64.
46532 * elf/tst-auditmod1.c: Likewise.
46533 * sysdeps/generic/ldsodefs.h: Likewise.
46534
46535 * sysdeps/unix/sysv/linux/configure.in: Ports should define
46536 libc_cv_gcc_unwind_find_fde and arch_minimum_kernel in their
46537 configure files.
46538
46539 [BZ #13552]
46540 * configure.in: Remove --enable-omitfp support.
46541 * FAQ.in: Adjust.
46542 * config.make.in: Likewise.
46543 * Makeconfig: Likewise.
46544 * manual/install.texi: Likewise.
46545
46546 In case anyone cares, the IA-64 architecture could move to ports.
46547 * sysdeps/ia64/*: Removed.
46548 * sysdeps/unix/sysv/linux/ia64/*: Removed.
46549 * sysdeps/unix/sysv/linux/kernel-features.h: Remove IA-64 support.
46550
46551 [BZ #13555]
46552 * configure.in: Remove entries for unsupported architectures.
46553
46554 [BZ #13533]
46555 * iconv/gconv_builtin.h: Use CHAR16 for the char16_t conversions.
46556 * iconv/gconv_simple.c: Rename char16_t routines. Add char16_t<->utf8
46557 routines.
46558 * iconv/gconv_int.h: Adjust prototypes for char16_t routines.
46559 * iconv/iconv_prog.c: Recognize CHAR16 as internal name.
46560 * wcsmbs/c16rtomb.c: Fix a few problems. Disable all the code and
46561 fall back to using wcrtomb.
46562 * wcsmbs/mbrtoc16.: Fix implementation to handle real conversions.
46563 * wcsmbs/wcsmbsload.c: Make char16 routines optional. Adjust for
46564 renaming.
46565 * wcsmbs/Makefile (tests): Add tst-c16c32-1:
46566 * wcsmbs/tst-c16c32-1.c: New file.
46567
46568 * wcsmbs/wcrtomb.c: Use MB_LEN_MAX instead of MB_CUR_MAX for sizing
46569 local variable.
46570
46571 * libio/stdio.h: Do not declare gets at all for _GNU_SOURCE.
46572
46573 * elf/tst-unique3.cc: Add explicit declaration of gets.
46574 * elf/tst-unique3lib.cc: Likewise.
46575 * elf/tst-unique3lib2.cc: Likewise.
46576 * elf/tst-unique4.cc: Likewise.
46577
46578 * string/test-strcpy.c (do_one_test): Fix format string for WIDE use.
46579
465802012-01-06 Joseph Myers <joseph@codesourcery.com>
46581
46582 [BZ #13566]
46583 * assert/assert.h (static_assert): Don't define for C++.
46584 * libio/stdio.h (gets): Do declare for C++ <= C++11.
46585 * wcsmbs/uchar.h (char16_t, char32_t): Don't typedef for C++11.
46586
465872012-01-03 Ulrich Drepper <drepper@gmail.com>
46588
46589 * iconv/loop.c (single loop): Fix assertion in storing of
46590 remaining bytes.
46591
46592 * posix/regcomp.c (init_word_char): Optimize a bit for sane encodings.
46593
465942012-01-01 Ulrich Drepper <drepper@gmail.com>
46595
46596 * posix/getconf.c: Update copyright year.
46597 * nss/getent.c: Likewise.
46598 * nss/makedb.c: Likewise.
46599 * iconv/iconvconfig.c: Likewise.
46600 * iconv/iconv_prog.c: Likewise.
46601 * elf/ldconfig.c: Likewise.
46602 * elf/pldd.c: Likewise.
46603 * elf/sotruss.ksh: Likewise.
46604 * catgets/gencat.c: Likewise.
46605 * csu/version.c: Likewise.
46606 * elf/ldd.bash.in: Likewise.
46607 * elf/sprof.c (print_version): Likewise.
46608 * locale/programs/locale.c: Likewise.
46609 * locale/programs/localedef.c: Likewise.
46610 * login/programs/pt_chown.c: Likewise.
46611 * nscd/nscd.c (print_version): Likewise.
46612 * debug/xtrace.sh: Likewise.
46613 * malloc/memusage.sh: Likewise.
46614 * malloc/mtrace.pl: Likewise.
46615 * debug/catchsegv.sh: Likewise.
46616
466172011-12-30 Jakub Jelinek <jakub@redhat.com>
46618
46619 * posix/regex_internal.c (re_string_fetch_byte_case): Remove
46620 pure attribute.
46621
466222011-12-24 Ulrich Drepper <drepper@gmail.com>
46623
46624 [BZ #13533]
46625 * iconv/gconv_simple.c: Add ASCII<->UTF-16 transformations.
46626 * iconv/gconv_builtin.h: Add entries for internal ASCII<->UTF-16
46627 transformations.
46628 * iconv/gconv_int.h: Likewise.
46629 * wcsmbs/Makefile (routines): Add mbrtoc16 and c16rtomb.
46630 * wcsmbs/Versions: Export mbrtoc16, c16rtomb, mbrtoc32, c32rtomb
46631 from libc for GLIBC_2.16.
46632 * wcsmbs/mbrtowc.c: Define mbrtoc32 alias.
46633 * wcsmbs/wcrtomb.c: Define c32rtomb alias.
46634 * wcsmbs/uchar.h: Really define mbstate_t.
46635 * wcsmbs/wchar.h: Allow defining mbstate_t in uchar.h.
46636 * wcsmbs/c16rtomb.c: New file.
46637 * wcsmbs/mbrtoc16.c: New file.
46638 * wcsmbs/wcsmbsload.c: Add static definitions for c16 conversions
46639 for C/POSIX locale.
46640 (__wcsmbs_load_conv): Do not fill in c16 routines yet.
46641 * wcsmbs/wcsmbsload.h (gconv_fcts): Add entries for c16 routines.
46642
46643 * wcsmbs/wchar.h: Add missing __restrict.
46644
466452011-12-23 Ulrich Drepper <drepper@gmail.com>
46646
46647 [BZ #13532]
46648 * time/Makefile (routines): Add timespec_get.
46649 * time/Versions: Export timespec_get from libc for GLIBC_2.16.
46650 * time/time.h: Define TIME_UTC and declare timespec_get. Define
46651 timespec for ISO C11.
46652 * time/timespec_get.c: New file.
46653 * sysdeps/unix/sysv/linux/timespec_get.c: New file.
46654 * sysdeps/unix/sysv/linux/x86_64/timespec_get.c: New file.
46655
46656 [BZ #13531]
46657 * malloc/malloc.c: Define alias aligned_alloc for public_mEMALIGn.
46658 * stdlib/stdlib.h: Declare aligned_alloc.
46659 * Versions.def: Add GLIBC_2.16 for libc.
46660 * malloc/Versions: Export aligned_alloc from libc for GLIBC_2.16.
46661
46662 [BZ 13527]
46663 * stdlib/stdlib.h: Make at_quick_exit and quick_exit available for
46664 ISO C11.
46665
46666 * include/features.h: Define __USE_ISOCXX11 when compiling ISO C++11
46667 code.
46668
46669 [BZ #13528]
46670 * libio/stdio.h: Do not declare gets for ISO C11 and _GNU_SOURCE.
46671
46672 [BZ #13529]
46673 * assert/assert.h (static_assert): Define.
46674
46675 * version.h: Update for 2.16 development version.
46676
46677 [BZ #13526]
46678 * include/features.h: Handle __STDC_VERSION__ >= 201112 and
46679 _ISOC11_SOURCE.
46680
46681 * version.h (RELEASE): Bump for 2.15 release.
46682 * include/features.h (__GLIBC_MINOR__): Bump to 15.
46683
46684 * sysdeps/x86_64/dl-machine.h: Fix typos in comments.
46685 Patch by Marek Polacek <mpolacek@redhat.com>.
46686
46687 * bits/byteswap.h: Protect long long constants with __extension__.
46688 * sysdeps/i386/bits/byteswap.h: Likewise.
46689 * sysdeps/ia64/bits/byteswap.h: Likewise.
46690 * sysdeps/s390/bits/byteswap.h: Likewise.
46691 * sysdeps/x86_64/bits/byteswap.h: Likewise.
46692
466932011-12-23 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
46694
46695 [BZ #13540]
46696 * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Fix overrun in
46697 destination buffer.
46698 * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: Likewise.
46699
467002011-12-23 Marek Polacek <polacek@redhat.com>
46701
46702 * elf/dl-addr.c (determine_info): Add inline keyword.
46703 * elf/tst-auditmod4b.c (check_avx): Likewise.
46704 * elf/tst-auditmod6b.c (check_avx): Likewise.
46705 * elf/tst-auditmod6c.c (check_avx): Likewise.
46706 * elf/tst-auditmod7b.c (check_avx): Likewise.
46707
467082011-12-23 Ulrich Drepper <drepper@gmail.com>
46709
46710 * sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Also enable for
46711 !__SSE_MATH__.
46712
467132011-12-23 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
46714
46715 [BZ #13540]
46716 * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: Fix wrong copying
46717 processing for last bytes.
46718
467192011-08-06 Bruno Haible <bruno@clisp.org>
46720
46721 [BZ #13061]
46722 * iconvdata/cp1258.c (comp_table_data): Combine U+00A8 U+0301 to
46723 U+0385, not to U+1FEE.
46724
46725 [BZ #13062]
46726 * iconvdata/tcvn5712-1.c (comp_table_data): Remove useless and wrong
46727 entry for U+00A5 U+0301.
46728
467292011-12-22 Ulrich Drepper <drepper@gmail.com>
46730
46731 [BZ #13166]
46732 * inet/getnameinfo.c (getnameinfo): Return EAI_OVERFLOW if the
46733 buffer for the output is too small.
46734
46735 * sysdeps/i386/fpu/bits/fenv.h [__SSE_MATH__]: Add feraiseexcept
46736 optimization.
46737
46738 [BZ #13185]
46739 * sysdeps/i386/fpu/fgetexcptflg.c (__fegetexceptflag): Also return
46740 SSE flags if possible.
46741
467422011-12-22 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
46743
46744 [BZ #13540]
46745 * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Fix wrong copying
46746 processing for last bytes.
46747
467482011-12-22 Joseph Myers <joseph@codesourcery.com>
46749
46750 * sysdeps/unix/sysv/linux/Makefile (syscall-list-variants)
46751 (syscall-list-default-options, syscall-list-default-condition)
46752 (syscall-list-includes): Define.
46753 ($(objpfx)syscall-%.h $(objpfx)syscall-%.d): Support arbitrary
46754 list of ABIs and options and #if conditions for each ABI. Do not
46755 handle common syscalls between ABIs specially.
46756 * sysdeps/unix/sysv/linux/powerpc/Makefile (64bit-predefine):
46757 Remove.
46758 (syscall-list-variants, syscall-list-32bit-options)
46759 (syscall-list-32bit-condition, syscall-list-64bit-options)
46760 (syscall-list-64bit-condition): Define.
46761 * sysdeps/unix/sysv/linux/s390/Makefile (64bit-predefine): Remove.
46762 (syscall-list-variants, syscall-list-32bit-options)
46763 (syscall-list-32bit-condition, syscall-list-64bit-options)
46764 (syscall-list-64bit-condition): Define.
46765 * sysdeps/unix/sysv/linux/sparc/Makefile (64bit-predefine):
46766 Remove.
46767 (syscall-list-variants, syscall-list-32bit-options)
46768 (syscall-list-32bit-condition, syscall-list-64bit-options)
46769 (syscall-list-64bit-condition): Define.
46770 * sysdeps/unix/sysv/linux/x86_64/Makefile (64bit-predefine):
46771 Remove.
46772 (syscall-list-variants, syscall-list-32bit-options)
46773 (syscall-list-32bit-condition, syscall-list-64bit-options)
46774 (syscall-list-64bit-condition): Define.
46775
467762011-12-22 Ulrich Drepper <drepper@gmail.com>
46777
46778 * locale/iso-639.def: Add brx entry.
46779
46780 [BZ #13328]
46781 * malloc/mtrace.c (tr_freehook): Avoid unnecessary unlock/lock.
46782 Proposed by Mariusz_Cukr <marcukr@op.pl>.
46783
46784 * sysdeps/x86_64/fpu/bits/fenv.h: Use __REDIRECT_NTH for
46785 __feraiseexcept_renamed.
46786
467872011-12-21 Ulrich Drepper <drepper@gmail.com>
46788
46789 [BZ #13538]
46790 * sysdeps/unix/sysv/linux/sys/epoll.h: Initialize EPOLLONESHOT and
46791 EPOLLET with unsigned values.
46792 * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
46793 * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
46794
46795 * math/s_cacosh.c: Use Kahan's formula if the subtraction could lead
46796 to large cancellation.
46797 * math/s_cacoshf.c: Likewise.
46798 * math/s_cacoshl.c: Likewise.
46799
468002011-11-18 Richard B. Kreckel <kreckel@ginac.de>
46801
46802 [BZ #13305]
46803 [BZ #12786]
46804 * math/s_cacosh.c: Fix rare miscomputation in cacosh().
46805 * math/s_cacoshf.c: Likewise.
46806 * math/s_cacoshl.c: Likewise.
46807
468082011-12-21 Ulrich Drepper <drepper@gmail.com>
46809
46810 [BZ #13439]
46811 * iconv/gconv.h: Define __GCONV_SWAP.
46812 * iconvdata/unicode.c: The swap bit must be stored in __flags.
46813 * iconvdata/utf-16.c: Likewise.
46814 * iconvdata/utf-32.c: Likewise.
46815
468162011-12-21 Andreas Schwab <schwab@linux-m68k.org>
46817
46818 [BZ #13524]
46819 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Clear lowest limb of
46820 numerator after shifting it by one limb.
46821
468222011-12-19 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
46823
46824 * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Define it only
46825 under [__USE_EXTERN_INLINES].
46826
468272011-12-17 Ulrich Drepper <drepper@gmail.com>
46828
46829 [BZ #13446]
46830 * stdio-common/vfprintf.c (vfprintf): Fix extension of specs array.
46831
468322011-11-22 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
46833
46834 * sysdeps/powerpc/Makefile: Added locale-defines.sym generation.
46835 * sysdeps/powerpc/locale-defines.sym: Locale definitions for strcasecmp
46836 optimized code.
46837 * sysdeps/powerpc/powerpc32/power7/Makefile: New file.
46838 * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: New file.
46839 * sysdeps/powerpc/powerpc32/power7/strcasecmp_l.S: New file.
46840 * sysdeps/powerpc/powerpc64/power7/Makefile: Added unroll-loop option
46841 for strncasecmp/strncasecmp_l compilation.
46842 * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: New file.
46843 * sysdeps/powerpc/powerpc64/power7/strcasecmp_l.S: New file.
46844
468452011-12-08 Marek Polacek <mpolacek@redhat.com>
46846
46847 [BZ #13484]
46848 * math/bits/math-finite.h: Use __REDIRECT_NTH and __NTH instead
46849 of __asm__.
46850
468512011-12-17 Ulrich Drepper <drepper@gmail.com>
46852
46853 [BZ #13506]
46854 * time/tzfile.c (__tzfile_read): Check values from file header.
46855
468562011-11-21 Will Schmidt <will_schmidt@vnet.ibm.com>
46857
46858 * powerpc/powerpc32/sysdep.h: Define SETUP_GOT_ACCESS() macro.
46859 * powerpc/powerpc32/a2/memcpy.S: Use SETUP_GOT_ACCESS() macro.
46860 * powerpc/powerpc32/dl-start.S: Likewise.
46861 * powerpc/powerpc32/elf/start.S: Likewise.
46862 * powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
46863 * powerpc/powerpc32/fpu/s_ceil.S: Likewise.
46864 * powerpc/powerpc32/fpu/s_ceilf.S: Likewise.
46865 * powerpc/powerpc32/fpu/s_floor.S: Likewise.
46866 * powerpc/powerpc32/fpu/s_floorf.S: Likewise.
46867 * powerpc/powerpc32/fpu/s_lround.S: Likewise.
46868 * powerpc/powerpc32/fpu/s_rint.S: Likewise.
46869 * powerpc/powerpc32/fpu/s_rintf.S: Likewise.
46870 * powerpc/powerpc32/fpu/s_round.S: Likewise.
46871 * powerpc/powerpc32/fpu/s_roundf.S: Likewise.
46872 * powerpc/powerpc32/fpu/s_trunc.S: Likewise.
46873 * powerpc/powerpc32/fpu/s_truncf.S: Likewise.
46874 * powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
46875 * powerpc/powerpc32/memset.S: Likewise.
46876 * powerpc/powerpc32/power4/fpu/s_llround.S: Likewise.
46877 * powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
46878 * powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
46879 * powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
46880 * powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
46881 * powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
46882 * powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
46883 * powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
46884 * unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: Likewise.
46885 * unix/sysv/linux/powerpc/powerpc32/brk.S: Likewise.
46886 * unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Likewise.
46887 * unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
46888 * unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
46889
468902011-11-18 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
46891
46892 * math/libm-test.inc: Added more nearbyint tests.
46893 * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S: New file.
46894 * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S: New file.
46895 * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S: New file.
46896 * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: New file.
46897
468982011-11-21 Ross Lagerwall <rosslagerwall@gmail.com>
46899
46900 * resolv/res_init.c (__res_vinit): Open /etc/resolv.conf with
46901 FD_CLOEXEC.
46902
469032011-11-14 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
46904
46905 * sysdeps/x86_64/multiarch/Makefile [subdir=wcsmbs] (sysdep_routines):
46906 Add wcscpy-ssse3 wcscpy-c.
46907 * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: New file.
46908 * sysdeps/x86_64/multiarch/wcscpy-c.c: New file.
46909 * sysdeps/x86_64/multiarch/wcscpy.S: New file.
46910 * sysdeps/x86_64/wcschr.S: New file.
46911 * sysdeps/x86_64/wcsrchr.S: New file.
46912 * string/test-strcmp.c: Remove checking of wcscmp function for
46913 wrong alignments.
46914 * sysdeps/i386/i686/multiarch/Makefile [subdir=wcsmbs]
46915 (sysdep_routines): Add wcscpy-ssse3 wcscpy-c wcschr-sse2 wcschr-c
46916 wcsrchr-sse2 wcsrchr-c.
46917 * sysdeps/i386/i686/multiarch/wcschr.S: New file.
46918 * sysdeps/i386/i686/multiarch/wcschr-c.c: New file.
46919 * sysdeps/i386/i686/multiarch/wcschr-sse2.S: New file.
46920 * sysdeps/i386/i686/multiarch/wcsrchr.S: New file.
46921 * sysdeps/i386/i686/multiarch/wcsrchr-c.c: New file.
46922 * sysdeps/i386/i686/multiarch/wcsrchr-sse2.S: New file.
46923 * sysdeps/i386/i686/multiarch/wcscpy.S: New file.
46924 * sysdeps/i386/i686/multiarch/wcscpy-c.c: New file.
46925 * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: New file.
46926 * wcsmbc/wcschr.c (WCSCHR): New macro.
46927
469282011-11-17 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
46929
46930 * wcsmbs/Makefile (strop-tests): Add wcsrchr wcscpy.
46931 * wcsmbs/test-wcsrchr.c: New file.
46932 * string/test-strrchr.c: Add wcsrchr support.
46933 (WIDE): New macro.
46934 * wcsmbs/test-wcscpy.c: New file.
46935 * string/test-strcpy.c: Add wcscpy support.
46936 (WIDE): New macro.
46937
469382011-12-10 Ulrich Drepper <drepper@gmail.com>
46939
46940 * sysdeps/generic/dl-hash.h (_dl_elf_hash): Lift one operation out of
46941 the inner loop.
46942
469432011-12-06 Andreas Schwab <schwab@linux-m68k.org>
46944
46945 [BZ #13472]
46946 * sysdeps/powerpc/fpu/e_hypot.c (twoM600): Correct value.
46947
469482011-12-04 Ulrich Drepper <drepper@gmail.com>
46949
46950 * sysdeps/generic/dl-hash.h (_dl_elf_hash): Fix attribute.
46951 Minor optimizations.
46952
46953 * sunrpc/clnt_unix.c (clntunix_control): Fix aliasing issues.
46954 * sunrpc/clnt_tcp.c (clnttcp_control): Likewise.
46955 * sunrpc/clnt_udp.c (clntudp_call): Likewise.
46956
469572011-12-03 Ulrich Drepper <drepper@gmail.com>
46958
46959 * inet/netinet/in.h: Provide versions of IN6_IS_ADDR_UNSPECIFIED,
46960 IN6_IS_ADDR_LOOPBACK, IN6_IS_ADDR_LINKLOCAL, IN6_IS_ADDR_SITELOCAL,
46961 IN6_IS_ADDR_V4MAPPED, IN6_IS_ADDR_V4COMPAT, and IN6_ARE_ADDR_EQUAL
46962 for gcc to avoid warnings.
46963 * inet/Makefile (tests): Add tst-checks.
46964 * inet/tst-checks.c: New file.
46965
46966 * sysdeps/generic/dl-hash.h (_dl_elf_hash): Add attribute to avoid
46967 warning.
46968
46969 * sysdeps/x86_64/multiarch/wmemcmp-c.c: Provide prototype for
46970 __wmemcmp_sse2.
46971
46972 * sysdeps/x86_64/fpu/s_scalbln.c: Removed.
46973 * sysdeps/x86_64/fpu/s_scalbn.c: Removed.
46974
46975 * malloc/mcheck.h: Fix use of incorrect encoding in comment.
46976
469772011-12-02 Ulrich Drepper <drepper@gmail.com>
46978
46979 * nis/nis_findserv.c (__nis_findfastest_with_timeout): Avoid aliasing
46980 problem.
46981
46982 * nscd/aicache.c (addhstaiX): Avoid unused variable warning.
46983
469842011-11-29 Joseph Myers <joseph@codesourcery.com>
46985
46986 * sysdeps/unix/sysv/linux/sh/bits/atomic.h (rNOSP): Define
46987 conditional on GCC version.
46988 (__arch_compare_and_exchange_val_8_acq)
46989 (__arch_compare_and_exchange_val_16_acq)
46990 (__arch_compare_and_exchange_val_32_acq, atomic_exchange_and_add)
46991 (atomic_add, atomic_add_negative, atomic_add_zero, atomic_bit_set)
46992 (atomic_bit_test_set): Use rNOSP instead of "r" constraints.
46993
469942011-12-02 Joseph Myers <joseph@codesourcery.com>
46995
46996 * sysdeps/sh/backtrace.c: New file.
46997
469982011-12-02 Andreas Schwab <schwab@redhat.com>
46999
47000 * misc/bits/select2.h (__FD_ELT): Mark as extension. Add
47001 parenthesis.
47002
470032011-12-01 Andreas Schwab <schwab@redhat.com>
47004
47005 * sysdeps/unix/sysv/linux/futimes.c: Truncate time values when
47006 falling back to utime.
47007
470082011-11-30 Andreas Schwab <schwab@redhat.com>
47009
47010 * sysdeps/s390/fpu/libm-test-ulps: Relax cpow (2 + 3 i, 4 + 0 i)
47011 expectations for float.
47012
470132011-11-29 Andreas Schwab <schwab@redhat.com>
47014
47015 * locale/weight.h (findidx): Add parameter len.
47016 * locale/weightwc.h (findidx): Likewise.
47017 * posix/fnmatch_loop.c (FCT): Adjust caller.
47018 * posix/regcomp.c (build_equiv_class): Likewise.
47019 * posix/regex_internal.h (re_string_elem_size_at): Likewise.
47020 * posix/regexec.c (check_node_accept_bytes): Likewise.
47021 * string/strcoll_l.c (STRCOLL): Likewise.
47022 * string/strxfrm_l.c (STRXFRM): Likewise.
47023
470242011-11-17 Ulrich Drepper <drepper@gmail.com>
47025
47026 * Makefile.in: Remove CVSOPT handling.
47027 * configure.in: Remove use of AC_REVISION.
47028 * iconvdata/Makefile (distribute): No need to filter out CVS.
47029 * scripts/list-sources.sh: Remove CVS, subversion and monotone
47030 handling.
47031
470322011-11-16 Andreas Schwab <schwab@redhat.com>
47033
47034 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S
47035 [USE_AS_STRCASECMP_L]: Fix argument offsets for non-PIC.
47036 [USE_AS_STRNCASECMP_L]: Likewise.
47037 (__strcasecmp_ssse3, __strncasecmp_ssse3): Handle
47038 NO_TLS_DIRECT_SEG_REFS.
47039 * sysdeps/i386/i686/multiarch/strcmp-sse4.S [USE_AS_STRCASECMP_L]:
47040 Fix argument offsets for non-PIC.
47041 [USE_AS_STRNCASECMP_L]: Likewise.
47042 (__strcasecmp_sse4_2, __strncasecmp_sse4_2): Handle
47043 NO_TLS_DIRECT_SEG_REFS.
47044
470452011-11-15 Ulrich Drepper <drepper@gmail.com>
47046
47047 * locale/loadarchive.c (_nl_load_locale_from_archive): Open files with
47048 O_CLOEXEC.
47049 * locale/loadlocale.c (_nl_load_locale): Likewise.
47050
470512011-11-15 Andreas Schwab <schwab@redhat.com>
47052
47053 * sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU)
47054 [__ASSUME_POSIX_CPU_TIMERS > 0]: Assign to retval and break.
47055 * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c
47056 (SYSCALL_GETTIME): Set errno on error.
47057
47058 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Properly
47059 count references to noai6ai_cached.
47060
470612011-11-15 Ulrich Drepper <drepper@gmail.com>
47062
47063 * time/getdate.c (__getdate_r): Set FD_CLOEXEC for given file.
47064
47065 * sysdeps/unix/sysv/linux/readonly-area.c (__readonly_area): Set
47066 FD_CLOEXEC for /proc/self/maps.
47067
47068 * sysdeps/unix/sysv/linux/getsysstats.c (phys_pages_info): Set
47069 FD_CLOEXEC for /proc/meminfo.
47070
47071 * sysdeps/posix/getaddrinfo.c (gaiconf_init): Set FD_CLOEXEC for
47072 gai.conf.
47073
47074 * resolv/res_query.c (res_hostalias): Don't allow cancellation and set
47075 FD_CLOEXEC for given file.
47076
47077 * resolv/res_hconf.c (do_init): Set FD_CLOEXEC for host.conf.
47078
47079 * resolv/gethnamaddr.c (_sethtent): Don't allow cancellation and set
47080 FD_CLOEXEC for /etc/hosts.
47081 (_gethtent): Likewise.
47082
47083 * nss/nsswitch.c (nss_parse_file): Set FD_CLOEXEC.
47084
47085 * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): Don't allow
47086 cancellation and set FD_CLOEXEC for /etc/netgroup.
47087
47088 * nss/nss_files/files-key.c (search): Don't allow cancellation when
47089 reading /etc/publickey.
47090
47091 * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Don't
47092 allow cancellation when reading /etc/group.
47093
47094 * nss/nss_files/files-alias.c (internal_setent): Don't allow
47095 cancellation.
47096 (get_next_alias): Likewise for included file. Also set FD_CLOEXEC.
47097
47098 * nss/nss_files/files-XXX.c (internal_setent): Don't allow cancellation
47099 when using data file.
47100
47101 * nis/nss-default.c (init): Set FD_CLOEXEC for /etc/default/nss.
47102
47103 * nis/nis_file.c (read_nis_obj): Set FD_CLOEXEC.
47104 (write_nis_obj): Use "c" and "e" in fopen.
47105
47106 * misc/mntent_r.c (__setmntent): Also append e to fopen format.
47107
47108 * misc/getusershell.c (initshells): Set FD_CLOEXEC for /etc/shells.
47109
47110 * misc/getttyent.c (setttyent): Set FD_CLOEXEC.
47111
47112 * misc/getpass.c (getpass): Set FD_CLOEXEC for /dev/tty.
47113
47114 * intl/localealias.c (read_alias_file): Set FD_CLOEXEC for
47115 locale.alias.
47116
47117 * inet/ruserpass.c (ruserpass): Set FD_CLOEXEC for .netrc.
47118
47119 * inet/rcmd.c (iruserfopen): Set FD_CLOEXEC for hosts.equiv.
47120
47121 * iconv/gconv_conf.c (read_conf_file): Set FD_CLOEXEC for config file.
47122
47123 * hesiod/hesiod.c (parse_config_file): Prevent cancellation in config
47124 file parsing and set FD_CLOEXEC.
47125
471262011-11-14 Ulrich Drepper <drepper@gmail.com>
47127
47128 * time/tzfile.c (__tzfile_read): Use "e" in fopen call.
47129
471302011-11-14 Andreas Schwab <schwab@redhat.com>
47131
47132 * malloc/arena.c (arena_get2): Don't call reused_arena when
47133 _int_new_arena failed.
47134
471352011-11-14 Ulrich Drepper <drepper@gmail.com>
47136
47137 * sysdeps/i386/i686/multiarch/Makefile [subdir=string]
47138 (sysdep_routines): Add strcasecmp_l-sse4 and strncase_l-sse4.
47139 * sysdeps/i386/i686/multiarch/strcasecmp.S: Re-enable SSE4.2 code.
47140 * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
47141 * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
47142 * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Change to allow reuse
47143 to compile strcasecmp and strncasecmp.
47144 * sysdeps/i386/i686/multiarch/strcasecmp_l-sse4.S: New file.
47145 * sysdeps/i386/i686/multiarch/strncase_l-sse4.S: New file.
47146
47147 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Use L macro consistently.
47148
471492011-11-13 Ulrich Drepper <drepper@gmail.com>
47150
47151 * sysdeps/i386/i686/multiarch/Makefile [subdir=string]: Add
47152 locale-defines.sym to gen-as-const-headers.
47153 (sysdep_routines): Add strcasecmp_l-c, strcasecmp-c,
47154 strcasecmp_l-ssse3, strncase_l-c, strncase-c, and strncase_l-ssse3.
47155 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Change to allow reuse
47156 to compile strcasecmp and strncasecmp.
47157 * sysdeps/i386/i686/multiarch/strcmp.S: Allow to use for
47158 strcasecmp_l and strncasecmp_l.
47159 * sysdeps/i386/i686/multiarch/locale-defines.sym: New file.
47160 * sysdeps/i386/i686/multiarch/strcasecmp-c.c: New file.
47161 * sysdeps/i386/i686/multiarch/strcasecmp.S: New file.
47162 * sysdeps/i386/i686/multiarch/strcasecmp_l-c.c: New file.
47163 * sysdeps/i386/i686/multiarch/strcasecmp_l-ssse3.S: New file.
47164 * sysdeps/i386/i686/multiarch/strcasecmp_l.S: New file.
47165 * sysdeps/i386/i686/multiarch/strncase-c.c: New file.
47166 * sysdeps/i386/i686/multiarch/strncase.S: New file.
47167 * sysdeps/i386/i686/multiarch/strncase_l-c.c: New file.
47168 * sysdeps/i386/i686/multiarch/strncase_l-ssse3.S: New file.
47169 * sysdeps/i386/i686/multiarch/strncase_l.S: New file.
47170
471712011-11-12 Ulrich Drepper <drepper@gmail.com>
47172
47173 * sysdeps/unix/clock_gettime.c (clock_gettime): No need to assign
47174 result of SYSDEP_GETTIME_CPU to retval.
47175 * sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU): Add
47176 parameter list to macro. Remove trailing semicolon. Adjust users.
47177
47178 * resolv/getaddrinfo_a.c (getaddrinfo_a): Avoid warning about unused
47179 variable.
47180
47181 * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l): Avoid storing
47182 mantissa words.
47183 * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l): Likewise.
47184
47185 * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Avoid warning
47186 from unused variable.
47187
47188 * sysdeps/generic/sysdep.h: Clean up, pretty print, use dwarf2.h for
47189 DWARF definitions.
47190 * sysdeps/generic/dwarf2.h: Don't define enums when using the file
47191 for assembling.
47192
47193 * elf/dl-iteratephdr.c [!SHARED] (__dl_iterate_phdr): Don't iterate
47194 over namespaces.
47195
47196 * sunrpc/rpc_prot.c (rejected): Fix case value.
47197
47198 * sysdeps/unix/sysv/linux/internal_statvfs.c (INTERNAL_STATVFS): Use
47199 unsigned long long int to avoid warnings in shift.
47200
47201 * posix/regex_internal.c (re_string_reconstruct): Actually use result
47202 of use of trans.
47203 * posix/regex_internal.h (re_string_wchar_at): Remove temporary
47204 variable tmp.
47205
47206 * sysdeps/i386/i686/multiarch/wcscmp-c.c: Avoid warning.
47207 * sysdeps/i386/i686/multiarch/wcslen-c.c: Likewise.
47208 * sysdeps/i386/i686/multiarch/wmemcmp-c.c: Likewise.
47209
47210 * nis/nis_table.c (nis_list): Use variable of correct type for
47211 result of __follow_path call.
47212
472132011-11-07 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
47214
47215 * sysdeps/powerpc/fpu/math_private.h: Using inline assembly version
47216 of math functions ceil, trunc, floor, round, and sqrt, when
47217 avaliable on the platform.
47218 * sysdeps/powerpc/fpu/e_sqrt.c: Undefine __ieee754_sqrt to avoid
47219 name clash.
47220 * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
47221 * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Likewise.
47222 * sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c: Likewise.
47223
472242011-10-30 Marek Polacek <mpolacek@redhat.com>
47225
47226 * libio/wfileops.c (_IO_wfile_underflow_mmap): Remove unused variable.
47227 * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Likewise.
47228
472292011-11-11 Roland McGrath <roland@hack.frob.com>
47230
47231 * include/unistd.h: Fix __readlink return type.
47232 Reported by Chris Metcalf <cmetcalf@tilera.com>.
47233
472342011-11-11 Ulrich Drepper <drepper@gmail.com>
47235
47236 * stdlib/ucontext.h: Undo last change for makecontext.
47237
472382011-11-11 Andreas Schwab <schwab@redhat.com>
47239
47240 * nss/db-Makefile ($(VAR_DB)/group.db): Fix typo in awk script.
47241
47242 * misc/sys/cdefs.h (__REDIRECT_NTHNL): Define.
47243 * setjmp/setjmp.h: Mark functions as non-leaf.
47244 * setjmp/bits/setjmp2.h: Likewise.
47245 * stdlib/ucontext.h: Likewise.
47246
472472011-11-10 Andreas Schwab <schwab@redhat.com>
47248
47249 * malloc/arena.c (_int_new_arena): Don't increment narenas.
47250 (reused_arena): Don't check arena limit.
47251 (arena_get2): Atomically check arena limit.
47252
472532011-11-08 Ulrich Drepper <drepper@gmail.com>
47254
47255 * locale/findlocale.c (_nl_find_locale): Use __strcasecmp_l.
47256 * intl/localealias.c (strcasecmp): Define using __strcasecmp_l.
47257
47258 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Remove unnecessary
47259 instructions.
47260
472612011-11-07 Andreas Schwab <schwab@redhat.com>
47262
47263 * libio/genops.c (_IO_flush_all_lockp): Only register cleanup
47264 handler when locking.
47265
47266 * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
47267 Fix size of allocated buffer.
47268
472692011-11-04 Andreas Schwab <schwab@redhat.com>
47270
47271 [BZ #10103]
47272 * math/math.h [__NO_LONG_DOUBLE_MATH && !_LIBC]: Provide
47273 declarations for long double functions.
47274 * math/complex.h [__NO_LONG_DOUBLE_MATH && !_LIBC]: Likewise.
47275
47276 * elf/sprof.c (load_shobj): Fix off-by-one when reading link name.
47277
472782011-11-03 Andreas Schwab <schwab@redhat.com>
47279
47280 * nscd/nscd.c (main): Don't start AVC thread until credentials are
47281 installed.
47282
47283 * nss/makedb.c (set_file_creation_context): Do nothing if SELinux
47284 is disabled.
47285
472862011-11-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
47287
47288 * bits/ioctl-types.h (_IOT_sgttyb): Set number of chars to 4.
47289
472902011-11-01 Andreas Schwab <schwab@linux-m68k.org>
47291
47292 * include/alloca.h (stackinfo_alloca_round): Define.
47293 (extend_alloca): Use it.
47294 [_STACK_GROWS_UP]: Correct check for adjacent allocation.
47295 * elf/dl-deps.c (_dl_map_object_deps): Don't round alloca size
47296 here.
47297
47298 * scripts/check-local-headers.sh: Ignore libaudit.h.
47299
47300 * nscd/Makefile (extra-objs): Make recursively expanded.
47301
473022011-11-01 Ulrich Drepper <drepper@gmail.com>
47303
47304 * sysdeps/x86_64/strcmp.S: Fix test for non-ASCII locales.
47305 * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
47306
47307 * posix/tst-rfc3484.c: Add missing __free_in6ai dummy function.
47308 * posix/tst-rfc3484-2.c: Likewise.
47309 * posix/tst-rfc3484-3.c: Likewise.
47310
47311 * sysdeps/unix/sysv/linux/bits/uio.h: Declare process_vm_readv and
47312 process_vm_writev.
47313 * sysdeps/unix/sysv/linux/syscalls.list: Add process_vm_readv and
47314 process_vm_writev.
47315 * sysdeps/unix/sysv/linux/Versions: Export process_vm_readv and
47316 process_vm_writev from libc using GLIBC_2.15 version.
47317
47318 * nscd/connections.c: Use kernel headers instead of <netlink/netlink.h>.
47319
473202011-10-31 Paul Pluzhnikov <ppluzhnikov@google.com>
47321
47322 * elf/dl-deps.c (_dl_map_object_deps): Reuse alloca space to reduce
47323 stack usage.
47324
473252011-10-31 Ulrich Drepper <drepper@gmail.com>
47326
47327 [BZ #13367]
47328 * nss/getent.c (initgroups_keys): Show error message in case no group
47329 names are given.
47330
47331 * include/ifaddrs.h: Declare __free_in6ai and __bump_nl_timestamp.
47332 * inet/check_pf.c: Provide dummy versions of __free_in6ai and
47333 __bump_nl_timestamp.
47334 * nscd/connections (nscd_init): When host database is served open
47335 netlink socket and request notification about configuration changes.
47336 (main_loop_poll): Track netlink file descriptor and bump timestamp
47337 in case data becomes available.
47338 (main_loop_epoll): Likewise.
47339 * nscd/nscd-client.h (DB_VERSION): Bump to 2.
47340 (database_pers_head): Add extra_data fileds.
47341 Declare __nscd_get_mapping and __nscd_get_nl_timestamp.
47342 * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp): New function.
47343 * nscd/nscd_helper.c (__nscd_get_mapping): Renamed from get_mapping.
47344 Adjust caller.
47345 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Don't call free on
47346 in6ai data, call __free_in6ai.
47347 * sysdeps/unix/sysv/linux/Makefile [subdir=nscd] (sysdep-CFLAGS):
47348 Add -DHAVE_NETLINK.
47349 * sysdeps/unix/sysv/linux/check_pf.c: Major rewrite. Cache the
47350 interface information. Reuse previous data if netlink timestamp
47351 is not changed.
47352 (__bump_nl_timestamp): New function.
47353 (__free_in6ai): New function.
47354
473552011-10-30 Ulrich Drepper <drepper@gmail.com>
47356
47357 * sysdeps/unix/sysv/linux/check_pf.c (make_request): Don't call
47358 close_not_cancel_no_status here.
47359 (__check_pf): Reorganize code a bit to not call close twice if OOM.
47360
473612011-10-29 Ulrich Drepper <drepper@gmail.com>
47362
47363 [BZ #13276]
47364 * malloc/malloc.c (munmap_chunk): Don't use assertion to check munmap
47365 return value.
47366
47367 * posix/sys/wait.h: Mark wait3 and wait4 with __THROWNL.
47368 * libio/stdio.h: Mark sprintf, vsprintf snprintf, vsnprintf, vasprintf,
47369 asprintf, __asprintf, obstack_printf, obstack_vprintf with __THROWNL.
47370
473712011-07-03 Andreas Jaeger <aj@suse.de>
47372
47373 [BZ #10709]
47374 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Fix incorrect rounding
47375 of sin. Patch suggested by Paul Zimmermann <zimmerma+gcc@loria.fr>.
47376 * math/libm-test.inc (sin_test): Add test case.
47377
473782011-10-29 Ulrich Drepper <drepper@gmail.com>
47379
47380 [BZ #13337]
47381 * elf/sprof.c (load_shobj): Correctly NUL-terminate link name.
47382 Patch by Thomas Jarosch <thomas.jarosch@intra2net.com>.
47383
47384 * elf/chroot_canon.c (chroot_canon): Cleanups.
47385
47386 * elf/dl-lookup.c (_dl_setup_hash): Avoid warning.
47387
47388 [BZ #13335]
47389 * elf/chroot_canon.c (chroot_canon): Fix readlink call.
47390 Patch by Thomas Jarosch <thomas.jarosch@intra2net.com>.
47391
47392 * string/test-strchr.c: Make usable for strchrnul testing.
47393 * string/test-strchrnul.c: New file.
47394 * string/Makefile (strop-tests): Add strchrnul.
47395
47396 * po/it.po: Update from translation team.
47397 * po/es.po: Likewise.
47398
473992011-10-28 Ulrich Drepper <drepper@gmail.com>
47400
47401 * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu_tolower): Take
47402 the three constants needed as parameters. Drop the others.
47403 (strcasestr_sse42): Load uclow, uchigh, and lcqword and pass to
47404 __m128i_strloadu_tolower.
47405 Create and initialize variable zero and use it in all the places
47406 where _mm_setzero_si128 was used.
47407
47408 * sysdeps/x86_64/fpu/multiarch/Makefile: Don't build brandred-avx.c,
47409 doasin-avx.c, dosincos-avx.c, e_asin-avx.c, mpatan-avx.c,
47410 mpatan2-avx.c, mpsqrt-avx.c, mptan-avx.c, sincos32-avx.c.
47411 * sysdeps/x86_64/fpu/multiarch/e_asin.c: There are no _avx variants
47412 anymore.
47413 * sysdeps/x86_64/fpu/multiarch/e_atan2-avx.c: Don't redirect __mpatan2.
47414 * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c: Don't redirect __mpatan.
47415 * sysdeps/x86_64/fpu/multiarch/s_sin-avx.c: Don't redirect __branred,
47416 __docos, __dubsin, __mpcos, __mpcos1, __mpsin, __mpsin1.
47417 * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c: Don't redirect __branred,
47418 __mpranred, __mptan.
47419 * sysdeps/x86_64/fpu/multiarch/brandred-avx.c: Removed.
47420 * sysdeps/x86_64/fpu/multiarch/doasin-avx.c: Removed.
47421 * sysdeps/x86_64/fpu/multiarch/dosincos-avx.c: Removed.
47422 * sysdeps/x86_64/fpu/multiarch/e_asin-avx.c: Removed.
47423 * sysdeps/x86_64/fpu/multiarch/mpatan-avx.c: Removed.
47424 * sysdeps/x86_64/fpu/multiarch/mpatan2-avx.c: Removed.
47425 * sysdeps/x86_64/fpu/multiarch/mpsqrt-avx.c: Removed.
47426 * sysdeps/x86_64/fpu/multiarch/mptan-avx.c: Removed.
47427 * sysdeps/x86_64/fpu/multiarch/sincos32-avx.c: Removed.
47428
474292011-10-28 Andreas Schwab <schwab@redhat.com>
47430
47431 * sysdeps/i386/i686/multiarch/strnlen-c.c (libc_hidden_def): Only
47432 redefine if SHARED.
47433 * sysdeps/i386/i686/multiarch/wcscmp-c.c (libc_hidden_def): Likewise.
47434
47435 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Move
47436 wide char related routines to wcsmbs subdir.
47437
474382011-10-27 Andreas Schwab <schwab@redhat.com>
47439
47440 [BZ #13344]
47441 * misc/sys/cdefs.h (__THROWNL): Define.
47442 * posix/unistd.h: Use __THREADNL instead of __THREAD
47443 for memory synchronization functions.
47444
474452011-10-26 Roland McGrath <roland@hack.frob.com>
47446
47447 [BZ #13349]
47448 * libio/Versions (GLIBC_2.0): Remove open_obstack_stream, which
47449 doesn't exist.
47450 * manual/stdio.texi (Obstack Streams): Node removed.
47451
474522011-10-26 Andreas Schwab <schwab@redhat.com>
47453
47454 * sysdeps/ieee754/flt-32/e_j0f.c: Fix use of math_force_eval.
47455 * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
47456 * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
47457
47458 * math/math_private.h (math_force_eval): Allow non-addressable
47459 arguments.
47460 * sysdeps/i386/fpu/math_private.h (math_force_eval): Likewise.
47461
474622011-10-25 Ulrich Drepper <drepper@gmail.com>
47463
47464 * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Comment everything out, the
47465 file is not needed.
47466
47467 * sysdeps/x86_64/fpu/multiarch/e_asin.c: Support AVX variants.
47468 * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Likewise.
47469 * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
47470 * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
47471 * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
47472 * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
47473 * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
47474 * sysdeps/x86_64/fpu/multiarch/Makefile: Fix some CFLAGS-* variables.
47475 Add AVX variants.
47476 * sysdeps/x86_64/fpu/multiarch/brandred-avx.c: New file.
47477 * sysdeps/x86_64/fpu/multiarch/doasin-avx.c: New file.
47478 * sysdeps/x86_64/fpu/multiarch/dosincos-avx.c: New file.
47479 * sysdeps/x86_64/fpu/multiarch/e_asin-avx.c: New file.
47480 * sysdeps/x86_64/fpu/multiarch/e_atan2-avx.c: New file.
47481 * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c: New file.
47482 * sysdeps/x86_64/fpu/multiarch/e_log-avx.c: New file.
47483 * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: New file.
47484 * sysdeps/x86_64/fpu/multiarch/mpatan-avx.c: New file.
47485 * sysdeps/x86_64/fpu/multiarch/mpatan2-avx.c: New file.
47486 * sysdeps/x86_64/fpu/multiarch/mpexp-avx.c: New file.
47487 * sysdeps/x86_64/fpu/multiarch/mplog-avx.c: New file.
47488 * sysdeps/x86_64/fpu/multiarch/mpsqrt-avx.c: New file.
47489 * sysdeps/x86_64/fpu/multiarch/mptan-avx.c: New file.
47490 * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c: New file.
47491 * sysdeps/x86_64/fpu/multiarch/s_sin-avx.c: New file.
47492 * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c: New file.
47493 * sysdeps/x86_64/fpu/multiarch/sincos32-avx.c: New file.
47494 * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: New file.
47495
47496 * sysdeps/x86_64/multiarch/init-arch.h: Make bit_* macros available
47497 all the time. Define bit_AVX. Define HAS_* macros using bit_* macros.
47498
47499 * sysdeps/x86_64/multiarch/strcmp-sse42.S: Move common code to earlier
47500 place. Use VEX encoding when compiling for AVX.
47501
475022011-10-25 Andreas Schwab <schwab@redhat.com>
47503
47504 * wcsmbs/wcscmp.c (WCSCMP): Compare as wchar_t, not wint_t.
47505 * wcsmbs/wmemcmp.c (WMEMCMP): Likewise.
47506
47507 * string/test-strchr.c (do_test): Don't generate NUL bytes.
47508
475092011-10-25 Ulrich Drepper <drepper@gmail.com>
47510
47511 * sysdeps/ieee754/dbl-64/e_atanh.c: Use math_force_eval instead of a
47512 useless if() expression.
47513 * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
47514 * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
47515 * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
47516 * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
47517 * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
47518 * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
47519 * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
47520 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
47521 * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
47522 * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
47523 * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
47524 * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
47525 * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
47526 * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
47527 * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
47528 * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
47529 * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
47530 * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
47531 * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
47532
47533 * sysdeps/x86_64/fpu/math_private.h: Use VEX encoding when possible.
47534
475352011-10-25 Andreas Schwab <schwab@redhat.com>
47536
47537 * elf/dl-deps.c (_dl_map_object_deps): Remove always true
47538 condition.
47539 * elf/dl-fini.c (_dl_sort_fini): Likewise.
47540
475412011-10-25 Ulrich Drepper <drepper@gmail.com>
47542
47543 * sysdeps/ieee754/dbl-64/branred.c: Move FMA4 code into separate
47544 .text section. Avoid duplicate constants.
47545 * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
47546 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
47547 * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
47548 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
47549 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
47550 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
47551 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
47552 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
47553 * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
47554 * sysdeps/ieee754/dbl-64/mpa.h: Likewise.
47555 * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
47556 * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
47557 * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
47558 * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
47559 * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
47560 * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
47561 * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
47562 * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
47563 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
47564 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
47565 * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
47566 * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
47567 * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
47568 * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: Likewise.
47569 * sysdeps/x86_64/fpu/multiarch/doasin-fma4.c: Likewise.
47570 * sysdeps/x86_64/fpu/multiarch/dosincos-fma4.c: Likewise.
47571 * sysdeps/x86_64/fpu/multiarch/e_asin-fma4.c: Likewise.
47572 * sysdeps/x86_64/fpu/multiarch/e_atan2-fma4.c: Likewise.
47573 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c: Likewise.
47574 * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: Likewise.
47575 * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c: Likewise.
47576 * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: Likewise.
47577 * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
47578 * sysdeps/x86_64/fpu/multiarch/mpatan-fma4.c: Likewise.
47579 * sysdeps/x86_64/fpu/multiarch/mpatan2-fma4.c: Likewise.
47580 * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: Likewise.
47581 * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: Likewise.
47582 * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma4.c: Likewise.
47583 * sysdeps/x86_64/fpu/multiarch/mptan-fma4.c: Likewise.
47584 * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c: Likewise.
47585 * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c: Likewise.
47586 * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c: Likewise.
47587 * sysdeps/x86_64/fpu/multiarch/sincos32-fma4.c: Likewise.
47588 * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Likewise.
47589 * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: Likewise.
47590
475912011-10-24 Ulrich Drepper <drepper@gmail.com>
47592
47593 * sysdeps/x86_64/dla.h: Move to ...
47594 * sysdeps/x86_64/fpu/dla.h: ...here.
47595 (DLA_FMS): Some compilers fail to inline __builtin_fma in some
47596 situations. Use __builtin_fma only for gcc 4.6 and up.
47597
47598 * config.make.in: Add have-mfma4 entry.
47599 * configure.in: Substitute libc_cv_cc_fma4.
47600 * math/Makefile (dbl-only-routines): Add sincostab.
47601 * sysdeps/ieee754/dbl-64/dosincos.c: Don't include sincos.tbl.
47602 Use __sincostab not sincos.
47603 * sysdeps/ieee754/dbl-64/e_asin.c: Don't define aliases when function
47604 name is a macro.
47605 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
47606 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
47607 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
47608 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise. Define singArctan2
47609 using __copysign.
47610 * sysdeps/ieee754/dbl-64/mpa.c: Don't export __acr. Don't define
47611 __cr and __cpymn. Define __cpy unless NO___CPY is defined. Define
47612 norm, denorm, and __mp_dbl unless NO___MP_DBL is defined.
47613 * sysdeps/ieee754/dbl-64/mpa.h: Don't declare __acr, __cr, __cpymn,
47614 and __inv.
47615 * sysdeps/ieee754/dbl-64/mpsqrt.c: Make fastiroot static.
47616 * sysdeps/ieee754/dbl-64/s_atan.c: Define __signArctan using
47617 __copysign.
47618 * sysdeps/ieee754/dbl-64/s_sin.c: Use __sincostab not sincos. Don't
47619 define aliases when function name is a macro.
47620 * sysdeps/ieee754/dbl-64/sincostab.c: Renamed from
47621 sysdeps/ieee754/dbl-64/sincos.tbl.
47622 * sysdeps/x86_64/fpu/multiarch/Makefile: Add entries to build
47623 fma4-enabled routines.
47624 * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: New file.
47625 * sysdeps/x86_64/fpu/multiarch/doasin-fma4.c: New file.
47626 * sysdeps/x86_64/fpu/multiarch/dosincos-fma4.c: New file.
47627 * sysdeps/x86_64/fpu/multiarch/e_asin-fma4.c: New file.
47628 * sysdeps/x86_64/fpu/multiarch/e_asin.c: New file.
47629 * sysdeps/x86_64/fpu/multiarch/e_atan2-fma4.c: New file.
47630 * sysdeps/x86_64/fpu/multiarch/e_atan2.c: New file.
47631 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c: New file.
47632 * sysdeps/x86_64/fpu/multiarch/e_exp.c: New file.
47633 * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: New file.
47634 * sysdeps/x86_64/fpu/multiarch/e_log.c: New file.
47635 * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c: New file.
47636 * sysdeps/x86_64/fpu/multiarch/e_pow.c: New file.
47637 * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: New file.
47638 * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: New file.
47639 * sysdeps/x86_64/fpu/multiarch/mpatan-fma4.c: New file.
47640 * sysdeps/x86_64/fpu/multiarch/mpatan2-fma4.c: New file.
47641 * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: New file.
47642 * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: New file.
47643 * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma4.c: New file.
47644 * sysdeps/x86_64/fpu/multiarch/mptan-fma4.c: New file.
47645 * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c: New file.
47646 * sysdeps/x86_64/fpu/multiarch/s_atan.c: New file.
47647 * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c: New file.
47648 * sysdeps/x86_64/fpu/multiarch/s_sin.c: New file.
47649 * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c: New file.
47650 * sysdeps/x86_64/fpu/multiarch/s_tan.c: New file.
47651 * sysdeps/x86_64/fpu/multiarch/sincos32-fma4.c: New file.
47652 * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: New file.
47653 * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: New file.
47654
47655 * sysdeps/ieee754/dbl-64/doasin.c: Adjust for DLA_FMA -> DLA_FMS
47656 rename.
47657 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
47658 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
47659 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
47660 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
47661 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
47662 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
47663 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
47664 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
47665
476662011-10-24 Andreas Schwab <schwab@redhat.com>
47667
47668 * wcsmbs/wcslen.c: Don't define WCSLEN, reverse logic.
47669
476702011-10-23 Ulrich Drepper <drepper@gmail.com>
47671
47672 * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: New file.
47673
47674 * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Add some branch
47675 prediction.
47676 * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: New file.
47677
47678 * string/strnlen.c: Don't define STRNLEN, reverse logic.
47679 Remove unused variable magic_bits.
47680 * sysdeps/i386/i686/multiarch/rtld-strnlen.c: New file.
47681
47682 * string/strnlen.c: Define and use STRNLEN macro.
47683 * sysdeps/i386/i686/multiarch/Makefile [string] (sysdep_routines):
47684 Add strnlen-sse2, strnlen-c, wcslen-sse2, and wcslen-c.
47685 * sysdeps/i386/i686/multiarch/strlen-sse2.S: Add support for strnlen.
47686 * wcsmbs/wcslen.c: Define and use WCSLEN.
47687 * sysdeps/i386/i686/multiarch/strnlen-c.c: New file.
47688 * sysdeps/i386/i686/multiarch/strnlen-sse2.S: New file.
47689 * sysdeps/i386/i686/multiarch/strnlen.S: New file.
47690 * sysdeps/i386/i686/multiarch/wcslen-c.c: New file.
47691 * sysdeps/i386/i686/multiarch/wcslen-sse2.S: New file.
47692 * sysdeps/i386/i686/multiarch/wcslen.S: New file.
47693 Patch by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>.
47694
476952011-10-20 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
47696
47697 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
47698 strnlen-sse2-no-bsf.
47699 Rename strlen-no-bsf to strlen-sse2-no-bsf.
47700 * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Rename to
47701 * sysdeps/x86_64/multiarch/strlen-sse2-no-bsf.S:
47702 Add strnlen support.
47703 (USE_AS_STRNLEN): New macro.
47704 * sysdeps/x86_64/multiarch/strnlen-sse2-no-bsf.S: New file.
47705 * sysdeps/x86_64/multiarch/strcat-ssse3.S: Update.
47706 Rename strlen-no-bsf.S to strlen-sse2-no-bsf.S
47707 * sysdeps/x86_64/wcslen.S: New file.
47708
477092011-10-20 Michael Zolotukhin <michael.v.zolotukhin@gmail.com>
47710
47711 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Update.
47712 XMM-moves are used for copying on small sizes.
47713
477142011-10-19 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
47715
47716 * wcsmbs/Makefile (strop-tests): Add wcschr.
47717 * wcsmbs/test-wcschr.c: New file.
47718 * string/test-strchr.c: Update.
47719 Add wcschr support.
47720 (WIDE): New macro.
47721
477222011-10-18 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
47723
47724 * wcsmbs/Makefile (strop-tests): Add wcslen.
47725 * wcsmbs/test-wcslen.c: New file.
47726 * string/test-strlen.c: Update.
47727 Add wcslen support.
47728 (WIDE): New macro.
47729
477302011-10-23 Ulrich Drepper <drepper@gmail.com>
47731
47732 * po/it.po: Update from translation team.
47733
477342011-09-22 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
47735
47736 * sysdeps/x86_64/wcscmp.S: Update.
47737 Fix wrong comparison semantics.
47738 wcscmp shall use signed comparison not unsigned.
47739 Don't use substraction to avoid overflow bug.
47740 * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: Likewise.
47741 * wcsmbc/wcscmp.c: Likewise.
47742 * string/test-strcmp.c: Likewise.
47743 Add new tests to check cases with negative values.
47744
477452011-10-23 Ulrich Drepper <drepper@gmail.com>
47746
47747 * sysdeps/ieee754/dbl-64/dla.h: Move DLA_FMA definition to...
47748 * sysdeps/x86_64/dla.h: ...here. New file.
47749 * sysdeps/ieee754/dbl-64/doasin.c: Use <dla.h> not "dla.h".
47750 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
47751 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
47752 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
47753 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
47754 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
47755 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
47756 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
47757 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
47758
477592011-10-23 Andreas Schwab <schwab@linux-m68k.org>
47760
47761 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Add __jnl_finite and
47762 __ynl_finite aliases.
47763
477642011-10-22 Ulrich Drepper <drepper@gmail.com>
47765
47766 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
47767
47768 * sysdeps/ieee754/dbl-64/dla.h: When compiling with FMA4 support
47769 define DLA_FMA.
47770 [DLA_FMA] (EMULV): Use DLA_FMA.
47771 [DLA_FMA] (MUL12): Use EMULV.
47772 * sysdeps/ieee754/dbl-64/doasin.c [DLA_FMA]: Don't define variables
47773 that are not needed.
47774 * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
47775 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
47776 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
47777 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
47778 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
47779 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
47780 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
47781
477822011-10-22 Andreas Schwab <schwab@linux-m68k.org>
47783
47784 * math/s_nan.c: Undef __nan.
47785 * math/s_nanf.c: Undef __nanf.
47786 * math/s_nanl.c: Undef __nanl.
47787 * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Include <math.h> before
47788 "math_private.h".
47789
477902011-10-22 Ulrich Drepper <drepper@gmail.com>
47791
47792 * math/s_catan.c: Add branch predictions.
47793 * math/s_catanf.c: Likewise.
47794 * math/s_catanh.c: Likewise.
47795 * math/s_catanhf.c: Likewise.
47796 * math/s_catanhl.c: Likewise.
47797 * math/s_catanl.c: Likewise.
47798 * math/s_cexp.c: Likewise.
47799 * math/s_cexpf.c: Likewise.
47800 * math/s_cexpl.c: Likewise.
47801 * math/s_clog.c: Likewise.
47802 * math/s_clog10.c: Likewise.
47803 * math/s_clog10f.c: Likewise.
47804 * math/s_clog10l.c: Likewise.
47805 * math/s_clogf.c: Likewise.
47806 * math/s_clogl.c: Likewise.
47807 * math/s_csqrt.c: Likewise.
47808 * math/s_csqrtf.c: Likewise.
47809 * math/s_csqrtl.c: Likewise.
47810 * math/s_ctanf.c: Likewise.
47811 * math/s_ctanh.c: Likewise.
47812 * math/s_ctanhf.c: Likewise.
47813 * math/s_ctanhl.c: Likewise.
47814 * math/s_ctanl.c: Likewise.
47815
47816 * math/math_private.h: Define __nan, __nanf, __nanl.
47817 * math/s_cacosh.c: Include <math_private.h>.
47818 * math/s_cacoshl.c: Likewise.
47819 * math/s_casinh.c: Likewise.
47820 * math/s_casinhf.c: Likewise.
47821 * math/s_casinhl.c: Likewise.
47822 * math/s_ccos.c: Rely entire on ccosh.
47823 * math/s_ccosf.c: Rely entire on ccoshf.
47824 * math/s_ccosl.c: Rely entirely on ccoshl.
47825 * math/s_ccosh.c: Add branch predicion helpers. Add branch prediction.
47826 Remove tests for FE_INVALID.
47827 * math/s_ccoshf.c: Likewise.
47828 * math/s_ccoshl.c: Likewise.
47829 * math/s_csin.c: Likewise.
47830 * math/s_csinf.c: Likewise.
47831 * math/s_csinh.c Likewise.
47832 * math/s_csinhf.c: Likewise.
47833 * math/s_csinhl.c: Likewise.
47834 * math/s_csinl.c: Likewise.
47835 * math/s_ctan.c: Likewise.
47836 * sysdeps/ieee754/dbl-64/e_acosh.c: Use __ieee754_sqrt.
47837 * sysdeps/ieee754/flt-32/e_acoshf.c: Use __ieee754_sqrtf.
47838 * sysdeps/ieee754/ldbl-96/e_acoshl.c: Use __ieee754_sqrtl.
47839
478402011-10-21 Ulrich Drepper <drepper@gmail.com>
47841
47842 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Fix
47843 compilation problems.
47844
47845 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Add a few more
47846 __builtin_expect.
47847
478482011-10-20 Ulrich Drepper <drepper@gmail.com>
47849
47850 * sysdeps/i386/configure.in: Test for -mfma4 option.
47851 * config.h.in: Add HAVE_FMA4_SUPPORT entry.
47852 * sysdeps/x86_64/multiarch/init-arch.h: Define HAS_FMA4 and
47853 COMMON_CPUID_INDEX_80000001.
47854 * sysdeps/x86_64/multiarch/init-arch.c: Read 80000001 leaf for AMD.
47855 * sysdeps/x86_64/fpu/multiarch/s_fma.c: Test for FMA4 support and
47856 use it if FMA3 is not supported.
47857 * sysdeps/x86_64/fpu/multiarch/s_fmaf.c: Likewise.
47858
47859 * sysdeps/x86_64/multiarch/s_fma.c: Moved to ../fpu/multiarch.
47860 * sysdeps/x86_64/multiarch/s_fmaf.c: Likewise.
47861
478622011-10-20 Andreas Schwab <schwab@redhat.com>
47863
47864 [BZ #12892]
47865 * elf/dl-fini.c (_dl_sort_fini): Ignore relocation dependency if
47866 it would create a cycle with a link time dependency.
47867
478682011-10-19 Ulrich Drepper <drepper@gmail.com>
47869
47870 * sysdeps/x86_64/multiarch/rawmemchr.S: Small optimization to safe an
47871 instruction.
47872 * string/Makefile (strop-tests): Add rawmemchr.
47873 * string/test-rawmemchr.c: New file.
47874
47875 * sysdeps/x86_64/multiarch/init-arch.h: Define bit_AVX and index_AVX.
47876 * sysdeps/x86_64/multiarch/strcmp-sse42.S: New file. Split out from...
47877 * sysdeps/x86_64/multiarch/strcmp.S: ...here. Include strcmp-sse42.S
47878 when compiling str{,n}casecmp and when AVX is available. Hook up
47879 new optimized code in initializers.
47880
478812011-10-19 Andreas Schwab <schwab@redhat.com>
47882
47883 * sysdeps/x86_64/fpu/math_private.h (libc_feupdateenv): Use
47884 __feraiseexcept instead of feraiseexcept.
47885
478862011-10-18 Ulrich Drepper <drepper@gmail.com>
47887
47888 * math/math_private.h: Define defaults for libc_fetestexcept and
47889 libc_feupdateenv.
47890 * sysdeps/ieee754/dbl-64/s_fma.c: Use libc_fe* interfaces.
47891 * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
47892 * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
47893 * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
47894 * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
47895 * sysdeps/x86_64/fpu/math_private.h: Define special versions of
47896 libc_fetestexcept and libc_feupdateenv.
47897
47898 * math/math_private.h: Define defaults for libc_feholdexcept_setround,
47899 libc_feholdexcept_setroundf, libc_feholdexcept_setroundl.
47900 * sysdeps/ieee754/dbl-64/e_exp2.c: Use libc_feholdexcept_setround.
47901 * sysdeps/x86_64/fpu/math_private.h: Define special version of
47902 libc_feholdexcept_setround.
47903
47904 * sysdeps/x86_64/fpu/multiarch/Makefile [math] (libm-sysdep-routines):
47905 Add s_nearbyint-c and s_nearbyintf-c.
47906 * sysdeps/x86_64/fpu/bits/mathinline.h: Define nearbyint and
47907 nearbyintf inlines.
47908 * sysdeps/x86_64/fpu/multiarch/s_nearbyint-c.c: New file.
47909 * sysdeps/x86_64/fpu/multiarch/s_nearbyint.S: New file.
47910 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf-c.c: New file.
47911 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.S: New file.
47912
47913 * math/math_private.h: Define defaults for libc_fegetround,
47914 libc_fegetroundf, libc_fegetroundl, libc_fesetround, libc_fesetroundf,
47915 libc_fesetroundl, libc_feholdexcept, libc_feholdexceptf,
47916 libc_feholdexceptl, libc_fesetenv, libc_fesetenvf, libc_fesetenvl.
47917 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Use
47918 libc_feholdexcept, libc_fesetround, libc_fesetenv instead of the
47919 standard functions.
47920 * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
47921 Remove comments and hacks for old compiler versions.
47922 * sysdeps/x86_64/fpu/math_private.h: Define special versions of
47923 libc_fegetround, libc_fesetround, libc_feholdexcept, and
47924 libc_feholdexceptl.
47925
479262011-10-18 Andreas Schwab <schwab@redhat.com>
47927
47928 * sysdeps/x86_64/fpu/bits/fenv.h: Add C linkage markers.
47929 (__feraiseexcept_renamed): Add __NTH.
47930 (feraiseexcept): Add __NTH. Rename local variables to fix
47931 namespace violations.
47932
479332011-10-17 Ulrich Drepper <drepper@gmail.com>
47934
47935 * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Small optimization.
47936
47937 * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: New file.
47938
47939 * sysdeps/x86_64/fpu/math_private.h: Relax asm requirements for
47940 recently added interfaces.
47941 * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
47942
47943 * sysdeps/x86_64/fpu/math_private.h: Add some parenthesis to be safe
47944 about macro parameter expansion.
47945
47946 * sysdeps/x86_64/fpu/bits/mathinline.h: Don't define inlines if
47947 __NO_MATH_INLINES is defined. Cleanups.
47948
47949 * sysdeps/x86_64/fpu/math_private.h: Define __rint, __rintf, __floor,
47950 and __floorf is target has SSE4.1.
47951 * sysdeps/x86_64/fpu/multiarch/s_floor-c.c: Undef first.
47952 * sysdeps/x86_64/fpu/multiarch/s_floorf-c.: Likewise.
47953 * sysdeps/x86_64/fpu/multiarch/s_rint-c.c: Likewise.
47954 * sysdeps/x86_64/fpu/multiarch/s_rintf-c.c: Likewise.
47955
47956 * sysdeps/x86_64/fpu/bits/mathinline.h (floor): Use correct function
47957 name.
47958 (floorf): Likewise.
47959
47960 * nscd/netgroupcache.c (addgetnetgrentX): Fix #ifdef nesting.
47961
479622011-10-17 Andreas Schwab <schwab@redhat.com>
47963
47964 * misc/sys/cdefs.h: Fix last change.
47965
47966 * grp/initgroups.c (internal_getgrouplist): Fix initgroups
47967 database lookup.
47968
479692011-10-16 Ulrich Drepper <drepper@gmail.com>
47970
47971 * misc/sys/cdefs.h: Use leaf function attribute in __THROW.
47972
47973 * sysdeps/ieee754/dbl-64/s_ceil.c: Avoid alias renamed.
47974 * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
47975 * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
47976 * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
47977 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
47978 * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
47979 * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
47980 * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
47981 * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
47982 * sysdeps/x86_64/fpu/multiarch/Makefile: New file.
47983 * sysdeps/x86_64/fpu/multiarch/s_ceil-c.c: New file.
47984 * sysdeps/x86_64/fpu/multiarch/s_ceil.S: New file.
47985 * sysdeps/x86_64/fpu/multiarch/s_ceilf-c.c: New file.
47986 * sysdeps/x86_64/fpu/multiarch/s_ceilf.S: New file.
47987 * sysdeps/x86_64/fpu/multiarch/s_floor-c.c: New file.
47988 * sysdeps/x86_64/fpu/multiarch/s_floor.S: New file.
47989 * sysdeps/x86_64/fpu/multiarch/s_floorf-c.c: New file.
47990 * sysdeps/x86_64/fpu/multiarch/s_floorf.S: New file.
47991 * sysdeps/x86_64/fpu/multiarch/s_rint-c.c: New file.
47992 * sysdeps/x86_64/fpu/multiarch/s_rint.S: New file.
47993 * sysdeps/x86_64/fpu/multiarch/s_rintf-c.c: New file.
47994 * sysdeps/x86_64/fpu/multiarch/s_rintf.S: New file.
47995
47996 * sysdeps/x86_64/fpu/bits/mathinline.h: Add inlines for rint, rintf,
47997 ceil, ceilf, floor, floorf.
47998
47999 * elf/do-rel.h (elf_dynamic_do_Rel): Work around linker problem.
48000 Perform IRELATIVE relocations last.
48001
48002 * elf/do-rel.h: Add another parameter nrelative, replacing the
48003 local variable with the same name. Change name of the function
48004 to end in Rel or Rela (uppercase).
48005 * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Add new element
48006 nrelative to ranges. Only nonzero for DT_REL/DT_RELA. Pass to the
48007 elf_dynamic_do_##reloc function.
48008
480092011-10-15 Ulrich Drepper <drepper@gmail.com>
48010
48011 * sysdeps/i386/i686/fpu/e_log.S: No need for the fyl2xp1 use, fyl2x
48012 is sufficient, at least on modern CPUs.
48013
48014 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: New file.
48015
48016 * sysdeps/ieee754/dbl-64/e_cosh.c: Cleanup.
48017 * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c: New file.
48018
48019 * math/Versions [libm] (GLIBC_2.15): Add __exp_finite, __expf_finite,
48020 __expl_finite.
48021 * math/bits/math-finite.h: Add entries for exp.
48022 * math/e_expl.c: Add __*_finite alias.
48023 * sysdeps/i386/fpu/e_exp.S: Likewise.
48024 * sysdeps/i386/fpu/e_expf.S: Likewise.
48025 * sysdeps/i386/fpu/e_expl.c: Likewise.
48026 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
48027 * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
48028 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
48029 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
48030 * sysdeps/ieee754/dbl-64/w_exp.c: Complete rewrite.
48031 * sysdeps/ieee754/flt-32/w_expf.c: Likewise.
48032 * sysdeps/ieee754/ldbl-96/w_expl.c: Likewise.
48033
48034 * sysdeps/i386/i686/fpu/e_logf.S: No need for the fyl2xp1 use, fyl2x
48035 is sufficient, at least on modern CPUs.
48036
48037 * ctype/ctype-info.c (__ctype_init): Define.
48038 * include/ctype.h (__ctype_init): Declare.
48039 (__ctype_b_loc): The variable is always initialized.
48040 (__ctype_toupper_loc): Likewise.
48041 (__ctype_tolower_loc): Likewise.
48042 * ctype/Versions: Export __ctype_init for GLIBC_PRIVATE.
48043 * sysdeps/unix/sysv/linux/init-first.c (_init): Call __ctype_init.
48044
480452011-10-15 Andreas Schwab <schwab@linux-m68k.org>
48046
48047 * wcsmbs/wmemcmp.c (WMEMCMP): Define.
48048
48049 * configure.in: Also look in $cxxmachine/include for C++ system
48050 headers.
48051
480522011-09-27 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
48053
48054 * sysdeps/x86_64/multiarch/Makefile: (sysdep_routines): Add
48055 memcmp-ssse3 wmemcmp-sse4 wmemcmp-ssse3 wmemcmp-c
48056 * sysdeps/x86_64/multiarch/memcmp-ssse3: New file.
48057 * sysdeps/x86_64/multiarch/memcmp.S: Update. Add __memcmp_ssse3.
48058 * sysdeps/x86_64/multiarch/memcmp-sse4.S: Update.
48059 (USE_AS_WMEMCMP): New macro.
48060 Fixing indents.
48061 * sysdeps/x86_64/multiarch/wmemcmp.S: New file.
48062 * sysdeps/x86_64/multiarch/wmemcmp-ssse3.S: New file.
48063 * sysdeps/x86_64/multiarch/wmemcmp-sse4.S: New file.
48064 * sysdeps/x86_64/multiarch/wmemcmp-c.S: New file.
48065 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
48066 wmemcmp-ssse3 wmemcmp-sse4 wmemcmp-c
48067 * sysdeps/i386/i686/multiarch/wmemcmp.S: New file.
48068 * sysdeps/i386/i686/multiarch/wmemcmp-c.c: New file.
48069 * sysdeps/i386/i686/multiarch/wmemcmp-ssse3.S: New file.
48070 * sysdeps/i386/i686/multiarch/wmemcmp-sse4.S: New file.
48071 * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Update.
48072 (USE_AS_WMEMCMP): New macro.
48073 * sysdeps/i386/i686/multiarch/memcmp-ssse3: Likewise.
48074 * sysdeps/string/test-memcmp.c: Update.
48075 Fix simple_wmemcmp.
48076 Add new tests.
48077 * wcsmbs/wmemcmp.c: Update.
48078 (WMEMCMP): New macro.
48079 Fix overflow bug.
48080
480812011-10-12 Andreas Jaeger <aj@suse.de>
48082
48083 [BZ #13268]
48084 * math/bits/mathcalls.h: Mark argument 2 of modf as non-null.
48085
480862011-10-15 Ulrich Drepper <drepper@gmail.com>
48087
48088 * libio/iofwide.c (do_length): Avoid warning.
48089
48090 * ctype/ctype.h (__isctype_f): Add missing __THROW.
48091
480922011-10-14 Ulrich Drepper <drepper@gmail.com>
48093
48094 * elf/pldd-xx.c (find_maps): Remove leftover debug message.
48095
48096 * sysdeps/i386/fpu/e_log.S: Add real definition of __log_finite.
48097 * sysdeps/i386/fpu/e_logf.S: Add real definition of __logf_finite.
48098 * sysdeps/i386/fpu/e_logl.S: Add real definition of __logl_finite.
48099 * sysdeps/i386/i686/fpu/e_log.S: New file.
48100 * sysdeps/i386/i686/fpu/e_logf.S: New file.
48101 * sysdeps/i386/i686/fpu/e_logl.S: New file.
48102
48103 * ctype/ctype.h: Add support for inlined isXXX functions when
48104 compiling C++ code.
48105
481062011-10-14 Andreas Schwab <schwab@redhat.com>
48107
48108 * sysdeps/s390/fpu/libm-test-ulps: Adjust ULPs for jn tests.
48109
48110 * sysdeps/x86_64/fpu/fraiseexcpt.c: Fix last change.
48111
481122011-10-13 Roland McGrath <roland@hack.frob.com>
48113
48114 [BZ #13291]
48115 * manual/string.texi (String/Array Comparison): Typo fix in strverscmp.
48116
481172011-10-13 Andreas Schwab <schwab@redhat.com>
48118
48119 * sysdeps/x86_64/fpu/fraiseexcpt.c: Add __feraiseexcept alias.
48120 * sysdeps/x86_64/fpu/feupdateenv.c: Use __feraiseexcept instead of
48121 feraiseexcept.
48122
48123 * sysdeps/x86_64/memrchr.S: Check for zero size.
48124
48125 * string/stratcliff.c: Add memrchr tests.
48126
481272011-10-12 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
48128
48129 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
48130 memchr-sse2 memchr-sse2-bsf memrchr-sse2 memrchr-sse2-bsf memrchr-c
48131 rawmemchr-sse2 rawmemchr-sse2-bsf.
48132 * sysdeps/i386/i686/multiarch/memchr.S: New file.
48133 * sysdeps/i386/i686/multiarch/memchr-sse2.S: New file.
48134 * sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S: New file.
48135 * sysdeps/i386/i686/multiarch/memrchr.S: New file.
48136 * sysdeps/i386/i686/multiarch/memrchr-c.c: New file.
48137 * sysdeps/i386/i686/multiarch/memrchr-sse2.S: New file.
48138 * sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S: New file.
48139 * sysdeps/i386/i686/multiarch/rawmemchr.S: New file.
48140 * sysdeps/i386/i686/multiarch/rawmemchr-sse2.S: New file.
48141 * sysdeps/i386/i686/multiarch/rawmemchr-sse2-bsf.S: New file.
48142 * string/memrchr.c (MEMRCHR): New macro.
48143
481442011-10-12 Ulrich Drepper <drepper@gmail.com>
48145
48146 Add integration with gcc's -ffinite-math-only and optimize wrapper
48147 functions in libm.
48148 * Versions.def: Define GLIBC_2.15 version for libm.
48149 * math/Makefile (headers): Add bits/math-finite.h.
48150 * math/bits/math-finite.h: New file.
48151 * sysdeps/ia64/fpu/bits/math-finite.h: New file.
48152 * math/Versions [libm] (GLIBC_2.15): Export __*_finite symbols.
48153 * math/e_acoshl.c: Add __*_finite alias.
48154 * math/e_acosl.c: Likewise.
48155 * math/e_asinl.c: Likewise.
48156 * math/e_atan2l.c: Likewise.
48157 * math/e_atanhl.c: Likewise.
48158 * math/e_coshl.c: Likewise.
48159 * math/e_exp10.c: Likewise.
48160 * math/e_exp10f.c: Likewise.
48161 * math/e_exp10l.c: Likewise.
48162 * math/e_exp2l.c: Likewise.
48163 * math/e_fmodl.c: Likewise.
48164 * math/e_gammal_r.c: Likewise.
48165 * math/e_hypotl.c: Likewise.
48166 * math/e_j0l.c: Likewise.
48167 * math/e_j1l.c: Likewise.
48168 * math/e_jnl.c: Likewise.
48169 * math/e_lgammal_r.c: Likewise.
48170 * math/e_log10l.c: Likewise.
48171 * math/e_log2l.c: Likewise.
48172 * math/e_logl.c: Likewise.
48173 * math/e_powl.c: Likewise.
48174 * math/e_sinhl.c: Likewise.
48175 * math/e_sqrtl.c: Likewise.
48176 * math/e_scalb.c: Completely rewritten and optimized.
48177 * math/e_scalbf.c: Likewise.
48178 * math/e_scalbl.c: Likewise.
48179 * math/w_acos.c: Likewise.
48180 * math/w_acosf.c: Likewise.
48181 * math/w_acosl.c: Likewise.
48182 * math/w_acosh.c: Likewise.
48183 * math/w_acoshf.c: Likewise.
48184 * math/w_acoshl.c: Likewise.
48185 * math/w_asin.c: Likewise.
48186 * math/w_asinf.c: Likewise.
48187 * math/w_asinl.c: Likewise.
48188 * math/w_atan2.c: Likewise.
48189 * math/w_atan2f.c: Likewise.
48190 * math/w_atan2l.c: Likewise.
48191 * math/w_atanh.c: Likewise.
48192 * math/w_atanhf.c: Likewise.
48193 * math/w_atanhl.c: Likewise.
48194 * math/w_exp10.c: Likewise.
48195 * math/w_exp10f.c: Likewise.
48196 * math/w_exp10l.c: Likewise.
48197 * math/w_fmod.c: Likewise.
48198 * math/w_fmodf.c: Likewise.
48199 * math/w_fmodl.c: Likewise.
48200 * math/w_j0.c: Likewise.
48201 * math/w_j0f.c: Likewise.
48202 * math/w_j0l.c: Likewise.
48203 * math/w_j1.c: Likewise.
48204 * math/w_j1f.c: Likewise.
48205 * math/w_j1l.c: Likewise.
48206 * math/w_jn.c: Likewise.
48207 * math/w_jnf.c: Likewise.
48208 * math/w_log.c: Likewise.
48209 * math/w_logf.c: Likewise.
48210 * math/w_logl.c: Likewise.
48211 * math/w_log10.c: Likewise.
48212 * math/w_log10f.c: Likewise.
48213 * math/w_log10l.c: Likewise.
48214 * math/w_log2.c: Likewise.
48215 * math/w_log2f.c: Likewise.
48216 * math/w_log2l.c: Likewise.
48217 * math/w_pow.c: Likewise.
48218 * math/w_powf.c: Likewise.
48219 * math/w_powl.c: Likewise.
48220 * math/w_remainder.c: Likewise.
48221 * math/w_remainderf.c: Likewise.
48222 * math/w_remainderl.c: Likewise.
48223 * math/w_scalb.c: Likewise.
48224 * math/w_scalbf.c: Likewise.
48225 * math/w_scalbl.c: Likewise.
48226 * math/w_sqrt.c: Likewise.
48227 * math/w_sqrtf.c: Likewise.
48228 * math/w_sqrtl.c: Likewise.
48229 * math/math.h: Define __MATH_DECLARE_LDOUBLE if long double functions
48230 are declared. Include <bits/math-finite.h> if -ffinite-math-only is
48231 used.
48232 * math/math_private.h: Declare __kernel_standard_f.
48233 * math/w_cosh.c: Remove cruft and optimize a bit.
48234 * math/w_coshf.c: Likewise.
48235 * math/w_coshl.c: Likewise.
48236 * math/w_exp2.c: Likewise.
48237 * math/w_exp2f.c: Likewise.
48238 * math/w_exp2l.c: Likewise.
48239 * math/w_hypot.c: Likewise.
48240 * math/w_hypotf.c: Likewise.
48241 * math/w_hypotl.c: Likewise.
48242 * math/w_lgamma.c: Likewise.
48243 * math/w_lgamma_r.c: Likewise.
48244 * math/w_lgammaf.c: Likewise.
48245 * math/w_lgammaf_r.c: Likewise.
48246 * math/w_lgammal.c: Likewise.
48247 * math/w_lgammal_r.c: Likewise.
48248 * math/w_sinh.c: Likewise.
48249 * math/w_sinhf.c: Likewise.
48250 * math/w_sinhl.c: Likewise.
48251 * math/w_tgamma.c: Likewise.
48252 * math/w_tgammaf.c: Likewise.
48253 * math/w_tgammal.c: Likewise.
48254 * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
48255 * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
48256 * sysdeps/i386/fpu/e_acos.S: Add __*_finite alias.
48257 Minor optimizations. Pretty printing. Remove cruft.
48258 * sysdeps/i386/fpu/e_acosf.S: Likewise.
48259 * sysdeps/i386/fpu/e_acosh.S: Likewise.
48260 * sysdeps/i386/fpu/e_acoshf.S: Likewise.
48261 * sysdeps/i386/fpu/e_acoshl.S: Likewise.
48262 * sysdeps/i386/fpu/e_acosl.c: Likewise.
48263 * sysdeps/i386/fpu/e_asin.S: Likewise.
48264 * sysdeps/i386/fpu/e_asinf.S: Likewise.
48265 * sysdeps/i386/fpu/e_atan2.S: Likewise.
48266 * sysdeps/i386/fpu/e_atan2f.S: Likewise.
48267 * sysdeps/i386/fpu/e_atan2l.c: Likewise.
48268 * sysdeps/i386/fpu/e_atanh.S: Likewise.
48269 * sysdeps/i386/fpu/e_atanhf.S: Likewise.
48270 * sysdeps/i386/fpu/e_atanhl.S: Likewise.
48271 * sysdeps/i386/fpu/e_exp10.S: Likewise.
48272 * sysdeps/i386/fpu/e_exp10f.S: Likewise.
48273 * sysdeps/i386/fpu/e_exp10l.S: Likewise.
48274 * sysdeps/i386/fpu/e_exp2.S: Likewise.
48275 * sysdeps/i386/fpu/e_exp2f.S: Likewise.
48276 * sysdeps/i386/fpu/e_exp2l.S: Likewise.
48277 * sysdeps/i386/fpu/e_fmod.S: Likewise.
48278 * sysdeps/i386/fpu/e_fmodf.S: Likewise.
48279 * sysdeps/i386/fpu/e_fmodl.c: Likewise.
48280 * sysdeps/i386/fpu/e_hypot.S: Likewise.
48281 * sysdeps/i386/fpu/e_hypotf.S: Likewise.
48282 * sysdeps/i386/fpu/e_log.S: Likewise.
48283 * sysdeps/i386/fpu/e_log10.S: Likewise.
48284 * sysdeps/i386/fpu/e_log10f.S: Likewise.
48285 * sysdeps/i386/fpu/e_log10l.S: Likewise.
48286 * sysdeps/i386/fpu/e_log2.S: Likewise.
48287 * sysdeps/i386/fpu/e_log2f.S: Likewise.
48288 * sysdeps/i386/fpu/e_log2l.S: Likewise.
48289 * sysdeps/i386/fpu/e_logf.S: Likewise.
48290 * sysdeps/i386/fpu/e_logl.S: Likewise.
48291 * sysdeps/i386/fpu/e_pow.S: Likewise.
48292 * sysdeps/i386/fpu/e_powf.S: Likewise.
48293 * sysdeps/i386/fpu/e_powl.S: Likewise.
48294 * sysdeps/i386/fpu/e_remainder.S: Likewise.
48295 * sysdeps/i386/fpu/e_remainderf.S: Likewise.
48296 * sysdeps/i386/fpu/e_remainderl.S: Likewise.
48297 * sysdeps/i386/fpu/e_scalb.S: Likewise.
48298 * sysdeps/i386/fpu/e_scalbf.S: Likewise.
48299 * sysdeps/i386/fpu/e_scalbl.S: Likewise.
48300 * sysdeps/i386/fpu/e_sqrt.S: Likewise.
48301 * sysdeps/i386/fpu/e_sqrtf.S: Likewise.
48302 * sysdeps/i386/fpu/e_sqrtl.c: Likewise.
48303 * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
48304 * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
48305 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
48306 * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
48307 * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
48308 * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
48309 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
48310 * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
48311 * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
48312 * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
48313 * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
48314 * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
48315 * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
48316 * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
48317 * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
48318 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
48319 * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
48320 * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
48321 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
48322 * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
48323 * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
48324 * sysdeps/ieee754/flt-32/e_acosf.c: Likewise.
48325 * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
48326 * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
48327 * sysdeps/ieee754/flt-32/e_atan2f.c: Likewise.
48328 * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
48329 * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
48330 * sysdeps/ieee754/flt-32/e_fmodf.c: Likewise.
48331 * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
48332 * sysdeps/ieee754/flt-32/e_hypotf.c: Likewise.
48333 * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
48334 * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
48335 * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
48336 * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
48337 * sysdeps/ieee754/flt-32/e_log10f.c: Likewise.
48338 * sysdeps/ieee754/flt-32/e_log2f.c: Likewise.
48339 * sysdeps/ieee754/flt-32/e_logf.c: Likewise.
48340 * sysdeps/ieee754/flt-32/e_powf.c: Likewise.
48341 * sysdeps/ieee754/flt-32/e_remainderf.c: Likewise.
48342 * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
48343 * sysdeps/ieee754/flt-32/e_sqrtf.c: Likewise.
48344 * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
48345 * sysdeps/ieee754/ldbl-128/e_acoshl.c: Likewise.
48346 * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
48347 * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
48348 * sysdeps/ieee754/ldbl-128/e_atan2l.c: Likewise.
48349 * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
48350 * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
48351 * sysdeps/ieee754/ldbl-128/e_fmodl.c: Likewise.
48352 * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Likewise.
48353 * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
48354 * sysdeps/ieee754/ldbl-128/e_j0l.c: Likewise.
48355 * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
48356 * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
48357 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
48358 * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
48359 * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
48360 * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
48361 * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
48362 * sysdeps/ieee754/ldbl-128/e_remainderl.c: Likewise.
48363 * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
48364 * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c: Likewise.
48365 * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
48366 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
48367 * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c: Likewise.
48368 * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
48369 * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Likewise.
48370 * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Likewise.
48371 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Likewise.
48372 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
48373 * sysdeps/ieee754/ldbl-128ibm/e_log10l.c: Likewise.
48374 * sysdeps/ieee754/ldbl-128ibm/e_log2l.c: Likewise.
48375 * sysdeps/ieee754/ldbl-128ibm/e_logl.c: Likewise.
48376 * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
48377 * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c: Likewise.
48378 * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
48379 * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c: Likewise.
48380 * sysdeps/ieee754/ldbl-96/e_acoshl.c: Likewise.
48381 * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
48382 * sysdeps/ieee754/ldbl-96/e_atan2l.c: Likewise.
48383 * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
48384 * sysdeps/ieee754/ldbl-96/e_coshl.c: Likewise.
48385 * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Likewise.
48386 * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
48387 * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
48388 * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
48389 * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
48390 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
48391 * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
48392 * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
48393 * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
48394 * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
48395 * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
48396 * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
48397 * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
48398 * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Likewise.
48399 * sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c: Likewise.
48400 * sysdeps/s390/fpu/e_sqrt.c: Likewise.
48401 * sysdeps/s390/fpu/e_sqrtf.c: Likewise.
48402 * sysdeps/s390/fpu/e_sqrtl.c: Likewise.
48403 * sysdeps/sparc/sparc32/e_sqrt.c: Likewise.
48404 * sysdeps/sparc/sparc64/fpu/e_sqrtl.c: Likewise.
48405 * sysdeps/x86_64/fpu/e_exp2l.S: Likewise.
48406 * sysdeps/x86_64/fpu/e_fmodl.S: Likewise.
48407 * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
48408 * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
48409 * sysdeps/x86_64/fpu/e_logl.S: Likewise.
48410 * sysdeps/x86_64/fpu/e_powl.S: Likewise.
48411 * sysdeps/x86_64/fpu/e_remainderl.S: Likewise.
48412 * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
48413 * sysdeps/x86_64/fpu/e_sqrt.c: Likewise. Fix parameter order
48414 * sysdeps/x86_64/fpu/e_sqrtf.c: Likewise.
48415 * sysdeps/x86_64/fpu/math_private.h (__isnan): Cast d parameter.
48416 (__isnanf): Likewise.
48417 (__isinf_ns): Likewise.
48418 (__isinf_nsf): Likewise.
48419 (__finite): Likewise.
48420 (__finitef): Likewise.
48421 (__ieee754_sqrt): Define as macro.
48422 (__ieee754_sqrtf): Define as macro.
48423 (__ieee754_sqrtl): Define as macro.
48424 * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Add partially
48425 inlined copy.
48426 * sysdeps/x86_64/fpu/bits/mathinline.h: Make use of
48427 __FINITE_MATH_ONLY__ consistent.
48428 * sysdeps/ieee754/k_standard.c (__kernel_standard_f): New function.
48429
484302011-10-10 Andreas Schwab <schwab@linux-m68k.org>
48431
48432 * inet/getnetgrent_r.c (nscd_getnetgrent): Use __rawmemchr instead
48433 of rawmemchr.
48434
48435 * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c: New file.
48436
484372011-10-09 Ulrich Drepper <drepper@gmail.com>
48438
48439 * po/ja.po: Update from translation team.
48440
484412011-10-08 Roland McGrath <roland@hack.frob.com>
48442
48443 * locale/programs/locarchive.c (prepare_address_space): New function.
48444 (create_archive, enlarge_archive, open_archive): Use it.
48445
48446 * sysdeps/unix/sysv/linux/x86_64/time.c: Move #include <dl-vdso.h>
48447 inside [SHARED], where it is used.
48448
48449 * nscd/nscd_proto.h: Declare __nscd_setnetgrent.
48450
48451 * nss/getent.c (netgroup_keys): Remove unused variable.
48452 * sysdeps/ieee754/flt-32/s_isinf_nsf.c: Likewise.
48453
484542011-10-08 Ulrich Drepper <drepper@gmail.com>
48455
48456 * include/math.h: Declare __isinf_ns, __isinf_nsf, __isinf_nsl.
48457 * sysdeps/ieee754/dbl-64/s_isinf_ns.c: New file.
48458 * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf_ns.c: New file.
48459 * sysdeps/ieee754/flt-32/s_isinf_nsf.c: New file.
48460 * sysdeps/ieee754/ldbl-128/s_isinf_nsl.c: New file.
48461 * sysdeps/ieee754/ldbl-96/s_isinf_nsl.c: New file.
48462 * math/Makefile (libm-calls): Add s_isinf_ns.
48463 * math/divtc3.c: Use __isinf_nsl instead of isinf.
48464 * math/multc3.c: Likewise.
48465 * math/s_casin.c: Likewise.
48466 * math/s_casinf.c: Likewise.
48467 * math/s_casinl.c: Likewise.
48468 * math/s_ccos.c: Likewise.
48469 * math/s_ccosf.c: Likewise.
48470 * math/s_ccosl.c: Likewise.
48471 * math/s_ctan.c: Likewise.
48472 * math/s_ctanf.c: Likewise.
48473 * math/s_ctanh.c: Likewise.
48474 * math/s_ctanhf.c: Likewise.
48475 * math/s_ctanhl.c: Likewise.
48476 * math/s_ctanl.c: Likewise.
48477 * math/w_fmod.c: Likewise.
48478 * math/w_fmodf.c: Likewise.
48479 * math/w_fmodl.c: Likewise.
48480 * math/w_remainder.c: Likewise.
48481 * math/w_remainderf.c: Likewise.
48482 * math/w_remainderl.c: Likewise.
48483 * sysdeps/ieee754/dbl-64/s_finite.c: Undefine __finite.
48484 * sysdeps/ieee754/dbl-64/s_isnan.c: Undefine __isnan.
48485 * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Undefine __finite.
48486 * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Undefine __nan.
48487 * sysdeps/ieee754/flt-32/s_finitef.c: Undefine __finitef.
48488 * sysdeps/ieee754/flt-32/s_isnanf.c: Undefine __nan.
48489 * sysdeps/x86_64/fpu/math_private.h: Add optimized versions of __isnsn,
48490 __isnanf, __isinf_ns, __isinf_nsf, __finite, and __finitef.
48491
48492 * stdio-common/printf_fp.c: Use the fact that isinf returns the sign
48493 of the number.
48494 * stdio-common/printf_fphex.c: Likewise.
48495 * stdio-common/printf_size.c: Likewise.
48496
48497 * math/e_exp10.c: Include math_private.h using <...> not "...".
48498 * math/e_exp10f.c: Likewise.
48499 * math/e_exp10l.c: Likewise.
48500 * math/e_exp2l.c: Likewise.
48501 * math/e_j0l.c: Likewise.
48502 * math/e_j1l.c: Likewise.
48503 * math/e_jnl.c: Likewise.
48504 * math/e_lgammal_r.c: Likewise.
48505 * math/e_rem_pio2l.c: Likewise.
48506 * math/e_scalb.c: Likewise.
48507 * math/e_scalbf.c: Likewise.
48508 * math/e_scalbl.c: Likewise.
48509 * math/k_cosl.c: Likewise.
48510 * math/k_sinl.c: Likewise.
48511 * math/k_tanl.c: Likewise.
48512 * math/s_cacoshf.c: Likewise.
48513 * math/s_catan.c: Likewise.
48514 * math/s_catanf.c: Likewise.
48515 * math/s_catanh.c: Likewise.
48516 * math/s_catanhf.c: Likewise.
48517 * math/s_catanhl.c: Likewise.
48518 * math/s_catanl.c: Likewise.
48519 * math/s_ccosh.c: Likewise.
48520 * math/s_ccoshf.c: Likewise.
48521 * math/s_ccoshl.c: Likewise.
48522 * math/s_cexp.c: Likewise.
48523 * math/s_cexpf.c: Likewise.
48524 * math/s_cexpl.c: Likewise.
48525 * math/s_clog.c: Likewise.
48526 * math/s_clog10.c: Likewise.
48527 * math/s_clog10f.c: Likewise.
48528 * math/s_clog10l.c: Likewise.
48529 * math/s_clogf.c: Likewise.
48530 * math/s_clogl.c: Likewise.
48531 * math/s_csin.c: Likewise.
48532 * math/s_csinf.c: Likewise.
48533 * math/s_csinh.c: Likewise.
48534 * math/s_csinhf.c: Likewise.
48535 * math/s_csinhl.c: Likewise.
48536 * math/s_csinl.c: Likewise.
48537 * math/s_csqrt.c: Likewise.
48538 * math/s_csqrtf.c: Likewise.
48539 * math/s_csqrtl.c: Likewise.
48540 * math/s_ctan.c: Likewise.
48541 * math/s_ctanf.c: Likewise.
48542 * math/s_ctanh.c: Likewise.
48543 * math/s_ctanhf.c: Likewise.
48544 * math/s_ctanhl.c: Likewise.
48545 * math/s_ctanl.c: Likewise.
48546 * math/s_ldexp.c: Likewise.
48547 * math/s_ldexpf.c: Likewise.
48548 * math/s_ldexpl.c: Likewise.
48549 * math/s_significand.c: Likewise.
48550 * math/s_significandf.c: Likewise.
48551 * math/s_significandl.c: Likewise.
48552 * math/w_acos.c: Likewise.
48553 * math/w_acosf.c: Likewise.
48554 * math/w_acosh.c: Likewise.
48555 * math/w_acoshf.c: Likewise.
48556 * math/w_acoshl.c: Likewise.
48557 * math/w_acosl.c: Likewise.
48558 * math/w_asin.c: Likewise.
48559 * math/w_asinf.c: Likewise.
48560 * math/w_asinl.c: Likewise.
48561 * math/w_atan2.c: Likewise.
48562 * math/w_atan2f.c: Likewise.
48563 * math/w_atan2l.c: Likewise.
48564 * math/w_atanh.c: Likewise.
48565 * math/w_atanhf.c: Likewise.
48566 * math/w_atanhl.c: Likewise.
48567 * math/w_cosh.c: Likewise.
48568 * math/w_coshf.c: Likewise.
48569 * math/w_coshl.c: Likewise.
48570 * math/w_dremf.c: Likewise.
48571 * math/w_exp10.c: Likewise.
48572 * math/w_exp10f.c: Likewise.
48573 * math/w_exp10l.c: Likewise.
48574 * math/w_exp2.c: Likewise.
48575 * math/w_exp2f.c: Likewise.
48576 * math/w_fmod.c: Likewise.
48577 * math/w_fmodf.c: Likewise.
48578 * math/w_fmodl.c: Likewise.
48579 * math/w_hypot.c: Likewise.
48580 * math/w_hypotf.c: Likewise.
48581 * math/w_hypotl.c: Likewise.
48582 * math/w_j0.c: Likewise.
48583 * math/w_j0f.c: Likewise.
48584 * math/w_j0l.c: Likewise.
48585 * math/w_j1.c: Likewise.
48586 * math/w_j1f.c: Likewise.
48587 * math/w_j1l.c: Likewise.
48588 * math/w_jn.c: Likewise.
48589 * math/w_jnf.c: Likewise.
48590 * math/w_jnl.c: Likewise.
48591 * math/w_lgamma.c: Likewise.
48592 * math/w_lgamma_r.c: Likewise.
48593 * math/w_lgammaf.c: Likewise.
48594 * math/w_lgammaf_r.c: Likewise.
48595 * math/w_lgammal.c: Likewise.
48596 * math/w_lgammal_r.c: Likewise.
48597 * math/w_log.c: Likewise.
48598 * math/w_log10.c: Likewise.
48599 * math/w_log10f.c: Likewise.
48600 * math/w_log10l.c: Likewise.
48601 * math/w_log2.c: Likewise.
48602 * math/w_log2f.c: Likewise.
48603 * math/w_log2l.c: Likewise.
48604 * math/w_logf.c: Likewise.
48605 * math/w_logl.c: Likewise.
48606 * math/w_pow.c: Likewise.
48607 * math/w_powf.c: Likewise.
48608 * math/w_powl.c: Likewise.
48609 * math/w_remainder.c: Likewise.
48610 * math/w_remainderf.c: Likewise.
48611 * math/w_remainderl.c: Likewise.
48612 * math/w_scalb.c: Likewise.
48613 * math/w_scalbf.c: Likewise.
48614 * math/w_scalbl.c: Likewise.
48615 * math/w_sinh.c: Likewise.
48616 * math/w_sinhf.c: Likewise.
48617 * math/w_sinhl.c: Likewise.
48618 * math/w_sqrt.c: Likewise.
48619 * math/w_sqrtf.c: Likewise.
48620 * math/w_sqrtl.c: Likewise.
48621 * math/w_tgamma.c: Likewise.
48622 * math/w_tgammaf.c: Likewise.
48623 * math/w_tgammal.c: Likewise.
48624
48625 * po/ja.po: Update from translation team.
48626
486272011-09-29 Andreas Jaeger <aj@suse.de>
48628
48629 [BZ #13179]
48630 * sunrpc/netname.c (netname2host): Fix logic.
48631
48632 [BZ #6779]
48633 [BZ #6783]
48634 * math/w_remainderl.c (__remainderl): Handle (NaN, 0) and (Inf,y)
48635 correctly.
48636 * math/w_remainder.c (__remainder): Likewise.
48637 * math/w_remainderf.c (__remainderf): Likewise.
48638 * math/libm-test.inc (remainder_test): Add test cases.
48639
486402011-10-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
48641
48642 * stdlib/longlong.h: Update from GCC. Fix zarch smul_ppmm and
48643 sdiv_qrnnd.
48644
486452011-10-07 Ulrich Drepper <drepper@gmail.com>
48646
48647 * string/test-memcmp.c: Avoid unncessary #defines.
48648 Patch by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>.
48649
486502011-08-31 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
48651
48652 * sysdeps/x86_64/multiarch/rawmemchr.S: Update.
48653 Use new sse2 version for core i3 - i7 as it's faster
48654 than sse42 version.
48655 (bit_Prefer_PMINUB_for_stringop): New.
48656 * sysdeps/x86_64/rawmemchr.S: Update.
48657 Replace with faster SSE2 version.
48658 * sysdeps/x86_64/memrchr.S: New file.
48659 * sysdeps/x86_64/memchr.S: Update.
48660 Replace with faster SSE2 version.
48661
486622011-09-12 Marek Polacek <mpolacek@redhat.com>
48663
48664 * elf/dl-load.c (lose): Add cast to avoid warning.
48665
486662011-10-07 Ulrich Drepper <drepper@gmail.com>
48667
48668 * po/ca.po: Update from translation team.
48669
48670 * inet/getnetgrent_r.c: Hook up nscd.
48671 * nscd/Makefile (routines): Add nscd_netgroup.
48672 (nscd-modules): Add netgroupcache.
48673 (CFLAGS-netgroupcache.c): Define.
48674 * nscd/cache.c (readdfcts): Add entries for GETNETGRENT and INNETGR.
48675 (cache_search): Add const to second parameter.
48676 * nscd/connections.c (serv2str): Add entries for GETNETGRENT and
48677 INNETGR.
48678 (dbs): Add netgrdb entry.
48679 (reqinfo): Add entries for GETNETGRENT, INNETGR, and GETFDNETGR.
48680 (verify_persistent_db): Handle netgrdb.
48681 (handle_request): Handle GETNETGRENT, INNETGR, and GETFDNETGR.
48682 * nscd/nscd-client.h (request_type): Add GETNETGRENT, INNETGR, and
48683 GETFDNETGR.
48684 (netgroup_response_header): Define.
48685 (innetgroup_response_header): Define.
48686 (datahead): Add netgroup_response_header and innetgroup_response_header
48687 elements.
48688 * nscd/nscd.conf: Add entries for netgroup cache.
48689 * nscd/nscd.h (dbtype): Add netgrdb.
48690 (_PATH_NSCD_NETGROUP_DB): Define.
48691 (netgroup_iov_disabled): Declare.
48692 (xmalloc, xcalloc, xrealloc): Move declarations here.
48693 (cache_search): Adjust prototype.
48694 Add netgroup-related prototypes.
48695 * nscd/nscd_conf.c (dbnames): Add netgrdb entry.
48696 * nscd/nscd_proto.h (__nss_not_use_nscd_netgroup): Declare.
48697 (__nscd_innetgr): Declare.
48698 * nscd/selinux.c (perms): Use access_vector_t as element type and
48699 add netgroup-related initializers.
48700 * nscd/netgroupcache.c: New file.
48701 * nscd/nscd_netgroup.c: New file.
48702 * nss/Versions [libc] (GLIBC_PRIVATE): Export __nss_lookup.
48703 * nss/getent.c (netgroup_keys): Use setnetgrent only for one parameter.
48704 For four parameters use innetgr.
48705 * nss/nss_files/files-init.c: Add definition and callback for netgr.
48706 * nss/nsswitch.c (__nss_lookup): Add libc_hidden_def.
48707 (__nss_disable_nscd): Set __nss_not_use_nscd_netgroup.
48708 * nss/nsswitch.h (__nss_lookup): Add libc_hidden_proto.
48709
48710 * nscd/connections.c (register_traced_file): Don't register file
48711 for disabled databases.
48712
487132011-10-06 Ulrich Drepper <drepper@gmail.com>
48714
48715 * nscd/grpcache.c (cache_addgr): Initialize written in all cases.
48716
48717 * nss/nsswitch.c (__nss_lookup_function): Fix order of deleting
48718 from tree and freeing node.
48719
487202011-09-25 Jiri Olsa <jolsa@redhat.com>
48721
48722 * nss/nsswitch.c (__nss_database_lookup): Handle
48723 nss_parse_service_list out of memory case.
48724
487252011-09-15 Jiri Olsa <jolsa@redhat.com>
48726
48727 * nss/nsswitch.c (__nss_lookup_function): Handle __tsearch
48728 out of memory case.
48729
487302011-10-04 Andreas Schwab <schwab@redhat.com>
48731
48732 * include/dlfcn.h (__RTLD_NOIFUNC): Define.
48733 * elf/do-rel.h (elf_dynamic_do_rel): Add parameter skip_ifunc and
48734 pass it down.
48735 * elf/dynamic-link.h: Adjust prototypes of elf_machine_rel,
48736 elf_machine_rela, elf_machine_lazy_rel.
48737 (_ELF_DYNAMIC_DO_RELOC): Add parameter skip_ifunc and pass it down.
48738 (ELF_DYNAMIC_DO_REL): Likewise.
48739 (ELF_DYNAMIC_DO_RELA): Likewise.
48740 (ELF_DYNAMIC_RELOCATE): Likewise.
48741 * elf/dl-reloc.c (_dl_relocate_object): Pass __RTLD_NOIFUNC down
48742 to ELF_DYNAMIC_DO_REL.
48743 * elf/rtld.c (_dl_start): Adjust use of ELF_DYNAMIC_RELOCATE.
48744 (dl_main): In trace mode always set __RTLD_NOIFUNC.
48745 * elf/dl-conflict.c (_dl_resolve_conflicts): Adjust call to
48746 elf_machine_rela.
48747 * sysdeps/i386/dl-machine.h (elf_machine_rel): Add parameter
48748 skip_ifunc, don't call ifunc function if non-zero.
48749 (elf_machine_rela): Likewise.
48750 (elf_machine_lazy_rel): Likewise.
48751 (elf_machine_lazy_rela): Likewise.
48752 * sysdeps/ia64/dl-machine.h (elf_machine_rela): Likewise.
48753 (elf_machine_lazy_rel): Likewise.
48754 * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela):
48755 Likewise.
48756 (elf_machine_lazy_rel): Likewise.
48757 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
48758 Likewise.
48759 (elf_machine_lazy_rel): Likewise.
48760 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela): Likewise.
48761 (elf_machine_lazy_rel): Likewise.
48762 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Likewise.
48763 (elf_machine_lazy_rel): Likewise.
48764 * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
48765 (elf_machine_lazy_rel): Likewise.
48766 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Likewise.
48767 (elf_machine_lazy_rel): Likewise.
48768 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
48769 (elf_machine_lazy_rel): Likewise.
48770 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
48771 (elf_machine_lazy_rel): Likewise.
48772
487732011-09-28 Ulrich Drepper <drepper@gmail.com>
48774
48775 * nss/nss_files/files-init.c (_nss_files_init): Use static
48776 initialization for all the *_traced_file variables.
48777
487782011-09-28 Andreas Schwab <schwab@redhat.com>
48779
48780 * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ULPs for jn tests.
48781
487822011-09-27 Roland McGrath <roland@hack.frob.com>
48783
48784 [BZ #13226]
48785 * manual/signal.texi (Longjmp in Handler): Grammar fixes.
48786
487872011-09-27 Andreas Schwab <schwab@redhat.com>
48788
48789 * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
48790 Reread the line before reparsing it.
48791
487922011-09-26 Andreas Schwab <schwab@redhat.com>
48793
48794 * sysdeps/x86_64/fpu/bits/mathinline.h: Use __asm instead of asm.
48795
487962011-09-21 Chung-Lin Tang <cltang@codesourcery.com>
48797 Maxim Kuvyrkov <maxim@codesourcery.com>
48798 Joseph Myers <joseph@codesourcery.com>
48799
48800 * resolv/Makefile (LDLIBS-resolv.so): Link in $(elfobjdir)/ld.so
48801 if needed for __stack_chk_guard.
48802
488032011-09-19 Roland McGrath <roland@hack.frob.com>
48804
48805 * sysdeps/posix/spawni.c (script_execute): Always define it.
48806 It will be optimized away if unused.
48807 (maybe_script_execute): New function.
48808 (__spawni): Call it.
48809
48810 * Makerules: Don't include tls.make.
48811 (config-tls): Always set to thread.
48812 * tls.make.c: File removed.
48813
488142011-09-19 Mike Frysinger <vapier@gentoo.org>
48815
48816 * Makeconfig (CPPFLAGS): Prepend $(CPPFLAGS-config).
48817 * config.make.in (CPPFLAGS-config): New substituted variable.
48818
488192011-09-15 Ulrich Drepper <drepper@gmail.com>
48820
48821 * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: New file.
48822
48823 [BZ #13192]
48824 * sysdeps/unix/sysv/linux/bits/in.h (IP_MULTICAST_ALL): Define.
48825 Patch mostly by Neil Horman <nhorman@tuxdriver.com>.
48826
488272011-09-15 Roland McGrath <roland@hack.frob.com>
48828
48829 * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S
48830 (CALL_FAIL): Use HIDDEN_JUMPTARGET for __fortify_fail.
48831 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
48832 (CALL_FAIL): Likewise.
48833 * sysdeps/unix/sysv/linux/ia64/____longjmp_chk.S (CHECK_RSP): Likewise.
48834 (CALL_FAIL): Macro removed.
48835 Patch mostly by Mike Frysinger <vapier@gentoo.org>.
48836
488372011-09-15 Ulrich Drepper <drepper@gmail.com>
48838
48839 * sysdeps/x86_64/fpu/bits/mathinline.h: Add fmax and fmin optimizations
48840 for __FINITE_MATH_ONLY__ == 1.
48841
488422011-09-15 Andreas Schwab <schwab@redhat.com>
48843
48844 * sysdeps/powerpc/fpu/e_hypot.c (__ieee754_hypot): Use
48845 __ieee754_sqrt instead of sqrt.
48846 * sysdeps/powerpc/fpu/e_hypotf.c (__ieee754_hypotf): Use
48847 __ieee754_sqrtf instead of sqrtf.
48848 * sysdeps/powerpc/fpu/e_rem_pio2f.c (__ieee754_rem_pio2f): Use
48849 __floorf instead of floorf.
48850 * sysdeps/powerpc/fpu/k_rem_pio2f.c (__fp_kernel_rem_pio2f): Use
48851 __floorf, __truncf instead of floorf, truncf.
48852
488532011-09-14 Ulrich Drepper <drepper@gmail.com>
48854
48855 * sysdeps/x86_64/fpu/s_copysign.S [ELF]: Use correct section.
48856
48857 * sysdeps/x86_64/fpu/bits/mathinline.h (__MATH_INLINE): Use
48858 __extern_always_inline.
48859 Define lrint{f,} and llrint{f,} for 64-bit and in some situations for
48860 32-bit.
48861
488622011-09-14 Andreas Schwab <schwab@redhat.com>
48863
48864 * elf/rtld.c (dl_main): Also relocate in dependency order when
48865 doing symbol dependency testing.
48866
488672011-09-13 Andreas Schwab <schwab@linux-m68k.org>
48868
48869 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
48870 Always define `refsym'.
48871
488722011-09-13 Andreas Schwab <schwab@redhat.com>
48873
48874 * misc/sys/select.h (__FD_MASK): Renamed from __FDMASK.
48875 (__FD_ELT): Renamed from __FDELT.
48876 * misc/bits/select2.h (__FD_ELT): Likewise.
48877 * bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET): Use __FD_ELT,
48878 __FD_MASK instead of __FDELT, __FDMASK.
48879 * sysdeps/i386/bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET):
48880 Likewise.
48881 * sysdeps/x86_64/bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET):
48882 Likewise.
48883
48884 * elf/Makefile (gen-ldd): Fix pattern.
48885
48886 * elf/rtld.c (dl_main): Only use USE___THREAD when defined.
48887 (init_tls): Likewise.
48888
488892011-09-12 Ulrich Drepper <drepper@gmail.com>
48890
48891 * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: New file.
48892
488932011-09-12 Andreas Schwab <schwab@redhat.com>
48894
48895 * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Cast to
48896 `struct cmsghdr *' instead of `void *'.
48897 * sysdeps/unix/sysv/linux/sparc/bits/socket.h (__cmsg_nxthdr):
48898 Likewise.
48899
489002011-09-11 Andreas Schwab <schwab@linux-m68k.org>
48901
48902 * elf/Makefile (gen-ldd): Prepend $(..) to $(ldd-rewrite-script)
48903 if non-absolute.
48904 * sysdeps/unix/sysv/linux/configure.in: Remove leading ../ from
48905 ldd_rewrite_script.
48906
489072011-09-11 Ulrich Drepper <drepper@gmail.com>
48908
48909 * configure.in: Remove --with-tls option.
48910 * config.h.in: Remove HAVE_TLS_SUPPORT entry.
48911 * sysdeps/i386/elf/configure.in: Always test for TLS support and err
48912 out in case it is missing.
48913 * sysdeps/ia64/elf/configure.in: Likewise.
48914 * sysdeps/powerpc/powerpc32/elf/configure.in: Likewise.
48915 * sysdeps/powerpc/powerpc64/elf/configure.in: Likewise.
48916 * sysdeps/s390/s390-32/elf/configure.in: Likewise.
48917 * sysdeps/s390/s390-64/elf/configure.in: Likewise.
48918 * sysdeps/sh/elf/configure.in: Likewise.
48919 * sysdeps/sparc/sparc32/elf/configure.in: Likewise.
48920 * sysdeps/sparc/sparc64/elf/configure.in: Likewise.
48921 * sysdeps/x86_64/elf/configure.in: Likewise.
48922 * sysdeps/mach/hurd/i386/tls.h: Remove test for HAVE_TLS_SUPPORT.
48923 * sysdeps/mach/hurd/tls.h: Likewise.
48924
48925 [BZ #13067]
48926 * malloc/obstack.h [!GNUC] (obstack_free): Avoid cast to int.
48927
48928 [BZ #13090]
48929 * configure.in: Fix use of AC_INIT.
48930
48931 * elf/dl-support.c (_dl_pagesize): Initialize to EXEC_PAGESIZE.
48932
489332011-09-10 Ulrich Drepper <drepper@gmail.com>
48934
48935 * malloc/malloc.c: Replace MALLOC_FAILURE_ACTION with use of
48936 __set_errno.
48937 * malloc/hooks.c: Likewise.
48938
48939 [BZ #11929]
48940 * malloc/arena.c (ptmalloc_init_minimal): Removed. Initialize all
48941 variables statically.
48942 (narenas): Initialize.
48943 (list_lock): Initialize.
48944 (ptmalloc_init): Don't call ptmalloc_init_minimal. Remove
48945 initializtion of main_arena and list_lock. Small cleanups.
48946 Replace all uses of malloc_getpagesize with GLRO(dl_pagesize).
48947 * malloc/malloc.c: Remove malloc_getpagesize. Include <ldsodefs.h>.
48948 Add initializers to main_arena and mp_.
48949 (malloc_state): Remove pagesize member. Change all users to use
48950 GLRO(dl_pagesize).
48951
48952 * elf/rtld.c (rtld_global_ro): Initialize _dl_pagesize.
48953 * sysdeps/unix/sysv/linux/getpagesize.c: Simplify. GLRO(dl_pagesize)
48954 is always initialized.
48955
48956 * malloc/malloc.c: Removed unused configurations and dead code.
48957 * malloc/arena.c: Likewise.
48958 * malloc/hooks.c: Likewise.
48959 * malloc/Makefile (CPPFLAGS-malloc.c): Don't add -DATOMIC_FASTBINS.
48960
48961 * include/tls.h: Removed. USE___THREAD must always be defined.
48962 * bits/libc-tsd.h: Don't handle !USE___THREAD.
48963 * elf/dl-libc.c: Likewise.
48964 * elf/dl-tsd.c: Likewise.
48965 * include/errno.h: Likewise.
48966 * include/netdb.h: Likewise.
48967 * include/resolv.h: Likewise.
48968 * inet/herrno-loc.c: Likewise.
48969 * inet/herrno.c: Likewise.
48970 * malloc/arena.c: Likewise.
48971 * malloc/hooks.c: Likewise.
48972 * malloc/malloc.c: Likewise.
48973 * resolv/res-state.c: Likewise.
48974 * resolv/res_libc.c: Likewise.
48975 * sysdeps/i386/dl-machine.h: Likewise.
48976 * sysdeps/ia64/dl-machine.h: Likewise.
48977 * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
48978 * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
48979 * sysdeps/s390/s390-32/dl-machine.h: Likewise.
48980 * sysdeps/s390/s390-64/dl-machine.h: Likewise.
48981 * sysdeps/sh/dl-machine.h: Likewise.
48982 * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
48983 * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
48984 * sysdeps/unix/i386/sysdep.S: Likewise.
48985 * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
48986 * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise.
48987 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
48988 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
48989 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
48990 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
48991 * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
48992 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
48993 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
48994 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
48995 * sysdeps/unix/x86_64/sysdep.S: Likewise.
48996 * sysdeps/x86_64/dl-machine.h: Likewise.
48997 * tls.make.c: Likewise.
48998
48999 * configure.in: Remove --with-__thread option. Make tests for
49000 --no-whole-archive, __builtin_expect, symbol redirection, __thread,
49001 tls_model attribute fail if no support is available. Remove
49002 USE_IN_LIBIO.
49003 * Makeconfig: Adjust for dropped configure option. All features are
49004 now mandatory.
49005 * Makerules: Likewise.
49006 * Versions.def: Likewise.
49007 * argp/argp-fmtstream.c: Likewise.
49008 * argp/argp-fmtstream.h: Likewise.
49009 * argp/argp-help.c: Likewise.
49010 * assert/assert.c: Likewise.
49011 * config.h.in: Likewise.
49012 * config.make.in: Likewise.
49013 * configure: Likewise.
49014 * configure.in: Likewise.
49015 * csu/Versions: Likewise.
49016 * csu/init.c: Likewise.
49017 * elf/tst-audit2.c: Likewise.
49018 * elf/tst-tls10.c: Likewise.
49019 * elf/tst-tls10.h: Likewise.
49020 * elf/tst-tls11.c: Likewise.
49021 * elf/tst-tls12.c: Likewise.
49022 * elf/tst-tls14.c: Likewise.
49023 * elf/tst-tlsmod11.c: Likewise.
49024 * elf/tst-tlsmod12.c: Likewise.
49025 * elf/tst-tlsmod13.c: Likewise.
49026 * elf/tst-tlsmod13a.c: Likewise.
49027 * elf/tst-tlsmod14a.c: Likewise.
49028 * elf/tst-tlsmod15b.c: Likewise.
49029 * elf/tst-tlsmod16a.c: Likewise.
49030 * elf/tst-tlsmod16b.c: Likewise.
49031 * elf/tst-tlsmod7.c: Likewise.
49032 * elf/tst-tlsmod8.c: Likewise.
49033 * elf/tst-tlsmod9.c: Likewise.
49034 * gmon/gmon.c: Likewise.
49035 * grp/fgetgrent_r.c: Likewise.
49036 * grp/putgrent.c: Likewise.
49037 * hurd/fopenport.c: Likewise.
49038 * include/libc-symbols.h: Likewise.
49039 * include/tls.h: Likewise.
49040 * intl/gettextP.h: Likewise.
49041 * intl/loadinfo.h: Likewise.
49042 * locale/global-locale.c: Likewise.
49043 * locale/localeinfo.h: Likewise.
49044 * mach/devstream.c: Likewise.
49045 * malloc/arena.c: Likewise.
49046 * malloc/set-freeres.c: Likewise.
49047 * misc/err.c: Likewise.
49048 * misc/getttyent.c: Likewise.
49049 * misc/mntent_r.c: Likewise.
49050 * posix/getopt.c: Likewise.
49051 * posix/wordexp.c: Likewise.
49052 * pwd/fgetpwent_r.c: Likewise.
49053 * resolv/Versions: Likewise.
49054 * resolv/res_hconf.c: Likewise.
49055 * shadow/fgetspent_r.c: Likewise.
49056 * shadow/putspent.c: Likewise.
49057 * stdio-common/printf_fphex.c: Likewise.
49058 * stdio-common/tmpfile.c: Likewise.
49059 * stdlib/abort.c: Likewise.
49060 * stdlib/fmtmsg.c: Likewise.
49061 * sunrpc/auth_unix.c: Likewise.
49062 * sunrpc/clnt_perr.c: Likewise.
49063 * sunrpc/clnt_tcp.c: Likewise.
49064 * sunrpc/clnt_udp.c: Likewise.
49065 * sunrpc/clnt_unix.c: Likewise.
49066 * sunrpc/openchild.c: Likewise.
49067 * sunrpc/svc_simple.c: Likewise.
49068 * sunrpc/svc_tcp.c: Likewise.
49069 * sunrpc/svc_udp.c: Likewise.
49070 * sunrpc/svc_unix.c: Likewise.
49071 * sunrpc/xdr.c: Likewise.
49072 * sunrpc/xdr_array.c: Likewise.
49073 * sunrpc/xdr_rec.c: Likewise.
49074 * sunrpc/xdr_ref.c: Likewise.
49075 * sunrpc/xdr_stdio.c: Likewise.
49076
490772011-09-09 Ulrich Drepper <drepper@gmail.com>
49078
49079 * sysdeps/i386/fpu/libm-test-ulps: Adjust ULPs for jn tests.
49080
490812011-07-03 Andreas Jaeger <aj@suse.de>
49082
49083 * math/libm-test.inc (jn_test): Add tests for BZ#11589.
49084 * sysdeps/x86_64/fpu/libm-test-ulps: Add new ULPs for jn_test,
49085 regenerate with gen-libm-tests.pl.
49086
490872010-05-12 Petr Baudis <pasky@suse.cz>
49088
49089 [BZ #11589]
49090 * sysdeps/ieee754/dbl-64/e_jn.c: Compensate major precision loss
49091 around j0() zero points by switching to j1().
49092 * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
49093 * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
49094 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
49095 * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
49096
490972011-09-09 Ulrich Drepper <drepper@gmail.com>
49098
49099 * sysdeps/unix/bsd/bsd4.4/bits/socket.h (__cmsg_nxthdr): Use NULL
49100 instead of 0.
49101 * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Use (void*)0
49102 instead of 0.
49103 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
49104 Patch in part by Pavel Roskin <proski@gnu.org>.
49105
49106 [BZ #13138]
49107 * stdio-common/vfscanf.c (ADDW): Allocate large memory block with
49108 realloc.
49109 (_IO_vfscanf_internal): Remove reteof. Use errout after setting done.
49110 Free memory block if necessary.
49111
49112 [BZ #12847]
49113 * libio/genops.c (INTDEF): For string streams the _lock pointer can
49114 be NULL. Don't lock in this case.
49115
491162011-09-09 Roland McGrath <roland@hack.frob.com>
49117
49118 * elf/elf.h (ELFOSABI_GNU): New macro.
49119 (ELFOSABI_LINUX): Define to that.
49120
491212011-07-29 Denis Zaitceff <zaitceff@gmail.com>
49122
49123 * string/strncat.c (strncat): Undef the symbol in case it has been
49124 defined in bits/string.h.
49125
491262011-09-09 Ulrich Drepper <drepper@gmail.com>
49127
49128 * elf/sotruss.ksh: Clean up, fix, and complete help messages.
49129
49130 * elf/dl-iteratephdr.c (__dl_iterate_phdr): Fill in data from the real
49131 link map.
49132
491332011-08-17 Andreas Jaeger <aj@suse.de>
49134
49135 * elf/sprof.c (load_shobj): Remove unused variable log_hashfraction.
49136
491372011-08-18 Paul Pluzhnikov <ppluzhnikov@google.com>
49138 Ian Lance Taylor <iant@google.com>
49139
49140 * math/libm-test.inc (lround_test): New testcase.
49141 * sysdeps/ieee754/dbl-64/s_lround.c (__lround): Don't lose precision.
49142
491432011-09-08 Ulrich Drepper <drepper@gmail.com>
49144
49145 * Makefile: Remove support for automatic cvs check-ins.
49146 * Makerules: Likewise.
49147 * config.make.in: Likewise.
49148 * configure.in: Likewise.
49149 * intl/Makefile: Likewise.
49150 * locale/Makefile: Likewise.
49151 * po/Makefile: Likewise.
49152 * posix/Makefile: Likewise.
49153 * sysdeps/gnu/Makefile: Likewise.
49154 * sysdeps/mach/hurd/Makefile: Likewise.
49155 * sysdeps/sparc/sparc32/Makefile: Likewise.
49156
49157 [BZ #13118]
49158 * posix/Makefile (bug-regex32-ENV): Define.
49159 Patch by John Stanley <jpsinthemix@verizon.net>.
49160
49161 * misc/Makefile (headers): Add bits/select2.h.
49162 * misc/sys/select.h: Include bits/select2.h for _FORTIFY_SOURCE.
49163 * misc/bits/select2.h: New file.
49164 * include/bits/select2.h: New file.
49165 * debug/Makefile (routines): Add fdelt_chk.
49166 * debug/Versions: Export __fdelt_chk and __fdelt_warn for GLIBC_2.15.
49167 * debug/tst-chk1.c (do_test): Add tests for FD_SET, FD_CLR, and
49168 FD_ISSET.
49169 * debug/fdelt_chk.c: New file.
49170
49171 * wcsmbs/test-wcscmp.c: Moved from string/*. Adjust.
49172 * wcsmbs/test-wmemcmp.c: Likewise.
49173 * string/Makefile (strop-tests): Remove wcscmp and wmemcmp.
49174 * wcsmbs/Makefile (strop-tests): Add wcscmp and wmemcmp.
49175
491762011-09-08 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
49177
49178 * string/Makefile (strop-tests): Add memcmp.
49179 * string/test-wmemcmp.c: New file.
49180 * string/test-memcmp.c: Add wmemcmp support.
49181
491822011-09-08 Roland McGrath <roland@hack.frob.com>
49183
49184 [BZ #13153]
49185 * manual/libc.texinfo (EDITION, VERSION, UPDATED): Update for
49186 2011-07-19 change.
49187
49188 * sysdeps/mach/hurd/fork.c (__fork): Initialize REFS so we don't use a
49189 garbage value in a __mach_port_mod_refs call in the cases of the
49190 task-self and thread-self ports.
49191
491922011-09-06 Samuel Thibault <samuel.thibault@ens-lyon.org>
49193
49194 * sysdeps/mach/hurd/sys/param.h (DEV_BSIZE): New macro.
49195
491962011-09-08 Andreas Schwab <schwab@redhat.com>
49197
49198 * elf/dl-load.c (lose): Check for non-null L.
49199
492002011-09-07 Ulrich Drepper <drepper@gmail.com>
49201
49202 * elf/dl-load.c (open_verify): Use O_CLOEXEC.
49203
49204 * elf/dl-libc.c (dlerror_run): Pass back error code from
49205 dl_catch_error.
49206
49207 [BZ #13123]
49208 * elf/dl-load.c (lose): Free l_origin if it is valid.
49209
49210 * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Fix mixup in section
49211 names.
49212 * sysdeps/i386/i686/multiarch/strchr-sse2.S: Likewise.
49213 * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
49214 * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
49215 * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
49216 * sysdeps/i386/i686/multiarch/strrchr-sse2.S: Likewise.
49217 Patch by Liubov Dmitrieva <liubov.dmitrieva@intel.com>.
49218
492192011-08-01 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
49220
49221 * sysdeps/powerpc/fpu/e_hypot.c: New file.
49222 * sysdeps/powerpc/fpu/e_hypotf.c: New file.
49223 * sysdeps/powerpc/fpu/e_rem_pio2f.c: New file.
49224 * sysdeps/powerpc/fpu/k_rem_pio2f.c: New file.
49225 * sysdeps/powerpc/fpu/k_cosf.c: New file.
49226 * sysdeps/powerpc/fpu/k_sinf.c: New file.
49227 * sysdeps/powerpc/fpu/s_cosf.c: New file.
49228 * sysdeps/powerpc/fpu/s_sinf.c: New file.
49229 * sysdeps/powerpc/fpu/s_scalbnf.c: New file.
49230 * sysdeps/powerpc/fpu/s_float_bitwise.h: New file.
49231
492322011-08-15 Alan Modra <amodra@gmail.com>
49233
49234 [BZ #13092]
49235 * sysdeps/powerpc/Makefile (gmon): Move sysdep_routines to..
49236 * sysdeps/powerpc/powerpc64/Makefile (gmon): ..here..
49237 * sysdeps/powerpc/powerpc32/Makefile (gmon): ..and here. Add
49238 ppc_mcount to static-only-routines.
49239 * sysdeps/powerpc/powerpc32/Versions: Export GLIBC_PRIVATE
49240 __mcount_internal.
49241 * sysdeps/powerpc/powerpc32/ppc-mcount.S (_mcount): Call
49242 __mcount_internal with usual JUMPTARGET. Remove useless nop.
49243
492442011-08-18 David Flaherty <flaherty@linux.vnet.ibm.com>
49245
49246 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: New file which checks
49247 for finite and infinity parameters.
49248
492492011-08-04 Will Schmidt <will_schmidt@vnet.ibm.com>
49250
49251 * sysdeps/powerpc/powerpc32/power7/strncmp.S: Adjust the alignment
49252 and add nop instructions for throughput optimization.
49253 * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
49254
492552011-07-28 Will Schmidt <will_schmidt@vnet.ibm.com>
49256
49257 * sysdeps/powerpc/powerpc32/power7/memcpy.S: Optimize the
49258 aligned copy for power7 with vector-scalar instructions.
49259 * sysdeps/powerpc/powerpc64/power7/memcpy.S: Likewise.
49260
492612011-07-24 H.J. Lu <hongjiu.lu@intel.com>
49262
49263 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Simplify
49264 AVX check.
49265
492662011-09-07 Andreas Schwab <schwab@redhat.com>
49267
49268 [BZ #13144]
49269 * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semdid_ds): Revert
49270 last change.
49271
492722011-09-07 Ulrich Drepper <drepper@gmail.com>
49273
49274 * sysdeps/unix/sysv/linux/x86_64/init-first.c
49275 (_libc_vdso_platform_setup): If vDSO is not present store pointer to
49276 syscall wrapper around clock_gettime in __vdso_clock_gettime.
49277 * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Add entry for
49278 clock_gettime.
49279
492802011-09-06 Ulrich Drepper <drepper@gmail.com>
49281
49282 * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c (INTERNAL_GETTIME):
49283 Forgot to demangle the pointer.
49284
49285 * sysdeps/i386/sysdep.h: Define atom_text_section.
49286 * sysdeps/x86_64/sysdep.h: Likewise.
49287 * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Place function in
49288 section with atom_text_section.
49289 * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
49290 * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
49291 * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: Likewise.
49292 * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Likewise.
49293 * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S: Likewise.
49294
49295 * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c: New file.
49296 * sysdeps/unix/sysv/linux/clock_gettime.c (SYSCALL_GETTIME): Allow
49297 already be defined. Change to take two parameters and don't assign
49298 result to variable. Adjust all users.
49299 Define INTERNAL_GETTIME if not already defined.
49300 Use INTERNAL_GETTIME instead of INTERNAL_VSYSCALL got clock_gettime
49301 call.
49302 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Don't define
49303 HAVE_CLOCK_GETTIME_VSYSCALL.
49304 * sysdeps/unix/clock_gettime.c: Adjust use of SYSDEP_GETTIME_CPU.
49305
49306 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Don't use
49307 gettimeofday vsyscall, just use time.
49308
493092011-09-06 Andreas Schwab <schwab@redhat.com>
49310
49311 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c [!SHARED]: Include
49312 <errno.h>.
49313
493142011-09-06 Ulrich Drepper <drepper@gmail.com>
49315
49316 * sysdeps/unix/sysv/linux/kernel-features.h: Add entry for getcpu
49317 syscall on x86-64.
49318 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c [!SHARED]: Use real
49319 syscall.
49320 * sysdeps/unix/sysv/linux/x86_64/time.c: Likewise.
49321 * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S [!SHARED]: Use real
49322 syscall if possible.
49323
493242011-09-05 Ulrich Drepper <drepper@gmail.com>
49325
49326 * elf/pldd.c (get_process_info): Don't read whole ELF header, just
49327 e_ident. Don't pass to find_mapsXX.
49328 * elf/pldd-xx.c (find_mapsXX): Remove second parameter.
49329
493302011-07-20 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
49331
49332 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
49333 strchr-sse2-no-bsf strrchr-sse2-no-bsf
49334 * sysdeps/x86_64/multiarch/strchr.S: Update.
49335 Check bit_slow_BSF bit.
49336 * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
49337 * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: New file.
49338 * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S: New file.
49339
493402011-09-05 Ulrich Drepper <drepper@gmail.com>
49341
49342 [BZ #13134]
49343 * sysdeps/posix/spawni.c (script_execute): Define only for compatibility
49344 before glibc 2.15.
49345 (tryshell): Define.
49346 (__spawni): Change last parameter to be flag. Test
49347 SPAWN_XFLAGS_USE_PATH flag to use path or not.
49348 Don't try to use shell unless SPAWN_XFLAGS_TRY_SHELL is set.
49349 * sysdeps/mach/hurd/spawni.c: Change last parameter and adjust user.
49350 * posix/spawni.c: Likewise.
49351 * posix/spawn.c: Add compat version which passed SPAWN_XFLAGS_TRY_SHELL.
49352 * posix/spawnp.c: Likewise. Change normal version to use
49353 SPAWN_XFLAGS_USE_PATH.
49354 * posix/spawn_int.c: Define SPAWN_XFLAGS_USE_PATH and
49355 SPAWN_XFLAGS_TRY_SHELL.
49356
49357 [BZ #13150]
49358 * posix/glob.h: Remove gcc 1.x support.
49359
49360 [BZ #13068]
49361 * elf/dl-misc.c (_dl_sysdep_read_whole_file): Use O_CLOEXEC.
49362
493632011-07-20 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
49364
49365 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
49366 strchr-sse2 strrchr-sse2 strchr-sse2-bsf
49367 strrchr-sse2-bsf
49368 * sysdeps/i386/i686/multiarch/strchr.S: New file.
49369 * sysdeps/i386/i686/multiarch/strrchr.S: New file.
49370 * sysdeps/i386/i686/multiarch/strchr-sse2.S: New file.
49371 * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: New file.
49372 * sysdeps/i386/i686/multiarch/strrchr-sse2.S: New file.
49373 * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: New file.
49374
493752011-08-29 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
49376
49377 * sysdeps/x86_64/wcscmp.S: New file.
49378
49379 * sysdeps/i386/i686/multiarch/Makefile: (sysdep_routines): Add
49380 wcscmp-c wcscmp-sse2
49381 * sysdeps/i386/i686/multiarch/wcscmp-c.c: New file.
49382 * sysdeps/i386/i686/multiarch/wcscmp.S: New file.
49383 * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: New file.
49384 * wcsmbs/wcscmp.c: Allow renaming.
49385
493862011-09-05 David S. Miller <davem@davemloft.net>
49387
49388 * sysdeps/sparc/sparc32/fpu/s_fabsf.S: Use first argument
49389 stack slot, rather than the struct return pointer slot.
49390 * sysdeps/sparc/sparc32/fpu/s_fabs.c: Delete.
49391 * sysdeps/sparc/sparc32/fpu/s_fabs.S: New file.
49392 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S: Likewise.
49393 * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/fpu/Implies: Likewise.
49394
493952011-09-05 Ulrich Drepper <drepper@gmail.com>
49396
49397 * po/ja.po: Update from translation team.
49398
49399 [BZ #13144]
49400 * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semdid_ds): Fix to match
49401 kernel in 64-bit binaries.
49402
494032011-09-01 David S. Miller <davem@davemloft.net>
49404
49405 * elf/elf.h (HWCAP_SPARC_*): Move to..
49406 * sysdeps/sparc/sysdep.h: this new file and add new values.
49407 * sysdeps/unix/sparc/sysdep.h: Include sysdeps/sparc/sysdep.h
49408 * sysdeps/sparc/dl-procinfo.h: Include sysdep.h and increase
49409 _DL_HWCAP_COUNT to 24.
49410 * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add new
49411 entries.
49412 * sysdeps/sparc/sparc32/bits/atomic.h: Don't use magic local
49413 __ATOMIC_HWCAP_SPARC_V9 define, use sysdep.h one instead.
49414 * sysdeps/sparc/sparc32/dl-machine.h: Include sysdep.h
49415 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Use HWCAP_SPARC_*
49416 instead of magic constants.
49417 * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
49418
494192011-08-31 David S. Miller <davem@davemloft.net>
49420
49421 * sysdeps/unix/sparc/sysdep.h (SETUP_PIC_REG): Define.
49422 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h (PSEUDO):
49423 Reimplement to do errno handling inline.
49424 (SYSCALL_ERROR_HANDLER): New macro.
49425 (__SYSCALL_STRING): Do not do errno handling in asm.
49426 (__CLONE_SYSCALL_STRING): Delete.
49427 (__INTERNAL_SYSCALL_STRING): Delete.
49428 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Include
49429 sysdeps/unix/sparc/sysdep.h instead of sysdeps/unix/sysdep.h
49430 (PSEUDO): Reimplement to do errno handling inline.
49431 (ret, ret_NOERRNO, ret_ERRVAL, r0, r1, MOVE): Don't redefine.
49432 (SYSCALL_ERROR_HANDLER): New macro.
49433 (__SYSCALL_STRING): Do not do errno handling in asm.
49434 (__CLONE_SYSCALL_STRING): Delete.
49435 (__INTERNAL_SYSCALL_STRING): Delete.
49436 * sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL):
49437 Implement in terms of INTERNAL_SYSCALL and __set_errno, just like
49438 i386.
49439 (INTERNAL_SYSCALL_DECL): Declare %g1 var for err state.
49440 (inline_syscall*): Add 'err' argument.
49441 (INTERNAL_SYSCALL, INTERNAL_SYSCALL_NCS,
49442 INTERNAL_SYSCALL_ERROR_P): Likewise and pass it down.
49443 (INLINE_CLONE_SYSCALL): Reimplement in terms of __SYSCALL_STRING,
49444 INTERNAL_SYSCALL_ERRNO, and INTERNAL_SYSCALL_ERROR_P.
49445
49446 * scripts/data/localplt-sparc-linux-gnu.data: Remove 'ffs'.
49447 * scripts/data/localplt-sparc64-linux-gnu.data: Likewise.
49448
494492011-08-30 Andreas Schwab <schwab@redhat.com>
49450
49451 * elf/rtld.c (dl_main): Relocate objects in dependency order.
49452
494532011-08-29 Jiri Olsa <jolsa@redhat.com>
49454
49455 * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Fix cfi
49456 directive.
49457
494582011-08-24 David S. Miller <davem@davemloft.net>
49459
49460 * sysdeps/sparc/sparc64/strcmp.S: Rewrite.
49461
494622011-08-24 Andreas Schwab <schwab@redhat.com>
49463
49464 * elf/Makefile: Add rules to build and run unload8 test.
49465 * elf/unload8.c: New file.
49466 * elf/unload8mod1.c: New file.
49467 * elf/unload8mod1x.c: New file.
49468 * elf/unload8mod2.c: New file.
49469 * elf/unload8mod3.c: New file.
49470
49471 * elf/dl-close.c (_dl_close_worker): Reset private search list if
49472 it wasn't used.
49473
494742011-08-23 David S. Miller <davem@davemloft.net>
49475
49476 * sysdeps/sparc/sparc64/dl-machine.h (DL_STACK_END): Do not
49477 subtract stack bias.
49478 * sysdeps/sparc/sparc64/jmpbuf-unwind.h (_JMPBUF_UNWINDS): Use
49479 %sp not %fp in calculations.
49480 (_JMPBUF_UNWINDS_ADJ): Likewise.
49481
49482 * sysdeps/pthread/aio_suspend.c (do_aio_misc_wait): New function.
49483 (aio_suspend): Call it to force an exception region around the
49484 AIO_MISC_WAIT() invocation.
49485
494862011-08-23 Andreas Schwab <schwab@redhat.com>
49487
49488 * sysdeps/i386/i686/multiarch/strspn.S (ENTRY): Add missing
49489 backslash.
49490
494912011-07-04 Aurelien Jarno <aurelien@aurel32.net>
49492
49493 * sysdeps/powerpc/dl-tls.h: Add _PPC_DL_TLS_H inclusion
49494 protection macro.
49495 * sysdeps/powerpc/powerpc64/dl-irel.h: Include <ldsodefs.h>
49496 and <dl-machine.h>.
49497 (Elf64_FuncDesc): Remove.
49498
494992011-08-22 David S. Miller <davem@davemloft.net>
49500
49501 * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Fix
49502 sigaltstack check, add missing cfi directives.
49503 * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Add
49504 missing cfi directives, and sigaltstack handling.
49505
495062011-08-16 Andreas Schwab <schwab@redhat.com>
49507
49508 [BZ #11724]
49509 * elf/dl-deps.c (_dl_map_object_deps): Only assume cycle when
49510 object is seen twice.
49511 * elf/dl-fini.c (_dl_sort_fini): Likewise.
49512
49513 * elf/Makefile (distribute): Add tst-initorder2.c.
49514 (tests): Add tst-initorder2.
49515 (modules-names): Add tst-initorder2a tst-initorder2b
49516 tst-initorder2c tst-initorder2d. Add rules to build them.
49517 ($(objpfx)tst-initorder2.out): New rule.
49518 * elf/tst-initorder2.c: New file.
49519 * elf/tst-initorder2.exp: New file.
49520
495212011-08-22 Andreas Schwab <schwab@redhat.com>
49522
49523 * sysdeps/unix/sysv/linux/i386/scandir64.c: Include <string.h>.
49524
49525 * elf/dl-deps.c (_dl_map_object_deps): Move check for missing
49526 dependencies back to end of function.
49527
49528 * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Readd
49529 $(elfobjdir)/ld.so.
49530
495312011-08-21 Ulrich Drepper <drepper@gmail.com>
49532
49533 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S: Removed.
49534 * sysdeps/unix/sysv/linux/x86_64/time.S: Removed.
49535 * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c: New file.
49536 * sysdeps/unix/sysv/linux/x86_64/time.c: New file.
49537 * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Remove declaration
49538 of __vdso_gettimeofday.
49539 * sysdeps/unix/sysv/linux/x86_64/init-first.c: Remove definition of
49540 __vdso_gettimeofday and __vdso_time. Define __vdso_getcpu with
49541 attribute_hidden.
49542 (_libc_vdso_platform_setup): Remove initialization of
49543 __vdso_gettimeofday and __vdso_time.
49544
495452011-08-20 Ulrich Drepper <drepper@gmail.com>
49546
49547 * nss/nss_files/files-alias.c (get_next_alias): Use feof_unlocked
49548 and fgetc_unlocked.
49549 * nss/nss_files/files-key.c (search): Use fgets_unlocked and
49550 getc_unlocked.
49551
49552 * elf/dl-open.c (add_to_global): Report additions to the global scope
49553 for LD_DEBUG=scopes.
49554 (dl_open_worker): Also print scope of newly loaded dependencies.
49555 (_dl_show_scope): Indicate if there is no scope.
49556
49557 [BZ #13114]
49558 * stdio-common/Makefile (tests): Add bug24.
49559 * stdio-common/bug24.c: New file.
49560
495612011-08-19 Andreas Jaeger <aj@suse.de>
49562
49563 [BZ #13114]
49564 * libio/fileops.c (_IO_new_file_fopen): Fix handling of
49565 non-existant file when using close-on-exec mode.
49566
495672011-08-20 Ulrich Drepper <drepper@gmail.com>
49568
49569 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_resolve): Fix CFI for
49570 the very first instruction.
49571
49572 * sysdeps/x86_64/dl-trampoline.h: If MORE_CODE is defined, restore
49573 the CFI state in the end.
49574 * sysdeps/x86_64/dl-trampoline.S: Define MORE_CODE before first
49575 inclusion of dl-trampoline.h.
49576 Based on a patch by Jiri Olsa <jolsa@redhat.com>.
49577
495782011-08-19 Andreas Schwab <schwab@redhat.com>
49579
49580 * sysdeps/powerpc/fpu/libm-test-ulps: Relax ctan (0.75 + 1.25 i)
49581 expectations for long double.
49582
49583 * sysdeps/unix/sysv/linux/powerpc/powerpc32/scandir64.c: Renamed
49584 from sysdeps/unix/sysv/linux/powerpc/scandir64.c.
49585
495862011-08-14 David S. Miller <davem@davemloft.net>
49587
49588 * sysdeps/unix/sysv/linux/Makefile (CFLAGS-tst-writev.c): The
49589 artificual limit depends upon the system page size.
49590
495912011-08-17 Ulrich Drepper <drepper@gmail.com>
49592
49593 * Makeconfig (override CFLAGS): Add library-specific CFLAGS.
49594 * resolv/Makefile: Define CFLAGS-libresolv.
49595
495962011-08-17 Andreas Schwab <schwab@redhat.com>
49597
49598 * nss/makedb.c (compute_tables): Make variables used in nested
49599 function static.
49600
496012011-08-17 Ulrich Drepper <drepper@gmail.com>
49602
49603 * elf/pldd-xx.c (r_debug): Explicitly add padding when needed.
49604 * elf/pldd.c (get_process_info): Use pread to re-read auxiliary vector
49605 if buffer was too small.
49606
49607 * elf/pldd.c (main): Attach to all threads in the process.
49608 Rewrite /proc handling to use *at functions.
49609
496102011-08-16 Ulrich Drepper <drepper@gmail.com>
49611
49612 * elf/dl-open.c (_dl_show_scope): Take additional parameter which
49613 specifies first scope to show.
49614 (dl_open_worker): Update callers. Move printing scope of new
49615 object to before the relocation.
49616 * elf/rtld.c (dl_main): Update _dl_show_scope call.
49617 * sysdeps/generic/ldsodefs.h: Update declaration.
49618
49619 * elf/dl-open.c (_dl_show_scope): Use _dl_debug_printf to generate the
49620 string for the scope number.
49621
496222011-08-14 Ulrich Drepper <drepper@gmail.com>
49623
49624 * nscd/servicescache.c (cache_addserv): Make sure written is always
49625 initialized.
49626
496272011-08-14 Roland McGrath <roland@hack.frob.com>
49628
49629 * sysdeps/i386/i486/bits/atomic.h
49630 (__arch_compare_and_exchange_val_64_acq): Use RET alone at end of
49631 statement expression, so as to suppress "set but not used" warning.
49632 (__arch_c_compare_and_exchange_val_64_acq): Likewise.
49633
49634 * string/strncat.c (STRNCAT): Use prototype definition.
49635
49636 * locale/Makefile (locale-CPPFLAGS): Renamed CPPFLAGS-locale-programs.
49637 (locale-CPPFLAGS): New variable; put LOCALEDIR, LOCALE_ALIAS_PATH and
49638 -Iprograms here.
49639 (cppflags-iterator.mk sequence): Use locale-programs in place of nonlib.
49640 (localedef-modules): Add localedef.
49641 (locale-modules): Add locale.
49642
49643 * sysdeps/generic/ldsodefs.h (struct unique_sym): Add a const.
49644 * elf/rtld.c (dl_main): Invert order of assignment in last change,
49645 to avoid a warning.
49646
496472011-08-14 David S. Miller <davem@davemloft.net>
49648
49649 * sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIM_INFINITY,
49650 RLIM64_INFINITY): Fix 64-bit values for 32-bit sparc.
49651
496522011-08-13 Ulrich Drepper <drepper@gmail.com>
49653
49654 * elf/dl-open.c: Rename show_scope to _dl_show_scope and export.
49655 (dl_open_worker): Call _dl_show_scope when DL_DEBUG_SCOPES is set.
49656 * elf/rtld.c (dl_main): Set l_name of vDSO.
49657 Call _dl_show_scope when DL_DEBUG_SCOPES.
49658 (process_dl_debug): Recognize scopes flag and also set it for all.
49659 * sysdeps/generic/ldsodefs.h: Define DL_DEBUG_SCOPES.
49660 Declare _dl_show_scope.
49661
49662 * elf/dl-libc.c (do_dlopen_args): Add caller_dlopen.
49663 (do_dlopen): Pass caller_dlopen to dl_open.
49664 (__libc_dlopen_mode): Initialize caller_dlopen.
49665
49666 * intl/l10nflist.c (_nl_normalize_codeset): Make it compile outside
49667 of libc. Make tolower call locale-independent. Optimize a bit by
49668 using isdigit instead of isalnum.
49669 * locale/Makefile (locale-CPPFLAGS): Add -DNOT_IN_libc.
49670
496712011-08-12 Ulrich Drepper <drepper@gmail.com>
49672
49673 * elf/dl-load.c (_dl_map_object): Show in debug output whether a DSO
49674 was a dependency or dynamically loaded.
49675
496762011-08-11 Ulrich Drepper <drepper@gmail.com>
49677
49678 * intl/l10nflist.c: Allow architecture-specific pop function.
49679 * sysdeps/x86_64/l10nflist.c: New file.
49680
49681 * intl/l10nflist.c (_nl_make_l10nflist): Use locale-independent
49682 classification.
49683
496842011-08-10 Andreas Schwab <schwab@redhat.com>
49685
49686 * include/dirent.h: Add libc_hidden_proto for scandirat and
49687 scandirat64. Don't declare __scandirat64.
49688 * dirent/scandirat.c: Add libc_hidden_def.
49689 * dirent/scandirat64.c (SCANDIRAT): Remove underscores.
49690 * sysdeps/unix/sysv/linux/i386/scandir64.c (SCANDIRAT): Likewise.
49691
496922011-08-10 David S. Miller <davem@davemloft.net>
49693
49694 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Add missing comma in
49695 enum.
49696 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
49697 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
49698 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
49699
497002011-08-09 Ulrich Drepper <drepper@gmail.com>
49701
49702 * Versions.def [libc]: Add GLIBC_2.15.
49703 * dirent/Makefile (routines): Add scandirat and scandirat64.
49704 * dirent/Versions [libc]: Export scandirat and scandirat64 for
49705 GLIBC_2.15.
49706 * dirent/dirent.h: Declare scandirat and scandirat64.
49707 * dirent/scandirat.c: New file.
49708 * dirent/scandirat64.c: New file.
49709 * sysdeps/wordsize-64/scandirat.c: New file.
49710 * sysdeps/wordsize-64/scandirat64.c: New file.
49711 * dirent/opendir.c: Define opendirat.
49712 * dirent/scandir.c: Move code to scandirat.c. Implement scandir
49713 using scandirat.
49714 * dirent/scandir64.c: Adjust for scandir.c change.
49715 * include/dirent.h: Define scandir_cancel_struct. Declare __opendirat,
49716 __scandirat64, and __scandir_cancel_handler.
49717 * sysdeps/unix/opendir.c: Rename __opendir to __opendirat. Take
49718 additional parameter and use openat instead of open (outside of ld.so).
49719 Add new __opendir as wrapper around __opendirat.
49720 * sysdeps/unix/sysv/linux/i386/scandir64.c: Reimplement __old_scandir64
49721 here without requiring old scandirat implementation.
49722
497232011-08-08 Ulrich Drepper <drepper@gmail.com>
49724
49725 * dirent/scandir.c (cancel_handler): Renamed to
49726 __scandir_cancel_handler. Do not define if SKIP_SCANDIR_CANCEL is
49727 defined. Adjust users.
49728 * dirent/scandir64.c: Define SKIP_SCANDIR_CANCEL.
49729 * sysdeps/unix/sysv/linux/i386/scandir64.c: Likewise.
49730
497312011-08-04 Ulrich Drepper <drepper@gmail.com>
49732
49733 * string/test-string.h (IMPL): Use __STRING to expand name and then
49734 stringify it.
49735
49736 * string/test-strcmp.c: Unify most of the WIDE and !WIDE code. Lots
49737 of cleanups.
49738
497392011-07-22 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
49740
49741 * string/Makefile: Update.
49742 (strop-tests): Append strncat.
49743 * string/test-wcscmp.c: New file.
49744 New comprehensive test for wcscmp.
49745 * string/test-strcmp.c: Update.
49746 (WIDE): New define.
49747
497482011-07-22 Andreas Schwab <schwab@redhat.com>
49749
49750 * resolv/res_init.c (__res_vinit): Properly tokenize nameserver
49751 line.
49752
497532011-07-26 Andreas Schwab <schwab@redhat.com>
49754
49755 * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
49756 encoding to ACE if AI_IDN.
49757
497582011-08-01 Jakub Jelinek <jakub@redhat.com>
49759
49760 * sysdeps/ieee754/dbl-64/k_rem_pio2.c (__kernel_rem_pio2): Fix up fq
49761 to y conversion for prec 3 and __FLT_EVAL_METHOD__ != 0.
49762
497632011-07-22 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
49764
49765 * sysdeps/i386/i686/multiarch/strcat-sse2.S: Update.
49766 Fix overflow bug in strncat.
49767 * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Likewise.
49768
49769 * string/test-strncat.c: Update.
49770 Add new tests for checking overflow bugs.
49771
497722011-07-15 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
49773
49774 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
49775 strcat-ssse3 strcat-sse2 strncat-ssse3 strncat-sse2 strncat-c.
49776 * sysdeps/i386/i686/multiarch/strcat.S: New file.
49777 * sysdeps/i386/i686/multiarch/strcat-c.c: New file.
49778 * sysdeps/i386/i686/multiarch/strcat-sse2.S: New file.
49779 * sysdeps/i386/i686/multiarch/strcat-ssse3.S: New file.
49780 * sysdeps/i386/i686/multiarch/strncat.S: New file.
49781 * sysdeps/i386/i686/multiarch/strncat-sse2.S: New file.
49782 * sysdeps/i386/i686/multiarch/strncat-ssse3.S: New file.
49783
49784 * sysdeps/i386/i686/multiarch/strcpy-ssse3.S
49785 (USE_AS_STRCAT): Define.
49786 Add strcat and strncat support.
49787 * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
49788
497892011-07-25 Andreas Schwab <schwab@redhat.com>
49790
49791 * sysdeps/i386/i486/bits/string.h (__strncat_g): Correctly handle
49792 __n bigger than INT_MAX+1.
49793 (__strncmp_g): Likewise.
49794
497952011-07-23 Ulrich Drepper <drepper@gmail.com>
49796
49797 * posix/unistd.h: Define SEEK_DATA and SEEK_HOLE.
49798 * libio/stido.h: Likewise.
49799
49800 * sysdeps/unix/sysv/linux/bits/socket.h (PF_NFC): Define.
49801 (AF_NFC): Define.
49802 * sysdeps/unix/sysv/linux/sparc/bits/socket.h (PF_NFC): Define.
49803 (AF_NFC): Define.
49804
49805 * sysdeps/unix/sysv/linux/sys/ptrace.h: Add new constants.
49806 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
49807 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
49808 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
49809 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
49810
49811 [BZ #13021]
49812 * scripts/test-installation.pl: Don't expect libnss_test1 to be
49813 installed.
49814
49815 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix one more
49816 typo.
49817 (_dl_x86_64_save_sse): Likewise.
49818
498192011-07-22 Ulrich Drepper <drepper@gmail.com>
49820
49821 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix test for
49822 OSXSAVE.
49823 (_dl_x86_64_save_sse): Likewise.
49824
49825 * crypt/crypt_util.c (__init_des_r): Optimize memset calls.
49826
49827 * crypt/crypt_util.c (__init_des_r): Add read barrier as well.
49828
498292011-07-21 Andreas Schwab <schwab@redhat.com>
49830
49831 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix last
49832 change.
49833 (_dl_x86_64_save_sse): Use correct AVX check.
49834
498352011-07-21 Liubov Dmitrieva <liubov.dmitrieva@gmail.com>
49836
49837 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Fix overfow
49838 bug in strncpy/strncat.
49839 * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
49840
498412011-07-21 Ulrich Drepper <drepper@gmail.com>
49842
49843 * string/tester.c (test_strcat): Add tests for different alignments
49844 of source and destination.
49845 (test_strncat): Likewise.
49846
498472011-07-20 Ulrich Drepper <drepper@gmail.com>
49848
49849 [BZ #12852]
49850 * posix/glob.c (glob): Check passed in values before using them in
49851 expressions to avoid some overflows.
49852 (glob_in_dir): Likewise.
49853
49854 [BZ #13007]
49855 * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): More complete
49856 check for AVX enablement so that we don't crash with old kernels and
49857 new hardware.
49858 * elf/tst-audit4.c: Add same checks here.
49859 * elf/tst-audit6.c: Likewise.
49860
49861 * sysdeps/x86_64/bits/link.h (La_x86_64_ymm): Force 16-byte alignment.
49862
498632011-07-09 Andreas Schwab <schwab@linux-m68k.org>
49864
49865 * sysdeps/unix/sysv/linux/pathconf.c: Include <string.h>.
49866
498672011-07-20 Ulrich Drepper <drepper@gmail.com>
49868
49869 * po/cs.po: Update from translation team.
49870 * po/bg.po: Likewise.
49871
498722011-07-12 Marek Polacek <mpolacek@redhat.com>
49873
49874 * misc/sys/cdefs.h: Add support for const attribute.
49875 * sysdeps/unix/sysv/linux/sys/sysmacros.h: Add __attribute_const__
49876 to gnu_dev_{major,minor,makedev} functions.
49877
498782011-07-20 Marek Polacek <mpolacek@redhat.com>
49879
49880 * intl/dcigettext.c (get_output_charset): Add missing bracket.
49881
498822011-07-20 Andreas Schwab <schwab@redhat.com>
49883
49884 * resolv/res_query.c (__libc_res_nquerydomain): Use size_t for
49885 strlen results.
49886
498872011-07-13 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
49888
49889 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h
49890 (INTERNAL_VSYSCALL_NCS): Use r10 for backing up the return address
49891 register in order to avoid conflicts with the soft frame pointer
49892 being held in r11 when necessary.
49893 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
49894 (INTERNAL_VSYSCALL_NCS): Likewise.
49895
498962011-07-14 Marek Polacek <mpolacek@redhat.com>
49897
49898 * elf/dl-fini.c (_dl_sort_fini): Remove unused link_map *l argument,
49899 * elf/dl-fini.c (_dl_fini): Adjust caller.
49900 * elf/dl-close.c (_dl_close_worker): Likewise.
49901 * sysdeps/generic/ldsodefs.h: Adjust declaration.
49902
499032011-07-15 Marek Polacek <mpolacek@redhat.com>
49904
49905 * elf/cache.c (load_aux_cache): Remove unnecessary condition of
49906 "aux_cache->nlibs < 0".
49907
49908 * nscd/nscd_conf.c (nscd_parse_file): Remove unnecessary condition
49909 in the reload-count case.
49910
499112011-07-15 Liubov Dmitrieva <liubov.dmitrieva@intel.com>
49912
49913 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
49914 strcat-ssse3 strcat-sse2-unaligned strncat-ssse3
49915 strncat-sse2-unaligned strncat-c strlen-sse2-pminub
49916 * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: New file.
49917 * sysdeps/x86_64/multiarch/strcat.S: New file.
49918 * sysdeps/x86_64/multiarch/strncat.S: New file.
49919 * sysdeps/x86_64/multiarch/strncat-c.c: New file.
49920 * sysdeps/x86_64/multiarch/strcat-ssse3.S: New file.
49921 * sysdeps/x86_64/multiarch/strncat-sse2-unaligned.S: New file.
49922 * sysdeps/x86_64/multiarch/strncat-ssse3.S: New file.
49923 * sysdeps/x86_64/multiarch/strcpy-ssse3.S
49924 (USE_AS_STRCAT): Define.
49925 Add strcat and strncat support.
49926 * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Likewise.
49927 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
49928 * sysdeps/x86_64/multiarch/strlen-sse2-pminub.S: New file.
49929 * string/strncat.c: Update.
49930 (USE_AS_STRNCAT): Define.
49931 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
49932 Turn on bit_Prefer_PMINUB_for_stringop for Intel Core i3, i5
49933 and i7.
49934 * sysdeps/x86_64/multiarch/init-arch.h
49935 (bit_Prefer_PMINUB_for_stringop): New.
49936 (index_Prefer_PMINUB_for_stringop): Likewise.
49937 * sysdeps/x86_64/multiarch/strlen.S (strlen): Check
49938 bit_Prefer_PMINUB_for_stringop.
49939
499402011-07-19 Ulrich Drepper <drepper@gmail.com>
49941
49942 * crypt/sha512.h (struct sha512_ctx): Move buffer into union and add
49943 buffer64.
49944 * crypt/sha512.c (__sha512_finish_ctx): Use buffer64 for writes instead
49945 of casting of buffer.
49946 * crypt/sha256.h (struct sha256_ctx): Move buffer into union and add
49947 buffer32 and buffer64.
49948 * crypt/sha256.c (__sha256_finish_ctx): Use buffer32 or buffer64 for
49949 writes instead of casting of buffer.
49950 * crypt/md5.h (struct md5_ctx): Move buffer into union and add
49951 buffer32.
49952 * crypt/md5.c (md5_finish_ctx): Use buffer32 for writes instead of
49953 casting of buffer.
49954
499552011-07-19 Andreas Schwab <schwab@redhat.com>
49956
49957 * string/strxfrm_l.c (STRXFRM): Fix alloca accounting.
49958
499592011-07-19 Ulrich Drepper <drepper@gmail.com>
49960
49961 * nscd/nscd.c (termination_handler): Don't do anything for a database
49962 if it has not yet been initialized.
49963
499642011-07-18 Ulrich Drepper <drepper@gmail.com>
49965
49966 * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_EQUAL_S): Fix a typo.
49967
499682011-07-15 Marek Polacek <mpolacek@redhat.com>
49969
49970 * bits/sched.h (__CPU_EQUAL_S): Fix a typo.
49971
499722011-07-18 Ulrich Drepper <drepper@gmail.com>
49973
49974 * po/nl.po: Update from translation team.
49975 * po/sv.po: Likewise.
49976
499772011-07-16 Roland McGrath <roland@hack.frob.com>
49978
49979 * sysdeps/i386/Makefile: Never use -mpreferred-stack-boundary=2,
49980 now disallowed by GCC.
49981
49982 * configure.in (use-default-link): Default to yes if a test -shared
49983 link meets our qualifications.
49984 * configure: Regenerated.
49985
49986 * config.make.in (output-format): New variable.
49987 * configure.in: Check for ld --print-output-format support.
49988 * configure: Regenerated.
49989 * Makerules ($(common-objpfx)format.lds)
49990 [$(output-format) != unknown]: Just use $(output-format),
49991 instead of the linker-script munging.
49992
499932011-07-14 Roland McGrath <roland@hack.frob.com>
49994
49995 * Makefile ($(common-objpfx)linkobj/libc.so): Use $(shlib-lds) instead
49996 of $(common-objpfx)shlib.lds.
49997 * elf/Makefile ($(objpfx)sotruss-lib.so): Likewise.
49998
49999 * sysdeps/i386/i686/multiarch/strstr-c.c (libc_hidden_builtin_def):
50000 Conditionalize redefinition on [SHARED && DO_VERSIONING && !NO_HIDDEN].
50001
50002 * configure.in (-z relro check): Adjust test code to add a large
50003 writable data section after it.
50004 * configure: Regenerated.
50005
500062011-07-11 Roland McGrath <roland@hack.frob.com>
50007
50008 * configure.in (-z relro check): Fix test code to make the variable
50009 truly const.
50010 * configure: Regenerated.
50011
500122011-07-11 Ulrich Drepper <drepper@gmail.com>
50013
50014 * nscd/nscd.h (struct traced_file): Define.
50015 (struct database_dyn): Remove inotify_descr, reset_res, and filename
50016 elements. Add traced_files.
50017 (inotify_fd): Declare.
50018 (register_traced_file): Declare.
50019 * nscd/connections.c (dbs): Remove reset_res and filename initializers.
50020 (inotify_fd): Export.
50021 (resolv_conf_descr): Remove.
50022 (nscd_init): Move inotify descriptor creation to main.
50023 Don't register files for notification here.
50024 (register_traced_file): New function.
50025 (invalidate_cache): Don't use reset_res to determine whether to call
50026 res_init, go through the list of registered files.
50027 (main_loop_poll): The inotify descriptors are now stored in the
50028 structures for the traced files.
50029 (main_loop_epoll): Likewise
50030 * nscd/nscd.c (main): Create inotify socket here. Pass extra argument
50031 to __nss_disable_nscd.
50032 * nscd/cache.c (prune_cache): There is no single inotify descriptor
50033 for a database anymore. Check the records for all the registered
50034 files instead.
50035 * nss/Makefile (libnss_files-routines): Add files-init.
50036 (libnss_db-routines): Add db-init.
50037 * nss/Versions [libnss_files] (GLIBC_PRIVATE): Add _nss_files_init.
50038 [libnss_db] (GLIBC_PRIVATE): Add _nss_db_init.
50039 * nss/nss_db/db-init.c: New file.
50040 * nss/nss_files/files-init.c: New file.
50041 * nss/nsswitch.c (nss_load_library): New function. Broken out of
50042 __nss_lookup_function.
50043 (__nss_lookup_function): Call nss_load_library.
50044 (nss_load_all_libraries): New function.
50045 (__nss_disable_nscd): Take parameter with callback function for files
50046 to register. Set is_nscd. Load all the DSOs for the NSS modules
50047 used for the cached services.
50048 * nss/nsswitch.h (__nss_disable_nscd): Adjust prototype.
50049 * sysdeps/unix/sysv/linux/Makefile [subdir=nscd]: Pass the various -D
50050 options for features to all the files in nscd.
50051
50052 * nss/nsswitch.c (nss_parse_file): Add missing fclose.
50053
500542011-07-10 Roland McGrath <roland@hack.frob.com>
50055
50056 * csu/elf-init.c (__libc_csu_init): Comment typo.
50057
500582011-07-09 Ulrich Drepper <drepper@gmail.com>
50059
50060 * po/pl.po: Update from translation team.
50061 * po/ja.po: Likewise.
50062 * po/ru.po: Likewise.
50063 * po/ko.po: Likewise.
50064 * po/fr.po: Likewise.
50065
500662011-07-09 Roland McGrath <roland@hack.frob.com>
50067
50068 * configure.in (.ctors/.dtors header and trailer check):
50069 Use an empirical test on a built program.
50070 * configure: Regenerated.
50071
50072 * configure.in (-z relro check): Use an empirical test on a built DSO.
50073 Detect, but do not require, on ia64.
50074 * configure: Regenerated.
50075
50076 * configure.in (READELF): Find it with AC_CHECK_TOOL.
50077 Update tests that use readelf to use $READELF instead.
50078 * configure: Regenerated.
50079
500802011-07-08 Ulrich Drepper <drepper@gmail.com>
50081
50082 * malloc/hooks.c (memalign_check): Avoid using checked_request2size
50083 if the result is not used.
50084
500852011-07-05 Andreas Jaeger <aj@suse.de>
50086
50087 [BZ#9696]
50088 * stdlib/tst-strtod.c: Add testcase.
50089
500902011-07-07 Ulrich Drepper <drepper@gmail.com>
50091
50092 * sysdeps/unix/sysv/linux/pathconf.c (distinguish_extX): New function.
50093 (__statfs_link_max): Use it to distinguish between ext2/3 and ext4.
50094 The latter has a higher limit. Take additional parameter to pass to
50095 the new function.
50096 (__pathconf): Pass file to __statfs_link_max.
50097 * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Pass fd to
50098 __statfs_link_max.
50099 * sysdeps/unix/sysv/linux/pathconf.h: Adjust prototype of
50100 __statfs_link_max.
50101
50102 [BZ #12868]
50103 * sysdeps/unix/sysv/linux/linux_fsinfo.h: Define Lustre constants.
50104 * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
50105 Handle Lustre.
50106 * sysdeps/unix/sysv/linux/pathconf.c (__statfs_link_max): Likewise.
50107 (__statfs_filesize_max): Likewise.
50108 Patch mostly by Andreas Dilger <adilger@whamcloud.com>.
50109
501102011-07-05 Andreas Jaeger <aj@suse.de>
50111
50112 * resolv/res_comp.c (dn_skipname): Remove unused variable.
50113
501142011-07-06 Marek Polacek <mpolacek@redhat.com>
50115
50116 * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_setspent): Honour the
50117 `status' variable.
50118 * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_setetherent):
50119 Likewise.
50120
501212011-07-04 H.J. Lu <hongjiu.lu@intel.com>
50122
50123 * Makefile (strop-tests): Add strncat.
50124 * string/test-strncat.c: New file.
50125
501262011-06-30 Marek Polacek <mpolacek@redhat.com>
50127
50128 * iconvdata/johab.c: Don't inline `johab_sym_hanja_to_ucs' function.
50129
501302011-06-21 Andreas Jaeger <aj@suse.de>
50131
50132 * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules):
50133 Copy rule from iconvdata/Makefile.
50134
501352011-07-06 Ulrich Drepper <drepper@gmail.com>
50136
50137 [BZ #12922]
50138 * posix/getopt.c (_getopt_internal_r): When "W;" is in short options
50139 but no long options are defined, just return 'W'.
50140
501412011-06-22 Marek Polacek <mpolacek@redhat.com>
50142
50143 [BZ #9696]
50144 * stdlib/strtod_l.c (round_and_return): Set ERANGE instead of EDOM.
50145
501462011-07-06 Ulrich Drepper <drepper@gmail.com>
50147
50148 * inet/getnetgrent_r.c (internal_getnetgrent_r): Fix check for known
50149 netgroups to read.
50150 (innetgr): Likewise.
50151
501522011-07-05 Roland McGrath <roland@hack.frob.com>
50153
50154 * config.make.in (install_root): Default to $(DESTDIR).
50155
501562011-07-05 Ulrich Drepper <drepper@gmail.com>
50157
50158 * nscd/nscd_getserv_r.c (nscd_getserv_r): Add cast to avoid warning.
50159
501602011-07-02 Roland McGrath <roland@hack.frob.com>
50161
50162 * Makerules ($(common-objpfx)format.lds): Fail if result is empty.
50163
50164 * Makefile ($(common-objpfx)testrun.sh): Generate to work relative to
50165 containing directory rather than embedding absolute directory names.
50166
50167 * scripts/check-local-headers.sh: Rewritten using awk.
50168 Match by word, not by line. Print error messages for matches.
50169 * Makefile ($(objpfx)check-local-headers.out): Pass AWK in to it.
50170
50171 * Makerules [shlib-lds-flags empty]:
50172 ($(common-objpfx)libc_pic.opts): New target.
50173 ($(common-objpfx)libc_pic.os.clean): New target.
50174 ($(common-objpfx)libc.so): Link it instead of libc_pic.os.
50175
50176 * config.make.in (OBJCOPY): New variable.
50177 * aclocal.m4 (LIBC_PROG_BINUTILS): Substitute OBJCOPY too.
50178 * configure: Regenerated.
50179
50180 * config.make.in (use-default-link): New variable.
50181 * configure.in (use_default_link): Grok --with-default-link to set it.
50182 * configure: Regenerated.
50183 * Makerules [$(elf) = yes] [$(use-default-link) = yes]:
50184 (shlib-lds, shlib-lds-flags): Define to empty.
50185
50186 * Makerules (shlib-lds): New variable.
50187 (shlib-lds-flags): New variable.
50188 (build-shlib, build-moduile, build-module-asneeded): Use it.
50189 ($(common-objpfx)libc.so): Use $(shlib-lds).
50190 ($(extra-modules-build:%=$(objpfx)%.so)): Likewise.
50191 * iconvdata/extra-module.mk ($(objpfx)$(mod).so): Likewise.
50192
50193 * elf/dynamic-link.h (elf_get_dynamic_info): Make asserts accept
50194 DT_FLAGS/DT_FLAGS_1 with zero flags.
50195
50196 * elf/Makefile ($(objpfx)ld.so): Use -defsym=_begin=0 instead of
50197 linker script munging.
50198
501992011-07-02 Ulrich Drepper <drepper@gmail.com>
50200
50201 * crypt/sha512.h (struct sha512_ctx): Add union to access total also
50202 as 128-bit value.
50203 * crypt/sha512.c (sha512_process_block): Perform total addition using
50204 128-bit if possible.
50205 (__sha512_finish_ctx): Likewise.
50206 * crypt/sha256.h (struct sha256_ctx): Add union to access total also
50207 as 64-bit value.
50208 * crypt/sha256.c (SWAP64): Define.
50209 (sha256_process_block): Perform total addition using 64-bit if
50210 possible.
50211 (__sha256_finish_ctx): Likewise.
50212
502132011-07-01 Ulrich Drepper <drepper@gmail.com>
50214
50215 * nscd/pwdcache.c (cache_addpw): Cleanup. Add branch prediction.
50216 * nscd/initgrcache.c (addinitgroupsX): Likewise.
50217 * nscd/hstcache.c (cache_addhst): Likewise.
50218 * nscd/grpcache.c (cache_addgr): Likewise.
50219 * nscd/aicache.c (addhstaiX): Likewise
50220 * nscd/servicescache.c (cache_addserv): Handle zero negtimeout.
50221
502222011-07-01 Thorsten Kukuk <kukuk@suse.de>
50223
50224 * nscd/pwdcache.c (cache_addpw): Handle zero negtimeout.
50225 * nscd/initgrcache.c (addinitgroupsX): Likewise.
50226 * nscd/hstcache.c (cache_addhst): Likewise.
50227 * nscd/grpcache.c (cache_addgr): Likewise.
50228 * nscd/aicache.c (addhstaiX): Likewise
50229
502302011-07-01 Andreas Schwab <schwab@redhat.com>
50231
50232 * nis/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Query NIS
50233 domain only when needed.
50234
502352011-06-30 Andreas Schwab <schwab@redhat.com>
50236
50237 * sysdeps/posix/getaddrinfo.c (gaih_inet): Make sure RES_USE_INET6
50238 is always restored.
50239
502402011-06-29 Ulrich Drepper <drepper@gmail.com>
50241
50242 * nscd/grpcache.c (cache_addgr): Don't write notfound reply if we
50243 are re-adding the entry.
50244 * nscd/servicescache.c (cache_addserv): Likewise.
50245
502462011-06-30 Aurelien Jarno <aurelien@aurel32.net>
50247
50248 * sysdeps/generic/dl-irel.h: fix protection against multiple
50249 inclusions.
50250 * sysdeps/generic/dl-irel.h (elf_ifunc_invoke): New.
50251
502522011-06-28 Ulrich Drepper <drepper@gmail.com>
50253
50254 [BZ #12935]
50255 * malloc/memusage.sh: Fix quoting in message.
50256 * debug/xtrace.sh: Likewise.
50257
50258 * configure.in: Remove support for --experimental-malloc option, make
50259 it the default.
50260 * config.make.in: Likewise.
50261 * malloc/Makefile: Likewise.
50262
502632011-06-27 Andreas Schwab <schwab@redhat.com>
50264
50265 * iconvdata/gb18030.c (BODY for TO_LOOP): Fix encoding of non-BMP
50266 two-byte characters.
50267
502682011-06-27 Roland McGrath <roland@hack.frob.com>
50269
50270 * configure.in (NO_CTORS_DTORS_SECTIONS): Give this check its own
50271 AC_CACHE_CHECK invocation.
50272 * configure: Regenerated.
50273
50274 * elf/soinit.c (__CTOR_LIST__, __DTOR_LIST__): Add used attribute.
50275
502762011-06-27 Ulrich Drepper <drepper@gmail.com>
50277
50278 [BZ #12350]
50279 * nscd/aicache.c (addhstaiX): Restore only RES_USE_INET6
50280 bit from old_res_options.
50281
50282 * sysdeps/unix/sysv/linux/Makefile (CFLAGS-servicescache.c): Define.
50283
50284 * inet/getnetgrent_r.c (innetgr): Minimal cleanup, use correct return
50285 value type for setfct.
50286
502872011-06-23 H.J. Lu <hongjiu.lu@intel.com>
50288
50289 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use
50290 __gettimeofday instead of gettimeofday.
50291
502922011-06-26 Ulrich Drepper <drepper@gmail.com>
50293
50294 * elf/Makefile (all-built-dso): No need to check linkobj/libc.so.
50295
502962011-06-24 H.J. Lu <hongjiu.lu@intel.com>
50297
50298 * sysdeps/i386/i686/multiarch/strcpy-sse2.S (RETURN): Fix a typo.
50299
50300 * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Correct unwind
50301 info.
50302
503032011-06-22 H.J. Lu <hongjiu.lu@intel.com>
50304
50305 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
50306 strcpy-ssse3 strncpy-ssse3 stpcpy-ssse3 stpncpy-ssse3
50307 strcpy-sse2-unaligned strncpy-sse2-unaligned
50308 stpcpy-sse2-unaligned stpncpy-sse2-unaligned.
50309 * sysdeps/x86_64/multiarch/stpcpy-sse2-unaligned.S: New file.
50310 * sysdeps/x86_64/multiarch/stpcpy-ssse3.S: New file.
50311 * sysdeps/x86_64/multiarch/stpncpy-sse2-unaligned.S: New file.
50312 * sysdeps/x86_64/multiarch/stpncpy-ssse3.S: New file.
50313 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: New file.
50314 * sysdeps/x86_64/multiarch/strcpy-ssse3.S: New file.
50315 * sysdeps/x86_64/multiarch/strncpy-sse2-unaligned.S: New file.
50316 * sysdeps/x86_64/multiarch/strncpy-ssse3.S: New file.
50317 * sysdeps/x86_64/multiarch/strcpy.S: Remove strcpy with SSSE3.
50318 (STRCPY): Support SSE2 and SSSE3 versions.
50319
503202011-06-24 Ulrich Drepper <drepper@gmail.com>
50321
50322 [BZ #12874]
50323 * sysdeps/unix/sysv/linux/Makefile (CFLAGS-tst-writev.c): Define.
50324 * sysdeps/wordsize-64/tst-writev.c: Work around problem with 2.6.38+
50325 kernels which artificially limit size of requests.
50326
503272011-06-22 H.J. Lu <hongjiu.lu@intel.com>
50328
50329 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
50330 strncpy-c strcpy-ssse3 strncpy-ssse3 stpcpy-ssse3 stpncpy-ssse3
50331 strcpy-sse2 strncpy-sse2 stpcpy-sse2 stpncpy-sse2.
50332 * sysdeps/i386/i686/multiarch/stpcpy-sse2.S: New file.
50333 * sysdeps/i386/i686/multiarch/stpcpy-ssse3.S: New file.
50334 * sysdeps/i386/i686/multiarch/stpncpy-sse2.S: New file.
50335 * sysdeps/i386/i686/multiarch/stpncpy-ssse3.S: New file.
50336 * sysdeps/i386/i686/multiarch/stpncpy.S : New file.
50337 * sysdeps/i386/i686/multiarch/strcpy-sse2.S : New file.
50338 * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: New file.
50339 * sysdeps/i386/i686/multiarch/strcpy.S: New file.
50340 * sysdeps/i386/i686/multiarch/strncpy-c.c: New file.
50341 * sysdeps/i386/i686/multiarch/strncpy-sse2.S: New file.
50342 * sysdeps/i386/i686/multiarch/strncpy-ssse3.S: New file.
50343 * sysdeps/i386/i686/multiarch/strncpy.S: New file.
50344 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
50345 Enable unaligned load optimization for Intel Core i3, i5 and i7
50346 processors.
50347 * sysdeps/x86_64/multiarch/init-arch.h (bit_Fast_Unaligned_Load):
50348 Define.
50349 (index_Fast_Unaligned_Load): Define.
50350 (HAS_FAST_UNALIGNED_LOAD): Define.
50351
503522011-06-23 Marek Polacek <mpolacek@redhat.com>
50353
50354 * nss/nss_db/db-open.c: Include <unistd.h> for read declaration.
50355
503562011-06-22 Ulrich Drepper <drepper@gmail.com>
50357
50358 [BZ #12907]
50359 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Avoid calling __check_pf
50360 until it is clear that the information is realy needed.
50361 Patch mostly by David Hanisch <david.hanisch@nsn.com>.
50362
503632011-06-22 Andreas Schwab <schwab@redhat.com>
50364
50365 * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix last change.
50366
503672011-06-22 Ulrich Drepper <drepper@gmail.com>
50368
50369 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use
50370 /sys/devices/system/cpu/online if it is usable.
50371
50372 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Rate limit
50373 reading the information from the /proc filesystem to once a second.
50374
503752011-06-21 Andreas Jaeger <aj@suse.de>
50376
50377 * sysdeps/unix/sysv/linux/bits/sigcontext.h: Fix definition of
50378 NULL after inclusion of kernel headers.
50379
503802011-06-21 Ulrich Drepper <drepper@gmail.com>
50381
50382 * nss/nss_db/db-XXX.c (nss_db_setENT): Only set entidx for successful
50383 calls to internal_setent.
50384
50385 [BZ #12885]
50386 * sysdeps/posix/getaddrinfo.c (gaih_inet): When looking up only IPv6
50387 addresses using gethostbyname4_r ignore IPv4 addresses.
50388
50389 * sysdeps/posix/getaddrinfo.c (gaih_inet): After the last change the
50390 branch using gethostbyname2 is only for AF_INET. Optimize accordingly.
50391
50392 * inet/getnetgrent_r.c: Use DL_CALL_FCT in several places.
50393
503942011-06-20 David S. Miller <davem@davemloft.net>
50395
50396 * sysdeps/sparc/sparc32/dl-plt.h: Protect against multiple
50397 inclusions.
50398 * sysdeps/sparc/sparc64/dl-plt.h: Likewise.
50399
50400 * sysdeps/i386/dl-irel.h (elf_ifunc_invoke): New.
50401 (elf_irel): Use it.
50402 * sysdeps/powerpc/powerpc32/dl-irel.h: Likewise.
50403 * sysdeps/powerpc/powerpc64/dl-irel.h: Likewise.
50404 * sysdeps/sparc/sparc32/dl-irel.h: Likewise.
50405 * sysdeps/sparc/sparc64/dl-irel.h: Likewise.
50406 * sysdeps/x86_64/dl-irel.h: Likewise.
50407
50408 * elf/dl-runtime.c: Use elf_ifunc_invoke.
50409 * elf/dl-sym.c: Likewise.
50410
504112011-06-15 Ulrich Drepper <drepper@gmail.com>
50412
50413 * resolv/res_send.c (__libc_res_nsend): Fix typos in last patch. We
50414 need to dereference resplen2.
50415
504162011-06-14 Andreas Schwab <schwab@redhat.com>
50417
50418 * sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c: New file.
50419
504202011-06-15 Ulrich Drepper <drepper@gmail.com>
50421
50422 * Makeconfig: Define vardbdir and inst_vardbdir.
50423 * nss/Makefile: Add rules to install db-Makefile.
50424
50425 * nss/nss_db/db-XXX.c: Cleanup.
50426
50427 * nss/Makefile (libnss_db-dbs): Add db-initgroups.
50428 * nss/Versions [libnss_db]: Add _nss_db_initgroups_dyn for
50429 GLIBC_PRIVATE.
50430 * nss/db-Makefile (groups.db): Emit entries for initgroups lookups.
50431 * nss/makedb.c: Implement -g option to specify that value strings
50432 are generated and should not be added to table iterated over for
50433 get*ent calls.
50434 * nss/nss_db/db-initgroups.c: New file.
50435
50436 * nss/getent.c: Add support for initgroups lookups through getgrouplist
50437 interface.
50438
50439 * grp/initgroups.c (__nss_initgroups_database): Renamed and exported.
50440 (internal_getgrouplist): Adjust to name change.
50441 Update use_initgroups_entry if this is not the first call.
50442 * nss/databases.def: Add initgroups entry.
50443
50444 * nss/makedb.c (compute_tables): Check result of multiple hash table
50445 sizes to minimize maximum chain length.
50446
504472011-06-14 Ulrich Drepper <drepper@gmail.com>
50448
50449 * Versions.def: Add entry for libnss_db.
50450 * shlib-versions: Likewise.
50451 * nss/Makefile: Add rules to build libnss_db.
50452 * nss/Versions: Add libnss_db information. Organize libnss_files
50453 entries better.
50454 * nss/db-Makefile: Add gshadow support. Change rules for the new
50455 makedb progra. Some minor improvements to generate smaller files.
50456 * nss/nss_db/nss_db.h: Move NSS database header data structures to
50457 here from...
50458 * nss/makedb.c: ...here.
50459 Improve database format to be smaller and require less memory at
50460 runtime.
50461 * nss/nss_db/db-XXX.x: Adjust for new database format. Don't use
50462 db anymore.
50463 * nss/nss_db/db-netgrp.c: Likewise.
50464 * nss/nss_db/db-open.c: Likewise.
50465 * nss/nss_files/flies-XXX.x: Adjust comments.
50466 * nss/nss_files/files-ethers.c: Adjust for new DB_LOOKUP definition.
50467 * nss/nss_files/files-grp.c: Likewise.
50468 * nss/nss_files/files-hosts.c: Likewise.
50469 * nss/nss_files/files-network.c: Likewise.
50470 * nss/nss_files/files-proto.c: Likewise.
50471 * nss/nss_files/files-pwd.c: Likewise.
50472 * nss/nss_files/files-rpc.c: Likewise.
50473 * nss/nss_files/files-service.c: Likewise.
50474 * nss/nss_files/files-sgrp.c: Likewise.
50475 * nss/nss_files/files-spwd.c: Likewise.
50476 * nss/nss_db/db-alias.c: Removed.
50477 * nss/nss_db/dummy-db.h: Removed.
50478
504792011-06-02 Ulrich Drepper <drepper@gmail.com>
50480
50481 * nss/makedb.c: Rewritten to not use database library.
50482 * nss/Makefile: Update to build new makedb program.
50483
504842011-06-14 Andreas Jaeger <aj@suse.de>
50485
50486 * sysdeps/unix/sysv/linux/check_native.c: Include <string.h> for
50487 memset declaration.
50488
504892011-06-10 Andreas Schwab <schwab@redhat.com>
50490
50491 * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix logic allocating
50492 tmpbuf.
50493
504942011-06-10 Roland McGrath <roland@hack.frob.com>
50495
50496 * Makerules (shlib.lds): Fail if the linker script comes out empty.
50497 * elf/Makefile ($(objpfx)ld.so): Likewise.
50498
50499 * Makefile ($(common-objpfx)linkobj/libc.so): Break long lines with \.
50500 Don't list ld.so twice in dependencies.
50501
50502 * posix/bug-regex31.c: Include <stdlib.h>.
50503
50504 * nscd/hstcache.c (cache_addhst): Remove unused variable.
50505
50506 * nis/nss_compat/compat-spwd.c
50507 (getspent_next_nss_netgr): Remove unused variable.
50508 * nis/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Likewise.
50509
50510 * nis/nis_print_group_entry.c (nis_print_group_entry): Fix "Implicit
50511 nonmembers" output to use the right array.
50512
50513 * resolv/nss_dns/dns-network.c (getanswer_r): Remove unused variable.
50514
50515 * elf/dl-open.c (_dl_open): Quash warnings when DL_NNS==1.
50516
50517 * locale/programs/ld-ctype.c (ctype_read): Remove unused variable.
50518 * locale/programs/ld-collate.c (add_to_tablewc): Likewise.
50519 * catgets/gencat.c (read_input_file): Likewise.
50520 * locale/programs/locarchive.c (enlarge_archive): Likewise.
50521
50522 * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Move DONTBLOCK
50523 variable definition inside #if's controlling its use.
50524
50525 * inet/getnetgrent_r.c (innetgr): Remove unused variable.
50526
50527 * resolv/res_hconf.c (_res_hconf_reorder_addrs): Fix errno restoration.
50528
50529 * misc/syslog.c (__vsyslog_chk): Remove unused variable.
50530
50531 * io/fts.c (fts_build): Use if (0 && ...) rather than #if 0 for
50532 unreachable code.
50533
50534 * stdio-common/printf_fp.c (___printf_fp): Remove unused variable.
50535
50536 * configure.in (nss-crypt check): Use AC_LANG_PROGRAM.
50537 * configure: Regenerated.
50538
50539 * Makerules: Revert last change.
50540 * elf/Makefile: Likewise.
50541
505422011-06-09 Roland McGrath <roland@hack.frob.com>
50543
50544 * Makerules ($(common-objpfx)libc_pic.os): Use -Wl, before -r.
50545 * elf/Makefile ($(objpfx)librtld.os): Likewise.
50546 (reloc-link): Likewise.
50547
505482011-06-09 Ulrich Drepper <drepper@gmail.com>
50549
50550 * elf/Makefile: Add rules to build pldd.
50551 * elf/pldd.c: New file.
50552 * elf/pldd-xx.c: New file.
50553
505542011-06-07 Ulrich Drepper <drepper@gmail.com>
50555
50556 * version.h: Update for 2.15 development version.
50557
505582011-06-07 David S. Miller <davem@davemloft.net>
50559
50560 * sysdeps/sparc/sparc32/dl-irel.h (elf_irela): Pass dl_hwcap to
50561 ifuncs.
50562 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela,
50563 elf_machine_lazy_rel): Likewise.
50564 * sysdeps/sparc/sparc64/dl-irel.h (elf_irela): Likewise.
50565 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela,
50566 elf_machine_lazy_rel): Likewise.
50567 * sysdeps/sparc/sparc64/multiarch/memcpy.S (memcpy): Fetch
50568 dl_hwcap via passed in argument.
50569 * sysdeps/sparc/sparc64/multiarch/memset.S (memset, bzero):
50570 Likewise.
50571
505722011-06-06 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
50573
50574 * stdlib/longlong.h: Update from GCC. Fix smul_ppmm for S/390.
50575
505762011-06-06 Roland McGrath <roland@hack.frob.com>
50577
50578 [BZ #12849]
50579 * manual/fdl-1.1.texi: New file, verbatim from:
50580 http://www.gnu.org/licenses/old-licenses/fdl-1.1.texi
50581 * manual/lgpl-2.1.texi: New file, verbatim from:
50582 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.texi
50583 * manual/Makefile (licenses): New variable, list those new file names.
50584 (texis): Use it.
50585 (chapters.% top-menu.%): Include $(licenses) with $(appendices).
50586
50587 * manual/fdl.texi: File removed.
50588 * manual/lesser.texi: File removed.
50589 * manual/libc.texinfo (Copying, Documentation License):
50590 Use new @include file names, put @appendix directive before @include.
50591
505922011-06-04 Jakub Jelinek <jakub@redhat.com>
50593
50594 [BZ #12841]
50595 * rt/bits/mqueue2.h (__mq_open_2): Add __THROW.
50596 (__mq_open_alias): Use __REDIRECT_NTH instead of __REDIRECT.
50597 (mq_open): Add __NTH.
50598
505992011-06-02 H.J. Lu <hongjiu.lu@intel.com>
50600
50601 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
50602 Assume Intel Core i3/i5/i7 processor if AVX is available.
50603
506042011-05-31 Ulrich Drepper <drepper@gmail.com>
50605
50606 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
50607 typo.
50608
506092011-05-31 Andreas Schwab <schwab@redhat.com>
50610
50611 * nscd/nscd_getserv_r.c (nscd_getserv_r): Don't free non-malloced
50612 memory. Use alloca_account. Fix memory leak when retrying.
50613
506142011-05-31 Ulrich Drepper <drepper@gmail.com>
50615
50616 * version.h (RELEASE): Bump for 2.14 release.
50617 * include/features.h (__GLIBC_MINOR__): Bump to 14.
50618
50619 * config.make.in (RANLIB): Remove entry.
50620
506212011-05-30 Ulrich Drepper <drepper@gmail.com>
50622
50623 * po/Makefile (po-sed-cmd): Add ksh to extensions.
50624 (libc.pot): Work around missing support for .ksh extension in xgettext.
50625
50626 [BZ #12684]
50627 * resolv/res_send.c (__libc_res_nsend): Only go to the next name server
50628 if both request failed.
50629 (send_dg): In case of server errors clear resplen or *resplen2.
50630
50631 [BZ #12454]
50632 * elf/dl-deps.c (_dl_map_object_deps): Run initializer sorting only
50633 when there are multiple maps.
50634 * elf/dl-fini.c (_dl_sort_fini): Check for list of one.
50635 (_dl_fini): Remove test here.
50636
50637 * elf/rtld.c (dl_main): Don't allow the loader to load itself.
50638
506392011-05-29 Ulrich Drepper <drepper@gmail.com>
50640
50641 [BZ #12350]
50642 * sysdeps/posix/getaddrinfo.c (gethosts): Restore only RES_USE_IENT6
50643 bit from old_res_options.
50644 (gaih_inet): Likewise.
50645
50646 [BZ #11099]
50647 * shadow/sgetspent_r.c (LINE_PARSER): Interpret numeric field values
50648 as signed.
50649
50650 * resolv/res_init.c (res_setoptions): Make the code more compact.
50651
50652 [BZ #11558]
50653 * resolv/res_init.c (res_setoptions): Recognize use-vc option and
50654 set RES_USEVC.
50655
50656 [BZ #11634]
50657 * elf/Makefile (tests): Don't add tst-audit[67] without working -mavx.
50658
50659 * malloc/malloc.h: Mark malloc hook variables as deprecated.
50660
50661 [BZ #11781]
50662 * malloc/malloc.h: Declare malloc hook variables as volatile.
50663
50664 * locale/programs/locarchive.c (add_locale_to_archive): Fix typo
50665 in last patch.
50666
50667 [BZ #11799]
50668 * sysdeps/unix/sysv/linux/bits/siginfo.h (SI_USER): Don't mention
50669 raise in the comment.
50670 * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Likewise.
50671 * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
50672 * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h: Likewise.
50673
506742011-05-28 Ulrich Drepper <drepper@gmail.com>
50675
50676 [BZ #12811]
50677 * posix/regex_internal.c (build_wcs_buffer): Don't signal we have to
50678 grow the buffers more if it already has to be sufficient.
50679 (build_wcs_upper_buffer): Likewise.
50680 * posix/regexec.c (check_matching): Likewise.
50681 (clean_state_log_if_needed): Likewise.
50682 (extend_buffers): Don't enlarge buffers beyond size of the input
50683 buffer.
50684 Patches mostly by Emil Wojak <emil@wojak.eu>.
50685 * posix/bug-regex32.c: New file.
50686 * posix/Makefile (tests): Add bug-regex32.
50687
50688 * locale/findlocale.c (_nl_find_locale): Return right away if
50689 _nl_explode_name failed.
50690 * locale/programs/locarchive.c (add_locale_to_archive): Likewise.
50691
50692 * sysdeps/unix/sysv/linux/socketcall.h (SOCKOP_sendmmsg): Define.
50693
50694 * debug/xtrace.sh: Unify messages.
50695 * malloc/memusage.sh: Likewise.
50696
50697 [BZ #12813]
50698 * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_time): Retrieve
50699 time symbol from vDSO. Substitute with vsyscall if not available.
50700 * sysdeps/unix/sysv/linux/x86_64/time.S [SHARED]: Use
50701 __vdso_time.
50702
50703 * sysdeps/unix/sysv/linux/internal_sendmmsg.S: New file.
50704 * sysdeps/unix/sysv/linux/sendmmsg.c: New file.
50705 * sysdeps/unix/sysv/linux/Makefile [subdir=socket] (sysdep_routines):
50706 Add sendmmsg and internal_sendmmsg.
50707 * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14]: Add sendmmsg.
50708 * sysdeps/unix/sysv/linux/bits/socket.h: Declare sendmmsg.
50709 * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_SENDMMSG.
50710
50711 * sysdeps/unix/sysv/linux/syscalls.list: Add setns entry.
50712 * sysdeps/unix/sysv/linux/bits/sched.h: Declare setns.
50713 * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14]: Add setns.
50714
507152011-05-27 Ulrich Drepper <drepper@gmail.com>
50716
50717 [BZ #12813]
50718 * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_getcpu):
50719 Retrieve getcpu symbol from vDSO. Substitute with vsyscall if not
50720 available.
50721 * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S [SHARED]: Use
50722 __vdso_getcpu.
50723
50724 [BZ #12814]
50725 * iconvdata/Makefile (tests): Add bug-iconv9.
50726 * iconvdata/bug-iconv9.c: New file.
50727
507282011-05-27 Andreas Schwab <schwab@redhat.com>
50729
50730 [BZ #12814]
50731 * iconvdata/iso-2022-jp.c (BODY): Fix invalid variable shadowing.
50732
507332011-05-25 Jakub Jelinek <jakub@redhat.com>
50734
50735 * sysdeps/unix/sysv/linux/x86_64/sys/user.h
50736 (struct user_regs_struct): Change intcs field back to cs.
50737
507382011-05-25 Ulrich Drepper <drepper@gmail.com>
50739
50740 * po/ja.po: Update from translation team.
50741
507422011-05-23 Ulrich Drepper <drepper@gmail.com>
50743
50744 [BZ #12795]
50745 * sysdeps/unix/sysv/linux/bits/resource.h (RLIMIT_RTTIME): Define.
50746 * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
50747
507482011-05-20 Andreas Schwab <schwab@redhat.com>
50749
50750 * stdlib/longlong.h: Update from GCC.
50751
507522011-05-23 Andreas Schwab <schwab@redhat.com>
50753
50754 * sysdeps/unix/sysv/linux/ia64/sysconf.c (HAS_CPUCLOCK): Add
50755 parameter name.
50756 * sysdeps/unix/sysv/linux/sysconf.c (has_cpuclock, HAS_CPUCLOCK):
50757 Add parameter name.
50758 (__sysconf): Pass it down.
50759
507602011-05-22 Ulrich Drepper <drepper@gmail.com>
50761
50762 [BZ #12671]
50763 * nis/nss_nis/nis-alias.c (_nss_nis_getaliasbyname_r): Use malloc in
50764 some situations.
50765 * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
50766 * posix/glob.c (glob_in_dir): Take additional parameter alloca_used.
50767 add in in __libc_use_alloca calls. Adjust callers.
50768 (glob): Use malloc in some situations.
50769
50770 * elf/dl-runtime.c (_dl_profile_fixup): Also store LA_SYMB_NOPLTENTER
50771 and LA_SYMB_NOPLTEXIT in flags which are passed to pltenter and
50772 pltexit.
50773
507742011-05-21 Ulrich Drepper <drepper@gmail.com>
50775
50776 * sysdeps/unix/sysv/linux/bits/time.h: Define CLOCK_REALTIME_ALARM
50777 and CLOCK_BOOTTIME_ALARM.
50778
50779 [BZ #12782]
50780 * string/xpg-strerror.c (__xpg_strerror_r): Fill buffer even if error
50781 is returned.
50782
50783 * string/_strerror.c (__strerror_r): Print negative errors as signed
50784 numbers.
50785
50786 [BZ #12777]
50787 * iconvdata/cp1258.c (comp_table_data): Remove entry 0x00A5 0xEC.
50788 (decomp_table): Change U0385 entry to emit 0xA5 0xEC.
50789 * iconvdata/CP1258.irreversible: Adjust entry 0xA8EC.
50790
50791 * configure.in: Fix typo in redirection and correct removal of test
50792 files in two cases.
50793
50794 [BZ #12788]
50795 * locale/setlocale.c (new_composite_name): Fix test to check for
50796 identical name of all categories.
50797
50798 [BZ #12792]
50799 * libio/filedoalloc.c (local_isatty): New function.
50800 (_IO_file_doallocate): Use local_isatty.
50801 * stdio-common/perror.c (perror): In case a new stream is used
50802 forward the stream error.
50803 * stdio-common/vfprintf.c (ARGCHECK): For read-only streams also set
50804 error flag.
50805
508062011-05-20 Ulrich Drepper <drepper@gmail.com>
50807
50808 [BZ #11869]
50809 * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't unconditionally use
50810 alloca.
50811 * include/alloca.h (extend_alloca_account): Define.
50812
50813 [BZ #11857]
50814 * posix/regex.h: Fix comments with documentation of user-accessible
50815 fields after compilation and describe correct free'ing of pattern
50816 after re_compile_pattern.
50817 Patch by Reuben Thomas <rrt@sc3d.org>.
50818
508192011-05-18 Ryan S. Arnold <rsa@us.ibm.com>
50820
50821 * sysdeps/powerpc/powerpc64/Makefile (no-special-regs): Add -mno-vsx
50822 and -mno-altivec to prevent the compiler from using Altivec and/or
50823 VSX instructions when the corresponding registers are not available.
50824
508252011-05-19 Andreas Schwab <schwab@redhat.com>
50826
50827 * grp/compat-initgroups.c (__libc_use_alloca): Don't define.
50828
508292011-05-19 Ulrich Drepper <drepper@gmail.com>
50830
50831 * libio/freopen.c (freopen): Use __dup2, not dup2.
50832 * libio/freopen64.c (freopen64): Likewise.
50833
508342011-05-17 H.J. Lu <hongjiu.lu@intel.com>
50835
50836 [BZ #12775]
50837 * sysdeps/x86_64/fpu/e_powl.S: Fix a typo.
50838 * math/Makefile (tests): Add test-powl.
50839 (CFLAGS-test-powl.c): Define.
50840 * math/test-powl.c: New file.
50841
508422011-05-16 H.J. Lu <hongjiu.lu@intel.com>
50843
50844 * fileops.c (_IO_new_file_fopen): Get fd from _IO_fileno.
50845
508462011-05-17 Ulrich Drepper <drepper@gmail.com>
50847
50848 [BZ #11837]
50849 * iconvdata/gb18030.c: Update to GB18020-2005.
50850
508512011-05-16 Ulrich Drepper <drepper@gmail.com>
50852
50853 * posix/regex.h (RE_SYNTAX_AWK, RE_SYNTAX_GNU_AWK,
50854 RE_SYNTAX_POSIX_AWK): Update to match recent development.
50855 Patch by Aharon Robbins <arnold@skeeve.com>.
50856
50857 [BZ #11892]
50858 * stdlib/putenv.c (putenv): Don't always create copy of the variable
50859 on the stack.
50860
50861 [BZ #11895]
50862 * misc/pselect.c (__pselect): Handle timeout value errors hidden
50863 through underflows.
50864
50865 [BZ #12766]
50866 * misc/error.c (error_at_line): Ensure file_name and old_file_name
50867 point to strings before performing equality test for error_one_per_line
50868 mode.
50869
50870 [BZ #11697]
50871 * login/programs/pt_chown.c (do_pt_chown): Always call chown.
50872
50873 [BZ #11820]
50874 * sysdeps/unix/sysv/linux/x86_64/sys/user.h
50875 (struct user_fpregs_struct): Avoid __uint*_t types.
50876
50877 [BZ #6420]
50878 * malloc/mtrace.c (tr_where): Add additional parameter to point to
50879 symbol info. Use it instead of calling _dl_addr locally.
50880 (lock_and_info): New function.
50881 (tr_freehook): Call lock_and_info and pass symbol info as additional
50882 parameter to tr_where.
50883 (tr_mallochook): Likewise.
50884 (tr_reallochook): Likewise.
50885 (tr_memalignhook): Likewise.
50886
50887 * malloc/mtrace.c: Remove support for USE_MTRACE_FILE. It is not
50888 used and couldn't be at all thread-safe.
50889
508902011-05-15 Ulrich Drepper <drepper@gmail.com>
50891
50892 * libio/freopen.c (freopen): Don't close old file descriptor
50893 before the new one is opened. Instead dup the new file descriptor
50894 to the old one after the new stream is created.
50895 * libio/freopen64.c (freopen64): Likewise.
50896 * libio/libio.h: Define _IO_FLAGS2_NOCLOSE and _IO_FLAGS2_CLOEXEC.
50897 * libio/fileops.c (_IO_new_file_close_it): Handle new
50898 _IO_FLAGS2_NOCLOSE flag.
50899 (_IO_new_file_fopen): Set _IO_FLAGS2_CLOEXEC for "e" mode.
50900 If _IO_file_open didn't set FD_CLOEXEC do it after the call.
50901 * libio/oldfileops.c (_IO_old_file_close_it): Handle new
50902 _IO_FLAGS2_NOCLOSE flag.
50903 * include/unistd.h: Add hidden_proto for dup3.
50904 Define __have_dup3.
50905 * io/dup3.c: Define hidden symbol.
50906 * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_DUP3.
50907
50908 [BZ #7101]
50909 * posix/getopt.c (_getopt_internal_r): List all ambigious possibilities
50910 when an incomplete long option is used.
50911 * posix/tst-getopt_long1.c: New file.
50912 * posix/Makefile (tests): Add tst-getopt_long1.
50913
50914 [BZ #10138]
50915 * scripts/config.guess: Update from autoconf-2.68.
50916 * scripts/config.sub: Likewise.
50917
50918 [BZ #10157]
50919 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Split out CPUTIME
50920 tests into ...
50921 (has_cpuclock): ...this. New function.
50922 * sysdeps/unix/sysv/linux/ia64/sysconf.c: Just define HAS_CPUCLOCK
50923 macro here based on has_cpuclock code.
50924
50925 [BZ #10149]
50926 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
50927 First byte (not low byte) is now always NUL.
50928 * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Likewise.
50929
50930 * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
50931 Use non-cancelable interfaces.
50932
50933 [BZ #9809]
50934 * locale/iso-639.def: Add entry for Sorani.
50935
50936 [BZ #11901]
50937 * include/stdlib.h: Move include protection to the right place.
50938 Define abort_msg_s. Declare __abort_msg with it.
50939 * stdlib/abort.c (__abort_msg): Adjust type.
50940 * assert/assert.c (__assert_fail_base): New function. Majority
50941 of code from __assert_fail. Allocate memory for __abort_msg with
50942 mmap.
50943 (__assert_fail): Now call __assert_fail_base.
50944 * assert/assert-perr.c: Remove bulk of implementation. Use
50945 __assert_fail_base.
50946 * include/assert.hL Declare __assert_fail_base.
50947 * sysdeps/posix/libc_fatal.c: Allocate memory for __abort_msg with
50948 mmap.
50949 * sysdeps/unix/sysv/linux/libc_fatal.c: Likewise.
50950
509512011-05-14 Ulrich Drepper <drepper@gmail.com>
50952
50953 [BZ #11952]
50954 [BZ #12453]
50955 * elf/dl-open.c (dl_open_worker): Delay calls to _dl_update_slotinfo
50956 until all modules are registered in the DTV.
50957 * elf/Makefile: Add rules to build and run tst-tls19.
50958 * elf/tst-tls19.c: New file.
50959 * elf/tst-tls19mod1.c: New file.
50960 * elf/tst-tls19mod2.c: New file.
50961 * elf/tst-tls19mod3.c: New file.
50962 Patch mostly by Martin von Gagern <Martin.vGagern@gmx.net>.
50963
50964 [BZ #12083]
50965 * sysdeps/pthread/aio_misc.c (__aio_init): Compute optim.aio_num
50966 correctly.
50967
50968 [BZ #12601]
50969 * iconvdata/cp932.c (BODY to UCS4): Fix incrementing inptr in case of
50970 two-byte sequence errors.
50971 * iconvdata/Makefile (tests): Add bug-iconv8.
50972 * iconvdata/bug-iconv8.c: New file.
50973
50974 [BZ #12626]
50975 * sysdeps/generic/elf/backtracesymsfd.c (__backtrace_symbols_fd): Move
50976 buf2 definition.
50977
50978 * libio/fileops.c (_IO_new_file_close_it): Initialize write_status.
50979
50980 [BZ #12432]
50981 * sysdeps/ia64/backtrace.c (struct trace_reg): Add cfa element.
50982 (dummy_getcfa): New function.
50983 (init): Get _Unwind_GetCFA address, use dummy if not found.
50984 (backtrace_helper): In recursion check, also check whether CFA changes.
50985 (__backtrace): Completely initialize arg.
50986
50987 * iconv/loop.c (SINGLE) [STORE_REST]: Add input bytes to bytebuf before
50988 storing incomplete byte sequence in state object. Avoid testing for
50989 guaranteed too small input if we know there is enough data available.
50990
509912011-05-11 Andreas Schwab <schwab@redhat.com>
50992
50993 * Makeconfig (+link-pie): Indent.
50994 * Rules (binaries-pie): Define if $(have-fpie) and
50995 $(build-shared).
50996 (binaries-shared): Also filter out $(binaries-pie).
50997 ($(addprefix $(objpfx),$(binaries-pie))): New rule.
50998 * nscd/Makefile (others-pie): Add nscd.
50999 (LDFLAGS-nscd): Set this instead of relro-LDFLAGS.
51000 ($(objpfx)nscd): Remove command override.
51001 * login/Makefile (others-pie): Add pt_chown.
51002 ($(objpfx)pt_chown): Remove command override.
51003 * elf/Makefile: Add PIE tests to tests and tests-pie variables and
51004 remove command overrides.
51005
510062011-05-13 Ulrich Drepper <drepper@gmail.com>
51007
51008 * libio/tst_putwc.c: Fix error messages.
51009
51010 [BZ #12724]
51011 * libio/fileops.c (_IO_new_file_close_it): Always flush when
51012 currently writing and seek to current position when not.
51013 * libio/Makefile (tests): Add bug-fclose1.
51014 * libio/bug-fclose1.c: New file.
51015
510162011-05-12 Ulrich Drepper <drepper@gmail.com>
51017
51018 [BZ #12511]
51019 * elf/dl-lookup.c (enter): Don't test for copy relocation here and
51020 don't set DF_1_NODELETE here.
51021 (do_lookup_x): When entering new entry test for copy relocation
51022 and if necessary set DF_1_NODELETE flag.
51023 * elf/tst-unique4.cc: New file.
51024 * elf/tst-unique4.h: New file.
51025 * elf/tst-unique4lib.cc: New file.
51026 * elf/Makefile: Add rules to build and run tst-unique4.
51027 Patch by Piotr Bury <pbury@goahead.com>.
51028
510292011-05-11 Ulrich Drepper <drepper@gmail.com>
51030
51031 [BZ #12052]
51032 * sysdeps/posix/spawni.c (__spawni): Fix sched_setscheduler call.
51033
51034 [BZ #12625]
51035 * misc/mntent_r.c (addmntent): Flush the stream after the output
51036
51037 [BZ #12393]
51038 * elf/dl-load.c (is_trusted_path): Remove unnecessary test.
51039 (is_trusted_path_normalize): Skip initial colon. Append slash
51040 to empty buffer. Duplicate is_trusted_path code but allow
51041 constructed patch to be prefix.
51042 (is_dst): Allow $ORIGIN followed by /.
51043 (_dl_dst_substitute): Correct clearing of check_for_trusted.
51044 Correct testing of result of is_trusted_path_normalize
51045 (decompose_rpath): Fix warning.
51046
510472011-05-10 Ulrich Drepper <drepper@gmail.com>
51048
51049 [BZ #11257]
51050 * grp/initgroups.c (internal_getgrouplist): When we found the service
51051 list through the initgroups entry in nsswitch.conf do not always
51052 continue on a successful lookup. Don't always use the
51053 __nss_group_database value if it is set.
51054 * nss/nsswitch.conf (initgroups): Change action for successful db
51055 lookup to continue for compatibility.
51056
510572011-05-09 Ulrich Drepper <drepper@gmail.com>
51058
51059 [BZ #11532]
51060 * iconvdata/Makefile: Add rules to build CP770, CP771, CP772, CP773,
51061 and CP774 modules.
51062 * iconvdata/gconv-modules: Add entries for CP770, CP771, CP772, CP773,
51063 and CP774 modules.
51064 * iconvdata/tst-tables.sh: Likewise.
51065 * iconvdata/cp770.c: New file.
51066 * iconvdata/cp771.c: New file.
51067 * iconvdata/cp772.c: New file.
51068 * iconvdata/cp773.c: New file.
51069 * iconvdata/cp774.c: New file.
51070 * iconvdata/testdata/CP770: New file.
51071 * iconvdata/testdata/CP770..UTF8: New file.
51072 * iconvdata/testdata/CP771: New file.
51073 * iconvdata/testdata/CP771..UTF8: New file.
51074 * iconvdata/testdata/CP772: New file.
51075 * iconvdata/testdata/CP772..UTF8: New file.
51076 * iconvdata/testdata/CP773: New file.
51077 * iconvdata/testdata/CP773..UTF8: New file.
51078 * iconvdata/testdata/CP774: New file.
51079 * iconvdata/testdata/CP774..UTF8: New file.
51080
51081 * iconvdata/gen-8bit-gap-1.sh: End reading of charmap file at
51082 END CHARMAP line.
51083 * iconvdata/gen-8bit-gap.sh: Likewise.
51084 * iconvdata/gen-8bit.sh: Likewise.
51085
51086 * locale/iso-639.def: Add ary entry.
51087
51088 [BZ #11258]
51089 * locale/C-translit.h.in: Add U20A1 transliteration.
51090
51091 [BZ #12178]
51092 * locale/iso-639.def: Add wae entry.
51093 Patch by Kevin Bortis <bortis@translate-wae.ch>.
51094
51095 [BZ #12545]
51096 * locale/programs/localedef.c (construct_output_path): Use ssize_t
51097 for n.
51098
51099 [BZ #12711]
51100 * locale/C-translit.h.in: Add entry for U20B9.
51101 Patch by pravin.d.s@gmail.com.
51102
511032011-05-08 Ulrich Drepper <drepper@gmail.com>
51104
51105 [BZ #12713]
51106 * sysdeps/unix/sysv/linux/getcwd.c: If getcwd syscall report
51107 ENAMETOOLONG use generic getcwd.
51108 * sysdeps/posix/getcwd.c: Add support to use openat. Make usable
51109 in rtld. Use *stat64.
51110 * sysdeps/unix/sysv/linux/Makefile [subdir=elf] (sysdep-rtld-routines):
51111 Add dl-getcwd, dl-openat64, dl-opendir, dl-fxstatat64.
51112 * sysdeps/unix/sysv/linux/dl-getcwd.c: New file.
51113 * sysdeps/unix/sysv/linux/dl-openat64.c: New file.
51114 * sysdeps/unix/sysv/linux/dl-opendir.c: New file.
51115 * sysdeps/unix/sysv/linux/dl-fxstat64.c: New file.
51116 * include/sys/stat.h: Define __fstatat, __lstat64, __fstat64, and
51117 __fstatat64 macros.
51118 * include/dirent.h: Add libc_hidden_proto for rewinddir.
51119 * dirent/rewinddir.c: Add libc_hidden_def.
51120 * sysdeps/mach/hurd/rewinddir.c: Likewise.
51121 * sysdeps/unix/rewinddir.c: Likewise. Don't do locking outside libc.
51122
51123 * include/dirent.h (__alloc_dir): Add flags parameter.
51124 * sysdeps/unix/fdopendir.c (__fdopendir): Pass flags to __alloc_dir.
51125 * sysdeps/unix/opendir.c (__opendir): Pass 0 in new parameter to
51126 __alloc_dir.
51127 (__alloc_dir): Take new parameter. Don't call fcntl for invocations
51128 from fdopendir if O_CLOEXEC is already set.
51129
511302011-03-15 Alan Modra <amodra@gmail.com>
51131
51132 * elf/dl-reloc.c (_dl_try_allocate_static_tls <TLS_DTV_AT_TP>): Handle
51133 l_tls_firstbyte_offset non-zero. Save padding offset in
51134 l_tls_firstbyte_offset for later use.
51135 * elf/dl-close.c (_dl_close_worker <TLS_DTV_AT_TP>): Correct code
51136 freeing static tls block.
51137
511382011-03-05 Jonathan Nieder <jrnieder@gmail.com>
51139
51140 * sysdeps/unix/sysv/linux/sys/param.h: Fix an #ifndef __undef_ARG_MAX
51141 where #ifdef was intended. The intent is to prevent ARG_MAX from
51142 being defined by the kernel headers.
51143
511442011-05-07 Ulrich Drepper <drepper@gmail.com>
51145
51146 [BZ #12734]
51147 * resolv/resolv.h: Define RES_NOTLDQUERY.
51148 * resolv/res_init.c (res_setoptions): Recognize no_tld_query and
51149 no-tld-query and set RES_NOTLDQUERY.
51150 * resolv/res_debug.c (p_option): Handle RES_NOTLDQUERY.
51151 * resolv/res_query.c (__libc_res_nsearch): Backport changes from
51152 modern BIND to search name as TLD unless forbidden.
51153
511542011-05-07 Petr Baudis <pasky@suse.cz>
51155 Ulrich Drepper <drepper@gmail.com>
51156
51157 [BZ #12393]
51158 * elf/dl-load.c (fillin_rpath): Move trusted path check...
51159 (is_trusted_path): ...to here.
51160 (is_trusted_path_normalize): Wrapper for /../ and /./ normalization.
51161 (_dl_dst_substitute): Verify expanded $ORIGIN path elements
51162 using is_trusted_path_normalize() in setuid scripts.
51163
511642011-05-06 Paul Pluzhnikov <ppluzhnikov@google.com>
51165
51166 * sysdeps/unix/sysv/linux/sys/sysmacros.h: Add missing
51167 __BEGIN/__END_DECLS.
51168
511692011-05-06 Ulrich Drepper <drepper@gmail.com>
51170
51171 * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Return
51172 NSS_STATUS_NOTFOUND if no record was found.
51173
511742011-05-05 Andreas Schwab <schwab@redhat.com>
51175
51176 * sunrpc/Makefile (headers): Add rpc/netdb.h.
51177 (headers-not-in-tirpc): Remove rpc/netdb.h
51178 * resolv/netdb.h: Revert last change.
51179
511802011-05-05 Paul Pluzhnikov <ppluzhnikov@google.com>
51181
51182 * Makeconfig (link-libc-static): Use --{start,end}-group to handle
51183 circular dependency between libgcc.a and libc.a.
51184
511852011-05-05 Andreas Schwab <schwab@redhat.com>
51186
51187 * resolv/netdb.h: Don't include <rpc/netdb.h>.
51188 * nis/Makefile: Don't install rpcsvc/*.
51189 * inet/protocols/timed.h: Include <sys/types.h> and <sys/time.h>
51190 instead of <rpc/types.h>.
51191 (MAXHOSTNAMELEN): Define.
51192
511932011-05-03 Andreas Schwab <schwab@redhat.com>
51194
51195 * elf/ldconfig.c (add_dir): Don't crash on empty path.
51196
511972011-04-28 Maciej Babinski <mbabinski@google.com>
51198
51199 [BZ #12714]
51200 * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't bypass
51201 gethostbyname4_r when IPv6 results are possible.
51202
512032011-05-02 Ulrich Drepper <drepper@gmail.com>
51204
51205 [BZ #12723]
51206 * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Implement
51207 _PC_PIPE_BUF handling.
51208
512092011-04-30 Bruno Haible <bruno@clisp.org>
51210
51211 [BZ #12717]
51212 * conform/data/netdb.h-data (getnameinfo): Make POSIX compliant.
51213 * resolv/netdb.h (getnameinfo): Change type of flags parameter
51214 to 'int'.
51215 * inet/getnameinfo.c (getnameinfo): Likewise.
51216
512172011-04-29 Ulrich Drepper <drepper@gmail.com>
51218
51219 * grp/initgroups.c (internal_getgrouplist): Prefer initgroups setting
51220 to groups setting in database lookup.
51221 * nss/nsswitch.conf: Add initgroups entry.
51222
512232011-04-22 Ulrich Drepper <drepper@gmail.com>
51224
51225 [BZ #12685]
51226 * libio/fileops.c (_IO_new_file_fopen): Scan up to 7 bytes of the
51227 mode string.
51228 Patch by Eric Blake <eblake@redhat.com>.
51229
512302011-04-20 H.J. Lu <hongjiu.lu@intel.com>
51231
51232 * sunrpc/Makefile (need-export-routines): Add svc_run.
51233 (routines): Remove svc_run.
51234 ($(objpfx)thrsvc): Add $(common-objpfx)linkobj/libc.so.
51235 * sunrpc/clnt_perr.c (clnt_perrno): Export.
51236 * sunrpc/svc_run.c (svc_run): Likewise.
51237 * sunrpc/svc_udp.c (svcudp_create): Likewise.
51238
512392011-04-21 Ulrich Drepper <drepper@gmail.com>
51240
51241 * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Fix
51242 problem in reallocation in last patch.
51243
512442011-04-20 Ulrich Drepper <drepper@gmail.com>
51245
51246 * sunrpc/Makefile: Move inclusion of Rules.
51247
512482011-04-19 Ulrich Drepper <drepper@gmail.com>
51249
51250 * nss/nss_files/files-initgroups.c: New file.
51251 * nss/Makefile (libnss_files-routines): Add files-initgroups.
51252 * nss/Versions (libnss_files) [GLIBC_PRIVATE]: Export
51253 _nss_files_initgroups_dyn.
51254
512552011-03-31 Richard Sandiford <richard.sandiford@linaro.org>
51256
51257 * elf/elf.h (R_ARM_IRELATIVE): Define.
51258
512592011-04-19 Ulrich Drepper <drepper@gmail.com>
51260
51261 * po/ru.po: Update from translation team.
51262
512632011-04-17 Ulrich Drepper <drepper@gmail.com>
51264
51265 * sunrpc/Makefile ($(rpc-compat-routines.os)): Add before-compile to
51266 dependencies.
51267
512682011-02-06 Mike Frysinger <vapier@gentoo.org>
51269
51270 [BZ #12653]
51271 * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Only protect
51272 MEMCPY_CHK with USE_AS_BCOPY ifdef check.
51273 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
51274 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
51275 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
51276
512772011-03-28 Andreas Schwab <schwab@linux-m68k.org>
51278
51279 * sysdeps/powerpc/powerpc32/power4/strncmp.S: Don't read past
51280 differing bytes.
51281 * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
51282 * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
51283 * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
51284
512852011-04-17 Ulrich Drepper <drepper@gmail.com>
51286
51287 [BZ #12420]
51288 * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Reload context after
51289 storing it.
51290 * stdlib/bug-getcontext.c: New file.
51291 * stdlib/Makefile: Add rules to build and run bug-getcontext.
51292
512932011-04-13 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
51294
51295 * sysdeps/s390/s390-64/utf16-utf32-z9.c: Wrap the z9-109
51296 instructions into .machine "z9-109".
51297 * sysdeps/s390/s390-64/utf8-utf16-z9.c: Likewise.
51298 * sysdeps/s390/s390-64/utf8-utf32-z9.c: Likewise.
51299
513002011-04-11 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
51301
51302 * sysdeps/s390/s390-32/elf/start.S (_start): Skip extra zeroes
51303 between environment variables and auxiliary vector.
51304
513052011-04-16 Ulrich Drepper <drepper@gmail.com>
51306
51307 * Makefile: Add rules to build linkobj/libc.so.
51308 * include/libc-symbols.h: Define libc_hidden_nolink.
51309 * include/rpc/auth.h: Mark functions which are to be hidden.
51310 * include/rpc/auth_des.h: Likewise.
51311 * include/rpc/auth_unix.h: Likewise.
51312 * include/rpc/clnt.h: Likewise.
51313 * include/rpc/des_crypt.h: Likewise.
51314 * include/rpc/key_prot.h: Likewise.
51315 * include/rpc/pmap_clnt.h: Likewise.
51316 * include/rpc/pmap_prot.h: Likewise.
51317 * include/rpc/pmap_rmt.h: Likewise.
51318 * include/rpc/rpc_msg.h: Likewise.
51319 * include/rpc/svc.h: Likewise.
51320 * include/rpc/svc_auth.h: Likewise.
51321 * include/rpc/xdr.h: Likewise.
51322 * nis/Makefile: Link all DSOs against linkobj/libc.so.
51323 * nss/Makefile: Likewise.
51324 * sunrpc/Makefile: Don't install headers. Build library with normal
51325 entry points. Don't build rpcinfo. Link RPC tests appropriately.
51326 * sunrpc/auth_des.c: Hide exported symbols by default, export some
51327 for the compat linking library. Remove use of INTDEF/INTUSE.
51328 * sunrpc/auth_none.c: Likewise.
51329 * sunrpc/auth_unix.c: Likewise.
51330 * sunrpc/authdes_prot.c: Likewise.
51331 * sunrpc/authuxprot.c: Likewise.
51332 * sunrpc/clnt_gen.c: Likewise.
51333 * sunrpc/clnt_perr.c: Likewise.
51334 * sunrpc/clnt_raw.c: Likewise.
51335 * sunrpc/clnt_simp.c: Likewise.
51336 * sunrpc/clnt_tcp.c: Likewise.
51337 * sunrpc/clnt_udp.c: Likewise.
51338 * sunrpc/clnt_unix.c: Likewise.
51339 * sunrpc/des_crypt.c: Likewise.
51340 * sunrpc/des_soft.c: Likewise.
51341 * sunrpc/get_myaddr.c: Likewise.
51342 * sunrpc/key_call.c: Likewise.
51343 * sunrpc/key_prot.c: Likewise.
51344 * sunrpc/netname.c: Likewise.
51345 * sunrpc/pm_getmaps.c: Likewise.
51346 * sunrpc/pm_getport.c: Likewise.
51347 * sunrpc/pmap_clnt.c: Likewise.
51348 * sunrpc/pmap_prot.c: Likewise.
51349 * sunrpc/pmap_prot2.c: Likewise.
51350 * sunrpc/pmap_rmt.c: Likewise.
51351 * sunrpc/publickey.c: Likewise.
51352 * sunrpc/rpc_cmsg.c: Likewise.
51353 * sunrpc/rpc_common.c: Likewise.
51354 * sunrpc/rpc_dtable.c: Likewise.
51355 * sunrpc/rpc_prot.c: Likewise.
51356 * sunrpc/rpc_thread.c: Likewise.
51357 * sunrpc/rtime.c: Likewise.
51358 * sunrpc/svc.c: Likewise.
51359 * sunrpc/svc_auth.c: Likewise.
51360 * sunrpc/svc_authux.c: Likewise.
51361 * sunrpc/svc_raw.c: Likewise.
51362 * sunrpc/svc_run.c: Likewise.
51363 * sunrpc/svc_simple.c: Likewise.
51364 * sunrpc/svc_tcp.c: Likewise.
51365 * sunrpc/svc_udp.c: Likewise.
51366 * sunrpc/svc_unix.c: Likewise.
51367 * sunrpc/svcauth_des.c: Likewise.
51368 * sunrpc/xcrypt.c: Likewise.
51369 * sunrpc/xdr.c: Likewise.
51370 * sunrpc/xdr_array.c: Likewise.
51371 * sunrpc/xdr_float.c: Likewise.
51372 * sunrpc/xdr_intXX_t.c: Likewise.
51373 * sunrpc/xdr_mem.c: Likewise.
51374 * sunrpc/xdr_rec.c: Likewise.
51375 * sunrpc/xdr_ref.c: Likewise.
51376 * sunrpc/xdr_sizeof.c: Likewise.
51377 * sunrpc/xdr_stdio.c: Likewise.
51378
513792011-04-10 Ulrich Drepper <drepper@gmail.com>
51380
51381 [BZ #12650]
51382 * sysdeps/i386/dl-tls.h: Define TLS_DTV_UNALLOCATED.
51383 * sysdeps/ia64/dl-tls.h: Likewise.
51384 * sysdeps/powerpc/dl-tls.h: Likewise.
51385 * sysdeps/s390/dl-tls.h: Likewise.
51386 * sysdeps/sh/dl-tls.h: Likewise.
51387 * sysdeps/sparc/dl-tls.h: Likewise.
51388 * sysdeps/x86_64/dl-tls.h: Likewise.
51389 * elf/dl-tls.c: Don't define TLS_DTV_UNALLOCATED here.
51390
513912011-03-14 Andreas Schwab <schwab@redhat.com>
51392
51393 * elf/dl-load.c (_dl_dst_substitute): When skipping the first
51394 rpath element also skip the following colon.
51395 (expand_dynamic_string_token): Add is_path parameter and pass
51396 down to DL_DST_REQUIRED and _dl_dst_substitute.
51397 (decompose_rpath): Call expand_dynamic_string_token with
51398 non-zero is_path. Ignore empty rpaths.
51399 (_dl_map_object_from_fd): Call expand_dynamic_string_token
51400 with zero is_path.
51401
514022011-04-08 Andreas Schwab <schwab@linux-m68k.org>
51403
51404 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c:
51405 Make cancelable.
51406
514072011-04-09 Ulrich Drepper <drepper@gmail.com>
51408
51409 [BZ #12655]
51410 * sysdeps/unix/sysv/linux/sys/syscall.h: Fix comment.
51411 Patch by Filipe David Manana <fdmanana@apache.org>.
51412
514132011-04-07 Andreas Schwab <schwab@redhat.com>
51414
51415 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S (CALL_FAIL):
51416 Maintain aligned stack.
51417 (CHECK_RSP): Remove unused macro.
51418
514192011-04-03 Ulrich Drepper <drepper@gmail.com>
51420
51421 * sysdeps/x86_64/cacheinfo.c (intel_02_known): Fix typo in table.
51422 * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
51423
514242011-04-02 Ulrich Drepper <drepper@gmail.com>
51425
51426 * sysdeps/unix/sysv/linux/bits/time.h (CLOCK_BOOTTIME): Define.
51427
51428 * include/features.h: Mention __USE_XOPEN2K8 in comment.
51429
514302011-03-26 H.J. Lu <hongjiu.lu@intel.com>
51431
51432 [BZ #12518]
51433 * sysdeps/x86_64/Versions: Add memcpy to GLIBC_2.14.
51434 * sysdeps/x86_64/memcpy.S: Provide GLIBC_2_14 memcpy.
51435 * sysdeps/x86_64/memmove.c: New file.
51436 * sysdeps/x86_64/multiarch/memcpy.S: Include <shlib-compat.h>.
51437 (memcpy): Renamed to ...
51438 (__new_memcpy): This.
51439 (memcpy): Provide GLIBC_2_14 memcpy.
51440 * sysdeps/x86_64/multiarch/memmove.c: Include <shlib-compat.h>.
51441 (memcpy): Provide GLIBC_2_2_5 memcpy.
51442
514432011-04-01 Ulrich Drepper <drepper@gmail.com>
51444
51445 [BZ #12631]
51446 * wcsmbs/wchar.h: Make wcpcpy and wcpncpy visible for __USE_XOPEN2K8.
51447
514482011-03-30 Andreas Schwab <schwab@redhat.com>
51449
51450 * misc/syncfs.c: New file.
51451 * misc/Makefile (routines): Add syncfs.
51452 * posix/unistd.h: Declare syncfs.
51453 * sysdeps/unix/syscalls.list: Add syncfs.
51454
514552011-04-01 Andreas Schwab <schwab@redhat.com>
51456
51457 * sysdeps/unix/sysv/linux/Versions: Rename open_by_handle to
51458 open_by_handle_at.
51459 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
51460 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
51461 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
51462 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
51463 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
51464 * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
51465 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
51466
514672011-04-01 Ulrich Drepper <drepper@gmail.com>
51468
51469 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define O_PATH.
51470 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
51471 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
51472 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
51473 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
51474 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
51475 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
51476
51477 * io/Makefile: Compile fallocate.c, fallocate64.c, and
51478 sync_file_range.c with -fexceptions.
51479 * sysdeps/unix/sysv/linux/fallocate.c: Make cancelable.
51480 * sysdeps/unix/sysv/linux/fallocate64.c: Likewise.
51481 * sysdeps/unix/sysv/linux/i386/fallocate.c: Likewise.
51482 * sysdeps/unix/sysv/linux/i386/fallocate64.c: Likewise.
51483 * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: Likewise.
51484 * sysdeps/unix/sysv/linux/sync_file_range.c: Likewise.
51485 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Mark
51486 sync_file_range as cancellation point
51487 * sysdeps/unix/sysv/linux/i386/sync_file_range.c: New file. This is
51488 now a wrapper around __call_sync_file_range with cancellation handling.
51489 * sysdeps/unix/sysv/linux/i386/sync_file_range.S: Renamed to ...
51490 * sysdeps/unix/sysv/linux/i386/call_sync_file_range.S: ...this. Change
51491 function name to __call_sync_file_range.
51492 * sysdeps/unix/sysv/linux/i386/Makefile [subdir=io] (sysdep_routines):
51493 Add call_sync_file_range.
51494
514952011-04-01 Andreas Schwab <schwab@redhat.com>
51496
51497 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
51498 bits/timex.h.
51499
515002011-04-01 Ulrich Drepper <drepper@gmail.com>
51501
51502 * iconv/iconv.h: Fix typo in comment.
51503 * io/fcntl.h: Likewise.
51504 * libio/stdio.h: Likewise.
51505 * posix/spawn.h: Likewise.
51506 * posix/unistd.h: Likewise.
51507 * stdlib/stdlib.h: Likewise.
51508 * time/time.h: Likewise.
51509 * wcsmbs/wchar.h: Likewise.
51510
51511 * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14] (name_to_handle_at,
51512 open_by_handle): Add.
51513 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define struct file_handle
51514 and MAX_HANDLE_SZ. Declare name_to_handle_at and open_by_handle.
51515 Augment a few comments.
51516 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
51517 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
51518 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
51519 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
51520 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
51521 * sysdeps/unix/sysv/linux/syscalls.list: Add name_to_handle_at and
51522 open_by_handle.
51523
51524 * io/fcntl.h (AT_EMPTY_PATH): Define.
51525
515262011-03-30 Ulrich Drepper <drepper@gmail.com>
51527
51528 * sysdeps/unix/sysv/linux/syscalls.list: Add clock_adjtime.
51529 * sysdeps/unix/sysv/linux/bits/time.h: New file.
51530 * sysdeps/unix/sysv/linux/sys/timex.h: Move struct timex definition
51531 to...
51532 * sysdeps/unix/sysv/linux/bits/timex.h: ...here. New file.
51533 * Versions.def: Add GLIBC_2.14.
51534 * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14] (clock_adjtime):
51535 Export.
51536
515372011-03-22 Ulrich Drepper <drepper@gmail.com>
51538
51539 * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Increment
51540 round counter.
51541 * sysdeps/x86_64/cacheinfo.c (intel_check_word): Likewise.
51542
515432011-03-20 H.J. Lu <hongjiu.lu@intel.com>
51544
51545 [BZ #12597]
51546 * string/test-strncmp.c (do_page_test): New function.
51547 (check2): Likewise.
51548 (test_main): Call check2.
51549 * sysdeps/x86_64/multiarch/strcmp.S: Properly cross page boundary.
51550
515512011-03-20 Ulrich Drepper <drepper@gmail.com>
51552
51553 [BZ #12587]
51554 * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
51555 Handle cache information in CPU leaf 4.
51556 * sysdeps/x86_64/cacheinfo.c (intel_check_word): Likewise.
51557
515582011-03-18 Ulrich Drepper <drepper@gmail.com>
51559
51560 [BZ #12583]
51561 * posix/fnmatch.c (fnmatch): Check size of pattern in wide
51562 character representation.
51563 Partly based on a patch by Tomas Hoger <thoger@redhat.com>.
51564
515652011-03-16 Ryan S. Arnold <rsa@us.ibm.com>
51566
51567 * sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S (isnanf): Fix
51568 END(__isnan) to END(__isnanf) to match function entry point/label
51569 EALIGN(__isnanf,...).
51570
515712011-03-10 Jakub Jelinek <jakub@redhat.com>
51572
51573 * wcsmbs/wchar.h (wmemcmp): Remove __restrict qualifiers.
51574
515752011-03-10 Ulrich Drepper <drepper@gmail.com>
51576
51577 [BZ #12510]
51578 * elf/dl-lookup.c (do_lookup_x): For copy relocations of unique objects
51579 copy from the symbol referenced in the relocation to initialize the
51580 used variable.
51581 Patch by Piotr Bury <pbury@goahead.com>.
51582 * elf/Makefile: Add rules to build and tst-unique3.
51583 * include/bits/dlfcn.h: Remove _dl_mcount_wrapper_check declaration.
51584 * elf/tst-unique3.cc: New file.
51585 * elf/tst-unique3.h: New file.
51586 * elf/tst-unique3lib.cc: New file.
51587 * elf/tst-unique3lib2.cc: New file.
51588
51589 * elf/Makefile: Don't run tst-execstack* tests of SELinux is enabled.
51590
515912011-03-10 Mike Frysinger <vapier@gentoo.org>
51592
51593 * sysdeps/sparc/sparc64/elf/configure.in (libc_cv_sparc64_tls): Add
51594 $LDFLAGS and -nostdlib -nostartfiles to linking step. Change main
51595 to _start.
51596
515972011-03-06 Ulrich Drepper <drepper@gmail.com>
51598
51599 * elf/dl-load.c (_dl_map_object): If we are looking for the first
51600 to-be-loaded object along a path to loader is ld.so.
51601
516022011-03-02 Harsha Jagasia <harsha.jagasia@amd.com>
51603 Ulrich Drepper <drepper@gmail.com>
51604
51605 * sysdeps/x86_64/memset.S: After aligning destination, code
51606 branches to different locations depending on the value of
51607 misalignment, when multiarch is enabled. Fix this.
51608
516092011-03-02 Harsha Jagasia <harsha.jagasia@amd.com>
51610
51611 * sysdeps/x86_64/cacheinfo.c (init_cacheinfo):
51612 Set _x86_64_preferred_memory_instruction for AMD processsors.
51613 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
51614 Set bit_Prefer_SSE_for_memop for AMD processors.
51615
516162011-03-04 Ulrich Drepper <drepper@gmail.com>
51617
51618 * libio/fmemopen.c (fmemopen): Optimize a bit.
51619
516202011-03-03 Andreas Schwab <schwab@redhat.com>
51621
51622 * libio/fmemopen.c (fmemopen): Don't read past end of buffer.
51623
516242011-03-03 Roland McGrath <roland@redhat.com>
51625
51626 * setjmp/bits/setjmp2.h: Canonicalize comment formatting.
51627
516282011-02-28 Aurelien Jarno <aurelien@aurel32.net>
51629
51630 * sysdeps/sparc/sparc64/multiarch/memset.S(__bzero): Call
51631 __bzero_ultra1 instead of __memset_ultra1.
51632
516332011-02-23 Andreas Schwab <schwab@redhat.com>
51634 Ulrich Drepper <drepper@gmail.com>
51635
51636 [BZ #12509]
51637 * include/link.h (struct link_map): Add l_orig_initfini.
51638 * elf/dl-load.c (_dl_map_object_from_fd): Free realname before
51639 returning unsuccessfully.
51640 * elf/dl-close.c (_dl_close_worker): If this is the last explicit
51641 close of a file loaded at startup, restore the original l_initfini
51642 list.
51643 * elf/dl-deps.c (_dl_map_object_deps): Don't free old l_initfini
51644 list, store the pointer.
51645 * elf/Makefile ($(objpfx)noload-mem): New rule.
51646 (noload-ENV): Define.
51647 (tests): Add $(objpfx)noload-mem.
51648 * elf/noload.c: Include <memcheck.h>.
51649 (main): Call mtrace. Close all opened handles.
51650
516512011-02-17 Andreas Schwab <schwab@redhat.com>
51652
51653 [BZ #12454]
51654 * elf/dl-deps.c (_dl_map_object_deps): Signal error early when
51655 dependencies are missing.
51656
516572011-02-22 Samuel Thibault <samuel.thibault@ens-lyon.org>
51658
51659 Fix __if_freereq crash: Unlike the generic version which uses free,
51660 Hurd needs munmap.
51661 * sysdeps/mach/hurd/ifreq.h: New file.
51662
516632011-01-27 Petr Baudis <pasky@suse.cz>
51664 Ulrich Drepper <drepper@gmail.com>
51665
51666 [BZ 12445]#
51667 * stdio-common/vfprintf.c (vfprintf): Pass correct newlen
51668 to extend_alloca().
51669 * stdio-common/bug23.c: New file.
51670 * stdio-common/Makefile (tests): Add bug23.
51671
516722010-09-28 Andreas Schwab <schwab@redhat.com>
51673 Ulrich Drepper <drepper@gmail.com>
51674
51675 [BZ #12489]
51676 * elf/rtld.c (dl_main): Move setting of GLRO(dl_init_all_dirs)
51677 before performing relro protection. At old place add assertion
51678 to make sure nothing changed.
51679
516802011-02-17 Nathan Sidwell <nathan@codesourcery.com>
51681 Glauber de Oliveira Costa <glommer@gmail.com>
51682
51683 * elf/elf.h: Add new ARM TLS relocs.
51684
516852011-02-16 Ryan S. Arnold <rsa@us.ibm.com>
51686
51687 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
51688 (INTERNAL_VSYSCALL_NCS INTERNAL_SYSCALL_NCS): Remove erroneous (int)
51689 cast from r3.
51690 * sysdeps/wordsize-64/Makefile: New file. Add tst-writev to
51691 'tests' variable.
51692 * sysdeps/wordsize-64/tst-writev.c: New file.
51693
516942011-02-15 Ryan S. Arnold <rsa@us.ibm.com>
51695
51696 * sysdeps/powerpc/powerpc64/power7/Makefile: New file which adds
51697 -mno-vsx to the CFLAGS-rtld.c variable to avoid using VSX registers and
51698 insns in _dl_start to prevent a TOC reference before relocs are
51699 resolved.
51700
517012011-02-15 Ulrich Drepper <drepper@gmail.com>
51702
51703 [BZ #12469]
51704 * Makeconfig: Remove RANLIB definition.
51705 * Makerules: Don't use RANLIB.
51706 * aclocal.m4: Remove ranlib test.
51707 * configure.in: No need to check for ranlib.
51708 * elf/rtld-Rules: Don't use RANLIB.
51709
517102011-02-16 Samuel Thibault <samuel.thibault@ens-lyon.org>
51711
51712 * sysdeps/mach/i386/sysdep.h: Add _MACH_I386_SYSDEP_H inclusion
51713 protection macro.
51714 * sysdeps/mach/i386/thread_state.h: Add _MACH_I386_THREAD_STATE_H
51715 inclusion protection macro.
51716
51717 * stdio-common/psiginfo.c (psiginfo): Check pinfo->si_signo against
51718 SIGRTMIN and SIGRTMAX and print information in that case only when
51719 SIGRTMIN is defined.
51720
517212011-02-11 Jakub Jelinek <jakub@redhat.com>
51722
51723 * stdio-common/printf-parsemb.c (__parse_one_specmb): Handle
51724 arginfo fn returning -1.
51725
51726 * stdio-common/_i18n_number.h (_i18n_number_rewrite): Ensure decimal
51727 and thousands string is zero terminated.
51728
517292011-02-03 Andreas Schwab <schwab@redhat.com>
51730
51731 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Sync with
51732 sysdeps/unix/sysv/linux/bits/socket.h.
51733
517342011-01-30 Samuel Thibault <samuel.thibault@ens-lyon.org>
51735
51736 * bits/sched.h (__CPU_ZERO, __CPU_SET, __CPU_CLR, __CPU_ISSET)
51737 (__CPU_COUNT): Remove old macros.
51738 (__CPU_ZERO_S, __CPU_SET_S, __CPU_CLR_S, __CPU_ISSET_S)
51739 (__CPU_COUNT, __CPU_EQUAL_S, __CPU_OP_S, __CPU_ALLOC_SIZE)
51740 (__CPU_ALLOC, __CPU_FREE): Add macros.
51741 (__sched_cpualloc, __sched_cpufree): Add declarations.
51742
517432011-02-05 Ulrich Drepper <drepper@gmail.com>
51744
51745 * nscd/nscd-client.h: Define MAX_TIMEOUT_VALUE.
51746 (struct datahead): Reuse 32 bits of the alignment for a TTL field.
51747 * nscd/aicache.c (addhstaiX): Return timeout of added value.
51748 (readdhstai): Return value of addhstaiX call.
51749 * nscd/grpcache.c (cache_addgr): Return timeout of added value.
51750 (addgrbyX): Return value returned by cache_addgr.
51751 (readdgrbyname): Return value returned by addgrbyX.
51752 (readdgrbygid): Likewise.
51753 * nscd/pwdcache.c (cache_addpw): Return timeout of added value.
51754 (addpwbyX): Return value returned by cache_addpw.
51755 (readdpwbyname): Return value returned by addhstbyX.
51756 (readdpwbyuid): Likewise.
51757 * nscd/servicescache.c (cache_addserv): Return timeout of added value.
51758 (addservbyX): Return value returned by cache_addserv.
51759 (readdservbyname): Return value returned by addservbyX:
51760 (readdservbyport): Likewise.
51761 * nscd/hstcache.c (cache_addhst): Return timeout of added value.
51762 (addhstbyX): Return value returned by cache_addhst.
51763 (readdhstbyname): Return value returned by addhstbyX.
51764 (readdhstbyaddr): Likewise.
51765 (readdhstbynamev6): Likewise.
51766 (readdhstbyaddrv6): Likewise.
51767 * nscd/initgrcache.c (addinitgroupsX): Return timeout of added value.
51768 (readdinitgroups): Return value returned by addinitgroupsX.
51769 * nscd/cache.c (readdfcts): Change return value of functions to time_t.
51770 (prune_cache): Keep track of timeout value of re-added entries.
51771 * nscd/connections.c (nscd_run_prune): Use MAX_TIMEOUT_VALUE.
51772 * nscd/nscd.h: Adjust prototypes of readd* functions.
51773
517742011-02-04 Roland McGrath <roland@redhat.com>
51775
51776 * nis/nis_server.c (nis_servstate): Use the right name for 0.
51777 (nis_stats): Likewise.
51778 * nis/nis_modify.c (nis_modify): Likewise.
51779 * nis/nis_remove.c (nis_remove): Likewise.
51780 * nis/nis_add.c (nis_add): Likewise.
51781
51782 * elf/dl-object.c (_dl_new_object): Remove unused variable L.
51783
51784 * posix/fnmatch_loop.c: Add some consts.
51785
51786 * sysdeps/x86_64/multiarch/memset-x86-64.S: Add an #undef.
51787
517882011-02-02 H.J. Lu <hongjiu.lu@intel.com>
51789
51790 [BZ #12460]
51791 * config.make.in (config-cflags-novzeroupper): Define.
51792 * configure.in: Substitute libc_cv_cc_novzeroupper.
51793 * elf/Makefile (AVX-CFLAGS): Define.
51794 (CFLAGS-tst-audit4.c): Replace -mavx with $(AVX-CFLAGS).
51795 (CFLAGS-tst-auditmod4a.c): Likewise.
51796 (CFLAGS-tst-auditmod4b.c): Likewise.
51797 (CFLAGS-tst-auditmod6b.c): Likewise.
51798 (CFLAGS-tst-auditmod6c.c): Likewise.
51799 (CFLAGS-tst-auditmod7b.c): Likewise.
51800 * sysdeps/i386/configure.in: Check -mno-vzeroupper.
51801
518022011-02-02 Ulrich Drepper <drepper@gmail.com>
51803
51804 * elf/dl-runtime.c (_dl_call_pltexit): Pass correct address of the
51805 function to the callback.
51806 Patch partly by Jiri Olsa <jolsa@redhat.com>.
51807
518082011-02-02 Andreas Schwab <schwab@redhat.com>
51809
51810 * shadow/sgetspent.c: Check return value of __sgetspent_r instead
51811 of errno.
51812
518132011-01-19 Ulrich Drepper <drepper@gmail.com>
51814
51815 [BZ #11724]
51816 * elf/dl-deps.c (_dl_map_object_deps): Rewrite sorting determining order
51817 of constructors.
51818 * elf/dl-fini.c (_dl_sort_fini): Rewrite sorting determining order
51819 of destructors.
51820 (_dl_fini): Don't call _dl_sort_fini if there is only one object.
51821
51822 [BZ #11724]
51823 * elf/Makefile: Add rules to build and run new test.
51824 * elf/tst-initorder.c: New file.
51825 * elf/tst-initorder.exp: New file.
51826 * elf/tst-initordera1.c: New file.
51827 * elf/tst-initordera2.c: New file.
51828 * elf/tst-initordera3.c: New file.
51829 * elf/tst-initordera4.c: New file.
51830 * elf/tst-initorderb1.c: New file.
51831 * elf/tst-initorderb2.c: New file.
51832 * elf/tst-order-a1.c: New file.
51833 * elf/tst-order-a2.c: New file.
51834 * elf/tst-order-a3.c: New file.
51835 * elf/tst-order-a4.c: New file.
51836 * elf/tst-order-b1.c: New file.
51837 * elf/tst-order-b2.c: New file.
51838 * elf/tst-order-main.c: New file.
51839 New test case by George Gensure <werkt0@gmail.com>.
51840
518412010-10-01 Andreas Schwab <schwab@redhat.com>
51842
51843 * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
51844 decoding ACE if AI_CANONIDN.
51845
518462011-01-18 Ulrich Drepper <drepper@gmail.com>
51847
51848 * elf/Makefile: Build IFUNC tests unless multi-arch = no.
51849
518502011-01-17 Ulrich Drepper <drepper@gmail.com>
51851
51852 * version.h (RELEASE): Bump for 2.13 release.
51853 * include/features.h: (__GLIBC_MINOR__): Bump to 13.
51854
51855 * io/fcntl.h: Define AT_NO_AUTOMOUNT.
51856
51857 * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MADV_HUGEPAGE and
51858 MADV_NOHUGEPAGE.
51859 * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Likewise.
51860 * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
51861 * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
51862 * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
51863 * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
51864 * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
51865
51866 * posix/getconf.c: Update copyright year.
51867 * catgets/gencat.c: Likewise.
51868 * csu/version.c: Likewise.
51869 * debug/catchsegv.sh: Likewise.
51870 * debug/xtrace.sh: Likewise.
51871 * elf/ldconfig.c: Likewise.
51872 * elf/ldd.bash.in: Likewise.
51873 * elf/sprof.c (print_version): Likewise.
51874 * iconv/iconv_prog.c: Likewise.
51875 * iconv/iconvconfig.c: Likewise.
51876 * locale/programs/locale.c: Likewise.
51877 * locale/programs/localedef.c: Likewise.
51878 * malloc/memusage.sh: Likewise.
51879 * malloc/mtrace.pl: Likewise.
51880 * nscd/nscd.c (print_version): Likewise.
51881 * nss/getent.c: Likewise.
51882
51883 * sysdeps/unix/sysv/linux/bits/socket.h: Define AF_CAIF, AF_ALG,
51884 PF_CAIF, and PF_ALG.
51885 * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
51886
518872011-01-16 Andreas Schwab <schwab@linux-m68k.org>
51888
51889 * elf/Makefile (tlsmod17a-modules, tlsmod18a-modules): Define.
51890 (modules-names): Use them.
51891 (ifunc-test-modules, ifunc-pie-tests): Define.
51892 (extra-test-objs): Add tlsmod17a-modules, tlsmod18a-modules,
51893 tst-pie1, ifunc-test-modules and ifunc-pie-tests objects.
51894 (test-extras): Likewise.
51895 ($(patsubst %,$(objpfx)%.os,$(tlsmod17a-modules))): Use
51896 $(compile-command.c).
51897 ($(patsubst %,$(objpfx)%.os,$(tlsmod18a-modules))): Likewise.
51898 (all-built-dso): Define.
51899 (check-textrel.out, check-execstack.out): Depend on it.
51900
51901 * configure.in: Don't override --enable-multi-arch.
51902
519032011-01-15 Ulrich Drepper <drepper@gmail.com>
51904
51905 [BZ #6812]
51906 * nscd/hstcache.c (tryagain): Define.
51907 (cache_addhst): Return tryagain not notfound for temporary errors.
51908 (addhstbyX): Also set h_errno to TRY_AGAIN when memory allocation
51909 failed.
51910
519112011-01-14 Ulrich Drepper <drepper@gmail.com>
51912
51913 [BZ #10563]
51914 * sysdeps/unix/sysv/linux/i386/setgroups.c: Use INLINE_SETXID_SYSCALL
51915 to make the syscall.
51916 * sysdeps/unix/sysv/linux/setgroups.c: New file.
51917
51918 [BZ #12378]
51919 * posix/fnmatch_loop.c (FCT): When matching '[' keep track of beginning
51920 and fall back to matching as normal character if the string ends before
51921 the matching ']' is found. This is what POSIX requires.
51922 * posix/testfnm.c: Adjust test result.
51923 * posix/globtest.sh: Adjust test result. Add new test.
51924 * posix/tst-fnmatch.input: Likewise.
51925 * posix/tst-fnmatch2.c: Add new test.
51926
519272010-12-28 Andreas Schwab <schwab@linux-m68k.org>
51928
51929 * elf/Makefile (check-execstack): Revert last change. Depend on
51930 check-execstack.h.
51931 (check-execstack.h): New target.
51932 (generated): Add check-execstack.h.
51933 * elf/check-execstack.c: Include "check-execstack.h".
51934 (main): Revert last change.
51935 (handle_file): Return zero if GNU_STACK is absent and
51936 DEFAULT_STACK_PERMS doesn't include PF_X.
51937
519382011-01-13 Ulrich Drepper <drepper@gmail.com>
51939
51940 * sysdeps/posix/spawni.c (__spawni): Don't fail if close file action
51941 in child fails because the descriptor is already closed.
51942 * include/sys/resource.h: Add libc_hidden_proto for getrlimit64.
51943 * sysdeps/unix/sysv/linux/getrlimit64.c: Add libc_hidden_def.
51944 * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Likewise.
51945
51946 [BZ #12397]
51947 * sysdeps/unix/sysv/linux/mkdirat.c (mkdirat): Fix handling of missing
51948 syscall.
51949
51950 [BZ #10484]
51951 * nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Handle overflows of
51952 temporary buffer used to handle multi lookups locally.
51953 * include/alloca.h: Add libc_hidden_proto for __libc_alloca_cutoff.
51954
519552011-01-12 Ulrich Drepper <drepper@gmail.com>
51956
51957 * elf/dl-dst.h (DL_DST_REQUIRED): Allow l_origin to be NULL when
51958 loader is ld.so.
51959
519602011-01-10 Paul Pluzhnikov <ppluzhnikov@google.com>
51961
51962 * sysdeps/i386/Makefile: stdlib/cxa_finalize.c needs 16-byte stack
51963 alignment for SSE2.
51964
519652011-01-12 Ulrich Drepper <drepper@gmail.com>
51966
51967 [BZ #12394]
51968 * stdio-common/printf_fp.c (__printf_fp): Add more room for grouping
51969 characters. When rounding increased number of integer digits recompute
51970 number of groups.
51971 * stdio-common/tst-grouping.c: New file.
51972 * stdio-common/Makefile: Add rules to build and run tst-grouping.
51973
519742011-01-09 Ulrich Drepper <drepper@gmail.com>
51975
51976 * sysdeps/i386/bits/select.h: Don't use asm code for __FD_SET,
51977 __FD_CLR, and __FS_ISSET. gcc generates better code on its own.
51978
51979 * sysdeps/x86_64/bits/select.h: Mark value of __FD_SET and __FD_CLR as
51980 void.
51981 * bits/select.h: Likewise.
51982
519832011-01-08 Ulrich Drepper <drepper@gmail.com>
51984
51985 * po/ja.po: Update from translation team.
51986
519872011-01-04 David S. Miller <davem@sunset.davemloft.net>
51988
51989 [BZ #11155]
51990 * sysdeps/unix/sysv/linux/sparc/sparc64/fxstat.c: Use i386's
51991 implementation just like for lxstat, fxstatat, et al.
51992
519932010-12-27 Jim Meyering <meyering@redhat.com>
51994
51995 [BZ #12348]
51996 * posix/regexec.c (build_trtable): Return failure indication upon
51997 calloc failure. Otherwise, re_search_internal could infloop on OOM.
51998
519992010-12-25 Ulrich Drepper <drepper@gmail.com>
52000
52001 [BZ #12201]
52002 * sysdeps/unix/sysv/linux/getrlimit64.c: New file.
52003 * sysdeps/unix/sysv/linux/setrlimit64.c: New file.
52004 * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Use ../getrlimit64.c.
52005 * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_PRLIMIT64.
52006
52007 [BZ #12207]
52008 * malloc/malloc.c (do_check_malloc_state): Use fastbin macro.
52009
52010 [BZ #12204]
52011 * string/xpg-strerror.c (__xpg_strerror_r): Return error code, not -1.
52012 * sysdeps/mach/xpg-strerror.c (__xpg_strerror_r): Likewise.
52013
520142010-12-15 H.J. Lu <hongjiu.lu@intel.com>
52015
52016 * config.h.in (NO_CTORS_DTORS_SECTIONS): Define.
52017 * configure.in: Define NO_CTORS_DTORS_SECTIONS if linker
52018 script has SORT_BY_INIT_PRIORITY.
52019 * elf/sofini.c: Remove `.ctors' and `.dtors' sections if
52020 NO_CTORS_DTORS_SECTIONS is defined.
52021 * elf/soinit.c: Likewise.
52022 * sysdeps/i386/init-first.c: Don't call __libc_global_ctors if
52023 NO_CTORS_DTORS_SECTIONS is defined.
52024 * sysdeps/mach/hurd/i386/init-first.c: Likewise.
52025 * sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
52026 * sysdeps/sh/init-first.c: Likewise.
52027 * sysdeps/unix/sysv/linux/init-first.c: Likewise.
52028
520292010-12-24 Ulrich Drepper <drepper@gmail.com>
52030
52031 * stdio-common/vfprintf.c (vfprintf): If printf handlers are installed
52032 always use the slow path.
52033
520342010-12-15 Ryan S. Arnold <rsa@us.ibm.com>
52035
52036 * elf/Makefile: (check-execstack): Replace $(native-compile) with a
52037 similar rule which adds the sysdep directories to the header search in
52038 order to pick up the correct platform stackinfo.h.
52039 * elf/check-execstack.c (main): Check DEFAULT_STACK_PERMS for PF_X and
52040 perform test if it is, otherwise return successfully without testing.
52041 * elf/dl-load.c (_dl_map_object_from_fd): Source stack_flags from
52042 DEFAULT_STACK_PERMS define in stackinfo.h.
52043 * elf/dl-support.c (_dl_stack_flags): Source from DEFAULT_STACK_PERMS
52044 defined in stackinfo.h.
52045 * elf/rtld.c (_dl_starting_up): Source ._dl_stack_flags from
52046 DEFAULT_STACK_PERMS defined in stackinfo.h.
52047 * sysdeps/i386/stackinfo.h: Define DEFAULT_STACK_PERMS with PF_X.
52048 * sysdeps/ia64/stackinfo.h: Likewise.
52049 * sysdeps/s390/stackinfo.h: Likewise.
52050 * sysdeps/sh/stackinfo.h: Likewise.
52051 * sysdeps/sparc/stackinfo.h: Likewise.
52052 * sysdeps/x86_64/stackinfo.h: Likewise.
52053 * sysdeps/powerpc/stackinfo.h: Define DEFAULT_STACK_PERMS without
52054 PF_X for powerpc64. Retain PF_X for powerpc32.
52055
520562010-12-19 Ulrich Drepper <drepper@gmail.com>
52057
52058 * sysdeps/unix/readdir_r.c (__READDIR_R): Compute reclen more
52059 accurately.
52060 * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Define
52061 GETDENTS_64BIT_ALIGNED.
52062
520632010-12-14 Ulrich Drepper <dreper@gmail.com>
52064
52065 * sysdeps/i386/i686/multiarch/strcmp.S: Undo accidental checkin.
52066
520672010-12-10 Andreas Schwab <schwab@redhat.com>
52068
52069 * wcsmbs/wchar.h (wcpcpy, wcpncpy): Only declare under
52070 _GNU_SOURCE.
52071
52072 * wcsmbs/wchar.h (wcpcpy, wcpncpy): Add __restrict.
52073 * wcsmbs/bits/wchar2.h (__wmemmove_chk_warn, wmemmove, wmemset):
52074 Remove __restrict.
52075 (wcscpy, __wcpcpy_chk, __wcpcpy_alias, wcpcpy, wcsncpy, wcpncpy)
52076 (wcscat, wcsncat, __wcrtomb_chk, wcrtomb): Add __restrict.
52077
520782010-12-09 Ulrich Drepper <drepper@gmail.com>
52079
52080 [BZ #11655]
52081 * stdlib/msort.c (qsort_r): Make sure both phys_pages and pagesize
52082 are initialized.
52083
520842010-12-09 Jakub Jelinek <jakub@redhat.com>
52085
52086 * string/bits/string3.h (memmove, bcopy): Remove __restrict.
52087
520882010-12-03 Ulrich Drepper <drepper@gmail.com>
52089
52090 * po/it.po: Update from translation team.
52091
520922010-12-01 H.J. Lu <hongjiu.lu@intel.com>
52093
52094 * sysdeps/i386/i686/multiarch/strcmp-ssse3.S (STRCMP): Remove
52095 unused codes.
52096
520972010-11-30 Ulrich Drepper <drepper@gmail.com>
52098
52099 * sysdeps/i386/fpu/libm-test-ulps: Relax ynf(10,0.75) test expectations.
52100
521012010-11-24 Andreas Schwab <schwab@redhat.com>
52102
52103 * resolv/nss_dns/dns-host.c (getanswer_r): Don't handle ttl == 0
52104 specially.
52105 (gaih_getanswer_slice): Likewise.
52106
521072010-10-20 Jakub Jelinek <jakub@redhat.com>
52108
52109 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Fix up inline asm.
52110
521112010-05-31 Petr Baudis <pasky@suse.cz>
52112
52113 [BZ #11149]
52114 * elf/ldconfig.c (main): Allow aux_cache_file open()ing to fail
52115 silently even in the chroot mode.
52116
521172010-11-22 Ulrich Drepper <drepper@gmail.com>
52118
52119 * nis/nss_compat/compat-initgroups.c (internal_getgrent_r): Optimize
52120 last patch a bit. Pretty printing
52121
521222010-05-31 Petr Baudis <pasky@suse.cz>
52123
52124 [BZ #10085]
52125 * nis/nss_compat/compat-initgroups.c (internal_getgrent_r): Fix
52126 initialization of skip_initgroups_dyn.
52127
521282010-11-19 Ulrich Drepper <drepper@gmail.com>
52129
52130 * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MAP_HUGETLB.
52131 * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
52132
521332010-11-16 Ulrich Drepper <drepper@gmail.com>
52134
52135 * sysdeps/unix/sysv/linux/sys/swap.h (SWAP_FLAG_DISCARD): Define.
52136
521372010-11-11 Andreas Schwab <schwab@redhat.com>
52138
52139 * posix/fnmatch_loop.c (NEW_PATTERN): Fix use of alloca.
52140 * posix/Makefile (tests): Add $(objpfx)tst-fnmatch-mem.
52141 (tst-fnmatch-ENV): Set MALLOC_TRACE.
52142 ($(objpfx)tst-fnmatch-mem): New rule.
52143 (generated): Add tst-fnmatch-mem and tst-fnmatch.mtrace.
52144 * posix/tst-fnmatch.c (main): Call mtrace.
52145
521462010-11-11 H.J. Lu <hongjiu.lu@intel.com>
52147
52148 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
52149 Support Intel processor model 6 and model 0x2c.
52150
521512010-11-10 Luis Machado <luisgpm@br.ibm.com>
52152
52153 * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c (__ieee754_sqrtl): Force
52154 signed comparison.
52155
521562010-11-09 H.J. Lu <hongjiu.lu@intel.com>
52157
52158 [BZ #12205]
52159 * string/test-strncasecmp.c (check_result): New function.
52160 (do_one_test): Use it.
52161 (check1): New function.
52162 (test_main): Use it.
52163 * sysdeps/i386/i686/multiarch/strcmp.S (nibble_ashr_use_sse4_2_exit):
52164 Support strcasecmp and strncasecmp.
52165
521662010-11-08 Ulrich Drepper <drepper@gmail.com>
52167
52168 [BZ #12194]
52169 * sysdeps/i386/bits/byteswap.h: Avoid warning in __bswap_16.
52170 * sysdeps/x86_64/bits/byteswap.h: Likewise.
52171
521722010-11-07 H.J. Lu <hongjiu.lu@intel.com>
52173
52174 * sysdeps/x86_64/memset.S: Check USE_MULTIARCH and USE_SSE2 for
52175 IFUNC support.
52176 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
52177 memset-x86-64.
52178 * sysdeps/x86_64/multiarch/bzero.S: New file.
52179 * sysdeps/x86_64/multiarch/cacheinfo.c: New file.
52180 * sysdeps/x86_64/multiarch/memset-x86-64.S: New file.
52181 * sysdeps/x86_64/multiarch/memset.S: New file.
52182 * sysdeps/x86_64/multiarch/memset_chk.S: New file.
52183 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
52184 Set bit_Prefer_SSE_for_memop for Intel processors.
52185 * sysdeps/x86_64/multiarch/init-arch.h (bit_Prefer_SSE_for_memop):
52186 Define.
52187 (index_Prefer_SSE_for_memop): Define.
52188 (HAS_PREFER_SSE_FOR_MEMOP): Define.
52189
521902010-11-04 Luis Machado <luisgpm@br.ibm.com>
52191
52192 * sysdeps/powerpc/powerpc32/power7/mempcpy.S: New file.
52193 * sysdeps/powerpc/powerpc64/power7/mempcpy.S: New file.
52194
521952010-11-03 H.J. Lu <hongjiu.lu@intel.com>
52196
52197 [BZ #12191]
52198 * sysdeps/i386/i686/cacheinfo.c (__x86_64_raw_data_cache_size): New.
52199 (__x86_64_raw_data_cache_size_half): Likewise.
52200 (__x86_64_raw_shared_cache_size): Likewise.
52201 (__x86_64_raw_shared_cache_size_half): Likewise.
52202
52203 * sysdeps/x86_64/cacheinfo.c (__x86_64_raw_data_cache_size): New.
52204 (__x86_64_raw_data_cache_size_half): Likewise.
52205 (__x86_64_raw_shared_cache_size): Likewise.
52206 (__x86_64_raw_shared_cache_size_half): Likewise.
52207 (init_cacheinfo): Set __x86_64_raw_data_cache_size,
52208 __x86_64_raw_data_cache_size_half, __x86_64_raw_shared_cache_size
52209 and __x86_64_raw_shared_cache_size_half. Round
52210 __x86_64_data_cache_size_half, __x86_64_data_cache_size
52211 __x86_64_shared_cache_size_half and __x86_64_shared_cache_size,
52212 to multiple of 256 bytes.
52213
522142010-11-03 Ulrich Drepper <drepper@gmail.com>
52215
52216 [BZ #12167]
52217 * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Recognize new mangling
52218 of inacessible symlinks. Verify result of symlink before returning it.
52219 * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
52220 Patch mostly by Miklos Szeredi <miklos@szeredi.hu>.
52221
522222010-10-28 Erich Ritz <erichritz@gmail.com>
52223
52224 * math/math.h (isinf): Fix typo in comment.
52225
522262010-11-01 Ulrich Drepper <drepper@gmail.com>
52227
52228 * po/da.po: Update from translation team.
52229
522302010-10-26 Ulrich Drepper <drepper@gmail.com>
52231
52232 * elf/rtld.c (dl_main): Move assertion after the point where rtld map
52233 is added to the list.
52234
522352010-10-20 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
52236 Ulrich Drepper <drepper@gmail.com>
52237
52238 * elf/dl-object.c (_dl_new_object): Don't append the new object to
52239 the global list here. Move code to...
52240 (_dl_add_to_namespace_list): ...here. New function.
52241 * elf/rtld.c (dl_main): Invoke _dl_add_to_namespace_list.
52242 * sysdeps/generic/ldsodefs.h (_dl_add_to_namespace_list): Declare.
52243 * elf/dl-load.c (lose): Don't remove the element from the list.
52244 (_dl_map_object_from_fd): Invoke _dl_add_to_namespace_list.
52245 (_dl_map_object): Likewise.
52246
522472010-10-25 Ulrich Drepper <drepper@gmail.com>
52248
52249 [BZ #12159]
52250 * sysdeps/x86_64/multiarch/strchr.S: Fix propagation of search byte
52251 into all bytes of SSE register.
52252 Patch by Richard Li <richardpku@gmail.com>.
52253
522542010-10-24 Ulrich Drepper <drepper@gmail.com>
52255
52256 [BZ #12140]
52257 * malloc/malloc.c (_int_free): Fill correct number of bytes when
52258 perturbing.
52259
522602010-10-20 Michael B. Brutman <brutman@us.ibm.com>
52261
52262 * sysdeps/powerpc/dl-procinfo.c: Add support for ppca2 platform
52263 * sysdeps/powerpc/dl-procinfo.h: Add support for ppca2 platform
52264 * sysdeps/powerpc/powerpc32/a2/memcpy.S: New file.
52265 * sysdeps/powerpc/powerpc64/a2/memcpy.S: Likewise.
52266 * sysdeps/unix/sysv/linux/powerpc/powerpc32/a2/Implies: New
52267 submachine.
52268 * sysdeps/unix/sysv/linux/powerpc/powerpc64/a2/Implies: Likewise.
52269
522702010-10-22 Andreas Schwab <schwab@redhat.com>
52271
52272 * include/dlfcn.h (__RTLD_SECURE): Define.
52273 * elf/dl-load.c (_dl_map_object): Remove preloaded parameter. Use
52274 mode & __RTLD_SECURE instead.
52275 (open_path): Rename preloaded parameter to secure.
52276 * sysdeps/generic/ldsodefs.h (_dl_map_object): Adjust declaration.
52277 * elf/dl-open.c (dl_open_worker): Adjust call to _dl_map_object.
52278 * elf/dl-deps.c (openaux): Likewise.
52279 * elf/rtld.c (struct map_args): Remove is_preloaded.
52280 (map_doit): Don't use it.
52281 (dl_main): Likewise.
52282 (do_preload): Use __RTLD_SECURE instead of is_preloaded.
52283 (dlmopen_doit): Add __RTLD_SECURE to mode bits.
52284
522852010-09-09 Andreas Schwab <schwab@redhat.com>
52286
52287 * Makeconfig (sysd-rules-patterns): Add rtld-%:rtld-%.
52288 (sysd-rules-targets): Remove duplicates.
52289 * elf/rtld-Rules ($(objpfx)rtld-%.os): Add pattern rules with
52290 rtld-%.$o dependency.
52291
522922010-10-18 Andreas Schwab <schwab@redhat.com>
52293
52294 * elf/dl-open.c (dl_open_worker): Don't expand DST here, let
52295 _dl_map_object do it.
52296
522972010-10-19 Ulrich Drepper <drepper@gmail.com>
52298
52299 * sysdeps/i386/bits/mathdef.h (FP_FAST_FMA): If the GCC 4.6 port has
52300 fast fma builtins, define the macros in the C99 standard.
52301 (FP_FAST_FMAF): Likewise.
52302 (FP_FAST_FMAL): Likewise.
52303 * sysdeps/x86_64/bits/mathdef.h: Likewise.
52304
52305 * bits/mathdef.h: Update copyright year.
52306 * sysdeps/powerpc/bits/mathdef.h: Likewise.
52307
523082010-10-19 Michael Meissner <meissner@linux.vnet.ibm.com>
52309
52310 * bits/mathdef.h (FP_FAST_FMA): If the GCC 4.6 port has fast fma
52311 builtins, define the macros in the C99 standard.
52312 (FP_FAST_FMAF): Likewise.
52313 (FP_FAST_FMAL): Likewise.
52314 * sysdeps/powerpc/bits/mathdef.h (FP_FAST_FMA): Define, ppc as
52315 multiply/add.
52316 (FP_FAST_FMAF): Likewise.
52317
523182010-10-15 Jakub Jelinek <jakub@redhat.com>
52319
52320 [BZ #3268]
52321 * math/libm-test.inc (fma_test): Some new testcases.
52322 * sysdeps/ieee754/ldbl-128/s_fmal.c: New file.
52323 * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Fix fma with finite x and
52324 y and infinite z. Do multiplication by C already in long double.
52325 * sysdeps/ieee754/ldbl-96/s_fmal.c: New file.
52326 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Fix fma with finite x and
52327 y and infinite z. Do bitwise or of inexact bit into u.d.
52328 * sysdeps/ieee754/ldbl-64-128/s_fmal.c: New file.
52329 * sysdeps/i386/fpu/s_fmaf.S: Removed.
52330 * sysdeps/i386/fpu/s_fma.S: Removed.
52331 * sysdeps/i386/fpu/s_fmal.S: Removed.
52332
523332010-10-16 Jakub Jelinek <jakub@redhat.com>
52334
52335 [BZ #3268]
52336 * math/libm-test.inc (fma_test): Add IEEE quad long double fmal tests.
52337 * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Ensure a1 + u.d
52338 computation is not scheduled after fetestexcept. Fix value
52339 of minimum denormal long double.
52340
523412010-10-14 Jakub Jelinek <jakub@redhat.com>
52342
52343 [BZ #3268]
52344 * math/libm-test.inc (fma_test): Add some more tests.
52345 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Handle underflows
52346 correctly.
52347
523482010-10-15 Andreas Schwab <schwab@redhat.com>
52349
52350 * scripts/data/localplt-s390-linux-gnu.data: New file.
52351 * scripts/data/localplt-s390x-linux-gnu.data: New file.
52352
523532010-10-13 Jakub Jelinek <jakub@redhat.com>
52354
52355 [BZ #3268]
52356 * math/libm-test.inc (fma_test): Some more fmaf and fma tests.
52357 * sysdeps/i386/i686/multiarch/s_fma.c: Include ldbl-96 version
52358 instead of dbl-64.
52359 * sysdeps/i386/fpu/bits/mathinline.h (fma, fmaf, fmal): Remove
52360 inlines.
52361 * sysdeps/ieee754/ldbl-96/s_fma.c: New file.
52362 * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Fix exponent adjustment
52363 if one of x and y is very large and the other is subnormal.
52364 * sysdeps/s390/fpu/s_fmaf.c: New file.
52365 * sysdeps/s390/fpu/s_fma.c: New file.
52366 * sysdeps/powerpc/fpu/s_fmaf.S: New file.
52367 * sysdeps/powerpc/fpu/s_fma.S: New file.
52368 * sysdeps/powerpc/powerpc32/fpu/s_fma.S: New file.
52369 * sysdeps/powerpc/powerpc64/fpu/s_fma.S: New file.
52370 * sysdeps/unix/sysv/linux/s390/fpu/s_fma.c: New file.
52371
523722010-10-12 Jakub Jelinek <jakub@redhat.com>
52373
52374 [BZ #3268]
52375 * math/libm-test.inc (fma_test): Add some more fmaf tests, add
52376 fma tests.
52377 * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Fix Inf/Nan check.
52378 * sysdeps/ieee754/dbl-64/s_fma.c: New file.
52379 * sysdeps/i386/i686/multiarch/s_fma.c: Include
52380 sysdeps/ieee754/dbl-64/s_fma.c instead of math/s_fma.c.
52381 * sysdeps/x86_64/multiarch/s_fma.c: Likewise.
52382 * sysdeps/ieee754/ldbl-opt/s_fma.c: Likewise.
52383 * sysdeps/ieee754/ldbl-128/s_fma.c: New file.
52384
523852010-10-12 Ulrich Drepper <drepper@redhat.com>
52386
52387 [BZ #12078]
52388 * posix/regcomp.c (parse_branch): One more memory leak plugged.
52389 * posix/bug-regex31.input: Add test case.
52390
523912010-10-11 Ulrich Drepper <drepper@gmail.com>
52392
52393 * posix/bug-regex31.c: Rewrite to run multiple tests from stdin.
52394 * posix/bug-regex31.input: New file.
52395
52396 [BZ #12078]
52397 * posix/regcomp.c (parse_branch): Free memory when allocation failed.
52398 (parse_sub_exp): Fix last change, use postorder.
52399
52400 * posix/bug-regex31.c: New file.
52401 * posix/Makefile: Add rules to build and run bug-regex31.
52402
52403 * posix/regcomp.c (parse_bracket_exp): Add missing re_free calls.
52404
52405 [BZ #12078]
52406 * posix/regcomp.c (parse_sub_exp): Free tree data when it is not used.
52407
52408 [BZ #12108]
52409 * stdio-common/psiginfo.c (psiginfo): Don't expext SIGRTMIN..SIGRTMAX
52410 to have entries in sys_siglist.
52411
52412 [BZ #12093]
52413 * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): ->ifa_addr might
52414 be NULL.
52415
524162010-10-07 Jakub Jelinek <jakub@redhat.com>
52417
52418 [BZ #3268]
52419 * math/libm-test.inc (fma_test): Add 2 fmaf tests.
52420 * sysdeps/ieee754/dbl-64/s_fmaf.c: New file.
52421 * sysdeps/i386/i686/multiarch/s_fmaf.c: Include
52422 sysdeps/ieee754/dbl-64/s_fmaf.c instead of math/s_fmaf.c.
52423 * sysdeps/x86_64/multiarch/s_fmaf.c: Likewise.
52424 * include/fenv.h (feupdateenv, fetestexcept): Add libm_hidden_proto.
52425 * math/feupdateenv.c (feupdateenv): Add libm_hidden_ver.
52426 * sysdeps/i386/fpu/feupdateenv.c (feupdateenv): Likewise.
52427 * sysdeps/powerpc/fpu/feupdateenv.c (feupdateenv): Likewise.
52428 * sysdeps/x86_64/fpu/feupdateenv.c (feupdateenv): Likewise.
52429 * sysdeps/sparc/fpu/feupdateenv.c (feupdateenv): Likewise.
52430 * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Add libm_hidden_def.
52431 * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Likewise.
52432 * math/ftestexcept.c (fetestexcept): Likewise.
52433 * sysdeps/ia64/fpu/ftestexcept.c (fetestexcept): Likewise.
52434 * sysdeps/i386/fpu/ftestexcept.c (fetestexcept): Likewise.
52435 * sysdeps/s390/fpu/ftestexcept.c (fetestexcept): Likewise.
52436 * sysdeps/powerpc/fpu/ftestexcept.c (fetestexcept): Likewise.
52437 * sysdeps/x86_64/fpu/ftestexcept.c (fetestexcept): Likewise.
52438 * sysdeps/sparc/fpu/ftestexcept.c (fetestexcept): Likewise.
52439 * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
52440
524412010-10-11 Ulrich Drepper <drepper@gmail.com>
52442
52443 [BZ #12107]
52444 * stdio-common/psiginfo.c (psiginfo): Terminate all strings with
52445 newline.
52446
524472010-10-06 Ulrich Drepper <drepper@gmail.com>
52448
52449 * string/bug-strstr1.c: New file.
52450 * string/Makefile: Add rules to build and run bug-strstr1.
52451
524522010-10-05 Eric Blake <eblake@redhat.com>
52453
52454 [BZ #12092]
52455 * string/str-two-way.h (two_way_long_needle): Always clear memory
52456 when skipping input due to the shift table.
52457
524582010-10-03 Ulrich Drepper <drepper@gmail.com>
52459
52460 [BZ #12005]
52461 * malloc/mcheck.c: Handle large requests.
52462
52463 [BZ #12077]
52464 * sysdeps/x86_64/strcmp.S: Fix handling of remaining bytes in buffer
52465 for strncmp and strncasecmp.
52466 * string/stratcliff.c: Add tests for strcmp and strncmp.
52467 * wcsmbs/wcsatcliff.c: Adjust for stratcliff change.
52468
524692010-09-28 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52470
52471 * sysdeps/sh/sh4/fpu/fpu_control.h: Add 'extern "C"' protection to
52472 __set_fpscr.
52473
524742010-09-30 Andreas Jaeger <aj@suse.de>
52475
52476 * sysdeps/unix/sysv/linux_fsinfo.h (BTRFS_SUPER_MAGIC): Define.
52477 (CGROUP_SUPER_MAGIC): Define.
52478 * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
52479 Handle btrfs and cgroup file systems.
52480 * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
52481 Likewise.
52482
524832010-09-27 Luis Machado <luisgpm@br.ibm.com>
52484
52485 * sysdeps/powerpc/powerpc32/rtld-memset.c: New file.
52486 * sysdeps/powerpc/powerpc64/rtld-memset.c: New file.
52487
524882010-09-29 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
52489
52490 [BZ #12067]
52491 * sysdeps/s390/s390-32/elf/start.S: Fix address calculation when
52492 trying to locate the ELF header.
52493
524942010-09-27 Andreas Schwab <schwab@redhat.com>
52495
52496 [BZ #11611]
52497 * sysdeps/unix/sysv/linux/internal_statvfs.c (INTERNAL_STATVFS):
52498 Mask out sign-bit copies when constructing f_fsid.
52499
525002010-09-24 Petr Baudis <pasky@suse.cz>
52501
52502 * debug/stack_chk_fail_local.c: Add missing licence exception.
52503 * debug/warning-nop.c: Likewise.
52504
525052010-09-15 Joseph Myers <joseph@codesourcery.com>
52506
52507 * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): When
52508 implementing getdents64 using getdents syscall, set d_type if
52509 __ASSUME_GETDENTS32_D_TYPE.
52510
525112010-09-16 Andreas Schwab <schwab@redhat.com>
52512
52513 * elf/dl-close.c (free_slotinfo, free_mem): Move to...
52514 * elf/dl-libc.c (free_slotinfo, free_mem): ... here.
52515
525162010-09-21 Ulrich Drepper <drepper@redhat.com>
52517
52518 [BZ #12037]
52519 * posix/unistd.h: Undo change of feature selection for ftruncate from
52520 2010-01-11.
52521
525222010-09-20 Ulrich Drepper <drepper@redhat.com>
52523
52524 * sysdeps/x86_64/strcmp.S: Fix another typo in x86-64 strncasecmp limit
52525 detection.
52526
525272010-09-20 Andreas Schwab <schwab@redhat.com>
52528
52529 * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Add
52530 fanotify_mark.
52531 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Likewise.
52532
525332010-09-14 Andreas Schwab <schwab@redhat.com>
52534
52535 * sysdeps/s390/s390-32/__longjmp.c (__longjmp): Define register
52536 variables after CHECK_SP call.
52537 * sysdeps/s390/s390-64/__longjmp.c (__longjmp): Likewise.
52538
525392010-09-13 Andreas Schwab <schwab@redhat.com>
52540 Ulrich Drepper <drepper@redhat.com>
52541
52542 * elf/rtld.c (dl_main): Set GLRO(dl_init_all_dirs) just before
52543 re-relocationg ld.so.
52544 * elf/dl-support.c (_dl_non_dynamic_init): And here after the
52545 _dl_init_paths call.
52546 * elf/dl-load.c (_dl_init_paths). Don't set GLRO(dl_init_all_dirs)
52547 here anymore.
52548
525492010-09-14 Ulrich Drepper <drepper@redhat.com>
52550
52551 * resolv/res_init.c (__res_vinit): Count the default server we added.
52552
525532010-09-08 Chung-Lin Tang <cltang@codesourcery.com>
52554 Ulrich Drepper <drepper@redhat.com>
52555
52556 [BZ #11968]
52557 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
52558 (____longjmp_chk): Use %ebx for saving value across system call.
52559 Add unwind info.
52560
525612010-09-06 Andreas Schwab <schwab@redhat.com>
52562
52563 * manual/Makefile: Don't mix pattern rules with normal rules.
52564
525652010-09-05 Andreas Schwab <schwab@linux-m68k.org>
52566
52567 * debug/vdprintf_chk.c (__vdprintf_chk): Remove undefined
52568 operation.
52569 * libio/iofdopen.c (_IO_new_fdopen): Likewise.
52570 * libio/iofopncook.c (_IO_cookie_init): Likewise.
52571 * libio/iovdprintf.c (_IO_vdprintf): Likewise.
52572 * libio/oldiofdopen.c (_IO_old_fdopen): Likewise.
52573 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
52574 Likewise.
52575
525762010-09-04 Ulrich Drepper <drepper@redhat.com>
52577
52578 [BZ #11979]
52579 * iconvdata/gconv-modules: Remove EBCDIC-CP-AR2 alias from
52580 IBM-930, IBM-933, IBM-935, IBM-937, and IBM-939.
52581
525822010-09-02 Ulrich Drepper <drepper@redhat.com>
52583
52584 * sysdeps/x86_64/add_n.S: Update from GMP 5.0.1.
52585 * sysdeps/x86_64/addmul_1.S: Likewise.
52586 * sysdeps/x86_64/lshift.S: Likewise.
52587 * sysdeps/x86_64/mul_1.S: Likewise.
52588 * sysdeps/x86_64/rshift.S: Likewise.
52589 * sysdeps/x86_64/sub_n.S: Likewise.
52590 * sysdeps/x86_64/submul_1.S: Likewise.
52591
525922010-09-01 Samuel Thibault <samuel.thibault@ens-lyon.org>
52593
52594 This aligns bits/sched.h onto sysdeps/unix/sysv/linux/bits/sched.h:
52595 Define __sched_param instead of SCHED_* and sched_param when
52596 <bits/sched.h> is included with __need_schedparam defined.
52597 * bits/sched.h [__need_schedparam]
52598 (SCHED_OTHER, SCHED_FIFO, SCHED_RR, sched_param): Do not define.
52599 [!__defined_schedparam && (__need_schedparam || _SCHED_H)]
52600 (__defined_schedparam): Define to 1.
52601 (__sched_param): New structure, identical to sched_param.
52602 (__need_schedparam): Undefine.
52603
526042010-08-31 Mike Frysinger <vapier@gentoo.org>
52605
52606 * sysdeps/unix/sysv/linux/sparc/sys/epoll.h (epoll_create2): Delete.
52607 (epoll_create1): Declare.
52608
52609 * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Fix typo.
52610
526112010-08-31 Andreas Schwab <schwab@redhat.com>
52612
52613 [BZ #7066]
52614 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix array overflow when
52615 shifting retval into place.
52616
526172010-09-01 Ulrich Drepper <drepper@redhat.com>
52618
52619 * nis/rpcsvc/nis.h: Update copyright notice.
52620 * nis/rpcsvc/nis.x: Likewise.
52621 * nis/rpcsvc/nis_callback.h: Likewise.
52622 * nis/rpcsvc/nis_callback.x: Likewise.
52623 * nis/rpcsvc/nis_object.x: Likewise.
52624 * nis/rpcsvc/nis_tags.h: Likewise.
52625 * nis/rpcsvc/yp.h: Likewise.
52626 * nis/rpcsvc/yp.x: Likewise.
52627 * nis/rpcsvc/ypupd.h: Likewise.
52628 * nis/yp_xdr.c: Likewise.
52629 * nis/ypupdate_xdr.c: Likewise.
52630
52631 * sunrpc/pm_getport.c (__libc_rpc_getport): New function. This is
52632 mainly the body of pmap_getport. Add parameters to specify timeouts.
52633 (pmap_getport): Use __libc_rpc_getport.
52634 * sunrpc/Versions: Export __libc_rpc_getport with GLIBC_PRIVATE.
52635 * include/rpc/pmap_clnt.h: Declare __libc_rpc_getport.
52636 * nis/nis_findserv.c: Remove pmap_getport copy. Use __libc_rpc_getport.
52637
526382010-08-31 Andreas Schwab <schwab@linux-m68k.org>
52639
52640 * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Add
52641 fanotify_mark.
52642
526432010-08-27 Roland McGrath <roland@redhat.com>
52644
52645 * sysdeps/i386/i686/multiarch/Makefile
52646 (CFLAGS-varshift.c): New variable.
52647
526482010-08-27 Ulrich Drepper <drepper@redhat.com>
52649
52650 * sysdeps/i386/i686/multiarch/varshift.S: File removed.
52651 * sysdeps/i386/i686/multiarch/varshift.c: New file.
52652
52653 * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Move to .text.slow section.
52654
52655 * sysdeps/x86_64/strlen.S: Minimal code improvement.
52656
526572010-08-26 H.J. Lu <hongjiu.lu@intel.com>
52658
52659 * sysdeps/x86_64/strlen.S: Unroll the loop.
52660 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
52661 strlen-sse2 strlen-sse2-bsf.
52662 * sysdeps/x86_64/multiarch/strlen.S ((strlen): Return
52663 __strlen_no_bsf if bit_Slow_BSF is set.
52664 (__strlen_sse42): Removed.
52665 * sysdeps/x86_64/multiarch/strlen-no-bsf.S: New file.
52666 * sysdeps/x86_64/multiarch/strlen-sse4.S: New file.
52667
526682010-08-25 Roland McGrath <roland@redhat.com>
52669
52670 * sysdeps/x86_64/multiarch/varshift.S: File removed.
52671 * sysdeps/x86_64/multiarch/varshift.c: New file.
52672 * sysdeps/x86_64/multiarch/Makefile (CFLAGS-varshift.c): New variable.
52673 * sysdeps/x86_64/multiarch/varshift.h: Clean up decls, fix a cast.
52674 * sysdeps/x86_64/multiarch/memmove.c: Move decls around.
52675 * sysdeps/x86_64/multiarch/memmove_chk.c: Likewise.
52676
526772010-08-25 H.J. Lu <hongjiu.lu@intel.com>
52678
52679 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
52680 strlen-sse2 strlen-sse2-bsf.
52681 * sysdeps/i386/i686/multiarch/strlen.S (strlen): Return
52682 __strlen_sse2_bsf if bit_Slow_BSF is unset.
52683 (__strlen_sse2): Removed.
52684 * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: New file.
52685 * sysdeps/i386/i686/multiarch/strlen-sse2.S: New file.
52686 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Set
52687 bit_Slow_BSF for Atom.
52688 * sysdeps/x86_64/multiarch/init-arch.h (bit_Slow_BSF): Define.
52689 (index_Slow_BSF): Define.
52690 (HAS_SLOW_BSF): Define.
52691
526922010-08-25 Ulrich Drepper <drepper@redhat.com>
52693
52694 [BZ #10851]
52695 * resolv/res_init.c (__res_vinit): When no server address at all
52696 is given default to loopback.
52697
526982010-08-24 Roland McGrath <roland@redhat.com>
52699
52700 * configure.in: Remove config-name.h generation.
52701 * configure: Regenerated.
52702 * config-name.in: File removed.
52703 * scripts/config-uname.sh: New file.
52704 * posix/Makefile (uname.c): Depend on $(objdir)config-name.h.
52705 ($(objdir)config-name.h): New target.
52706
52707 * sunrpc/rpc_parse.h: Avoid nested comment.
52708
527092010-08-24 Richard Henderson <rth@redhat.com>
52710 Ulrich Drepper <drepper@redhat.com>
52711 H.J. Lu <hongjiu.lu@intel.com>
52712
52713 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add varshift.
52714 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Likewise.
52715 * sysdeps/x86_64/multiarch/strcspn-c.c: Include "varshift.h".
52716 Replace _mm_srli_si128 with __m128i_shift_right. Replace
52717 _mm_alignr_epi8 with _mm_loadu_si128.
52718 * sysdeps/x86_64/multiarch/strspn-c.c: Likewise.
52719 * sysdeps/x86_64/multiarch/strstr.c: Include "varshift.h".
52720 (__m128i_shift_right): Removed.
52721 * sysdeps/i386/i686/multiarch/varshift.h: New file.
52722 * sysdeps/i386/i686/multiarch/varshift.S: New file.
52723 * sysdeps/x86_64/multiarch/varshift.h: New file.
52724 * sysdeps/x86_64/multiarch/varshift.S: New file.
52725
527262010-08-21 Mike Frysinger <vapier@gentoo.org>
52727
52728 * configure.in: Move assembler checks to before sysdep dir checking.
52729
527302010-08-20 Petr Baudis <pasky@suse.cz>
52731
52732 * LICENSES: Sync the sunrpc license.
52733
527342010-08-19 Ulrich Drepper <drepper@redhat.com>
52735
52736 * sunrpc/auth_des.c: Update copyright notice once again.
52737 * sunrpc/auth_none.c: Likewise.
52738 * sunrpc/auth_unix.c: Likewise.
52739 * sunrpc/authdes_prot.c: Likewise.
52740 * sunrpc/authuxprot.c: Likewise.
52741 * sunrpc/bindrsvprt.c: Likewise.
52742 * sunrpc/clnt_gen.c: Likewise.
52743 * sunrpc/clnt_perr.c: Likewise.
52744 * sunrpc/clnt_raw.c: Likewise.
52745 * sunrpc/clnt_simp.c: Likewise.
52746 * sunrpc/clnt_tcp.c: Likewise.
52747 * sunrpc/clnt_udp.c: Likewise.
52748 * sunrpc/clnt_unix.c: Likewise.
52749 * sunrpc/des_crypt.c: Likewise.
52750 * sunrpc/des_soft.c: Likewise.
52751 * sunrpc/get_myaddr.c: Likewise.
52752 * sunrpc/getrpcport.c: Likewise.
52753 * sunrpc/key_call.c: Likewise.
52754 * sunrpc/key_prot.c: Likewise.
52755 * sunrpc/openchild.c: Likewise.
52756 * sunrpc/pm_getmaps.c: Likewise.
52757 * sunrpc/pm_getport.c: Likewise.
52758 * sunrpc/pmap_clnt.c: Likewise.
52759 * sunrpc/pmap_prot.c: Likewise.
52760 * sunrpc/pmap_prot2.c: Likewise.
52761 * sunrpc/pmap_rmt.c: Likewise.
52762 * sunrpc/rpc/auth.h: Likewise.
52763 * sunrpc/rpc/auth_unix.h: Likewise.
52764 * sunrpc/rpc/clnt.h: Likewise.
52765 * sunrpc/rpc/des_crypt.h: Likewise.
52766 * sunrpc/rpc/key_prot.h: Likewise.
52767 * sunrpc/rpc/netdb.h: Likewise.
52768 * sunrpc/rpc/pmap_clnt.h: Likewise.
52769 * sunrpc/rpc/pmap_prot.h: Likewise.
52770 * sunrpc/rpc/pmap_rmt.h: Likewise.
52771 * sunrpc/rpc/rpc.h: Likewise.
52772 * sunrpc/rpc/rpc_des.h: Likewise.
52773 * sunrpc/rpc/rpc_msg.h: Likewise.
52774 * sunrpc/rpc/svc.h: Likewise.
52775 * sunrpc/rpc/svc_auth.h: Likewise.
52776 * sunrpc/rpc/types.h: Likewise.
52777 * sunrpc/rpc/xdr.h: Likewise.
52778 * sunrpc/rpc_clntout.c: Likewise.
52779 * sunrpc/rpc_cmsg.c: Likewise.
52780 * sunrpc/rpc_common.c: Likewise.
52781 * sunrpc/rpc_cout.c: Likewise.
52782 * sunrpc/rpc_dtable.c: Likewise.
52783 * sunrpc/rpc_hout.c: Likewise.
52784 * sunrpc/rpc_main.c: Likewise.
52785 * sunrpc/rpc_parse.c: Likewise.
52786 * sunrpc/rpc_parse.h: Likewise.
52787 * sunrpc/rpc_prot.c: Likewise.
52788 * sunrpc/rpc_sample.c: Likewise.
52789 * sunrpc/rpc_scan.c: Likewise.
52790 * sunrpc/rpc_scan.h: Likewise.
52791 * sunrpc/rpc_svcout.c: Likewise.
52792 * sunrpc/rpc_tblout.c: Likewise.
52793 * sunrpc/rpc_util.c: Likewise.
52794 * sunrpc/rpc_util.h: Likewise.
52795 * sunrpc/rpcinfo.c: Likewise.
52796 * sunrpc/rpcsvc/bootparam_prot.x: Likewise.
52797 * sunrpc/rpcsvc/key_prot.x: Likewise.
52798 * sunrpc/rpcsvc/klm_prot.x: Likewise.
52799 * sunrpc/rpcsvc/mount.x: Likewise.
52800 * sunrpc/rpcsvc/nfs_prot.x: Likewise.
52801 * sunrpc/rpcsvc/nlm_prot.x: Likewise.
52802 * sunrpc/rpcsvc/rex.x: Likewise.
52803 * sunrpc/rpcsvc/rstat.x: Likewise.
52804 * sunrpc/rpcsvc/rusers.x: Likewise.
52805 * sunrpc/rpcsvc/sm_inter.x: Likewise.
52806 * sunrpc/rpcsvc/spray.x: Likewise.
52807 * sunrpc/rpcsvc/yppasswd.x: Likewise.
52808 * sunrpc/rtime.c: Likewise.
52809 * sunrpc/svc.c: Likewise.
52810 * sunrpc/svc_auth.c: Likewise.
52811 * sunrpc/svc_authux.c: Likewise.
52812 * sunrpc/svc_raw.c: Likewise.
52813 * sunrpc/svc_run.c: Likewise.
52814 * sunrpc/svc_simple.c: Likewise.
52815 * sunrpc/svc_tcp.c: Likewise.
52816 * sunrpc/svc_udp.c: Likewise.
52817 * sunrpc/svc_unix.c: Likewise.
52818 * sunrpc/svcauth_des.c: Likewise.
52819 * sunrpc/xcrypt.c: Likewise.
52820 * sunrpc/xdr.c: Likewise.
52821 * sunrpc/xdr_array.c: Likewise.
52822 * sunrpc/xdr_float.c: Likewise.
52823 * sunrpc/xdr_mem.c: Likewise.
52824 * sunrpc/xdr_rec.c: Likewise.
52825 * sunrpc/xdr_ref.c: Likewise.
52826 * sunrpc/xdr_sizeof.c: Likewise.
52827 * sunrpc/xdr_stdio.c: Likewise.
52828
52829 * sysdeps/x86_64/multiarch/strcmp.S: Fix two typos in strncasecmp
52830 handling.
52831
528322010-08-19 Andreas Schwab <schwab@redhat.com>
52833
52834 * sysdeps/i386/i686/multiarch/strspn.S [!SHARED]: Fix SSE4.2 check.
52835
528362010-08-19 Luis Machado <luisgpm@br.ibm.com>
52837
52838 * sysdeps/powerpc/powerpc32/power7/memchr.S: New file.
52839 * sysdeps/powerpc/powerpc32/power7/memrchr.S: New file.
52840 * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: New file.
52841 * sysdeps/powerpc/powerpc32/power7/strchr.S: New file.
52842 * sysdeps/powerpc/powerpc32/power7/strchrnul.S: New file.
52843 * sysdeps/powerpc/powerpc32/power7/strlen.S: New file.
52844 * sysdeps/powerpc/powerpc32/power7/strnlen.S: New file.
52845 * sysdeps/powerpc/powerpc64/power7/memchr.S: New file.
52846 * sysdeps/powerpc/powerpc64/power7/memrchr.S: New file.
52847 * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: New file.
52848 * sysdeps/powerpc/powerpc64/power7/strchr.S: New file.
52849 * sysdeps/powerpc/powerpc64/power7/strchrnul.S: New file.
52850 * sysdeps/powerpc/powerpc64/power7/strlen.S: New file.
52851 * sysdeps/powerpc/powerpc64/power7/strnlen.S: New file.
52852
528532010-07-26 Anton Blanchard <anton@samba.org>
52854
52855 * malloc/malloc.c (sYSTRIm): Replace divide and multiply with mask.
52856 * malloc/arena.c (heap_trim): Likewise.
52857
528582010-08-16 Ulrich Drepper <drepper@redhat.com>
52859
52860 * sysdeps/unix/sysv/linux/syscalls.list: Add entry for fanotify_init
52861 here. Not...
52862 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: ...here...
52863 * sysdeps/unix/sysv/linux/i386/syscalls.list: ... orhere.
52864
528652010-08-12 H.J. Lu <hongjiu.lu@intel.com>
52866
52867 * sysdeps/i386/elf/Makefile: New file.
52868
528692010-08-14 Andreas Schwab <schwab@linux-m68k.org>
52870
52871 * sysdeps/unix/sysv/linux/sys/fanotify.h: Remove third argument
52872 from fanotify_init.
52873 * sysdeps/unix/sysv/linux/i386/syscalls.list: Likewise.
52874 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
52875
528762010-08-15 Ulrich Drepper <drepper@redhat.com>
52877
52878 * sysdeps/x86_64/strcmp.S: Use correct register for fourth parameter
52879 of strncasecmp_l.
52880 * sysdeps/multiarch/strcmp.S: Likewise.
52881
528822010-08-14 Ulrich Drepper <drepper@redhat.com>
52883
52884 * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
52885 strncase_l-nonascii.
52886 * sysdeps/x86_64/multiarch/Makefile [subdir=string] (sysdep_routines):
52887 Add strncase_l-ssse3.
52888 * sysdeps/x86_64/multiarch/strcmp.S: Prepare for use as strncasecmp.
52889 * sysdeps/x86_64/strcmp.S: Likewise.
52890 * sysdeps/x86_64/multiarch/strncase_l-ssse3.S: New file.
52891 * sysdeps/x86_64/multiarch/strncase_l.S: New file.
52892 * sysdeps/x86_64/strncase.S: New file.
52893 * sysdeps/x86_64/strncase_l-nonascii.c: New file.
52894 * sysdeps/x86_64/strncase_l.S: New file.
52895 * string/Makefile (strop-tests): Add strncasecmp.
52896 * string/test-strncasecmp.c: New file.
52897
52898 * sysdeps/x86_64/strcasecmp_l-nonascii.c: Add prototype to avoid
52899 warning.
52900
52901 * sysdeps/x86_64/strcmp.S: Move definition of NO_NOLOCALE_ALIAS to...
52902 * sysdeps/x86_64/multiarch/strcasecmp_l-ssse3.S: ... here.
52903
529042010-08-14 Andreas Schwab <schwab@linux-m68k.org>
52905
52906 * sysdeps/unix/sysv/linux/prlimit.c: Make it compile.
52907
529082010-08-12 Ulrich Drepper <drepper@redhat.com>
52909
52910 * sysdeps/unix/sysv/linux/bits/termios.h: Define EXTPROC.
52911 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
52912 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
52913
529142010-05-01 Alan Modra <amodra@gmail.com>
52915
52916 * sysdeps/powerpc/powerpc32/power4/memcmp.S: Correct cfi for r24.
52917 * sysdeps/powerpc/powerpc64/bsd-_setjmp.S: Move contents..
52918 * sysdeps/powerpc/powerpc64/bsd-setjmp.S: ..and these too..
52919 * sysdeps/powerpc/powerpc64/setjmp.S: ..to here..
52920 * sysdeps/powerpc/powerpc64/setjmp-common.S: ..and here, with some
52921 tidying. Don't tail-call __sigjmp_save for static lib.
52922 * sysdeps/powerpc/powerpc64/sysdep.h (SAVE_ARG, REST_ARG): Correct
52923 save location.
52924 (CFI_SAVE_ARG, CFI_REST_ARG): New macros.
52925 (CALL_MCOUNT): Add eh info, and nop after bl.
52926 (TAIL_CALL_SYSCALL_ERROR): New macro.
52927 (PSEUDO_RET): Use it.
52928 * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve):
52929 Correct save location of integer regs and cr.
52930 (_dl_profile_resolve): Correct cr save location. Delete nops
52931 after bl when SHARED. Reduce cfi size a little by better
52932 placement of cfi directives.
52933 * sysdeps/powerpc/powerpc64/fpu/s_copysign.S (__copysign): Don't
52934 make a stack frame. Instead use parm save area as a temp.
52935 * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S (__brk): Don't
52936 make a stack frame. Use TAIL_CALL_SYSCALL_ERROR.
52937 * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
52938 Don't make a stack frame for parent, use parm save area.
52939 Increase child stack frame to 112 bytes. Don't save unused reg,
52940 and adjust reg usage. Set up cfi on error recovery and
52941 epilogue of parent, and use TAIL_CALL_SYSCALL_ERROR, PSEUDO_RET.
52942 * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
52943 (__makecontext): Add dummy nop after jump to exit.
52944 * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S (__socket):
52945 Use correct parm save area and cr save, reduce stack frame.
52946 Correct cfi for possible PSEUDO_RET frame setup.
52947 * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S (__vfork):
52948 Branch to local label emitted by PSEUDO_RET rather than
52949 __syscall_error.
52950
529512010-08-12 Andreas Schwab <schwab@redhat.com>
52952
52953 [BZ #11904]
52954 * locale/programs/locale.c (print_assignment): New function.
52955 (show_locale_vars): Use it.
52956
529572010-08-11 Ulrich Drepper <drepper@redhat.com>
52958
52959 * sysdeps/unix/sysv/linux/bits/statfs.h (struct statfs): Add f_flags
52960 field.
52961 (struct statfs64): Likewise.
52962 (_STATFS_F_FLAGS): Define.
52963 * sysdeps/unix/sysv/linux/s390/bits/statfs.h: Likewise.
52964 * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
52965 Don't define if __ASSUME_STATFS_F_FLAGS is defined.
52966 (ST_VALID): Define locally.
52967 (INTERNAL_STATVFS): If f_flags has ST_VALID set don't call
52968 __statvfs_getflags, use the provided value.
52969 * sysdeps/unix/sysv/linux/kernel-features.h: Define
52970 __ASSUME_STATFS_F_FLAGS.
52971
52972 * sysdeps/unix/sysv/linux/sys/inotify.h (IN_EXCL_UNLINK): Define.
52973
52974 * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers):
52975 Add sys/fanotify.h.
52976 * sysdeps/unix/sysv/linux/Versions [libc]: Export fanotify_init and
52977 fanotify_mask for GLIBC_2.13.
52978 * sysdeps/unix/sysv/linux/i386/syscalls.list: Add entries for
52979 fanotify_init and fanotify_mark.
52980 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
52981 * sysdeps/unix/sysv/linux/sys/fanotify.h: New file.
52982
52983 * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_routines):
52984 Add prlimit.
52985 * sysdeps/unix/sysv/linux/Versions [libc]: Export prlimit and
52986 prlimit64 for GLIBC_2.13.
52987 * sysdeps/unix/sysv/linux/bits/resource.h: Declare prlimit and
52988 prlimit64.
52989 * sysdeps/unix/sysv/linux/i386/syscalls.list: Add entry for prlimit64
52990 syscall.
52991 * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Likewise.
52992 * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Likewise.
52993 * sysdeps/unix/sysv/linux/sh/syscalls.list: Likewise.
52994 * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.lis: Likewise.
52995 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise. Also
52996 add prlimit alias.
52997 * sysdeps/unix/sysv/linux/prlimit.c: New file.
52998
52999 [BZ #11903]
53000 * sysdeps/generic/netinet/ip.h (IPTOS_CLASS): Fix definition.
53001 Patch by Evgeni Bikov <bikovevg@iitp.ru>.
53002
53003 * nss/Makefile: Add rules to build and run tst-nss-test1.
53004 * shlib-versions: Add entry for libnss_test1.
53005 * nss/nss_test1.c: New file.
53006 * nss/tst-nss-test1.c: New file.
53007
53008 * nss/nsswitch.c (__nss_database_custom): Define new variable.
53009 (__nss_configure_lookup): Set appropriate entry in
53010 __nss_configure_lookup to true.
53011 * nss/nsswitch.h: Define enum with indeces of databases in
53012 databases and __nss_database_custom arrays. Declare
53013 __nss_database_custom.
53014 * grp/initgroups.c (internal_getgrouplist): Use __nss_database_custom
53015 to avoid using nscd when custom rules are installed.
53016 * nss/getXXbyYY_r.c: Likewise.
53017 * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
53018
53019 * nss/nss_files/files-parse.c: Whitespace fixes.
53020
530212010-08-09 Ulrich Drepper <drepper@redhat.com>
53022
53023 [BZ #11883]
53024 * posix/fnmatch.c: Keep track of alloca use and fall back on malloc.
53025 * posix/fnmatch_loop.c: Likewise.
53026
530272010-07-17 Andi Kleen <ak@linux.intel.com>
53028
53029 * sysdeps/i386/i386-mcount.S (__fentry__): Define.
53030 * sysdeps/x86_64/_mcount.S (__fentry__): Define.
53031 * stdlib/Versions (__fentry__): Add for GLIBC 2.13
53032 * Versions.def [GLIBC_2.13]: Add.
53033
530342010-08-06 Ulrich Drepper <drepper@redhat.com>
53035
53036 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
53037 Also fail if tpwd after pwuid call is NULL.
53038
530392010-07-31 Samuel Thibault <samuel.thibault@ens-lyon.org>
53040
53041 * hurd/hurdselect.c (_hurd_select): Round timeout up instead of down
53042 when converting to ms.
53043
530442010-06-06 Samuel Thibault <samuel.thibault@ens-lyon.org>
53045
53046 * sysdeps/mach/hurd/ttyname.c (ttyname): Replace MIG_BAD_ID and
53047 EOPNOTSUPP errors with ENOTTY.
53048 * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Replace MIG_BAD_ID and
53049 EOPNOTSUPP errors with ENOTTY.
53050
530512010-07-31 Ulrich Drepper <drepper@redhat.com>
53052
53053 * sysdeps/x86_64/multiarch/Makefile [subdir=string] (sysdep_routines):
53054 Add strcasecmp_l-ssse3.
53055 * sysdeps/x86_64/multiarch/strcmp.S: Add support to compile for
53056 strcasecmp.
53057 * sysdeps/x86_64/strcmp.S: Allow more flexible compiling of strcasecmp.
53058 * sysdeps/x86_64/multiarch/strcasecmp_l.S: New file.
53059 * sysdeps/x86_64/multiarch/strcasecmp_l-ssse3.S: New file.
53060
530612010-07-30 Ulrich Drepper <drepper@redhat.com>
53062
53063 * sysdeps/x86_64/multiarch/strcmp.S: Pretty printing.
53064
53065 * string/Makefile (strop-tests): Add strcasecmp.
53066 * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
53067 strcasecmp_l-nonascii.
53068 (gen-as-const-headers): Add locale-defines.sym.
53069 * sysdeps/x86_64/strcmp.S: Add support for strcasecmp implementation.
53070 * sysdeps/x86_64/strcasecmp.S: New file.
53071 * sysdeps/x86_64/strcasecmp_l.S: New file.
53072 * sysdeps/x86_64/strcasecmp_l-nonascii.c: New file.
53073 * sysdeps/x86_64/locale-defines.sym: New file.
53074 * string/test-strcasecmp.c: New file.
53075
53076 * string/test-strcasestr.c: Test both ends of the range of characters.
53077 * sysdeps/x86_64/multiarch/strstr.c: Fix UCHIGH definition.
53078
530792010-07-29 Roland McGrath <roland@redhat.com>
53080
53081 [BZ #11856]
53082 * manual/locale.texi (Yes-or-No Questions): Fix example code.
53083
530842010-07-27 Ulrich Drepper <drepper@redhat.com>
53085
53086 * sysdeps/x86_64/multiarch/strcmp-ssse3.S: Avoid compiling the file
53087 for ld.so.
53088
530892010-07-27 Andreas Schwab <schwab@redhat.com>
53090
53091 * manual/memory.texi (Malloc Tunable Parameters): Document
53092 M_PERTURB.
53093
530942010-07-26 Roland McGrath <roland@redhat.com>
53095
53096 [BZ #11840]
53097 * configure.in (-fgnu89-inline check): Set and substitute
53098 gnu89_inline, not libc_cv_gnu89_inline.
53099 * configure: Regenerated.
53100 * config.make.in (gnu89-inline-CFLAGS): Use @gnu89_inline@.
53101
531022010-07-26 Ulrich Drepper <drepper@redhat.com>
53103
53104 * string/test-strnlen.c: New file.
53105 * string/Makefile (strop-tests): Add strnlen.
53106 * string/tester.c (test_strnlen): Add a few more test cases.
53107 * string/tst-strlen.c: Better error reporting.
53108
53109 * sysdeps/x86_64/strnlen.S: New file.
53110
531112010-07-24 Ulrich Drepper <drepper@redhat.com>
53112
53113 * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu_tolower): Use
53114 lower-latency instructions.
53115
531162010-07-23 Ulrich Drepper <drepper@redhat.com>
53117
53118 * string/test-strcasestr.c: New file.
53119 * string/test-strstr.c: New file.
53120 * string/Makefile (strop-tests): Add strstr and strcasestr.
53121 * string/str-two-way.h: Don't undefine MAX.
53122 * string/strcasestr.c: Don't define alias if NO_ALIAS is defined.
53123
531242010-07-21 Andreas Schwab <schwab@redhat.com>
53125
53126 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
53127 strcasestr-nonascii.
53128 (CFLAGS-strcasestr-nonascii.c): Define.
53129 * sysdeps/i386/i686/multiarch/strcasestr-nonascii.c: New file.
53130 * sysdeps/x86_64/multiarch/strcasestr-nonascii.c (STRSTR_SSE42):
53131 Remove unused attribute.
53132
531332010-07-20 Roland McGrath <roland@redhat.com>
53134
53135 * elf/dl-sysdep.c (_dl_important_hwcaps): Add dsocaps mask to
53136 dl_hwcap_mask as well as dl_hwcap. Without this, dsocaps matching in
53137 ld.so.cache was broken. With it, there is no way to disable dsocaps
53138 like LD_HWCAP_MASK can disable hwcaps.
53139
531402010-06-02 Emilio Pozuelo Monfort <pochu27@gmail.com>
53141
53142 * sysdeps/mach/hurd/sendmsg.c (__libc_sendmsg): Fix memory leaks.
53143
531442010-07-16 Ulrich Drepper <drepper@redhat.com>
53145
53146 * sysdeps/x86_64/multiarch/strstr.c: Rewrite to avoid indirect function
53147 call in strcasestr.
53148 * sysdeps/x86_64/multiarch/strcasestr.c: Declare
53149 __strcasestr_sse42_nonascii.
53150 * sysdeps/x86_64/multiarch/Makefile: Add rules to build
53151 strcasestr-nonascii.c.
53152 * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: New file.
53153
531542010-06-15 Luis Machado <luisgpm@br.ibm.com>
53155
53156 * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: New file.
53157 * sysdeps/powerpc/powerpc32/power6/fpu/s_copysignf.S: New file.
53158 * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: New file.
53159 * sysdeps/powerpc/powerpc64/power6/fpu/s_copysignf.S: New file.
53160
531612010-07-09 Ulrich Drepper <drepper@redhat.com>
53162
53163 * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Use __fcntl not
53164 fcntl.
53165
531662010-07-06 Andreas Schwab <schwab@redhat.com>
53167
53168 [BZ #11577]
53169 * elf/dl-version.c (match_symbol): Don't pass NULL occation to
53170 dl_signal_cerror.
53171
531722010-07-06 Ulrich Drepper <drepper@redhat.com>
53173
53174 * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Implement
53175 _PC_PIPE_BUF using F_GETPIPE_SZ.
53176
531772010-07-05 Roland McGrath <roland@redhat.com>
53178
53179 * manual/arith.texi (Rounding Functions): Fix rint description
53180 implicit in round description.
53181
531822010-07-02 Ulrich Drepper <drepper@redhat.com>
53183
53184 * elf/Makefile: Fix linking for a few tests to make recent linker
53185 happy.
53186
531872010-06-30 Andreas Schwab <schwab@redhat.com>
53188
53189 * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Readd
53190 $(common-objpfx)libc_nonshared.a.
53191
531922010-06-21 Luis Machado <luisgpm@br.ibm.com>
53193
53194 * sysdeps/powerpc/powerpc32/970/fpu/Implies: Remove.
53195 * sysdeps/powerpc/powerpc32/power5/fpu/Implies: Remove.
53196 * sysdeps/powerpc/powerpc32/power5+/fpu/Implies: Remove.
53197 * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: Remove.
53198 * sysdeps/powerpc/powerpc64/970/fpu/Implies: Remove.
53199 * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Remove.
53200 * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Remove.
53201 * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: Remove.
53202 * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/fpu/Implies: Remove.
53203 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/fpu/Implies: Remove.
53204 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/fpu/Implies: Remove.
53205 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/fpu/Implies: Remove.
53206 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/Implies: Remove.
53207 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/fpu/Implies: Remove.
53208 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/fpu/Implies: Remove.
53209 * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/fpu/Implies: Remove.
53210 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/fpu/Implies: Remove.
53211 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/fpu/Implies: Remove.
53212 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/fpu/Implies: Remove.
53213 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/Implies: Remove.
53214 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/fpu/Implies: Remove.
53215 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/fpu/Implies: Remove.
53216 * sysdeps/powerpc/powerpc32/970/Implies: Point to power4.
53217 * sysdeps/powerpc/powerpc32/power5/Implies: Point to power4.
53218 * sysdeps/powerpc/powerpc32/power5+/Implies: Point to power5.
53219 * sysdeps/powerpc/powerpc32/power6/Implies: Point to power5+.
53220 * sysdeps/powerpc/powerpc32/power6x/Implies: Point to power6.
53221 * sysdeps/powerpc/powerpc64/970/Implies: Point to power4.
53222 * sysdeps/powerpc/powerpc64/power5/Implies: Point to power4.
53223 * sysdeps/powerpc/powerpc64/power5+/Implies: Point to power5.
53224 * sysdeps/powerpc/powerpc64/power6/Implies: Point to power5+.
53225 * sysdeps/powerpc/powerpc64/power6x/Implies: Point to power6.
53226 * sysdeps/powerpc/powerpc32/power7/Implies: New file.
53227 * sysdeps/powerpc/powerpc64/power7/Implies: New file.
53228 * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/Implies: New file.
53229 * sysdeps/unix/sysv/linux/powerpc/powerpc32/cell/Implies: New file.
53230 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/Implies: New file.
53231 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/Implies: New file.
53232 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/Implies: New file.
53233 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/Implies: New file.
53234 * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/Implies: New file.
53235 * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/Implies: New file.
53236 * sysdeps/unix/sysv/linux/powerpc/powerpc64/cell/Implies: New file.
53237 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/Implies: New file.
53238 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/Implies: New file.
53239 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/Implies: New file.
53240 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/Implies: New file.
53241 * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/Implies: New file.
53242
532432010-06-25 H.J. Lu <hongjiu.lu@intel.com>
53244
53245 * debug/memmove_chk.c (__memmove_chk): Renamed to ...
53246 (MEMMOVE_CHK): ...this. Default to __memmove_chk.
53247 * string/memmove.c (memmove): Renamed to ...
53248 (MEMMOVE): ...this. Default to memmove.
53249 * sysdeps/x86_64/memcpy.S: Use ENTRY_CHK and END_CHK.
53250 * sysdeps/x86_64/sysdep.h (ENTRY_CHK): Define.
53251 (END_CHK): Define.
53252 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
53253 memcpy-ssse3 mempcpy-ssse3 memmove-ssse3 memcpy-ssse3-back
53254 mempcpy-ssse3-back memmove-ssse3-back.
53255 * sysdeps/x86_64/multiarch/bcopy.S: New file .
53256 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: New file.
53257 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: New file.
53258 * sysdeps/x86_64/multiarch/memcpy.S: New file.
53259 * sysdeps/x86_64/multiarch/memcpy_chk.S: New file.
53260 * sysdeps/x86_64/multiarch/memmove-ssse3-back.S: New file.
53261 * sysdeps/x86_64/multiarch/memmove-ssse3.S: New file.
53262 * sysdeps/x86_64/multiarch/memmove.c: New file.
53263 * sysdeps/x86_64/multiarch/memmove_chk.c: New file.
53264 * sysdeps/x86_64/multiarch/mempcpy-ssse3-back.S: New file.
53265 * sysdeps/x86_64/multiarch/mempcpy-ssse3.S: New file.
53266 * sysdeps/x86_64/multiarch/mempcpy.S: New file.
53267 * sysdeps/x86_64/multiarch/mempcpy_chk.S: New file.
53268 * sysdeps/x86_64/multiarch/init-arch.h (bit_Fast_Copy_Backward):
53269 Define.
53270 (index_Fast_Copy_Backward): Define.
53271 (HAS_ARCH_FEATURE): Define.
53272 (HAS_FAST_REP_STRING): Define.
53273 (HAS_FAST_COPY_BACKWARD): Define.
53274
532752010-06-21 Andreas Schwab <schwab@redhat.com>
53276
53277 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
53278 Restore proper fallback handling.
53279
532802010-06-19 Ulrich Drepper <drepper@redhat.com>
53281
53282 [BZ #11701]
53283 * posix/group_member.c (__group_member): Correct checking loop.
53284
53285 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid): Handle
53286 OOM in getpwuid_r correctly. Return error number when the caller
53287 should return, otherwise -1.
53288 (getlogin_r): Adjust to return also for result of __getlogin_r_loginuid
53289 call returning > 0 value.
53290 * sysdeps/unix/sysv/linux/getlogin.c (getlogin): Likewise.
53291
532922010-06-07 Andreas Schwab <schwab@redhat.com>
53293
53294 * dlfcn/Makefile: Remove explicit dependencies on libc.so and
53295 libc_nonshared.a from targets in modules-names.
53296
532972010-06-02 Kirill A. Shutemov <kirill@shutemov.name>
53298
53299 * elf/dl-reloc.c: Flush cache after solving TEXTRELs if arch
53300 requires it.
53301
533022010-06-10 Luis Machado <luisgpm@br.ibm.com>
53303
53304 * sysdeps/powerpc/powerpc32/power7/memcmp.S: New file
53305 * sysdeps/powerpc/powerpc64/power7/memcmp.S: New file.
53306 * sysdeps/powerpc/powerpc32/power7/strncmp.S: New file.
53307 * sysdeps/powerpc/powerpc64/power7/strncmp.S: New file.
53308
533092010-06-02 Andreas Schwab <schwab@redhat.com>
53310
53311 * nis/nss_nis/nis-initgroups.c (get_uid): Properly resize buffer.
53312
533132010-06-14 Ulrich Drepper <drepper@redhat.com>
53314
53315 * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Define F_SETPIPE_SZ
53316 and F_GETPIPE_SZ.
53317 * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
53318 * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
53319 * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
53320 * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
53321 * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
53322 * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise
53323
533242010-06-14 Roland McGrath <roland@redhat.com>
53325
53326 * manual/libc.texinfo (@copying): Change to GFDL v1.3.
53327
533282010-06-07 Jakub Jelinek <jakub@redhat.com>
53329
53330 * libio/stdio.h (sscanf, vsscanf): Use __REDIRECT_NTH instead of
53331 __REDIRECT followed by __THROW.
53332 * wcsmbs/wchar.h (swscanf, vswscanf): Likewise.
53333 * posix/getopt.h (getopt): Likewise.
53334
533352010-06-02 Emilio Pozuelo Monfort <pochu27@gmail.com>
53336
53337 * hurd/lookup-at.c (__file_name_lookup_at): Accept
53338 AT_SYMLINK_FOLLOW in AT_FLAGS. Fail with EINVAL if both
53339 AT_SYMLINK_FOLLOW and AT_SYMLINK_NOFOLLOW are present
53340 in AT_FLAGS.
53341 * hurd/hurd/fd.h (__file_name_lookup_at): Update comment.
53342 * sysdeps/mach/hurd/linkat.c (linkat): Pass O_NOLINK in FLAGS.
53343
533442010-05-28 Luis Machado <luisgpm@br.ibm.com>
53345
53346 * sysdeps/powerpc/powerpc32/power7/memcpy.S: Exchange srdi for srwi.
53347
533482010-05-26 H.J. Lu <hongjiu.lu@intel.com>
53349
53350 [BZ #11640]
53351 * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
53352 Properly check family and model.
53353
533542010-05-26 Takashi Yoshii <takashi.yoshii.zj@renesas.com>
53355
53356 * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Fix iov[] size.
53357
533582010-05-24 Luis Machado <luisgpm@br.ibm.com>
53359
53360 * sysdeps/powerpc/powerpc32/power7/memset.S: POWER7 32-bit memset fix.
53361
533622010-05-21 Ulrich Drepper <drepper@redhat.com>
53363
53364 * elf/dl-runtime.c (_dl_profile_fixup): Don't crash on unresolved weak
53365 symbol reference.
53366
533672010-05-19 Andreas Schwab <schwab@redhat.com>
53368
53369 * elf/dl-runtime.c (_dl_fixup): Don't crash on unresolved weak
53370 symbol reference.
53371
533722010-05-21 Andreas Schwab <schwab@redhat.com>
53373
53374 * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add recvmmsg
53375 and internal_recvmmsg.
53376 * sysdeps/unix/sysv/linux/recvmmsg.c: New file.
53377 * sysdeps/unix/sysv/linux/internal_recvmmsg.S: New file.
53378 * sysdeps/unix/sysv/linux/socketcall.h (SOCKOP_recvmmsg): Define.
53379 * sysdeps/unix/sysv/linux/syscalls.list (recvmmsg): Remove.
53380
53381 * sunrpc/clnt_tcp.c (clnttcp_control): Add missing break.
53382 * sunrpc/clnt_udp.c (clntudp_control): Likewise.
53383 * sunrpc/clnt_unix.c (clntunix_control): Likewise.
53384
533852010-05-20 Andreas Schwab <schwab@redhat.com>
53386
53387 * sysdeps/unix/sysv/linux/sys/timex.h: Use __REDIRECT_NTH.
53388
533892010-05-17 Luis Machado <luisgpm@br.ibm.com>
53390
53391 POWER7 optimizations.
53392 * sysdeps/powerpc/powerpc64/power7/memset.S: New file.
53393 * sysdeps/powerpc/powerpc32/power7/memset.S: New file.
53394
533952010-05-19 Ulrich Drepper <drepper@redhat.com>
53396
53397 * version.h: Update for 2.13 development version.
53398
533992010-05-12 Andrew Stubbs <ams@codesourcery.com>
53400
53401 * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Really disable all
53402 exceptions. Return 0.
53403
534042010-05-07 Roland McGrath <roland@redhat.com>
53405
53406 * elf/ldconfig.c (main): Add a const.
53407
534082010-05-06 Ulrich Drepper <drepper@redhat.com>
53409
53410 * nss/getent.c (idn_flags): Default to AI_IDN|AI_CANONIDN.
53411 (args_options): Add no-idn option.
53412 (ahosts_keys_int): Add idn_flags to ai_flags.
53413 (parse_option): Handle 'i' option to clear idn_flags.
53414
53415 * malloc/malloc.c (_int_free): Possible race in the most recently
53416 added check. Only act on the data if no current modification
53417 happened.
53418
53419See ChangeLog.17 for earlier changes.