1 2019-02-03 Aurelien Jarno <aurelien@aurel32.net>
3 * stdlib/isomac.c: Include <unistd.h>.
5 2019-02-03 Florian Weimer <fweimer@redhat.com>
7 * include/time.h (__tzfile_default): Use int, not long int, for
9 * time/tzfile.c (struct ttinfo): Change type of the offset member
11 (__tzfile_read): Remove useless cast.
12 (__tzfile_default): Adjust prototype.
13 * time/tzset.c (tz_rule): Change type of the offset member to int.
14 (parse_offset): Change the type of the sign variable to int.
16 2019-02-03 Florian Weimer <fweimer@redhat.com>
19 * debug/gets_chk.c (__gets_chk): Use stdin instead of _IO_stdin.
20 * libio/getchar.c (getchar): Likewise.
21 * libio/getchar_u.c (getchar_unlocked): Likewise.
22 * libio/getwchar.c (getwchar): Likewise.
23 * libio/getwchar_u.c (getwchar_unlocked): Likewise.
24 * libio/iogets.c (_IO_gets): Likewise.
25 * libio/vscanf.c (_IO_vscanf): Likewise.
26 * libio/vwscanf.c (__vwscanf): Likewise.
27 * libio/tst-bz24153.c: New file.
28 * libio/Makefile (tests): Add it.
30 2019-02-02 Florian Weimer <fweimer@redhat.com>
33 * manual/resource.texi (Basic Scheduling Functions): Add
34 portability note. Change process to task throughout the section.
35 Remove incorrect comment about sched_yield as it affects
36 tasks/threads, not entire processes.
37 * sysdeps/unix/sysv/linux/bits/posix_opt.h
38 (_POSIX_PRIORITY_SCHEDULING): Update comment.
40 2019-02-01 Joseph Myers <joseph@codesourcery.com>
42 * configure.ac (libc_cv_compiler_ok): Require GCC 6.2 or later.
43 * configure: Regenerated.
44 * manual/install.texi (Tools for Compilation): Update minimum GCC
46 * INSTALL: Regenerated.
48 2019-02-01 Florian Weimer <fweimer@redhat.com>
50 * support/support_test_compare_string.c
51 (support_test_compare_string): Use "string" in error message.
52 * support/tst-test_compare_string.c (do_test): Adjust.
54 2019-02-01 Florian Weimer <fweimer@redhat.com>
56 * support/support_format_address_family.c
57 (support_format_address_family): Handle AF_LOCAL, AF_UNSPEC.
59 2019-02-01 Florian Weimer <fweimer@redhat.com>
61 * manual/socket.texi (Internet Address Formats): Clarify the byte
62 order of struct sockaddr_in, struct sockaddr_in6. Document
63 sin6_flowinfo and sin6_scope_id.
65 2019-02-01 Wilco Dijkstra <wdijkstr@arm.com>
67 * sysdeps/posix/clock_getres.c (__clock_getres): Cleanup.
68 * sysdeps/unix/clock_gettime.c (__clock_gettime): Cleanup.
69 * sysdeps/unix/clock_settime.c (__clock_settime): Cleanup.
70 * sysdeps/unix/sysv/linux/clock_getres.c (__clock_getres): Cleanup.
71 * sysdeps/unix/sysv/linux/clock_gettime.c (__clock_gettime): Cleanup.
72 * sysdeps/unix/sysv/linux/clock_settime.c (__clock_settime): Cleanup.
74 2019-02-01 Feng Xue <fxue@os.amperecomputing.com>
76 * sysdeps/aarch64/memchr.S (__memchr): Rename to MEMCHR.
77 [!MEMCHR](MEMCHR): Set to __memchr.
78 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines):
79 Add memchr_generic and memchr_nosimd.
80 * sysdeps/aarch64/multiarch/ifunc-impl-list.c
81 (__libc_ifunc_impl_list): Add memchr ifuncs.
82 * sysdeps/aarch64/multiarch/memchr.c: New file.
83 * sysdeps/aarch64/multiarch/memchr_generic.S: Likewise.
84 * sysdeps/aarch64/multiarch/memchr_nosimd.S: Likewise.
86 2019-02-01 Feng Xue <fxue@os.amperecomputing.com>
88 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines):
90 * sysdeps/aarch64/multiarch/ifunc-impl-list.c
91 (__libc_ifunc_impl_list): Add __memset_emag to memset ifunc.
92 * sysdeps/aarch64/multiarch/memset.c (libc_ifunc):
93 Add IS_EMAG check for ifunc dispatch.
94 * sysdeps/aarch64/multiarch/memset_base64.S: New file.
95 * sysdeps/aarch64/multiarch/memset_emag.S: New file.
97 2019-02-01 Feng Xue <fxue@os.amperecomputing.com>
99 * manual/tunables.texi (Tunable glibc.cpu.name): Add emag.
100 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (cpu_list):
102 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h (IS_EMAG):
105 2019-02-01 Stefan Liebler <stli@linux.ibm.com>
107 * posix/tst-spawn do_test(): Move waitpid before posix_spawn.
109 2019-01-31 Vineet Gupta <vgupta@synopsys.com>
111 * sysdeps/unix/make-syscalls.sh: Fix comment referencing
112 syscall-template file.
114 2019-01-31 Carlos O'Donell <carlos@redhat.com>
115 Torvald Riegel <triegel@redhat.com>
116 Rik Prohaska <prohaska7@gmail.com>
119 * nptl/Makefile (tests): Add tst-rwlock-tryrdlock-stall, and
120 tst-rwlock-trywrlock-stall.
121 * nptl/pthread_rwlock_tryrdlock.c (__pthread_rwlock_tryrdlock):
122 Wake waiters if PTHREAD_RWLOCK_FUTEX_USED is set.
123 * nptl/pthread_rwlock_trywrlock.c (__pthread_rwlock_trywrlock):
124 Set __wrphase_fute to 1 only if we started the write phase.
125 * nptl/tst-rwlock-tryrdlock-stall.c: New file.
126 * nptl/tst-rwlock-trywrlock-stall.c: New file.
127 * support/Makefile (libsupport-routines): Add xpthread_rwlock_destroy.
128 * support/xpthread_rwlock_destroy.c: New file.
129 * support/xthread.h: Declare xpthread_rwlock_destroy.
131 2019-02-01 Joseph Myers <joseph@codesourcery.com>
133 * scripts/build-many-glibcs.py (Context.checkout): Default MPFR
136 2019-01-31 Paul Pluzhnikov <ppluzhnikov@google.com>
139 * libio/ioputs.c (_IO_puts): Use stdout instead of _IO_stdout.
140 * libio/fileops.c (_IO_new_file_underflow): Likewise
141 * libio/wfileops.c (_IO_wfile_underflow): Likewise
142 * libio/putchar.c (putchar): Likewise.
143 * libio/putchar_u.c (putchar_unlocked): Likewise.
144 * libio/putwchar.c (putchar): Likewise.
145 * libio/putwchar_u.c (putwchar_unlocked): Likewise.
146 * libio/tst-bz24051.c: New test.
147 * libio/Makefile (tests): Add tst-bz24051
149 2019-01-31 Paul Eggert <eggert@cs.ucla.edu>
151 regex: fix read overrun [BZ #24114]
152 Problem found by AddressSanitizer, reported by Hongxu Chen in:
153 https://debbugs.gnu.org/34140
154 * posix/regexec.c (proceed_next_node):
155 Do not read past end of input buffer.
157 2019-01-31 Florian Weimer <fweimer@redhat.com>
160 * nss/nss_files/files-alias.c (get_next_alias): Handle
161 continuation line without newline at the end.
162 * nss/tst-nss-files-alias-truncated.c: New file.
163 * nss/Makefile [$(build-shared)] (tests): Add
164 tst-nss-files-alias-truncated.
165 (tst-nss-files-alias-truncated): Link with libnss_files.so.
166 * support/namespace.h (struct support_chroot_configuration): Add
168 (struct support_chroot): Add path_aliases member.
169 * support/support_chroot.c (support_chroot_create): Handle
171 (support_chroot_free): Free path_aliases.
173 2019-01-31 Siddhesh Poyarekar <siddhesh@sourceware.org>
175 * version.h (RELEASE): Set to "development".
176 (VERSION): Set to "2.29.9000".
177 * NEWS: Add section for 2.30.
179 * version.h (RELEASE): Set to "stable".
180 (VERSION): Set to "2.29".
181 * include/features.h (__GLIBC_MINOR__): Set to 2.29.
183 * NEWS: Add the list of bugs fixed in 2.29.
184 * manual/contrib.texi: Update contributors list with some more
186 * manual/install.texi: Update latest versions of packages
188 * INSTALL: Regenerated.
190 2019-01-25 Siddhesh Poyarekar <siddhesh@sourceware.org>
192 * po/be.po: Update translations.
193 * po/bg.po: Likewise.
194 * po/ca.po: Likewise.
195 * po/cs.po: Likewise.
196 * po/da.po: Likewise.
197 * po/de.po: Likewise.
198 * po/el.po: Likewise.
199 * po/eo.po: Likewise.
200 * po/es.po: Likewise.
201 * po/fi.po: Likewise.
202 * po/fr.po: Likewise.
203 * po/gl.po: Likewise.
204 * po/hr.po: Likewise.
205 * po/hu.po: Likewise.
206 * po/ia.po: Likewise.
207 * po/id.po: Likewise.
208 * po/it.po: Likewise.
209 * po/ja.po: Likewise.
210 * po/ko.po: Likewise.
211 * po/lt.po: Likewise.
212 * po/nb.po: Likewise.
213 * po/nl.po: Likewise.
214 * po/pl.po: Likewise.
215 * po/pt_BR.po: Likewise.
216 * po/ru.po: Likewise.
217 * po/rw.po: Likewise.
218 * po/sk.po: Likewise.
219 * po/sl.po: Likewise.
220 * po/sv.po: Likewise.
221 * po/tr.po: Likewise.
222 * po/uk.po: Likewise.
223 * po/vi.po: Likewise.
224 * po/zh_CN.po: Likewise.
225 * po/zh_TW.po: Likewise.
227 2019-01-24 Uroš Bizjak <ubizjak@gmail.com>
230 * sysdeps/alpha/remqu.S (__remqu): Add missing restore
231 of $f3 register on $y_is_neg path.
233 2019-01-24 Samuel Thibault <samuel.thibault@ens-lyon.org>
236 * hurd/hurdsig.c (_hurd_thread_sigstate): Set SS_DISABLE in
237 sigaltstack.ss_flags.
239 2019-01-24 TAMUKI Shoichi <tamuki@linet.gr.jp>
242 * manual/time.texi (strftime): Document "%Ey".
243 * time/strftime_l.c (__strftime_internal): Set the default width
244 padding with zero of "%Ey" to 2.
247 * manual/time.texi (strftime): Document "%EC" and "%EY".
248 * time/Makefile (tests): Add tst-strftime2.
249 (LOCALES): Add ja_JP.UTF-8, lo_LA.UTF-8, and th_TH.UTF-8.
250 * time/strftime_l.c (__strftime_internal): Add argument yr_spec to
251 override padding for "%Ey".
252 If an optional flag ('_' or '-') is specified to "%EY", interpret the
253 "%Ey" in the subformat as if decorated with that flag.
254 * time/tst-strftime2.c: New file.
256 2019-01-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
258 * support/xsigstack.c (MAP_NORESERVE, MAP_STACK): Define if they
262 * elf/Makefile (tests): Add tst-audit13.
263 (modules-names): Add tst-audit13mod1.
264 (tst-audit13.out, LDFLAGS-tst-audit13mod1.so, tst-audit13-ENV): New
266 * elf/rtld.c (dl_main): Handle invalid audit module version.
267 * elf/tst-audit13.c: New file.
268 * elf/tst-audit13mod1.c: Likewise.
270 2019-01-22 Samuel Thibault <samuel.thibault@ens-lyon.org>
272 * sysdeps/mach/hurd/faccessat.c (__faccessat_common): Check for errors
273 returned by __hurd_at_flags.
274 * hurd/lookup-at.c (__file_name_lookup_at): When at_flags contains
275 AT_EMPTY_PATH, call __dir_lookup and __hurd_file_name_lookup_retry
276 directly instead of __hurd_file_name_lookup.
278 2019-01-21 Joseph Myers <joseph@codesourcery.com>
280 * scripts/build-many-glibcs.py (Context.checkout): Default
281 binutils version to 2.32 branch.
283 2019-01-21 Florian Weimer <fweimer@redhat.com>
287 resolv: Reject trailing characters in host names
288 * include/arpa/inet.h (__inet_aton_exact): Declare.
289 (inet_aton): Remove hidden prototype. No longer used internally.
290 * nscd/gai.c (__inet_aton): Do not define.
291 * nscd/gethstbynm3_r.c (__inet_aton): Likewise.
292 * nss/digits_dots.c (__inet_aton): Likewise.
293 (__nss_hostname_digits_dots_context): Call __inet_aton_exact.
294 * resolv/Makefile (tests-internal): Add tst-inet_aton_exact.
295 (tests): Add tst-resolv-nondecimal, tst-resolv-trailing.
296 (tst-resolv-nondecimal): Link with libresolv.so and libpthread.
297 (tst-resolv-trailing): Likewise.
298 * resolv/Versions (GLIBC_PRIVATE): Export __inet_aton_exact from
300 * resolv/inet_addr.c (inet_aton_end): Remame from __inet_aton.
301 Make static. Add endp parameter.
302 (__inet_aton_exact): New function.
303 (__inet_aton_ignore_trailing): New function, aliased to inet_aton.
304 (__inet_addr): Call inet_aton_end.
305 * resolv/res_init.c (res_vinit_1): Truncate nameserver for IPv4,
306 not just IPv6. Call __inet_aton_exact.
307 * resolv/tst-aton.c: Switch to <support/test-driver.c>.
308 (tests): Make const. Add additional test cases with trailing
310 (do_test): Use array_length.
311 * resolv/tst-inet_aton_exact.c: New file.
312 * resolv/tst-resolv-trailing.c: Likewise.
313 * resolv/tst-resolv-nondecimal.c: Likewise.
314 * sysdeps/posix/getaddrinfo.c (gaih_inet): Call __inet_aton_exact.
316 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
320 * sysdeps/x86_64/multiarch/strlen-avx2.S: Use RSI_LP for length.
321 Clear the upper 32 bits of RSI register.
322 * sysdeps/x86_64/strlen.S: Use RSI_LP for length.
323 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-strnlen
324 and tst-size_t-wcsnlen.
325 * sysdeps/x86_64/x32/tst-size_t-strnlen.c: New file.
326 * sysdeps/x86_64/x32/tst-size_t-wcsnlen.c: Likewise.
328 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
332 * sysdeps/x86_64/multiarch/strcpy-avx2.S: Use RDX_LP for length.
333 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
334 * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
335 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-strncpy.
336 * sysdeps/x86_64/x32/tst-size_t-strncpy.c: New file.
338 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
342 * sysdeps/x86_64/multiarch/strcmp-avx2.S: Use RDX_LP for length.
343 * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
344 * sysdeps/x86_64/strcmp.S: Likewise.
345 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-strncasecmp,
346 tst-size_t-strncmp and tst-size_t-wcsncmp.
347 * sysdeps/x86_64/x32/tst-size_t-strncasecmp.c: New file.
348 * sysdeps/x86_64/x32/tst-size_t-strncmp.c: Likewise.
349 * sysdeps/x86_64/x32/tst-size_t-wcsncmp.c: Likewise.
351 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
355 * sysdeps/x86_64/multiarch/memset-avx512-no-vzeroupper.S: Use
356 RDX_LP for length. Clear the upper 32 bits of RDX register.
357 * sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S: Likewise.
358 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-wmemset.
359 * sysdeps/x86_64/x32/tst-size_t-memset.c: New file.
360 * sysdeps/x86_64/x32/tst-size_t-wmemset.c: Likewise.
362 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
366 * sysdeps/x86_64/memrchr.S: Use RDX_LP for length.
367 * sysdeps/x86_64/multiarch/memrchr-avx2.S: Likewise.
368 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-memrchr.
369 * sysdeps/x86_64/x32/tst-size_t-memrchr.c: New file.
371 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
375 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Use RDX_LP for
376 length. Clear the upper 32 bits of RDX register.
377 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
378 * sysdeps/x86_64/multiarch/memmove-avx512-no-vzeroupper.S:
380 * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S:
382 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-memcpy.
384 * sysdeps/x86_64/x32/tst-size_t-memcpy.c: New file.
386 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
390 * sysdeps/x86_64/multiarch/memcmp-avx2-movbe.S: Use RDX_LP for
391 length. Clear the upper 32 bits of RDX register.
392 * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
393 * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
394 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-memcmp and
396 * sysdeps/x86_64/x32/tst-size_t-memcmp.c: New file.
397 * sysdeps/x86_64/x32/tst-size_t-wmemcmp.c: Likewise.
399 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
403 * sysdeps/x86_64/memchr.S: Use RDX_LP for length. Clear the
404 upper 32 bits of RDX register.
405 * sysdeps/x86_64/multiarch/memchr-avx2.S: Likewise.
406 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-memchr and
408 * sysdeps/x86_64/x32/test-size_t.h: New file.
409 * sysdeps/x86_64/x32/tst-size_t-memchr.c: Likewise.
410 * sysdeps/x86_64/x32/tst-size_t-wmemchr.c: Likewise.
412 2019-01-18 Florian Weimer <fweimer@redhat.com>
415 resolv: Do not send queries for non-host-names in nss_dns.
416 * resolv/nss_dns/dns-host.c (check_name): New function.
417 (_nss_dns_gethostbyname2_r): Use it.
418 (_nss_dns_gethostbyname_r): Likewise.
419 (_nss_dns_gethostbyname4_r): Likewise.
421 2019-01-21 Florian Weimer <fweimer@redhat.com>
423 * resolv/inet_addr.c: Reformat to GNU style.
424 (__inet_addr, __inet_aton): Update comment.
426 2019-01-18 Florian Weimer <fweimer@redhat.com>
428 malloc: Revert commit 6923f6db1e688dedcf3a6556da76e0bf24a41872
429 ("malloc: Use current (C11-style) atomics for fastbin access").
430 This commit introduces a substantial performance regression on
432 * malloc/malloc.c (fastbin_push_entry, fastbin_pop_entry): Remove.
434 (_int_malloc): Use it and reindent.
435 (_int_free): Use CAS loop with
436 catomic_compare_and_exchange_val_rel.
437 (malloc_consolidate): Use atomic_exchange_acq.
440 2019-01-18 H.J. Lu <hongjiu.lu@intel.com>
442 * signal/Makefile (LDFLAGS-tst-minsigstksz-1): New. Set to
444 (LDFLAGS-tst-minsigstksz-2): Likewise.
445 (LDFLAGS-tst-minsigstksz-3): Likewise.
446 (LDFLAGS-tst-minsigstksz-3a): Likewise.
447 (LDFLAGS-tst-minsigstksz-4): Likewise.
449 2019-01-18 TAMUKI Shoichi <tamuki@linet.gr.jp>
451 * manual/time.texi (strftime): Fix the wording to "alternative" rather
454 2019-01-16 Paul A. Clarke <pc@us.ibm.com>
456 * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: Fix #ifdef.
458 2019-01-16 Zack Weinberg <zackw@panix.com>
460 * support/xsignal.h (xalloc_sigstack, xfree_sigstack)
461 (xget_sigstack_location): New test support functions.
462 * support/xsigstack.c: New file, implementing them.
463 * support/tst-xsigstack.c: New test for them.
464 * support/Makefile: Update.
466 * signal/tst-minsigstksz-1.c
467 * signal/tst-minsigstksz-2.c
468 * signal/tst-minsigstksz-3.c
469 * signal/tst-minsigstksz-3a.c
470 * signal/tst-minsigstksz-4.c: New tests.
471 * signal/Makefile: Run them.
473 2019-01-16 Siddhesh Poyarekar <siddhesh@sourceware.org>
475 * po/libc.pot: Regenerate.
477 2019-01-15 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
479 * math/libm-test-fma.inc (fma_test_data): Set
480 XFAIL_ROUNDING_IBM128_LIBGCC to more tests.
482 2019-01-15 Rogerio A. Cardoso <rcardoso@linux.ibm.com>
484 * sysdeps/powerpc/powerpc64/tst-ucontext-ppc64-vscr.c:
485 (do_test): Changed __vector __int128_t to __vector unsigned int.
487 2019-01-14 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
489 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
490 strcat-avx2, strncat-avx2, strcpy-avx2, strncpy-avx2,
491 stpcpy-avx2 and stpncpy-avx2.
492 * sysdeps/x86_64/multiarch/ifunc-impl-list.c:
493 (__libc_ifunc_impl_list): Add tests for __strcat_avx2,
494 __strncat_avx2, __strcpy_avx2, __strncpy_avx2, __stpcpy_avx2
496 * sysdeps/x86_64/multiarch/{ifunc-unaligned-ssse3.h =>
497 ifunc-strcpy.h}: rename header for a more generic name.
498 * sysdeps/x86_64/multiarch/ifunc-strcpy.h:
499 (IFUNC_SELECTOR): Return OPTIMIZE (avx2) on AVX 2 machines if
500 AVX unaligned load is fast and vzeroupper is preferred.
501 * sysdeps/x86_64/multiarch/stpcpy-avx2.S: New file.
502 * sysdeps/x86_64/multiarch/stpncpy-avx2.S: Likewise.
503 * sysdeps/x86_64/multiarch/strcat-avx2.S: Likewise.
504 * sysdeps/x86_64/multiarch/strcpy-avx2.S: Likewise.
505 * sysdeps/x86_64/multiarch/strncat-avx2.S: Likewise.
506 * sysdeps/x86_64/multiarch/strncpy-avx2.S: Likewise.
508 2019-01-12 Dmitry V. Levin <ldv@altlinux.org>
510 * argp/argp-help.c: Fix typo in comment.
511 * misc/sys/cdefs.h: Likewise.
512 * posix/regexec.c (sift_states_iter_mb): Likewise.
513 * socket/sockatmark.c: Likewise.
514 * socket/sys/socket.h: Likewise.
515 * sysdeps/ia64/fpu/libm_sincos_large.S: Likewise.
516 * sysdeps/ia64/fpu/libm_sincosl.S: Likewise.
517 * sysdeps/ia64/fpu/s_cosl.S: Likewise.
518 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
519 * sysdeps/unix/sockatmark.c: Likewise.
520 * time/strptime_l.c: Likewise.
522 2019-01-11 TAMUKI Shoichi <tamuki@linet.gr.jp>
524 * time/strftime_l.c (__strftime_internal): Use "L_" macros, also add a
525 missing space after the cast of "_NL_CURRENT".
527 2019-01-11 Rogerio A. Cardoso <rcardoso@linux.ibm.com>
529 * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h (vscr_t): Added
530 ifdef to fix read of VSCR.
531 * sysdeps/powerpc/powerpc64/Makefile [$subdir == stdlib]: Add
532 tst-ucontext-ppc64-vscr.c to test list.
533 * sysdeps/powerpc/powerpc64/tst-ucontext-ppc64-vscr.c: New test file.
535 2019-01-10 Andreas K. Hüttel <dilfridge@gentoo.org>
537 * resolv/tst-resolv-ai_idn-common.c (response): Avoid switch
540 2019-01-09 Jim Wilson <jimw@sifive.com>
542 * sysdeps/riscv/rv64/rvd/libm-test-ulps: Update.
544 2019-01-09 Wilco Dijkstra <wdijkstr@arm.com>
546 * manual/tunables.texi (glibc.cpu.name): Add ares tunable.
547 * sysdeps/aarch64/multiarch/memcpy.c (__libc_memcpy): Use
548 __memcpy_falkor for ares.
549 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h (IS_ARES):
551 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (cpu_list):
554 2019-01-07 H.J. Lu <hongjiu.lu@intel.com>
557 * soft-fp/extenddftf2.c: Use "_FP_W_TYPE_SIZE < 64" to check if
558 4_FP_W_TYPEs are used for IEEE quad precision.
559 * soft-fp/extendhftf2.c: Likewise.
560 * soft-fp/extendsftf2.c: Likewise.
561 * soft-fp/extendxftf2.c: Likewise.
562 * soft-fp/trunctfdf2.c: Likewise.
563 * soft-fp/trunctfhf2.c: Likewise.
564 * soft-fp/trunctfsf2.c: Likewise.
565 * soft-fp/trunctfxf2.c: Likewise.
566 * sysdeps/alpha/ots_cvttx.c: Likewise.
567 * sysdeps/alpha/ots_cvtxt.c: Likewise.
568 * sysdeps/ieee754/soft-fp/s_daddl.c: Likewise.
569 * sysdeps/ieee754/soft-fp/s_ddivl.c: Likewise.
570 * sysdeps/ieee754/soft-fp/s_dmull.c: Likewise.
571 * sysdeps/ieee754/soft-fp/s_dsubl.c: Likewise.
572 * sysdeps/ieee754/soft-fp/s_faddl.c: Likewise.
573 * sysdeps/ieee754/soft-fp/s_fdivl.c: Likewise.
574 * sysdeps/ieee754/soft-fp/s_fmull.c: Likewise.
575 * sysdeps/ieee754/soft-fp/s_fsubl.c: Likewise.
576 * sysdeps/sparc/sparc32/q_dtoq.c: Likewise.
577 * sysdeps/sparc/sparc32/q_qtod.c: Likewise.
578 * sysdeps/sparc/sparc32/q_qtos.c: Likewise.
579 * sysdeps/sparc/sparc32/q_stoq.c: Likewise.
580 * sysdeps/sparc/sparc64/qp_dtoq.c: Likewise.
581 * sysdeps/sparc/sparc64/qp_qtod.c: Likewise.
582 * sysdeps/sparc/sparc64/qp_qtos.c: Likewise.
583 * sysdeps/sparc/sparc64/qp_stoq.c: Likewise.
585 2019-01-07 Aurelien Jarno <aurelien@aurel32.net>
588 * Makeconfig: Build libm with -fno-math-errno but build the remaining
589 code with -fmath-errno.
590 * string/Makefile [$(build-shared)] (tests): Add test-strerror-errno.
591 [$(build-shared)] (LDLIBS-test-strerror-errno): New variable.
592 * string/test-strerror-errno.c: New file.
594 2019-01-07 Aurelien Jarno <aurelien@aurel32.net>
597 * localedata/locales/en_US (date_fmt): Add, set to
600 2019-01-07 Florian Weimer <fweimer@redhat.com>
603 * manual/arith.texi (Math Error Reporting): Use @code{errno}
604 instead of @var{errno}.
605 (Parsing of Integers): Likewise.
606 (Parsing of Floats): Likewise.
607 * manual/filesys.texi (Working with Directory Trees): Likewise.
608 (Temporary Files): Likewise.
609 * manual/job.texi (Terminal Access Functions): Likewise.
610 * manual/llio.texi (Synchronizing I/O): Likewise.
611 * manual/math.texi (SVID Random): Likewise.
612 * manual/message.texi (The catgets Functions): Likewise.
613 (Translation with gettext): Likewise.
614 (Locating gettext catalog): Likewise.
615 (Charset conversion in gettext): Likewise.
616 * manual/nss.texi (NSS Module Function Internals): Likewise.
617 * manual/search.texi (Hash Search Function): Likewise.
618 * manual/setjmp.texi (System V contexts): Likewise.
619 * manual/time.texi (Sleeping): Likewise.
620 * manual/users.texi (Lookup User): Likewise.
621 (Lookup Group): Likewise.
623 2019-01-05 Adhemerval Zanella <adhemerval.zanella@linaro.org>
625 * posix/tst-spawn.c (do_test): Extend spargv to new required size and
628 2019-01-04 Martin Jansa <Martin.Jansa@gmail.com>
631 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn): Use
632 __builtin_unreachable for default case in switch.
633 (__ieee754_yn): Likewise.
634 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl): Likewise.
635 (__ieee754_ynl): Likewise.
636 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_jnl): Likewise.
637 (__ieee754_ynl): Likewise.
638 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
639 (__ieee754_ynl): Likewise.
641 2019-01-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
643 * manual/maint.texi: Use @{ and @}.
645 2019-01-04 Florian Weimer <fweimer@redhat.com>
647 * sysdeps/unix/sysv/linux/tst-ttyname.c (adjust_file_limit): New
649 (do_in_chroot_1): Call it.
651 Improve error reporting in case it is not possible to create a
652 collision for the PTY name required by the test.
654 2019-01-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
656 * nptl/pthread_join_common.c (__pthread_timedjoin_ex): Use
657 lll_wait_tid with timeout.
658 * nptl/sem_wait.c (__old_sem_wait): Use lll_futex_wait_cancel.
659 * sysdeps/nptl/aio_misc.h (AIO_MISC_WAIT): Use
660 futex_reltimed_wait_cancelable for cancelabla mode.
661 * sysdeps/nptl/gai_misc.h (GAI_MISC_WAIT): Likewise.
662 * sysdeps/posix/open64.c (__libc_open64): Do not call cancelation
664 * sysdeps/posix/sigwait.c (__sigwait): Likewise.
665 * sysdeps/posix/waitid.c (__sigwait): Likewise.
666 * sysdeps/unix/sysdep.h (__SYSCALL_CANCEL_CALL,
667 SYSCALL_CANCEL_NCS): New macro.
668 * sysdeps/nptl/lowlevellock.h (lll_wait_tid): Add timeout argument.
669 (lll_timedwait_tid): Remove macro.
670 * sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_wait_tid):
672 (lll_timedwait_tid): Likewise.
673 * sysdeps/unix/sysv/linux/sparc/lowlevellock.h (lll_wait_tid):
675 (lll_timedwait_tid): Likewise.
676 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (lll_wait_tid):
678 (lll_timedwait_tid): Likewise.
679 * sysdeps/unix/sysv/linux/clock_nanosleep.c (__clock_nanosleep):
680 Use INTERNAL_SYSCALL_CANCEL.
681 * sysdeps/unix/sysv/linux/futex-internal.h
682 (futex_reltimed_wait_cancelable): Use LIBC_CANCEL_{ASYNC,RESET}
683 instead of __pthread_{enable,disable}_asynccancel.
684 * sysdeps/unix/sysv/linux/lowlevellock-futex.h
685 (lll_futex_wait_cancel): New macro.
687 * sysdeps/i386/nptl/tls.h (THREAD_ATOMIC_CMPXCHG_VAL,
688 THREAD_ATOMIC_AND, THREAD_ATOMIC_BIT_SET): Remove macros.
690 * sysdeps/x86_64/nptl/tls.h (THREAD_ATOMIC_CMPXCHG_VAL,
691 THREAD_ATOMIC_AND, THREAD_ATOMIC_BIT_SET): Remove macros.
693 * debug/tst-backtrace5.c (handle_signal): Avoid cancellable wrappers
694 in backtrace analysis.
695 * nptl/tst-cancel4.c (tf_write): Handle cancelled syscall with
699 * io/creat.c (LIBC_CANCEL_HANDLED): Remove macro.
700 * io/ppoll.c (LIBC_CANCEL_HANDLED): Likewise.
701 * misc/pselect.c (LIBC_CANCEL_HANDLED): Likewise.
702 * nptl/pthreadP.h (LIBC_CANCEL_HANDLED): Likewise.
703 * sysdeps/generic/sysdep-cancel.h (LIBC_CANCEL_HANDLED): Likewise.
704 * sysdeps/mach/hurd/sysdep-cancel.h (LIBC_CANCEL_HANDLED): Likewise.
705 * sysdeps/posix/pause.c (LIBC_CANCEL_HANDLED): Likewise.
706 * sysdeps/posix/sigpause.c (LIBC_CANCEL_HANDLED): Likewise.
707 * sysdeps/unix/sysv/linux/creat.c (LIBC_CANCEL_HANDLED): Likewise.
708 * sysdeps/unix/sysv/linux/creat64.c (LIBC_CANCEL_HANDLED): Likewise.
709 * sysdeps/unix/sysv/linux/sigwait.c (LIBC_CANCEL_HANDLED): Likewise.
710 * sysdeps/unix/sysv/linux/sigwaitinfo.c (LIBC_CANCEL_HANDLED):
712 * nptl/Makefile [$(run-built-tests) = yes] (tests-special): Remove
713 tst-cancel-wrappers.sh.
714 (generated): Remove tst-cancel-wrappers.out.
715 (tst-cancel-wrappers.out): Remove rule.
716 * nptl/tst-cancel-wrappers.sh: Remove file.
718 2019-01-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
720 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h: Add comment.
721 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c (_DL_HWCAP_COUNT):
724 2019-01-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
727 * posix/tst-spawn.c (do_prepare, handle_restart, do_test): Add
728 posix_spawn_file_actions_adddup2 test to check O_CLOCEXEC reset.
729 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Add
730 close-on-exec reset for adddup2 file action.
731 * sysdeps/posix/spawni.c (__spawni_child): Likewise.
733 2019-01-03 Zack Weinberg <zackw@panix.com>
735 * include/features.h (__GLIBC_USE_DEPRECATED_SCANF): New __GLIBC_USE
736 parameter. Only use deprecated scanf when __USE_GNU is defined
737 and __STDC_VERSION__ is less than 199901L or __cplusplus is less
738 than 201103L, whichever is relevant for the language being compiled.
740 * libio/stdio.h, libio/bits/stdio-ldbl.h: Decide whether to redirect
741 scanf, fscanf, sscanf, vscanf, vfscanf, and vsscanf to their
742 __isoc99_ variants based only on __GLIBC_USE (DEPRECATED_SCANF).
743 * wcsmbs/wchar.h: wcsmbs/bits/wchar-ldbl.h: Likewise for
744 wscanf, fwscanf, swscanf, vwscanf, vfwscanf, and vswscanf.
753 * stdio-common/fscanf.c
754 * stdio-common/scanf.c
755 * stdio-common/vfscanf.c
756 * stdio-common/vfwscanf.c
757 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c
758 * sysdeps/ieee754/ldbl-opt/nldbl-fscanf.c
759 * sysdeps/ieee754/ldbl-opt/nldbl-fwscanf.c
760 * sysdeps/ieee754/ldbl-opt/nldbl-iovfscanf.c
761 * sysdeps/ieee754/ldbl-opt/nldbl-scanf.c
762 * sysdeps/ieee754/ldbl-opt/nldbl-sscanf.c
763 * sysdeps/ieee754/ldbl-opt/nldbl-swscanf.c
764 * sysdeps/ieee754/ldbl-opt/nldbl-vfscanf.c
765 * sysdeps/ieee754/ldbl-opt/nldbl-vfwscanf.c
766 * sysdeps/ieee754/ldbl-opt/nldbl-vscanf.c
767 * sysdeps/ieee754/ldbl-opt/nldbl-vsscanf.c
768 * sysdeps/ieee754/ldbl-opt/nldbl-vswscanf.c
769 * sysdeps/ieee754/ldbl-opt/nldbl-vwscanf.c
770 * sysdeps/ieee754/ldbl-opt/nldbl-wscanf.c:
771 Override __GLIBC_USE_DEPRECATED_SCANF to 1.
773 * stdio-common/sscanf.c: Likewise. Remove ldbl_hidden_def for __sscanf.
774 * stdio-common/isoc99_sscanf.c: Add libc_hidden_def for __isoc99_sscanf.
775 * include/stdio.h: Provide libc_hidden_proto for __isoc99_sscanf,
777 [!__GLIBC_USE (DEPRECATED_SCANF)]: Define sscanf as __isoc99_scanf
778 with a preprocessor macro.
780 * stdio-common/bug21.c, stdio-common/scanf14.c:
781 Use %ms instead of %as, %mS instead of %aS, %m[] instead of %a[];
782 remove DIAG_IGNORE_NEEDS_COMMENT for -Wformat.
783 * stdio-common/scanf16.c: Likewise. Add __attribute__ ((format (scanf)))
784 to xscanf, xfscanf, xsscanf.
786 * stdio-common/scanf14a.c: New copy of scanf14.c which still uses
787 %as, %aS, %a[]. Remove DIAG_IGNORE_NEEDS_COMMENT for -Wformat.
788 * stdio-common/scanf16a.c: New copy of scanf16.c which still uses
789 %as, %aS, %a[]. Add __attribute__ ((format (scanf))) to xscanf,
791 * stdio-common/scanf15.c, stdio-common/scanf17.c: No need to
792 override feature selection macros or provide definitions of u_char etc.
793 * stdio-common/Makefile (tests): Add scanf14a and scanf16a.
794 (CFLAGS-scanf15.c, CFLAGS-scanf17.c): Remove.
795 (CFLAGS-scanf14a.c, CFLAGS-scanf16a.c): New. Compile these files
798 2019-01-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
800 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
802 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Remove file.
803 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
804 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
805 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
806 * sysdeps/unix/sysv/linux/bits/termios-misc.h: New file.
807 * sysdeps/unix/sysv/linux/bits/termios.h: Include termios-misc.h.
809 * sysdeps/unix/sysv/linux/powerpc/bits/termios-misc.h: New file.
810 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_MISC]
811 (struct sgtty, struct tchars, struct ltchars, TIOCPKT_DATA,
812 TIOCPKT_FLUSHREAD, TIOCPKT_FLUSHWRITE, TIOCPKT_STOP, TIOCPKT_START,
813 TIOCPKT_NOSTOP, TIOCPKT_DOSTOP, _VINTR, _VQUIT, _VERASE, _VKILL,
814 _VEOF, _VMIN, _VEOL, _VTIME, _VEOL2, _VSWTC): Move to
816 * sysdeps/unix/sysv/linux/powerpc/Makefile [$subdir == misc]
817 (sysdep_headers): Add termios-misc.h.
819 * sysdeps/unix/sysv/linux/bits/termios.h (_IOT_termios): Remove.
820 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
821 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
823 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
825 * sysdeps/unix/sysv/linux/bits/termios-tcflow.h: New file.
826 * sysdeps/unix/sysv/linux/mips/bits/termios-tcflow.h: Likewise.
827 * sysdeps/unix/sysv/linux/bits/termios.h (TCSANOW, TCSADRAIN,
828 TCSAFLUSH): Move to termios-tcflow.h.
829 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
830 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
831 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
832 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
834 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
836 * sysdeps/unix/sysv/linux/bits/termios-c_lflag.h: New file.
837 * sysdeps/unix/sysv/linux/alpha/bits/termios-c_lflag.h: Likewise.
838 * sysdeps/unix/sysv/linux/mips/bits/termios-c_lflag.h: Likewise.
839 * sysdeps/unix/sysv/linux/powerpc/bits/termios-c_lflag.h: Likewise.
840 * sysdeps/unix/sysv/linux/bits/termios.h (ISIG, ISCANON, ECHO, ECHOE,
841 ECHOK, ECHONL, NOFLSH, TOSTOP, IEXTEN): Move to termios-c_lflag.h.
842 [__USE_MISC || (__USE_XOPEN && !__USE_XOPEN2K)] (XCASE): Likewise.
843 [__USE_MISC] (ECHOCTL, ECHOPRT, ECHOKE, FLUSHO, PENDIN, EXTPROC):
845 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
846 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
847 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
848 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
850 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
852 * sysdeps/unix/sysv/linux/bits/termios-c_cflag.h: New file.
853 * sysdeps/unix/sysv/linux/alpha/bits/termios-c_cflag.h: Likewise.
854 * sysdeps/unix/sysv/linux/powerpc/bits/termios-c_cflag.h: Likewise.
855 * sysdeps/unix/sysv/linux/bits/termios.h (CSIZE, CS5, CS6, CS7, CS8,
856 CSTOPB, CREAD, PARENB, PARODD, HUPCL, CLOCAL): Move to
858 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
859 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
860 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
861 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
864 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
866 * sysdeps/unix/sysv/linux/bits/termios-baud.h: New file.
867 * sysdeps/unix/sysv/linux/alpha/bits/termios-baud.h: Likewise.
868 * sysdeps/unix/sysv/linux/powerpc/bits/termios-baud.h: Likewise.
869 * sysdeps/unix/sysv/linux/sparc/bits/termios-baud.h: Likewise.
870 * sysdeps/unix/sysv/linux/alpha/bits/termios.h (B57600, B115200,
871 B230400, B460800, B500000, B576000, B921600, B1000000, B1152000,
872 B1500000, B2000000, B2500000, B3000000, B3500000, B4000000,
873 __MAX_BAUD): Move to termios-baud.h.
874 [__USE_MISC] (CBAUD, CBAUDEX): Likewise.
875 * sysdeps/unix/sysv/linux/bits/termios.h: Likewise.
876 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
877 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
878 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
880 * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add
882 * sysdeps/unix/sysv/linux/bits/termios-c_oflag.h: New file.
883 * sysdeps/unix/sysv/linux/alpha/bits/termios-c_oflag.h: Likewise.
884 * sysdeps/unix/sysv/linux/powerpc/bits/termios-c_oflag.h: Likewise.
885 * sysdeps/unix/sysv/linux/sparc/bits/termios-c_oflag.h: Likewise.
886 * sysdeps/unix/sysv/linux/bits/termios.h (OPOST, OLCUC, ONLCR, OCRNL,
887 ONOCR, ONLRET, OFILL, OFDEL, VTDLY, VT0, VT1): Move to
889 [__USE_MISC || __USE_XOPEN] (NLDLY, NL0, NL1, CRDLY, CR0, CR1, CR2,
890 CR3, TABDLY, TAB0, TAB1, TAB2, TAB3, BSDLY, BS0, BS1, FFDLY, FF0,
892 [USE_MISC] (XTABS): Likewise.
893 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
894 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
895 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
896 * sysdeps/unix/sysv/linux/sparc/bits/termios.h Likewise.
898 * sysdeps/unix/sysv/linux/Makefile (sysdeps_headers): Add
900 * sysdeps/unix/sysv/linux/bits/termios-c_iflag.h: New file.
901 * sysdeps/unix/sysv/linux/alpha/bits/termios-c_iflag.h: Likewise.
902 * sysdeps/unix/sysv/linux/powerpc/bits/termios-c_iflag.h: Likewise.
903 * sysdeps/unix/sysv/linux/bits/termios.h (IGNBRK, BRKINT, IGNPAR, PARMRK,
904 INPCK, ISTRIP, INLCR, IGNCR, ICRNL, IXON, IXOFF, IXANY, IUCLC, IMAXBEL,
905 IUTF8): Move to termios-c_iflag.h.
906 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
907 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
908 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
909 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
911 * sysdeps/unix/sysv/linux/Makefile (sysdeps_headers): Add
913 * sysdeps/unix/sysv/linux/bits/termios-c_cc.h: Likewise.
914 * sysdeps/unix/sysv/linux/alpha/bits/termios-c_cc.h: New file.
915 * sysdeps/unix/sysv/linux/mips/bits/termios-c_cc.h: Likewise.
916 * sysdeps/unix/sysv/linux/powerpc/bits/termios-c_cc.h: Likewise.
917 * sysdeps/unix/sysv/linux/sparc/bits/termios-c_cc.h: Likewise.
918 * sysdeps/unix/sysv/linux/bits/termios.h (VINTR, VQUIT, VERASE,
919 VKILL, VEOF, VTIME, VMIN, VSWTC, VSTART, VSTOP, VSUSP, VEOL,
920 VREPRINT, VDISCARD, VWERASE, VLNEXT, VEOLF2): Move to termios-cc.h.
921 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
922 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
923 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
924 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
926 * sysdeps/unix/sysv/linux/alpha/bits/termios-struct.h: New file.
927 * sysdeps/unix/sysv/linux/bits/termios-struct.h: Likewise.
928 * sysdeps/unix/sysv/linux/mips/bits/termios-struct.h: Likewise.
929 * sysdeps/unix/sysv/linux/sparc/bits/termios-struct.h: Likewise.
930 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
932 * sysdeps/unix/sysv/linux/bits/termios.h (struct termios): Move to
934 * sysdeps/unix/sysv/linux/alpha/bits/termios.h (struct termios):
936 * sysdeps/unix/sysv/linux/mips/bits/termios.h (struct termios):
938 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h (struct termios):
940 * sysdeps/unix/sysv/linux/sparc/bits/termios.h (struct termios):
942 * sysdeps/unix/sysv/linux/kernel_termios.h (_HAVE_C_ISPEED,
943 _HAVE_C_OSPEED): Define.
944 * sysdeps/unix/sysv/linux/mips/kernel_termios.h (_HAVE_C_ISPEED,
945 _HAVE_C_OSPEED): Likewise.
946 * sysdeps/unix/sysv/linux/sparc/kernel_termios.h (_HAVE_C_ISPEED,
947 _HAVE_C_OSPEED): Likewise.
948 * sysdeps/unix/sysv/linux/speed.c [_HAVE_STRUCT_TERMIOS_C_OSPEED]
949 (cfsetospeed): Check for define value instead of existence.
950 [_HAVE_STRUCT_TERMIOS_C_ISPEED] (cfsetispeed): Likewise.
951 * sysdeps/unix/sysv/linux/tcgetattr.c [_HAVE_STRUCT_TERMIOS_C_ISPEED
952 && _HAVE_C_ISPEED] (__tcgetattr): Likewise.
953 * sysdeps/unix/sysv/linux/tcsetattr.c [_HAVE_STRUCT_TERMIOS_C_ISPEED
954 && _HAVE_C_ISPEED] (__tcsetattr): Likewise.
957 * sysdeps/unix/sysv/linux/bits/termios.h [__USE_MISC] (TIOCSER_TEMT):
959 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_MISC]
960 (TIOCSER_TEMT): Likewise.
961 * sysdeps/unix/sysv/linux/sparc/bits/termios.h [__USE_MISC]
962 (TEOCSER_TEMT): Likewise.
964 2019-01-02 PanderMusubi <pander@users.sourceforge.net>
967 * localedata/locales/bs_BA (LC_TELEPHONE): Fix a typo in comment.
969 2019-01-02 Joseph Myers <joseph@codesourcery.com>
971 * sysdeps/powerpc/nofpu/libm-test-ulps: Update.
973 2019-01-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
975 * sysdeps/htl/pt-barrierattr-setpshared.c
976 (pthread_barrierattr_setpshared): Add stub warning.
977 * sysdeps/htl/pt-condattr-setpshared.c
978 (pthread_condattr_setpshared): Likewise.
979 * sysdeps/htl/pt-mutexattr-setpshared.c
980 (pthread_mutexattr_setpshared): Likewise.
981 * sysdeps/htl/pt-rwlockattr-setpshared.c
982 (pthread_rwlockattr_setpshared): Likewise.
983 * sysdeps/mach/hurd/htl/pt-mutexattr-setpshared.c
984 (pthread_mutexattr_setpshared): Likewise.
986 2019-01-02 Joseph Myers <joseph@codesourcery.com>
988 * sysdeps/unix/sysv/linux/tst-mman-consts.py (main): Expect
989 constants to match with Linux 4.20.
991 * sysdeps/mips/mips32/libm-test-ulps: Update.
992 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
994 2019-01-02 Aurelien Jarno <aurelien@aurel32.net>
997 * sysdeps/unix/sysv/linux/arm/atomic-machine.h
998 (__arm_assisted_compare_and_exchange_val_32_acq): Use uint32_t rather
999 than __typeof (...) for the a_ptr variable.
1001 2019-01-02 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
1003 * debug/sprintf_chk.c (___sprintf_chk): Use PRINTF_CHK.
1004 * debug/vsprintf_chk.c (___vsprintf_chk): Likewise.
1005 * libio/Makefile (tests): Add tst-sprintf-ub and
1007 (CFLAGS-tst-sprintf-ub.c): New variable.
1008 (CFLAGS-tst-sprintf-chk-ub.c): Likewise.
1009 * libio/iovsprintf.c (__vsprintf_internal): Only erase the
1010 destination buffer and check for overflows in fortified mode.
1011 * libio/libioP.h (PRINTF_CHK): New macro.
1012 * libio/tst-sprintf-chk-ub.c: New file.
1013 * libio/tst-sprintf-ub.c: Likewise.
1015 2019-01-02 Florian Weimer <fweimer@redhat.com>
1018 * intl/dcigettext.c (DCIGETTEXT): Do not return NULL on asprintf
1021 2019-01-02 Florian Weimer <fweimer@redhat.com>
1023 * nptl/tst-audit-threads.c: Switch to <support/test-driver.c>.
1025 2019-01-01 Joseph Myers <joseph@codesourcery.com>
1027 * sysdeps/unix/sysv/linux/bits/in.h (IPV6_MULTICAST_ALL): New
1030 * sysdeps/unix/sysv/linux/netpacket/packet.h
1031 (PACKET_IGNORE_OUTGOING): New macro.
1033 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_SSBS): New
1036 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
1038 (riscv_flush_icache): New syscall.
1040 * manual/texinfo.tex: Update to version 2018-12-28.17 with
1041 trailing whitespace removed.
1042 * scripts/config.guess: Update to version 2019-01-01.
1043 * scripts/config.sub: Update to version 2019-01-01.
1044 * scripts/move-if-change: Update from gnulib.
1046 * NEWS: Update copyright dates.
1047 * catgets/gencat.c (print_version): Likewise.
1048 * csu/version.c (banner): Likewise.
1049 * debug/catchsegv.sh: Likewise.
1050 * debug/pcprofiledump.c (print_version): Likewise.
1051 * debug/xtrace.sh (do_version): Likewise.
1052 * elf/ldconfig.c (print_version): Likewise.
1053 * elf/ldd.bash.in: Likewise.
1054 * elf/pldd.c (print_version): Likewise.
1055 * elf/sotruss.sh: Likewise.
1056 * elf/sprof.c (print_version): Likewise.
1057 * iconv/iconv_prog.c (print_version): Likewise.
1058 * iconv/iconvconfig.c (print_version): Likewise.
1059 * locale/programs/locale.c (print_version): Likewise.
1060 * locale/programs/localedef.c (print_version): Likewise.
1061 * login/programs/pt_chown.c (print_version): Likewise.
1062 * malloc/memusage.sh (do_version): Likewise.
1063 * malloc/memusagestat.c (print_version): Likewise.
1064 * malloc/mtrace.pl: Likewise.
1065 * manual/libc.texinfo: Likewise.
1066 * nptl/version.c (banner): Likewise.
1067 * nscd/nscd.c (print_version): Likewise.
1068 * nss/getent.c (print_version): Likewise.
1069 * nss/makedb.c (print_version): Likewise.
1070 * posix/getconf.c (main): Likewise.
1071 * scripts/test-installation.pl: Likewise.
1072 * sysdeps/unix/sysv/linux/lddlibc4.c (main): Likewise.
1074 * All files with FSF copyright notices: Update copyright dates
1075 using scripts/update-copyrights.
1076 * locale/programs/charmap-kw.h: Regenerated.
1077 * locale/programs/locfile-kw.h: Likewise.
1079 2018-12-31 Joseph Myers <joseph@codesourcery.com>
1081 * timezone/zdump.c: Update from tzcode 2018i.
1082 * timezone/zic.c: Likewise.
1084 2018-12-31 Paul Eggert <eggert@cs.ucla.edu>
1086 regex: improve Gnulib port to AIX
1087 From the glibc point of view, this removes duplicate macro
1088 definitions and is obviously safe.
1089 From the Gnulib point of view, this pacifies xlc 12.01 on AIX 7.1.
1090 * posix/regex_internal.h:
1091 (__attribute__, __attribute_warn_unused_result__):
1092 Remove; already defined elsewhere.
1094 2018-12-31 Florian Weimer <fw@deneb.enyo.de>
1097 * malloc/malloc.c (_int_realloc): Always call memcpy for the
1098 copying operation. (ncopies had the wrong type, resulting in an
1099 integer wraparound and too few elements being copied.)
1101 2018-12-31 H.J. Lu <hongjiu.lu@intel.com>
1104 * sysdeps/unix/sysv/linux/riscv/flush-icache.c: Check if
1105 <asm/syscalls.h> exists with __has_include__ before including it.
1107 2018-12-31 Joseph Myers <joseph@codesourcery.com>
1109 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
1112 2018-12-28 Justus Winter <4winter@informatik.uni-hamburg.de>
1114 * hurd/lookup-retry: Include <unistd.h>.
1115 (__hurd_file_name_lookup_retry): Keep a ref on last result in `lastdir'.
1116 Release it on return. Handle "pid" magical lookup retry.
1118 2018-12-28 Rafal Luzynski <digitalfreak@lingonborough.com>
1121 * localedata/locales/aa_DJ (t_fmt): Set to "%l:%M:%S %p".
1122 (t_fmt_ampm): Likewise.
1123 * localedata/locales/aa_ER (t_fmt): Likewise.
1124 (t_fmt_ampm): Likewise.
1125 * localedata/locales/aa_ER@saaho (t_fmt): Likewise.
1126 (t_fmt_ampm): Likewise.
1127 * localedata/locales/aa_ET (t_fmt): Likewise.
1128 (t_fmt_ampm): Likewise.
1129 * localedata/locales/am_ET (t_fmt): Likewise.
1130 (t_fmt_ampm): Likewise.
1131 * localedata/locales/byn_ER (t_fmt): Likewise.
1132 (t_fmt_ampm): Likewise.
1133 * localedata/locales/om_ET (t_fmt): Likewise.
1134 (t_fmt_ampm): Likewise.
1135 * localedata/locales/sid_ET (t_fmt): Likewise.
1136 (t_fmt_ampm): Likewise.
1137 * localedata/locales/so_DJ (t_fmt): Likewise.
1138 (t_fmt_ampm): Likewise.
1139 * localedata/locales/so_ET (t_fmt): Likewise.
1140 (t_fmt_ampm): Likewise.
1141 * localedata/locales/so_SO (t_fmt): Likewise.
1142 (t_fmt_ampm): Likewise.
1143 * localedata/locales/ti_ER (t_fmt): Likewise.
1144 (t_fmt_ampm): Likewise.
1145 * localedata/locales/ti_ET (t_fmt): Likewise.
1146 (t_fmt_ampm): Likewise.
1147 * localedata/locales/tig_ER (t_fmt): Likewise.
1148 (t_fmt_ampm): Likewise.
1149 * localedata/locales/wal_ET (t_fmt): Likewise.
1150 (t_fmt_ampm): Likewise.
1152 * localedata/locales/anp_IN (t_fmt): Set to "%I:%M:%S %p %Z".
1153 * localedata/locales/ar_IN (t_fmt): Likewise.
1154 * localedata/locales/bhb_IN (t_fmt): Likewise.
1155 * localedata/locales/bho_IN (t_fmt): Likewise.
1156 * localedata/locales/bi_VU (t_fmt): Likewise.
1157 * localedata/locales/bn_BD (t_fmt): Likewise.
1158 * localedata/locales/bn_IN (t_fmt): Likewise.
1159 * localedata/locales/brx_IN (t_fmt): Likewise.
1160 * localedata/locales/doi_IN (t_fmt): Likewise.
1161 * localedata/locales/en_HK (t_fmt): Likewise.
1162 (t_fmt_ampm): Likewise.
1163 * localedata/locales/en_IN (t_fmt): Likewise.
1164 * localedata/locales/en_PH (t_fmt): Likewise.
1165 * localedata/locales/gu_IN (t_fmt): Likewise.
1166 * localedata/locales/hi_IN (t_fmt): Likewise.
1167 * localedata/locales/hif_FJ (t_fmt): Likewise.
1168 * localedata/locales/hne_IN (t_fmt): Likewise.
1169 * localedata/locales/kn_IN (t_fmt): Likewise.
1170 * localedata/locales/kok_IN (t_fmt): Likewise.
1171 * localedata/locales/ks_IN (t_fmt): Likewise.
1172 * localedata/locales/ks_IN@devanagari (t_fmt): Likewise.
1173 * localedata/locales/mag_IN (t_fmt): Likewise.
1174 * localedata/locales/mai_IN (t_fmt): Likewise.
1175 * localedata/locales/mjw_IN (t_fmt): Likewise.
1176 * localedata/locales/ml_IN (t_fmt): Likewise.
1177 * localedata/locales/mni_IN (t_fmt): Likewise.
1178 * localedata/locales/mr_IN (t_fmt): Likewise.
1179 * localedata/locales/ms_MY (t_fmt): Likewise.
1180 * localedata/locales/pa_IN (t_fmt): Likewise.
1181 * localedata/locales/raj_IN (t_fmt): Likewise.
1182 * localedata/locales/sa_IN (t_fmt): Likewise.
1183 * localedata/locales/sat_IN (t_fmt): Likewise.
1184 * localedata/locales/sd_IN (t_fmt): Likewise.
1185 * localedata/locales/sd_IN@devanagari (t_fmt): Likewise.
1186 * localedata/locales/tcy_IN (t_fmt): Likewise.
1187 * localedata/locales/the_NP (t_fmt): Likewise.
1188 * localedata/locales/to_TO (t_fmt): Likewise.
1189 * localedata/locales/ur_IN (t_fmt): Likewise.
1191 * localedata/locales/hif_FJ (d_t_fmt): Set to
1192 "%A %d %b %Y %I:%M:%S %p".
1193 (date_fmt): Add, set to "%A %d %b %Y %I:%M:%S %p %Z".
1195 * localedata/locales/ar_AE (t_fmt): Set to "%Z %I:%M:%S %p".
1196 * localedata/locales/ar_BH (t_fmt): Likewise.
1197 * localedata/locales/ar_DZ (t_fmt): Likewise.
1198 * localedata/locales/ar_EG (t_fmt): Likewise.
1199 * localedata/locales/ar_IQ (t_fmt): Likewise.
1200 * localedata/locales/ar_JO (t_fmt): Likewise.
1201 * localedata/locales/ar_KW (t_fmt): Likewise.
1202 * localedata/locales/ar_LB (t_fmt): Likewise.
1203 * localedata/locales/ar_LY (t_fmt): Likewise.
1204 * localedata/locales/ar_OM (t_fmt): Likewise.
1205 * localedata/locales/ar_QA (t_fmt): Likewise.
1206 * localedata/locales/ar_SD (t_fmt): Likewise.
1207 * localedata/locales/ar_SS (t_fmt): Likewise.
1208 * localedata/locales/ar_SY (t_fmt): Likewise.
1209 * localedata/locales/ar_TN (t_fmt): Likewise.
1210 * localedata/locales/ar_YE (t_fmt): Likewise.
1212 * localedata/locales/gez_ER (t_fmt): Set to "%l:%M:%S<U1361>%p".
1213 (t_fmt_ampm): Likewise.
1214 * localedata/locales/gez_ET (t_fmt): Likewise.
1215 (t_fmt_ampm): Likewise.
1217 * localedata/locales/ta_IN (t_fmt): Set to "%p %I:%M:%S %Z".
1218 (t_fmt_ampm): Likewise.
1219 (d_t_fmt): Set to "%A %d %B %Y %p %I:%M:%S %Z".
1221 * localedata/locales/zh_HK (t_fmt):
1222 Set to "%p %I<U6642>%M<U5206>%S<U79D2> %Z".
1224 * localedata/locales/ar_MA (t_fmt_ampm): Set to "" (empty string)
1225 because this locale does not use the 12-hour clock.
1226 (t_fmt): Set to "%Z %H:%M:%S".
1227 (d_t_fmt): Set to "%d %b, %Y %Z %H:%M:%S".
1229 * localedata/locales/mt_MT (t_fmt_ampm): Set to "" (empty string)
1230 because this locale does not use the 12-hour clock.
1231 (t_fmt): Set to "%H:%M:%S %Z".
1232 (d_t_fmt): Set to "%A, %d ta %b, %Y %H:%M:%S %Z".
1234 * localedata/locales/so_KE (t_fmt_ampm): Set to "" (empty string)
1235 because this locale does not use the 12-hour clock.
1236 (t_fmt): Set to "%T".
1237 (d_t_fmt): Set to "%A, %B %e, %Y %X %Z".
1238 (date_fmt): Set to "%A, %B %e, %X %Z %Y".
1240 * localedata/locales/ta_LK (t_fmt_ampm): Set to "" (empty string)
1241 because this locale does not use the 12-hour clock.
1242 (t_fmt): Set to "%H:%M:%S %Z".
1243 (d_t_fmt): Set to "%A %d %B %Y %H:%M:%S %Z".
1245 * localedata/locales/bg_BG (t_fmt_ampm): Set to "" (empty string)
1246 because this locale does not use the 12-hour clock.
1247 * localedata/locales/cs_CZ (t_fmt_ampm): Likewise.
1248 * localedata/locales/sk_SK (t_fmt_ampm): Likewise.
1250 2018-12-28 Rafal Luzynski <digitalfreak@lingonborough.com>
1254 * localedata/locales/sq_AL (t_fmt): Set to "%I:%M:%S.%p %Z".
1255 (t_fmt_ampm): Likewise.
1256 (d_t_fmt): Set to "%a %-d %b %Y %I:%M:%S.%p".
1257 (date_fmt): Add, set to "%a %-d %b %Y %I:%M:%S.%p %Z".
1258 (d_fmt): Set to "%-d.%-m.%y".
1260 2018-12-28 Adhemerval Zanella <adhemerval.zanella@linaro.org>
1262 * malloc/alloc_buffer_alloc_array.c (__libc_alloc_buffer_alloc_array):
1263 Use __builtin_mul_overflow in place of check_mul_overflow_size_t.
1264 * malloc/dynarray_emplace_enlarge.c (__libc_dynarray_emplace_enlarge):
1266 * malloc/dynarray_resize.c (__libc_dynarray_resize): Likewise.
1267 * malloc/reallocarray.c (__libc_reallocarray): Likewise.
1268 * malloc/malloc-internal.h (check_mul_overflow_size_t): Remove
1270 * support/blob_repeat.c (check_mul_overflow_size_t,
1271 (minimum_stride_size, support_blob_repeat_allocate): Likewise.
1273 2018-12-28 Aurelien Jarno <aurelien@aurel32.net>
1275 * sysdeps/alpha/fpu/libm-test-ulps: Regenerated.
1277 2018-12-27 Paul Eggert <eggert@cs.ucla.edu>
1279 regex: simplify Gnulib port
1280 This simplifies the code, by removing stuff intended for porting
1281 to Gnulib but no longer needed there.
1282 * posix/regcomp.c [!_LIBC]: No need to put #ifdef _LIBC around
1283 uses of libc_hidden_def, weak_alias.
1284 * posix/regcomp.c, posix/regexec.c: Use __restrict rather than
1285 _Restrict_ except for public-facing headers.
1286 * posix/regex_internal.h (attribute_hidden) [!_LIBC]:
1287 Remove; already defined elsewhere.
1288 * posix/regex.c, posix/regex_internal.h:
1289 Use __GNUC_PREREQ instead of rolling our own.
1290 * posix/regex_internal.h (__GNUC_PREREQ): Remove duplicate defn.
1292 2018-12-27 Wilco Dijkstra <wdijkstr@arm.com>
1294 * benchtests/bench-strlen.c (generic_strlen): New function.
1295 (memchr_strlen): New function.
1297 2018-12-26 H.J. Lu <hongjiu.lu@intel.com>
1299 * sysdeps/x86_64/fpu/s_sincosf.S: Removed.
1300 * sysdeps/x86_64/fpu/multiarch/s_sincosf-sse2.S: Likewise.
1301 * sysdeps/x86_64/fpu/multiarch/s_sincosf-sse2.c: New file.
1303 2018-12-26 H.J. Lu <hongjiu.lu@intel.com>
1305 * sysdeps/x86_64/fpu/libm-test-ulps: Regenerated.
1307 2018-12-26 H.J. Lu <hongjiu.lu@intel.com>
1309 * sysdeps/ieee754/flt-32/s_sincosf.h: Include <sincosf_poly.h>.
1310 (sincos_t, sincosf_poly, sinf_poly): Moved to ...
1311 * sysdeps/ieee754/flt-32/sincosf_poly.h: Here. New file.
1312 * sysdeps/x86/fpu/s_sincosf_data.c: New file.
1313 * sysdeps/x86/fpu/sincosf_poly.h: Likewise.
1314 * sysdeps/x86_64/fpu/multiarch/s_sincosf-fma.c: Just include
1315 <sysdeps/ieee754/flt-32/s_sincosf.c>.
1317 2018-12-21 Joseph Myers <joseph@codesourcery.com>
1320 * sysdeps/unix/sysv/linux/nios2/localplt.data: Allow __floatundidf
1321 PLT reference in libc.so.
1322 * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: Allow
1323 _Q_lltoq and _Q_qtod PLT references in libc.so.
1325 2018-12-21 Wilco Dijkstra <wdijkstr@arm.com>
1327 * benchtests/bench-memchr.c: Cleanup defines.
1328 * benchtests/bench-memcmp.c: Likewise.
1329 * benchtests/bench-memset.c: Likewise.
1330 * benchtests/bench-memset-large.c: Likewise.
1331 * benchtests/bench-memset-walk.c: Likewise.
1332 * benchtests/bench-stpcpy.c: Likewise.
1333 * benchtests/bench-stpncpy.c: Likewise.
1334 * benchtests/bench-strcat.c: Likewise.
1335 * benchtests/bench-strchr.c: Likewise.
1336 * benchtests/bench-strcmp.c: Likewise.
1337 * benchtests/bench-strcpy.c: Likewise.
1338 * benchtests/bench-strcspn.c: Likewise.
1339 * benchtests/bench-string.h: Likewise.
1340 * benchtests/bench-strlen.c: Likewise.
1341 * benchtests/bench-strncat.c: Likewise.
1342 * benchtests/bench-strncmp.c: Likewise.
1343 * benchtests/bench-strncpy.c: Likewise.
1344 * benchtests/bench-strnlen.c: Likewise.
1345 * benchtests/bench-strpbrk.c: Likewise.
1346 * benchtests/bench-strrchr.c: Likewise.
1347 * benchtests/bench-strspn.c: Likewise.
1349 2018-12-21 Joseph Myers <joseph@codesourcery.com>
1351 * stdlib/longlong.h: Update from GCC.
1354 * configure.ac (libc_cv_compiler_ok): Require GCC 5 or later.
1355 * configure: Regenerated.
1356 * manual/install.texi (Tools for Compilation): Update minimum GCC
1358 * INSTALL: Regenerated.
1360 2018-12-21 Istvan Kurucsai <pistukem@gmail.com>
1362 * malloc/malloc.c (munmap_chunk): Verify chunk alignment.
1364 2018-12-20 Istvan Kurucsai <pistukem@gmail.com>
1366 * malloc/malloc.c (mremap_chunk): Additional checks.
1368 2018-12-21 Mao Han <han_mao@c-sky.com>
1370 * config.h.in (CSKYABI, CSKY_HARD_FLOAT): New Define.
1371 * scripts/build-many-glibcs.py: Add C-SKY targets.
1372 * sysdeps/csky/Implies: New file.
1373 * sysdeps/csky/Makefile: Likewise.
1374 * sysdeps/csky/abiv2/__longjmp.S: Likewise.
1375 * sysdeps/csky/abiv2/csky-mcount.S: Likewise.
1376 * sysdeps/csky/abiv2/dl-trampoline.S: Likewise.
1377 * sysdeps/csky/abiv2/memcmp.S: Likewise.
1378 * sysdeps/csky/abiv2/memcpy.S: Likewise.
1379 * sysdeps/csky/abiv2/memmove.S: Likewise.
1380 * sysdeps/csky/abiv2/memset.S: Likewise.
1381 * sysdeps/csky/abiv2/setjmp.S: Likewise.
1382 * sysdeps/csky/abiv2/start.S: Likewise.
1383 * sysdeps/csky/abiv2/strcmp.S: Likewise.
1384 * sysdeps/csky/abiv2/strcpy.S: Likewise.
1385 * sysdeps/csky/abiv2/strlen.S: Likewise.
1386 * sysdeps/csky/abiv2/tls-macros.h: Likewise.
1387 * sysdeps/csky/abort-instr.h: Likewise.
1388 * sysdeps/csky/atomic-machine.h: Likewise.
1389 * sysdeps/csky/bits/endian.h: Likewise.
1390 * sysdeps/csky/bits/fenv.h: Likewise.
1391 * sysdeps/csky/bits/link.h: Likewise.
1392 * sysdeps/csky/bits/setjmp.h: Likewise.
1393 * sysdeps/csky/bsd-_setjmp.S: Likewise.
1394 * sysdeps/csky/bsd-setjmp.S: Likewise.
1395 * sysdeps/csky/configure: Likewise.
1396 * sysdeps/csky/configure.ac: Likewise.
1397 * sysdeps/csky/dl-machine.h: Likewise.
1398 * sysdeps/csky/dl-procinfo.c: Likewise.
1399 * sysdeps/csky/dl-procinfo.h: Likewise.
1400 * sysdeps/csky/dl-sysdep.h: Likewise.
1401 * sysdeps/csky/dl-tls.h: Likewise.
1402 * sysdeps/csky/fpu/fclrexcpt.c: Likewise.
1403 * sysdeps/csky/fpu/fedisblxcpt.c: Likewise.
1404 * sysdeps/csky/fpu/feenablxcpt.c: Likewise.
1405 * sysdeps/csky/fpu/fegetenv.c: Likewise.
1406 * sysdeps/csky/fpu/fegetexcept.c: Likewise.
1407 * sysdeps/csky/fpu/fegetmode.c: Likewise.
1408 * sysdeps/csky/fpu/fegetround.c: Likewise.
1409 * sysdeps/csky/fpu/feholdexcpt.c: Likewise.
1410 * sysdeps/csky/fpu/fenv_libc.h: Likewise.
1411 * sysdeps/csky/fpu/fenv_private.h: Likewise.
1412 * sysdeps/csky/fpu/fesetenv.c: Likewise.
1413 * sysdeps/csky/fpu/fesetexcept.c: Likewise.
1414 * sysdeps/csky/fpu/fesetmode.c: Likewise.
1415 * sysdeps/csky/fpu/fesetround.c: Likewise.
1416 * sysdeps/csky/fpu/feupdateenv.c: Likewise.
1417 * sysdeps/csky/fpu/fgetexcptflg.c: Likewise.
1418 * sysdeps/csky/fpu/fix-fp-int-convert-overflow.h: Likewise.
1419 * sysdeps/csky/fpu/fraiseexcpt.c: Likewise.
1420 * sysdeps/csky/fpu/fsetexcptflg.c: Likewise.
1421 * sysdeps/csky/fpu/ftestexcept.c: Likewise.
1422 * sysdeps/csky/fpu/libm-test-ulps: Likewise.
1423 * sysdeps/csky/fpu/libm-test-ulps-name: Likewise.
1424 * sysdeps/csky/fpu_control.h: Likewise.
1425 * sysdeps/csky/gccframe.h: Likewise.
1426 * sysdeps/csky/jmpbuf-unwind.h: Likewise.
1427 * sysdeps/csky/ldsodefs.h: Likewise.
1428 * sysdeps/csky/libc-tls.c: Likewise.
1429 * sysdeps/csky/linkmap.h: Likewise.
1430 * sysdeps/csky/machine-gmon.h: Likewise.
1431 * sysdeps/csky/memusage.h: Likewise.
1432 * sysdeps/csky/nofpu/Implies: Likewise.
1433 * sysdeps/csky/nofpu/libm-test-ulps: Likewise.
1434 * sysdeps/csky/nofpu/libm-test-ulps-name: Likewise.
1435 * sysdeps/csky/nptl/Makefile: Likewise.
1436 * sysdeps/csky/nptl/bits/pthreadtypes-arch.h: Likewise.
1437 * sysdeps/csky/nptl/bits/semaphore.h: Likewise.
1438 * sysdeps/csky/nptl/pthread-offsets.h: Likewise.
1439 * sysdeps/csky/nptl/pthreaddef.h: Likewise.
1440 * sysdeps/csky/nptl/tcb-offsets.sym: Likewise.
1441 * sysdeps/csky/nptl/tls.h: Likewise.
1442 * sysdeps/csky/preconfigure: Likewise.
1443 * sysdeps/csky/sfp-machine.h: Likewise.
1444 * sysdeps/csky/sotruss-lib.c: Likewise.
1445 * sysdeps/csky/stackinfo.h: Likewise.
1446 * sysdeps/csky/sysdep.h: Likewise.
1447 * sysdeps/csky/tininess.h: Likewise.
1448 * sysdeps/csky/tst-audit.h: Likewise.
1449 * sysdeps/unix/sysv/linux/csky/Implies: Likewise.
1450 * sysdeps/unix/sysv/linux/csky/Makefile: Likewise.
1451 * sysdeps/unix/sysv/linux/csky/Versions: Likewise.
1452 * sysdeps/unix/sysv/linux/csky/abiv2/____longjmp_chk.S: Likewise.
1453 * sysdeps/unix/sysv/linux/csky/abiv2/clone.S: Likewise.
1454 * sysdeps/unix/sysv/linux/csky/abiv2/getcontext.S: Likewise.
1455 * sysdeps/unix/sysv/linux/csky/abiv2/setcontext.S: Likewise.
1456 * sysdeps/unix/sysv/linux/csky/abiv2/swapcontext.S: Likewise.
1457 * sysdeps/unix/sysv/linux/csky/abiv2/syscall.S: Likewise.
1458 * sysdeps/unix/sysv/linux/csky/abiv2/sysdep.S: Likewise.
1459 * sysdeps/unix/sysv/linux/csky/abiv2/ucontext_i.sym: Likewise.
1460 * sysdeps/unix/sysv/linux/csky/bits/procfs.h: Likewise.
1461 * sysdeps/unix/sysv/linux/csky/bits/shmlba.h: Likewise.
1462 * sysdeps/unix/sysv/linux/csky/c++-types.data: Likewise.
1463 * sysdeps/unix/sysv/linux/csky/configure: Likewise.
1464 * sysdeps/unix/sysv/linux/csky/configure.ac: Likewise.
1465 * sysdeps/unix/sysv/linux/csky/ipc_priv.h: Likewise.
1466 * sysdeps/unix/sysv/linux/csky/jmp_buf-macros.h: Likewise.
1467 * sysdeps/unix/sysv/linux/csky/kernel-features.h: Likewise.
1468 * sysdeps/unix/sysv/linux/csky/ld.abilist: Likewise.
1469 * sysdeps/unix/sysv/linux/csky/ldconfig.h: Likewise.
1470 * sysdeps/unix/sysv/linux/csky/libBrokenLocale.abilist: Likewise.
1471 * sysdeps/unix/sysv/linux/csky/libanl.abilist: Likewise.
1472 * sysdeps/unix/sysv/linux/csky/libc.abilist: Likewise.
1473 * sysdeps/unix/sysv/linux/csky/libcrypt.abilist: Likewise.
1474 * sysdeps/unix/sysv/linux/csky/libdl.abilist: Likewise.
1475 * sysdeps/unix/sysv/linux/csky/libm.abilist: Likewise.
1476 * sysdeps/unix/sysv/linux/csky/libpthread.abilist: Likewise.
1477 * sysdeps/unix/sysv/linux/csky/libresolv.abilist: Likewise.
1478 * sysdeps/unix/sysv/linux/csky/librt.abilist: Likewise.
1479 * sysdeps/unix/sysv/linux/csky/libthread_db.abilist: Likewise.
1480 * sysdeps/unix/sysv/linux/csky/libutil.abilist: Likewise.
1481 * sysdeps/unix/sysv/linux/csky/localplt.data: Likewise.
1482 * sysdeps/unix/sysv/linux/csky/makecontext.c: Likewise.
1483 * sysdeps/unix/sysv/linux/csky/profil-counter.h: Likewise.
1484 * sysdeps/unix/sysv/linux/csky/pt-vfork.S: Likewise.
1485 * sysdeps/unix/sysv/linux/csky/register-dump.h: Likewise.
1486 * sysdeps/unix/sysv/linux/csky/shlib-versions: Likewise.
1487 * sysdeps/unix/sysv/linux/csky/sigcontextinfo.h: Likewise.
1488 * sysdeps/unix/sysv/linux/csky/sys/cachectl.h: Likewise.
1489 * sysdeps/unix/sysv/linux/csky/sys/ucontext.h: Likewise.
1490 * sysdeps/unix/sysv/linux/csky/sys/user.h: Likewise.
1491 * sysdeps/unix/sysv/linux/csky/syscalls.list: Likewise.
1492 * sysdeps/unix/sysv/linux/csky/sysdep.h: Likewise.
1494 2018-12-18 Albert ARIBAUD <albert.aribaud@3adev.fr>
1496 * include/time.h (__difftime64): Add.
1497 * time/difftime.c (subtract): convert to 64-bit time.
1498 * time/difftime.c (__difftime64): Add.
1499 * time/difftime.c (__difftime): Wrap around __difftime64.
1501 2018-12-20 H.J. Lu <hongjiu.lu@intel.com>
1503 * manual/examples/add.c: Remove redundant "if not".
1504 * manual/examples/argp-ex1.c: Likewise.
1505 * manual/examples/argp-ex2.c: Likewise.
1506 * manual/examples/argp-ex3.c: Likewise.
1507 * manual/examples/argp-ex4.c: Likewise.
1508 * manual/examples/atexit.c: Likewise.
1509 * manual/examples/db.c: Likewise.
1510 * manual/examples/dir.c: Likewise.
1511 * manual/examples/dir2.c: Likewise.
1512 * manual/examples/execinfo.c: Likewise.
1513 * manual/examples/filecli.c: Likewise.
1514 * manual/examples/filesrv.c: Likewise.
1515 * manual/examples/fmtmsgexpl.c: Likewise.
1516 * manual/examples/genpass.c: Likewise.
1517 * manual/examples/inetcli.c: Likewise.
1518 * manual/examples/inetsrv.c: Likewise.
1519 * manual/examples/isockad.c: Likewise.
1520 * manual/examples/longopt.c: Likewise.
1521 * manual/examples/memopen.c: Likewise.
1522 * manual/examples/memstrm.c: Likewise.
1523 * manual/examples/mkdirent.c: Likewise.
1524 * manual/examples/mkfsock.c: Likewise.
1525 * manual/examples/mkisock.c: Likewise.
1526 * manual/examples/mygetpass.c: Likewise.
1527 * manual/examples/pipe.c: Likewise.
1528 * manual/examples/popen.c: Likewise.
1529 * manual/examples/rprintf.c: Likewise.
1530 * manual/examples/search.c: Likewise.
1531 * manual/examples/select.c: Likewise.
1532 * manual/examples/setjmp.c: Likewise.
1533 * manual/examples/sigh1.c: Likewise.
1534 * manual/examples/sigusr.c: Likewise.
1535 * manual/examples/stpcpy.c: Likewise.
1536 * manual/examples/strdupa.c: Likewise.
1537 * manual/examples/strftim.c: Likewise.
1538 * manual/examples/subopt.c: Likewise.
1539 * manual/examples/swapcontext.c: Likewise.
1540 * manual/examples/termios.c: Likewise.
1541 * manual/examples/testopt.c: Likewise.
1542 * manual/examples/testpass.c: Likewise.
1543 * manual/examples/timeval_subtract.c: Likewise.
1545 2018-12-19 Joseph Myers <joseph@codesourcery.com>
1547 * sysdeps/x86/fpu/math_private.h: New file.
1548 * sysdeps/x86/fpu/bits/mathinline.h: Remove.
1550 * sysdeps/x86/fpu/bits/mathinline.h (sinh): Remove inline
1555 2018-12-19 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
1557 * elf/dl-sysdep.c (auxvars): Add AT_L1I_CACHESIZE,
1558 AT_L1I_CACHEGEOMETRY, AT_L1D_CACHESIZE, AT_L1D_CACHEGEOMETRY,
1559 AT_L2_CACHESIZE, AT_L2_CACHEGEOMETRY, AT_L3_CACHESIZE and
1560 AT_L3_CACHEGEOMETRY. Fix indentation when printing the other
1562 (_dl_show_auxv): Give a special treatment to
1563 AT_L1I_CACHEGEOMETRY, AT_L1D_CACHEGEOMETRY, AT_L2_CACHEGEOMETRY
1564 and AT_L3_CACHEGEOMETRY.
1565 * sysdeps/powerpc/dl-procinfo.h (cache_geometry): New function.
1566 (_dl_procinfo): Fix indentation when printing AT_HWCAP and
1567 AT_HWCAP2. Add support for AT_L1I_CACHEGEOMETRY,
1568 AT_L1D_CACHEGEOMETRY, AT_L2_CACHEGEOMETRY and AT_L3_CACHEGEOMETRY.
1570 2018-12-19 Andreas Schwab <schwab@suse.de>
1572 * nscd/connections.c (check_use): Don't abort on invalid len.
1574 2018-12-18 Samuel Thibault <samuel.thibault@ens-lyon.org>
1576 * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Test against 64bit `cmd'
1577 values in the 64bit value cases.
1579 2018-12-18 Albert ARIBAUD <albert.aribaud@3adev.fr>
1585 [__TIMESIZE != 64] (__ctime_r): Turn into a wrapper.
1591 [__TIMESIZE != 64] (ctime): Turn into a wrapper.
1594 (__gmtime64_r): Add.
1596 (__gmtime64_r): Add.
1597 [__TIMESIZE != 64] (__gmtime): Turn into a wrapper.
1603 [__TIMESIZE != 64] (__gmtime): Turn into a wrapper.
1606 (__localtime64_r): Add.
1608 (__localtime64_r): Add.
1609 [__TIMESIZE != 64] (__localtime_r): Turn into a wrapper.
1611 2018-12-18 Adhemerval Zanella <adhemerval.zanella@linaro.org>
1613 * sysdeps/unix/sysv/linux/s390/kernel_sigaction.h: Use Linux generic
1614 kernel_sigction definition.
1616 * sysdeps/unix/sysv/linux/ia64/kernel_sigaction.h: Remove file.
1618 * sysdeps/unix/sysv/linux/hppa/kernel_sigaction.h: Remove file.
1620 * sysdeps/unix/sysv/linux/alpha/Makefile: Update comment about
1621 __syscall_rt_sigaction.
1622 * sysdeps/unix/sysv/linux/alpha/kernel_sigaction.h
1623 (kernel_sigaction): Use Linux generic defintion.
1625 (__syscall_rt_sigreturn, __syscall_sigreturn): Add prototype.
1626 * sysdeps/unix/sysv/linux/alpha/rt_sigaction.S
1627 (__syscall_rt_sigaction): Remove implementation.
1628 (__syscall_sigreturn, __syscall_rt_sigreturn): Define as global and
1630 * sysdeps/unix/sysv/linux/alpha/sigaction.c: Remove file.
1631 * sysdeps/unix/sysv/linux/alpha/sysdep.h (INLINE_SYSCALL,
1632 INTERNAL_SYSCALL): Remove definitions.
1633 * sysdeps/unix/sysv/linux/sigaction.c: Define STUB to accept both the
1634 action and signal set size.
1635 * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c (STUB): Redefine.
1636 * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c (STUB): Likewise.
1638 2018-12-18 Adhemerval Zanella <adhemerval.zanella@linaro.org>
1639 James Clarke <jrtc27@jrtc27.com>
1642 * sysdeps/unix/sysv/linux/kernel_sigaction.h (HAS_SA_RESTORER):
1643 Define if SA_RESTORER is defined.
1644 (kernel_sigaction): Define sa_restorer if HAS_SA_RESTORER is defined.
1645 (SET_SA_RESTORER, RESET_SA_RESTORER): Define iff the macro are not
1647 * sysdeps/unix/sysv/linux/m68k/kernel_sigaction.h (SA_RESTORER,
1648 kernel_sigaction, SET_SA_RESTORER, RESET_SA_RESTORER): Remove
1650 (HAS_SA_RESTORER): Define.
1651 * sysdeps/unix/sysv/linux/sparc/kernel_sigaction.h (SA_RESTORER,
1652 SET_SA_RESTORER, RESET_SA_RESTORER): Remove definition.
1653 (HAS_SA_RESTORER): Define.
1654 * sysdeps/unix/sysv/linux/nios2/kernel_sigaction.h: Include generic
1655 kernel_sigaction after define SET_SA_RESTORER and RESET_SA_RESTORER.
1656 * sysdeps/unix/sysv/linux/powerpc/kernel_sigaction.h: Likewise.
1657 * sysdeps/unix/sysv/linux/s390/kernel_sigaction.h: Likewise.
1658 * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
1660 2018-12-18 Joseph Myers <joseph@codesourcery.com>
1662 * sysdeps/unix/sysv/linux/kernel-features.h
1663 (__ASSUME_ST_INO_64_BIT): Remove macro definition.
1664 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
1665 (__ASSUME_ST_INO_64_BIT): Do not undefine and define.
1666 * sysdeps/unix/sysv/linux/sh/kernel-features.h
1667 (__ASSUME_ST_INO_64_BIT): Likewise.
1668 * sysdeps/unix/sysv/linux/fxstat64.c: Do not include
1669 <kernel-features.h>.
1670 (___fxstat64) [_HAVE_STAT64___ST_INO && !__ASSUME_ST_INO_64_BIT]:
1671 Remove conditional code.
1672 * sysdeps/unix/sysv/linux/lxstat64.c: Do not include
1673 <kernel-features.h>.
1674 (___lxstat64) [_HAVE_STAT64___ST_INO && !__ASSUME_ST_INO_64_BIT]:
1675 Remove conditional code.
1676 * sysdeps/unix/sysv/linux/xstat64.c: Do not include
1677 <kernel-features.h>.
1678 (___xstat64) [_HAVE_STAT64___ST_INO && !__ASSUME_ST_INO_64_BIT]:
1679 Remove conditional code.
1680 * sysdeps/unix/sysv/linux/xstatconv.c: Do not include
1681 <kernel-features.h>.
1682 (__xstat32_conv) [_HAVE_STAT64___ST_INO]: Remove conditional code.
1683 [!_HAVE_STAT64___ST_INO]: Make code unconditional.
1685 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1687 * sysdeps/s390/multiarch/ifunc-resolve.h
1688 (s390_vx_libc_ifunc, s390_vx_libc_ifunc_redirected,
1689 s390_vx_libc_ifunc2, s390_vx_libc_ifunc_init,
1690 s390_vx_libc_ifunc2_redirected, s390_libc_ifunc):
1691 Delete macro definition.
1692 (s390_libc_ifunc_init): Rename to
1693 s390_libc_ifunc_expr_stfle_init.
1694 * sysdeps/s390/bzero: Use
1695 s390_libc_ifunc_expr_stfle_init instead of
1696 s390_libc_ifunc_init.
1697 * sysdeps/s390/memcmp.c: Likewise.
1698 * sysdeps/s390/memcpy.c: Likewise.
1699 * sysdeps/s390/mempcpy.c: Likewise.
1700 * sysdeps/s390/memset.c: Likewise.
1702 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1704 * sysdeps/s390/multiarch/gconv_simple.c (ICONV_VX_IFUNC):
1705 Define macro dependent on HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT.
1707 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1709 * sysdeps/s390/multiarch/Makefile
1710 (sysdep_routines): Remove wmemcmp variants.
1711 * sysdeps/s390/Makefile (sysdep_routines): Add wmemcmp variants.
1712 * sysdeps/s390/multiarch/ifunc-impl-list.c
1713 (__libc_ifunc_impl_list): Refactor ifunc handling for wmemcmp.
1714 * sysdeps/s390/multiarch/wmemcmp-c.c: Move to ...
1715 * sysdeps/s390/wmemcmp-c.c: ... here and adjust ifunc handling.
1716 * sysdeps/s390/multiarch/wmemcmp-vx.S: Move to ...
1717 * sysdeps/s390/wmemcmp-vx.S: ... here and adjust ifunc handling.
1718 * sysdeps/s390/multiarch/wmemcmp.c: Move to ...
1719 * sysdeps/s390/wmemcmp.c: ... here and adjust ifunc handling.
1720 * sysdeps/s390/ifunc-wmemcmp.h: New file.
1722 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1724 * sysdeps/s390/multiarch/Makefile
1725 (sysdep_routines): Remove wmemset variants.
1726 * sysdeps/s390/Makefile (sysdep_routines): Add wmemset variants.
1727 * sysdeps/s390/multiarch/ifunc-impl-list.c
1728 (__libc_ifunc_impl_list): Refactor ifunc handling for wmemset.
1729 * sysdeps/s390/multiarch/wmemset-c.c: Move to ...
1730 * sysdeps/s390/wmemset-c.c: ... here and adjust ifunc handling.
1731 * sysdeps/s390/multiarch/wmemset-vx.S: Move to ...
1732 * sysdeps/s390/wmemset-vx.S: ... here and adjust ifunc handling.
1733 * sysdeps/s390/multiarch/wmemset.c: Move to ...
1734 * sysdeps/s390/wmemset.c: ... here and adjust ifunc handling.
1735 * sysdeps/s390/ifunc-wmemset.h: New file.
1737 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1739 * sysdeps/s390/multiarch/Makefile
1740 (sysdep_routines): Remove wmemchr variants.
1741 * sysdeps/s390/Makefile (sysdep_routines): Add wmemchr variants.
1742 * sysdeps/s390/multiarch/ifunc-impl-list.c
1743 (__libc_ifunc_impl_list): Refactor ifunc handling for wmemchr.
1744 * sysdeps/s390/multiarch/wmemchr-c.c: Move to ...
1745 * sysdeps/s390/wmemchr-c.c: ... here and adjust ifunc handling.
1746 * sysdeps/s390/multiarch/wmemchr-vx.S: Move to ...
1747 * sysdeps/s390/wmemchr-vx.S: ... here and adjust ifunc handling.
1748 * sysdeps/s390/multiarch/wmemchr.c: Move to ...
1749 * sysdeps/s390/wmemchr.c: ... here and adjust ifunc handling.
1750 * sysdeps/s390/ifunc-wmemchr.h: New file.
1752 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1754 * sysdeps/s390/multiarch/Makefile
1755 (sysdep_routines): Remove wcscspn variants.
1756 * sysdeps/s390/Makefile (sysdep_routines): Add wcscspn variants.
1757 * sysdeps/s390/multiarch/ifunc-impl-list.c
1758 (__libc_ifunc_impl_list): Refactor ifunc handling for wcscspn.
1759 * sysdeps/s390/multiarch/wcscspn-c.c: Move to ...
1760 * sysdeps/s390/wcscspn-c.c: ... here and adjust ifunc handling.
1761 * sysdeps/s390/multiarch/wcscspn-vx.S: Move to ...
1762 * sysdeps/s390/wcscspn-vx.S: ... here and adjust ifunc handling.
1763 * sysdeps/s390/multiarch/wcscspn.c: Move to ...
1764 * sysdeps/s390/wcscspn.c: ... here and adjust ifunc handling.
1765 * sysdeps/s390/ifunc-wcscspn.h: New file.
1767 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1769 * sysdeps/s390/multiarch/Makefile
1770 (sysdep_routines): Remove wcspbrk variants.
1771 * sysdeps/s390/Makefile (sysdep_routines): Add wcspbrk variants.
1772 * sysdeps/s390/multiarch/ifunc-impl-list.c
1773 (__libc_ifunc_impl_list): Refactor ifunc handling for wcspbrk.
1774 * sysdeps/s390/multiarch/wcspbrk-c.c: Move to ...
1775 * sysdeps/s390/wcspbrk-c.c: ... here and adjust ifunc handling.
1776 * sysdeps/s390/multiarch/wcspbrk-vx.S: Move to ...
1777 * sysdeps/s390/wcspbrk-vx.S: ... here and adjust ifunc handling.
1778 * sysdeps/s390/multiarch/wcspbrk.c: Move to ...
1779 * sysdeps/s390/wcspbrk.c: ... here and adjust ifunc handling.
1780 * sysdeps/s390/ifunc-wcspbrk.h: New file.
1782 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1784 * sysdeps/s390/multiarch/Makefile
1785 (sysdep_routines): Remove wcsspn variants.
1786 * sysdeps/s390/Makefile (sysdep_routines): Add wcsspn variants.
1787 * sysdeps/s390/multiarch/ifunc-impl-list.c
1788 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsspn.
1789 * sysdeps/s390/multiarch/wcsspn-c.c: Move to ...
1790 * sysdeps/s390/wcsspn-c.c: ... here and adjust ifunc handling.
1791 * sysdeps/s390/multiarch/wcsspn-vx.S: Move to ...
1792 * sysdeps/s390/wcsspn-vx.S: ... here and adjust ifunc handling.
1793 * sysdeps/s390/multiarch/wcsspn.c: Move to ...
1794 * sysdeps/s390/wcsspn.c: ... here and adjust ifunc handling.
1795 * sysdeps/s390/ifunc-wcsspn.h: New file.
1797 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1799 * sysdeps/s390/multiarch/Makefile
1800 (sysdep_routines): Remove wcsrchr variants.
1801 * sysdeps/s390/Makefile (sysdep_routines): Add wcsrchr variants.
1802 * sysdeps/s390/multiarch/ifunc-impl-list.c
1803 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsrchr.
1804 * sysdeps/s390/multiarch/wcsrchr-c.c: Move to ...
1805 * sysdeps/s390/wcsrchr-c.c: ... here and adjust ifunc handling.
1806 * sysdeps/s390/multiarch/wcsrchr-vx.S: Move to ...
1807 * sysdeps/s390/wcsrchr-vx.S: ... here and adjust ifunc handling.
1808 * sysdeps/s390/multiarch/wcsrchr.c: Move to ...
1809 * sysdeps/s390/wcsrchr.c: ... here and adjust ifunc handling.
1810 * sysdeps/s390/ifunc-wcsrchr.h: New file.
1812 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1814 * sysdeps/s390/multiarch/Makefile
1815 (sysdep_routines): Remove wcschrnul variants.
1816 * sysdeps/s390/Makefile (sysdep_routines): Add wcschrnul variants.
1817 * sysdeps/s390/multiarch/ifunc-impl-list.c
1818 (__libc_ifunc_impl_list): Refactor ifunc handling for wcschrnul.
1819 * sysdeps/s390/multiarch/wcschrnul-c.c: Move to ...
1820 * sysdeps/s390/wcschrnul-c.c: ... here and adjust ifunc handling.
1821 * sysdeps/s390/multiarch/wcschrnul-vx.S: Move to ...
1822 * sysdeps/s390/wcschrnul-vx.S: ... here and adjust ifunc handling.
1823 * sysdeps/s390/multiarch/wcschrnul.c: Move to ...
1824 * sysdeps/s390/wcschrnul.c: ... here and adjust ifunc handling.
1825 * sysdeps/s390/ifunc-wcschrnul.h: New file.
1827 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1829 * sysdeps/s390/multiarch/Makefile
1830 (sysdep_routines): Remove wcschr variants.
1831 * sysdeps/s390/Makefile (sysdep_routines): Add wcschr variants.
1832 * sysdeps/s390/multiarch/ifunc-impl-list.c
1833 (__libc_ifunc_impl_list): Refactor ifunc handling for wcschr.
1834 * sysdeps/s390/multiarch/wcschr-c.c: Move to ...
1835 * sysdeps/s390/wcschr-c.c: ... here and adjust ifunc handling.
1836 * sysdeps/s390/multiarch/wcschr-vx.S: Move to ...
1837 * sysdeps/s390/wcschr-vx.S: ... here and adjust ifunc handling.
1838 * sysdeps/s390/multiarch/wcschr.c: Move to ...
1839 * sysdeps/s390/wcschr.c: ... here and adjust ifunc handling.
1840 * sysdeps/s390/ifunc-wcschr.h: New file.
1842 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1844 * sysdeps/s390/multiarch/Makefile
1845 (sysdep_routines): Remove wcsncmp variants.
1846 * sysdeps/s390/Makefile (sysdep_routines): Add wcsncmp variants.
1847 * sysdeps/s390/multiarch/ifunc-impl-list.c
1848 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsncmp.
1849 * sysdeps/s390/multiarch/wcsncmp-c.c: Move to ...
1850 * sysdeps/s390/wcsncmp-c.c: ... here and adjust ifunc handling.
1851 * sysdeps/s390/multiarch/wcsncmp-vx.S: Move to ...
1852 * sysdeps/s390/wcsncmp-vx.S: ... here and adjust ifunc handling.
1853 * sysdeps/s390/multiarch/wcsncmp.c: Move to ...
1854 * sysdeps/s390/wcsncmp.c: ... here and adjust ifunc handling.
1855 * sysdeps/s390/ifunc-wcsncmp.h: New file.
1857 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1859 * sysdeps/s390/multiarch/Makefile
1860 (sysdep_routines): Remove wcscmp variants.
1861 * sysdeps/s390/Makefile (sysdep_routines): Add wcscmp variants.
1862 * sysdeps/s390/multiarch/ifunc-impl-list.c
1863 (__libc_ifunc_impl_list): Refactor ifunc handling for wcscmp.
1864 * sysdeps/s390/multiarch/wcscmp-c.c: Move to ...
1865 * sysdeps/s390/wcscmp-c.c: ... here and adjust ifunc handling.
1866 * sysdeps/s390/multiarch/wcscmp-vx.S: Move to ...
1867 * sysdeps/s390/wcscmp-vx.S: ... here and adjust ifunc handling.
1868 * sysdeps/s390/multiarch/wcscmp.c: Move to ...
1869 * sysdeps/s390/wcscmp.c: ... here and adjust ifunc handling.
1870 * sysdeps/s390/ifunc-wcscmp.h: New file.
1872 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1874 * sysdeps/s390/multiarch/Makefile
1875 (sysdep_routines): Remove wcsncat variants.
1876 * sysdeps/s390/Makefile (sysdep_routines): Add wcsncat variants.
1877 * sysdeps/s390/multiarch/ifunc-impl-list.c
1878 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsncat.
1879 * sysdeps/s390/multiarch/wcsncat-c.c: Move to ...
1880 * sysdeps/s390/wcsncat-c.c: ... here and adjust ifunc handling.
1881 * sysdeps/s390/multiarch/wcsncat-vx.S: Move to ...
1882 * sysdeps/s390/wcsncat-vx.S: ... here and adjust ifunc handling.
1883 * sysdeps/s390/multiarch/wcsncat.c: Move to ...
1884 * sysdeps/s390/wcsncat.c: ... here and adjust ifunc handling.
1885 * sysdeps/s390/ifunc-wcsncat.h: New file.
1887 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1889 * sysdeps/s390/multiarch/Makefile
1890 (sysdep_routines): Remove wcscat variants.
1891 * sysdeps/s390/Makefile (sysdep_routines): Add wcscat variants.
1892 * sysdeps/s390/multiarch/ifunc-impl-list.c
1893 (__libc_ifunc_impl_list): Refactor ifunc handling for wcscat.
1894 * sysdeps/s390/multiarch/wcscat-c.c: Move to ...
1895 * sysdeps/s390/wcscat-c.c: ... here and adjust ifunc handling.
1896 * sysdeps/s390/multiarch/wcscat-vx.S: Move to ...
1897 * sysdeps/s390/wcscat-vx.S: ... here and adjust ifunc handling.
1898 * sysdeps/s390/multiarch/wcscat.c: Move to ...
1899 * sysdeps/s390/wcscat.c: ... here and adjust ifunc handling.
1900 * sysdeps/s390/ifunc-wcscat.h: New file.
1902 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1904 * sysdeps/s390/multiarch/Makefile
1905 (sysdep_routines): Remove wcpncpy variants.
1906 * sysdeps/s390/Makefile (sysdep_routines): Add wcpncpy variants.
1907 * sysdeps/s390/multiarch/ifunc-impl-list.c
1908 (__libc_ifunc_impl_list): Refactor ifunc handling for wcpncpy.
1909 * sysdeps/s390/multiarch/wcpncpy-c.c: Move to ...
1910 * sysdeps/s390/wcpncpy-c.c: ... here and adjust ifunc handling.
1911 * sysdeps/s390/multiarch/wcpncpy-vx.S: Move to ...
1912 * sysdeps/s390/wcpncpy-vx.S: ... here and adjust ifunc handling.
1913 * sysdeps/s390/multiarch/wcpncpy.c: Move to ...
1914 * sysdeps/s390/wcpncpy.c: ... here and adjust ifunc handling.
1915 * sysdeps/s390/ifunc-wcpncpy.h: New file.
1917 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1919 * sysdeps/s390/multiarch/Makefile
1920 (sysdep_routines): Remove wcsncpy variants.
1921 * sysdeps/s390/Makefile (sysdep_routines): Add wcsncpy variants.
1922 * sysdeps/s390/multiarch/ifunc-impl-list.c
1923 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsncpy.
1924 * sysdeps/s390/multiarch/wcsncpy-c.c: Move to ...
1925 * sysdeps/s390/wcsncpy-c.c: ... here and adjust ifunc handling.
1926 * sysdeps/s390/multiarch/wcsncpy-vx.S: Move to ...
1927 * sysdeps/s390/wcsncpy-vx.S: ... here and adjust ifunc handling.
1928 * sysdeps/s390/multiarch/wcsncpy.c: Move to ...
1929 * sysdeps/s390/wcsncpy.c: ... here and adjust ifunc handling.
1930 * sysdeps/s390/ifunc-wcsncpy.h: New file.
1932 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1934 * sysdeps/s390/multiarch/Makefile
1935 (sysdep_routines): Remove wcpcpy variants.
1936 * sysdeps/s390/Makefile (sysdep_routines): Add wcpcpy variants.
1937 * sysdeps/s390/multiarch/ifunc-impl-list.c
1938 (__libc_ifunc_impl_list): Refactor ifunc handling for wcpcpy.
1939 * sysdeps/s390/multiarch/wcpcpy-c.c: Move to ...
1940 * sysdeps/s390/wcpcpy-c.c: ... here and adjust ifunc handling.
1941 * sysdeps/s390/multiarch/wcpcpy-vx.S: Move to ...
1942 * sysdeps/s390/wcpcpy-vx.S: ... here and adjust ifunc handling.
1943 * sysdeps/s390/multiarch/wcpcpy.c: Move to ...
1944 * sysdeps/s390/wcpcpy.c: ... here and adjust ifunc handling.
1945 * sysdeps/s390/ifunc-wcpcpy.h: New file.
1947 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1949 * sysdeps/s390/multiarch/Makefile
1950 (sysdep_routines): Remove wcscpy variants.
1951 * sysdeps/s390/Makefile (sysdep_routines): Add wcscpy variants.
1952 * sysdeps/s390/multiarch/ifunc-impl-list.c
1953 (__libc_ifunc_impl_list): Refactor ifunc handling for wcscpy.
1954 * sysdeps/s390/multiarch/wcscpy-c.c: Move to ...
1955 * sysdeps/s390/wcscpy-c.c: ... here and adjust ifunc handling.
1956 * sysdeps/s390/multiarch/wcscpy-vx.S: Move to ...
1957 * sysdeps/s390/wcscpy-vx.S: ... here and adjust ifunc handling.
1958 * sysdeps/s390/multiarch/wcscpy.c: Move to ...
1959 * sysdeps/s390/wcscpy.c: ... here and adjust ifunc handling.
1960 * sysdeps/s390/ifunc-wcscpy.h: New file.
1962 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1964 * sysdeps/s390/multiarch/Makefile
1965 (sysdep_routines): Remove wcsnlen variants.
1966 * sysdeps/s390/Makefile (sysdep_routines): Add wcsnlen variants.
1967 * sysdeps/s390/multiarch/ifunc-impl-list.c
1968 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsnlen.
1969 * sysdeps/s390/multiarch/wcsnlen-c.c: Move to ...
1970 * sysdeps/s390/wcsnlen-c.c: ... here and adjust ifunc handling.
1971 * sysdeps/s390/multiarch/wcsnlen-vx.S: Move to ...
1972 * sysdeps/s390/wcsnlen-vx.S: ... here and adjust ifunc handling.
1973 * sysdeps/s390/multiarch/wcsnlen.c: Move to ...
1974 * sysdeps/s390/wcsnlen.c: ... here and adjust ifunc handling.
1975 * sysdeps/s390/ifunc-wcsnlen.h: New file.
1977 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1979 * sysdeps/s390/multiarch/Makefile
1980 (sysdep_routines): Remove wcslen variants.
1981 * sysdeps/s390/Makefile (sysdep_routines): Add wcslen variants.
1982 * sysdeps/s390/multiarch/ifunc-impl-list.c
1983 (__libc_ifunc_impl_list): Refactor ifunc handling for wcslen.
1984 * sysdeps/s390/multiarch/wcslen-c.c: Move to ...
1985 * sysdeps/s390/wcslen-c.c: ... here and adjust ifunc handling.
1986 * sysdeps/s390/multiarch/wcslen-vx.S: Move to ...
1987 * sysdeps/s390/wcslen-vx.S: ... here and adjust ifunc handling.
1988 * sysdeps/s390/multiarch/wcslen.c: Move to ...
1989 * sysdeps/s390/wcslen.c: ... here and adjust ifunc handling.
1990 * sysdeps/s390/ifunc-wcslen.h: New file.
1992 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
1994 * sysdeps/s390/multiarch/Makefile
1995 (sysdep_routines): Remove memrchr variants.
1996 * sysdeps/s390/Makefile (sysdep_routines): Add memrchr variants.
1997 * sysdeps/s390/multiarch/ifunc-impl-list.c
1998 (__libc_ifunc_impl_list): Refactor ifunc handling for memrchr.
1999 * sysdeps/s390/multiarch/memrchr-c.c: Move to ...
2000 * sysdeps/s390/memrchr-c.c: ... here and adjust ifunc handling.
2001 * sysdeps/s390/multiarch/memrchr-vx.S: Move to ...
2002 * sysdeps/s390/memrchr-vx.S: ... here and adjust ifunc handling.
2003 * sysdeps/s390/multiarch/memrchr.c: Move to ...
2004 * sysdeps/s390/memrchr.c: ... here and adjust ifunc handling.
2005 * sysdeps/s390/ifunc-memrchr.h: New file.
2007 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2009 * sysdeps/s390/multiarch/Makefile
2010 (sysdep_routines): Remove memccpy variants.
2011 * sysdeps/s390/Makefile (sysdep_routines): Add memccpy variants.
2012 * sysdeps/s390/multiarch/ifunc-impl-list.c
2013 (__libc_ifunc_impl_list): Refactor ifunc handling for memccpy.
2014 * sysdeps/s390/multiarch/memccpy-c.c: Move to ...
2015 * sysdeps/s390/memccpy-c.c: ... here and adjust ifunc handling.
2016 * sysdeps/s390/multiarch/memccpy-vx.S: Move to ...
2017 * sysdeps/s390/memccpy-vx.S: ... here and adjust ifunc handling.
2018 * sysdeps/s390/multiarch/memccpy.c: Move to ...
2019 * sysdeps/s390/memccpy.c: ... here and adjust ifunc handling.
2020 * sysdeps/s390/ifunc-memccpy.h: New file.
2022 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2024 * sysdeps/s390/multiarch/Makefile
2025 (sysdep_routines): Remove rawmemchr variants.
2026 * sysdeps/s390/Makefile (sysdep_routines): Add rawmemchr variants.
2027 * sysdeps/s390/multiarch/ifunc-impl-list.c
2028 (__libc_ifunc_impl_list): Refactor ifunc handling for rawmemchr.
2029 * sysdeps/s390/multiarch/rawmemchr-c.c: Move to ...
2030 * sysdeps/s390/rawmemchr-c.c: ... here and adjust ifunc handling.
2031 * sysdeps/s390/multiarch/rawmemchr-vx.S: Move to ...
2032 * sysdeps/s390/rawmemchr-vx.S: ... here and adjust ifunc handling.
2033 * sysdeps/s390/multiarch/rawmemchr.c: Move to ...
2034 * sysdeps/s390/rawmemchr.c: ... here and adjust ifunc handling.
2035 * sysdeps/s390/ifunc-rawmemchr.h: New file.
2037 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2039 * sysdeps/s390/multiarch/Makefile
2040 (sysdep_routines): Remove memchr variants.
2041 * sysdeps/s390/Makefile (sysdep_routines): Add memchr variants.
2042 * sysdeps/s390/multiarch/ifunc-impl-list.c
2043 (__libc_ifunc_impl_list): Refactor ifunc handling for memchr.
2044 * sysdeps/s390/multiarch/memchr-vx.S: Move to ...
2045 * sysdeps/s390/memchr-vx.S: ... here and adjust ifunc handling.
2046 * sysdeps/s390/multiarch/memchr.c: Move to ...
2047 * sysdeps/s390/memchr.c: ... here and adjust ifunc handling.
2048 * sysdeps/s390/ifunc-memchr.h: New file.
2049 * sysdeps/s390/s390-64/memchr.S: Move to ...
2050 * sysdeps/s390/memchr-z900.S: ... here and adjust to be usable
2051 for 31/64bit and ifunc handling.
2052 * sysdeps/s390/s390-32/multiarch/memchr.c: Delete file.
2053 * sysdeps/s390/s390-64/multiarch/memchr.c: Likewise.
2054 * sysdeps/s390/s390-32/memchr.S: Likewise.
2056 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2058 * sysdeps/s390/multiarch/Makefile
2059 (sysdep_routines): Remove strcspn variants.
2060 * sysdeps/s390/Makefile (sysdep_routines): Add strcspn variants.
2061 * sysdeps/s390/multiarch/ifunc-impl-list.c
2062 (__libc_ifunc_impl_list): Refactor ifunc handling for strcspn.
2063 * sysdeps/s390/multiarch/strcspn-c.c: Move to ...
2064 * sysdeps/s390/strcspn-c.c: ... here and adjust ifunc handling.
2065 * sysdeps/s390/multiarch/strcspn-vx.S: Move to ...
2066 * sysdeps/s390/strcspn-vx.S: ... here and adjust ifunc handling.
2067 * sysdeps/s390/multiarch/strcspn.c: Move to ...
2068 * sysdeps/s390/strcspn.c: ... here and adjust ifunc handling.
2069 * sysdeps/s390/ifunc-strcspn.h: New file.
2071 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2073 * sysdeps/s390/multiarch/Makefile
2074 (sysdep_routines): Remove strpbrk variants.
2075 * sysdeps/s390/Makefile (sysdep_routines): Add strpbrk variants.
2076 * sysdeps/s390/multiarch/ifunc-impl-list.c
2077 (__libc_ifunc_impl_list): Refactor ifunc handling for strpbrk.
2078 * sysdeps/s390/multiarch/strpbrk-c.c: Move to ...
2079 * sysdeps/s390/strpbrk-c.c: ... here and adjust ifunc handling.
2080 * sysdeps/s390/multiarch/strpbrk-vx.S: Move to ...
2081 * sysdeps/s390/strpbrk-vx.S: ... here and adjust ifunc handling.
2082 * sysdeps/s390/multiarch/strpbrk.c: Move to ...
2083 * sysdeps/s390/strpbrk.c: ... here and adjust ifunc handling.
2084 * sysdeps/s390/ifunc-strpbrk.h: New file.
2086 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2088 * sysdeps/s390/multiarch/Makefile
2089 (sysdep_routines): Remove strspn variants.
2090 * sysdeps/s390/Makefile (sysdep_routines): Add strspn variants.
2091 * sysdeps/s390/multiarch/ifunc-impl-list.c
2092 (__libc_ifunc_impl_list): Refactor ifunc handling for strspn.
2093 * sysdeps/s390/multiarch/strspn-c.c: Move to ...
2094 * sysdeps/s390/strspn-c.c: ... here and adjust ifunc handling.
2095 * sysdeps/s390/multiarch/strspn-vx.S: Move to ...
2096 * sysdeps/s390/strspn-vx.S: ... here and adjust ifunc handling.
2097 * sysdeps/s390/multiarch/strspn.c: Move to ...
2098 * sysdeps/s390/strspn.c: ... here and adjust ifunc handling.
2099 * sysdeps/s390/ifunc-strspn.h: New file.
2101 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2103 * sysdeps/s390/multiarch/Makefile
2104 (sysdep_routines): Remove strrchr variants.
2105 * sysdeps/s390/Makefile (sysdep_routines): Add strrchr variants.
2106 * sysdeps/s390/multiarch/ifunc-impl-list.c
2107 (__libc_ifunc_impl_list): Refactor ifunc handling for strrchr.
2108 * sysdeps/s390/multiarch/strrchr-c.c: Move to ...
2109 * sysdeps/s390/strrchr-c.c: ... here and adjust ifunc handling.
2110 * sysdeps/s390/multiarch/strrchr-vx.S: Move to ...
2111 * sysdeps/s390/strrchr-vx.S: ... here and adjust ifunc handling.
2112 * sysdeps/s390/multiarch/strrchr.c: Move to ...
2113 * sysdeps/s390/strrchr.c: ... here and adjust ifunc handling.
2114 * sysdeps/s390/ifunc-strrchr.h: New file.
2116 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2118 * sysdeps/s390/multiarch/Makefile
2119 (sysdep_routines): Remove strchrnul variants.
2120 * sysdeps/s390/Makefile (sysdep_routines): Add strchrnul variants.
2121 * sysdeps/s390/multiarch/ifunc-impl-list.c
2122 (__libc_ifunc_impl_list): Refactor ifunc handling for strchrnul.
2123 * sysdeps/s390/multiarch/strchrnul-c.c: Move to ...
2124 * sysdeps/s390/strchrnul-c.c: ... here and adjust ifunc handling.
2125 * sysdeps/s390/multiarch/strchrnul-vx.S: Move to ...
2126 * sysdeps/s390/strchrnul-vx.S: ... here and adjust ifunc handling.
2127 * sysdeps/s390/multiarch/strchrnul.c: Move to ...
2128 * sysdeps/s390/strchrnul.c: ... here and adjust ifunc handling.
2129 * sysdeps/s390/ifunc-strchrnul.h: New file.
2131 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2133 * sysdeps/s390/multiarch/Makefile
2134 (sysdep_routines): Remove strchr variants.
2135 * sysdeps/s390/Makefile (sysdep_routines): Add strchr variants.
2136 * sysdeps/s390/multiarch/ifunc-impl-list.c
2137 (__libc_ifunc_impl_list): Refactor ifunc handling for strchr.
2138 * sysdeps/s390/multiarch/strchr-c.c: Move to ...
2139 * sysdeps/s390/strchr-c.c: ... here and adjust ifunc handling.
2140 * sysdeps/s390/multiarch/strchr-vx.S: Move to ...
2141 * sysdeps/s390/strchr-vx.S: ... here and adjust ifunc handling.
2142 * sysdeps/s390/multiarch/strchr.c: Move to ...
2143 * sysdeps/s390/strchr.c: ... here and adjust ifunc handling.
2144 * sysdeps/s390/ifunc-strchr.h: New file.
2146 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2148 * sysdeps/s390/multiarch/Makefile
2149 (sysdep_routines): Remove strncmp variants.
2150 * sysdeps/s390/Makefile (sysdep_routines): Add strncmp variants.
2151 * sysdeps/s390/multiarch/ifunc-impl-list.c
2152 (__libc_ifunc_impl_list): Refactor ifunc handling for strncmp.
2153 * sysdeps/s390/multiarch/strncmp-c.c: Move to ...
2154 * sysdeps/s390/strncmp-c.c: ... here and adjust ifunc handling.
2155 * sysdeps/s390/multiarch/strncmp-vx.S: Move to ...
2156 * sysdeps/s390/strncmp-vx.S: ... here and adjust ifunc handling.
2157 * sysdeps/s390/multiarch/strncmp.c: Move to ...
2158 * sysdeps/s390/strncmp.c: ... here and adjust ifunc handling.
2159 * sysdeps/s390/ifunc-strncmp.h: New file.
2161 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2163 * sysdeps/s390/multiarch/Makefile
2164 (sysdep_routines): Remove strcmp variants.
2165 * sysdeps/s390/Makefile (sysdep_routines): Add strcmp variants.
2166 * sysdeps/s390/multiarch/ifunc-impl-list.c
2167 (__libc_ifunc_impl_list): Refactor ifunc handling for strcmp.
2168 * sysdeps/s390/multiarch/strcmp-vx.S: Move to ...
2169 * sysdeps/s390/strcmp-vx.S: ... here and adjust ifunc handling.
2170 * sysdeps/s390/multiarch/strcmp.c: Move to ...
2171 * sysdeps/s390/strcmp.c: ... here and adjust ifunc handling.
2172 * sysdeps/s390/ifunc-strcmp.h: New file.
2173 * sysdeps/s390/s390-64/strcmp.S: Move to ...
2174 * sysdeps/s390/strcmp-z900.S: ... here and adjust to be usable
2175 for 31/64bit and ifunc handling.
2176 * sysdeps/s390/s390-32/multiarch/strcmp.c: Delete file.
2177 * sysdeps/s390/s390-64/multiarch/strcmp.c: Likewise.
2178 * sysdeps/s390/s390-32/strcmp.S: Likewise.
2180 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2182 * sysdeps/s390/multiarch/Makefile
2183 (sysdep_routines): Remove strncat variants.
2184 * sysdeps/s390/Makefile (sysdep_routines): Add strncat variants.
2185 * sysdeps/s390/multiarch/ifunc-impl-list.c
2186 (__libc_ifunc_impl_list): Refactor ifunc handling for strncat.
2187 * sysdeps/s390/multiarch/strncat-c.c: Move to ...
2188 * sysdeps/s390/strncat-c.c: ... here and adjust ifunc handling.
2189 * sysdeps/s390/multiarch/strncat-vx.S: Move to ...
2190 * sysdeps/s390/strncat-vx.S: ... here and adjust ifunc handling.
2191 * sysdeps/s390/multiarch/strncat.c: Move to ...
2192 * sysdeps/s390/strncat.c: ... here and adjust ifunc handling.
2193 * sysdeps/s390/ifunc-strncat.h: New file.
2195 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2197 * sysdeps/s390/multiarch/Makefile
2198 (sysdep_routines): Remove strcat variants.
2199 * sysdeps/s390/Makefile (sysdep_routines): Add strcat variants.
2200 * sysdeps/s390/multiarch/ifunc-impl-list.c
2201 (__libc_ifunc_impl_list): Refactor ifunc handling for strcat.
2202 * sysdeps/s390/multiarch/strcat-c.c: Move to ...
2203 * sysdeps/s390/strcat-c.c: ... here and adjust ifunc handling.
2204 * sysdeps/s390/multiarch/strcat-vx.S: Move to ...
2205 * sysdeps/s390/strcat-vx.S: ... here and adjust ifunc handling.
2206 * sysdeps/s390/multiarch/strcat.c: Move to ...
2207 * sysdeps/s390/strcat.c: ... here and adjust ifunc handling.
2208 * sysdeps/s390/ifunc-strcat.h: New file.
2210 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2212 * sysdeps/s390/multiarch/Makefile
2213 (sysdep_routines): Remove stpncpy variants.
2214 * sysdeps/s390/Makefile (sysdep_routines): Add stpncpy variants.
2215 * sysdeps/s390/multiarch/ifunc-impl-list.c
2216 (__libc_ifunc_impl_list): Refactor ifunc handling for stpncpy.
2217 * sysdeps/s390/multiarch/stpncpy-c.c: Move to ...
2218 * sysdeps/s390/stpncpy-c.c: ... here and adjust ifunc handling.
2219 * sysdeps/s390/multiarch/stpncpy-vx.S: Move to ...
2220 * sysdeps/s390/stpncpy-vx.S: ... here and adjust ifunc handling.
2221 * sysdeps/s390/multiarch/stpncpy.c: Move to ...
2222 * sysdeps/s390/stpncpy.c: ... here and adjust ifunc handling.
2223 * sysdeps/s390/ifunc-stpncpy.h: New file.
2225 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2227 * sysdeps/s390/multiarch/Makefile
2228 (sysdep_routines): Remove strncpy variants.
2229 * sysdeps/s390/Makefile (sysdep_routines): Add strncpy variants.
2230 * sysdeps/s390/multiarch/ifunc-impl-list.c
2231 (__libc_ifunc_impl_list): Refactor ifunc handling for strncpy.
2232 * sysdeps/s390/multiarch/strncpy-vx.S: Move to ...
2233 * sysdeps/s390/strncpy-vx.S: ... here and adjust ifunc handling.
2234 * sysdeps/s390/multiarch/strncpy.c: Move to ...
2235 * sysdeps/s390/strncpy.c: ... here and adjust ifunc handling.
2236 * sysdeps/s390/ifunc-strncpy.h: New file.
2237 * sysdeps/s390/s390-64/strncpy.S: Move to ...
2238 * sysdeps/s390/s390-64/strncpy-z900.S: ... here
2239 and adjust ifunc handling.
2240 * sysdeps/s390/s390-32/strncpy.S: Move to ...
2241 * sysdeps/s390/s390-32/strncpy-z900.S: ... here
2242 and adjust ifunc handling.
2243 * sysdeps/s390/s390-32/multiarch/strncpy.c: Delete file.
2244 * sysdeps/s390/s390-64/multiarch/strncpy.c: Likewise.
2246 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2248 * sysdeps/s390/multiarch/Makefile
2249 (sysdep_routines): Remove stpcpy variants.
2250 * sysdeps/s390/Makefile (sysdep_routines): Add stpcpy variants.
2251 * sysdeps/s390/multiarch/ifunc-impl-list.c
2252 (__libc_ifunc_impl_list): Refactor ifunc handling for stpcpy.
2253 * sysdeps/s390/multiarch/stpcpy-c.c: Move to ...
2254 * sysdeps/s390/stpcpy-c.c: ... here and adjust ifunc handling.
2255 * sysdeps/s390/multiarch/stpcpy-vx.S: Move to ...
2256 * sysdeps/s390/stpcpy-vx.S: ... here and adjust ifunc handling.
2257 * sysdeps/s390/multiarch/stpcpy.c: Move to ...
2258 * sysdeps/s390/stpcpy.c: ... here and adjust ifunc handling.
2259 * sysdeps/s390/ifunc-stpcpy.h: New file.
2261 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2263 * sysdeps/s390/multiarch/Makefile
2264 (sysdep_routines): Remove strcpy variants.
2265 * sysdeps/s390/Makefile (sysdep_routines): Add strcpy variants.
2266 * sysdeps/s390/multiarch/ifunc-impl-list.c
2267 (__libc_ifunc_impl_list): Refactor ifunc handling for strcpy.
2268 * sysdeps/s390/multiarch/strcpy-vx.S: Move to ...
2269 * sysdeps/s390/strcpy-vx.S: ... here and adjust ifunc handling.
2270 * sysdeps/s390/multiarch/strcpy.c: Move to ...
2271 * sysdeps/s390/strcpy.c: ... here and adjust ifunc handling.
2272 * sysdeps/s390/ifunc-strcpy.h: New file.
2273 * sysdeps/s390/s390-64/strcpy.S: Move to ...
2274 * sysdeps/s390/strcpy-z900.S: ... here and adjust to be usable
2275 for 31/64bit and ifunc handling.
2276 * sysdeps/s390/s390-32/multiarch/strcpy.c: Delete file.
2277 * sysdeps/s390/s390-64/multiarch/strcpy.c: Likewise.
2278 * sysdeps/s390/s390-32/strcpy.S: Likewise.
2280 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2282 * sysdeps/s390/multiarch/Makefile
2283 (sysdep_routines): Remove strnlen variants.
2284 * sysdeps/s390/Makefile (sysdep_routines): Add strnlen variants.
2285 * sysdeps/s390/multiarch/ifunc-impl-list.c
2286 (__libc_ifunc_impl_list): Refactor ifunc handling for strnlen.
2287 * sysdeps/s390/multiarch/strnlen-c.c: Move to ...
2288 * sysdeps/s390/strnlen-c.c: ... here and adjust ifunc handling.
2289 * sysdeps/s390/multiarch/strnlen-vx.S: Move to ...
2290 * sysdeps/s390/strnlen-vx.S: ... here and adjust ifunc handling.
2291 * sysdeps/s390/multiarch/strnlen.c: Move to ...
2292 * sysdeps/s390/strnlen.c: ... here and adjust ifunc handling.
2293 * sysdeps/s390/ifunc-strnlen.h: New file.
2295 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2297 * sysdeps/s390/multiarch/Makefile
2298 (sysdep_routines): Remove strlen variants.
2299 * sysdeps/s390/Makefile (sysdep_routines): Add strlen variants.
2300 * sysdeps/s390/multiarch/ifunc-impl-list.c
2301 (__libc_ifunc_impl_list): Refactor ifunc handling for strlen.
2302 * sysdeps/s390/multiarch/strlen-c.c: Move to ...
2303 * sysdeps/s390/strlen-c.c: ... here and adjust ifunc handling.
2304 * sysdeps/s390/multiarch/strlen-vx.S: Move to ...
2305 * sysdeps/s390/strlen-vx.S: ... here and adjust ifunc handling.
2306 * sysdeps/s390/multiarch/strlen.c: Move to ...
2307 * sysdeps/s390/strlen.c: ... here and adjust ifunc handling.
2308 * sysdeps/s390/ifunc-strlen.h: New file.
2310 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2312 * sysdeps/s390/Makefile (sysdep_routines): Add memmem variants.
2313 * sysdeps/s390/multiarch/ifunc-impl-list.c
2314 (__libc_ifunc_impl_list): Add ifunc variants for memmem.
2315 * sysdeps/s390/ifunc-memmem.h: New file.
2316 * sysdeps/s390/memmem.c: Likewise.
2317 * sysdeps/s390/memmem-c.c: Likewise.
2318 * sysdeps/s390/memmem-vx.c: Likewise.
2320 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2322 * sysdeps/s390/Makefile (sysdep_routines): Add strstr variants.
2323 * sysdeps/s390/multiarch/ifunc-impl-list.c
2324 (__libc_ifunc_impl_list): Add ifunc variants for strstr.
2325 * sysdeps/s390/ifunc-strstr.h: New file.
2326 * sysdeps/s390/strstr.c: Likewise.
2327 * sysdeps/s390/strstr-c.c: Likewise.
2328 * sysdeps/s390/strstr-vx.c: Likewise.
2330 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2332 * sysdeps/s390/Makefile (sysdep_routines): Add memmove-c.
2333 * sysdeps/s390/ifunc-memcpy.h (HAVE_MEMMOVE_IFUNC,
2334 HAVE_MEMMOVE_IFUNC_AND_VX_SUPPORT, MEMMOVE_DEFAULT,
2335 HAVE_MEMMOVE_C, MEMMOVE_C, HAVE_MEMMOVE_Z13, MEMMOVE_Z13):
2337 * sysdeps/s390/memcpy-z900.S: Add z13 memmove implementation.
2338 * sysdeps/s390/memmove-c.c: New file.
2339 * sysdeps/s390/memmove.c: Likewise.
2340 * sysdeps/s390/multiarch/ifunc-impl-list.c
2341 (__libc_ifunc_impl_list): Add ifunc variants for memmove.
2343 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2345 * config.h.in (HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT): New undefine.
2346 * sysdeps/s390/configure.ac: Add check for z13 support.
2347 * sysdeps/s390/configure: Regenerated.
2349 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2351 * sysdeps/s390/memcopy.h: New file.
2353 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2355 * sysdeps/s390/s390-32/bcopy.S: Remove.
2356 * sysdeps/s390/s390-64/bcopy.S: Likewise.
2358 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2360 * sysdeps/s390/ifunc-memcpy.h: New File.
2361 * sysdeps/s390/memcpy.S: Move to ...
2362 * sysdeps/s390/memcpy-z900.S ... here.
2363 Move implementations from memcpy-s390x.s to here.
2364 * sysdeps/s390/multiarch/memcpy-s390x.S: Delete File.
2365 * sysdeps/s390/multiarch/Makefile (sysdep_routines):
2366 Remove memcpy/mempcpy variants.
2367 * sysdeps/s390/Makefile (sysdep_routines):
2368 Add memcpy/mempcpy variants.
2369 * sysdeps/s390/multiarch/ifunc-impl-list.c
2370 (__libc_ifunc_impl_list): Adjust ifunc variants for
2372 * sysdeps/s390/multiarch/memcpy.c: Move ifunc resolver
2374 * sysdeps/s390/memcpy.c: ... here.
2375 Adjust ifunc variants for memcpy.
2376 * sysdeps/s390/multiarch/mempcpy.c: Move to ...
2377 * sysdeps/s390/mempcpy.c: ... here.
2378 Adjust ifunc variants for mempcpy.
2379 * sysdeps/s390/mempcpy.S: Delete file.
2381 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2383 * sysdeps/s390/s390-64/memcpy.S: Move to ...
2384 * sysdeps/s390/memcpy.S: ... here.
2385 Adjust to be usable for 31/64bit.
2386 * sysdeps/s390/s390-32/memcpy.S: Delete File.
2387 * sysdeps/s390/multiarch/Makefile (sysdep_routines): Add memcpy.
2388 * sysdeps/s390/s390-32/multiarch/Makefile: Delete file.
2389 * sysdeps/s390/s390-64/multiarch/Makefile: Likewise.
2390 * sysdeps/s390/s390-64/multiarch/memcpy-s390x.S: Move to ...
2391 * sysdeps/s390/multiarch/memcpy-s390x.S: ... here.
2392 Adjust to be usable for 31/64bit.
2393 * sysdeps/s390/s390-32/multiarch/memcpy-s390.S: Delete File.
2394 * sysdeps/s390/s390-64/multiarch/memcpy.c: Move to ...
2395 * sysdeps/s390/multiarch/memcpy.c: ... here.
2396 * sysdeps/s390/s390-32/multiarch/memcpy.c: Delete File.
2398 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2400 * sysdeps/s390/ifunc-memcmp.h: New File.
2401 * sysdeps/s390/memcmp.S: Move to ...
2402 * sysdeps/s390/memcmp-z900.S ... here.
2403 Move implementations from memcmp-s390x.s to here.
2404 * sysdeps/s390/multiarch/memcmp-s390x.S: Delete File.
2405 * sysdeps/s390/multiarch/Makefile (sysdep_routines):
2406 Remove memcmp variants.
2407 * sysdeps/s390/Makefile (sysdep_routines):
2408 Add memcmp variants.
2409 * sysdeps/s390/multiarch/ifunc-impl-list.c
2410 (__libc_ifunc_impl_list): Adjust ifunc variants for
2412 * sysdeps/s390/multiarch/memcmp.c: Move ifunc resolver
2414 * sysdeps/s390/memcmp.c: ... here.
2415 Adjust ifunc variants for memcmp.
2417 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2419 * sysdeps/s390/s390-64/memcmp.S: Move to ...
2420 * sysdeps/s390/memcmp.S: ... here.
2421 Adjust to be usable for 31/64bit.
2422 * sysdeps/s390/s390-32/memcmp.S: Delete File.
2423 * sysdeps/s390/multiarch/Makefile (sysdep_routines): Add memcmp.
2424 * sysdeps/s390/s390-32/multiarch/Makefile (sysdep_routines):
2426 * sysdeps/s390/s390-64/multiarch/Makefile: Likewise.
2427 * sysdeps/s390/s390-64/multiarch/memcmp-s390x.S: Move to ...
2428 * sysdeps/s390/multiarch/memcmp-s390x.S: ... here.
2429 Adjust to be usable for 31/64bit.
2430 * sysdeps/s390/s390-32/multiarch/memcmp-s390.S: Delete File.
2431 * sysdeps/s390/s390-64/multiarch/memcmp.c: Move to ...
2432 * sysdeps/s390/multiarch/memcmp.c: ... here.
2433 * sysdeps/s390/s390-32/multiarch/memcmp.c: Delete File.
2435 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2437 * sysdeps/s390/s390-32/bzero.S: Delete file.
2438 * sysdeps/s390/s390-64/bzero.S: Likewise.
2439 * sysdeps/s390/Makefile (sysdep_routines): Add bzero.
2440 * sysdeps/s390/bzero.c: New file.
2441 * sysdeps/s390/memset-z900.S: Add bzero entry points.
2442 * sysdeps/s390/ifunc-memset.h: Add bzero function macros.
2443 * sysdeps/s390/multiarch/ifunc-impl-list.c
2444 (__libc_ifunc_impl_list): Add bzero ifunc variants.
2446 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2448 * sysdeps/s390/ifunc-memset.h: New File.
2449 * sysdeps/s390/memset.S: Move to ...
2450 * sysdeps/s390/memset-z900.S ... here.
2451 Move implementations from memset-s390x.s to here.
2452 * sysdeps/s390/multiarch/memset-s390x.S: Delete File.
2453 * sysdeps/s390/multiarch/Makefile (sysdep_routines):
2454 Remove memset variants.
2455 * sysdeps/s390/Makefile (sysdep_routines):
2456 Add memset variants.
2457 * sysdeps/s390/multiarch/ifunc-impl-list.c
2458 (__libc_ifunc_impl_list): Adjust ifunc variants for
2460 * sysdeps/s390/multiarch/memset.c: Move ifunc resolver
2462 * sysdeps/s390/memset.c: ... here.
2463 Adjust ifunc variants for memset.
2465 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2467 * sysdeps/s390/s390-64/memset.S: Move to ...
2468 * sysdeps/s390/memset.S: ... here.
2469 Adjust to be usable for 31/64bit.
2470 * sysdeps/s390/s390-32/memset.S: Delete File.
2471 * sysdeps/s390/multiarch/Makefile (sysdep_routines): Add memset.
2472 * sysdeps/s390/s390-32/multiarch/Makefile (sysdep_routines):
2474 * sysdeps/s390/s390-64/multiarch/Makefile: Likewise.
2475 * sysdeps/s390/s390-64/multiarch/memset-s390x.S: Move to ...
2476 * sysdeps/s390/multiarch/memset-s390x.S: ... here.
2477 Adjust to be usable for 31/64bit.
2478 * sysdeps/s390/s390-32/multiarch/memset-s390.S: Delete File.
2479 * sysdeps/s390/s390-64/multiarch/memset.c: Move to ...
2480 * sysdeps/s390/multiarch/memset.c: ... here.
2481 * sysdeps/s390/s390-32/multiarch/memset.c: Delete File.
2483 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2485 * sysdeps/s390/multiarch/ifunc-resolve.h
2486 (s390_libc_ifunc_init, s390_libc_ifunc,
2487 s390_vx_libc_ifunc2_redirected): Use hwcap instead of dl_hwcap.
2489 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2491 * config.h.in (HAVE_S390_MIN_Z10_ZARCH_ASM_SUPPORT): New undefine.
2492 * sysdeps/s390/configure.ac: Add check for z10 support.
2493 * sysdeps/s390/configure: Regenerated.
2495 2018-12-18 H.J. Lu <hongjiu.lu@intel.com>
2497 * sysdeps/i386/atomic-machine.h: Merged with ...
2498 * sysdeps/x86_64/atomic-machine.h: To ...
2499 * sysdeps/x86/atomic-machine.h: This. New file.
2501 2018-12-18 Florian Weimer <fweimer@redhat.com>
2503 Rewrite locale/gen-translit.pl in Python.
2504 * locale/Makefile (generated): Add C-translit.h.
2505 (before-compile): Add $(objpfx)C-translit.h.
2506 (C-translit.h): Move to $(objpfx). Create target directory.
2507 Build using Python script.
2508 * locale/gen-translit.py: New file.
2509 * locale/gen-translit.pl: Remove file.
2510 * locale/C-translit.h.in: Change comment character to '#' for
2511 easier parsing without a C preprocessor.
2512 * locale/C-translit.h: Remove generated file.
2513 * manual/install.texi (Tools for Compilation): Do not mention
2515 * scripts/build-many-glibcs.py (Context.fix_glibc_timestamps):
2516 Remove locale/C-translit.h.
2517 * scripts/update-copyrights: Likewise.
2518 * INSTALL: Regenerate.
2520 2018-12-18 Florian Weimer <fweimer@redhat.com>
2523 * localedata/locales/bi_VU: Remove executable bit from file.
2525 2018-12-17 Albert ARIBAUD <albert.aribaud@3adev.fr>
2528 (__localtime64): Add.
2529 * manual/maint.texi: Document Y2038 symbol handling.
2531 (__localtime64): Add.
2532 [__TIMESIZE != 64] (__localtime): Turn into a wrapper.
2534 2018-12-17 Joseph Myers <joseph@codesourcery.com>
2536 * sysdeps/unix/sysv/linux/ia64/sysdep.h (ASM_CLOBBERS_6_COMMON):
2539 * scripts/glibcextract.py (compare_macro_consts): Take parameters
2540 to allow extra macros from first or second sources.
2541 * sysdeps/unix/sysv/linux/tst-mman-consts.py: New file.
2542 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
2543 (tests-special): Add $(objpfx)tst-mman-consts.out.
2544 ($(objpfx)tst-mman-consts.out): New makefile target.
2546 2018-12-17 Mao Han <han_mao@c-sky.com>
2548 * sysdeps/unix/sysv/linux/Makefile: Add statx_cp.c.
2549 * sysdeps/unix/sysv/linux/fxstat64.c: Add conditionals for kernel
2550 without stat64 system call support.
2551 * sysdeps/unix/sysv/linux/fxstatat64.c: Likewise.
2552 * sysdeps/unix/sysv/linux/generic/wordsize-32/fxstat.c: Likewise.
2553 * sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c: Likewise.
2554 * sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat.c: Likewise.
2555 * sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat64.c: Likewise.
2556 * sysdeps/unix/sysv/linux/generic/wordsize-32/xstat.c: Likewise.
2557 * sysdeps/unix/sysv/linux/generic/wordsize-32/xstat64.c: Likewise.
2558 * sysdeps/unix/sysv/linux/mips/mips64/statx_cp.c: New file.
2559 * sysdeps/unix/sysv/linux/statx_cp.c: Likewise.
2560 * sysdeps/unix/sysv/linux/statx_cp.h: Likewise.
2561 * sysdeps/unix/sysv/linux/wordsize-64/statx_cp.c: Likewise.
2563 2018-12-15 Paul Eggert <eggert@cs.ucla.edu>
2565 regex: fix storage-exhaustion error
2567 * posix/regexec.c (get_subexp):
2568 Do not continue if storage is exhausted.
2570 2018-12-15 Assaf Gordon <assafgordon@gmail.com>
2572 regex: fix heap-use-after-free error
2574 Problem reported by Saito Takaaki <tails.saito@gmail.com> in
2575 https://debbugs.gnu.org/32592
2576 Call stack get_subexp->get_subexp_sub->clean_state_log_if_needed may
2577 call extend_buffers which reallocates the re_string_t internal buffer.
2578 Local variable 'buf' was not updated in such case, resulting in
2580 * posix/regexec.c (get_subexp): Update 'buf' after call to
2583 2018-12-15 Florian Weimer <fweimer@redhat.com>
2585 * support/blob_repeat.c (check_mul_overflow_size_t): New function.
2586 (minimum_stride_size): Use it.
2587 (support_blob_repeat_allocate): Likewise.
2589 2018-12-14 Joseph Myers <joseph@codesourcery.com>
2591 * sysdeps/x86/fpu/bits/mathinline.h (asinh): Remove inline
2596 2018-12-14 Florian Weimer <fweimer@redhat.com>
2598 * manual/process.texi (Process Creation Concepts): Remove
2599 documentation of process (ID) lifetime. List more process
2600 creation functions. Reference Process Identification section.
2601 (Process Identification): Add information about process ID
2602 lifetime. Describe Linux thread/task IDs.
2603 * manual/signal.texi (Signaling Another Process): Mention that the
2604 signal is always sent to the process.
2606 2018-12-14 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
2608 * misc/Makefile (tests): Remove tst-efgcvt. Add tst-dbl-efgcvt
2609 and tst-ldbl-efgcvt.
2610 * misc/tst-efgcvt.c: Renamed to misc/tst-efgcvt-template.c.
2611 * misc/tst-efgcvt-template.c: Renamed from misc/tst-efgcvt.c.
2612 (struct testcase, efcvt_func, efcvt_r_func, ecvt_tests)
2613 (fcvt_tests, output_error, output_r_error, do_test): Use the
2614 macros defined in tst-dbl-efgcvt.c and tst-ldbl-efgcvt.c to:
2615 select the type of floating-point variables and arguments; to
2616 produce extra tests for double and conversion specifiers for
2617 printf; and to set the names of called functions.
2618 * misc/tst-dbl-efgcvt.c: New file that defines the macros used
2619 in tst-efgcvt-template.c.
2620 * misc/tst-ldbl-efgcvt.c: Likewise.
2622 2018-12-14 Stefan Liebler <stli@linux.ibm.com>
2624 * nss/Makefile (tst-nss-test3.out): New rule.
2626 2018-12-13 Joseph Myers <joseph@codesourcery.com>
2628 * sysdeps/mach/hurd/i386/init-first.c (_hurd_stack_setup): Do not
2631 2018-12-13 fanjinke <fanjinke@hygon.cn>
2633 * sysdeps/x86/cpu-features.c (init_cpu_features): Check for
2636 2018-12-13 Andreas Schwab <schwab@suse.de>
2639 * nptl/pthread_rwlock_common.c: Reindent. Fix typos.
2640 (__pthread_rwlock_rdlock_full): Update expected value for
2641 __readers while waiting on PTHREAD_RWLOCK_RWAITING.
2642 * nptl/tst-rwlock-pwn.c: New file.
2643 * nptl/Makefile (tests): Add tst-rwlock-pwn.
2645 2018-12-12 Joseph Myers <joseph@codesourcery.com>
2647 * sysdeps/x86/fpu/bits/mathinline.h (hypot): Remove inline
2650 2018-12-12 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
2652 * benchtests/scripts/compare_bench.py (do_compare): write to
2653 stderr in casestat is not present.
2654 * benchtests/scripts/compare_bench.py (plot_graphs): write to
2655 stderr in case timings field is not present. Also string showing
2656 the output filename goes into the stderr.
2658 2018-12-12 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
2660 * benchtests/scripts/compare_bench.py (do_compare): Catch KeyError
2661 and ZeroDivisorError exceptions.
2662 * benchtests/scripts/compare_bench.py (compare_runs): Use stats
2663 argument to loop through user provided statistics.
2664 * benchtests/scripts/compare_bench.py (main): Include the --stats
2667 2018-12-12 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
2669 * benchtests/scripts/compare_bench.py (compare_runs): Continue
2672 2018-12-12 Florian Weimer <fweimer@redhat.com>
2674 * sysdeps/posix/timespec_get.c: Add missing “any later version”
2675 clause to copyright header.
2677 2018-12-12 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
2680 * sysdeps/powerpc/powerpc64/addmul_1.S (FUNC): Add CFI offset for
2681 registers saved in the stack frame.
2682 * sysdeps/powerpc/powerpc64/lshift.S (__mpn_lshift): Likewise.
2683 * sysdeps/powerpc/powerpc64/mul_1.S (__mpn_mul_1): Likewise.
2685 2018-12-11 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
2687 * include/bits/monetary-ldbl.h: New file.
2688 * include/bits/printf-ldbl.h: Likewise.
2689 * include/bits/stdio-ldbl.h: Likewise.
2690 * include/bits/stdlib-ldbl.h: Likewise.
2691 * include/bits/syslog-ldbl.h: Likewise.
2692 * include/bits/wchar-ldbl.h: Likewise.
2694 2018-12-11 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
2696 * libio/libio.h: Remove redirection for _IO_vfprintf.
2698 2018-12-11 Andreas Schwab <schwab@suse.de>
2700 * Makerules: Remove all references to abilist-pattern.
2701 (update-all-abi): Simplify find expression.
2703 2018-12-11 Szabolcs Nagy <szabolcs.nagy@arm.com>
2706 * math/auto-libm-test-in: Add new test case.
2707 * math/auto-libm-test-out-pow: Regenerated.
2708 * sysdeps/ieee754/flt-32/e_powf.c (__powf): Fix overflow check.
2710 2018-12-10 DJ Delorie <dj@redhat.com>
2713 * support/test-container.c: Move postclean step to before we
2716 2018-12-10 Joseph Myers <joseph@codesourcery.com>
2718 * scripts/gen-as-const.py (main): Handle --python option.
2719 * scripts/gen-py-const.awk: Remove.
2720 * Makerules (py-const-script): Use gen-as-const.py.
2721 ($(py-const)): Likewise.
2722 * nptl/nptl-printers.py (MutexPrinter.read_status_no_robust): Mask
2723 with 0xffffffff together with ~(PTHREAD_MUTEX_PRIO_CEILING_MASK).
2724 (MutexAttributesPrinter.read_values): Mask with 0xffffffff
2725 together with ~PTHREAD_MUTEXATTR_FLAG_BITS and
2726 ~PTHREAD_MUTEX_NO_ELISION_NP.
2727 * manual/README.pretty-printers: Update reference to
2730 * scripts/glibcextract.py: New file.
2731 * scripts/gen-as-const.py: Do not import os.path, re, subprocess
2732 or tempfile. Import glibcexctract.
2733 (compute_c_consts): Remove. Moved to glibcextract.py.
2734 (gen_test): Update reference to compute_c_consts.
2736 * sysdeps/unix/sysv/linux/tst-signal-numbers.py: New file.
2737 * sysdeps/unix/sysv/linux/tst-signal-numbers.sh: Remove.
2738 * sysdeps/unix/sysv/linux/Makefile
2739 ($(objpfx)tst-signal-numbers.out): Use tst-signal-numbers.py.
2740 Redirect stderr as well as stdout.
2742 2018-12-10 Rafael Ávila de Espíndola <rafael@espindo.la>
2745 * sysdeps/unix/sysv/linux/mips/init-first.c: Remove #ifdef SHARED.
2746 * sysdeps/unix/sysv/linux/mips/libc-vdso.h: Remove #ifdef SHARED.
2747 * sysdeps/unix/sysv/linux/mips/mips32/sysdep.h: Define
2748 ALWAYS_USE_VSYSCALL.
2749 * sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h: Define
2750 ALWAYS_USE_VSYSCALL.
2751 * sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h: Define
2752 ALWAYS_USE_VSYSCALL.
2754 2018-12-10 Florian Weimer <fweimer@redhat.com>
2757 * sysdeps/unix/sysv/linux/getdents64.c (handle_overflow): Check
2758 offset instead of count for clarity. Fix typo in comment.
2759 (__old_getdents64): Keep track of previous offset. Use it to call
2761 * sysdeps/unix/sysv/linux/tst-readdir64-compat.c (do_test): Check
2762 that d_off is never zero.
2764 2018-12-10 Andreas Schwab <schwab@suse.de>
2766 * sysdeps/unix/sysv/linux/powerpc/powerpc64/*-le.abilist: Move to
2767 sysdeps/unix/sysv/linux/powerpc/powerpc64/le/*.abilist.
2768 * sysdeps/unix/sysv/linux/powerpc/powerpc64/*.abilist: Move to
2769 sysdeps/unix/sysv/linux/powerpc/powerpc64/be/*.abilist.
2770 * sysdeps/powerpc/Makefile (abilist-pattern): Don't define.
2772 2018-12-10 Joseph Myers <joseph@codesourcery.com>
2774 * timezone/private.h: Update from tzcode 2018g.
2775 * timezone/tzfile.h: Likewise.
2776 * timezone/tzselect.ksh: Likewise.
2777 * timezone/zdump.c: Likewise.
2778 * timezone/zic.c: Likewise.
2780 2018-12-08 Paul Pluzhnikov <ppluzhnikov@google.com>
2783 * sysdeps/unix/sysv/linux/x86/tst-cet-property-2.c
2784 (do_test): Adjust buffer size and fix format.
2786 2018-12-07 DJ Delorie <dj@redhat.com>
2789 * malloc/tst-tcfree3.c: New.
2790 * malloc/Makefile: Add it.
2792 2018-12-07 H.J. Lu <hongjiu.lu@intel.com>
2794 * include/sched.h (__getcpu): Don't use __typeof__ (getcpu).
2796 2018-12-07 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
2798 * libio/libioP.h (SCANF_LDBL_USES_FLOAT128): New macro to be
2799 used as a mask for the mode argument of __vfscanf_internal and
2800 __vfwscanf_internal.
2801 * stdio-common/vfscanf-internal.c
2802 [defined COMPILE_WSCANF && __HAVE_FLOAT128_UNLIKE_LDBL]
2803 (__strtof128_internal): Define to __wcstof128_internal.
2804 [__HAVE_FLOAT128_UNLIKE_LDBL] (__vfscanf_internal): Call
2805 __strtof128_internal or __wcstof128_internal when the format of
2806 long double is the same as _Float128.
2808 2018-12-05 Samuel Thibault <samuel.thibault@ens-lyon.org>
2810 * include/unistd.h (__confstr): Add prototype and hidden prototype.
2811 * posix/confstr.c (confstr): Rename to __confstr.
2812 (__confstr): Add hidden def.
2813 (confstr): Add weak alias for __confstr.
2814 * sysdeps/mach/hurd/spawni.c (__spawni): Call __confstr instead of
2817 2018-12-07 H.J. Lu <hongjiu.lu@intel.com>
2819 * NEWS: Mention getcpu.
2820 * include/sched.h (__getcpu): New libc_hidden_proto.
2821 * manual/resource.texi: Document getcpu.
2822 * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add getcpu.
2823 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.29): Add getcpu.
2824 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Add getcpu.
2825 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
2826 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
2827 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
2828 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
2829 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
2830 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
2831 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
2832 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
2833 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
2834 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist:
2836 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
2837 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
2838 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
2839 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
2841 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
2843 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist:
2845 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist:
2847 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist: Likewise.
2848 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
2849 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
2850 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
2851 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
2852 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
2853 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
2854 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
2855 * sysdeps/unix/sysv/linux/bits/sched.h (getcpu): New prototype.
2856 * sysdeps/unix/sysv/linux/getcpu.c: New file.
2857 * sysdeps/unix/sysv/linux/tst-skeleton-affinity.c (test_size):
2860 2018-12-07 Samuel Thibault <samuel.thibault@ens-lyon.org>
2862 * sysdeps/mach/hurd/spawni.c (child_lookup_under, child_fchdir): New
2864 (__spawni): Handle spawn_do_fchdir by calling child_fchdir.
2866 2018-12-07 Florian Weimer <fweimer@redhat.com>
2869 * posix/Makefile (routines): Add spawn_faction_addfchdir.
2870 * posix/Versions (GLIBC_2.29): Export
2871 posix_spawn_file_actions_addfchdir_np.
2872 * posix/spawn.h (posix_spawn_file_actions_addfchdir_np): Declare.
2873 * posix/spawn_faction_destroy.c
2874 (__posix_spawn_file_actions_destroy): Handle spawn_do_fchdir.
2875 * posix/spawn_int.h (struct __spawn_action): Add spawn_do_fchdir
2876 and the field action.fchdir_action.
2877 * posix/tst-spawn-chdir.c (add_chdir): New function.
2878 (do_test): Add do_fchdir loop. Call add_chdir.
2879 * sysdeps/posix/spawni.c (__spawni_child): Handle spawn_do_fchdir.
2880 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Likewise.
2881 * sysdeps/mach/hurd/i386/libc.abilist (GLIBC_2.29): Add
2882 posix_spawn_file_actions_addfchdir_np.
2883 * sysdeps/unix/sysv/linux/aarch64/libc.abilist (GLIBC_2.29):
2885 * sysdeps/unix/sysv/linux/alpha/libc.abilist (GLIBC_2.29):
2887 * sysdeps/unix/sysv/linux/arm/libc.abilist (GLIBC_2.29): Likewise.
2888 * sysdeps/unix/sysv/linux/hppa/libc.abilist (GLIBC_2.29):
2890 * sysdeps/unix/sysv/linux/i386/libc.abilist (GLIBC_2.29):
2892 * sysdeps/unix/sysv/linux/ia64/libc.abilist (GLIBC_2.29):
2894 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist (GLIBC_2.29):
2896 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist (GLIBC_2.29):
2898 * sysdeps/unix/sysv/linux/microblaze/libc.abilist (GLIBC_2.29):
2900 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist
2901 (GLIBC_2.29): Likewise.
2902 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist
2903 (GLIBC_2.29): Likewise.
2904 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist
2905 (GLIBC_2.29): Likewise.
2906 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist
2907 (GLIBC_2.29): Likewise.
2908 * sysdeps/unix/sysv/linux/nios2/libc.abilist (GLIBC_2.29):
2910 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist
2911 (GLIBC_2.29): Likewise.
2912 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist
2913 (GLIBC_2.29): Likewise.
2914 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist
2915 (GLIBC_2.29): Likewise.
2916 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist
2917 (GLIBC_2.29): Likewise.
2918 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist (GLIBC_2.29):
2920 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist (GLIBC_2.29):
2922 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist (GLIBC_2.29):
2924 * sysdeps/unix/sysv/linux/sh/libc.abilist (GLIBC_2.29): Likewise.
2925 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist (GLIBC_2.29):
2927 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist (GLIBC_2.29):
2929 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist (GLIBC_2.29):
2931 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist (GLIBC_2.29):
2934 2018-12-06 Joseph Myers <joseph@codesourcery.com>
2936 * manual/texinfo.tex: Update to version 2018-09-21.20 with
2937 trailing whitespace removed.
2938 * scripts/config.guess: Update to version 2018-11-28.
2939 * scripts/config.sub: Update to version 2018-11-28.
2940 * scripts/install-sh: Update to version 2018-03-11.20.
2941 * scripts/mkinstalldirs: Update to version 2018-03-07.03.
2942 * scripts/move-if-change: Update to version 2018-03-07 03:47.
2944 2018-12-07 Florian Weimer <fweimer@redhat.com>
2948 * inet/tst-if_index-long.c: New file.
2949 * inet/Makefile (tests): Add tst-if_index-long.
2951 2018-12-07 Florian Weimer <fweimer@redhat.com>
2953 * support/check.h (support_record_failure_is_failed): Declare.
2954 * support/descriptors.h: New file.
2955 * support/support_descriptors.c: Likewise.
2956 * support/tst-support_descriptors.c: Likewise.
2957 * support/support_record_failure.c
2958 (support_record_failure_is_failed): New function.
2959 * support/Makefile (libsupport-routines): Add support_descriptors.
2960 (tests): Add tst-support_descriptors.
2962 2018-12-05 Zack Weinberg <zackw@panix.com>
2963 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
2965 * stdio-common/vfprintf-internal.c
2966 (__vfprintf_internal, __vfwprintf_internal): Don't use __ldbl_is_dbl.
2967 * sysdeps/generic/math_ldbl_opt.h: Remove __ldbl_is_dbl.
2968 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Remove __ldbl_is_dbl
2969 and __no_long_double.
2970 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.c: Remove file.
2971 * sysdeps/ieee754/ldbl-opt/Makefile (routines): Remove math_ldbl_opt.
2972 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Remove
2973 libc_hidden_proto and libc_hidden_def from all __nldbl_*printf*
2974 and __nldbl_*syslog* functions.
2975 (__nldbl_cleanup, set_no_long_double, clear_no_long_double): Remove.
2976 (__nldbl___asprintf, __nldbl_dprintf, __nldbl_fprintf)
2977 (__nldbl_fwprintf, __nldbl_printf, __nldbl_sprintf)
2978 (__nldbl_vfprintf, __nldbl___vsprintf, __nldbl_obstack_vprintf)
2979 (__ndlbl_obstack_printf, __nldbl_snprintf, __nldbl_swprintf)
2980 (__nldbl_vasprintf, __nldbl_vdprintf, __nldbl_vfwprintf)
2981 (__nldbl_vprintf, __nldbl_vsnprintf, __ndlbl_vswprintf)
2982 (__nldbl_vwprintf, __nldbl_wprintf):
2983 Directly call the appropriate __v*printf_internal routine, passing
2984 PRINTF_LDBL_IS_DBL. Do not mess with __no_long_double. Normalize
2986 (__nldbl___fprintf_chk, __nldbl___fwprintf_chk)
2987 (__nldbl___printf_chk, __nldbl___snprintf_chk)
2988 (__nldbl___sprintf_chk, __nldbl___swprintf_chk)
2989 (__nldbl___vfprintf_chk, __nldbl___vfwprintf_chk)
2990 (__nldbl___vprintf_chk, __nldbl___vsnprintf_chk)
2991 (__nldbl___vsprintf_chk, __nldbl___vswprintf_chk)
2992 (__nldbl___vwprintf_chk, __nldbl___wprintf_chk)
2993 (__nldbl___vasprintf_chk, __nldbl___asprintf_chk)
2994 (__nldbl___vdprintf_chk, __nldbl___dprintf_chk)
2995 (__nldbl___obstack_vprintf_chk, __nldbl___obstack_printf_chk):
2996 Likewise, and also pass PRINTF_FORTIFY when appropriate.
2997 (__nldbl_syslog, __nldbl_vsyslog):
2998 Directly call __vsyslog_internal, passing PRINTF_LDBL_IS_DBL.
2999 (__nldbl_syslog_chk): Likewise, and also pass PRINTF_FORTIFY when
3001 (__nldbl_vsyslog_chk): Likewise, and also pass PRINTF_FORTIFY when
3004 2018-12-05 Zack Weinberg <zackw@panix.com>
3005 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3008 * libio/iovsprintf.c (_IO_str_chk_overflow, libio_vtable):
3009 Moved here from debug/vsprintf_chk.c.
3010 (__vsprintf_internal): Add 'maxlen' argument. Change the setup
3011 and completion logic for the strfile to match exactly what
3012 __vsprintf_chk used to do, except, when maxlen is -1, pass -1 to
3013 _IO_str_init_static_internal instead of maxlen-1.
3014 (__vsprintf): Pass -1 as maxlen to __vsprintf_internal.
3015 * stdio-common/sprintf.c (__sprintf): Pass -1 as maxlen to
3016 __vsprintf_internal.
3018 * debug/vsprintf_chk.c (__vsprintf_chk)
3019 * debug/sprintf_chk.c (__sprintf_chk):
3020 Directly call __vsprintf_internal, passing PRINTF_FORTIFY if
3021 'flags' argument is positive, and slen as maxlen. No need to lock
3022 the FILE and/or construct a temporary FILE. Minimize and normalize
3023 header inclusions and variable names. Do not libc_hidden_def anything.
3025 * debug/asprintf_chk.c (__asprintf_chk)
3026 * debug/dprintf_chk.c (__dprintf_chk)
3027 * debug/fprintf_chk.c (__fprintf_chk)
3028 * debug/fwprintf_chk.c (__fwprintf_chk)
3029 * debug/printf_chk.c (__printf_chk)
3030 * debug/snprintf_chk.c (__snprintf_chk)
3031 * debug/swprintf_chk.c (__swprintf_chk)
3032 * debug/vasprintf_chk.c (__vasprintf_chk)
3033 * debug/vdprintf_chk.c (__vdprintf_chk)
3034 * debug/vfprintf_chk.c (__vfprintf_chk)
3035 * debug/vfwprintf_chk.c (__vfwprintf_chk)
3036 * debug/vprintf_chk.c (__vprintf_chk)
3037 * debug/vsnprintf_chk.c (__vsnprintf_chk)
3038 * debug/vswprintf_chk.c (__vswprintf_chk)
3039 * debug/vwprintf_chk.c (__vwprintf_chk)
3040 * debug/wprintf_chk.c (__wprintf_chk):
3041 Directly call the corresponding vxxprintf_internal function, passing
3042 PRINTF_FORTIFY if 'flag' argument is positive. No need to lock
3043 the FILE and/or construct a temporary FILE. Minimize and normalize
3044 header inclusions and variable names. Do not libc_hidden_def anything.
3046 * debug/obprintf_chk.c (__obstack_printf_chk): Directly call
3047 __obstack_vprintf_internal.
3048 (__obstack_vprintf_chk): Convert into a wrapper that calls
3049 __obstack_vprintf_internal (these two functions already had the
3050 same code) and move to new file...
3051 * debug/vobprintf_chk.c (__obstack_vprintf_chk): ... here. New
3053 * debug/obprintf.c (__obstack_vprintf_internal): Remove the checking of
3054 the flags argument and the setting of _IO_FLAGS2_FORTIFY.
3055 * debug/Makefile (routines): Add vobprintf_chk.
3057 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c
3058 (__nldbl___vsprintf): Pass -1 as maxlen to __vsprintf_internal.
3059 (__nldbl___vfprintf_chk, __nldbl___vsnprintf_chk)
3060 (__nldbl___vsprintf_chk, __nldbl___vswprintf_chk)
3061 (__nldbl___vasprintf_chk, __nldbl___vdprintf_chk)
3062 (__nldbl___obstack_vfprintf_chk):
3063 Directly call the corresponding vxxprintf_internal function,
3064 passing PRINTF_FORTIFY if 'flag' argument is positive. If necessary,
3065 duplicate comparison of slen with 0 or maxlen from the corresponding
3066 non-__nldbl function.
3068 * include/stdio.h (__vsnprintf_chk, __vfprintf_chk, __vasprintf_chk)
3069 (__vdprintf_chk, __obstack_vfprintf_chk): Remove libc_hidden_proto.
3070 * include/wchar.h (__vfwprintf_chk, __vswprintf_chk):
3071 Remove libc_hidden_proto.
3073 * stdio-common/vfprintf-internal.c
3074 (__vfprintf_internal, __vfwprintf_internal):
3075 Do not check _IO_FLAGS2_FORTIFY.
3076 * libio/libio.h (_IO_FLAGS2_FORTIFY): Remove.
3077 * libio/libioP.h: Update prototype of __vsprintf_internal and add
3078 a comment explaining why it has the maxlen argument.
3079 (_IO_acquire_lock_clear_flags2_fct): Remove.
3080 (_IO_acquire_lock_clear_flags2): Remove.
3081 (_IO_release_lock): Remove conditional statement which will
3083 (_IO_acquire_lock): Remove variable which is now unused.
3084 * sysdeps/generic/stdio-lock.h (_IO_acquire_lock_clear_flags2): Remove.
3085 * sysdeps/nptl/stdio-lock.h (_IO_acquire_lock_clear_flags2): Remove.
3087 * stdio-common/Makefile (tests): Add tst-bz11319 and
3088 tst-bz11319-fortify2.
3089 (CFLAGS-tst-bz11319-fortify2.c): New macro.
3090 * stdio-common/tst-bz11319-fortify2.c: New file.
3091 * stdio-common/tst-bz11319.c: Likewise.
3093 2018-12-05 Zack Weinberg <zackw@panix.com>
3094 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3096 * misc/syslog.c: Include libioP.h, not iolibio.h.
3097 (__vsyslog_internal): New function with the former body of
3098 __vsyslog_chk; takes mode_flags argument same as
3099 __v*printf_internal. Call __vfprintf_internal directly.
3101 (__vsyslog_chk): Now a wrapper around __vsyslog_internal.
3102 Remove libc_hidden_def.
3103 (__syslog, __syslog_chk): Use __vsyslog_internal.
3104 (__vsyslog): Move to just below __syslog. Use __vsyslog_internal.
3106 * include/sys/syslog.h: Add multiple inclusion guard.
3107 Add prototype for __vsyslog_internal.
3108 Remove declaration and libc_hidden_proto for __vsyslog_chk.
3110 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c (__nldbl___vsyslog_chk):
3111 Use __vsyslog_internal.
3113 2018-12-05 Zack Weinberg <zackw@panix.com>
3114 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3116 * libio/libioP.h (__vfprintf_internal, __vfwprintf_internal)
3117 (__vasprintf_internal, __vdprintf_internal, __obstack_vprintf_internal)
3118 (__vsprintf_internal, __vsnprintf_internal, __vswprintf_internal):
3120 (PRINTF_LDBL_IS_DBL, PRINTF_FORTIFY): New constants.
3121 (_IO_vasprintf, _IO_vdprintf, _IO_vsnprintf): Remove prototypes.
3123 * stdio-common/vfprintf-internal.c: Rename from vfprintf.c.
3124 Include wctype.h here if COMPILE_WPRINTF is defined.
3125 Define __vfprintf_internal or __vfwprintf_internal, depending
3127 Temporarily, on entry to this function, update mode_flags
3128 according to the environmental settings corresponding to
3129 PRINTF_LDBL_IS_DBL and PRINTF_FORTIFY.
3130 Throughout, check mode_flags instead of __ldbl_is_dbl and
3131 _IO_FLAGS2_FORTIFY on the destination FILE.
3132 * stdio-common/vfwprintf-internal.c: Rename from vfwprintf.c.
3133 Include vfprintf-internal.c. Don't include wctype.h.
3134 * stdio-common/vfprintf.c: New file. Just define __vfprintf
3135 as a wrapper around __vfprintf_internal, with aliases _IO_vfprintf
3137 * stdio-common/vfwprintf.c: New file. Just define __vfwprintf
3138 as a wrapper around __vfwprintf_internal, with aliases _IO_vfwprintf
3140 * stdio-common/Makefile: Add vfprintf-internal and vfwprintf-internal.
3142 * libio/iovdprintf.c (_IO_vdprintf): Rename to __vdprintf_internal
3143 and add mode_flags argument; use __vfprintf_internal.
3144 (__vdprintf): New function. Alias vdprintf to this.
3145 * libio/iovsprintf.c (_IO_vsprintf, __vsprintf): Similarly.
3146 * libio/vasprintf.c (_IO_vasprintf, __vasprintf): Similarly.
3147 * libio/obprintf.c (_IO_obstack_vprintf, __obstack_vprintf): Similarly.
3148 (__obstack_printf): Use __obstack_printf_internal.
3149 * libio/vsnprintf.c (_IO_vsnprintf, ___vsnprintf): Similarly, with
3150 public aliases __vsnprintf and vsnprintf.
3151 Remove use of ldbl_hidden_def, since __vsnprintf is no longer
3153 * libio/vswprintf (_IO_vswprintf, __vswprintf): Similarly, with
3154 public aliases _IO_vsprintf and vsprintf.
3155 * libio/swprintf.c (__swprintf): Use __vswprintf_internal.
3156 * stdio-common/asprintf.c (__asprintf): Use __vasprintf_internal.
3157 * stdio-common/dprintf.c (__dprintf): Use __vdprintf_internal.
3158 * stdio-common/snprintf.c (__snprintf): Use __vsprintf_internal.
3159 * stdio-common/sprintf.c (__sprintf): Use __vsprintf_internal.
3161 * debug/obprintf_chk.c, debug/vasprintf_chk.c, debug/vdprintf_chk.c
3162 * debug/vsnprintf_chk.c, debug/vsprintf_chk.c, hurd/vpprintf.c
3163 * stdio-common/fprintf.c, stdio-common/fxprintf.c
3164 * stdio-common/printf.c: Use __vfprintf_internal.
3166 * debug/fwprintf_chk.c, debug/vfwprintf_chk.c, debug/vswprintf_chk.c
3167 * debug/vwprintf_chk.c, debug/wprintf_chk.c, libio/fwprintf.c
3168 * libio/vwprintf.c, libio/wprintf.c: Use __vfwprintf_internal.
3170 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Use __vsprintf_internal,
3171 __obstack_vprintf_internal, __vasprintf_internal, __vdprintf_internal,
3172 __vsnprintf_internal, __vswprintf_internal, __vfprintf_internal, and
3173 __vfwprintf_internal.
3175 * libio/libio.h: Remove libc_hidden_proto and declaration for
3177 Remove declaration of _IO_vfwprintf.
3178 * libio/iolibio.h: Remove libc_hidden_proto and declaration for
3180 Remove declarations of _IO_vswprintf, _IO_obstack_printf, and
3182 * include/stdio.h: Add prototype for __vasprintf.
3183 (__vsnprintf): Remove declaration, because there are no more
3185 * include/wchar.h (__vfwprintf, __vswprintf): Remove
3186 declaration, because there are no more internal calls.
3188 * argp/argp-fmtstream.c (__argp_fmtstream_printf): Use
3189 __vsnprintf_internal, instead of _IO_vsnprintf.
3190 * argp/argp-help.c (__argp_error, __argp_failure): Use
3191 __vasprintf_internal, instead of _IO_vasprintf.
3192 * argp/argp-namefrob.h (__vsnprintf): Do not undefined then
3193 redefine, because there are no more internal calls.
3195 2018-12-05 Zack Weinberg <zackw@panix.com>
3196 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3198 * stdio-common/vfscanf-internal.c: Don't look at __ldbl_is_dbl.
3199 * sysdeps/ieee754/ldbl-opt/ndlbl-compat.c:
3200 Include libio/strfile.h instead of libioP.h.
3201 (__nldbl_IO_vfscanf, __ndlbl___vfscanf, __nldbl_sscanf)
3202 (__nldbl___vsscanf, __nldbl_vscanf, __nldbl_fscanf)
3203 (__nldbl_scanf, __nldbl_vfwscanf, __nldbl_swscanf)
3204 (__nldbl_vswscanf, __nldbl_vwscanf, __nldbl_fwscanf)
3205 (__nldbl_wscanf): Call __vfscanf_internal / __vfwscanf_internal
3206 directly, passing SCANF_LDBL_IS_DBL. Set up a strfile if
3207 necessary. Do not set __no_long_double. Normalize variable names.
3208 (__nldbl___isoc99_vfscanf, __nldbl___isoc99_sscanf)
3209 (__nldbl___isoc99_vsscanf, __nldbl___isoc99_vscanf)
3210 (__nldbl___isoc99_fscanf, __nldbl___isoc99_scanf)
3211 (__nldbl___isoc99_vfwscanf, __nldbl___isoc99_swscanf)
3212 (__nldbl___isoc99_vswscanf, __nldbl___isoc99_vwscanf)
3213 (__nldbl___isoc99_fwscanf, __nldbl___isoc99_wscanf):
3214 Call __vfscanf_internal / __vfwscanf_internal directly, passing
3215 SCANF_LDBL_IS_DBL | SCANF_ISOC99_A. Set up a strfile if necessary.
3216 Do not set __no_long_double. Normalize variable names.
3218 2018-12-05 Zack Weinberg <zackw@panix.com>
3219 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3221 * stdio-common/isoc99_scanf.c
3222 * stdio-common/isoc99_fscanf.c
3223 * stdio-common/isoc99_sscanf.c
3224 * stdio-common/isoc99_vscanf.c
3225 * stdio-common/isoc99_vfscanf.c
3226 * stdio-common/isoc99_vsscanf.c
3227 * wcsmbs/isoc99_wscanf.c
3228 * wcsmbs/isoc99_fwscanf.c
3229 * wcsmbs/isoc99_swscanf.c
3230 * wcsmbs/isoc99_vwscanf.c
3231 * wcsmbs/isoc99_vfwscanf.c
3232 * wcsmbs/isoc99_vswscanf.c:
3233 Pass SCANF_ISOC99_A to __vfscanf_internal and/or __vfwscanf_internal.
3234 Do not set _IO_FLAGS2_SCANF_STD on the FILE passed to that function.
3235 No need to lock and unlock the FILE passed to that function.
3237 * stdio-common/vfscanf-internal.c
3238 (__vfscanf_internal, __vfwscanf_internal):
3239 Don't look at _IO_FLAGS2_SCANF_STD.
3240 * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct)
3241 (_IO_release_lock): Don't clear _IO_FLAGS2_SCANF_STD.
3242 * libio/libio.h (_IO_FLAGS2_SCANF_STD): Delete.
3244 2018-12-05 Zack Weinberg <zackw@panix.com>
3245 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3247 * libio/libioP.h (SCANF_LDBL_IS_DBL, SCANF_ISOC99_A): New constants.
3248 (__vfscanf_internal, __vfwscanf_internal): New function prototypes.
3249 * libio/libio.h: Remove libc_hidden_proto for _IO_vfscanf.
3250 * libio/strfile.h: Add multiple inclusion guard.
3251 (_IO_strfile_read, _IO_strfile_readw): New inline functions.
3253 * sysdeps/generic/math_ldbl_opt.h: Include shlib-compat.h, for
3254 consistency with the other version of this file.
3255 (ldbl_compat_symbol): New macro.
3256 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h (ldbl_compat_symbol):
3259 * stdio-common/vfscanf-internal.c: Rename from vfscanf.c.
3260 Define __vfscanf_internal or __vfwscanf_internal, depending on
3261 COMPILE_WSCANF; don't define any other public symbols.
3262 Remove errval and code to set errp.
3263 Temporarily check __ldbl_is_dbl and _IO_FLAGS2_SCANF_STD as well
3264 as the mode_flags argument.
3265 (encode_error, conv_error, input_error): Don't set errval.
3266 * stdio-common/vfwscanf-internal.c: Rename from vfwscanf.c.
3267 Include vfscanf-internal.c.
3268 * stdio-common/vfscanf.c: New file defining the public entry
3269 point vfscanf, which calls __vfscanf_internal.
3270 * stdio-common/vfwscanf.c: New file defining the public entry
3271 point vfwscanf, which calls __vfwscanf_internal.
3273 * stdio-common/iovfscanf.c: New file.
3274 * stdio-common/iovfwscanf.c: Likewise.
3276 * stdio-common/Makefile (routines): Add vfscanf-internal,
3277 vfwscanf-internal, iovfscanf, iovfwscanf.
3278 * stdio-common/Versions: Mention GLIBC_2.29, so that
3279 it can be used in SHLIB_COMPAT expressions.
3280 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c (__nldbl__IO_vfscanf):
3281 Wrap definition and compat_symbol line in #if SHLIB_COMPAT.
3282 Call __vfscanf_internal, instead of _IO_vfscanf.
3283 (__nldbl___vfscanf): Call __vfscanf_internal, instead of
3285 (__nldbl_vfwscanf): Call __vfwscanf_internal, instead of
3288 * libio/iovsscanf.c: Clean up includes, when possible. Use
3289 _IO_strfile_read or _IO_strfile_readw, when needed. Call
3290 __vfscanf_internal or __vfwscanf_internal directly.
3291 * libio/iovswscanf.c: Likewise.
3292 * libio/swscanf.c: Likewise.
3293 * libio/vscanf.c: Likewise.
3294 * libio/vwscanf.c: Likewise.
3295 * libio/wscanf.c: Likewise.
3296 * stdio-common/isoc99_fscanf.c: Likewise.
3297 * stdio-common/isoc99_scanf.c: Likewise.
3298 * stdio-common/isoc99_sscanf.c: Likewise.
3299 * stdio-common/isoc99_vfscanf.c: Likewise.
3300 * stdio-common/isoc99_vscanf.c: Likewise.
3301 * stdio-common/isoc99_vsscanf.c: Likewise.
3302 * stdio-common/scanf.c: Likewise.
3303 * stdio-common/sscanf.c: Likewise.
3304 * wcsmbs/isoc99_fwscanf.c: Likewise.
3305 * wcsmbs/isoc99_swscanf.c: Likewise.
3306 * wcsmbs/isoc99_vfwscanf.c: Likewise.
3307 * wcsmbs/isoc99_vswscanf.c: Likewise.
3308 * wcsmbs/isoc99_vwscanf.c: Likewise.
3309 * wcsmbs/isoc99_wscanf.c: Likewise.
3311 2018-12-05 Albert ARIBAUD <albert.aribaud@3adev.fr>
3314 (__tz_compute): Replace time_t with __time64_t.
3315 (__tz_convert): Replace time_t* with __time64_t.
3316 (__offtime): Replace time_t* with __time64_t.
3318 (__gmtime_r): Adjust call to __tz_convert.
3321 (__localtime_r): Likewise.
3322 (localtime): Likewise.
3323 * time/offtime.c: Replace time_t with __time64_t.
3324 * time/tzset.c: Likewise.
3326 2018-12-04 Joseph Myers <joseph@codesourcery.com>
3328 * Makefile ($(objpfx)testroot.pristine/install.stamp): Do not run
3329 dynamic linker unless [$(run-built-tests) = yes].
3331 2018-12-03 DJ Delorie <dj@delorie.com>
3333 * support/test-container.c (check_for_unshare_hints): New.
3334 (main): Call it if unshare fails. Add support for "su" scriptlet
3337 2018-12-03 Joseph Myers <joseph@codesourcery.com>
3339 * scripts/gen-as-const.py (compute_c_consts): Take an argument
3340 'START' to indicate that start text should be output.
3341 (gen_test): Likewise.
3342 (main): Generate 'START' for first symbol or '--' line, or at end
3343 of input if not previously generated.
3345 2018-12-03 Rafael Ávila de Espíndola <rafael@espindo.la>
3348 * sysdeps/unix/sysv/linux/arm/init-first.c: Remove #ifdef SHARED.
3349 * sysdeps/unix/sysv/linux/arm/libc-vdso.h: Remove #ifdef SHARED.
3350 * sysdeps/unix/sysv/linux/arm/sysdep.h: Define
3351 ALWAYS_USE_VSYSCALL.
3353 2018-12-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
3356 * sysdeps/posix/spawni.c (maybe_script_execute): Increment size of
3359 2018-12-03 Carlos O'Donell <carlos@redhat.com>
3362 * locale/programs/localedef.c: Declare boolean hard_links default true.
3363 (options): Add --no-hard-links option.
3364 (parse_opt): Add OPT_NO_HARD_LINKS case and set hard_links to false.
3365 * locale/programs/localedef.h: Declare prototype for hard_links.
3366 * locale/programs/locfile.c (write_locale_data): Don't use hard
3367 links if hard_links is false.
3369 2018-12-03 H.J. Lu <hongjiu.lu@intel.com>
3371 * sysdeps/x86/cacheinfo.c (intel_check_word): Updated for
3373 (__cache_sysconf): Likewise.
3374 (init_cacheinfo): Likewise.
3375 * sysdeps/x86/cpu-features.c (get_extended_indeces): Also
3376 populate COMMON_CPUID_INDEX_80000007 and
3377 COMMON_CPUID_INDEX_80000008.
3378 (get_common_indices): Also populate COMMON_CPUID_INDEX_D_ECX_1.
3379 Use CPU_FEATURES_CPU_P (cpu_features, XSAVEC) to check if
3380 XSAVEC is available. Set the bit_arch_XXX_Usable bits.
3381 (init_cpu_features): Use _Static_assert on
3382 index_arch_Fast_Unaligned_Load.
3383 __get_cpuid_registers and __get_arch_feature. Updated for
3384 cpu_features_basic. Set stepping in cpu_features.
3385 * sysdeps/x86/cpu-features.h: (FEATURE_INDEX_1): Changed to enum.
3386 (FEATURE_INDEX_2): New.
3387 (FEATURE_INDEX_MAX): Changed to enum.
3388 (COMMON_CPUID_INDEX_D_ECX_1): New.
3389 (COMMON_CPUID_INDEX_80000007): Likewise.
3390 (COMMON_CPUID_INDEX_80000008): Likewise.
3391 (cpuid_registers): Likewise.
3392 (cpu_features_basic): Likewise.
3393 (CPU_FEATURE_USABLE): Likewise.
3394 (bit_arch_XXX_Usable): Likewise.
3395 (cpu_features): Use cpuid_registers and cpu_features_basic.
3396 (bit_arch_XXX): Reweritten.
3397 (bit_cpu_XXX): Likewise.
3398 (index_cpu_XXX): Likewise.
3399 (reg_XXX): Likewise.
3400 * sysdeps/x86/tst-get-cpu-features.c: Include <stdio.h> and
3402 (CHECK_CPU_FEATURE): New.
3403 (CHECK_CPU_FEATURE_USABLE): Likewise.
3404 (cpu_kinds): Likewise.
3405 (do_test): Print vendor, family, model and stepping. Check
3406 HAS_CPU_FEATURE and CPU_FEATURE_USABLE.
3407 (TEST_FUNCTION): Removed.
3408 Include <support/test-driver.c> instead of
3409 "../../test-skeleton.c".
3410 * sysdeps/x86_64/multiarch/sched_cpucount.c (__sched_cpucount):
3411 Check POPCNT instead of POPCOUNT.
3412 * sysdeps/x86_64/multiarch/test-multiarch.c (do_test): Likewise.
3414 2018-12-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
3416 * scripts/gen-as-const.py (main): Avoid emitting empty line when
3417 there is no element in `consts'.
3419 2018-12-01 Florian Weimer <fweimer@redhat.com>
3421 * support/support_capture_subprocess.c
3422 (support_capture_subprocess): Check that pipe descriptors have
3423 expected values. Close original pipe descriptors in subprocess.
3425 2018-12-01 Samuel Thibault <samuel.thibault@ens-lyon.org>
3428 * sysdeps/htl/pt-barrier-init.c (pthread_barrier_init): Fix comparing
3429 attr with __pthread_default_barrierattr.
3430 * sysdeps/htl/pt-cond-init.c (__pthread_cond_init): Fix comparing
3431 attr with __pthread_default_condattr.
3432 * sysdeps/htl/pt-mutex-init.c (_pthread_mutex_init): Fix comparing
3433 attr with __pthread_default_mutexattr.
3434 * sysdeps/htl/pt-rwlock-init.c (_pthread_rwlock_init): Fix comparing
3435 attr with __pthread_default_rwlockattr.
3437 2018-12-01 Kemi Wang <kemi.wang@intel.com>
3439 * manual/tunables.texi (POSIX Thread Tunables): New node.
3440 * nptl/Makefile (libpthread-routines): Add pthread_mutex_conf.
3441 * nptl/nptl-init.c: Include pthread_mutex_conf.h
3442 (__pthread_initialize_minimal_internal) [HAVE_TUNABLES]: Call
3443 __pthread_tunables_init.
3444 * nptl/pthreadP.h (MAX_ADAPTIVE_COUNT): Remove.
3445 (max_adaptive_count): Define.
3446 * nptl/pthread_mutex_conf.c: New file.
3447 * nptl/pthread_mutex_conf.h: New file.
3448 * sysdeps/generic/adaptive_spin_count.h: New file.
3449 * sysdeps/nptl/dl-tunables.list: New file.
3450 * nptl/pthread_mutex_lock.c (__pthread_mutex_lock): Use
3451 max_adaptive_count () not MAX_ADAPTIVE_COUNT.
3452 * nptl/pthread_mutex_timedlock.c (__pthrad_mutex_timedlock):
3455 2018-12-01 Paul Pluzhnikov <ppluzhnikov@google.com>
3458 * stdlib/cxa_atexit.c (__internal_atexit): assert func != NULL.
3459 * stdlib/on_exit.c (__on_exit): Likewise.
3460 * stdlib/Makefile (tests): Add tst-bz20544.
3461 * stdlib/tst-bz20544.c: New test.
3463 2018-11-30 Rafael Ávila de Espíndola <rafael@espindo.la>
3466 * sysdeps/unix/sysv/linux/i386/init-first.c: Don't check SHARED.
3467 * sysdeps/unix/sysv/linux/i386/sysdep.h (ALWAYS_USE_VSYSCALL):
3470 2018-11-30 Florian Weimer <fweimer@redhat.com>
3472 * scripts/abilist.awk: Print "0x0" for size 0. Handle "g"/"D".
3473 Extend error logging.
3474 * sysdeps/mach/hurd/i386/libc.abilist (GLIBC_2.2.6): Adjust _end
3477 2018-11-30 Adhemerval Zanella <adhemerval.zanella@linaro.org>
3479 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Use
3480 __sigismember instead of sigismember.
3481 * sysdeps/posix/system.c [SIGCANCEL] (cancel_handler_args,
3482 cancel_handler): New definitions.
3483 (do_system): Use posix_spawn instead of fork and execl and remove
3485 * sysdeps/generic/not-errno.h (__kill_noerrno): New prototype.
3486 * sysdeps/unix/sysv/linux/not-errno.h (__kill_noerrno): Likewise.
3487 * sysdeps/unix/sysv/linux/ia64/system.c: Remove file.
3488 * sysdeps/unix/sysv/linux/s390/system.c: Likewise.
3489 * sysdeps/unix/sysv/linux/sparc/system.c: Likewise.
3490 * sysdeps/unix/sysv/linux/system.c: Likewise.
3494 * NEWS: Add new semantic for atfork with popen and system.
3495 * libio/iopopen.c (_IO_new_proc_open): use posix_spawn instead of
3498 2018-11-30 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
3501 * elf/dl-runtime.c (_dl_profile_fixup): Guarantee memory
3502 modification order when accessing reloc_result->addr.
3503 * include/link.h (reloc_result): Add field init.
3504 * nptl/Makefile (tests): Add tst-audit-threads.
3505 (modules-names): Add tst-audit-threads-mod1 and
3506 tst-audit-threads-mod2.
3507 Add rules to build tst-audit-threads.
3508 * nptl/tst-audit-threads-mod1.c: New file.
3509 * nptl/tst-audit-threads-mod2.c: Likewise.
3510 * nptl/tst-audit-threads.c: Likewise.
3511 * nptl/tst-audit-threads.h: Likewise.
3513 2018-11-30 Joseph Myers <joseph@codesourcery.com>
3515 * scripts/gen-as-const.py: New file.
3516 * scripts/gen-as-const.awk: Remove.
3517 * Makerules ($(common-objpfx)%.h $(common-objpfx)%.h.d): Use
3519 ($(objpfx)test-as-const-%.c): Likewise.
3521 2018-11-29 H.J. Lu <hongjiu.lu@intel.com>
3523 * elf/dl-exception.c: Include <_itoa.h>.
3525 2018-11-30 Samuel Thibault <samuel.thibault@ens-lyon.org>
3527 * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Directly return value
3528 returned by __f_setlk.
3530 2018-11-29 H.J. Lu <hongjiu.lu@intel.com>
3531 Adhemerval Zanella <adhemerval.zanella@linaro.org>
3533 * elf/Makefile (tests-internal): Add tst-create_format1.
3534 * elf/dl-exception.c (_dl_exception_create_format): Support
3536 * elf/tst-create_format1.c: New file.
3538 2018-11-29 Charles-Antoine Couret <charles-antoine.couret@essensium.com>
3540 * argp/argp-fmtstream.c (__argp_fmtstream_update): Use [_LIBC]
3541 conditional on calls to _IO_fwide and putwc_unlocked. (Merge from
3543 * argp/argp-help.c (__argp_failure): Likewise.
3545 2018-11-29 Mao Han <han_mao@c-sky.com>
3547 * elf/elf.h (EM_CSKY, R_CKCORE_NONE, R_CKCORE_ADDR32)
3548 (R_CKCORE_PCRELIMM8BY4, R_CKCORE_PCRELIMM11BY2, R_CKCORE_PCREL32)
3549 (R_CKCORE_PCRELJSR_IMM11BY2, R_CKCORE_RELATIVE, R_CKCORE_COPY)
3550 (R_CKCORE_GLOB_DAT, R_CKCORE_JUMP_SLOT, R_CKCORE_GOTOFF)
3551 (R_CKCORE_GOTPC, R_CKCORE_GOT32, R_CKCORE_PLT32, R_CKCORE_ADDRGOT)
3552 (R_CKCORE_ADDRPLT, R_CKCORE_PCREL_IMM26BY2, R_CKCORE_PCREL_IMM16BY2)
3553 (R_CKCORE_PCREL_IMM16BY4, R_CKCORE_PCREL_IMM10BY2)
3554 (R_CKCORE_PCREL_IMM10BY4, R_CKCORE_ADDR_HI16, R_CKCORE_ADDR_LO16)
3555 (R_CKCORE_GOTPC_HI16, R_CKCORE_GOTPC_LO16, R_CKCORE_GOTOFF_HI16)
3556 (R_CKCORE_GOTOFF_LO16, R_CKCORE_GOT12, R_CKCORE_GOT_HI16)
3557 (R_CKCORE_GOT_LO16, R_CKCORE_PLT12, R_CKCORE_PLT_HI16)
3558 (R_CKCORE_PLT_LO16, R_CKCORE_ADDRGOT_HI16, R_CKCORE_ADDRGOT_LO16)
3559 (R_CKCORE_ADDRPLT_HI16, R_CKCORE_ADDRPLT_LO16)
3560 (R_CKCORE_PCREL_JSR_IMM26BY2, R_CKCORE_TOFFSET_LO16)
3561 (R_CKCORE_DOFFSET_LO16, R_CKCORE_PCREL_IMM18BY2)
3562 (R_CKCORE_DOFFSET_IMM18, R_CKCORE_DOFFSET_IMM18BY2)
3563 (R_CKCORE_DOFFSET_IMM18BY4, R_CKCORE_GOT_IMM18BY4)
3564 (R_CKCORE_PLT_IMM18BY4, R_CKCORE_PCREL_IMM7BY4, R_CKCORE_TLS_LE32)
3565 (R_CKCORE_TLS_IE32, R_CKCORE_TLS_GD32, R_CKCORE_TLS_LDM32)
3566 (R_CKCORE_TLS_LDO32, R_CKCORE_TLS_DTPMOD32, R_CKCORE_TLS_DTPOFF32)
3567 (R_CKCORE_TLS_TPOFF32): New defines.
3569 2018-11-29 Florian Weimer <fweimer@redhat.com>
3571 * posix/Makefile (before-compile): Remove testcases.h and
3573 (generated): Add testcases.h and ptestcases.h.
3574 (testcases.h, ptestcases.h): Move to $(objpfx).
3575 (runtests.o): Add dependency on testcases.h.
3576 (runptests.o): Add dependency on ptestcases.h.
3577 * posix/testcases.h, posix/ptestcases.h: Remove files.
3578 * scripts/build-many-glibcs.py (Context.fix_glibc_timestamps): Do
3579 not touch posix/testcases.h and posix/ptestcases.h.
3581 2018-11-28 Florian Weimer <fweimer@redhat.com>
3583 support: Add signal support to support_capture_subprocess_check.
3584 * support/capture_subprocess.h (support_capture_subprocess_check):
3585 Adjust comment and rename parameter.
3586 * support/support_capture_subprocess_check.c
3587 (print_actual_status): New function.
3588 (support_capture_subprocess_check): Support negative
3589 status_or_signal. Call print_actual_status.
3590 * support/tst-support_capture_subprocess.c (do_test): Call
3591 support_capture_subprocess_check.
3592 * libio/tst-vtables-common.c (termination_status)
3593 (init_termination_status): Remove.
3594 (check_for_termination): Adjust support_capture_subprocess_check
3596 (do_test): Remove call to init_termination_status.
3598 2018-11-28 Joseph Myers <joseph@codesourcery.com>
3600 * scripts/build-many-glibcs.py (Glibc.build_glibc): Use original
3601 source directory instead of a copy.
3602 (CommandList.create_copy_dir): Remove.
3604 2018-11-28 Stefan Liebler <stli@linux.ibm.com>
3606 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
3608 2018-11-28 Florian Weimer <fweimer@redhat.com>
3610 * support/support.h (support_quote_string): Do not use str
3613 2018-11-27 Joseph Myers <joseph@codesourcery.com>
3615 * sysdeps/mach/hurd/Makefile ($(common-objpfx)stamp-errnos): Use
3616 $(hurd-objpfx)bits/errno.h-tmp, not $(hurd)/bits/errno.h-tmp.
3618 2018-11-27 Florian Weimer <fweimer@redhat.com>
3620 * support/support.h (support_quote_string): Declare.
3621 * support/support_quote_string.c: New file.
3622 * support/tst-support_quote_string.c: Likewise.
3623 * support/Makefile (libsupport-routines): Add
3624 support_quote_string.
3625 (tests): Add tst-support_quote_string.
3627 2018-11-27 Florian Weimer <fweimer@redhat.com>
3631 * sysdeps/unix/sysv/linux/if_index.c (__if_nametoindex): Avoid
3632 descriptor leak in case of ENODEV error.
3634 2018-11-27 Rafael Ávila de Espíndola <rafael@espindo.la>
3637 * sysdeps/unix/sysv/linux/aarch64/init-first.c: Remove #ifdef SHARED.
3638 * sysdeps/unix/sysv/linux/aarch64/libc-vdso.h: Remove #ifdef SHARED.
3639 * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Define ALWAYS_USE_VSYSCALL.
3641 2018-11-26 Carlos O'Donell <carlos@redhat.com>
3643 * scripts/abilist.awk: Handle .tdata. Error for unknown combinations.
3644 Error for unknown lines.
3646 2018-11-26 Joseph Myers <joseph@codesourcery.com>
3648 * scripts/build-many-glibcs.py (Context.fix_glibc_timestamps):
3649 Touch additional files.
3651 2018-11-26 Florian Weimer <fweimer@redhat.com>
3654 * malloc/malloc.c (_int_free): Validate tc_idx before checking for
3657 2018-11-26 Rafael Ávila de Espíndola <rafael@espindo.la>
3660 * sysdeps/unix/sysv/linux/powerpc/init-first.c: Remove #ifdef SHARED.
3661 * sysdeps/unix/sysv/linux/powerpc/libc-vdso.h: Remove #ifdef
3662 SHARED. Include sysdep.h.
3663 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Define
3664 ALWAYS_USE_VSYSCALL.
3665 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Define
3666 ALWAYS_USE_VSYSCALL.
3668 2018-11-23 Rafael Ávila de Espíndola <rafael@espindo.la>
3671 * nptl/Makefile (tests-static): Add tst-cond11-static.
3673 * nptl/tst-cond11-static.c: New File.
3674 * sysdeps/unix/sysv/linux/Makefile (tests-static): Add
3675 tst-affinity-static.
3677 * sysdeps/unix/sysv/linux/sysdep-vdso.h: Check USE_VSYSCALL
3679 * sysdeps/unix/sysv/linux/sysdep.h (ALWAYS_USE_VSYSCALL): New.
3680 (USE_VSYSCALL): Likewise.
3681 * sysdeps/unix/sysv/linux/tst-affinity-static.c: New file.
3682 * sysdeps/unix/sysv/linux/x86/libc-vdso.h: Check USE_VSYSCALL
3684 * sysdeps/unix/sysv/linux/x86_64/init-first.c: Don't check
3686 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (ALWAYS_USE_VSYSCALL):
3689 2018-11-23 Joseph Myers <joseph@codesourcery.com>
3692 * sysdeps/unix/sysv/linux/arm/kernel-features.h
3693 [__LINUX_KERNEL_VERSION < 0x040700] (__ASSUME_COPY_FILE_RANGE):
3696 2018-11-23 H.J. Lu <hongjiu.lu@intel.com>
3698 * sysdeps/x86/Makefile (tests): Add tst-cet-legacy-1a.
3699 (tst-cet-legacy-1a-ARGS): New.
3700 ($(objpfx)tst-cet-legacy-1a): New target.
3701 * sysdeps/x86/tst-cet-legacy-1a.c: New file.
3703 2018-11-22 Joseph Myers <joseph@codesourcery.com>
3705 * conform/conformtest.py (CompileSubTest.__init__): Set
3706 self.run_early to False.
3707 (ExecuteSubTest.__init__): Likewise.
3708 (HeaderTests.run): Try running all non-optional, non-XFAILed
3709 compilation tests in a single execution of the compiler.
3711 * conform/conformtest.py (CompileSubTest): New class.
3712 (ExecuteSubTest): Likewise.
3713 (ElementTest.run): Rename to gen_subtests. Append tests to
3714 self.subtests instead of running them.
3715 (ConstantTest.run): Likewise.
3716 (SymbolTest.run): Likewise.
3717 (TypeTest.run): Likewise.
3718 (TagTest.run): Likewise.
3719 (FunctionTest.run): Likewise.
3720 (VariableTest.run): Likewise.
3721 (MacroFunctionTest.run): Likewise.
3722 (MacroStrTest.run): Likewise.
3723 (HeaderTests.handle_test_line): Generate subtests for tests.
3724 (HeaderTests.run): Run subtests for tests.
3726 2018-11-21 Szabolcs Nagy <szabolcs.nagy@arm.com>
3728 * math/Versions (GLIBC_2.29): Add pow.
3729 * math/w_pow_compat.c (__pow_compat): Change to versioned compat
3731 * math/w_pow.c: New file.
3732 * sysdeps/i386/fpu/w_pow.c: New file.
3733 * sysdeps/ia64/fpu/e_pow.S: Add versioned symbols.
3734 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Rename to __pow
3735 and add necessary aliases.
3736 * sysdeps/ieee754/dbl-64/w_pow.c: New file.
3737 * sysdeps/m68k/m680x0/fpu/w_pow.c: New file.
3738 * sysdeps/mach/hurd/i386/libm.abilist: Update.
3739 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
3740 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Update.
3741 * sysdeps/unix/sysv/linux/arm/libm.abilist: Update.
3742 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Update.
3743 * sysdeps/unix/sysv/linux/i386/libm.abilist: Update.
3744 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Update.
3745 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Update.
3746 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Update.
3747 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Update.
3748 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Update.
3749 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Update.
3750 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Update.
3751 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Update.
3752 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Update.
3753 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Update.
3754 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Update.
3755 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Update.
3756 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Update.
3757 * sysdeps/unix/sysv/linux/sh/libm.abilist: Update.
3758 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Update.
3759 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Update.
3760 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Update.
3761 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Update.
3762 * sysdeps/x86_64/fpu/multiarch/e_pow-fma.c (__ieee754_pow): Rename to
3764 * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c (__ieee754_pow): Likewise.
3765 * sysdeps/x86_64/fpu/multiarch/e_pow.c (__ieee754_pow): Likewise.
3766 * sysdeps/x86_64/fpu/multiarch/w_pow.c: New file.
3768 2018-11-21 Szabolcs Nagy <szabolcs.nagy@arm.com>
3770 * math/Versions (GLIBC_2.29): Add log2.
3771 * math/w_log2_compat.c (__log2_compat): Change to versioned compat
3773 * math/w_log2.c: New file.
3774 * sysdeps/i386/fpu/w_log2.c: New file.
3775 * sysdeps/ia64/fpu/e_log2.S: Add versioned symbols.
3776 * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Rename to __log2
3777 and add necessary aliases.
3778 * sysdeps/ieee754/dbl-64/w_log2.c: New file.
3779 * sysdeps/m68k/m680x0/fpu/w_log2.c: New file.
3780 * sysdeps/mach/hurd/i386/libm.abilist: Update.
3781 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
3782 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Update.
3783 * sysdeps/unix/sysv/linux/arm/libm.abilist: Update.
3784 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Update.
3785 * sysdeps/unix/sysv/linux/i386/libm.abilist: Update.
3786 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Update.
3787 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Update.
3788 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Update.
3789 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Update.
3790 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Update.
3791 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Update.
3792 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Update.
3793 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Update.
3794 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Update.
3795 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Update.
3796 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Update.
3797 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Update.
3798 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Update.
3799 * sysdeps/unix/sysv/linux/sh/libm.abilist: Update.
3800 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Update.
3801 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Update.
3802 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Update.
3803 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Update.
3805 2018-11-21 Szabolcs Nagy <szabolcs.nagy@arm.com>
3807 * math/Versions (GLIBC_2.29): Add log.
3808 * math/w_log_compat.c (__log_compat): Change to versioned compat
3810 * math/w_log.c: New file.
3811 * sysdeps/i386/fpu/w_log.c: New file.
3812 * sysdeps/ia64/fpu/e_log.S: Update.
3813 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Rename to __log
3814 and add necessary aliases.
3815 * sysdeps/ieee754/dbl-64/w_log.c: New file.
3816 * sysdeps/m68k/m680x0/fpu/w_log.c: New file.
3817 * sysdeps/mach/hurd/i386/libm.abilist: Update.
3818 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
3819 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Update.
3820 * sysdeps/unix/sysv/linux/arm/libm.abilist: Update.
3821 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Update.
3822 * sysdeps/unix/sysv/linux/i386/libm.abilist: Update.
3823 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Update.
3824 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Update.
3825 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Update.
3826 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Update.
3827 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Update.
3828 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Update.
3829 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Update.
3830 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Update.
3831 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Update.
3832 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Update.
3833 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Update.
3834 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Update.
3835 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Update.
3836 * sysdeps/unix/sysv/linux/sh/libm.abilist: Update.
3837 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Update.
3838 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Update.
3839 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Update.
3840 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Update.
3841 * sysdeps/x86_64/fpu/multiarch/e_log-avx.c (__ieee754_log): Rename to
3843 * sysdeps/x86_64/fpu/multiarch/e_log-fma.c (__ieee754_log): Likewise.
3844 * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c (__ieee754_log): Likewise.
3845 * sysdeps/x86_64/fpu/multiarch/e_log.c (__ieee754_log): Likewise.
3846 * sysdeps/x86_64/fpu/multiarch/w_log.c: New file.
3848 2018-11-21 Szabolcs Nagy <szabolcs.nagy@arm.com>
3850 * math/Versions (GLIBC_2.29): Add exp and exp2.
3851 * math/w_exp2_compat.c (__exp2_compat): Change to versioned compat
3852 symbol, handle NO_LONG_DOUBLE and LONG_DOUBLE_COMPAT explicitly.
3853 * math/w_exp_compat.c (__exp_compat): Likewise.
3854 * math/w_exp.c: New file.
3855 * math/w_exp2.c: New file.
3856 * sysdeps/i386/fpu/w_exp.c: New file.
3857 * sysdeps/i386/fpu/w_exp2.c: New file.
3858 * sysdeps/ia64/fpu/e_exp.S: Add versioned symbols.
3859 * sysdeps/ia64/fpu/e_exp2.S: Likewise.
3860 * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Rename to __exp
3861 and add necessary aliases.
3862 * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Rename to __exp2
3863 and add necessary aliases.
3864 * sysdeps/ieee754/dbl-64/w_exp.c: New file.
3865 * sysdeps/ieee754/dbl-64/w_exp2.c: New file.
3866 * sysdeps/m68k/m680x0/fpu/w_exp.c: New file.
3867 * sysdeps/m68k/m680x0/fpu/w_exp2.c: New file.
3868 * sysdeps/mach/hurd/i386/libm.abilist: Update.
3869 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
3870 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Update.
3871 * sysdeps/unix/sysv/linux/arm/libm.abilist: Update.
3872 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Update.
3873 * sysdeps/unix/sysv/linux/i386/libm.abilist: Update.
3874 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Update.
3875 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Update.
3876 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Update.
3877 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Update.
3878 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Update.
3879 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Update.
3880 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Update.
3881 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Update.
3882 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Update.
3883 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Update.
3884 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Update.
3885 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Update.
3886 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Update.
3887 * sysdeps/unix/sysv/linux/sh/libm.abilist: Update.
3888 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Update.
3889 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Update.
3890 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Update.
3891 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Update.
3892 * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c (__exp1): Remove.
3893 (__ieee754_exp): Rename to __exp.
3894 * sysdeps/x86_64/fpu/multiarch/e_exp-fma.c (__exp1): Remove.
3895 (__ieee754_exp): Rename to __exp.
3896 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c (__exp1): Remove.
3897 (__ieee754_exp): Rename to __exp.
3898 * sysdeps/x86_64/fpu/multiarch/e_exp.c (__ieee754_exp): Rename to
3900 * sysdeps/x86_64/fpu/multiarch/w_exp.c: New file.
3902 2018-11-20 DJ Delorie <dj@redhat.com>
3904 * malloc/malloc.c (tcache_entry): Add key field.
3905 (tcache_put): Set it.
3906 (tcache_get): Likewise.
3907 (_int_free): Check for double free in tcache.
3908 * malloc/tst-tcfree1.c: New.
3909 * malloc/tst-tcfree2.c: New.
3910 * malloc/Makefile: Run the new tests.
3911 * manual/probes.texi: Document memory_tcache_double_free probe.
3913 * dlfcn/dlerror.c (check_free): Prevent double frees.
3915 2018-11-20 Wilco Dijkstra <wdijkstr@arm.com>
3917 * sysdeps/aarch64/memset.S (MEMSET): Improve non-zero memset loop.
3919 2018-11-20 Joseph Myers <joseph@codesourcery.com>
3921 * conform/conformtest.py (ElementTest.run): Use unique identifiers
3922 in tests. Use names for format arguments.
3923 (ConstantTest.run): Likewise.
3924 (SymbolTest.run): Likewise.
3925 (TypeTest.run): Likewise.
3926 (TagTest.run): Likewise.
3927 (FunctionTest.run): Likewise.
3928 (VariableTest.run): Likewise.
3929 (MacroFunctionTest.run): Likewise.
3930 (MacroStrTest.run): Likewise.
3931 (HeaderTests.__init__): Set self.num_tests.
3932 (HeaderTests.handle_test_line): Set test.num. Increment
3935 2018-11-19 Samuel Thibault <samuel.thibault@ens-lyon.org>
3937 * sysdeps/mach/hurd/f_setlk.c: Include <unistd.h>.
3938 (__f_setlk): When whence is SEEK_CUR, use __lseek64 to convert it to
3941 2018-11-19 Mao Han <han_mao@c-sky.com>
3943 * scripts/config.guess: Update to version 2018-08-29.
3944 * scripts/config.sub: Update to version 2018-08-29.
3946 2018-11-19 Florian Weimer <fweimer@redhat.com>
3948 support: Print timestamps in timeout handler.
3949 * support/support_test_main.c (print_timestamp): New function.
3950 (signal_handler): Use it to print the termination time and the
3951 time of the last write to standard output.
3953 2018-11-16 Zack Weinberg <zackw@panix.com>
3954 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3956 * include/monetary.h (STRFMON_LDBL_IS_DBL): New constant.
3957 (__vstrfmon_l): Rename to __vstrfmon_l_internal and add flags
3959 * stdlib/strfmon_l.c (__vstrfmon_l): Rename to __vstrfmon_l_internal
3960 and add flags argument. Check flags instead of __ldbl_is_dbl when
3961 deciding whether to set is_long_double.
3962 (__strfmon_l): Call __vstrfmon_l_internal instead of __vstrfmon_l,
3963 passing zero for flags argument.
3964 * stdlib/strfmon.c (strfmon): Same change as made to __strfmon_l.
3966 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c
3967 (__nldbl___vstrfmon, __nldbl___vstrfmon_l)
3968 (__nldbl_strfmon, __nldbl___strfmon_l): Call __vstrfmon_l_internal
3969 directly, passing STRFMON_LDBL_IS_DBL for flags argument. Normalize
3970 variable names. Remove libc_hidden_def/libc_hidden_proto from
3971 __nldbl___vstrfmon and __nldbl___vstrfmon_l, because they are no
3972 longer called from within the library.
3973 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h: Don't use NLDBL_DECL
3974 for __nldbl___vstrfmon_l, declare it explicitly.
3976 * manual/locale.texi: Update a reference to vstrfmon_l in comments.
3978 2018-11-15 Samuel Thibault <samuel.thibault@ens-lyon.org>
3980 * sysdeps/mach/hurd/bits/fcntl.h (F_GETLK64, F_SETLK64, F_SETLKW64): New
3982 [__USE_FILE_OFFSET64] (F_GETLK, F_SETLK, F_SETLKW): Define to F_GETLK64,
3983 F_SETLK64, F_SETLKW64, respectively.
3984 * sysdeps/mach/hurd/f_setlk.c: New file.
3985 * sysdeps/mach/hurd/f_setlk.h: New file.
3986 * sysdeps/mach/hurd/Makefile [$(subdir) = io] (sysdeps_routines): Add
3988 * sysdeps/mach/hurd/fcntl.c: Include "f_setlk.h".h".
3989 (__libc_fcntl): Move non-flock operations to...
3990 * sysdeps/mach/hurd/vfcntl.c (__libc_vfcntl): ... New file.
3991 * sysdeps/mach/hurd/fcntl.c (fcntl64): Add missing alias.
3993 2018-11-15 Paul Eggert <eggert@cs.ucla.edu>
3995 mktime: DEBUG_MKTIME cleanup
3996 The DEBUG_MKTIME code no longer works in glibc or in Gnulib.
3997 And it’s no longer needed now that glibc and Gnulib both have
3998 their own testing mechanisms for mktime.
3999 * time/mktime.c (DEBUG_MKTIME): Remove. All uses removed.
4001 mktime: fix non-EOVERFLOW errno handling
4003 mktime was not properly reporting failures when the underlying
4004 localtime_r fails with errno != EOVERFLOW; it incorrectly treated
4005 them like EOVERFLOW failures, and set errno to EOVERFLOW.
4006 The problem could happen on non-glibc platforms, with Gnulib.
4007 * time/mktime.c (guess_time_tm): Remove, replacing with ...
4008 (tm_diff): ... this simpler function, which does not change errno.
4009 All callers changed to deal with errno themselves.
4010 (ranged_convert, __mktime_internal): Return failure immediately if
4011 the underlying function reports any failure other than EOVERFLOW.
4012 (__mktime_internal): Set errno to EOVERFLOW if the spring-forward
4015 mktime: fix bug with Y2038 DST transition
4017 * time/mktime.c (ranged_convert): On 32-bit platforms, don’t
4018 mishandle a DST transition that jumps over the Y2038 boundary.
4019 No such DST transitions are known so this is only a theoretical
4020 bug, but we might as well do things right.
4022 mktime: make more room for overflow
4024 * time/mktime.c (long_int): Now 4⨯ int, not just 3⨯.
4025 This is so that we can add tm_diff results to a previous guess,
4026 which will be useful in a later patch.
4028 mktime: simplify offset guess
4030 * time/mktime.c (__mktime_internal): Omit excess precision.
4032 mktime: new test for mktime failure
4034 Based on a test suggested by Albert Aribaud in:
4035 https://www.sourceware.org/ml/libc-alpha/2018-10/msg00662.html
4036 * time/Makefile (tests): Add bug-mktime4.
4037 * time/bug-mktime4.c: New file.
4039 mktime: fix EOVERFLOW bug
4041 * time/mktime.c [!_LIBC && !DEBUG_MKTIME]:
4042 Include libc-config.h, not config.h, for __set_errno.
4043 (guess_time_tm, __mktime_internal): Set errno to EOVERFLOW on overflow.
4045 2018-11-14 Samuel Thibault <samuel.thibault@ens-lyon.org>
4047 * sysdeps/mach/hurd/dl-sysdep.c (check_no_hidden): Use
4048 __attribute_copy__ to copy attributes from name. Drop static qualifier
4049 to avoid warnings about leaf attribute not having effect on static
4052 2018-11-13 Florian Weimer <fweimer@redhat.com>
4054 * malloc/malloc.c (fastbin_push_entry): New function.
4055 (fastbin_pop_entry): Likewise. Replaces REMOVE_FB.
4056 (REMOVE_FB): Remove macro.
4057 (_int_malloc): Use fastbin_pop_entry and reindent.
4058 (_int_free): Use fastbin_push_entry.
4059 (malloc_consolidate): Use atomic_exchange_acquire.
4061 2018-11-13 Joseph Myers <joseph@codesourcery.com>
4063 * sysdeps/mips/__longjmp.c (__longjmp): Define alias manually with
4064 alias attribute, not with strong_alias.
4066 * include/libc-symbols.h [SHARED && !NO_HIDDEN && !__ASSEMBLER__]
4067 (__hidden_ver2): New macro. Use old definition of __hidden_ver1
4068 with additional parameter thread.
4069 [SHARED && !NO_HIDDEN && !__ASSEMBLER__] (__hidden_ver1): Define
4070 in terms of __hidden_ver2.
4071 (hidden_tls_def): New macro.
4072 (libc_hidden_tls_def): Likewise.
4073 (rtld_hidden_tls_def): Likewise.
4074 (libm_hidden_tls_def): Likewise.
4075 (libmvec_hidden_tls_def): Likewise.
4076 (libresolv_hidden_tls_def): Likewise.
4077 (librt_hidden_tls_def): Likewise.
4078 (libdl_hidden_tls_def): Likewise.
4079 (libnss_files_hidden_tls_def): Likewise.
4080 (libnsl_hidden_tls_def): Likewise.
4081 (libnss_nisplus_hidden_tls_def): Likewise.
4082 (libutil_hidden_tls_def): Likewise.
4083 (libutil_hidden_tls_def): Likweise.
4084 * sysdeps/powerpc/nofpu/sim-full.c (__sim_exceptions_thread): Use
4085 libc_hidden_tls_def.
4086 (__sim_disabled_exceptions_thread): Likewise.
4087 (__sim_round_mode_thread): Likewise.
4089 * sysdeps/sparc/sparc-ifunc.h [SHARED]
4090 (sparc_ifunc_redirected_hidden_def): Use __attribute_copy__ to
4091 copy attributes from name.
4093 2018-11-12 Joseph Myers <joseph@codesourcery.com>
4095 * sysdeps/arm/arm-ifunc.h [SHARED] (arm_libc_ifunc_hidden_def):
4096 Use __attribute_copy__ to copy attributes from name.
4098 * sysdeps/i386/i686/fpu/multiarch/e_expf.c [SHARED]: Use __THROW
4099 with __hidden_ver1 call.
4100 * sysdeps/i386/i686/fpu/multiarch/e_log2f.c [SHARED]: Likewise.
4101 * sysdeps/i386/i686/fpu/multiarch/e_logf.c [SHARED]: Likewise.
4102 * sysdeps/i386/i686/fpu/multiarch/s_cosf.c: Include <math.h>.
4103 (__cosf): Do not declare here.
4104 * sysdeps/i386/i686/fpu/multiarch/s_sincosf.c: Include <math.h>.
4105 (__sincosf): Do not declare here.
4106 * sysdeps/i386/i686/fpu/multiarch/s_sinf.c: Include <math.h>.
4107 (__sinf): Do not declare here.
4109 * sysdeps/ia64/fpu/sfp-machine.h (__LITTLE_ENDIAN): Remove.
4110 (__BIG_ENDIAN): Likewise.
4111 (__BYTE_ORDER): Likewise.
4112 (strong_alias): Likewise.
4113 (_strong_alias): Likewise.
4115 2018-11-12 Florian Weimer <fweimer@redhat.com>
4117 * malloc/malloc.c (unlink_chunk): Turn the unlink macro into this
4118 function. Move after the definition of in_smallbin_range. Do not
4119 use __builtin_expect for paths that lead to a noreturn function.
4120 Drop remaining __builtin_expect (p->fd_nextsize != NULL, 0)
4121 because it is unclear whether this is in fact an unlikely
4123 (_int_malloc, _int_free): Adjust.
4124 (malloc_consolidate, _int_realloc): Adjust. Remove bck, fwd
4126 * malloc/arena.c (heap_trim): Likewise.
4128 2018-11-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
4130 * sysdeps/mach/hurd/spawni.c (__spawni): Add ccwdir port. Test and use
4131 it, free it if needed.
4132 (reauthenticate): Test and use ccwdir.
4133 (child_init_port): In non-resetids case, test and use ccwdir.
4134 (child_chdir): New nested function to set ccwdir.
4135 * hurd/hurd/userlink.h (_hurd_userlink_move): New function.
4136 * hurd/hurd/port.h (_hurd_port_move): New function.
4137 * sysdeps/mach/hurd/spawni.c (NEW_ULINK_TABLE): New macro.
4138 (EXPAND_DTABLE): Use NEW_ULINK_TABLE macro for ulink_dtable.
4139 * hurd/Versions (_hurd_port_move): Export function.
4140 * sysdeps/mach/hurd/i386/libc.abilist (_hurd_port_move): Expect
4142 * sysdeps/mach/hurd/spawni.c (__spawni): Use orig_dtablesize instead
4143 of dtablesize for allocating dtable_cloexec.
4145 2018-11-09 Martin Sebor <msebor@redhat.com>
4147 * include/libc-symbols.h (__attribute_copy__): Define macro unless
4148 it's already defined.
4149 (_strong_alias): Use __attribute_copy__.
4150 (_weak_alias, __hidden_ver1, __hidden_nolink2): Same.
4151 * misc/sys/cdefs.h (__attribute_copy__): New macro.
4152 * sysdeps/x86_64/multiarch/memchr.c (memchr): Use __attribute_copy__.
4153 * sysdeps/x86_64/multiarch/memcmp.c (memcmp): Same.
4154 * sysdeps/x86_64/multiarch/mempcpy.c (mempcpy): Same.
4155 * sysdeps/x86_64/multiarch/memset.c (memset): Same.
4156 * sysdeps/x86_64/multiarch/stpcpy.c (stpcpy): Same.
4157 * sysdeps/x86_64/multiarch/strcat.c (strcat): Same.
4158 * sysdeps/x86_64/multiarch/strchr.c (strchr): Same.
4159 * sysdeps/x86_64/multiarch/strcmp.c (strcmp): Same.
4160 * sysdeps/x86_64/multiarch/strcpy.c (strcpy): Same.
4161 * sysdeps/x86_64/multiarch/strcspn.c (strcspn): Same.
4162 * sysdeps/x86_64/multiarch/strlen.c (strlen): Same.
4163 * sysdeps/x86_64/multiarch/strncmp.c (strncmp): Same.
4164 * sysdeps/x86_64/multiarch/strncpy.c (strncpy): Same.
4165 * sysdeps/x86_64/multiarch/strnlen.c (strnlen): Same.
4166 * sysdeps/x86_64/multiarch/strpbrk.c (strpbrk): Same.
4167 * sysdeps/x86_64/multiarch/strrchr.c (strrchr): Same.
4168 * sysdeps/x86_64/multiarch/strspn.c (strspn): Same.
4170 2018-11-09 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4172 * misc/tst-efgcvt.c: Include support/check.h and
4173 support/test-driver.c. Do not include test-skeleton.c.
4174 (error_count): Remove.
4175 (output_error): Replace increments to error_count with calls to
4176 support_record_failure.
4177 (output_r_error): Likewise.
4178 (special): Likewise.
4179 (do_test): Unconditionally return zero.
4180 (TEST_FUNCTION): Remove.
4182 2018-11-09 Joseph Myers <joseph@codesourcery.com>
4184 * conform/Makefile ($(conformtest-header-tests)): Create $(@D),
4186 ($(linknamespace-header-tests)): Likewise.
4188 * conform/conformtest.py: New file.
4189 * conform/conformtest.pl: Remove.
4190 * conform/GlibcConform.pm: Likewise.
4191 * conform/glibcconform.py (KEYWORDS_C90): New constant.
4192 (KEYWORDS_C99): Likewise.
4193 (KEYWORDS): Likewise.
4194 * conform/Makefile ($(conformtest-header-tests)): Use
4195 conformtest.py instead of conformtest.pl. Do not pass --tmpdir
4196 option. Use --header instead of --headers.
4197 * conform/data/arpa/inet.h-data: Remove trailing semicolons on
4199 * conform/data/spawn.h-data: Likewise.
4200 * conform/data/fcntl.h-data (openat): Add space after function
4202 * conform/data/wchar.h-data (wcscasecmp): Likewise.
4203 (wcscasecmp_l): Likewise.
4204 * conform/data/termios.h-data (c_cc): Add space after element
4207 2018-11-08 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4209 * argp/tst-ldbl-argp.c (do_one_test): Use TEST_COMPARE_STRING,
4210 instead of manually comparing and reporting mismatching strings.
4211 * misc/tst-ldbl-error.c (do_one_test): Likewise.
4212 * misc/tst-ldbl-warn.c (do_one_test): Likewise.
4214 2018-11-08 Joseph Myers <joseph@codesourcery.com>
4216 * sysdeps/unix/sysv/linux/kernel-features.h: Remove comment about
4217 __ASSUME_SOCKETCALL.
4218 * sysdeps/unix/sysv/linux/i386/kernel-features.h
4219 (__ASSUME_SOCKETCALL): Remove.
4220 * sysdeps/unix/sysv/linux/m68k/kernel-features.h
4221 (__ASSUME_SOCKETCALL): Likewise.
4222 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
4223 (__ASSUME_SOCKETCALL): Likewise.
4224 * sysdeps/unix/sysv/linux/powerpc/kernel-features.h
4225 (__ASSUME_SOCKETCALL): Likewise.
4226 * sysdeps/unix/sysv/linux/s390/kernel-features.h
4227 (__ASSUME_SOCKETCALL): Likewise.
4228 * sysdeps/unix/sysv/linux/sh/kernel-features.h
4229 (__ASSUME_SOCKETCALL): Likewise.
4230 * sysdeps/unix/sysv/linux/sparc/kernel-features.h
4231 (__ASSUME_SOCKETCALL): Likewise.
4233 2018-11-08 H.J. Lu <hongjiu.lu@intel.com>
4236 * sysdeps/x86/dl-prop.h (_dl_process_cet_property_note): Skip
4237 note parsing if a NT_GNU_PROPERTY_TYPE_0 note has been processed.
4238 Update the l_cet field when processing NT_GNU_PROPERTY_TYPE_0 note.
4239 Check multiple NT_GNU_PROPERTY_TYPE_0 notes.
4240 * sysdeps/x86/link_map.h (l_cet): Expand to 3 bits, Add
4243 2018-11-08 Alexandra Hájková <ahajkova@redhat.com>
4246 * resolv/tst-resolv-network.c: Add test for getnetbyname.
4248 2018-11-07 Joseph Myers <joseph@codesourcery.com>
4251 * sysdeps/unix/sysv/linux/arm/kernel-features.h
4252 [__LINUX_KERNEL_VERSION < 0x040700] (__ASSUME_MLOCK2): Undefine.
4253 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
4254 [__LINUX_KERNEL_VERSION < 0x040700] (__ASSUME_MLOCK2): Undefine.
4256 2018-11-07 Adhemerval Zanella <adhemerval.zanella@linaro.org>
4258 * support/support_test_compare_string.c
4259 (support_test_compare_string): Fix printf format.
4261 2018-11-07 Florian Weimer <fweimer@redhat.com>
4263 Implement TEST_COMPARE_STRING.
4264 * support/check.h (TEST_COMPARE_STRING): Define.
4265 (support_test_compare_string): Declare.
4266 * support/Makefile (libsupport-routines): Add
4267 support_test_compare_string.
4268 (tests): Add tst-test_compare_string.
4269 * support/support_test_compare_string.c: New file.
4270 * support/tst-test_compare_string.c: Likewise.
4272 2018-11-07 Andreas Schwab <schwab@suse.de>
4275 * sysdeps/unix/sysv/linux/riscv/kernel-features.h
4276 (__ASSUME_SET_ROBUST_LIST) [__LINUX_KERNEL_VERSION < 0x041400]:
4279 2018-11-06 Joseph Myers <joseph@codesourcery.com>
4282 * sysdeps/unix/sysv/linux/sh/kernel-features.h
4283 [__LINUX_KERNEL_VERSION < 0x040800] (__ASSUME_EXECVEAT): Undefine.
4284 [__LINUX_KERNEL_VERSION < 0x040800] (__ASSUME_MLOCK2): Likewise.
4285 [__LINUX_KERNEL_VERSION < 0x040800] (__ASSUME_COPY_FILE_RANGE):
4288 2018-11-06 Florian Weimer <fweimer@redhat.com>
4291 * posix/Makefile (routines): Add spawn_faction_addchdir.
4292 (tests): Add tst-spawn-chdir.
4293 * posix/Versions (GLIBC_2.29): Add
4294 posix_spawn_file_actions_addchdir_np.
4295 * posix/spawn_faction_addchdir.c: New file.
4296 * posix/spawn_faction_destroy.c
4297 (__posix_spawn_file_actions_destroy): Handle spawn_do_chdir.
4298 * posix/spawn.h (posix_spawn_file_actions_addchdir_np): Declare.
4299 * posix/spawn_int.h (struct __spawn_action): Add spawn_do_chdir,
4301 * posix/tst-spawn-chdir.c: New file.
4302 * sysdeps/posix/spawni.c (__spawni_child): Handle spawn_do_chdir.
4303 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Likewise.
4304 * sysdeps/mach/hurd/i386/libc.abilist (GLIBC_2.29): Add
4305 posix_spawn_file_actions_addchdir_np.
4306 * sysdeps/unix/sysv/linux/aarch64/libc.abilist (GLIBC_2.29):
4308 * sysdeps/unix/sysv/linux/alpha/libc.abilist (GLIBC_2.29):
4310 * sysdeps/unix/sysv/linux/arm/libc.abilist (GLIBC_2.29): Likewise.
4311 * sysdeps/unix/sysv/linux/hppa/libc.abilist (GLIBC_2.29):
4313 * sysdeps/unix/sysv/linux/i386/libc.abilist (GLIBC_2.29):
4315 * sysdeps/unix/sysv/linux/ia64/libc.abilist (GLIBC_2.29):
4317 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist (GLIBC_2.29):
4319 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist (GLIBC_2.29):
4321 * sysdeps/unix/sysv/linux/microblaze/libc.abilist (GLIBC_2.29):
4323 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist
4324 (GLIBC_2.29): Likewise.
4325 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist
4326 (GLIBC_2.29): Likewise.
4327 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist
4328 (GLIBC_2.29): Likewise.
4329 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist
4330 (GLIBC_2.29): Likewise.
4331 * sysdeps/unix/sysv/linux/nios2/libc.abilist (GLIBC_2.29):
4333 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist
4334 (GLIBC_2.29): Likewise.
4335 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist
4336 (GLIBC_2.29): Likewise.
4337 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist
4338 (GLIBC_2.29): Likewise.
4339 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist
4340 (GLIBC_2.29): Likewise.
4341 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist (GLIBC_2.29):
4343 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist (GLIBC_2.29):
4345 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist (GLIBC_2.29):
4347 * sysdeps/unix/sysv/linux/sh/libc.abilist (GLIBC_2.29): Likewise.
4348 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist (GLIBC_2.29):
4350 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist (GLIBC_2.29):
4352 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist (GLIBC_2.29):
4354 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist (GLIBC_2.29):
4357 2018-11-06 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4359 * misc/Makefile (tests): Add tst-ldbl-error.
4360 * misc/tst-ldbl-error.c: New file.
4362 2018-11-06 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4364 * misc/Makefile (tests): Add tst-ldbl-warn.
4365 * misc/tst-ldbl-warn.c: New file.
4367 2018-11-06 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4369 * argp/Makefile (tests): Add tst-ldbl-argp.
4370 * argp/tst-ldbl-argp.c: New file.
4372 2018-11-05 Arjun Shankar <arjun@redhat.com>
4374 * iconv/gconv_conf.c (__gconv_read_conf): Remove NULL check for
4375 __gconv_path_elem and call __gconv_get_path unconditionally.
4377 2018-11-05 Andreas Schwab <schwab@suse.de>
4380 * resolv/gai_misc.c (__gai_enqueue_request): Don't crash if
4381 creating the first helper thread failed.
4383 2018-11-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
4385 * sysdeps/mach/hurd/msync.c: New file.
4387 2018-11-02 Florian Weimer <fweimer@redhat.com>
4389 * support/shell-container.c (copy_func): Call
4390 support_copy_file_range instead of copy_file_range to support
4391 cross-device copies.
4393 2018-11-02 Florian Weimer <fweimer@redhat.com>
4395 * support/test-container.c: Include <libc-pointer-arith.h> for
4398 2018-11-01 Zong Li <zong@andestech.com>
4400 * soft-fp/op-8.h (_FP_FRAC_SET_8, _FP_FRAC_ADD_8, _FP_FRAC_SUB_8)
4401 (_FP_FRAC_CLZ_8, _FP_MINFRAC_8, _FP_FRAC_NEGP_8, _FP_FRAC_ZEROP_8)
4402 (_FP_FRAC_HIGHBIT_DW_8, _FP_FRAC_COPY_4_8, _FP_FRAC_COPY_8_4)
4403 (__FP_FRAC_SET_8): Add implementation for RV32 use.
4405 * soft-fp/op-4.h (_FP_FRAC_SUB_3, _FP_FRAC_SUB_4): Use temporary
4406 variable to avoid overlap arguments.
4408 2018-11-01 Joseph Myers <joseph@codesourcery.com>
4410 * posix/bug-regex22.c (main): Use puts with distinct error
4411 messages for unexpected success of re_compile_pattern, not printf
4412 with NULL argument to %s.
4414 * stdio-common/bug22.c: Include <libc-diag.h>.
4415 (do_test): Disable -Wformat-overflow= warnings around fprintf
4416 calls outputting more than INT_MAX characters.
4417 * stdio-common/tst-printf.c: Disable -Wformat-overflow= warnings
4418 around printf call with NULL %s argument.
4421 * sysdeps/unix/sysv/linux/sparc/kernel-features.h [!__arch64__ &&
4422 __LINUX_KERNEL_VERSION < 0x040400] (__ASSUME_SENDMSG_SYSCALL):
4424 [!__arch64__ && __LINUX_KERNEL_VERSION < 0x040400]
4425 (__ASSUME_RECVMSG_SYSCALL): Likewise.
4426 [!__arch64__ && __LINUX_KERNEL_VERSION < 0x040400]
4427 (__ASSUME_SENDTO_SYSCALL): Likewise.
4428 [!__arch64__ && __LINUX_KERNEL_VERSION < 0x040400]
4429 (__ASSUME_ACCEPT_SYSCALL): Undefine under this condition, not just
4431 [!__arch64__ && __LINUX_KERNEL_VERSION < 0x040400]
4432 (__ASSUME_CONNECT_SYSCALL): Likewise.
4433 [!__arch64__ && __LINUX_KERNEL_VERSION < 0x040400]
4434 (__ASSUME_RECVFROM_SYSCALL): Likewise.
4435 [__LINUX_KERNEL_VERSION >= 0x040400] (__ASSUME_BIND_SYSCALL):
4437 [__LINUX_KERNEL_VERSION >= 0x040400] (__ASSUME_LISTEN_SYSCALL):
4439 [__LINUX_KERNEL_VERSION >= 0x040400]
4440 (__ASSUME_SETSOCKOPT_SYSCALL): Likewise.
4441 * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (bind):
4444 (setsockopt): Likewise.
4446 2018-11-01 Fredrik Noring <noring@nocrew.org>
4448 * sysdeps/mips/sys/tas.h (_test_and_set): Handle the R5900 CPU
4449 with the ISA override.
4451 2018-10-31 Rafael Avila de Espindola <rafael@espindo.la>
4453 * sysdeps/unix/sysv/linux/sysdep-vdso.h: Simplify an #if #else
4456 2018-10-31 Samuel Thibault <samuel.thibault@ens-lyon.org>
4458 * manual/errno.texi (EIEIO): Document how translators should
4459 translate the error message.
4460 * sysdeps/mach/hurd/errnos.awk: Avoid printing errnos.d. Avoid
4461 printing trailing whitespaces refused by git.
4462 * sysdeps/gnu/errlist.c (EIEIO): Regenerate.
4463 * sysdeps/mach/hurd/bits/errno.h: Regenerate.
4464 * hurd/Makefile (user-interfaces): Add pci.
4466 2018-10-30 Joseph Myers <joseph@codesourcery.com>
4468 * conform/linknamespace.py: New file.
4469 * conform/linknamespace.pl: Remove file.
4470 * conform/Makefile ($(linknamespace-header-tests)): Use
4471 linknamespace.py instead of linknamespace.pl. Do not use --tmpdir
4474 2018-10-30 Florian Weimer <fweimer@redhat.com>
4476 * stdlib/test-bz22786.c (do_test): Additional free calls to avoid
4479 2018-10-30 Florian Weimer <fweimer@redhat.com>
4481 * support/blob_repeat.c (allocate_big): Call mkstemp directly.
4483 2018-10-30 Florian Weimer <fweimer@redhat.com>
4485 * stdlib/tst-strtod-overflow.c (do_test): Switch to
4486 support_blob_repeat.
4488 2018-10-30 Florian Weimer <fweimer@redhat.com>
4490 Avoid spurious test failures in stdlib/test-bz22786.
4491 * support/Makefile (libsupport-routines): Add blob_repeat.
4492 (tests): Add tst-support_blob_repeat.
4493 * support/blob_repeat.h: New file.
4494 * support/blob_repeat.c: Likewise.
4495 * support/tst-support_blob_repeat.c: Likewise.
4496 * stdlib/test-bz22786.c (do_test): Replace malloc and memset with
4497 support_blob_repeat_allocate.
4499 2018-10-30 Andreas Schwab <schwab@suse.de>
4502 * sysdeps/riscv/start.S (ENTRY_POINT): Mark ra as undefined.
4503 Don't use tail call.
4504 * elf/tst-unwind-main.c: New file.
4505 * elf/Makefile (tests): Add tst-unwind-main.
4506 (CFLAGS-tst-unwind-main.c): Define.
4508 2018-10-29 Sergi Almacellas Abellana <sergi@koolpi.com>
4511 * localedata/locales/ca_ES (LC_MONETARY): set p_cs_precedes and
4513 * localedata/locales/ca_ES (LC_MONETARY): set grouping to 3;3
4515 2018-10-29 Joseph Myers <joseph@codesourcery.com>
4517 * conform/glibcconform.py: Do not import shutil.
4518 (list_exported_functions): Use tempfile.TemporaryDirectory instead
4521 * configure.ac (PYTHON_PROG): Use AC_CHECK_PROG_VER. Set
4522 critic_missing for versions before 3.4.
4523 * configure: Regenerated.
4524 * manual/install.texi (Tools for Compilation): Document
4525 requirement for Python to build glibc.
4526 * INSTALL: Regenerated.
4527 * Rules [PYTHON]: Make code unconditional.
4528 * benchtests/Makefile [PYTHON]: Likewise.
4529 * conform/Makefile [PYTHON]: Likewise.
4530 * manual/Makefile [PYTHON]: Likewise.
4531 * math/Makefile [PYTHON]: Likewise.
4533 2018-10-28 Samuel Thibault <samuel.thibault@ens-lyon.org>
4535 * hurd/hurdsig.c (_hurd_interrupted_rpc_timeout): Set to 60000.
4536 * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): When the server does not
4537 answer to interrupt_operation, return EIEIO instead of EINTR.
4538 * sysdeps/mach/hurd/i386/intr-msg.h (INTR_MSG_TRAP): Make
4539 _hurd_intr_rpc_msg_about_to global point to start of controlled
4540 assembly snippet. Make it check canceled flag.
4541 * hurd/hurdsig.c (_hurdsig_abort_rpcs): Only mutate thread if it passed
4542 the _hurd_intr_rpc_msg_about_to point.
4543 * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Remove comment on mutation
4544 issue, remove cancel flag check.
4546 2018-10-26 Joseph Myers <joseph@codesourcery.com>
4548 * scripts/build-many-glibcs.py: Remove compatibility for missing
4549 os.cpu_count and re.fullmatch.
4551 2018-10-26 Szabolcs Nagy <szabolcs.nagy@arm.com>
4554 * sysdeps/ia64/fpu/e_exp2f.S (exp2f): Use WEAK_LIBM_ENTRY.
4555 * sysdeps/ia64/fpu/e_log2f.S (log2f): Likewise.
4556 * sysdeps/ia64/fpu/e_exp2f.S (powf): Likewise.
4558 2018-10-25 Joseph Myers <joseph@codesourcery.com>
4560 * sysdeps/unix/sysv/linux/sys/inotify.h (IN_MASK_CREATE): New
4563 2018-10-25 Florian Weimer <fweimer@redhat.com>
4567 XFAIL siginfo_t si_band conform test on sparc64.
4568 * sysdeps/unix/sysv/linux/sparc/bits/siginfo-arch.h
4569 (__SI_BAND_TYPE): Only override long int default type on sparc64.
4570 * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile
4571 (conformtest-xfail-conds): Add sparc64-linux.
4572 * conform/data/signal.h-data (siginfo_t): XFAIL si_band test on
4574 * conform/data/sys/wait.h-data (siginfo_t): Likewise.
4576 2018-10-25 Joseph Myers <joseph@codesourcery.com>
4578 * elf/elf.h (NT_MIPS_DSP): New macro.
4579 (NT_MIPS_FP_MODE): Likewise.
4581 2018-10-25 Zong Li <zong@andestech.com>
4583 * elf/Makefile (LDFLAGS-tst-execstack-mod.so): Change variable
4584 name by adding the file extension (.so).
4586 2018-10-25 Samuel Thibault <samuel.thibault@ens-lyon.org>
4588 * sysdeps/mach/hurd/i386/Makefile [$(subdir) = conform]
4589 (test-xfail-ISO11/threads.h/linknamespace,
4590 test-xfail-ISO11/threads.h/conform): Add.
4592 2018-10-24 Joseph Myers <joseph@codesourcery.com>
4594 * math/gen-libm-test.py: Import os.
4595 (ALL_FLOATS_MANUAL): New constant.
4596 (ALL_FLOATS_SUFFIX): Likewise.
4597 (Ulps.all_functions): New function.
4598 (real_all_ulps): Likewise.
4599 (generate_err_table_sub): Likewise.
4600 (generate_err_table): Likewise.
4601 (main): Handle -s and -m options.
4602 * manual/libm-err-tab.pl: Remove.
4603 * manual/Makefile ($(objpfx)stamp-libm-err): Use gen-libm-test.py
4604 instead of libm-err-tab.pl.
4605 [$(PERL) != no]: Change condition to [$(if $(PYTHON),$(PERL),no)
4607 * manual/install.texi (Tools for Compilation): Document
4608 requirement for Python to build manual.
4609 * INSTALL: Regenerated.
4611 2018-10-24 Albert ARIBAUD <albert.aribaud@3adev.fr>
4613 * bits/time64.h: New file.
4614 * include/time.h: Replace internal_time_t with __time64_t.
4615 * posix/bits/types (__time64_t): Add.
4616 * stdlib/Makefile: Add bits/time64.h to includes.
4617 * time/tzfile.c: Replace internal_time_t with __time64_t.
4619 2018-10-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
4621 * include/spawn.h (__posix_spawn, posix_spawn_file_actions_addclose,
4622 __posix_spawn_file_actions_adddup2, __posix_spawn_file_actions_destroy,
4623 __posix_spawn_file_actions_init, __posix_spawnattr_init,
4624 __posix_spawnattr_destroy, __posix_spawnattr_setflags,
4625 __posix_spawnattr_setsigdefault, __posix_spawnattr_setsigmask): New
4627 * posix/spawn.c (__posix_spawn): Add libc_hidden_def.
4628 * posix/spawn_faction_addclose.c
4629 (__posix_spawn_file_actions_addclose): Add hidden definition.
4630 * posix/spawn_faction_adddup2.c
4631 (__posix_spawn_file_actions_adddup2): Likewise.
4632 * posix/spawn_faction_destroy.c
4633 (__posix_spawn_file_actions_destroy): Likewise.
4634 * posix/spawn_faction_init.c (__posix_spawn_file_actions_init):
4636 * posix/spawnattr_destroy.c (__posix_spawnattr_destroy): Likewise.
4637 * posix/spawnattr_init.c (__posix_spawnattr_init): Likewise.
4638 * posix/spawnattr_setdefault.c (__posix_spawnattr_setsigdefault):
4640 * posix/spawnattr_setflags.c (__posix_spawnattr_setflags): Likewise.
4641 * posix/spawnattr_setsigmask.c (__posix_spawnattr_setsigmask):
4644 2018-10-24 Andreas Schwab <schwab@suse.de>
4647 * elf/dl-cache.c (_dl_load_cache_lookup): Check for truncated old
4649 * elf/cache.c (print_cache): Likewise.
4651 2018-10-24 Albert ARIBAUD <albert.aribaud@3adev.fr>
4653 * bits/timesize.h: New file.
4654 * stdlib/Makefile (headers): Add bits/timesize.h.
4655 * sysdeps/unix/sysv/linux/bits/msq-pad.h
4656 (__MSQ_PAD_AFTER_TIME): Use __TIMESIZE instead of __WORDSIZE.
4657 * sysdeps/unix/sysv/linux/bits/sem-pad.h
4658 (__SEM_PAD_AFTER_TIME): Likewise.
4659 * sysdeps/unix/sysv/linux/bits/shm-pad.h
4660 (__SHM_PAD_AFTER_TIME): Likewise.
4661 * sysdeps/unix/sysv/linux/hppa/bits/msq-pad.h
4662 (__MSQ_PAD_BEFORE_TIME): Likewise.
4663 * sysdeps/unix/sysv/linux/hppa/bits/sem-pad.h
4664 (__SEM_PAD_BEFORE_TIME): Likewise.
4665 * sysdeps/unix/sysv/linux/hppa/bits/shm-pad.h
4666 (__SHM_PAD_BEFORE_TIME, __SHM_PAD_BETWEEN_TIME_AND_SEGSZ): Likewise.
4667 * sysdeps/unix/sysv/linux/mips/bits/msq-pad.h
4668 (__MSQ_PAD_AFTER_TIME, __MSQ_PAD_BEFORE_TIME): Likewise.
4669 * sysdeps/unix/sysv/linux/powerpc/bits/msq-pad.h
4670 (__MSQ_PAD_BEFORE_TIME): Likewise.
4671 * sysdeps/unix/sysv/linux/powerpc/bits/sem-pad.h
4672 (__SEM_PAD_BEFORE_TIME): Likewise.
4673 * sysdeps/unix/sysv/linux/powerpc/bits/shm-pad.h
4674 (__SHM_PAD_BEFORE_TIME, __SHM_PAD_BETWEEN_TIME_AND_SEGSZ): Likewise.
4675 * sysdeps/unix/sysv/linux/sparc/bits/msq-pad.h
4676 (__MSQ_PAD_BEFORE_TIME): Likewise.
4677 * sysdeps/unix/sysv/linux/sparc/bits/sem-pad.h
4678 (__SEM_PAD_BEFORE_TIME): Likewise.
4679 * sysdeps/unix/sysv/linux/sparc/bits/shm-pad.h
4680 (__SHM_PAD_BEFORE_TIME): Likewise.
4681 * sysdeps/unix/sysv/linux/x86/bits/msq-pad.h: Delete file.
4682 * sysdeps/unix/sysv/linux/x86/bits/shm-pad.h: Likewise.
4683 * sysdeps/unix/sysv/linux/x86/bits/timesize.h: New file.
4685 2018-10-24 H.J. Lu <hongjiu.lu@intel.com>
4687 * benchtests/Makefile (CPPFLAGS-nonlib): Add -DUSE_RDTSCP if
4688 USE_RDTSCP is defined.
4689 * sysdeps/x86/hp-timing.h (HP_TIMING_NOW): Use RDTSCP if
4690 USE_RDTSCP is defined.
4692 2018-10-23 Adhemerval Zanella <adhemerval.zanella@linaro.org>
4694 * misc/tst-preadvwritev2-common.c (IOV_MAX): Define if not
4698 * sysdeps/x86/cpu-features.c (init_cpu_features): Set TSX bits
4699 independently of other flags.
4701 2018-10-23 Florian Weimer <fweimer@redhat.com>
4703 * time/tst-mktime2.c (N_STRINGS): Remove.
4704 (set_timezone): New function.
4705 (spring_forward_gap): Call it. Use FAIL_EXIT1.
4706 (mktime_test1): Report localtime failure and check errno value.
4708 (irix_6_4_bug, bigtime_test): Use TEST_COMPARE.
4709 (do_test): Remove alarm call. Use set_timezone and array_length.
4711 2018-10-23 Andreas Schwab <schwab@suse.de>
4713 * sysdeps/unix/sysv/linux/riscv/setcontext.S (__setcontext)
4714 (__start_context): Use END instead of PSEUDO_END.
4716 2018-10-22 Joseph Myers <joseph@codesourcery.com>
4718 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
4721 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
4725 * wcsmbs/c32rtomb.c: New file.
4726 * wcsmbs/mbrtoc32.c: Likewise.
4727 * wcsmbs/tst-c32-state.c: Likewise.
4728 * wcsmbs/mbrtowc.c (mbrtoc32): Do not define as alias.
4729 * wcsmbs/wcrtomb.c (c32rtomb): Likewise.
4730 * wcsmbs/Makefile (routines): Add mbrtoc32 and c32rtomb.
4731 (tests): Add tst-c32-state.
4732 [$(run-built-tests) = yes] ($(objpfx)tst-c32-state.out): Depend on
4735 2018-10-21 H.J. Lu <hongjiu.lu@intel.com>
4737 * sysdeps/x86/hp-timing.h: Don't include <x86intrin.h>.
4738 (HP_TIMING_NOW): Replace _rdtsc with __builtin_ia32_rdtsc.
4740 2018-10-19 Joseph Myers <joseph@codesourcery.com>
4743 * wcsmbs/c16rtomb.c (c16rtomb): Save first character of surrogate
4744 pair and return 0 in that case, and use saved character to
4745 interpret following character.
4746 * wcsmbs/tst-c16-surrogate.c: New file.
4747 * wcsmbs/Makefile (tests): Add tst-c16-surrogate.c.
4748 [$(run-built-tests) = yes] ($(objpfx)tst-c16-surrogate.out):
4749 Depend on $(gen-locales)
4751 2018-10-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
4754 * sysdeps/unix/sysv/linux/bits/types/siginfo_t.h
4755 (struct siginfo_t): Use correct type for si_band.
4757 2018-10-19 Florian Weimer <fweimer@redhat.com>
4760 * resource/bits/types/struct_rusage.h (struct rusage): Update
4761 comment on struct. Remove extraneous field comment.
4763 2018-10-18 David S. Miller <davem@davemloft.net>
4765 * sysdeps/unix/sysv/linux/sparc/init-first.c: New file.
4766 * sysdeps/unix/sysv/linux/sparc/libc-vdso.h: New file.
4767 * sysdeps/unix/sysv/linux/sparc/Makefile: Add dl-vdso to
4768 sysdep_routines in subdir elf.
4769 * sysdeps/unix/sysv/linux/sparc/Versions: Add GLIBC_PRIVATE
4770 version for __vdso_clock_gettime.
4771 * sysdeps/unix/sysv/linux/sparc/sysdep.h (INTERNAL_VSYSCALL_CALL):
4773 (HAVE_CLOCK_GETTIME_VSYSCALL): Define.
4774 (HAVE_GETTIMEOFDAY_VSYSCALL): Define.
4776 * sysdeps/sparc/fpu/libm-test-ulps: Regenerated.
4778 2018-10-17 H.J. Lu <hongjiu.lu@intel.com>
4780 * sysdeps/i386/init-arch.h: Removed.
4781 * sysdeps/i386/i586/init-arch.h: Likewise.
4782 * sysdeps/i386/i686/init-arch.h: Likewise.
4783 * sysdeps/i386/i686/hp-timing.h: Likewise.
4784 * sysdeps/x86_64/hp-timing.h: Likewise.
4785 * sysdeps/i386/isa.h: New file.
4786 * sysdeps/i386/i586/isa.h: Likewise.
4787 * sysdeps/i386/i686/isa.h: Likewise.
4788 * sysdeps/x86_64/isa.h: Likewise.
4789 * sysdeps/x86/hp-timing.h: New file.
4790 * sysdeps/x86/init-arch.h: Include <isa.h>.
4792 2018-10-17 Joseph Myers <joseph@codesourcery.com>
4794 * math/libm-test-pow.inc (pow_test_data): Do not allow
4795 divide-by-zero exception for pow(+/- 0, -Inf).
4797 2018-10-17 Zack Weinberg <zackw@panix.com>
4799 * manual/job.texi (Job Control is Optional): Remove node, as
4800 job control has not been optional in quite some time.
4801 (Job Control): Mention briefly that systems older than
4802 POSIX.1-2001 might not support job control.
4803 * manual/conf.texi (_POSIX_JOB_CONTROL): Will always be
4804 defined on systems conforming to POSIX.1-2001.
4806 2018-10-17 Arjun Shankar <arjun@redhat.com>
4809 * iconv/gconv_conf.c (__gconv_get_path): Remove locking and fix
4811 * (__gconv_read_conf): Mark function static.
4812 * (once): New static variable.
4813 * (__gconv_load_conf): New function.
4814 * iconv/gconv_int.h (__gconv_load_conf): Likewise.
4815 * iconv/gconv_db.c (once): Remove static variable.
4816 * (__gconv_compare_alias): Use __gconv_load_conf instead of
4818 * (__gconv_find_transform): Likewise.
4819 * iconv/tst-iconv-mt.c: New test.
4820 * iconv/Makefile: Add tst-iconv_mt.
4822 2018-10-17 Joseph Myers <joseph@codesourcery.com>
4824 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
4826 * sysdeps/unix/sysv/linux/bits/shm.h: Include <bits/shm-pad.h>.
4827 (shmatt_t): Define as __syscall_ulong_t.
4828 (__SHM_PAD_TIME): New macro, depending on [__SHM_PAD_BEFORE_TIME]
4829 and [__SHM_PAD_AFTER_TIME].
4830 (struct shmid_ds): Define time fields using __SHM_PAD_TIME.
4831 Define shm_segsz and associated padding based on
4832 [__SHM_SEGSZ_AFTER_TIME] and [__SHM_PAD_BETWEEN_TIME_AND_SEGSZ].
4833 Use __syscall_ulong_t instead of unsigned long int.
4834 [__USE_MISC] (struct shminfo): Use __syscall_ulong_t instead of
4836 [__USE_MISC] (struct shm_info): Likewise.
4837 * sysdeps/unix/sysv/linux/bits/shm-pad.h: New file.
4838 * sysdeps/unix/sysv/linux/hppa/bits/shm-pad.h: Likewise.
4839 * sysdeps/unix/sysv/linux/mips/bits/shm-pad.h: Likewise.
4840 * sysdeps/unix/sysv/linux/powerpc/bits/shm-pad.h: Likewise.
4841 * sysdeps/unix/sysv/linux/sparc/bits/shm-pad.h: Likewise.
4842 * sysdeps/unix/sysv/linux/x86/bits/shm-pad.h: Likewise.
4843 * sysdeps/unix/sysv/linux/hppa/bits/shm.h: Remove.
4844 * sysdeps/unix/sysv/linux/mips/bits/shm.h: Likewise.
4845 * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
4846 * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
4847 * sysdeps/unix/sysv/linux/x86/bits/shm.h: Likewise.
4849 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
4851 * sysdeps/unix/sysv/linux/bits/shm.h: Include <bits/shmlba.h>.
4852 (SHMLBA): Remove macro.
4853 (__getpagesize): Remove function declaration.
4854 * sysdeps/unix/sysv/linux/hppa/bits/shm.h: Include
4856 (SHMLBA): Remove macro.
4857 * sysdeps/unix/sysv/linux/mips/bits/shm.h: Include
4859 (SHMLBA): Remove macro.
4860 * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Include
4862 (SHMLBA): Remove macro.
4863 (__getpagesize): Remove function declaration.
4864 * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Include
4866 (SHMLBA): Remove macro.
4867 (__getshmlba): Remove function declaration.
4868 * sysdeps/unix/sysv/linux/x86/bits/shm.h: Include <bits/shmlba.h>.
4869 (SHMLBA): Remove macro.
4870 (__getpagesize): Remove function declaration.
4871 * sysdeps/unix/sysv/linux/arm/bits/shm.h: Remove file.
4872 * sysdeps/unix/sysv/linux/ia64/bits/shm.h: Likewise.
4873 * sysdeps/unix/sysv/linux/sh/bits/shm.h: Likewise.
4874 * sysdeps/unix/sysv/linux/bits/shmlba.h: New file.
4875 * sysdeps/unix/sysv/linux/arm/bits/shmlba.h: Likewise.
4876 * sysdeps/unix/sysv/linux/hppa/bits/shmlba.h: Likewise.
4877 * sysdeps/unix/sysv/linux/ia64/bits/shmlba.h: Likewise.
4878 * sysdeps/unix/sysv/linux/mips/bits/shmlba.h: Likewise.
4879 * sysdeps/unix/sysv/linux/sh/bits/shmlba.h: Likewise.
4880 * sysdeps/unix/sysv/linux/sparc/bits/shmlba.h: Likewise.
4882 2018-10-17 Stefan Liebler <stli@linux.ibm.com>
4885 * nptl/tst-mutex10.c: New File.
4886 * nptl/Makefile (tests): Add tst-mutex10.
4887 (tst-mutex10-ENV): New variable.
4888 * sysdeps/unix/sysv/linux/s390/force-elision.h: (FORCE_ELISION):
4889 Ensure that elision path is used if elision is available.
4890 * sysdeps/unix/sysv/linux/powerpc/force-elision.h (FORCE_ELISION):
4892 * sysdeps/unix/sysv/linux/x86/force-elision.h: (FORCE_ELISION):
4894 * nptl/pthreadP.h (PTHREAD_MUTEX_TYPE, PTHREAD_MUTEX_TYPE_ELISION)
4895 (PTHREAD_MUTEX_PSHARED): Use atomic_load_relaxed.
4896 * nptl/pthread_mutex_consistent.c (pthread_mutex_consistent): Likewise.
4897 * nptl/pthread_mutex_getprioceiling.c (pthread_mutex_getprioceiling):
4899 * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full)
4900 (__pthread_mutex_cond_lock_adjust): Likewise.
4901 * nptl/pthread_mutex_setprioceiling.c (pthread_mutex_setprioceiling):
4903 * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock): Likewise.
4904 * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock): Likewise.
4905 * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full): Likewise.
4906 * sysdeps/nptl/bits/thread-shared-types.h (struct __pthread_mutex_s):
4908 * nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
4909 Use atomic_load_relaxed and atomic_store_relaxed.
4910 * nptl/pthread_mutex_init.c (__pthread_mutex_init):
4911 Use atomic_store_relaxed.
4913 2018-10-17 Andreas Schwab <schwab@suse.de>
4915 * benchtests/bench-strtod.c (TIMEOUT): Don't define.
4916 * crypt/badsalttest.c (TIMEOUT): Likewise.
4917 * crypt/sha256c-test.c (TIMEOUT): Likewise.
4918 * dirent/tst-fdopendir.c (TIMEOUT): Likewise.
4919 * io/test-lfs.c (TIMEOUT): Likewise.
4920 * libio/tst-atime.c (TIMEOUT): Likewise.
4921 * localedata/tst-leaks.c (TIMEOUT): Likewise.
4922 * nptl/tst-cancel19.c (TIMEOUT): Likewise.
4923 * nptl/tst-cancel22.c (TIMEOUT): Likewise.
4924 * nptl/tst-cancel25.c (TIMEOUT): Likewise.
4925 * nptl/tst-cancel7.c (TIMEOUT): Likewise.
4926 * nptl/tst-cond-except.c (TIMEOUT): Likewise.
4927 * nptl/tst-cond11.c (TIMEOUT): Likewise.
4928 * nptl/tst-cond14.c (TIMEOUT): Likewise.
4929 * nptl/tst-cond15.c (TIMEOUT): Likewise.
4930 * nptl/tst-cond24.c (TIMEOUT): Likewise.
4931 * nptl/tst-cond25.c (TIMEOUT): Likewise.
4932 * nptl/tst-kill2.c (TIMEOUT): Likewise.
4933 * nptl/tst-kill3.c (TIMEOUT): Likewise.
4934 * nptl/tst-mutex4.c (TIMEOUT): Likewise.
4935 * nptl/tst-mutex5.c (TIMEOUT): Likewise.
4936 * nptl/tst-mutex9.c (TIMEOUT): Likewise.
4937 * nptl/tst-once2.c (TIMEOUT): Likewise.
4938 * nptl/tst-once3.c (TIMEOUT): Likewise.
4939 * nptl/tst-once4.c (TIMEOUT): Likewise.
4940 * nptl/tst-robust8.c (TIMEOUT): Likewise.
4941 * nptl/tst-robust9.c (TIMEOUT): Likewise.
4942 * nptl/tst-rwlock16.c (TIMEOUT): Likewise.
4943 * nptl/tst-sem14.c (TIMEOUT): Likewise.
4944 * nptl/tst-sem6.c (TIMEOUT): Likewise.
4945 * nptl/tst-signal3.c (TIMEOUT): Likewise.
4946 * nptl/tst-spin4.c (TIMEOUT): Likewise.
4947 * nptl/tst-tls3.c (TIMEOUT): Likewise.
4948 * nptl/tst-tls4.c (TIMEOUT): Likewise.
4949 * posix/tst-chmod.c (TIMEOUT): Likewise.
4950 * posix/tst-getaddrinfo4.c (TIMEOUT): Likewise.
4951 * posix/tst-getaddrinfo5.c (TIMEOUT): Likewise.
4952 * posix/tst-preadwrite-common.c (TIMEOUT): Likewise.
4953 * posix/tst-regex2.c (TIMEOUT): Likewise.
4954 * posix/tst-waitid.c (TIMEOUT): Likewise.
4955 * rt/tst-aio.c (TIMEOUT): Likewise.
4956 * rt/tst-aio10.c (TIMEOUT): Likewise.
4957 * rt/tst-aio4.c (TIMEOUT): Likewise.
4958 * rt/tst-aio5.c (TIMEOUT): Likewise.
4959 * rt/tst-aio6.c (TIMEOUT): Likewise.
4960 * rt/tst-aio64.c (TIMEOUT): Likewise.
4961 * rt/tst-aio7.c (TIMEOUT): Likewise.
4962 * rt/tst-aio9.c (TIMEOUT): Likewise.
4963 * rt/tst-clock.c (TIMEOUT): Likewise.
4964 * rt/tst-cpuclock1.c (TIMEOUT): Likewise.
4965 * rt/tst-cpuclock2.c (TIMEOUT): Likewise.
4966 * rt/tst-mqueue2.c (TIMEOUT): Likewise.
4967 * rt/tst-mqueue4.c (TIMEOUT): Likewise.
4968 * rt/tst-mqueue5.c (TIMEOUT): Likewise.
4969 * rt/tst-timer4.c (TIMEOUT): Likewise.
4970 * stdio-common/tst-fseek.c (TIMEOUT): Likewise.
4971 * stdio-common/tst-rndseek.c (TIMEOUT): Likewise.
4972 * stdlib/tst-empty-env.c (TIMEOUT): Likewise.
4973 * sysdeps/wordsize-64/tst-writev.c (TIMEOUT): Likewise.
4974 * time/tst-ftime.c (TIMEOUT): Likewise.
4975 * timezone/tst-tzset.c (TIMEOUT): Likewise.
4977 2018-10-16 Anton Youdkevitch <anton.youdkevitch@bell-sw.com>
4979 * sysdeps/aarch64/multiarch/memcpy_thunderx.S: Remove thunderx2 code.
4980 * sysdeps/aarch64/multiarch/memcpy_thunderx2.S: New implementation
4983 2018-10-15 Joseph Myers <joseph@codesourcery.com>
4985 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
4987 * sysdeps/unix/sysv/linux/bits/sem.h: Include <bits/sem-pad.h>
4988 instead of <bits/wordsize.h>.
4989 (__SEM_PAD_TIME): New macro, depending on [__SEM_PAD_BEFORE_TIME]
4990 and [__SEM_PAD_AFTER_TIME].
4991 (struct semid_ds): Define time fields using __SEM_PAD_TIME. Use
4992 __syscall_ulong_t instead of unsigned long int.
4993 * sysdeps/unix/sysv/linux/bits/sem-pad.h: New file.
4994 * sysdeps/unix/sysv/linux/hppa/bits/sem-pad.h: Likewise.
4995 * sysdeps/unix/sysv/linux/mips/bits/sem-pad.h: Likewise.
4996 * sysdeps/unix/sysv/linux/powerpc/bits/sem-pad.h: Likewise.
4997 * sysdeps/unix/sysv/linux/sparc/bits/sem-pad.h: Likewise.
4998 * sysdeps/unix/sysv/linux/x86/bits/sem-pad.h: Likewise.
4999 * sysdeps/unix/sysv/linux/hppa/bits/sem.h: Remove.
5000 * sysdeps/unix/sysv/linux/mips/bits/sem.h: Likewise.
5001 * sysdeps/unix/sysv/linux/powerpc/bits/sem.h: Likewise.
5002 * sysdeps/unix/sysv/linux/sparc/bits/sem.h: Likewise.
5003 * sysdeps/unix/sysv/linux/x86/bits/sem.h: Likewise.
5005 2018-10-14 Paul Eggert <eggert@cs.ucla.edu>
5007 regex: simplify by using intprops.h
5009 * posix/regex_internal.h [_LIBC]: Include intprops.h.
5010 (TYPE_SIGNED, INT_ADD_WRAPV) [_LIBC]: Remove.
5011 intprops.h defines them.
5013 regex: __builtin_expect → __glibc_unlikely
5015 This refactoring was prompted by a problem when the regex code is
5016 used as part of Gnulib and when the builder’s compiler does not grok
5017 __builtin_expect. Problem reported for Gawk by Nelson H.F. Beebe in:
5018 https://lists.gnu.org/r/bug-gnulib/2018-09/msg00137.html
5019 Although this refactoring does not fix the problem directly,
5020 we might as well have Gawk use the now-preferred glibc style for when
5021 __builtin_expect is unavailable.
5022 * posix/regex_internal.h (BE): Remove.
5023 All uses replaced by __glibc_unlikely or __glibc_likely.
5025 2018-10-11 Joseph Myers <joseph@codesourcery.com>
5027 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
5029 * sysdeps/unix/sysv/linux/bits/msq.h: Include <bits/msq-pad.h>
5030 instead of <bits/wordsize.h>.
5031 (msgqnum_t): Define as __syscall_ulong_t.
5032 (msglen_t): Likewise.
5033 (__MSQ_PAD_TIME): New macro, depending on [__MSQ_PAD_BEFORE_TIME]
5034 and [__MSQ_PAD_AFTER_TIME].
5035 (struct msqid_ds): Define time fields using __MSQ_PAD_TIME. Use
5036 __syscall_ulong_t instead of unsigned long int.
5037 * sysdeps/unix/sysv/linux/bits/msq-pad.h: New file.
5038 * sysdeps/unix/sysv/linux/hppa/bits/msq-pad.h: Likewise.
5039 * sysdeps/unix/sysv/linux/mips/bits/msq-pad.h: Likewise.
5040 * sysdeps/unix/sysv/linux/powerpc/bits/msq-pad.h: Likewise.
5041 * sysdeps/unix/sysv/linux/sparc/bits/msq-pad.h: Likewise.
5042 * sysdeps/unix/sysv/linux/x86/bits/msq-pad.h: Likewise.
5043 * sysdeps/unix/sysv/linux/hppa/bits/msq.h: Remove.
5044 * sysdeps/unix/sysv/linux/mips/bits/msq.h: Likewise.
5045 * sysdeps/unix/sysv/linux/powerpc/bits/msq.h: Likewise.
5046 * sysdeps/unix/sysv/linux/sparc/bits/msq.h: Likewise.
5047 * sysdeps/unix/sysv/linux/x86/bits/msq.h: Likewise.
5049 2018-10-10 Joseph Myers <joseph@codesourcery.com>
5051 * sysdeps/unix/sysv/linux/bits/shm.h: Include <bits/wordsize.h>.
5052 (struct shmid_ds): Condition padding after time fields on
5054 * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Remove file.
5055 * sysdeps/unix/sysv/linux/generic/bits/shm.h: Likewise.
5056 * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
5058 * sysdeps/unix/sysv/linux/bits/sem.h: Include <bits/wordsize.h>.
5059 (struct semid_ds): Condition padding after time fields on
5061 * sysdeps/unix/sysv/linux/alpha/bits/sem.h: Remove file.
5062 * sysdeps/unix/sysv/linux/generic/bits/sem.h: Likewise.
5063 * sysdeps/unix/sysv/linux/ia64/bits/sem.h: Likewise.
5064 * sysdeps/unix/sysv/linux/s390/bits/sem.h: Likewise.
5066 * sysdeps/unix/sysv/linux/bits/msq.h: Include <bits/wordsize.h>.
5067 (struct msqid_ds): Condition padding after time fields on
5069 * sysdeps/unix/sysv/linux/alpha/bits/msq.h: Remove file.
5070 * sysdeps/unix/sysv/linux/generic/bits/msq.h: Likewise.
5071 * sysdeps/unix/sysv/linux/ia64/bits/msq.h: Likewise.
5072 * sysdeps/unix/sysv/linux/s390/bits/msq.h: Likewise.
5074 2018-10-09 Szabolcs Nagy <szabolcs.nagy@arm.com>
5076 * nss/tst-nss-files-hosts-multi.c (TIMEOUT): Define.
5078 2018-10-09 Szabolcs Nagy <szabolcs.nagy@arm.com>
5080 * libio/tst-readline.c (TIMEOUT): Define.
5082 2018-10-08 Paul Eggert <eggert@cs.ucla.edu>
5084 mktime fix for Gnulib + coreutils
5086 This fix affects only Gnulib. Problem discovered when
5087 mktime.c was used as part of Gnulib in bleeding-edge Coreutils.
5089 (my_tzset) [!_LIBC && !NEED_MKTIME_WORKING && !NEED_MKTIME_WINDOWS]:
5090 Do not define since it is not used. Defining an unused static
5091 function prompts a warning from GCC when Coreutils is configured
5092 with --enable-gcc-warnings.
5094 2018-10-08 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
5096 * benchtests/scripts/compare_bench.py (main): set float type on
5099 2018-10-08 Rafal Luzynski <digitalfreak@lingonborough.com>
5102 * localedata/locales/kl_GL (mon): Update, the relative case.
5103 (alt_mon): Add, fill with month names in the nominative case.
5104 (d_t_fmt): Set to "%a %b %d %Y %T %Z".
5105 (d_fmt): Set to "%b %d %Y".
5107 2018-10-04 Joseph Myers <joseph@codesourcery.com>
5109 * sysdeps/unix/sysv/linux/hppa/bits/mman.h: Include
5110 <bits/mman-linux.h>.
5111 (PROT_READ): Don't define here.
5112 (PROT_WRITE): Likewise.
5113 (PROT_EXEC): Likewise.
5114 (PROT_NONE): Likewise.
5115 (PROT_GROWSDOWN): Likewise.
5116 (PROT_GROWSUP): Likewise.
5117 (MAP_SHARED): Likewise.
5118 (MAP_PRIVATE): Likewise.
5119 [__USE_MISC] (MAP_SHARED_VALIDATE): Likewise.
5120 [__USE_MISC] (MAP_FILE): Likewise.
5121 [__USE_MISC] (MAP_ANONYMOUS): Likewise.
5122 [__USE_MISC] (MAP_ANON): Likewise.
5123 [__USE_MISC] (MAP_HUGE_SHIFT): Likewise.
5124 [__USE_MISC] (MAP_HUGE_MASK): Likewise.
5125 (MCL_CURRENT): Likewise.
5126 (MCL_FUTURE): Likewise.
5127 (MCL_ONFAULT): Likewise.
5128 [__USE_MISC] (MADV_NORMAL): Likewise.
5129 [__USE_MISC] (MADV_RANDOM): Likewise.
5130 [__USE_MISC] (MADV_SEQUENTIAL): Likewise.
5131 [__USE_MISC] (MADV_WILLNEED): Likewise.
5132 [__USE_MISC] (MADV_DONTNEED): Likewise.
5133 [__USE_MISC] (MADV_FREE): Likewise.
5134 [__USE_MISC] (MADV_REMOVE): Likewise.
5135 [__USE_MISC] (MADV_DONTFORK): Likewise.
5136 [__USE_MISC] (MADV_DOFORK): Likewise.
5137 [__USE_MISC] (MADV_HWPOISON): Likewise.
5138 [__USE_XOPEN2K] (POSIX_MADV_NORMAL): Likewise.
5139 [__USE_XOPEN2K] (POSIX_MADV_RANDOM): Likewise.
5140 [__USE_XOPEN2K] (POSIX_MADV_SEQUENTIAL): Likewise.
5141 [__USE_XOPEN2K] (POSIX_MADV_WILLNEED): Likewise.
5142 [__USE_XOPEN2K] (POSIX_MADV_DONTNEED): Likewise.
5143 (__MAP_ANONYMOUS): New macro.
5144 [__USE_MISC] (MAP_TYPE): Undefine and redefine after
5145 <bits/mman-linux.h> inclusion.
5146 (MAP_FIXED): Likewise.
5147 (MS_SYNC): Likewise.
5148 (MS_ASYNC): Likewise.
5149 (MS_INVALIDATE): Likewise.
5150 [__USE_MISC] (MADV_MERGEABLE): Likewise.
5151 [__USE_MISC] (MADV_UNMERGEABLE): Likewise.
5152 [__USE_MISC] (MADV_HUGEPAGE): Likewise.
5153 [__USE_MISC] (MADV_NOHUGEPAGE): Likewise.
5154 [__USE_MISC] (MADV_DONTDUMP): Likewise.
5155 [__USE_MISC] (MADV_DODUMP): Likewise.
5156 [__USE_MISC] (MADV_WIPEONFORK): Likewise.
5157 [__USE_MISC] (MADV_KEEPONFORK): Likewise.
5160 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (NO_MATH_REDIRECT):
5162 * sysdeps/ieee754/ldbl-opt/test-nldbl-redirect.c: New file.
5163 * sysdeps/ieee754/ldbl-opt/Makefile [$(subdir) = math] (tests):
5164 Add test-nldbl-redirect.
5165 [$(subdir) = math] (CFLAGS-test-nldbl-redirect.c): New variable.
5166 [$(subdir) = math] ($(objpfx)test-nldbl-redirect): Depend on
5167 $(objpfx)libnldbl_nonshared.a.
5169 2018-10-04 Stefan Liebler <stli@linux.ibm.com>
5171 * support/support.h (support_objdir_elf_ldso): New variable.
5172 * support/support_paths.c (support_objdir_elf_ldso): Likewise.
5173 * support/Makefile (CFLAGS-support_paths.c): Add definition
5174 for OBJDIR_ELF_LDSO_PATH.
5175 * support/test-container.c (main): Search for the ld.so
5176 which is also used by the testsuite.
5178 2018-10-02 Rafal Luzynski <digitalfreak@lingonborough.com>
5181 * localedata/locales/kl_GL: (abday): Fix spelling of Sun (Sunday),
5182 should be "sap" rather than "sab".
5183 (day): Fix spelling of Sunday, should be "sapaat" rather than
5186 2018-10-02 Joseph Myers <joseph@codesourcery.com>
5188 * math/libm-test-fma.inc (fma_test_data): Add more tests.
5190 2018-10-02 Martin Jansa <Martin.Jansa@gmail.com>
5193 * sysdeps/ieee754/soft-fp/s_fdiv.c: Include <libc-diag.h> and use
5194 DIAG_PUSH_NEEDS_COMMENT, DIAG_IGNORE_NEEDS_COMMENT and
5195 DIAG_POP_NEEDS_COMMENT to disable -Wmaybe-uninitialized.
5197 2018-10-02 Adhemerval Zanella <adhemerval.zanella@linaro.org>
5199 * sysdeps/unix/sysv/linux/fd_to_filename.h: Add missing includes.
5201 2018-10-02 H.J. Lu <hongjiu.lu@intel.com>
5203 * sysdeps/unix/sysv/linux/x86/Makefile (CFLAGS-elision-lock.c):
5205 (CFLAGS-elision-unlock.c): Likewise.
5206 (CFLAGS-elision-timed.c): Likewise.
5207 (CFLAGS-elision-trylock.c): Likewise.
5208 * sysdeps/unix/sysv/linux/x86/hle.h: Rewritten.
5210 2018-10-02 Adhemerval Zanella <adhemerval.zanella@linaro.org>
5213 * libio/Makefile (tests): Add tst-memstream4 and tst-wmemstream4.
5214 * libio/freopen.c (freopen): Sync stream before reopen and adjust to
5215 new fd_to_filename interface.
5216 * libio/freopen64.c (freopen64): Likewise.
5217 * libio/tst-memstream.h: New file.
5218 * libio/tst-memstream4.c: Likewise.
5219 * libio/tst-wmemstream4.c: Likewise.
5220 * sysdeps/generic/fd_to_filename.h (fd_to_filename): Change signature.
5221 * sysdeps/unix/sysv/linux/fd_to_filename.h (fd_to_filename): Likewise
5222 and remove internal dynamic allocation.
5224 2018-10-01 Joseph Myers <joseph@codesourcery.com>
5226 * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_GNU]
5227 (MREMAP_MAYMOVE): Do not define here.
5228 [__USE_GNU] (MREMAP_FIXED): Likewise.
5229 * sysdeps/unix/sysv/linux/bits/mman-shared.h [__USE_GNU]
5230 (MREMAP_MAYMOVE): Define here instead.
5231 [__USE_GNU] (MREMAP_FIXED): Likewise.
5232 * sysdeps/unix/sysv/linux/hppa/bits/mman.h [__USE_GNU]
5233 (MREMAP_MAYMOVE): Remove.
5234 [__USE_GNU] (MREMAP_FIXED): Likewise.
5236 2018-09-28 Joseph Myers <joseph@codesourcery.com>
5238 * math/fromfp.h: Do not include <math_private.h>.
5239 * math/s_cacosh_template.c: Likewise.
5240 * math/s_casin_template.c: Likewise.
5241 * math/s_casinh_template.c: Likewise.
5242 * math/s_ccos_template.c: Likewise.
5243 * math/s_cproj_template.c: Likewise.
5244 * math/s_fdim_template.c: Likewise.
5245 * math/s_fmaxmag_template.c: Likewise.
5246 * math/s_fminmag_template.c: Likewise.
5247 * math/s_iseqsig_template.c: Likewise.
5248 * math/s_ldexp_template.c: Likewise.
5249 * math/s_nextdown_template.c: Likewise.
5250 * math/w_log1p_template.c: Likewise.
5251 * math/w_scalbln_template.c: Likewise.
5252 * sysdeps/aarch64/fpu/feholdexcpt.c: Likewise.
5253 * sysdeps/aarch64/fpu/fesetround.c: Likewise.
5254 * sysdeps/aarch64/fpu/fgetexcptflg.c: Likewise.
5255 * sysdeps/aarch64/fpu/ftestexcept.c: Likewise.
5256 * sysdeps/aarch64/fpu/s_llrint.c: Likewise.
5257 * sysdeps/aarch64/fpu/s_llrintf.c: Likewise.
5258 * sysdeps/aarch64/fpu/s_lrint.c: Likewise.
5259 * sysdeps/aarch64/fpu/s_lrintf.c: Likewise.
5260 * sysdeps/i386/fpu/s_atanl.c: Likewise.
5261 * sysdeps/i386/fpu/s_f32xaddf64.c: Likewise.
5262 * sysdeps/i386/fpu/s_f32xsubf64.c: Likewise.
5263 * sysdeps/i386/fpu/s_fdim.c: Likewise.
5264 * sysdeps/i386/fpu/s_logbl.c: Likewise.
5265 * sysdeps/i386/fpu/s_rintl.c: Likewise.
5266 * sysdeps/i386/fpu/s_significandl.c: Likewise.
5267 * sysdeps/ia64/fpu/s_matherrf.c: Likewise.
5268 * sysdeps/ia64/fpu/s_matherrl.c: Likewise.
5269 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
5270 * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
5271 * sysdeps/ieee754/dbl-64/s_fma.c: Likewise.
5272 * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
5273 * sysdeps/ieee754/flt-32/s_cbrtf.c: Likewise.
5274 * sysdeps/ieee754/k_standardf.c: Likewise.
5275 * sysdeps/ieee754/k_standardl.c: Likewise.
5276 * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
5277 * sysdeps/ieee754/ldbl-64-128/s_finitel.c: Likewise.
5278 * sysdeps/ieee754/ldbl-64-128/s_fpclassifyl.c: Likewise.
5279 * sysdeps/ieee754/ldbl-64-128/s_isinfl.c: Likewise.
5280 * sysdeps/ieee754/ldbl-64-128/s_isnanl.c: Likewise.
5281 * sysdeps/ieee754/ldbl-64-128/s_signbitl.c: Likewise.
5282 * sysdeps/ieee754/ldbl-96/s_cbrtl.c: Likewise.
5283 * sysdeps/ieee754/ldbl-96/s_fma.c: Likewise.
5284 * sysdeps/ieee754/ldbl-96/s_fmal.c: Likewise.
5285 * sysdeps/ieee754/s_signgam.c: Likewise.
5286 * sysdeps/powerpc/power5+/fpu/s_modf.c: Likewise.
5287 * sysdeps/powerpc/power5+/fpu/s_modff.c: Likewise.
5288 * sysdeps/powerpc/power7/fpu/s_logbf.c: Likewise.
5289 * sysdeps/riscv/rv64/rvd/s_ceil.c: Likewise.
5290 * sysdeps/riscv/rv64/rvd/s_floor.c: Likewise.
5291 * sysdeps/riscv/rv64/rvd/s_nearbyint.c: Likewise.
5292 * sysdeps/riscv/rv64/rvd/s_round.c: Likewise.
5293 * sysdeps/riscv/rv64/rvd/s_roundeven.c: Likewise.
5294 * sysdeps/riscv/rv64/rvd/s_trunc.c: Likewise.
5295 * sysdeps/riscv/rvd/s_finite.c: Likewise.
5296 * sysdeps/riscv/rvd/s_fmax.c: Likewise.
5297 * sysdeps/riscv/rvd/s_fmin.c: Likewise.
5298 * sysdeps/riscv/rvd/s_fpclassify.c: Likewise.
5299 * sysdeps/riscv/rvd/s_isinf.c: Likewise.
5300 * sysdeps/riscv/rvd/s_isnan.c: Likewise.
5301 * sysdeps/riscv/rvd/s_issignaling.c: Likewise.
5302 * sysdeps/riscv/rvf/fegetround.c: Likewise.
5303 * sysdeps/riscv/rvf/feholdexcpt.c: Likewise.
5304 * sysdeps/riscv/rvf/fesetenv.c: Likewise.
5305 * sysdeps/riscv/rvf/fesetround.c: Likewise.
5306 * sysdeps/riscv/rvf/feupdateenv.c: Likewise.
5307 * sysdeps/riscv/rvf/fgetexcptflg.c: Likewise.
5308 * sysdeps/riscv/rvf/ftestexcept.c: Likewise.
5309 * sysdeps/riscv/rvf/s_ceilf.c: Likewise.
5310 * sysdeps/riscv/rvf/s_finitef.c: Likewise.
5311 * sysdeps/riscv/rvf/s_floorf.c: Likewise.
5312 * sysdeps/riscv/rvf/s_fmaxf.c: Likewise.
5313 * sysdeps/riscv/rvf/s_fminf.c: Likewise.
5314 * sysdeps/riscv/rvf/s_fpclassifyf.c: Likewise.
5315 * sysdeps/riscv/rvf/s_isinff.c: Likewise.
5316 * sysdeps/riscv/rvf/s_isnanf.c: Likewise.
5317 * sysdeps/riscv/rvf/s_issignalingf.c: Likewise.
5318 * sysdeps/riscv/rvf/s_nearbyintf.c: Likewise.
5319 * sysdeps/riscv/rvf/s_roundevenf.c: Likewise.
5320 * sysdeps/riscv/rvf/s_roundf.c: Likewise.
5321 * sysdeps/riscv/rvf/s_truncf.c: Likewise.
5322 * sysdeps/riscv/rv64/rvd/s_rint.c: Include <stdbool.h> instead of
5324 * sysdeps/riscv/rvf/s_rintf.c: Likewise.
5326 2018-09-28 H.J. Lu <hongjiu.lu@intel.com>
5329 * sysdeps/i386/dl-cet.c: Removed.
5330 * sysdeps/i386/dl-machine.h (_dl_runtime_resolve_shstk): New
5332 (_dl_runtime_profile_shstk): Likewise.
5333 (elf_machine_runtime_setup): Use _dl_runtime_profile_shstk or
5334 _dl_runtime_resolve_shstk if SHSTK is enabled by kernel.
5336 2018-09-28 Adhemerval Zanella <adhemerval.zanella@linaro.org>
5339 * misc/tst-preadvwritev2-common.c (do_test_with_invalid_fd,
5340 do_test_with_invalid_iov): New tests.
5341 * misc/tst-preadvwritev2.c, misc/tst-preadvwritev64v2.c (do_test):
5342 Call do_test_with_invalid_fd and do_test_with_invalid_iov.
5343 * sysdeps/unix/sysv/linux/preadv2.c (preadv2): Use fallback code iff
5345 * sysdeps/unix/sysv/linux/preadv64v2.c (preadv64v2): Likewise.
5346 * sysdeps/unix/sysv/linux/pwritev2.c (pwritev2): Likewise.
5347 * sysdeps/unix/sysv/linux/pwritev64v2.c (pwritev64v2): Likewise.
5349 2018-09-27 Joseph Myers <joseph@codesourcery.com>
5351 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
5352 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT]
5353 (MATH_REDIRECT_BINARY_ARGS): New macro.
5354 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
5355 && !NO_MATH_REDIRECT] (copysign): Redirect using MATH_REDIRECT.
5356 * sysdeps/alpha/fpu/s_copysign.c: Define NO_MATH_REDIRECT before
5358 * sysdeps/alpha/fpu/s_copysignf.c: Likewise.
5359 * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
5360 * sysdeps/ieee754/float128/s_copysignf128.c: Likewise.
5361 * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
5362 * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
5363 * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
5364 * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
5365 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c:
5367 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c:
5369 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: Likewise.
5370 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c: Likewise.
5371 * sysdeps/riscv/rvd/s_copysign.c: Likewise.
5372 * sysdeps/riscv/rvf/s_copysignf.c: Likewise.
5373 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.c:
5375 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.c:
5377 * sysdeps/generic/math_private_calls.h
5378 [!__MATH_DECLARING_LONG_DOUBLE || !NO_LONG_DOUBLE] (__copysign):
5379 Do not declare and define as an inline function.
5380 * math/divtc3.c (__divtc3): Use copysign functions instead of
5381 __copysign variants.
5382 * math/multc3.c (__multc3): Likewise.
5383 * sysdeps/generic/math-type-macros.h (M_COPYSIGN): Likewise.
5384 * sysdeps/ieee754/dbl-64/e_atan2.c (signArctan2): Likewise.
5385 * sysdeps/ieee754/dbl-64/e_atanh.c (__ieee754_atanh): Likewise.
5386 * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r):
5388 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn): Likewise.
5389 (__ieee754_yn): Likewise.
5390 * sysdeps/ieee754/dbl-64/s_asinh.c (__asinh): Likewise.
5391 * sysdeps/ieee754/dbl-64/s_atan.c (__signArctan): Likewise.
5392 * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): Likewise.
5393 * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
5394 * sysdeps/ieee754/dbl-64/s_sin.c (do_sin): Likewise.
5396 * sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Likewise.
5397 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c (__nearbyint):
5399 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c (__scalbln):
5401 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c (__scalbn):
5403 * sysdeps/ieee754/flt-32/e_atanhf.c (__ieee754_atanhf): Likewise.
5404 * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r):
5406 * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_jnf): Likewise.
5407 (__ieee754_ynf): Likewise.
5408 * sysdeps/ieee754/flt-32/s_asinhf.c (__asinhf): Likewise.
5409 * sysdeps/ieee754/flt-32/s_scalbnf.c (__scalbnf): Likewise.
5410 * sysdeps/ieee754/k_standard.c (__kernel_standard): Likewise.
5411 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (__ieee754_gammal_r):
5413 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_jnl): Likewise.
5414 (__ieee754_ynl): Likewise.
5415 * sysdeps/ieee754/ldbl-128/s_scalblnl.c (__scalblnl): Likewise.
5416 * sysdeps/ieee754/ldbl-128/s_scalbnl.c (__scalbnl): Likewise.
5417 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
5419 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
5420 (__ieee754_ynl): Likewise.
5421 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c (__fmal): Likewise.
5422 * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
5423 * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
5424 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
5426 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl): Likewise.
5428 * sysdeps/ieee754/ldbl-96/s_asinhl.c (__asinhl): Likewise.
5429 * sysdeps/ieee754/ldbl-96/s_scalblnl.c (__scalblnl): Likewise.
5430 * sysdeps/ieee754/ldbl-opt/nldbl-copysign.c (copysignl): Likewise.
5431 * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Likewise.
5432 * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
5434 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
5435 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (round): Redirect
5436 using MATH_REDIRECT.
5437 * sysdeps/aarch64/fpu/s_round.c: Define NO_MATH_REDIRECT before
5439 * sysdeps/aarch64/fpu/s_roundf.c: Likewise.
5440 * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
5441 * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
5442 * sysdeps/ieee754/float128/s_roundf128.c: Likewise.
5443 * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
5444 * sysdeps/ieee754/ldbl-128/s_roundl.c: Likewise.
5445 * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
5446 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c: Likewise.
5447 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c: Likewise.
5448 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c: Likewise.
5449 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c: Likewise.
5450 * sysdeps/riscv/rv64/rvd/s_round.c: Likewise.
5451 * sysdeps/riscv/rvf/s_roundf.c: Likewise.
5452 * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
5453 (round): Redirect to __round.
5454 (__roundl): Call round instead of __round.
5455 * sysdeps/powerpc/fpu/math_private.h [_ARCH_PWR5X] (__round):
5457 [_ARCH_PWR5X] (__roundf): Likewise.
5458 * sysdeps/ieee754/dbl-64/e_gamma_r.c (gamma_positive): Use round
5459 functions instead of __round variants.
5460 * sysdeps/ieee754/flt-32/e_gammaf_r.c (gammaf_positive): Likewise.
5461 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (gammal_positive):
5463 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (gammal_positive):
5465 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (gammal_positive):
5467 * sysdeps/x86/fpu/powl_helper.c (__powl_helper): Likewise.
5468 * sysdeps/ieee754/ldbl-128ibm/e_expl.c (lroundl): Redirect to
5470 (__ieee754_expl): Call roundl instead of __roundl.
5472 2018-09-27 Andreas Schwab <schwab@suse.de>
5475 * stdlib/tst-setcontext9.c (f1a): Make st2 static.
5476 (do_test): Make st1 static.
5478 2018-09-26 Andreas Schwab <schwab@suse.de>
5481 * sysdeps/powerpc/powerpc32/dl-start.S: Add unwind information.
5482 * elf/Makefile (tests): Add tst-unwind-ctor.
5483 (modules-names): Add tst-unwind-ctor-lib.
5484 ($(objpfx)tst-unwind-ctor): Depend on
5485 $(objpfx)tst-unwind-ctor-lib.so.
5487 2018-09-26 Joseph Myers <joseph@codesourcery.com>
5489 * sysdeps/unix/sysv/linux/bits/mman-map-flags-generic.h: New
5490 file. Most contents moved from ....
5491 * sysdeps/unix/sysv/linux/bits/mman.h: ... here. Move contents to
5492 and include <bits/mman-map-flags-generic.h>.
5493 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
5494 (sysdep_headers): Add bits/mman-map-flags-generic.h.
5495 * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Include
5496 <bits/mman-map-flags-generic.h>.
5497 [__USE_MISC] (MAP_GROWSUP): Only define this macro, not other
5498 macros defined in <bits/mman-map-flags-generic.h>.
5499 * sysdeps/unix/sysv/linux/x86/bits/mman.h: Include
5500 <bits/mman-map-flags-generic.h>.
5501 [__USE_MISC] (MAP_32BIT): Only define this macro, not other macros
5502 defined in <bits/mman-map-flags-generic.h>.
5504 2018-09-26 Andreas Schwab <schwab@suse.de>
5506 * Makefile ($(common-objpfx)testrun.sh): Remove leading space from
5509 2018-09-25 Adam J. Richte <adam_richter2004@yahoo.com>
5510 Adhemerval Zanella <adhemerval.zanella@linaro.org>
5511 Fangrui Song <maskray@google.com>
5514 * config.make.in (have-textrel_ifunc): New define.
5515 * configure.ac: Add check if linker supports textrel relocation with
5517 * elf/Makefile [have-textrel_ifunc == yes] (ifunc-pie-tests): Add
5519 (CFLAGS-tst-ifunc-textrel.c): New rule.
5520 * elf/dl-reloc.c (_dl_relocate_object): Use all required flags on
5521 DT_TEXTREL segments, not only PROT_READ and PROT_WRITE.
5522 * elf/tst-ifunc-textrel.c: New file.
5524 2018-09-25 Joseph Myers <joseph@codesourcery.com>
5526 * sysdeps/unix/sysv/linux/sys/procfs.h: Include
5527 <bits/procfs-prregset.h>.
5528 (prgregset_t): Define using __prgregset_t.
5529 (prfpregset_t): Define using __prfpregset_t.
5530 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
5531 (sysdep_headers): Add bits/procfs-prregset.h.
5532 * sysdeps/unix/sysv/linux/bits/procfs-prregset.h: New file.
5533 * sysdeps/unix/sysv/linux/alpha/bits/procfs-prregset.h: Likewise.
5534 * sysdeps/unix/sysv/linux/alpha/bits/procfs.h: Likewise.
5535 * sysdeps/unix/sysv/linux/alpha/sys/procfs.h: Remove file.
5537 * sysdeps/unix/sysv/linux/sys/procfs.h: Include
5538 <bits/procfs-id.h> and <bits/procfs-extra.h>.
5539 (struct elf_prpsinfo): Use __pr_uid_t and __pr_gid_t as types of
5541 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
5542 (sysdep_headers): Add bits/procfs-id.h and bits/procfs-extra.h.
5543 * sysdeps/unix/sysv/linux/bits/procfs-extra.h: New file.
5544 * sysdeps/unix/sysv/linux/bits/procfs-id.h: Likewise.
5545 * sysdeps/unix/sysv/linux/arm/bits/procfs-id.h: Likewise.
5546 * sysdeps/unix/sysv/linux/arm/bits/procfs.h: Likewise.
5547 * sysdeps/unix/sysv/linux/m68k/bits/procfs-id.h: Likewise.
5548 * sysdeps/unix/sysv/linux/m68k/bits/procfs.h: Likewise.
5549 * sysdeps/unix/sysv/linux/s390/bits/procfs-extra.h: Likewise.
5550 * sysdeps/unix/sysv/linux/s390/bits/procfs-id.h: Likewise.
5551 * sysdeps/unix/sysv/linux/s390/bits/procfs.h: Likewise.
5552 * sysdeps/unix/sysv/linux/sh/bits/procfs-id.h: Likewise.
5553 * sysdeps/unix/sysv/linux/sh/bits/procfs.h: Likewise.
5554 * sysdeps/unix/sysv/linux/sparc/bits/procfs-extra.h: Likewise.
5555 * sysdeps/unix/sysv/linux/sparc/bits/procfs-id.h: Likewise.
5556 * sysdeps/unix/sysv/linux/sparc/bits/procfs.h: Likewise.
5557 * sysdeps/unix/sysv/linux/x86/bits/procfs-id.h: Likewise.
5558 * sysdeps/unix/sysv/linux/x86/bits/procfs.h: Likewise.
5559 * sysdeps/unix/sysv/linux/arm/sys/procfs.h: Remove file.
5560 * sysdeps/unix/sysv/linux/m68k/sys/procfs.h: Likewise.
5561 * sysdeps/unix/sysv/linux/s390/sys/procfs.h: Likewise.
5562 * sysdeps/unix/sysv/linux/sh/sys/procfs.h: Likewise.
5563 * sysdeps/unix/sysv/linux/sparc/sys/procfs.h: Likewise.
5564 * sysdeps/unix/sysv/linux/x86/sys/procfs.h: Likewise.
5566 * sysdeps/unix/sysv/linux/sys/procfs.h: Replace with file based on
5567 AArch64 version. Include <bits/procfs.h>.
5568 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
5569 (sysdep_headers): Add bits/procfs.h.
5570 * sysdeps/unix/sysv/linux/bits/procfs.h: New file.
5571 * sysdeps/unix/sysv/linux/aarch64/bits/procfs.h: Likewise.
5572 * sysdeps/unix/sysv/linux/hppa/bits/procfs.h: Likewise.
5573 * sysdeps/unix/sysv/linux/ia64/bits/procfs.h: Likewise.
5574 * sysdeps/unix/sysv/linux/microblaze/bits/procfs.h: Likewise.
5575 * sysdeps/unix/sysv/linux/mips/bits/procfs.h: Likewise.
5576 * sysdeps/unix/sysv/linux/nios2/bits/procfs.h: Likewise.
5577 * sysdeps/unix/sysv/linux/powerpc/bits/procfs.h: Likewise.
5578 * sysdeps/unix/sysv/linux/riscv/bits/procfs.h: Likewise.
5579 * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h: Remove file.
5580 * sysdeps/unix/sysv/linux/hppa/sys/procfs.h: Likewise.
5581 * sysdeps/unix/sysv/linux/ia64/sys/procfs.h: Likewise.
5582 * sysdeps/unix/sysv/linux/microblaze/sys/procfs.h: Likewise.
5583 * sysdeps/unix/sysv/linux/mips/sys/procfs.h: Likewise.
5584 * sysdeps/unix/sysv/linux/nios2/sys/procfs.h: Likewise.
5585 * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: Likewise.
5586 * sysdeps/unix/sysv/linux/riscv/sys/procfs.h: Likewise.
5588 2018-09-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
5590 * posix/tst-spawn.c (do_prepare, handle_restart, do_test):
5593 2018-09-25 Arjun Shankar <arjun@redhat.com>
5595 * iconv/gconv_int.h (__gconv_path_elem): Remove.
5596 (__gconv_max_path_elem_len): Likewise.
5597 (__gconv_nmodules): Likewise.
5598 (__gconv_get_path): Likewise.
5599 (path_elem): Move to ...
5600 * iconv/gconv_conf.c: ... here.
5601 (__gconv_get_path): Mark function static.
5602 * iconv/gconv_int.h (GCONV_NCHAR_GOAL): Move to ...
5603 * iconv/gconv_open.c: ... here.
5605 2018-09-24 Andreas Schwab <schwab@suse.de>
5607 * scripts/haveversions.awk: New file.
5608 * Makerules ($(common-objpfx)Versions.def)
5609 ($(common-objpfx)Versions.all, $(common-objpfx)Versions.v.i)
5610 ($(common-objpfx)sysd-versions, $(common-objpfx)versions.stmp):
5612 * Makeconfig ($(common-objpfx)Versions.def)
5613 ($(common-objpfx)Versions.all, $(common-objpfx)Versions.v.i)
5614 ($(common-objpfx)sysd-versions, $(common-objpfx)versions.stmp):
5616 ($(common-objpfx)Versions.mk): New rule. Include it.
5617 * nis/Makefile [!have-GLIBC_2.28]: Don't build any targets.
5618 Emit error if build-obsolete-nsl = yes.
5619 * manual/install.texi (Configuring and compiling): Describe
5620 --enable-obsolete-nsl as unavaiable after version 2.28.
5621 * INSTALL: Regenerate.
5623 2018-09-21 Adhemerval Zanella <adhemerval.zanella@linaro.org>
5625 * NEWS: Add note about new TLE support on powerpc64le.
5626 * sysdeps/powerpc/nptl/tcb-offsets.sym (TM_CAPABLE): Remove.
5627 * sysdeps/powerpc/nptl/tls.h (tcbhead_t): Rename tm_capable to
5629 (TLS_INIT_TP, TLS_DEFINE_INIT_TP): Remove tm_capable setup.
5630 (THREAD_GET_TM_CAPABLE, THREAD_SET_TM_CAPABLE): Remove macros.
5631 * sysdeps/powerpc/powerpc32/sysdep.h,
5632 sysdeps/powerpc/powerpc64/sysdep.h (ABORT_TRANSACTION_IMPL,
5633 ABORT_TRANSACTION): Remove macros.
5634 * sysdeps/powerpc/sysdep.h (ABORT_TRANSACTION): Likewise.
5635 * sysdeps/unix/sysv/linux/powerpc/elision-conf.c (elision_init): Set
5636 __pthread_force_elision iff PPC_FEATURE2_HTM_NOSC is set.
5637 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h,
5638 sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
5639 sysdeps/unix/sysv/linux/powerpc/syscall.S (ABORT_TRANSACTION): Remove
5641 * sysdeps/unix/sysv/linux/powerpc/not-errno.h: Remove file.
5643 2018-09-21 Rafal Luzynski <digitalfreak@lingonborough.com>
5646 * localedata/locales/it_IT (d_t_fmt): Use "%a %-d %b %Y, %T".
5647 (date_fmt): Use "%a %-d %b %Y, %T, %Z".
5648 * localedata/locales/it_CH (d_t_fmt): Use "%a %-d %b %Y, %T"
5649 which is the same as in it_IT.
5650 (d_fmt): Use "%d.%m.%Y" which is the same as in de_CH.
5651 (date_fmt): Use "%a %-d %b %Y, %T, %Z" which is the same as in it_IT.
5653 2018-09-20 Joseph Myers <joseph@codesourcery.com>
5655 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
5656 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (trunc): Redirect
5657 using MATH_REDIRECT.
5658 * sysdeps/aarch64/fpu/s_trunc.c: Define NO_MATH_REDIRECT before
5660 * sysdeps/aarch64/fpu/s_truncf.c: Likewise.
5661 * sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c: Likewise.
5662 * sysdeps/ieee754/float128/s_truncf128.c: Likewise.
5663 * sysdeps/ieee754/dbl-64/s_trunc.c: Likewise.
5664 * sysdeps/ieee754/flt-32/s_truncf.c: Likewise.
5665 * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
5666 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c: Likewise.
5667 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c: Likewise.
5668 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c: Likewise.
5669 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c: Likewise.
5670 * sysdeps/riscv/rv64/rvd/s_trunc.c: Likewise.
5671 * sysdeps/riscv/rvf/s_truncf.c: Likewise.
5672 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.c: Likewise.
5673 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.c: Likewise.
5674 * sysdeps/x86_64/fpu/multiarch/s_trunc.c: Likewise.
5675 * sysdeps/x86_64/fpu/multiarch/s_truncf.c: Likewise.
5676 * sysdeps/m68k/m680x0/fpu/s_trunc_template.c: Likewise.
5677 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
5678 (ceil): Redirect to __ceil.
5679 (floor): Redirect to __floor.
5680 (trunc): Redirect to __trunc.
5681 (__truncl): Call trunc instead of __trunc.
5682 * sysdeps/powerpc/fpu/math_private.h [_ARCH_PWR5X] (__trunc):
5684 [_ARCH_PWR5X] (__truncf): Likewise.
5685 * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r): Use
5686 trunc functions instead of __trunc variants.
5687 * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r):
5689 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (__ieee754_gammal_r):
5691 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
5693 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
5696 * sysdeps/x86/cpu-features.h [__geode__ || __k6__]: Handle like
5697 [__i586__ || __pentium__].
5698 [__i486__]: Handle explicitly.
5699 (HAS_CPUID): Define to 1 if above macros are undefined.
5700 (HAS_I586): Likewise.
5701 (HAS_I686): Likewise.
5703 2018-09-20 Florian Weimer <fweimer@redhat.com>
5705 * misc/tst-gethostid.c: New file.
5706 * misc/Makefile [$(build-shared)] (tests): Add tst-gethostid.
5707 (tst-gethostid): Link with -ldl.
5709 2018-09-20 Mingli Yu <Mingli.Yu@windriver.com>
5711 * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Check for NULL
5712 value from gethostbyname_r.
5714 2018-09-19 Carlos O'Donell <carlos@redhat.com>
5716 * stdlib/tst-setcontext9.c (f1): Rename to...
5718 (f1b): New function implementing lower half of f1 in alternate stack.
5720 2018-09-19 Paul Eggert <eggert@cs.ucla.edu>
5722 Fix mktime localtime offset confusion
5724 * include/time.h (__mktime_internal): The localtime offset is now
5725 of type long int instead of time_t. This is the longstanding type
5726 in glibc, and it is more than enough to represent difference
5727 between localtime and gmtime even if it is 32 bits and time_t is
5728 64. Changing it now will let us avoid an unnecessary change when
5729 time_t is widened to 64 bits on 32-bit platforms.
5730 * time/mktime-internal.h (mktime_offset_t): Now long int.
5732 Merge mktime, timegm from upstream Gnulib
5733 [BZ #23603][BZ #16346]
5734 This fixes some obscure problems with integer overflow.
5735 Although it looks scary, it is almost all a byte-for-byte copy
5736 from Gnulib, and the Gnulib code has been tested reasonably well.
5737 * include/intprops.h: New file, copied from Gnulib.
5738 * include/verify.h, time/mktime-internal.h:
5739 New tiny files, simplified from Gnulib.
5740 * time/mktime.c: Copy from Gnulib. This has the following changes:
5741 Do not include config.h if DEBUG_MKTIME is nonzero.
5742 Include stdbool.h, intprops.h, verify.h.
5743 Include string.h only if needed.
5744 Include stdlib.h on MS-Windows.
5745 Include mktime-internal.h.
5746 (DEBUG_MKTIME): Default to 0, and simplify later uses.
5747 (NEED_MKTIME_INTERNAL, NEED_MKTIME_WINDOWS)
5748 (NEED_MKTIME_WORKING): Give default values to pacify -Wundef,
5749 which glibc uses. Default NEED_MKTIME_WORKING to DEBUG_MKTIME, to
5750 simplify later conditionals; default the others to zero. Use
5751 these conditionals to express only the code needed on the current
5752 platform. In uses of these conditionals, explicitly spell out how
5753 _LIBC affects things, so it’s easier to review from a glibc
5755 (WRAPV): Remove; no longer needed now that we have
5756 systematic overflow checking.
5757 (my_tzset, __tzset) [!_LIBC]: New function and macro, to better
5758 compartmentalize tzset issues. Move system-dependent tzsettish
5759 code here from mktime.
5760 (verify): Remove; now done by verify.h. All uses changed.
5761 (long_int): Use a more-conservative definition, to avoid
5763 (SHR): Remove, replacing with ...
5764 (shr): New function, which means we needn’t worry about side
5765 effects in args, and conversion analysis is simpler.
5766 (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT, TYPE_SIGNED, TYPE_MINIMUM)
5767 (TYPE_MAXIMUM, TIME_T_MIN, TIME_T_MAX, TIME_T_MIDPOINT)
5768 (time_t_avg, time_t_add_ok): Remove.
5769 (mktime_min, mktime_max): New constants.
5770 (leapyear, isdst_differ): Use bool for booleans.
5771 (ydhms_diff, guess_time_tm, ranged_convert, __mktime_internal):
5772 Use long_int, not time_t, for mktime differences.
5773 (long_int_avg): New function, replacing time_t_avg.
5774 INT_ADD_WRAPV replaces time_t_add_ok.
5775 (guess_time_tm): 6th arg is now long_int, not time_t const *.
5777 (convert_time): New function.
5778 (ranged_convert): Use it.
5779 (__mktime_internal): Last arg now points to mktime_offset_t, not
5780 time_t. All uses changed. This is a no-op on glibc, where
5781 mktime_offset_t is always time_t. Use int, not time_t, for UTC
5782 offset guess. Directly check for integer overflow instead of
5783 using a heuristic that works only 99.9...% of the time.
5784 Access *OFFSET only once, to avoid an unlikely race if the
5785 compiler delays a load and if this cascades into a signed integer
5787 (mktime): Move tzsettish code to my_tzset, and move
5788 localtime_offset to within mktime so that it doesn’t
5789 need a separate ifdef.
5790 (main) [DEBUG_MKTIME]: Speed up by using localtime_r
5791 instead of localtime.
5792 * time/timegm.c: Copy from Gnulib. This has the following changes:
5793 Include mktime-internal.h.
5794 [!_LIBC]: Include config.h and time.h. Do not include
5795 timegm.h or time_r.h. Make __mktime_internal a macro,
5796 and include mktime-internal.h to get its declaration.
5797 (timegm): Temporary is now mktime_offset_t, not time_t.
5798 This affects only Gnulib.
5800 2018-09-19 Wilco Dijkstra <wdijkstr@arm.com>
5803 * string/test-strstr.c (pr23637): New function.
5804 (test_main): Add tests with longer needles.
5805 * string/strcasestr.c (AVAILABLE): Fix readahead distance.
5806 * string/strstr.c (AVAILABLE): Likewise.
5808 2018-09-19 Szabolcs Nagy <szabolcs.nagy@arm.com>
5810 * sysdeps/ieee754/flt-32/e_powf.c (checkint): Fix documentation.
5812 2018-09-19 Szabolcs Nagy <szabolcs.nagy@arm.com>
5814 * NEWS: Mention pow improvements.
5815 * math/Makefile (type-double-routines): Add e_pow_log_data.
5816 * sysdeps/generic/math_private.h (__exp1): Remove.
5817 * sysdeps/i386/fpu/e_pow_log_data.c: New file.
5818 * sysdeps/ia64/fpu/e_pow_log_data.c: New file.
5819 * sysdeps/ieee754/dbl-64/Makefile (CFLAGS-e_pow.c): Allow fma
5821 * sysdeps/ieee754/dbl-64/e_exp.c (__exp1): Remove.
5822 (exp_inline): Remove.
5823 (__ieee754_exp): Only single double input is handled.
5824 * sysdeps/ieee754/dbl-64/e_pow.c: Rewrite.
5825 * sysdeps/ieee754/dbl-64/e_pow_log_data.c: New file.
5826 * sysdeps/ieee754/dbl-64/math_config.h (issignaling_inline): Define.
5827 (__pow_log_data): Define.
5828 * sysdeps/ieee754/dbl-64/upow.h: Remove.
5829 * sysdeps/ieee754/dbl-64/upow.tbl: Remove.
5830 * sysdeps/m68k/m680x0/fpu/e_pow_log_data.c: New file.
5831 * sysdeps/x86_64/fpu/multiarch/Makefile (CFLAGS-e_pow-fma.c): Allow fma
5833 (CFLAGS-e_pow-fma4.c): Likewise.
5835 2018-09-18 Paul Eggert <eggert@cs.ucla.edu>
5837 Simplify tzfile fstat failure code
5839 * time/tzfile.c (__tzfile_read): Simplify slightly.
5841 Fix tzfile low-memory assertion failure
5843 * time/tzfile.c (__tzfile_read): Check for memory exhaustion
5844 when registering time zone abbreviations.
5846 2018-09-18 Joseph Myers <joseph@codesourcery.com>
5848 * sysdeps/unix/sysv/linux/bits/mman.h: New file.
5849 * sysdeps/unix/sysv/linux/aarch64/bits/mman.h: Remove.
5850 * sysdeps/unix/sysv/linux/arm/bits/mman.h: Likewise.
5851 * sysdeps/unix/sysv/linux/m68k/bits/mman.h: Likewise.
5852 * sysdeps/unix/sysv/linux/microblaze/bits/mman.h: Likewise.
5853 * sysdeps/unix/sysv/linux/nios2/bits/mman.h: Likewise.
5854 * sysdeps/unix/sysv/linux/riscv/bits/mman.h: Likewise.
5855 * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
5856 * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
5858 * sysdeps/ieee754/ldbl-128ibm/s_ceill.c (ceil): Redirect to
5860 (__ceill): Call ceil instead of __ceil.
5861 * sysdeps/ieee754/ldbl-128ibm/s_floorl.c (floor): Redirect to
5863 (__floorl): Call floor instead of __floor.
5865 2018-09-17 Joseph Myers <joseph@codesourcery.com>
5867 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
5868 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (ceil): Redirect
5869 using MATH_REDIRECT.
5870 * sysdeps/aarch64/fpu/s_ceil.c: Define NO_MATH_REDIRECT before
5872 * sysdeps/aarch64/fpu/s_ceilf.c: Likewise.
5873 * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
5874 * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
5875 * sysdeps/ieee754/float128/s_ceilf128.c: Likewise.
5876 * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
5877 * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
5878 * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Likewise.
5879 * sysdeps/m68k/m680x0/fpu/s_ceil_template.c: Likewise.
5880 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c: Likewise.
5881 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c: Likewise.
5882 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c: Likewise.
5883 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c: Likewise.
5884 * sysdeps/riscv/rv64/rvd/s_ceil.c: Likewise.
5885 * sysdeps/riscv/rvf/s_ceilf.c: Likewise.
5886 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.c: Likewise.
5887 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.c: Likewise.
5888 * sysdeps/x86_64/fpu/multiarch/s_ceil.c: Likewise.
5889 * sysdeps/x86_64/fpu/multiarch/s_ceilf.c: Likewise.
5890 * sysdeps/powerpc/fpu/math_private.h [_ARCH_PWR5X] (__ceil):
5892 * sysdeps/ieee754/dbl-64/e_gamma_r.c (gamma_positive): Use ceil
5893 functions instead of __ceil variants.
5894 * sysdeps/ieee754/flt-32/e_gammaf_r.c (gammaf_positive): Likewise.
5895 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (gammal_positive):
5897 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (gammal_positive):
5899 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c (__truncl): Likewise.
5900 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (gammal_positive):
5902 * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Likewise.
5903 * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
5906 * sysdeps/unix/sysv/linux/bits/siginfo-consts.h (SI_DETHREAD): New
5908 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (ILL_BADIADDR): Likewise.
5909 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (FPE_FLTUNK): Likewise.
5910 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (FPE_CONDTRAP): Likewise.
5911 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (SEGV_ACCADI): Likewise.
5912 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (SEGV_ADIDERR): Likewise.
5913 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (SEGV_ADIPERR): Likewise.
5914 [__USE_XOPEN_EXTENDED] (TRAP_BRANCH): Likewise.
5915 [__USE_XOPEN_EXTENDED] (TRAP_HWBKPT): Likewise.
5916 [__USE_XOPEN_EXTENDED] (TRAP_UNK): Likweise.
5917 * sysdeps/unix/sysv/linux/ia64/bits/siginfo-consts-arch.h
5918 (ILL_BADIADDR): Remove constant.
5919 (TRAP_BRANCH): Likewise.
5920 (TRAP_HWBKPT): Likewise.
5922 2018-09-14 Joseph Myers <joseph@codesourcery.com>
5925 * sysdeps/unix/sysv/linux/mips/sys/procfs.h (struct elf_prstatus):
5926 Remove [_MIPS_SIM = _ABIN32] conditional case.
5927 (struct elf_prpsinfo): Likewise.
5930 * sysdeps/unix/sysv/linux/microblaze/sys/procfs.h (struct
5931 elf_prpsinfo): Use unsigned int for pr_uid and pr_gid.
5932 * sysdeps/unix/sysv/linux/mips/sys/procfs.h (struct elf_prpsinfo):
5934 * sysdeps/unix/sysv/linux/nios2/sys/procfs.h (struct
5935 elf_prpsinfo): Likewise.
5936 * sysdeps/unix/sysv/linux/riscv/sys/procfs.h (struct
5937 elf_prpsinfo): Likewise.
5938 * sysdeps/unix/sysv/linux/sys/procfs.h (struct elf_prpsinfo):
5941 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
5942 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (rint): Redirect
5943 using MATH_REDIRECT.
5944 * sysdeps/aarch64/fpu/s_rint.c: Define NO_MATH_REDIRECT before
5946 * sysdeps/aarch64/fpu/s_rintf.c: Likewise.
5947 * sysdeps/alpha/fpu/s_rint.c: Likewise.
5948 * sysdeps/alpha/fpu/s_rintf.c: Likewise.
5949 * sysdeps/i386/fpu/s_rintl.c: Likewise.
5950 * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
5951 * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
5952 * sysdeps/ieee754/float128/s_rintf128.c: Likewise.
5953 * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
5954 * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
5955 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
5956 * sysdeps/m68k/coldfire/fpu/s_rint.c: Likewise.
5957 * sysdeps/m68k/coldfire/fpu/s_rintf.c: Likewise.
5958 * sysdeps/m68k/m680x0/fpu/s_rint.c: Likewise.
5959 * sysdeps/m68k/m680x0/fpu/s_rintf.c: Likewise.
5960 * sysdeps/m68k/m680x0/fpu/s_rintl.c: Likewise.
5961 * sysdeps/powerpc/fpu/s_rint.c: Likewise.
5962 * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
5963 * sysdeps/riscv/rv64/rvd/s_rint.c: Likewise.
5964 * sysdeps/riscv/rvf/s_rintf.c: Likewise.
5965 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.c: Likewise.
5966 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.c: Likewise.
5967 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.c: Likewise.
5968 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.c: Likewise.
5969 * sysdeps/x86_64/fpu/multiarch/s_rint.c: Likewise.
5970 * sysdeps/x86_64/fpu/multiarch/s_rintf.c: Likewise.
5971 * sysdeps/x86_64/fpu/math_private.h: Remove file.
5972 * math/e_scalb.c (invalid_fn): Use rint functions instead of
5974 * math/e_scalbf.c (invalid_fn): Likewise.
5975 * math/e_scalbl.c (invalid_fn): Likewise.
5976 * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r):
5978 * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r):
5980 * sysdeps/ieee754/k_standard.c (__kernel_standard): Likewise.
5981 * sysdeps/ieee754/k_standardl.c (__kernel_standard_l): Likewise.
5982 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (__ieee754_gammal_r):
5984 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
5986 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
5988 * sysdeps/powerpc/powerpc32/fpu/s_llrint.c (__llrint): Likewise.
5989 * sysdeps/powerpc/powerpc32/fpu/s_llrintf.c (__llrintf): Likewise.
5991 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
5992 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (MATH_REDIRECT):
5994 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
5995 && !NO_MATH_REDIRECT] (MATH_REDIRECT_LDBL): Likewise.
5996 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
5997 && !NO_MATH_REDIRECT] (MATH_REDIRECT_F128): Likewise.
5998 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
5999 && !NO_MATH_REDIRECT] (MATH_REDIRECT_UNARY_ARGS): Likewise.
6000 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
6001 && !NO_MATH_REDIRECT] (sqrt): Redirect using MATH_REDIRECT.
6002 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
6003 && !NO_MATH_REDIRECT] (floor): Likewise.
6004 * sysdeps/aarch64/fpu/s_floor.c: Define NO_MATH_REDIRECT before
6006 * sysdeps/aarch64/fpu/s_floorf.c: Likewise.
6007 * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
6008 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
6009 * sysdeps/ieee754/float128/s_floorf128.c: Likewise.
6010 * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
6011 * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
6012 * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
6013 * sysdeps/m68k/m680x0/fpu/s_floor_template.c: Likewise.
6014 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c: Likewise.
6015 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c: Likewise.
6016 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c: Likewise.
6017 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c: Likewise.
6018 * sysdeps/riscv/rv64/rvd/s_floor.c: Likewise.
6019 * sysdeps/riscv/rvf/s_floorf.c: Likewise.
6020 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.c: Likewise.
6021 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.c: Likewise.
6022 * sysdeps/x86_64/fpu/multiarch/s_floor.c: Likewise.
6023 * sysdeps/x86_64/fpu/multiarch/s_floorf.c: Likewise.
6024 * sysdeps/powerpc/fpu/math_private.h [_ARCH_PWR5X] (__floor):
6026 [_ARCH_PWR5X] (__floorf): Likewise.
6027 * sysdeps/x86_64/fpu/math_private.h [__SSE4_1__] (__floor): Remove
6029 [__SSE4_1__] (__floorf): Likewise.
6030 * math/w_lgamma_main.c (LGFUNC (__lgamma)): Use floor functions
6031 instead of __floor variants.
6032 * math/w_lgamma_r_compat.c (__lgamma_r): Likewise.
6033 * math/w_lgammaf_main.c (LGFUNC (__lgammaf)): Likewise.
6034 * math/w_lgammaf_r_compat.c (__lgammaf_r): Likewise.
6035 * math/w_lgammal_main.c (LGFUNC (__lgammal)): Likewise.
6036 * math/w_lgammal_r_compat.c (__lgammal_r): Likewise.
6037 * math/w_tgamma_compat.c (__tgamma): Likewise.
6038 * math/w_tgamma_template.c (M_DECL_FUNC (__tgamma)): Likewise.
6039 * math/w_tgammaf_compat.c (__tgammaf): Likewise.
6040 * math/w_tgammal_compat.c (__tgammal): Likewise.
6041 * sysdeps/ieee754/dbl-64/e_lgamma_r.c (sin_pi): Likewise.
6042 * sysdeps/ieee754/dbl-64/k_rem_pio2.c (__kernel_rem_pio2):
6044 * sysdeps/ieee754/dbl-64/lgamma_neg.c (__lgamma_neg): Likewise.
6045 * sysdeps/ieee754/flt-32/e_lgammaf_r.c (sin_pif): Likewise.
6046 * sysdeps/ieee754/flt-32/lgamma_negf.c (__lgamma_negf): Likewise.
6047 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
6049 * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Likewise.
6050 * sysdeps/ieee754/ldbl-128/lgamma_negl.c (__lgamma_negl):
6052 * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Likewise.
6053 * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c (__ieee754_lgammal_r):
6055 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
6056 * sysdeps/ieee754/ldbl-128ibm/lgamma_negl.c (__lgamma_negl):
6058 * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Likewise.
6059 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c (__truncl): Likewise.
6060 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c (sin_pi): Likewise.
6061 * sysdeps/ieee754/ldbl-96/lgamma_negl.c (__lgamma_negl): Likewise.
6062 * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Likewise.
6063 * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
6065 2018-09-12 Joseph Myers <joseph@codesourcery.com>
6067 * elf/Makefile (modules-names-tests): New variable.
6069 2018-09-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
6071 * NEWS: Mention log2 improvements.
6072 * math/Makefile (type-double-routines): Add e_log2_data.
6073 * sysdeps/i386/fpu/e_log2_data.c: New file.
6074 * sysdeps/ia64/fpu/e_log2_data.c: New file.
6075 * sysdeps/ieee754/dbl-64/e_log2.c: Rewrite.
6076 * sysdeps/ieee754/dbl-64/e_log2_data.c: New file.
6077 * sysdeps/ieee754/dbl-64/math_config.h (__log2_data): Add.
6078 * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c: Remove.
6079 * sysdeps/m68k/m680x0/fpu/e_log2_data.c: New file.
6081 2018-09-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
6083 * NEWS: Mention log improvement.
6084 * math/Makefile (type-double-routines): Add e_log_data.
6085 * sysdeps/i386/fpu/e_log_data.c: New file.
6086 * sysdeps/ia64/fpu/e_log_data.c: New file.
6087 * sysdeps/ieee754/dbl-64/e_log.c: Rewrite.
6088 * sysdeps/ieee754/dbl-64/e_log_data.c: New file.
6089 * sysdeps/ieee754/dbl-64/math_config.h (__log_data): Add.
6090 * sysdeps/ieee754/dbl-64/ulog.h: Remove.
6091 * sysdeps/ieee754/dbl-64/ulog.tbl: Remove.
6092 * sysdeps/m68k/m680x0/fpu/e_log_data.c: New file.
6094 2018-09-12 H.J. Lu <hongjiu.lu@intel.com>
6095 Xuepeng Guo <xuepeng.guo@intel.com>
6098 * sysdeps/i386/start.S: Include <sysdep.h>
6099 (_start): Use ENTRY/END to insert ENDBR32 at entry when CET is
6100 enabled. Add cfi_undefined (eip).
6102 2018-09-11 Joseph Myers <joseph@codesourcery.com>
6104 * sysdeps/x86_64/fpu/math_private.h (MOVD): Remove macro.
6106 (EXTRACT_WORDS64): Likewise.
6107 (INSERT_WORDS64): Likewise.
6108 (GET_FLOAT_WORD): Likewise.
6109 (SET_FLOAT_WORD): Likewise.
6111 * scripts/build-many-glibcs.py (Context.__init__): Add full_gcc
6113 (Config.build_gcc): Use --disable-libsanitizer for first GCC
6114 build, but not for second build if --full-gcc. Use
6115 --enable-languages=all for second build if --full-gcc.
6116 (get_parser): Add --full-gcc option.
6117 (main): Update call to Context.
6119 2018-09-10 Rafal Luzynski <digitalfreak@lingonborough.com>
6122 * localedata/locales/de_CH (mon_thousands_sep): Use "<U2019>" (Right
6123 Single Quotation Mark).
6124 (thousands_sep): Likewise.
6125 * localedata/locales/it_CH (LC_NUMERIC): Use “copy "de_CH"”.
6126 * localedata/locales/it_IT (thousands_sep): Use ".".
6127 (grouping): Use "3;3".
6129 2018-09-10 Joseph Myers <joseph@codesourcery.com>
6131 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
6132 x86_64 and i686 configs using --enable-obsolete-rpc
6133 --enable-obsolete-nsl.
6135 2018-09-06 Stefan Liebler <stli@linux.ibm.com>
6137 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
6139 2018-09-06 Stefan Liebler <stli@linux.ibm.com>
6141 * sysdeps/unix/sysv/linux/spawni.c (maybe_script_execute):
6142 Increment size of new_argv by one.
6144 2018-09-05 Rafal Luzynski <digitalfreak@lingonborough.com>
6147 * localedata/locales/anp_IN (d_fmt): Use "%-d//%-m//%y".
6148 * localedata/locales/ar_IN (d_fmt): Likewise.
6149 * localedata/locales/bhb_IN (d_fmt): Likewise.
6150 * localedata/locales/bho_IN (d_fmt): Likewise.
6151 * localedata/locales/bn_BD (d_fmt): Likewise.
6152 * localedata/locales/bn_IN (d_fmt): Likewise.
6153 * localedata/locales/doi_IN (d_fmt): Likewise.
6154 * localedata/locales/gu_IN (d_fmt): Likewise.
6155 * localedata/locales/hi_IN (d_fmt): Likewise.
6156 * localedata/locales/hne_IN (d_fmt): Likewise.
6157 * localedata/locales/kn_IN (d_fmt): Likewise.
6158 * localedata/locales/mag_IN (d_fmt): Likewise.
6159 * localedata/locales/mai_IN (d_fmt): Likewise.
6160 * localedata/locales/mjw_IN (d_fmt): Likewise.
6161 * localedata/locales/ml_IN (d_fmt): Likewise.
6162 * localedata/locales/mni_IN (d_fmt): Likewise.
6163 * localedata/locales/mr_IN (d_fmt): Likewise.
6164 * localedata/locales/pa_IN (d_fmt): Likewise.
6165 * localedata/locales/raj_IN (d_fmt): Likewise.
6166 * localedata/locales/sat_IN (d_fmt): Likewise.
6167 * localedata/locales/sd_IN (d_fmt): Likewise.
6168 * localedata/locales/sd_IN@devanagari (d_fmt): Likewise.
6169 * localedata/locales/ta_IN (d_fmt): Likewise.
6170 * localedata/locales/ta_LK (d_fmt): Likewise.
6171 * localedata/locales/tcy_IN (d_fmt): Likewise.
6172 * localedata/locales/ur_IN (d_fmt): Likewise.
6174 * localedata/locales/brx_IN (d_fmt): Use "%-m//%-d//%y".
6175 * localedata/locales/ks_IN (d_fmt): Likewise.
6176 * localedata/locales/ks_IN@devanagari (d_fmt): Likewise.
6178 * localedata/locales/kok_IN (d_fmt): Use "%-d-%-m-%y".
6179 * localedata/locales/ne_NP (d_fmt): Use "%y//%-m//%-d".
6180 * localedata/locales/sa_IN (d_fmt): Use "%-d-%m-%y".
6181 * localedata/locales/te_IN (d_fmt): Use "%d-%m-%y".
6183 2018-09-05 Szabolcs Nagy <szabolcs.nagy@arm.com>
6185 * NEWS: Mention exp and exp2 improvements.
6186 * math/Makefile (libm-support): Remove t_exp.
6187 (type-double-routines): Add math_err and e_exp_data.
6188 * sysdeps/aarch64/libm-test-ulps: Update.
6189 * sysdeps/arm/libm-test-ulps: Update.
6190 * sysdeps/i386/fpu/e_exp_data.c: New file.
6191 * sysdeps/i386/fpu/math_err.c: New file.
6192 * sysdeps/i386/fpu/t_exp.c: Remove.
6193 * sysdeps/ia64/fpu/e_exp_data.c: New file.
6194 * sysdeps/ia64/fpu/math_err.c: New file.
6195 * sysdeps/ia64/fpu/t_exp.c: Remove.
6196 * sysdeps/ieee754/dbl-64/e_exp.c: Rewrite.
6197 * sysdeps/ieee754/dbl-64/e_exp2.c: Rewrite.
6198 * sysdeps/ieee754/dbl-64/e_exp_data.c: New file.
6199 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Update error bound.
6200 * sysdeps/ieee754/dbl-64/eexp.tbl: Remove.
6201 * sysdeps/ieee754/dbl-64/math_config.h: New file.
6202 * sysdeps/ieee754/dbl-64/math_err.c: New file.
6203 * sysdeps/ieee754/dbl-64/t_exp.c: Remove.
6204 * sysdeps/ieee754/dbl-64/t_exp2.h: Remove.
6205 * sysdeps/ieee754/dbl-64/uexp.h: Remove.
6206 * sysdeps/ieee754/dbl-64/uexp.tbl: Remove.
6207 * sysdeps/m68k/m680x0/fpu/e_exp_data.c: New file.
6208 * sysdeps/m68k/m680x0/fpu/math_err.c: New file.
6209 * sysdeps/m68k/m680x0/fpu/t_exp.c: Remove.
6210 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
6211 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
6213 2018-09-05 Joseph Myers <joseph@codesourcery.com>
6215 * sysdeps/alpha/fpu/math_private.h: Remove.
6217 * sysdeps/generic/math_private.h
6218 [__HAVE_DISTINCT_FLOAT128 && !__GNUC_PREREQ (7, 0)] (__isinff128):
6219 Move this inline function ....
6220 [__HAVE_DISTINCT_FLOAT128] (fabsf128): And this one ....
6221 * include/math.h [!_ISOMAC]: To here....
6223 2018-09-04 Joseph Myers <joseph@codesourcery.com>
6225 * sysdeps/generic/fenv_private.h [FE_ALL_EXCEPT == 0]: Move this
6227 [!FE_HAVE_ROUNDING_MODES]: And this code ....
6228 * include/fenv.h [!_ISOMAC]: ... to here.
6229 * math/fraiseexcpt.c (__feraiseexcept): Undefine as macro.
6230 (feraiseexcept): Likewise.
6231 * math/fromfp.h: Do not include <fenv_private.h>.
6232 * math/s_cexp_template.c: Likewise.
6233 * math/s_csin_template.c: Likewise.
6234 * math/s_csinh_template.c: Likewise.
6235 * math/s_ctan_template.c: Likewise.
6236 * math/s_ctanh_template.c: Likewise.
6237 * math/s_iseqsig_template.c: Likewise.
6238 * math/w_acos_compat.c: Likewise.
6239 * math/w_acosf_compat.c: Likewise.
6240 * math/w_acosl_compat.c: Likewise.
6241 * math/w_asin_compat.c: Likewise.
6242 * math/w_asinf_compat.c: Likewise.
6243 * math/w_asinl_compat.c: Likewise.
6244 * math/w_j0_compat.c: Likewise.
6245 * math/w_j0f_compat.c: Likewise.
6246 * math/w_j0l_compat.c: Likewise.
6247 * math/w_j1_compat.c: Likewise.
6248 * math/w_j1f_compat.c: Likewise.
6249 * math/w_j1l_compat.c: Likewise.
6250 * math/w_jn_compat.c: Likewise.
6251 * math/w_jnf_compat.c: Likewise.
6252 * math/w_log10_compat.c: Likewise.
6253 * math/w_log10f_compat.c: Likewise.
6254 * math/w_log10l_compat.c: Likewise.
6255 * math/w_log2_compat.c: Likewise.
6256 * math/w_log2f_compat.c: Likewise.
6257 * math/w_log2l_compat.c: Likewise.
6258 * math/w_log_compat.c: Likewise.
6259 * math/w_logf_compat.c: Likewise.
6260 * math/w_logl_compat.c: Likewise.
6261 * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
6262 * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
6263 * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
6264 * sysdeps/ieee754/dbl-64/s_lround.c: Likewise.
6265 * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Likewise.
6266 * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
6267 * sysdeps/ieee754/flt-32/s_llroundf.c: Likewise.
6268 * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
6269 * sysdeps/ieee754/flt-32/s_lroundf.c: Likewise.
6270 * sysdeps/ieee754/k_standardl.c: Likewise.
6271 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
6272 * sysdeps/ieee754/ldbl-128/s_fmal.c: Likewise.
6273 * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
6274 * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
6275 * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
6276 * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
6277 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
6278 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Likewise.
6279 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
6280 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
6281 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Likewise.
6282 * sysdeps/ieee754/ldbl-96/s_fma.c: Likewise.
6283 * sysdeps/ieee754/ldbl-96/s_fmal.c: Likewise.
6284 * sysdeps/ieee754/ldbl-96/s_llrintl.c: Likewise.
6285 * sysdeps/ieee754/ldbl-96/s_llroundl.c: Likewise.
6286 * sysdeps/ieee754/ldbl-96/s_lrintl.c: Likewise.
6287 * sysdeps/ieee754/ldbl-96/s_lroundl.c: Likewise.
6288 * math/w_ilogb_template.c: Include <fenv.h> instead of
6290 * math/w_llogb_template.c: Likewise.
6291 * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
6292 * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
6294 2018-09-03 Joseph Myers <joseph@codesourcery.com>
6296 * sysdeps/generic/math_private.h: Do not include <fenv_private.h>.
6297 * math/fromfp.h: Include <fenv_private.h>.
6298 * math/math-narrow.h: Likewise.
6299 * math/s_cexp_template.c: Likewise.
6300 * math/s_csin_template.c: Likewise.
6301 * math/s_csinh_template.c: Likewise.
6302 * math/s_ctan_template.c: Likewise.
6303 * math/s_ctanh_template.c: Likewise.
6304 * math/s_iseqsig_template.c: Likewise.
6305 * math/w_acos_compat.c: Likewise.
6306 * math/w_acosf_compat.c: Likewise.
6307 * math/w_acosl_compat.c: Likewise.
6308 * math/w_asin_compat.c: Likewise.
6309 * math/w_asinf_compat.c: Likewise.
6310 * math/w_asinl_compat.c: Likewise.
6311 * math/w_ilogb_template.c: Likewise.
6312 * math/w_j0_compat.c: Likewise.
6313 * math/w_j0f_compat.c: Likewise.
6314 * math/w_j0l_compat.c: Likewise.
6315 * math/w_j1_compat.c: Likewise.
6316 * math/w_j1f_compat.c: Likewise.
6317 * math/w_j1l_compat.c: Likewise.
6318 * math/w_jn_compat.c: Likewise.
6319 * math/w_jnf_compat.c: Likewise.
6320 * math/w_llogb_template.c: Likewise.
6321 * math/w_log10_compat.c: Likewise.
6322 * math/w_log10f_compat.c: Likewise.
6323 * math/w_log10l_compat.c: Likewise.
6324 * math/w_log2_compat.c: Likewise.
6325 * math/w_log2f_compat.c: Likewise.
6326 * math/w_log2l_compat.c: Likewise.
6327 * math/w_log_compat.c: Likewise.
6328 * math/w_logf_compat.c: Likewise.
6329 * math/w_logl_compat.c: Likewise.
6330 * sysdeps/aarch64/fpu/feholdexcpt.c: Likewise.
6331 * sysdeps/aarch64/fpu/fesetround.c: Likewise.
6332 * sysdeps/aarch64/fpu/fgetexcptflg.c: Likewise.
6333 * sysdeps/aarch64/fpu/ftestexcept.c: Likewise.
6334 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
6335 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
6336 * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
6337 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
6338 * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
6339 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
6340 * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
6341 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
6342 * sysdeps/ieee754/dbl-64/gamma_product.c: Likewise.
6343 * sysdeps/ieee754/dbl-64/lgamma_neg.c: Likewise.
6344 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
6345 * sysdeps/ieee754/dbl-64/s_fma.c: Likewise.
6346 * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
6347 * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
6348 * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
6349 * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
6350 * sysdeps/ieee754/dbl-64/s_lround.c: Likewise.
6351 * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
6352 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
6353 * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
6354 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
6355 * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Likewise.
6356 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Likewise.
6357 * sysdeps/ieee754/dbl-64/x2y2m1.c: Likewise.
6358 * sysdeps/ieee754/float128/float128_private.h: Likewise.
6359 * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
6360 * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
6361 * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
6362 * sysdeps/ieee754/flt-32/lgamma_negf.c: Likewise.
6363 * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
6364 * sysdeps/ieee754/flt-32/s_llroundf.c: Likewise.
6365 * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
6366 * sysdeps/ieee754/flt-32/s_lroundf.c: Likewise.
6367 * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
6368 * sysdeps/ieee754/k_standardl.c: Likewise.
6369 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
6370 * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Likewise.
6371 * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
6372 * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
6373 * sysdeps/ieee754/ldbl-128/gamma_productl.c: Likewise.
6374 * sysdeps/ieee754/ldbl-128/lgamma_negl.c: Likewise.
6375 * sysdeps/ieee754/ldbl-128/s_fmal.c: Likewise.
6376 * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
6377 * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
6378 * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
6379 * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
6380 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
6381 * sysdeps/ieee754/ldbl-128/x2y2m1l.c: Likewise.
6382 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
6383 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Likewise.
6384 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c: Likewise.
6385 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
6386 * sysdeps/ieee754/ldbl-128ibm/lgamma_negl.c: Likewise.
6387 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
6388 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Likewise.
6389 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
6390 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
6391 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Likewise.
6392 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
6393 * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
6394 * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Likewise.
6395 * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
6396 * sysdeps/ieee754/ldbl-96/gamma_productl.c: Likewise.
6397 * sysdeps/ieee754/ldbl-96/lgamma_negl.c: Likewise.
6398 * sysdeps/ieee754/ldbl-96/s_fma.c: Likewise.
6399 * sysdeps/ieee754/ldbl-96/s_fmal.c: Likewise.
6400 * sysdeps/ieee754/ldbl-96/s_llrintl.c: Likewise.
6401 * sysdeps/ieee754/ldbl-96/s_llroundl.c: Likewise.
6402 * sysdeps/ieee754/ldbl-96/s_lrintl.c: Likewise.
6403 * sysdeps/ieee754/ldbl-96/s_lroundl.c: Likewise.
6404 * sysdeps/ieee754/ldbl-96/x2y2m1l.c: Likewise.
6405 * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
6406 * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
6407 * sysdeps/riscv/rv64/rvd/s_ceil.c: Likewise.
6408 * sysdeps/riscv/rv64/rvd/s_floor.c: Likewise.
6409 * sysdeps/riscv/rv64/rvd/s_nearbyint.c: Likewise.
6410 * sysdeps/riscv/rv64/rvd/s_round.c: Likewise.
6411 * sysdeps/riscv/rv64/rvd/s_roundeven.c: Likewise.
6412 * sysdeps/riscv/rv64/rvd/s_trunc.c: Likewise.
6413 * sysdeps/riscv/rvd/s_finite.c: Likewise.
6414 * sysdeps/riscv/rvd/s_fmax.c: Likewise.
6415 * sysdeps/riscv/rvd/s_fmin.c: Likewise.
6416 * sysdeps/riscv/rvd/s_fpclassify.c: Likewise.
6417 * sysdeps/riscv/rvd/s_isinf.c: Likewise.
6418 * sysdeps/riscv/rvd/s_isnan.c: Likewise.
6419 * sysdeps/riscv/rvd/s_issignaling.c: Likewise.
6420 * sysdeps/riscv/rvf/fegetround.c: Likewise.
6421 * sysdeps/riscv/rvf/feholdexcpt.c: Likewise.
6422 * sysdeps/riscv/rvf/fesetenv.c: Likewise.
6423 * sysdeps/riscv/rvf/fesetround.c: Likewise.
6424 * sysdeps/riscv/rvf/feupdateenv.c: Likewise.
6425 * sysdeps/riscv/rvf/fgetexcptflg.c: Likewise.
6426 * sysdeps/riscv/rvf/ftestexcept.c: Likewise.
6427 * sysdeps/riscv/rvf/s_ceilf.c: Likewise.
6428 * sysdeps/riscv/rvf/s_finitef.c: Likewise.
6429 * sysdeps/riscv/rvf/s_floorf.c: Likewise.
6430 * sysdeps/riscv/rvf/s_fmaxf.c: Likewise.
6431 * sysdeps/riscv/rvf/s_fminf.c: Likewise.
6432 * sysdeps/riscv/rvf/s_fpclassifyf.c: Likewise.
6433 * sysdeps/riscv/rvf/s_isinff.c: Likewise.
6434 * sysdeps/riscv/rvf/s_isnanf.c: Likewise.
6435 * sysdeps/riscv/rvf/s_issignalingf.c: Likewise.
6436 * sysdeps/riscv/rvf/s_nearbyintf.c: Likewise.
6437 * sysdeps/riscv/rvf/s_roundevenf.c: Likewise.
6438 * sysdeps/riscv/rvf/s_roundf.c: Likewise.
6439 * sysdeps/riscv/rvf/s_truncf.c: Likewise.
6441 2018-08-31 Paul Pluzhnikov <ppluzhnikov@google.com>
6444 * include/stdio.h (__libc_fatal): Mention newline in comment.
6445 * grp/initgroups.c (internal_getgrouplist): Add missing newline.
6446 * nptl/pthread_cond_wait.c (__pthread_cond_wait_common): Likewise.
6447 * nscd/initgrcache.c (addinitgroupsX): Likewise.
6448 * nss/nsswitch.c (__nss_next2): Likewise.
6449 * sysdeps/aarch64/dl-irel.h (elf_irela): Likewise.
6450 * sysdeps/arm/dl-irel.h (elf_irel): Likewise.
6451 * sysdeps/generic/unwind-dw2.c (execute_cfa_program): Likewise.
6452 * sysdeps/i386/dl-irel.h (elf_irel): Likewise.
6453 * sysdeps/powerpc/powerpc32/dl-irel.h (elf_irel): Likewise.
6454 * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irel): Likewise.
6455 * sysdeps/s390/dl-irel.h (elf_irel): Likewise.
6456 * sysdeps/sparc/sparc32/dl-irel.h (elf_irel): Likewise.
6457 * sysdeps/sparc/sparc64/dl-irel.h (elf_irel): Likewise.
6458 * sysdeps/x86_64/dl-irel.h (elf_irel): Likewise.
6459 * sysdeps/nptl/futex-internal.h (futex_wake): Likewise.
6460 * sysdeps/unix/sysv/linux/netlink_assert_response.c
6461 (__netlink_assert_response): Likewise.
6463 2018-08-31 Joseph Myers <joseph@codesourcery.com>
6465 * conform/glibcconform.py: New file.
6466 * conform/list-header-symbols.py: Likewise.
6467 * conform/list-header-symbols.pl: Remove.
6468 * conform/Makefile (tests-special): Only add linknamespace tests
6470 ($(linknamespace-symlists-tests)): Use list-header-symbols.py.
6472 2018-08-31 H.J. Lu <hongjiu.lu@intel.com>
6475 * support/Makefile (libsupport-routines): Add
6476 support_copy_file_range and xcopy_file_range.
6477 * support/support.h: Include <sys/types.h>.
6478 (support_copy_file_range): New prototype.
6479 * support/support_copy_file_range.c: New file. Copied and
6480 modified from io/copy_file_range-compat.c.
6481 * support/test-container.c (copy_one_file): Call xcopy_file_rang
6482 instead of copy_file_range.
6483 * support/xcopy_file_range.c: New file.
6484 * support/xunistd.h (xcopy_file_range): New prototype.
6486 2018-08-30 Carlos O'Donell <carlos@redhat.com>
6488 * elf/tst-dlopen-aout.c: Include support/xthread.h. Use
6489 xpthread_create and xpthread_join.
6491 2018-08-30 Florian Weimer <fweimer@redhat.com>
6493 * stdlib/stdlib.h (reallocarray): Make available under __USE_MISC.
6495 2018-08-30 Stefan Liebler <stli@linux.ibm.com>
6497 * stdlib/test-bz22786.c (do_test): Return EXIT_UNSUPPORTED
6500 2018-08-29 Joseph Myers <joseph@codesourcery.com>
6502 * math/gen-libm-test.py (gen_test_args_res): Also treat plus_oflow
6503 and minus_oflow as non-finite.
6505 2018-08-28 Joseph Myers <joseph@codesourcery.com>
6507 * sysdeps/aarch64/fpu/fenv_private.h: New file. Based on ....
6508 * sysdeps/aarch64/fpu/math_private.h: ... this file. All contents
6509 moved to fenv_private.h except for ...
6510 (TOINT_INTRINSICS): Kept in math_private.h.
6511 (roundtoint): Likewise.
6512 (converttoint): Likewise.
6513 * sysdeps/arm/fenv_private.h: Change multiple-include guard to
6514 [ARM_FENV_PRIVATE_H]. Include next <fenv_private.h>.
6515 * sysdeps/arm/math_private.h: Remove.
6516 * sysdeps/generic/fenv_private.h: New file. Contents moved from
6518 * sysdeps/generic/math_private.h: ... this file. Include
6519 <stdbool.h>. Do not include <fenv.h> or <get-rounding-mode.h>.
6520 Include <fenv_private.h>. Remove functions and macros moved to
6522 * sysdeps/i386/fpu/math_private.h: Remove.
6523 * sysdeps/mips/math_private.h: Move to ....
6524 * sysdeps/mips/fpu/fenv_private.h: ... here. Change
6525 multiple-include guard to [MIPS_FENV_PRIVATE_H]. Remove
6526 [__mips_hard_float] conditional. Include next <fenv_private.h>.
6527 * sysdeps/powerpc/fpu/fenv_private.h: Change multiple-include
6528 guard to [POWERPC_FENV_PRIVATE_H]. Include next <fenv_private.h>.
6529 * sysdeps/powerpc/fpu/math_private.h: Do not include
6531 * sysdeps/riscv/rvf/math_private.h: Move to ....
6532 * sysdeps/riscv/rvf/fenv_private.h: ... here. Change
6533 multiple-include guard to [RISCV_FENV_PRIVATE_H]. Include next
6535 * sysdeps/sparc/fpu/fenv_private.h: Change multiple-include guard
6536 to [SPARC_FENV_PRIVATE_H]. Include next <fenv_private.h>.
6537 * sysdeps/sparc/fpu/math_private.h: Remove.
6538 * sysdeps/i386/fpu/fenv_private.h: Move to ....
6539 * sysdeps/x86/fpu/fenv_private.h: ... here. Change
6540 multiple-include guard to [X86_FENV_PRIVATE_H]. Include next
6542 * sysdeps/x86_64/fpu/math_private.h: Do not include
6543 <sysdeps/i386/fpu/fenv_private.h>.
6545 2018-08-28 Florian Weimer <fweimer@redhat.com>
6548 * posix/tst-regcomp-truncated.c: New file.
6549 * posix/Makefile (tests): Add it.
6550 (tst-regcomp-truncated.out): Depend on generated locales.
6552 2018-08-28 Florian Weimer <fweimer@redhat.com>
6554 * support/test-container.c (main): Treat unshare failure with
6555 EPERM as an unsupported test.
6557 2018-08-28 Florian Weimer <fweimer@redhat.com>
6560 nscd: Fix use-after-free in addgetnetgrentX and its callers.
6561 * nscd/netgroupcache.c
6562 (addgetnetgrentX): Add tofreep parameter. Do not free
6563 heap-allocated buffer.
6564 (addinnetgrX): Free buffer allocated bt addgetnetgrentX.
6565 (addgetnetgrentX_ignore): New function.
6566 (addgetnetgrent): Call it.
6567 (readdgetnetgrent): Likewise.
6569 2018-08-28 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
6571 * string/memmem.c: Use memcmp for first match.
6573 2018-08-28 Rafal Luzynski <digitalfreak@lingonborough.com>
6576 * localedata/locales/en_IN (d_fmt): Use "%d/%m/%y".
6578 2018-08-27 DJ Delorie <dj@redhat.com>
6580 * support/Makefile (others): Don't list programs explicitly as a
6581 dependency of "others".
6583 2018-08-27 Joseph Myers <joseph@codesourcery.com>
6585 * sysdeps/generic/math-tests-trap-force.h: New file.
6586 * sysdeps/generic/math-tests.h: Include <math-tests-trap-force.h>.
6587 (EXCEPTION_SET_FORCES_TRAP): Do not define here.
6588 * sysdeps/powerpc/math-tests.h: Remove file.
6589 * sysdeps/powerpc/fpu/math-tests-trap-force.h: New file.
6591 2018-08-27 Martin Kuchta <martin.kuchta@netapp.com>
6592 Torvald Riegel <triegel@redhat.com>
6595 * nptl/pthread_cond_common.c (__condvar_quiesce_and_switch_g1):
6596 Update r to include the set wake-request flag if waiters are
6597 remaining after spinning.
6599 2018-08-27 Joseph Myers <joseph@codesourcery.com>
6601 * sysdeps/gnu/netinet/udp.h (UDP_SEGMENT): New macro.
6603 2018-08-25 Paul Eggert <eggert@cs.ucla.edu>
6606 regex: fix uninitialized memory access
6607 I introduced this bug into gnulib in commit
6608 8335a4d6c7b4448cd0bcb6d0bebf1d456bcfdb17 dated 2006-04-10;
6609 eventually it was merged into glibc. The bug was found by
6610 project-repo <bugs@feusi.co> and reported here:
6611 https://lists.gnu.org/r/sed-devel/2018-08/msg00017.html
6612 Diagnosis and draft fix reported by Assaf Gordon here:
6613 https://lists.gnu.org/r/bug-gnulib/2018-08/msg00071.html
6614 https://lists.gnu.org/r/bug-gnulib/2018-08/msg00142.html
6615 * posix/regex_internal.c (build_wcs_upper_buffer):
6616 Fix bug when mbrtowc returns 0.
6618 2018-08-24 Carlos O'Donell <carlos@redhat.com>
6620 * po/be.po: Update translation.
6622 2018-08-24 DJ Delorie <dj@delorie.com>
6624 * support/Makefile (LDLIBS-links-dso-program): Add -lgcc and
6627 2018-08-24 Paul Pluzhnikov <ppluzhnikov@google.com>
6630 * stdlib/test-bz22786.c (do_test): Fix undefined behavior, don't
6631 create temporary files in source tree.
6633 2018-08-24 Joseph Myers <joseph@codesourcery.com>
6635 * sysdeps/generic/math-tests-trap.h: New file.
6636 * sysdeps/generic/math-tests.h: Include <math-tests-trap.h>.
6637 (EXCEPTION_ENABLE_SUPPORTED): Do not define here.
6638 * sysdeps/aarch64/math-tests.h: Remove file.
6639 * sysdeps/arm/math-tests.h: Likewise.
6640 * sysdeps/riscv/math-tests.h: Likewise.
6641 * sysdeps/aarch64/math-tests-trap.h: New file.
6642 * sysdeps/arm/math-tests-trap.h: Likewise.
6643 * sysdeps/riscv/math-tests-trap.h: Likewise.
6645 2018-08-24 Wilco Dijkstra <wdijkstr@arm.com>
6647 * math/Makefile: Remove empty files k_sin(f).c, k_cos(f).c.
6648 Remove unused files e_rem_pio2(f).c, k_rem_pio2f.c.
6649 * sysdeps/i386/fpu/e_rem_pio2.c: Delete file.
6650 * sysdeps/ia64/fpu/e_rem_pio2.c: Likewise.
6651 * sysdeps/ia64/fpu/e_rem_pio2f.c: Likewise.
6652 * sysdeps/ia64/fpu/k_rem_pio2f.c: Likewise.
6653 * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
6654 * sysdeps/ieee754/dbl-64/k_cos.c: Likewise.
6655 * sysdeps/ieee754/dbl-64/k_sin.c: Likewise.
6656 * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
6657 * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
6658 * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
6659 * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
6660 * sysdeps/m68k/m680x0/fpu/e_rem_pio2.c: Likewise
6661 * sysdeps/m68k/m680x0/fpu/e_rem_pio2f.c: Likewise
6662 * sysdeps/m68k/m680x0/fpu/k_rem_pio2f.c: Likewise
6663 * sysdeps/powerpc/fpu/e_rem_pio2f.c: Likewise.
6664 * sysdeps/powerpc/fpu/k_rem_pio2f.c: Likewise.
6666 2018-08-23 Joseph Myers <joseph@codesourcery.com>
6668 * sysdeps/generic/math-tests-exceptions.h: New file.
6669 * sysdeps/generic/math-tests.h: Include <math-tests-exceptions.h>.
6670 (EXCEPTION_TESTS_float): Do not define here.
6671 (EXCEPTION_TESTS_double): Likewise.
6672 (EXCEPTION_TESTS_long_double): Likewise.
6673 (EXCEPTION_TESTS_float128): Likewise.
6674 * sysdeps/arm/math-tests.h [__SOFTFP__] (EXCEPTION_TESTS_float):
6676 [__SOFTFP__] (EXCEPTION_TESTS_double): Likewise.
6677 [__SOFTFP__] (EXCEPTION_TESTS_long_double): Likewise.
6678 * sysdeps/arm/nofpu/math-tests-exceptions.h: New file.
6679 * sysdeps/m68k/coldfire/math-tests.h: Remove file.
6680 * sysdeps/mips/math-tests.h: Likewise.
6681 * sysdeps/nios2/math-tests.h: Likewise.
6682 * sysdeps/riscv/math-tests.h [!__riscv_flen]
6683 (EXCEPTION_TESTS_float): Do not define here.
6684 [!__riscv_flen] (EXCEPTION_TESTS_double): Likewise.
6685 [!__riscv_flen] (EXCEPTION_TESTS_long_double): Likewise.
6686 * sysdeps/riscv/nofpu/math-tests-exceptions.h: New file.
6688 2018-08-23 Wilco Dijkstra <wdijkstr@arm.com>
6690 * NEWS: Move optimized sinf entry to 2.29.
6692 2018-08-23 Wilco Dijkstra <wdijkstr@arm.com>
6694 * sysdeps/ieee754/flt-32/s_tanf.c (__tanf): Use fast range reduction.
6696 2018-08-22 DJ Delorie <dj@redhat.com>
6698 * Makefile (testroot.pristine): New rules to initialize the
6699 test-in-container "testroot".
6700 * Makerules (all-testsuite): Add tests-container.
6701 * Rules (tests-expected): Add tests-container.
6702 (binaries-all-tests): Likewise.
6703 (tests-container): New, run these tests in the testroot container.
6704 * support/Makefile (others): Add *-container, support_paths.c,
6705 xmkdirp, and links-dso-program.
6706 * support/links-dso-program-c.c: New.
6707 * support/links-dso-program.cc: New.
6708 * support/test-container.c: New.
6709 * support/shell-container.c: New.
6710 * support/echo-container.c: New.
6711 * support/true-container.c: New.
6712 * support/xmkdirp.c: New.
6713 * support/xsymlink.c: New.
6714 * support/support_paths.c: New.
6715 * support/support.h: Add support paths prototypes.
6716 * support/xunistd.h: Add xmkdirp () and xsymlink ().
6718 * nss/tst-nss-test3.c: Convert to test-in-container.
6719 * nss/tst-nss-test3.root/: New.
6721 2018-08-22 Paul Eggert <eggert@cs.ucla.edu>
6723 regex: port Gnulib code to z/OS POSIX environment
6724 Problem reported by Arnold Robbins in:
6725 https://lists.gnu.org/r/bug-gnulib/2018-08/msg00129.html
6726 * posix/regex_internal.h (__iswalnum, __towlower, __towupper) [!_LIBC]:
6729 2018-08-22 Joseph Myers <joseph@codesourcery.com>
6731 * math/test-double-vlen2.h: Don't include <math-tests-rounding.h>.
6732 (ROUNDING_TESTS_double): Remove.
6733 * math/test-double-vlen4.h: Don't include <math-tests-rounding.h>.
6734 (ROUNDING_TESTS_double): Remove.
6735 * math/test-double-vlen8.h: Don't include <math-tests-rounding.h>.
6736 (ROUNDING_TESTS_double): Remove.
6737 * math/test-float-vlen16.h: Don't include <math-tests-rounding.h>.
6738 (ROUNDING_TESTS_float): Remove.
6739 * math/test-float-vlen4.h: Don't include <math-tests-rounding.h>.
6740 (ROUNDING_TESTS_float): Remove.
6741 * math/test-float-vlen8.h: Don't include <math-tests-rounding.h>.
6742 (ROUNDING_TESTS_float): Remove.
6743 * math/libm-test-driver.c (IF_ROUND_INIT_FE_DOWNWARD): Check
6745 (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
6746 (IF_ROUND_INIT_FE_UPWARD): Likewise.
6748 * sysdeps/generic/math-tests-rounding.h: New file.
6749 * sysdeps/generic/math-tests.h: Include <math-tests-rounding.h>.
6750 (ROUNDING_TESTS_float): Do not define here.
6751 (ROUNDING_TESTS_double): Likewise.
6752 (ROUNDING_TESTS_long_double): Likewise.
6753 (ROUNDING_TESTS_float128): Likewise.
6754 * math/test-double-vlen2.h: Include <math-tests-rounding.h>.
6755 (ROUNDING_TESTS_double): Undefine before defining.
6756 * math/test-double-vlen4.h: Include <math-tests-rounding.h>.
6757 (ROUNDING_TESTS_double): Undefine before defining.
6758 * math/test-double-vlen8.h: Include <math-tests-rounding.h>.
6759 (ROUNDING_TESTS_double): Undefine before defining.
6760 * math/test-float-vlen16.h: Include <math-tests-rounding.h>.
6761 (ROUNDING_TESTS_float): Undefine before defining.
6762 * math/test-float-vlen4.h: Include <math-tests-rounding.h>.
6763 (ROUNDING_TESTS_float): Undefine before defining.
6764 * math/test-float-vlen8.h: Include <math-tests-rounding.h>.
6765 (ROUNDING_TESTS_float): Undefine before defining.
6766 * sysdeps/arm/nofpu/math-tests-rounding.h: New file.
6767 * sysdeps/arm/math-tests.h [__SOFTFP__] (ROUNDING_TESTS_float): Do
6769 [__SOFTFP__] (ROUNDING_TESTS_double): Likewise.
6770 [__SOFTFP__] (ROUNDING_TESTS_long_double): Likewise.
6771 * sysdeps/riscv/nofpu/math-tests-rounding.h: New file.
6772 * sysdeps/riscv/math-tests.h [!__riscv_flen]
6773 (ROUNDING_TESTS_float): Do not define here.
6774 [!__riscv_flen] (ROUNDING_TESTS_double): Likewise.
6775 [!__risv_flen] (ROUNDING_TESTS_long_double): Likewise.
6776 * sysdeps/m68k/coldfire/math-tests.h [!__mcffpu__]
6777 (ROUNDING_TESTS_float): Likewise.
6778 [!__mcffpu__] (ROUNDING_TESTS_double): Likewise.
6779 [!__mcffpu__] (ROUNDING_TESTS_long_double): Likewise.
6780 * sysdeps/mips/math-tests.h [__mips_soft_float]
6781 (ROUNDING_TESTS_float): Likewise.
6782 [__mips_soft_float] (ROUNDING_TESTS_double): Likewise.
6783 [__mips_soft_float] (ROUNDING_TESTS_long_double): Likewise.
6784 * sysdeps/nios2/math-tests.h (ROUNDING_TESTS_float): Likewise.
6785 (ROUNDING_TESTS_double): Likewise.
6786 (ROUNDING_TESTS_long_double): Likewise.
6788 2018-08-21 Tobias Klauser <tklauser@distanz.ch>
6790 * sysdeps/unix/sysv/linux/bits/socket.h (PF_MAX): Set to 45.
6791 (PF_XDP): New macro.
6792 (AF_XDP): New macro.
6793 (SOL_XDP): New macro.
6795 2018-08-21 Joseph Myers <joseph@codesourcery.com>
6797 * sysdeps/gnu/netinet/tcp.h (TCP_ZEROCOPY_RECEIVE): New macro.
6798 (TCP_INQ): Likewise.
6799 (TCP_CM_INQ): Likewise.
6800 (TCP_REPAIR_ON): Likewise.
6801 (TCP_REPAIR_OFF): Likewise.
6802 (TCP_REPAIR_OFF_NO_WP): Likewise.
6803 (struct tcp_zerocopy_receive): New type.
6805 2018-08-21 Florian Weimer <fweimer@redhat.com>
6807 * support/support.h (support_descriptor_supports_holes): Declare.
6808 * support/Makefile (libsupport-routines): Add
6809 support_descriptor_supports_holes.
6810 * support/support_descriptor_supports_holes.c: New file.
6811 * io/tst-copy_file_range.c: Call support_descriptor_supports_holes
6812 and stop testing if holes are not supported.
6813 * io/test-lfs.c (do_prepare): Likewise.
6814 * sysdeps/unix/sysv/linux/tst-fallocate-common.c (do_prepare):
6816 * timezone/tst-tzset.c (create_tz_file): Likewise.
6817 * misc/tst-preadvwritev-common.c (temp_fd_supports_holes) New
6819 (do_prepare): Set it.
6820 * misc/tst-preadvwritev64.c (do_test): Use temp_fd_supports_holes.
6822 2018-08-21 Florian Weimer <fweimer@redhat.com>
6825 * Makeconfig (+cflags): Do not sort (and deduplicate).
6827 2018-08-21 Florian Weimer <fweimer@redhat.com>
6829 * debug/readlink_chk.c (__readlink_chk): Always call __readlink.
6830 * sysdeps/unix/sysv/linux/generic/readlink_chk.c: Remove file.
6832 2018-08-20 Florian Weimer <fweimer@redhat.com>
6834 * sysdeps/unix/sysv/linux/generic/readlink_chk.c: Remove
6835 HAVE_INLINED_SYSCALLS conditionals. Use INLINE_SYSCALL_CALL.
6837 2018-08-20 Joseph Myers <joseph@codesourcery.com>
6839 * sysdeps/unix/sysv/linux/sys/signalfd.h (struct
6840 signalfd_siginfo): Add ssi_addr_lsb, ssi_syscall, ssi_call_addr
6841 and ssi_arch members.
6843 * elf/elf.c (NT_VMCOREDD): New macro.
6844 (AT_MINSIGSTKSZ): Likewise.
6846 2018-08-20 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
6848 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile
6849 (libm-sysdep_routines): Remove s_sinf-ppc64, s_sinf-power8,
6850 s_cosf-ppc64 and s_cosf-power8.
6851 * sysdeps/powerpc/fpu/s_cosf.c: Remove file.
6852 * sysdeps/powerpc/fpu/s_sinf.c: Likewise.
6853 * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
6854 * sysdeps/powerpc/fpu/k_cosf.c: Likewise.
6855 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf-power8.S: Likewise.
6856 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf-ppc64.c: Likewise.
6857 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf.c: Likewise.
6858 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-power8.S: Likewise.
6859 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-ppc64.c: Likewise.
6860 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf.c: Likewise.
6861 * sysdeps/powerpc/powerpc64/power8/fpu/s_cosf.S: Likewise.
6862 * sysdeps/powerpc/powerpc64/power8/fpu/s_sinf.S: Likewise.
6864 2018-08-17 Florian Weimer <fweimer@redhat.com>
6866 * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
6868 2018-08-17 Istvan Kurucsai <pistukem@gmail.com>
6870 * malloc/malloc.c (_int_malloc): Additional binning code checks.
6872 2018-08-16 Florian Weimer <fweimer@redhat.com>
6874 * configure.ac: Add --with-nonshared-cflags option.
6875 * config.make.in (extra-nonshared-cflags): Set variable.
6876 * Makeconfig (CFLAGS-.oS): Use it.
6877 * manual/install.texi (Configuring and compiling): Document
6878 --with-nonshared-cflags.
6879 * configure: Regenerate.
6880 * INSTALL: Likewise.
6882 2018-08-16 Florian Weimer <fweimer@redhat.com>
6884 * Makeconfig (ASFLAGS): Always append required assembler flags.
6886 2018-08-16 Moritz Eckert <m.eckert@cs.ucsb.edu>
6888 * malloc/malloc.c (_int_free): Check for corrupt prev_size vs size.
6889 (malloc_consolidate): Likewise.
6891 2018-08-16 Pochang Chen <johnchen902@gmail.com>
6893 * malloc/malloc.c (_int_malloc.c): Verify size of top chunk.
6895 2018-08-16 Siddhesh Poyarekar <siddhesh@sourceware.org>
6897 * benchtests/bench-strlen.c (do_test): Allocate buffers before
6900 * benchtests/bench-strlen.c: Print performance numbers in json.
6902 2018-08-16 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
6904 * sysdeps/powerpc/powerpc64/multiarch/Makefile
6905 (sysdep_routines): Build strcmp-power9 and strncmp-power9
6906 only for little endian.
6907 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
6908 (strncmp): Move __strncmp_power9 inside ifdef __LITTLE_ENDIAN__.
6909 (STRCMP): Move __strcmp_power9 inside ifdef __LITTLE_ENDIAN__.
6910 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power9.S:
6911 Add check for little endian.
6912 * sysdeps/powerpc/powerpc64/multiarch/strcmp.c
6913 (__strcmp_power9): Add check for little endian.
6914 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power9.S:
6915 Add check for little endian.
6916 * sysdeps/powerpc/powerpc64/multiarch/strncmp.c
6917 (__strncmp_power9): Add check for little endian.
6918 * sysdeps/powerpc/powerpc64/power9/strcmp.S: Removed ifdef
6919 __LITTLE_ENDIAN__ and moved to sysdeps/powerpc/powerpc64/le/power9.
6920 * sysdeps/powerpc/powerpc64/power9/strncmp.S: Likewise.
6921 * sysdeps/powerpc/powerpc64/le/power9/strcmp.S: New file.
6922 * sysdeps/powerpc/powerpc64/le/power9/strncmp.S: Likewise.
6924 2018-08-15 Siddhesh Poyarekar <siddhesh@sourceware.org>
6926 * sysdeps/aarch64/strlen.S (__strlen): Rename to STRLEN.
6927 [!STRLEN](STRLEN): Set to __strlen.
6928 * sysdeps/aarch64/multiarch/strlen.c: New file.
6929 * sysdeps/aarch64/multiarch/strlen_generic.S: Likewise.
6930 * sysdeps/aarch64/multiarch/strlen_asimd.S: Likewise.
6931 * sysdeps/aarch64/multiarch/ifunc-impl-list.c
6932 (__libc_ifunc_impl_list): Add strlen.
6933 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines): Add
6934 strlen_generic and strlen_asimd.
6936 2018-08-15 Wilco Dijkstra <wdijkstr@arm.com>
6938 * sysdeps/ieee754/flt-32/e_lgammaf_r.c (sin_pif): Use __sinf/__cosf.
6939 * sysdeps/ieee754/flt-32/k_cosf.c (__kernel_cosf): Remove all code.
6940 * sysdeps/ieee754/flt-32/k_sinf.c (__kernel_sinf): Likewise.
6942 2018-08-15 Wilco Dijkstra <wdijkstr@arm.com>
6944 * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate to fix spaces.
6946 2018-08-14 Florian Weimer <fweimer@redhat.com>
6949 * include/stdio.h (__vfxprintf): Declare.
6950 * stdio-common/fxprintf.c (__vfxprintf): New function.
6951 (__fxprintf): Call it.
6952 * misc/err.c (convert_and_print): Remove function.
6953 (vwarnx, vwarn): Call __fxprintf and __vfxprintf.
6954 * misc/error.c [_LIBC] (error_tail): Call __vfxprintf.
6955 * misc/Makefile (tests): Add tst-warn-wide.
6956 * misc/tst-warn-wide.c: New file.
6958 2018-08-14 Wilco Dijkstra <wdijkstr@arm.com>
6959 Szabolcs Nagy <szabolcs.nagy@arm.com>
6961 * NEWS: Mention sinf, cosf, sincosf.
6962 * sysdeps/aarch64/libm-test-ulps: Update ULP for sinf, cosf, sincosf.
6963 * sysdeps/x86_64/fpu/libm-test-ulps: Update ULP for sinf and cosf.
6964 * sysdeps/x86_64/fpu/multiarch/s_sincosf-fma.c: Add definitions of
6965 constants rather than including generic sincosf.h.
6966 * sysdeps/x86_64/fpu/s_sincosf_data.c: Remove.
6967 * sysdeps/ieee754/flt-32/s_cosf.c (cosf): Rewrite.
6968 * sysdeps/ieee754/flt-32/s_sincosf.h (reduced_sin): Remove.
6969 (reduced_cos): Remove.
6970 (sinf_poly): New function.
6971 * sysdeps/ieee754/flt-32/s_sinf.c (sinf): Rewrite.
6973 2018-08-14 Florian Weimer <fweimer@redhat.com>
6977 * nss/nss_files/files-alias.c (get_next_alias): During :include:
6978 processing, bail out if no room, and close the stream before
6980 * nss/Makefile (tests): Add tst-nss-files-alias-leak.
6981 (tst-nss-files-alias-leak): Link with libdl.
6982 (tst-nss-files-alias-leak.out): Depend on nss_files.
6984 * nss/tst-nss-files-alias-leak.c: New file.
6986 2018-08-14 Florian Weimer <fweimer@redhat.com>
6988 * nscd/nscd_conf.c (nscd_parse_file): Deallocate old storage for
6989 server_user, stat_user.
6991 2018-08-13 Joseph Myers <joseph@codesourcery.com>
6993 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
6995 (io_pgetevents): New syscall.
6998 * manual/install.texi (Configuring and compiling): Do not list
6999 tools used for testing pretty printers here.
7000 (Tools for Compilation): List Python, PExpect and GDB here.
7001 Update descriptions of uses of Perl and Python.
7002 * INSTALL: Regenerate.
7004 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
7007 2018-08-13 Florian Weimer <fweimer@redhat.com>
7009 * misc/error.c (error): Add missing va_end call.
7010 (error_at_line): Likewise.
7012 2018-08-13 Florian Weimer <fweimer@redhat.com>
7014 * stdlib/mbstowcs.c (mbstowcs): Remove outdated comment.
7016 2018-08-11 Siddhesh Poyarekar <siddhesh@sourceware.org>
7018 * benchtests/scripts/benchout.schema.json (properties): Add
7021 * benchtests/bench-skeleton.c (main): Add duration and
7022 iterations attributes.
7024 2018-08-10 Paul Eggert <eggert@cs.ucla.edu>
7026 regex: Gnulib unibyte RRI uses bytes not chars
7027 Adjust the non-glibc code to agree with what Gawk needs for
7028 rational range interpretation (RRI) for regular expression ranges.
7029 In unibyte locales, Gawk wants ranges to use the underlying byte
7030 rather than the character code point. This change does not affect
7032 * posix/regcomp.c (parse_byte) [!LIBC && RE_ENABLE_I18N]:
7033 In unibyte locales, use the byte value rather than
7034 running it through btowc.
7036 2018-08-10 Joseph Myers <joseph@codesourcery.com>
7038 * sysdeps/generic/math-tests-snan.h: New file.
7039 * sysdeps/generic/math-tests.h: Include <math-tests-snan.h>.
7040 (SNAN_TESTS_float): Do not define here.
7041 (SNAN_TESTS_double): Likewise.
7042 (SNAN_TESTS_long_double): Likewise.
7043 (SNAN_TESTS_float128): Likewise.
7044 * sysdeps/i386/fpu/math-tests-snan.h: New file.
7045 * sysdeps/i386/fpu/math-tests.h: Remove file.
7046 * sysdeps/ia64/math-tests-snan.h: New file.
7047 * sysdeps/ia64/math-tests.h: Remove file.
7048 * sysdeps/x86/math-tests.h: Likewise.
7049 * sysdeps/x86_64/fpu/math-tests-snan.h: New file.
7051 2018-08-10 Wilco Dijkstra <wdijkstr@arm.com>
7052 Szabolcs Nagy <szabolcs.nagy@arm.com>
7054 * math/Makefile: Add s_sincosf_data.c.
7055 * sysdeps/ia64/fpu/s_sincosf_data.c: New file.
7056 * sysdeps/ieee754/flt-32/s_sincosf.h (abstop12): Add new function.
7057 (sincosf_poly): Likewise.
7058 (reduce_small): Likewise.
7059 (reduce_large): Likewise.
7060 * sysdeps/ieee754/flt-32/s_sincosf.c (sincosf): Rewrite.
7061 * sysdeps/ieee754/flt-32/s_sincosf_data.c: New file with sincosf data.
7062 * sysdeps/m68k/m680x0/fpu/s_sincosf_data.c: New file.
7063 * sysdeps/x86_64/fpu/s_sincosf_data.c: New file.
7065 2018-08-10 Wilco Dijkstra <wdijkstr@arm.com>
7066 Szabolcs Nagy <szabolcs.nagy@arm.com>
7068 * sysdeps/aarch64/fpu/math_private.h (roundtoint): Use round.
7069 (converttoint): Use lround.
7070 * sysdeps/ieee754/flt-32/math_config.h (roundtoint): Declare and
7071 document the semantics when TOINT_INTRINSICS is set.
7072 (converttoint): Likewise.
7073 (TOINT_RINT): Remove.
7074 (TOINT_SHIFT): Remove.
7075 * sysdeps/ieee754/flt-32/e_expf.c (__expf): Remove the TOINT_RINT code
7078 2018-08-10 Florian Weimer <fweimer@redhat.com>
7081 * sysdeps/unix/sysv/linux/getdents64.c (handle_overflow): New
7083 (__old_getdents64): Use getdents64. Convert entries without
7085 * sysdeps/unix/sysv/linux/tst-readdir64-compat.c: New file.
7086 * sysdeps/unix/sysv/linux/Makefile (tests-internal): Add
7087 tst-readdir64-compat.
7089 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
7091 * sysdeps/s390/s390-32/s390-mcount.S (_mcount):
7094 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
7096 * sysdeps/s390/s390-64/Versions (__fentry__): Add.
7097 * sysdeps/s390/s390-64/s390x-mcount.S: Move the common
7098 code to s390x-mcount.h and #include it.
7099 * sysdeps/s390/s390-64/s390x-mcount.h: New file.
7100 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist
7103 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
7105 * stdlib/Versions: Remove __fentry__.
7106 * sysdeps/i386/Versions: Add __fentry__.
7107 * sysdeps/x86_64/Versions: Add __fentry__.
7109 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
7111 * sysdeps/s390/Makefile: Register the new tests.
7112 * sysdeps/s390/tst-dl-runtime-mod.S: New file.
7113 * sysdeps/s390/tst-dl-runtime-profile-audit.c: New file.
7114 * sysdeps/s390/tst-dl-runtime-profile-noaudit.c: New file.
7115 * sysdeps/s390/tst-dl-runtime-resolve-audit.c: New file.
7116 * sysdeps/s390/tst-dl-runtime-resolve-noaudit.c: New file.
7117 * sysdeps/s390/tst-dl-runtime.c: New file.
7119 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
7121 * sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_profile):
7124 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
7126 * sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_resolve):
7129 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
7131 * sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_profile):
7134 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
7136 * sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_resolve):
7139 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
7141 * sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_profile):
7142 Use symbolic offsets for stack variables.
7144 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
7146 * sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_resolve):
7147 Use symbolic offsets for stack variables.
7149 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
7151 * sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_profile):
7152 Use symbolic offsets for stack variables.
7154 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
7156 * sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_resolve):
7157 Use symbolic offsets for stack variables.
7159 2018-08-09 Joseph Myers <joseph@codesourcery.com>
7161 * math/gen-libm-test.py: New file.
7162 * math/gen-libm-test.pl: Remove.
7163 * math/Makefile [$(PERL) != no]: Change condition to [PYTHON].
7164 ($(objpfx)libm-test-ulps.h): Use gen-libm-test.py instead of
7166 ($(libm-test-c-noauto-obj)): Likewise.
7167 ($(libm-test-c-auto-obj)): Likewise.
7168 ($(libm-test-c-narrow-obj)): Likewise.
7169 (regen-ulps): Likewise.
7170 * math/README.libm-test: Update references to gen-libm-test.pl.
7171 * math/libm-test-driver.c (struct test_fj_f_data): Update comment
7172 referencing gen-libm-test.pl.
7173 * math/libm-test-nexttoward.inc (nexttoward_test_data): Likewise.
7174 * math/libm-test-support.c: Likewise.
7175 * math/libm-test-support.h: Likewise.
7176 * sysdeps/generic/libm-test-ulps: Likewise.
7178 2018-08-08 Siddhesh Poyarekar <siddhesh@sourceware.org>
7180 * sysdeps/aarch64/strlen.S [TEST_PAGE_CROSS](MIN_PAGE_SIZE):
7183 2018-08-08 Joseph Myers <joseph@codesourcery.com>
7185 * math/libm-test-nextdown.inc (do_test): Move comment to ....
7186 * math/libm-test-nexttoward.inc (nexttoward_test_data): ... here.
7188 2018-08-08 Samuel Thibault <samuel.thibault@ens-lyon.org>
7190 * htl/Versions (__pthread_getspecific, __pthread_setspecific): Add
7192 * sysdeps/htl/pthreadP.h [IS_IN (libpthread)] (__pthread_getspecific,
7193 __pthread_setspecific): Add hidden proto.
7194 * sysdeps/htl/pt-getspecific.c (__pthread_getspecific): Add hidden def.
7195 * sysdeps/htl/pt-setspecific.c (__pthread_setspecific): Add hidden def.
7197 2018-08-07 Siddhesh Poyarekar <siddhesh@sourceware.org>
7199 * benchtests/bench-string.h (buf1_size, buf2_size): New
7201 (init_sizes): New function.
7202 (test_init): Use it.
7203 (alloc_buf, exit_error): New functions.
7204 (alloc_bufs): Use ALLOC_BUF.
7205 (realloc_bufs): Remove.
7206 * benchtests/bench-memcmp.c (do_test): Adjust.
7207 * benchtests/bench-memset-large.c (do_test): Likewise.
7208 * benchtests/bench-memset-walk.c (do_test): Likewise.
7209 * benchtests/bench-memset.c (do_test): Likewise.
7210 * benchtests/bench-strncmp.c (do_test): Likewise.
7212 2018-08-06 Andreas Schwab <schwab@suse.de>
7214 * sysdeps/riscv/nptl/tls.h (DB_THREAD_SELF): Use REGISTER instead
7215 of CONST_THREAD_AREA.
7217 2018-08-06 H.J. Lu <hongjiu.lu@intel.com>
7219 * sysdeps/x86/cpu-features.h (STATE_SAVE_OFFSET): Removed.
7220 (STATE_SAVE_MASK): Likewise.
7221 Don't check __ASSEMBLER__ to include <cpu-features-offsets.h>.
7222 * sysdeps/x86/sysdep.h (STATE_SAVE_OFFSET): New.
7223 (STATE_SAVE_MASK): Likewise.
7224 * sysdeps/x86_64/dl-trampoline.S: Include <cpu-features-offsets.h>
7225 instead of <cpu-features.h>.
7227 2018-08-03 DJ Delorie <dj@redhat.com>
7229 * sysdeps/riscv/rvf/math_private.h (libc_feholdexcept_setround_riscv):
7230 Move libc_fesetround_riscv after libc_feholdexcept_riscv.
7232 * sysdeps/riscv/rv64/rvd/libm-test-ulps: Update.
7234 2018-08-03 Joseph Myers <joseph@codesourcery.com>
7236 * math/libm-test-ilogb.inc (ilogb_test_data): Use ',' not ';'
7238 * math/libm-test-llogb.inc (llogb_test_data): Likewise.
7239 * math/libm-test-logb.inc (logb_test_data): Likewise.
7241 2018-08-03 Wilco Dijkstra <wdijkstr@arm.com>
7243 * string/strcasestr.c (STRCASESTR): Simplify and speedup first match.
7244 * string/strstr.c (AVAILABLE): Likewise.
7246 2018-08-03 H.J. Lu <hongjiu.lu@intel.com>
7248 * sysdeps/i386/i686/multiarch/bzero-ia32.S: Don't include
7250 * sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core-avx2.S: Likewise.
7251 * sysdeps/x86_64/fpu/multiarch/svml_s_expf16_core-avx2.S: Likewise.
7252 * sysdeps/x86_64/multiarch/memset-sse2-unaligned-erms.S: Likewise.
7254 2018-08-03 Carlos O'Donell <carlos@redhat.com>
7256 * po/be.po: Update translation.
7258 * po/be.po: Update translation.
7260 2018-08-03 H.J. Lu <hongjiu.lu@intel.com>
7262 * sysdeps/x86/cpu-features-offsets.sym
7263 (rtld_global_ro_offsetof): Removed.
7264 (CPU_FEATURES_SIZE): Likewise.
7265 (CPUID_OFFSET): Likewise.
7266 (CPUID_SIZE): Likewise.
7267 (CPUID_EAX_OFFSET): Likewise.
7268 (CPUID_EBX_OFFSET): Likewise.
7269 (CPUID_ECX_OFFSET): Likewise.
7270 (CPUID_EDX_OFFSET): Likewise.
7271 (FAMILY_OFFSET): Likewise.
7272 (MODEL_OFFSET): Likewise.
7273 (FEATURE_OFFSET): Likewise.
7274 (FEATURE_SIZ): Likewise.
7275 (COMMON_CPUID_INDEX_1): Likewise.
7276 (COMMON_CPUID_INDEX_7): Likewise.
7277 (FEATURE_INDEX_1): Likewise.
7278 (RTLD_GLOBAL_RO_DL_X86_CPU_FEATURES_OFFSET): Updated.
7280 2018-08-02 Carlos O'Donell <carlos@redhat.com>
7282 * localedata/Makefile (INSTALL-SUPPORTED-LOCALES): Remove.
7283 (INSTALL-SUPPORTED-LOCALE-ARCHIVE): Define.
7284 (INSTALL-SUPPORTED-LOCALE-FILES): Define.
7285 (install-locales): Depend on install-locale-archive.
7286 (install-locale-archive): Define.
7287 (install-locale-files): Define.
7288 (build-one-locale): Define macro.
7289 * manual/install.texi (Running make install): Document.
7290 * manual/INSTALL: Regenerate.
7292 2018-08-02 Siddhesh Poyarekar <siddhesh@sourceware.org>
7294 * benchtests/scripts/compare_strings.py: Import traceback.
7295 (parse_file): Pretty-print error.
7297 * NEWS: Mention the change.
7298 * elf/dl-tunables.list: Rename tune namespace to cpu.
7299 * sysdeps/powerpc/dl-tunables.list: Likewise.
7300 * sysdeps/x86/dl-tunables.list: Likewise.
7301 * sysdeps/aarch64/dl-tunables.list: Rename tune.cpu to
7303 * elf/dl-hwcaps.c (_dl_important_hwcaps): Adjust.
7304 * elf/dl-hwcaps.h (GET_HWCAP_MASK): Likewise.
7305 * manual/README.tunables: Likewise.
7306 * manual/tunables.texi: Likewise.
7307 * sysdeps/powerpc/cpu-features.c: Likewise.
7308 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c
7309 (init_cpu_features): Likewise.
7310 * sysdeps/x86/cpu-features.c: Likewise.
7311 * sysdeps/x86/cpu-features.h: Likewise.
7312 * sysdeps/x86/cpu-tunables.c: Likewise.
7313 * sysdeps/x86_64/Makefile: Likewise.
7314 * sysdeps/x86/dl-cet.c: Likewise.
7316 2018-08-02 Joseph Myers <joseph@codesourcery.com>
7319 * sysdeps/mips/bits/fenv.h (FE_INEXACT): Define only if
7320 [__mips_hard_float].
7321 (FE_UNDERFLOW): Likewise.
7322 (FE_OVERFLOW): Likewise.
7323 (FE_DIVBYZERO): Likewise.
7324 (FE_INVALID): Likewise.
7325 (FE_ALL_EXCEPT): Define to 0 if [!__mips_hard_float].
7326 (FE_TOWARDZERO): Define only if [__mips_hard_float].
7327 (FE_UPWARD): Likewise.
7328 (FE_DOWNWARD): Likewise.
7329 (__FE_UNDEFINED): Define if [!__mips_hard_float]
7330 (FE_NOMASK_ENV): Define only if [__mips_hard_float].
7331 * sysdeps/mips/mips64/sfp-machine.h (_FP_DECL_EX): Define only if
7332 [__mips_hard_float].
7333 (FP_ROUNDMODE): Likewise.
7334 (FP_RND_NEAREST): Likewise.
7335 (FP_RND_ZERO): Likewise.
7336 (FP_RND_PINF): Likewise.
7337 (FP_RND_MINF): Likewise.
7338 (FP_EX_INVALID): Likewise.
7339 (FP_EX_OVERFLOW): Likewise.
7340 (FP_EX_UNDERFLOW): Likewise.
7341 (FP_EX_DIVZERO): Likewise.
7342 (FP_EX_INEXACT): Likewise.
7343 (FP_INIT_ROUNDMODE): Likewise.
7344 * sysdeps/mips/nofpu/fesetenv.c: New file.
7345 * sysdeps/mips/nofpu/feupdateenv.c: Likewise.
7347 2018-08-01 Joseph Myers <joseph@codesourcery.com>
7349 * math/test-misc.c (do_test) [LDBL_MANT_DIG > DBL_MANT_DIG]: Make
7350 code using FE_UNDERFLOW conditional on [FE_UNDERFLOW], code using
7351 FE_OVERFLOW conditional on [FE_OVERFLOW] and code using FE_UPWARD
7352 conditional on [FE_UPWARD].
7354 2018-08-01 Paul Eggert <eggert@cs.ucla.edu>
7356 regex: fix memory leak in Gnulib
7357 Problem and fix reported by Assaf Gordon in:
7358 https://lists.gnu.org/r/bug-gnulib/2018-07/txtqLKNwBdefE.txt
7359 * posix/regcomp.c (free_charset) [!_LIBC]: Free range_starts and
7360 range_ends members too, as they are defined in 'struct
7361 re_charset_t' even if not _LIBC. This affects only Gnulib.
7363 2018-08-01 H.J. Lu <hongjiu.lu@intel.com>
7365 * sysdeps/x86/cpu-features.c (get_common_indeces): Renamed to
7367 (get_common_indices): This.
7368 (init_cpu_features): Updated.
7370 2018-08-01 Joseph Myers <joseph@codesourcery.com>
7372 * sysdeps/generic/math-tests-snan-payload.h: New file.
7373 * sysdeps/hppa/math-tests-snan-payload.h: Likewise.
7374 * sysdeps/mips/math-tests-snan-payload.h: Likewise.
7375 * sysdeps/riscv/math-tests-snan-payload.h: Likewise.
7376 * sysdeps/generic/math-tests.h: Include
7377 <math-tests-snan-payload.h>.
7378 (SNAN_TESTS_PRESERVE_PAYLOAD): Do not define macro here.
7379 * sysdeps/hppa/math-tests.h: Remove file.
7380 * sysdeps/mips/math-tests.h [!__mips_nan2008]
7381 (SNAN_TESTS_PRESERVE_PAYLOAD): Do not define macro here.
7382 * sysdeps/riscv/math-tests.h (SNAN_TESTS_PRESERVE_PAYLOAD):
7385 * sysdeps/generic/math-tests-snan-cast.h: New file.
7386 * sysdeps/powerpc/math-tests-snan-cast.h: Likewise.
7387 * sysdeps/generic/math-tests.h: Include <math-tests-snan-cast.h>.
7388 (SNAN_TESTS_TYPE_CAST): Do not define macro here.
7389 * sysdeps/powerpc/math-tests.h (SNAN_TESTS_TYPE_CAST): Likewise.
7391 2018-08-01 Carlos O'Donel <carlos@redhat.com>
7393 * version.h (RELEASE): Set to "development".
7394 (VERSION): Set to "2.28.9000".
7395 * NEWS (2.29): New section.
7397 * version.h (RELEASE): Set to "stable".
7398 (VERSION): Set to "2.28".
7399 * include/features.h (__GLIBC_MINOR__): Set to 2.28.
7400 * NEWS: Add the list of bugs fixed in 2.28.
7402 * po/ca.po: Update to latest version.
7403 * po/cs.po: Likewise
7404 * po/da.po: Likewise
7405 * po/el.po: Likewise
7406 * po/eo.po: Likewise
7407 * po/es.po: Likewise
7408 * po/fi.po: Likewise
7409 * po/fr.po: Likewise
7410 * po/gl.po: Likewise
7411 * po/hu.po: Likewise
7412 * po/ia.po: Likewise
7413 * po/id.po: Likewise
7414 * po/it.po: Likewise
7415 * po/ja.po: Likewise
7416 * po/ko.po: Likewise
7417 * po/lt.po: Likewise
7418 * po/nb.po: Likewise
7419 * po/nl.po: Likewise
7420 * po/pt_BR.po: Likewise
7421 * po/ru.po: Likewise
7422 * po/rw.po: Likewise
7423 * po/sk.po: Likewise
7424 * po/sl.po: Likewise
7425 * po/tr.po: Likewise
7426 * po/zh_CN.po: Likewise
7427 * po/zh_TW.po: Likewise
7429 2018-07-31 Samuel Thibault <samuel.thibault@ens-lyon.org>
7431 * sysdeps/mach/hurd/i386/init-first.c (init1): Move ELF hdr and TLS
7433 (init): ... before initializing libpthread.
7435 * mach/mach.h (__mach_setup_tls, mach_setup_tls): Add prototypes.
7436 * mach/setup-thread.c (__mach_setup_thread): Move TLS setup to...
7437 (__mach_setup_tls): ... new function.
7438 (mach_setup_tls): New alias.
7439 * hurd/hurdsig.c (_hurdsig_init): Call __mach_setup_tls after
7440 __mach_setup_thread.
7441 * sysdeps/mach/hurd/profil.c (update_waiter): Likewise.
7442 * sysdeps/mach/hurd/setitimer.c (setitimer_locked): Likewise.
7443 * mach/Versions [libc] (mach_setup_tls): Add symbol.
7444 * sysdeps/mach/hurd/i386/libc.abilist (mach_setup_tls): Likewise.
7446 2018-07-31 Carlos O'Donell <carlos@redhat.com>
7448 * manual/install.texi: Update versions.
7449 * INSTALL: Regenerate.
7451 * manual/contrib.texi (Contributors): Update contributions.
7453 2018-07-31 Carlos O'Donell <carlos@redhat.com>
7455 * po/be.po: Update translations.
7457 2018-07-31 Adhemerval Zanella <adhemerval.zanella@linaro.org>
7459 * sysdeps/sh/libm-test-ulps: Update.
7461 2018-07-30 Carlos O'Donell <carlos@redhat.com>
7463 * po/bg.po: Update translations.
7464 * po/de.po: Likewise.
7465 * po/hr.po: Likewise.
7466 * po/pt_BR.po: Likewise.
7467 * po/sv.po: Likewise.
7468 * po/vi.po: Likewise.
7470 2018-07-30 H.J. Lu <hongjiu.lu@intel.com>
7473 * sysdeps/unix/sysv/linux/x86/Makefile (tests): Add
7474 tst-cet-property-1 and tst-cet-property-2 if CET is enabled.
7475 (CFLAGS-tst-cet-property-1.o): New.
7476 (ASFLAGS-tst-cet-property-dep-2.o): Likewise.
7477 ($(objpfx)tst-cet-property-2): Likewise.
7478 ($(objpfx)tst-cet-property-2.out): Likewise.
7479 * sysdeps/unix/sysv/linux/x86/tst-cet-property-1.c: New file.
7480 * sysdeps/unix/sysv/linux/x86/tst-cet-property-2.c: Likewise.
7481 * sysdeps/unix/sysv/linux/x86/tst-cet-property-dep-2.S: Likewise.
7482 * sysdeps/x86/dl-prop.h (_dl_process_cet_property_note): Parse
7483 each property item until GNU_PROPERTY_X86_FEATURE_1_AND is found.
7485 2018-07-30 H.J. Lu <hongjiu.lu@intel.com>
7488 * sysdeps/x86/Makefile (tests): Add tst-get-cpu-features-static.
7490 2018-07-28 Samuel Thibault <samuel.thibault@ens-lyon.org>
7492 * sysdeps/mach/hurd/dl-unistd.h (__access, __brk, __lseek, __read,
7493 __sbrk): Do not set attribute_hidden.
7494 * sysdeps/mach/hurd/not-errno.h: New file.
7495 * sysdeps/mach/hurd/i386/ld.abilist: Update accordingly.
7496 * sysdeps/mach/hurd/i386/localplt.data: Update accordingly.
7498 2018-07-27 Carlos O'Donell <carlos@redhat.com>
7500 * po/uk.po: Update translations.
7501 * po/cs.po: Likewise.
7502 * po/pl.po: Likewise.
7504 2018-07-27 H.J. Lu <hongjiu.lu@intel.com>
7506 * sysdeps/x86/dl-prop.h (_dl_process_cet_property_note): Don't
7507 parse beyond the note end.
7509 2018-07-27 Adhemerval Zanella <adhemerval.zanella@linaro.org>
7511 * sysdeps/unix/sysv/linux/tst-ofdlocks.c: Return unsupported if
7512 kernel does not support OFD locks.
7513 * sysdeps/unix/sysv/linux/tst-ofdlocks-compat.c: Likewise.
7515 2018-07-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
7517 * sysdeps/mach/hurd/Versions (libc): Make __access and
7518 __access_noerrno external so they can override the ld symbols.
7519 (ld): Make __access, __read, __sbrk, __strtoul_internal, __write,
7520 __writev, __open64, __access_noerrno extern so they can be overrided.
7521 * sysdeps/mach/hurd/i386/libc.abilist: Update accordingly.
7522 * sysdeps/mach/hurd/i386/ld.abilist: Update accordingly.
7524 2018-07-26 Carlos O'Donell <carlos@redhat.com>
7526 * po/libc.pot: Regenerate.
7528 2018-07-26 Joseph Myers <joseph@codesourcery.com>
7530 * sysdeps/powerpc/nofpu/libm-test-ulps: Update.
7532 2018-07-26 H.J. Lu <hongjiu.lu@intel.com>
7535 * sysdeps/x86/cpu-features.c (get_extended_indices): New
7537 (init_cpu_features): Call get_extended_indices for both Intel
7539 * sysdeps/x86/cpu-features.h (COMMON_CPUID_INDEX_80000001):
7540 Remove "for AMD" comment.
7542 2018-07-26 H.J. Lu <hongjiu.lu@intel.com>
7545 * sysdeps/x86/cpu-features.h (index_cpu_LZCNT): Set to
7546 COMMON_CPUID_INDEX_80000001.
7548 2018-07-26 Stefan Liebler <stli@linux.ibm.com>
7550 * string/tst-xbzero-opt.c (use_test_buffer): New function.
7551 (prepare_test_buffer): Call use_test_buffer as compiler barrier.
7553 2018-07-26 Florian Weimer <fweimer@redhat.com>
7555 * htl/lockfile.c (flockfile, funlockfile, ftrylockfile): Use weak
7556 aliases for symbols not in the implementation namespace.
7558 2018-07-25 Carlos O'Donell <carlos@redhat.com>
7561 * localedata/locales/iso14651_t1_common: Deinterlace uppercase and
7562 lowercase in LATIN script.
7563 * localedata/Makefile (test-input): Add en_US.UTF-8.
7564 * localedata/en_US.UTF-8.in: New file.
7565 * posix/tst-fnmatch.input: Add comments and new tests for en_US.UTF-8,
7566 and restore old tests.
7567 * posix/tst-regexloc.c (do_test): Add back range expression test.
7569 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
7571 * sysdeps/unix/sysv/linux/ia64/tst-setcontext4.c: New file.
7573 2018-07-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
7575 * nptl/threads.h: Move to ...
7576 * sysdeps/nptl/threads.h: ... here.
7577 * sysdeps/hurd/stdc-predef.h: New file.
7579 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
7581 * sysdeps/unix/sysv/linux/x86/Makefile (tests): Add
7582 tst-cet-setcontext-1 if CET is enabled.
7583 (CFLAGS-tst-cet-setcontext-1.c): Add -mshstk.
7584 * sysdeps/unix/sysv/linux/x86/tst-cet-setcontext-1.c: New file.
7586 2018-07-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
7588 * include/threads.h: Move to ...
7589 * sysdeps/nptl/threads.h: ... here.
7590 * sysdeps/htl/threads.h: New file.
7591 * conform/Makefile (linknamespace-libs-ISO11): Use
7592 static-thread-library instead of linking libpthread.
7593 (linknamespace-libs-XPG4): Revert wrong libcrypt.a addition.
7595 2018-07-25 Florian Weimer <fweimer@redhat.com>
7597 * nptl/tst-mtx-timedlock.c (do_test): Implement carry from
7598 nanoseconds into seconds.
7599 * nptl/tst-cnd-basic.c (signal_parent): Lock and unlock mutex.
7600 (do_test): Likewise.
7601 * nptl/tst-cnd-timedwait.c (signal_parent): Likewise.
7602 (do_test): Likewise. Avoid nanosecond overflow and spurious
7603 timeouts due to system load.
7604 * nptl/tst-cnd-broadcast.c (waiting_threads): New variable.
7605 (child_wait): Increment it.
7606 (do_test): Wait as long as necessary until all expected threads
7609 2018-07-25 Vedvyas Shanbhogue <vedvyas.shanbhogue@intel.com>
7610 H.J. Lu <hongjiu.lu@intel.com>
7612 * sysdeps/unix/sysv/linux/x86/sys/ucontext.h (ucontext_t): Add
7614 * sysdeps/unix/sysv/linux/x86_64/__start_context.S: Include
7615 <asm/prctl.h> and "ucontext_i.h" when shadow stack is enabled.
7616 (__push___start_context): New.
7617 * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Include
7619 (__getcontext): Record the current shadow stack base. Save the
7620 caller's shadow stack pointer and base.
7621 * sysdeps/unix/sysv/linux/x86_64/makecontext.c: Include
7622 <pthread.h>, <libc-pointer-arith.h> and <sys/prctl.h>.
7623 (__push___start_context): New prototype.
7624 (__makecontext): Call __push___start_context to allocate a new
7625 shadow stack, push __start_context onto the new stack as well
7626 as the new shadow stack.
7627 * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Include
7629 (__setcontext): Restore the target shadow stack.
7630 * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Include
7632 (__swapcontext): Record the current shadow stack base. Save
7633 the caller's shadow stack pointer and base. Restore the target
7635 * sysdeps/unix/sysv/linux/x86_64/sysdep.h
7636 (STACK_SIZE_TO_SHADOW_STACK_SIZE_SHIFT): New.
7637 * sysdeps/unix/sysv/linux/x86_64/ucontext_i.sym (oSSP): New.
7639 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
7641 * stdlib/Makefile ((tests): Add tst-setcontext6, tst-setcontext7,
7642 tst-setcontext8 and tst-setcontext9.
7643 * stdlib/tst-setcontext6.c: New file.
7644 * stdlib/tst-setcontext7.c: Likewise.
7645 * stdlib/tst-setcontext8.c: Likewise.
7646 * stdlib/tst-setcontext9.c: Likewise.
7648 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
7650 * stdlib/Makefile ((tests): Add tst-setcontext5.
7651 * stdlib/tst-setcontext5.c: New file.
7653 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
7655 * stdlib/Makefile (tests): Add tst-setcontext4.
7656 * stdlib/tst-setcontext4.c: New file.
7658 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
7660 * stdlib/Makefile (tests): Add tst-swapcontext1.
7661 * stdlib/tst-swapcontext1.c: New test.
7663 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
7665 * sysdeps/x86/Makefile (tests): Add tst-cet-legacy-1,
7666 tst-cet-legacy-2, tst-cet-legacy-2a, tst-cet-legacy-3,
7667 tst-cet-legacy-4, tst-cet-legacy-4a, tst-cet-legacy-4b
7668 and tst-cet-legacy-4c.
7669 (modules-names): Add tst-cet-legacy-mod-1, tst-cet-legacy-mod-2
7670 and tst-cet-legacy-mod-4.
7671 (CFLAGS-tst-cet-legacy-2.c): New.
7672 (CFLAGS-tst-cet-legacy-mod-1.c): Likewise.
7673 (CFLAGS-tst-cet-legacy-mod-2.c): Likewise.
7674 (CFLAGS-tst-cet-legacy-3.c): Likewise.
7675 (CFLAGS-tst-cet-legacy-4.c): Likewise.
7676 (CFLAGS-tst-cet-legacy-mod-4.c): Likewise.
7677 ($(objpfx)tst-cet-legacy-1): Likewise.
7678 ($(objpfx)tst-cet-legacy-2): Likewise.
7679 ($(objpfx)tst-cet-legacy-2.out): Likewise.
7680 ($(objpfx)tst-cet-legacy-2a): Likewise.
7681 ($(objpfx)tst-cet-legacy-2a.out): Likewise.
7682 ($(objpfx)tst-cet-legacy-4): Likewise.
7683 ($(objpfx)tst-cet-legacy-4.out): Likewise.
7684 ($(objpfx)tst-cet-legacy-4a): Likewise.
7685 ($(objpfx)tst-cet-legacy-4a.out): Likewise.
7686 (tst-cet-legacy-4a-ENV): Likewise.
7687 ($(objpfx)tst-cet-legacy-4b): Likewise.
7688 ($(objpfx)tst-cet-legacy-4b.out): Likewise.
7689 (tst-cet-legacy-4b-ENV): Likewise.
7690 ($(objpfx)tst-cet-legacy-4c): Likewise.
7691 ($(objpfx)tst-cet-legacy-4c.out): Likewise.
7692 (tst-cet-legacy-4c-ENV): Likewise.
7693 * sysdeps/x86/tst-cet-legacy-1.c: New file.
7694 * sysdeps/x86/tst-cet-legacy-2.c: Likewise.
7695 * sysdeps/x86/tst-cet-legacy-2a.c: Likewise.
7696 * sysdeps/x86/tst-cet-legacy-3.c: Likewise.
7697 * sysdeps/x86/tst-cet-legacy-4.c: Likewise.
7698 * sysdeps/x86/tst-cet-legacy-4a.c: Likewise.
7699 * sysdeps/x86/tst-cet-legacy-4b.c: Likewise.
7700 * sysdeps/x86/tst-cet-legacy-4c.c: Likewise.
7701 * sysdeps/x86/tst-cet-legacy-mod-1.c: Likewise.
7702 * sysdeps/x86/tst-cet-legacy-mod-2.c: Likewise.
7703 * sysdeps/x86/tst-cet-legacy-mod-4.c: Likewise.
7705 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
7707 * sysdeps/i386/nptl/tcb-offsets.sym (SSP_BASE_OFFSET): New.
7708 * sysdeps/i386/nptl/tls.h (tcbhead_t): Replace __glibc_reserved2
7710 * sysdeps/x86_64/nptl/tcb-offsets.sym (SSP_BASE_OFFSET): New.
7711 * sysdeps/x86_64/nptl/tls.h (tcbhead_t): Replace __glibc_reserved2
7714 2018-07-25 Andreas Schwab <schwab@suse.de>
7717 * locale/weightwc.h (findidx): Handle the case where usrc is a
7718 prefix of cp but one character too short.
7720 2018-07-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
7722 * NEWS: Add ISO C threads addition.
7724 2018-07-24 Florian Weimer <fweimer@redhat.com>
7726 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
7727 [__LINUX_KERNEL_VERSION < 0x040D00] (__ASSUME_MLOCK2)
7728 (__ASSUME_COPY_FILE_RANGE): Undefine. Kernel support was added in
7731 2018-07-24 H.J. Lu <hongjiu.lu@intel.com>
7733 * sysdeps/unix/sysv/linux/x86/include/asm/prctl.h: New file.
7734 * sysdeps/unix/sysv/linux/x86/cpu-features.c: Include
7735 <sys/prctl.h> and <asm/prctl.h>.
7736 (get_cet_status): Call arch_prctl with ARCH_CET_STATUS.
7737 * sysdeps/unix/sysv/linux/x86/dl-cet.h: Include <sys/prctl.h>
7739 (dl_cet_allocate_legacy_bitmap): Call arch_prctl with
7740 ARCH_CET_LEGACY_BITMAP.
7741 (dl_cet_disable_cet): Call arch_prctl with ARCH_CET_DISABLE.
7742 (dl_cet_lock_cet): Call arch_prctl with ARCH_CET_LOCK.
7743 * sysdeps/x86/libc-start.c: Include <startup.h>.
7745 2018-07-24 Florian Weimer <fweimer@redhat.com>
7747 * sysdeps/unix/sysv/linux/sh/kernel-features.h (__ASSUME_STATX):
7748 Undefine. Suggested by Romain Naour <romain.naour@gmail.com>.
7750 2018-07-24 Rical Jasan <rj@2c3t.io>
7751 Adhemerval Zanella <adhemerval.zanella@linaro.org>
7752 Juan Manuel Torres Palma <jmtorrespalma@gmail.com>
7755 * manual/debug.texi: Update adjacent chapter name.
7756 * manual/probes.texi: Likewise.
7757 * manual/threads.texi (ISO C Threads): New section.
7758 (POSIX Threads): Convert to a section.
7760 2018-07-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
7761 Juan Manuel Torres Palma <jmtorrespalma@gmail.com>
7764 * nptl/Makefile (tests): Add new test files.
7765 * nptl/tst-call-once.c : New file. Tests C11 functions and types.
7766 * nptl/tst-cnd-basic.c: Likewise.
7767 * nptl/tst-cnd-broadcast.c: Likewise.
7768 * nptl/tst-cnd-timedwait.c: Likewise.
7769 * nptl/tst-mtx-basic.c: Likewise.
7770 * nptl/tst-mtx-recursive.c: Likewise.
7771 * nptl/tst-mtx-timedlock.c: Likewise.
7772 * nptl/tst-mtx-trylock.c: Likewise.
7773 * nptl/tst-thrd-basic.c: Likewise.
7774 * nptl/tst-thrd-detach.c: Likewise.
7775 * nptl/tst-thrd-sleep.c: Likewise.
7776 * nptl/tst-tss-basic.c: Likewise.
7778 2018-07-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
7781 * sysdeps/unix/sysv/linux/aarch64/libc.abilist [GLIBC_2.28]
7782 (thrd_current, thrd_equal, thrd_sleep, thrd_yield): Add C11 thread
7784 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
7785 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
7786 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
7787 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
7788 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
7789 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
7790 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
7791 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
7792 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
7793 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
7794 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
7795 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
7796 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
7798 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
7800 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist:
7802 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: Likewise.
7803 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist: Likewise.
7804 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
7805 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
7806 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
7807 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
7808 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
7809 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
7810 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
7811 * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist [[GLIBC_2.28]
7812 (call_once, cnd_broadcast, cnd_destroy, cnd_init, cnd_signal,
7813 cnd_timedwait, cnd_wait, mtx_destroy, mtx_init, mtx_lock,
7814 mtx_timedlock, mtx_trylock, mtx_unlokc, thrd_create, thrd_detach,
7815 thrd_exit, thrd_join, tss_create, tss_delete, tss_get, tss_set):
7817 * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist: Likewise.
7818 * sysdeps/unix/sysv/linux/alpha/libpthread.abilist: Likewise.
7819 * sysdeps/unix/sysv/linux/arm/libpthread.abilist: Likewise.
7820 * sysdeps/unix/sysv/linux/hppa/libpthread.abilist: Likewise.
7821 * sysdeps/unix/sysv/linux/i386/libpthread.abilist: Likewise.
7822 * sysdeps/unix/sysv/linux/ia64/libpthread.abilist: Likewise.
7823 * sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist: Likewise.
7824 * sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist: Likewise.
7825 * sysdeps/unix/sysv/linux/microblaze/libpthread.abilist: Likewise.
7826 * sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist: Likewise.
7827 * sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist: Likewise.
7828 * sysdeps/unix/sysv/linux/nios2/libpthread.abilist: Likewise.
7830 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist:
7831 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread-le.abilist:
7833 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread.abilist:
7835 * sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist: Likewise.
7836 * sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist: Likewise.
7837 * sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist: Likewise.
7838 * sysdeps/unix/sysv/linux/sh/libpthread.abilist: Likewise.
7839 * sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist: Likewise.
7840 * sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist: Likewise.
7841 * sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist: Likewise.
7842 * sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist: Likewise.
7845 * conform/data/threads.h-data (thread_local): New macro.
7846 (TSS_DTOR_ITERATIONS): Likewise.
7848 (tss_dtor_t): Likewise.
7849 (tss_create): New function.
7850 (tss_get): Likewise.
7851 (tss_set): Likewise.
7852 (tss_delete): Likewise.
7853 * nptl/Makefile (libpthread-routines): Add tss_create, tss_delete,
7854 tss_get, and tss_set objects.
7855 * nptl/Versions (libpthread) [GLIBC_2.28]: Likewise.
7856 * nptl/tss_create.c: New file.
7857 * nptl/tss_delete.c: Likewise.
7858 * nptl/tss_get.c: Likewise.
7859 * nptl/tss_set.c: Likewise.
7860 * sysdeps/nptl/threads.h (thread_local): New define.
7861 (TSS_DTOR_ITERATIONS): Likewise.
7862 (tss_t): New typedef.
7863 (tss_dtor_t): Likewise.
7864 (tss_create): New prototype.
7865 (tss_get): Likewise.
7866 (tss_set): Likewise.
7867 (tss_delete): Likewise.
7870 * conform/data/threads.h-data (cnd_t): New type.
7871 (cnd_init): New function.
7872 (cnd_signal): Likewise.
7873 (cnd_broadcast): Likewise.
7874 (cnd_wait): Likewise.
7875 (cnd_timedwait): Likewise.
7876 (cnd_destroy): Likewise.
7877 * nptl/Makefile (libpthread-routines): Add cnd_broadcast,
7878 cnd_destroy, cnd_init, cnd_signal, cnd_timedwait, and cnd_wait
7880 * nptl/Versions (libpthread) [GLIBC_2.28]: Likewise.
7881 * nptl/cnd_broadcast.c: New file.
7882 * nptl/cnd_destroy.c: Likewise.
7883 * nptl/cnd_init.c: Likewise.
7884 * nptl/cnd_signal.c: Likewise.
7885 * nptl/cnd_timedwait.c: Likewise.
7886 * nptl/cnd_wait.c: Likewise.
7887 * sysdeps/nptl/threads.h (cnd_t): New type.
7888 (cnd_init): New prototype.
7889 (cnd_signa): Likewise.
7890 (cnd_broadcast): Likewise.
7891 (cnd_wait): Likewise.
7892 (cnd_timedwait): Likewise.
7893 (cnd_destroy): Likewise.
7896 * conform/data/threads.h-data (ONCE_FLAG_INIT): New macro.
7897 (once_flag): New type.
7898 (call_once): New function.
7899 * nptl/Makefile (libpthread-routines): Add call_once object.
7900 * nptl/Versions (libphread) [GLIBC_2.28]: Add call_once symbol.
7901 * nptl/call_once.c: New file.
7902 * sysdeps/nptl/threads.h (ONCE_FLAG_INIT): New define.
7903 (once_flag): New type.
7904 (call_once): New prototype.
7907 * conform/data/threads.h-data (mtx_plain): New constant.
7908 (mtx_recursive): Likewise.
7909 (mtx_timed): Likewise.
7911 (mtx_init): New function.
7912 (mtx_lock): Likewise.
7913 (mtx_timedlock): Likewise.
7914 (mtx_trylock): Likewise.
7915 (mtx_unlock): Likewise.
7916 (mtx_destroy): Likewise.
7917 * nptl/Makefile (libpthread-routines): Add mtx_destroy, mtx_init,
7918 mtx_lock, mtx_timedlock, mtx_trylock, and mtx_unlock object.
7919 * nptl/Versions (libpthread) [GLIBC_2.28]): Add mtx_init, mtx_lock,
7920 mtx_timedlock, mtx_trylock, mtx_unlock, and mtx_destroy.
7921 * nptl/mtx_destroy.c: New file.
7922 * nptl/mtx_init.c: Likewise.
7923 * nptl/mtx_lock.c: Likewise.
7924 * nptl/mtx_timedlock.c: Likewise.
7925 * nptl/mtx_trylock.c: Likewise.
7926 * nptl/mtx_unlock.c: Likewise.
7927 * sysdeps/nptl/threads.h (mtx_plain): New enumeration.
7928 (mtx_recursive): Likewise.
7929 (mtx_timed): Likewise.
7931 (mtx_init): New prototype.
7932 (mtx_lock): Likewise.
7933 (mtx_timedlock): Likewise.
7934 (mtx_trylock): Likewise.
7935 (mtx_unlock): Likewise.
7936 (mtx_destroy): Likewise.
7939 * conform/Makefile (conformtest-headers-ISO11): Add threads.h.
7940 (linknamespace-libs-ISO11): Add libpthread.a.
7941 * conform/data/threads.h-data: New file: add C11 thrd_* types and
7943 * include/stdc-predef.h (__STDC_NO_THREADS__): Remove definition.
7944 * nptl/Makefile (headers): Add threads.h.
7945 (libpthread-routines): Add new C11 thread thrd_create, thrd_current,
7946 thrd_detach, thrd_equal, thrd_exit, thrd_join, thrd_sleep, and
7948 * nptl/Versions (libpthread) [GLIBC_2.28]): Add new C11 thread
7949 thrd_create, thrd_current, thrd_detach, thrd_equal, thrd_exit,
7950 thrd_join, thrd_sleep, and thrd_yield symbols.
7951 * nptl/descr.h (struct pthread): Add c11 field.
7952 * nptl/pthreadP.h (ATTR_C11_THREAD): New define.
7953 * nptl/pthread_create.c (START_THREAD_DEFN): Call C11 thread start
7954 routine with expected function prototype.
7955 (__pthread_create_2_1): Add C11 threads check based on attribute
7957 * sysdeps/unix/sysdep.h (INTERNAL_SYSCALL_CANCEL): New macro.
7958 * nptl/thrd_create.c: New file.
7959 * nptl/thrd_current.c: Likewise.
7960 * nptl/thrd_detach.c: Likewise.
7961 * nptl/thrd_equal.c: Likewise.
7962 * nptl/thrd_exit.c: Likewise.
7963 * nptl/thrd_join.c: Likewise.
7964 * nptl/thrd_priv.h: Likewise.
7965 * nptl/thrd_sleep.c: Likewise.
7966 * nptl/thrd_yield.c: Likewise.
7967 * include/threads.h: Likewise.
7969 2018-07-24 H.J. Lu <hongjiu.lu@intel.com>
7971 * bits/indirect-return.h: New file.
7972 * misc/sys/cdefs.h (__glibc_has_attribute): New.
7973 * sysdeps/x86/bits/indirect-return.h: Likewise.
7974 * stdlib/Makefile (headers): Add bits/indirect-return.h.
7975 * stdlib/ucontext.h: Include <bits/indirect-return.h>.
7976 (swapcontext): Add __INDIRECT_RETURN.
7977 * string/tst-xbzero-opt.c (ALWAYS_INLINE): New.
7978 (prepare_test_buffer): Use it.
7980 2018-07-24 Andreas Schwab <schwab@suse.de>
7983 * iconvdata/ibm1364.c (MAX_NEEDED_OUTPUT) [FROM_LOOP]: Define.
7984 (MAX_NEEDED_INPUT) [TO_LOOP]: Define.
7986 2018-07-24 H.J. Lu <hongjiu.lu@intel.com>
7988 * sysdeps/unix/sysv/linux/i386/vfork.S (SYSCALL_ERROR_HANDLER):
7989 Redefine if shadow stack is enabled.
7990 (SYSCALL_ERROR_LABEL): Likewise.
7991 (__vfork): Pop shadow stack and jump back to to caller directly
7992 when shadow stack is in use.
7993 * sysdeps/unix/sysv/linux/x86_64/vfork.S (SYSCALL_ERROR_HANDLER):
7994 Redefine if shadow stack is enabled.
7995 (SYSCALL_ERROR_LABEL): Likewise.
7996 (__vfork): Pop shadow stack and jump back to to caller directly
7997 when shadow stack is in use.
7999 2018-07-24 H.J. Lu <hongjiu.lu@intel.com>
8001 * sysdeps/x86_64/tst-quadmod1.S (func): Add endbr64 if IBT is
8004 * sysdeps/x86_64/tst-quadmod2.S (func) : Likewise.
8007 2018-07-20 Joseph Myers <joseph@codesourcery.com>
8009 * scripts/build-many-glibcs.py (Context.checkout): Default
8010 binutils version to 2.31 branch.
8012 2018-07-20 Zong Li <zong@andestech.com>
8014 * scripts/build-many-glibcs.py (Context.checkout_tar): Change the
8015 URL of gcc's tarball.
8017 2018-07-20 Florian Weimer <fweimer@redhat.com>
8020 * posix/regcomp.c (build_equiv_class): When comparing weights, do
8021 not compare an extra byte after the end of the weights.
8023 2018-07-20 Samuel Thibault <samuel.thibault@ens-lyon.org>
8025 * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Set multiple_threads
8027 * sysdeps/hurd/include/hurd/port.h [!_ISOMAC]: Do not declare libc
8029 * sysdeps/mach/include/mach-shortcuts-hidden.h [!_ISOMAC]: Likewise.
8030 * sysdeps/mach/include/mach/mach_traps.h [!_ISOMAC]: Likewise.
8031 * scripts/check-execstack.awk: Consider `xfail' variable containing a
8032 list of libraries whose stack executability is expected.
8033 * elf/Makefile ($(objpfx)check-execstack.out): Pass
8034 $(check-execstack-xfail) to check-execstack.awk through `xfail'
8036 * sysdeps/mach/hurd/i386/Makefile (check-execstack-xfail): Set to ld.so
8037 libc.so libpthread.so.
8039 2018-07-20 Thomas Schwinge <tschwinge@gnu.org>
8041 * sysdeps/mach/hurd/socket.c (__socket): Handle SOCK_CLOEXEC and
8043 * sysdeps/mach/hurd/socketpair.c (__socketpair): Handle SOCK_CLOEXEC
8045 * sysdeps/mach/hurd/pipe2.c: New file, copy from pipe.c. Evolve it to
8047 * sysdeps/mach/hurd/pipe.c (__pipe): Reimplement using __pipe2.
8049 2018-07-19 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
8051 * benchtests/scripts/compare_bench.py (__main__): use the argparse
8052 library to improve command line parsing.
8053 (__main__): make schema file as optional parameter (--schema),
8054 defaulting to benchtests/scripts/benchout.schema.json.
8055 (main): move out of the parsing stuff to __main_ and leave it
8056 only as caller of main comparison functions.
8058 2018-07-19 H.J. Lu <hongjiu.lu@intel.com>
8060 * NEWS: Add a note for Intel CET status.
8061 * manual/install.texi: Likewise.
8062 * INSTALL: Regenerated.
8064 2018-07-18 Quentin PAGÈS <provaires@quentino.fr>
8067 * localedata/locales/oc_FR (mon): Rename to...
8068 (alt_mon): This, then update October (typo fix).
8069 (mon): New content (genitive case, month names preceded by
8073 * localedata/locales/oc_FR (abday): Update all items.
8074 (day): Update Wednesday and Saturday (typo fixes).
8075 (abmon): Update all items, except May.
8076 (d_fmt): Update "%d.%m.%Y" -> "%d/%m/%Y".
8077 (LC_IDENTIFICATION): Bump the revision number and date.
8078 Keep the "category" entries in alphabetic order.
8079 (LC_ADDRESS): Remove no longer needed comment.
8080 (LC_COLLATE): Use “copy "ca_ES"”.
8081 (LC_NAME): Set the correct values of "name_fmt", "name_mr", and
8084 2018-07-18 Joseph Myers <joseph@codesourcery.com>
8086 * grp/tst_fgetgrent.c: Include <unistd.h>.
8087 (main): Use mkstemp instead of tmpnam.
8088 * io/test-utime.c (main): Likewise.
8089 * posix/annexc.c (macrofile): Change to modifiable array.
8090 (main): Remove macrofile here.
8091 (get_null_defines): Use mkstemp instead of tmpnam. Do not remove
8093 (check_header): Do not remove macrofile here.
8094 * posix/bug-getopt1.c: Include <stdlib.h>.
8095 (do_test): Use mkstemp instead of tmpnam.
8096 * posix/bug-getopt2.c: Include <stdlib.h>.
8097 (do_test): Use mkstemp instead of tmpnam.
8098 * posix/bug-getopt3.c: Include <stdlib.h>.
8099 (do_test): Use mkstemp instead of tmpnam.
8100 * posix/bug-getopt4.c: Include <stdlib.h>.
8101 (do_test): Use mkstemp instead of tmpnam.
8102 * posix/bug-getopt5.c: Include <stdlib.h>.
8103 (do_test): Use mkstemp instead of tmpnam.
8104 * stdio-common/bug7.c: Include <stdlib.h> and <unistd.h>.
8105 (main): Use mkstemp instead of tmpnam.
8106 * stdio-common/tst-fdopen.c: Include <stdlib.h>.
8107 (main): Use mkstemp instead of tmpnam.
8108 * stdio-common/tst-ungetc.c: Include <stdlib.h>.
8109 (main): use mkstemp instead of tmpnam.
8110 * stdlib/isomac.c (macrofile): Change to modifiable array.
8111 (main): Remove macrofile here.
8112 (get_null_defines): Use mkstemp instead of tmpnam. Do not remove
8114 (check_header): Do not remove macrofile here.
8116 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8118 * manual/tunables.texi: Document glibc.tune.x86_ibt and
8119 glibc.tune.x86_shstk.
8121 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8123 * NEWS: Mention --enable-cet.
8124 * manual/install.texi: Document --enable-cet.
8125 * INSTALL: Regenerated.
8127 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8129 * sysdeps/x86_64/multiarch/memcmp-sse4.S (BRANCH_TO_JMPTBL_ENTRY):
8130 Add _CET_NOTRACK before indirect jump to jump table.
8132 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8134 * sysdeps/i386/i686/multiarch/memset-sse2-rep.S
8135 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
8138 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8140 * sysdeps/i386/i686/multiarch/strcat-sse2.S
8141 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
8144 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8146 * sysdeps/i386/i686/multiarch/strcpy-sse2.S
8147 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
8150 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8152 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S
8153 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
8156 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8158 * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S
8159 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
8161 (BRANCH_TO_JMPTBL_ENTRY_TAIL): Likewise.
8163 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8165 * sysdeps/i386/i686/multiarch/memcmp-sse4.S
8166 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
8169 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8171 * sysdeps/i386/i686/multiarch/memset-sse2.S
8172 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
8175 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8177 * sysdeps/i386/i686/memcmp.S (memcmp): Add _CET_NOTRACK before
8178 indirect jump to jump table.
8180 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8182 * sysdeps/x86_64/multiarch/memcpy-ssse3.S
8183 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
8187 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8189 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S
8190 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
8194 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8196 * sysdeps/x86_64/multiarch/strcmp-sse42.S (STRCMP_SSE42): Add
8197 _CET_NOTRACK before indirect jump to jump table.
8199 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8201 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S
8202 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
8205 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
8207 * sysdeps/x86_64/strcmp.S (STRCMP): Add _CET_NOTRACK before
8208 indirect jump to jump table.
8210 2018-07-18 Valery Timiriliyev <timiriliyev@gmail.com>
8213 * localedata/Makefile (test-input): Add sah_RU.UTF-8.
8214 (LOCALES): Likewise.
8215 * localedata/SUPPORTED (sah_RU/UTF-8): New entry.
8216 * localedata/locales/sah_RU: New file.
8217 * localedata/sah_RU.UTF-8.in: New file.
8219 2018-07-17 H.J. Lu <hongjiu.lu@intel.com>
8221 * sysdeps/i386/add_n.S: Include <sysdep.h>, instead of
8223 (__mpn_add_n): Save and restore %ebx if IBT is enabed. Add
8224 _CET_ENDBR to indirect jump targets and adjust jump destination
8226 * sysdeps/i386/i686/add_n.S: Include <sysdep.h>, instead of
8228 (__mpn_add_n): Save and restore %ebx if IBT is enabed. Add
8229 _CET_ENDBR to indirect jump targets and adjust jump destination
8231 * sysdeps/i386/sub_n.S: Include <sysdep.h>, instead of
8233 (__mpn_sub_n): Save and restore %ebx if IBT is enabed. Add
8234 _CET_ENDBR to indirect jump targets and adjust jump destination
8237 2018-07-17 H.J. Lu <hongjiu.lu@intel.com>
8239 * sysdeps/x86_64/multiarch/strcmp-sse42.S (STRCMP_SSE42): Add
8242 2018-07-17 H.J. Lu <hongjiu.lu@intel.com>
8244 * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_return): Add
8246 (_dl_tlsdesc_undefweak): Likewise.
8247 (_dl_tlsdesc_dynamic): Likewise.
8248 (_dl_tlsdesc_resolve_abs_plus_addend): Likewise.
8249 (_dl_tlsdesc_resolve_rel): Likewise.
8250 (_dl_tlsdesc_resolve_rela): Likewise.
8251 (_dl_tlsdesc_resolve_hold): Likewise.
8252 * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_return): Likewise.
8253 (_dl_tlsdesc_undefweak): Likewise.
8254 (_dl_tlsdesc_dynamic): Likewise.
8255 (_dl_tlsdesc_resolve_rela): Likewise.
8256 (_dl_tlsdesc_resolve_hold): Likewise.
8258 2018-07-17 H.J. Lu <hongjiu.lu@intel.com>
8260 * sysdeps/i386/crti.S (_init): Add _CET_ENDBR.
8262 * sysdeps/x86_64/crti.S (_init): Likewise.
8265 2018-07-17 Rafal Luzynski <digitalfreak@lingonborough.com>
8268 * localedata/locales/os_RU (mon): Rename to...
8270 (mon): Import from CLDR (genitive case).
8272 2018-07-17 H.J. Lu <hongjiu.lu@intel.com>
8274 * sysdeps/x86/cpu-features.c: Always include <dl-cet.h> and
8275 cet-tunables.h> when CET is enabled.
8277 2018-07-16 H.J. Lu <hongjiu.lu@intel.com>
8280 * configure.ac: Add --enable-cet.
8281 * configure: Regenerated.
8282 * elf/Makefille (all-built-dso): Add a comment.
8283 * elf/dl-load.c (filebuf): Moved before "dynamic-link.h".
8284 Include <dl-prop.h>.
8285 (_dl_map_object_from_fd): Call _dl_process_pt_note on PT_NOTE
8287 * elf/dl-open.c: Include <dl-prop.h>.
8288 (dl_open_worker): Call _dl_open_check.
8289 * elf/rtld.c: Include <dl-prop.h>.
8290 (dl_main): Call _rtld_process_pt_note on PT_NOTE segment. Call
8292 * sysdeps/generic/dl-prop.h: New file.
8293 * sysdeps/i386/dl-cet.c: Likewise.
8294 * sysdeps/unix/sysv/linux/x86/cpu-features.c: Likewise.
8295 * sysdeps/unix/sysv/linux/x86/dl-cet.h: Likewise.
8296 * sysdeps/x86/cet-tunables.h: Likewise.
8297 * sysdeps/x86/check-cet.awk: Likewise.
8298 * sysdeps/x86/configure: Likewise.
8299 * sysdeps/x86/configure.ac: Likewise.
8300 * sysdeps/x86/dl-cet.c: Likewise.
8301 * sysdeps/x86/dl-procruntime.c: Likewise.
8302 * sysdeps/x86/dl-prop.h: Likewise.
8303 * sysdeps/x86/libc-start.h: Likewise.
8304 * sysdeps/x86/link_map.h: Likewise.
8305 * sysdeps/i386/dl-trampoline.S (_dl_runtime_resolve): Add
8307 (_dl_runtime_profile): Likewise.
8308 (_dl_runtime_resolve_shstk): New.
8309 (_dl_runtime_profile_shstk): Likewise.
8310 * sysdeps/linux/x86/Makefile (sysdep-dl-routines): Add dl-cet
8312 (CFLAGS-.o): Add -fcf-protection if CET is enabled.
8313 (CFLAGS-.os): Likewise.
8314 (CFLAGS-.op): Likewise.
8315 (CFLAGS-.oS): Likewise.
8316 (asm-CPPFLAGS): Add -fcf-protection -include cet.h if CET
8318 (tests-special): Add $(objpfx)check-cet.out.
8319 (cet-built-dso): New.
8320 (+$(cet-built-dso:=.note)): Likewise.
8321 (common-generated): Add $(cet-built-dso:$(common-objpfx)%=%.note).
8322 ($(objpfx)check-cet.out): New.
8323 (generated): Add check-cet.out.
8324 * sysdeps/x86/cpu-features.c: Include <dl-cet.h> and
8326 (TUNABLE_CALLBACK (set_x86_ibt)): New prototype.
8327 (TUNABLE_CALLBACK (set_x86_shstk)): Likewise.
8328 (init_cpu_features): Call get_cet_status to check CET status
8329 and update dl_x86_feature_1 with CET status. Call
8330 TUNABLE_CALLBACK (set_x86_ibt) and TUNABLE_CALLBACK
8331 (set_x86_shstk). Disable and lock CET in libc.a.
8332 * sysdeps/x86/cpu-tunables.c: Include <cet-tunables.h>.
8333 (TUNABLE_CALLBACK (set_x86_ibt)): New function.
8334 (TUNABLE_CALLBACK (set_x86_shstk)): Likewise.
8335 * sysdeps/x86/sysdep.h (_CET_NOTRACK): New.
8336 (_CET_ENDBR): Define if not defined.
8337 (ENTRY): Add _CET_ENDBR.
8338 * sysdeps/x86/dl-tunables.list (glibc.tune): Add x86_ibt and
8340 * sysdeps/x86_64/dl-trampoline.h (_dl_runtime_resolve): Add
8342 (_dl_runtime_profile): Likewise.
8344 2018-07-16 Rogerio A. Cardoso <rcardoso@linux.vnet.ibm.com>
8347 * sysdeps/powerpc/powerpc64/__longjmp-common.S: Remove condition code for
8348 restore r2 on longjmp.
8349 * sysdeps/powerpc/powerpc64/Makefile: Added tst-setjmp-bug21895-static to
8351 Added rules to build test tst-setjmp-bug21895-static.
8352 Added module setjmp-bug21895 and rules to build a shared object from it.
8353 * sysdeps/powerpc/powerpc64/setjmp-bug21895.c: New test file.
8354 * sysdeps/powerpc/powerpc64/tst-setjmp-bug21895-static.c: New test file.
8356 2018-07-15 Wilco Dijkstra <wdijkstr@arm.com>
8358 * benchtests/bench-strcasestr.c: Rename __strnlen to strnlen.
8359 * benchtests/bench-strstr.c: Likewise.
8360 * string/memmem.c (FASTSEARCH): Define.
8361 * string/str-two-way.h (two_way_short_needle): Minor cleanups.
8362 Add support for FASTSEARCH.
8363 * string/strcasestr.c (AVAILABLE): Use read-ahead __strnlen.
8364 * string/strstr.c (AVAILABLE): Use read-ahead __strnlen.
8365 (FASTSEARCH): Define.
8366 * string/test-strcasestr.c: Rename __strnlen to strnlen.
8367 * string/test-strstr.c: Likewise.
8369 2018-07-15 H.J. Lu <hongjiu.lu@intel.com>
8371 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Undef
8372 SHADOW_STACK_POINTER_OFFSET after including <jmp_buf-ssp.h>.
8374 2018-07-14 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
8375 H.J. Lu <hongjiu.lu@intel.com>
8377 * sysdeps/i386/__longjmp.S: Include <jmp_buf-ssp.h>.
8378 (__longjmp): Restore shadow stack pointer if shadow stack is
8379 enabled, SHADOW_STACK_POINTER_OFFSET is defined and __longjmp
8380 isn't defined for __longjmp_cancel.
8381 * sysdeps/i386/bsd-_setjmp.S: Include <jmp_buf-ssp.h>.
8382 (_setjmp): Save shadow stack pointer if shadow stack is enabled
8383 and SHADOW_STACK_POINTER_OFFSET is defined.
8384 * sysdeps/i386/bsd-setjmp.S: Include <jmp_buf-ssp.h>.
8385 (setjmp): Save shadow stack pointer if shadow stack is enabled
8386 and SHADOW_STACK_POINTER_OFFSET is defined.
8387 * sysdeps/i386/setjmp.S: Include <jmp_buf-ssp.h>.
8388 (__sigsetjmp): Save shadow stack pointer if shadow stack is
8389 enabled and SHADOW_STACK_POINTER_OFFSET is defined.
8390 * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S: Include
8392 (____longjmp_chk): Restore shadow stack pointer if shadow stack
8393 is enabled and SHADOW_STACK_POINTER_OFFSET is defined.
8394 * sysdeps/unix/sysv/linux/x86/Makefile (gen-as-const-headers):
8395 Remove jmp_buf-ssp.sym.
8396 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Include
8398 (____longjmp_chk): Restore shadow stack pointer if shadow stack
8399 is enabled and SHADOW_STACK_POINTER_OFFSET is defined.
8400 * sysdeps/x86/Makefile (gen-as-const-headers): Add
8402 * sysdeps/x86/jmp_buf-ssp.sym: New dummy file.
8403 * sysdeps/x86_64/__longjmp.S: Include <jmp_buf-ssp.h>.
8404 (__longjmp): Restore shadow stack pointer if shadow stack is
8405 enabled, SHADOW_STACK_POINTER_OFFSET is defined and __longjmp
8406 isn't defined for __longjmp_cancel.
8407 * sysdeps/x86_64/setjmp.S: Include <jmp_buf-ssp.h>.
8408 (__sigsetjmp): Save shadow stack pointer if shadow stack is
8409 enabled and SHADOW_STACK_POINTER_OFFSET is defined.
8411 2018-07-14 H.J. Lu <hongjiu.lu@intel.com>
8414 * nptl/pthread_create.c: Include <tls-setup.h>.
8415 (__pthread_create_2_1): Call tls_setup_tcbhead.
8416 * sysdeps/generic/tls-setup.h: New file.
8417 * sysdeps/x86/nptl/tls-setup.h: Likewise.
8418 * sysdeps/i386/nptl/tcb-offsets.sym (FEATURE_1_OFFSET): New.
8419 * sysdeps/x86_64/nptl/tcb-offsets.sym (FEATURE_1_OFFSET):
8421 * sysdeps/i386/nptl/tls.h (tcbhead_t): Rename __glibc_reserved1
8423 * sysdeps/x86_64/nptl/tls.h (tcbhead_t): Likewise.
8424 * sysdeps/x86/sysdep.h (X86_FEATURE_1_IBT): New.
8425 (X86_FEATURE_1_SHSTK): Likewise.
8426 (CET_ENABLED): Likewise.
8427 (IBT_ENABLED): Likewise.
8428 (SHSTK_ENABLED): Likewise.
8430 2018-07-13 Rafal Luzynski <digitalfreak@lingonborough.com>
8433 * localedata/Makefile (test-input): Add dsb_DE.UTF-8.
8434 (LOCALES): Likewise.
8435 * localedata/dsb_DE.UTF-8.in: New file.
8436 * localedata/locales/dsb_DE (LC_COLLATE): Fix syntax error.
8438 2018-07-12 Florian Weimer <fweimer@redhat.com>
8440 * nptl/allocatestack.c [_STACK_GROWS_UP] (allocate_stack): Call
8441 __mprotect, not mprotect.
8443 2018-07-11 Florian Weimer <fweimer@redhat.com>
8445 * io/Makefile (headers): Add bits/statx.h.
8447 2018-07-10 Mike FABIAN <mfabian@redhat.com>
8449 * localedata/charmaps/UTF-8: Use correct Unicode version 11.0.0 in comment.
8450 * localedata/locales/i18n_ctype: Use correct Unicode version in comments
8452 * localedata/unicode-gen/utf8_gen.py: Add option to specify Unicode version
8453 * localedata/unicode-gen/Makefile: Use option to specify Unicode version
8456 2018-07-10 Florian Weimer <fweimer@redhat.com>
8458 * io/Makefile (routines): Add statx.
8459 (tests-internal): Add tst-statx.
8460 * io/Versions (GLIBC_2.28): Export statx.
8461 * io/bits/statx.h: New file.
8462 * io/sys/stat.h [__USE_GNU]: Include it.
8463 * io/fcntl.h [__USE_GNU] (AT_STATX_SYNC_TYPE)
8464 (AT_STATX_SYNC_AS_STAT, AT_STATX_FORCE_SYNC, AT_STATX_DONT_SYNC):
8466 * io/statx.c: New file.
8467 * io/statx_generic.: Likewise.
8468 * io/tst-statx.: Likewise.
8469 * include/bits/statx.h: Likewise.
8470 * sysdeps/unix/sysv/linux/kernel-features.h
8471 [__LINUX_KERNEL_VERSION >= 0x040B00] (__ASSUME_STATX): Define.
8472 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
8473 [__LINUX_KERNEL_VERSION < 0x040D00] (__ASSUME_STATX): Undefine.
8474 * sysdeps/unix/sysv/linux/ia64/kernel-features.h (__ASSUME_STATX):
8476 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
8477 [__LINUX_KERNEL_VERSION < 0x040C00] (__ASSUME_STATX): Undefine.
8478 * sysdeps/unix/sysv/linux/statx.c: New file.
8479 * manual/filesys.texi: Note that statx is undocumented.
8480 * sysdeps/**/libc*.abilist: Update.
8482 2018-07-10 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8484 * sysdeps/unix/sysv/linux/tst-ofdlocks-compat.c: Add a comment about
8485 a kernel issue which lead to test failure in some cases.
8487 2018-07-10 Florian Weimer <fweimer@redhat.com>
8490 * posix/regexec.c (check_node_accept_bytes): When comparing
8491 weights, do not compare an extra byte after the end of the
8494 2018-07-10 Florian Weimer <fweimer@redhat.com>
8496 * libio/readline.c: Fix copyright year.
8497 * libio/tst-readline.c Likewise.
8498 * nss/tst-nss-files-hosts-getent.c: Likewise.
8500 2018-07-06 Florian Weimer <fweimer@redhat.com>
8503 * nss/nss_files/files-XXX.c (internal_getent): Use
8504 __libc_readline_unlocked. Seek back to the start of the line if
8505 parsing failes with ERANGE.
8506 (get_contents_ret, get_contents): Remove.
8507 * nss/tst-nss-files-hosts-getent.c: New file.
8508 * nss/Makefile (tests): Add tst-nss-files-hosts-getent.
8509 (tst-nss-files-hosts-getent): Link with -ldl.
8511 2018-07-06 Florian Weimer <fweimer@redhat.com>
8513 * include/stdio.h (__libc_readline_unlocked): Declare.
8514 (__ftello64, __fseeko64): Declare aliases.
8515 * libio/readline.c: New file.
8516 * libio/tst-readline.c: Likewise.
8517 (routines): Add readline.
8518 (tests-internal): Add tst-readlime.
8519 * libio/Versions (GLIBC_PRIVATE): Export __fseeko64, __ftello64,
8520 __libc_readline_unlocked.
8521 * libio/fseeko.c (__fseeko): Rename from fseeko.
8522 (fseeko): Add alias.
8523 [__OFF_T_MATCHES_OFF64_T] (fseeko64, __fseeko64): Likewise.
8524 * libio/fseeko64.c (__fseeko64): Rename from fseeko64.
8525 (fseeko64): Add alias.
8526 * libio/ftello.c [__OFF_T_MATCHES_OFF64_T] (__ftello64): Add alias.
8527 * libio/ftello64.c (__ftello64): Rename from ftello64.
8528 (ftello64): Add alias.
8530 2018-07-06 Szabolcs Nagy <szabolcs.nagy@arm.com>
8532 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h (HWCAP_IMPORTANT): Add
8535 2018-07-06 Szabolcs Nagy <szabolcs.nagy@arm.com>
8537 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (init_cpu_features):
8538 Use dl_hwcap without masking.
8539 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h (HWCAP_IMPORTANT):
8542 2018-07-06 Florian Weimer <fweimer@redhat.com>
8544 * conform/conformtest.pl (checknamespace): Escape literal braces
8545 in regular expressions.
8547 2018-07-06 Amit Pawar <amit.pawar@amd.com>
8549 * sysdeps/x86/cpu-features.c (get_common_indeces):
8550 AVX_Fast_Unaligned_Load is enabled when AVX2 is detected.
8551 * sysdeps/x86/cpu-features.c (init_cpu_features):
8552 AVX_Fast_Unaligned_Load is disabled for Excavator core.
8554 2018-07-05 Florian Weimer <fweimer@redhat.com>
8556 * csu/Makefile (CFLAGS-static-reloc.os): Build with stack
8558 (CFLAGS-elf-init.oS): Likewise.
8560 2018-07-05 Florian Weimer <fweimer@redhat.com>
8561 Carlos O'Donell <carlos@redhat.com>
8563 * debug/Makefile (CFLAGS-stack_chk_fail_local.c): Remove
8564 $(no-stack-protector). stack_chk_fail_local.c can be compiled
8565 with stack protector enabled because there is no risk of infinite
8568 2018-07-05 Maciej W. Rozycki <macro@mips.com>
8572 * libc-abis (ABSOLUTE): New ABI.
8573 * sysdeps/unix/sysv/linux/mips/libc-abis (ABSOLUTE): New ABI.
8574 * NEWS: Mention the new ABI.
8576 2018-07-05 Florian Weimer <fweimer@redhat.com>
8579 * libio/stdio.h [__USE_GNU] (RENAME_NOREPLACE, RENAME_EXCHANGE)
8580 (RENAME_WHITEOUT): Define.
8581 [__USE_GNU] (renameat2): Declare.
8582 * stdio-common/Makefile (routines): Add renameat2.
8583 (tests): Add tst-renameat2.
8584 * stdio-common/Versions (GLIBC_2_28): Export renameat2.
8585 * stdio-common/renameat2.c: New file.
8586 * stdio-common/tst-renameat2.c: Likewise.
8587 * sysdeps/unix/sysv/linux/renameat2.c: Likewise.
8588 * manual/filesys.texi (Temporary Files): Note that renameat2 is
8590 * sysdeps/unix/sysv/linux/kernel-features.h
8591 [__LINUX_KERNEL_VERSION >= 0x030F00] (__ASSUME_RENAMEAT2): Define.
8592 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
8593 [__LINUX_KERNEL_VERSION < 0x031100] (__ASSUME_RENAMEAT2): Undefine.
8594 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
8595 [__LINUX_KERNEL_VERSION < 0x031100] (__ASSUME_RENAMEAT2): Undefine.
8596 * sysdeps/unix/sysv/linux/sh/kernel-features.h
8597 [__LINUX_KERNEL_VERSION < 0x040800] (__ASSUME_RENAMEAT2): Undefine.
8598 * sysdeps/unix/sysv/linux/sparc/kernel-features.h
8599 [__LINUX_KERNEL_VERSION < 0x031000] (__ASSUME_RENAMEAT2): Undefine.
8600 * include/stdio.h (__renameat): Add alias for renameat.
8601 * stdio-common/renameat.c (__renameat): Rename from renameat.
8602 Add hidden definition and alias.
8603 * sysdeps/unix/sysv/linux/renameat.c: Likewise.
8604 * sysdeps/mach/hurd/renameat.c: Likewise.
8605 * sysdeps/**/libc*.abilist: Add renameat2.
8607 2018-07-04 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8609 * posix/bug-regex33.c: Fix build after regex sync.
8611 2018-07-04 Carlos O'Donell <carlos@redhat.com>
8614 * localedata/tst-langinfo-setlocale.c: New file.
8615 * localedata/tst-langinfo-setlocale-static.c: New file.
8616 * localedata/tst-langinfo-newlocale.c: New file.
8617 * localedata/tst-langinfo-newlocale-static.c: New file.
8618 * localedata/Makefile (test-srcs): Remove tst-langinfo. Add
8619 tst-langinfo-setlocale, tst-langinfo-setlocale-static,
8620 tst-langinfo-newlocale, tst-langinfo-newlocale-static.
8621 (tests-static): Remove tst-langinfo-static. Add
8622 tst-langinfo-newlocale-static, tst-langinfo-setlocale-static.
8623 (tests-special): Remove $(objpfx)tst-langinfo.out,
8624 $(objpfx)tst-langinfo-static.out. Add
8625 $(objpfx)tst-langinfo-setlocale.out,
8626 $(objpfx)tst-langinfo-newlocale.out,
8627 $(objpfx)tst-langinfo-setlocale-static.out,
8628 $(objpfx)tst-langinfo-newlocale-static.out.
8629 ($(objpfx)tst-langinfo.out): Remove.
8630 ($(objpfx)tst-langinfo-static.out): Remove.
8631 ($(objpfx)tst-langinfo-newlocale.out): New target.
8632 ($(objpfx)tst-langinfo-newlocale-static.out): New target.
8633 (test-xfail-tst-langinfo-newlocale-static): Add.
8634 ($(objpfx)tst-langinfo-setlocale.out): New target.
8635 ($(objpfx)tst-langinfo-setlocale-static.out): New target.
8636 * localedata/tst-langinfo.c: Call test_locale.
8637 * localedata/tst-langinfo.sh: Add LC_MONETARY CURRENCY_SYMBOL test
8640 2018-07-04 Florian Weimer <fweimer@redhat.com>
8642 testrun.sh: Implement --tool=strace, --tool=valgrind
8643 * Makefile (testrun-script): Define variable.
8644 (testrun.sh): Use variable.
8645 * manual/install.texi (Tools for Compilation): make 4.0 or later
8647 * configure.ac: Check for make 4.0 or later.
8648 * INSTALL: Regenerate.
8649 * configure: Likewise.
8651 2018-07-04 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8657 * posix/Makefile (tests): Add bug-regex37 and bug-regex38.
8658 * posix/PCRE.tests: Remove invalid test.
8659 * posix/bug-regex28.c: Fix expected values for used syntax.
8660 * posix/bug-regex37.c: New file.
8661 * posix/bug-regex38.c: Likewise.
8662 * posix/regcomp.c: Sync with gnulib.
8663 * posix/regex.c: Likewise.
8664 * posix/regex.h: Likewise.
8665 * posix/regex_internal.c: Likewise.
8666 * posix/regex_internal.h: Likewise.
8667 * posix/regexec.c: Likewise.
8669 2018-06-26 Mike FABIAN <mfabian@redhat.com>
8672 * unicode-gen/Makefile (UNICODE_VERSION): Set to 11.0.0.
8673 * localedata/unicode-gen/DerivedCoreProperties.txt: Update to Unicode 11.0.0.
8674 * localedata/unicode-gen/EastAsianWidth.txt: likewise.
8675 * localedata/unicode-gen/PropList.txt: likewise.
8676 * localedata/unicode-gen/UnicodeData.txt: likewise.
8677 * localedata/charmaps/UTF-8: Regenerate.
8678 * localedata/locales/i18n_ctype: likewise.
8679 * localedata/locales/tr_TR: likewise.
8680 * localedata/locales/translit_circle: likewise.
8681 * localedata/locales/translit_cjk_compat: likewise.
8682 * localedata/locales/translit_combining: likewise.
8683 * localedata/locales/translit_compat: likewise.
8684 * localedata/locales/translit_font: likewise.
8685 * localedata/locales/translit_fraction: likewise.
8687 2018-07-03 Florian Weimer <fweimer@redhat.com>
8690 * stdio-common/tst-printf.c (DEC, INT, UNS, fp_test): Remove.
8691 * stdio-common/tst-printf.sh: Adjust expected output.
8694 2018-07-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8696 * sysdeps/mach/hurd/i386/libc.abilist [GLIBC_2.28] (fcntl): Remove
8699 2018-07-02 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
8701 * stdio-common/Makefile (test-srcs): Add tst-printfsz-islongdouble.
8702 (tests-special) Add $(objpfx)tst-printfsz-islongdouble.out.
8703 ($(objpfx)tst-printfsz-islongdouble.out): New build and run rule.
8704 * stdio-common/tst-printfsz-islongdouble.c: New file.
8705 * stdio-common/tst-printfsz-islongdouble.sh: Likewise.
8706 * sysdeps/ieee754/ldbl-128ibm-compat/Makefile:
8707 [subdir == stdio-common] (routines): Add ieee128-printf_size.
8708 [subdir == stdio-common] (tests-internal): Add
8709 test-printf-size-ieee128, and test-printf-size-ibm128.
8710 [subdir == stdio-common] (CFLAGS-test-printf-size-ieee128.c)
8711 (CFLAGS-test-printf-size-ibm128.c): New variables.
8712 [subdir == stdio-common] (tests-special): Add
8713 $(objpfx)test-printf-size-ieee128.out and
8714 $(objpfx)test-printf-size-ibm128.out.
8715 [subdir == stdio-common] ($(objpfx)test-printf-size-ieee128.out)
8716 ($(objpfx)test-printf-size-ibm128.out): New build and run rules.
8717 * sysdeps/ieee754/ldbl-128ibm-compat/Versions (libc): Add
8718 __printf_sizeieee128.
8719 * sysdeps/ieee754/ldbl-128ibm-compat/ieee128-printf_size.c:
8721 * sysdeps/ieee754/ldbl-128ibm-compat/test-printf-size-ibm128.c:
8723 * sysdeps/ieee754/ldbl-128ibm-compat/test-printf-size-ieee128.c:
8726 2018-07-02 Szabolcs Nagy <szabolcs.nagy@arm.com>
8728 * sysdeps/ieee754/flt-32/e_powf.c (__powf): Use uint32_t.
8729 (exp2f_inline): Likewise.
8730 * sysdeps/ieee754/flt-32/math_config.h (__math_oflowf): Likewise.
8731 (__math_uflowf): Likewise.
8732 (__math_may_uflowf): Likewise.
8733 (__math_divzerof): Likewise.
8734 (__math_invalidf): Likewise.
8735 * sysdeps/ieee754/flt-32/math_errf.c (xflowf): Likewise.
8736 (__math_oflowf): Likewise.
8737 (__math_uflowf): Likewise.
8738 (__math_may_uflowf): Likewise.
8739 (__math_divzerof): Likewise.
8740 (__math_invalidf): Likewise.
8742 2018-06-29 DJ Delorie <dj@redhat.com>
8743 Carlos O'Donell <carlos@redhat.com>
8746 * include/libc-symbols.h: Comment the freeres framework.
8747 * include/set-hooks.h: Include libc-symbols.h. Fix comment.
8748 * dlfcn/Makefile (libdl-routines): Add dlfreeres.
8749 * dlfcn/Versions (GLIBC_PRIVATE): Add __libdl_freeres.
8750 * dlfcn/dlerror.c: Include libc-symbols.h
8751 (__dlerror_main_freeres): New function.
8752 * dlfcn/dlfreeres.c: New file.
8753 * dlfcn/sdlfreeres.c: New file.
8754 * include/dlfcn.h: Declare __dlerror_main_freeres.
8755 * malloc/set-freeres.c: Declare __libdl_freeres, and
8756 __libpthread_freeres.
8757 (__libc_subfreeres): Call __libdl_freeres, and __libpthread_freeres if
8758 the releavant libraries are loaded.
8759 * malloc/thread-freeres.c: Add comments.
8760 * nptl/Makefile (libpthread-routines): Add nptlfreeres.
8761 * nptl/Version (GLIBC_PRIVATE): Add __libpthread_freeres.
8762 * nptl/allocatestack.c (__nptl_free_stacks): New function.
8763 (__free_stacks): Rename to...
8764 (free_stacks): ...this. Mark static.
8765 (queue_stack): Call free_stacks.
8766 * nptl/libc_pthread_init.c [SHARED] (freeres_libpthread): Delete.
8767 * nptl/nptl-init.c: Delete delcaration of nptl_freeres.
8768 * sysdeps/nptl/pthread-functions.h (pthread_functions): Remove
8769 ptr_freeres element from struct.
8770 (pthread_functions): Remove .ptr_freeres from struct initializer.
8771 [SHARED] (nptl_freeres): Remove.
8772 * nptl/nptlfreeres.c: New file.
8774 [IS_IN (libpthread) && SHARED ] (__unwind_freeres): Rename to...
8775 [IS_IN (libpthread)] (__nptl_unwind_freeres): ...this. Mark
8777 (__free_stacks): Rename to...
8778 (__nptl_stacks_freeres): ...this.
8779 (__shm_directory_freeres): Declare.
8780 * nptl/unwind-forcedunwind.c (__unwind_freeres): Rename to...
8781 (__nptl_unwind_freeres): ...this.
8782 * resolv/res-close.c: Add comment.
8783 * resolv/resolv_conf.c: Include libc-symbols.h.
8784 * string/strerror_l.c: Include libc-symbols.h.
8785 * sunrpc/rpc_thread.c: Include libc-symbols.h.
8786 * sysdeps/mach/strerror_l.c: Inlcude libc-symbols.h
8787 * sysdeps/unix/sysv/linux/shm-directory.c (freeit): Rename to...
8788 [IS_IN (libpthread)] (__shm_directory_freeres): ...this.
8790 2018-06-29 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
8792 * stdlib/tst-strfmon_l.c: Add tests for long double.
8794 2018-06-29 Michael Wolf <milupo@sorbzilla.de>
8797 * localedata/SUPPORTED (dsb_DE/UTF-8): New entry.
8798 * localedata/locales/dsb_DE: New file.
8800 2018-06-29 Rafal Luzynski <digitalfreak@lingonborough.com>
8803 * localedata/locales/hy_AM (mon): Synchronize with CLDR (lowercase,
8805 (alt_mon): New entry, import from CLDR (nominative case).
8807 2018-06-29 Sylvain Lesage <severo@rednegra.net>
8810 * localedata/locales/es_BO (LC_PAPER): Change to “copy "en_US"”.
8812 2018-06-29 Siddhesh Poyarekar <siddhesh@sourceware.org>
8814 * sysdeps/aarch64/multiarch/memcpy_falkor.S (__memcpy_falkor):
8815 Use vector registers.
8817 * sysdeps/aarch64/multiarch/memmove_falkor.S
8818 (__memcpy_falkor): Use vector registers.
8820 2018-06-29 Martin Sebor <msebor@redhat.com>
8822 * manual/stdio.texi (Customizing Printf): Mention interaction
8825 2018-06-29 Maciej W. Rozycki <macro@mips.com>
8828 * elf/dl-lookup.c (check_match): Do not reject a symbol whose
8829 `st_value' is 0 if `st_shndx' is SHN_ABS.
8830 * elf/tst-absolute-zero.c: New file.
8831 * elf/tst-absolute-zero-lib.c: New file.
8832 * elf/tst-absolute-zero-lib.lds: New file.
8833 * elf/Makefile (tests): Add `tst-absolute-zero'.
8834 (modules-names): Add `tst-absolute-zero-lib'.
8835 (LDLIBS-tst-absolute-zero-lib.so): New variable.
8836 ($(objpfx)tst-absolute-zero-lib.so): New dependency.
8837 ($(objpfx)tst-absolute-zero: New dependency.
8839 2018-06-29 Zack Weinberg <zackw@panix.com>
8841 * configure.ac: New command-line option --disable-crypt.
8842 Force --disable-nss-crypt when --disable-crypt is given, with a
8843 warning if it was explicitly enabled.
8844 * configure: Regenerate.
8845 * config.make.in: New boolean substitution variable $(build-crypt).
8846 * Makeconfig: Only include 'crypt' in all-subdirs and rpath-dirs
8847 when $(build-crypt).
8848 * manual/install.texi: Document --disable-crypt.
8849 * INSTALL: Regenerate.
8851 * crypt/Makefile: Remove code conditional on $(crypt-in-libc),
8853 * conform/Makefile: Only include libcrypt.a in
8854 linknamespace-libs-xsi and linknamespace-libs-XPG4
8855 when $(build-crypt).
8856 * elf/Makefile (CFLAGS-tst-linkall-static.c): Only define
8857 USE_CRYPT to 1 when $(build-crypt).
8858 (tst-linkall-static): Only link libcrypt.a when $(build-crypt).
8859 (localplt-built-dso): Only add libcrypt.so when $(build-crypt).
8860 * elf/tst-linkall-static.c: Only include crypt.h when USE_CRYPT.
8862 2018-06-29 Zack Weinberg <zackw@panix.com>
8864 * crypt/crypt.h, posix/unistd.h: Update comments and
8865 prototypes for crypt and crypt_r.
8867 * manual/crypt.texi (Cryptographic Functions): New initial
8869 (crypt): Section renamed to 'Passphrase Storage'. Full rewrite.
8870 (Unpredictable Bytes): Improve initial exposition. Clarify error
8871 behavior of getentropy and getrandom.
8872 * manual/examples/genpass.c: Generate a salt using getentropy
8873 instead of the current time. Use hash $5$ (SHA-2-256).
8874 * manual/examples/testpass.c: Demonstrate validation against
8875 hashes generated with three different one-way functions.
8877 * manual/intro.texi: crypt.texi does not need an overview
8880 * manual/nss.texi, manual/memory.texi, manual/socket.texi
8881 * manual/terminal.texi: Consistently refer to "passphrases"
8882 * instead of "passwords", and to the "user database" instead
8883 * of the "password database".
8884 * manual/users.texi: Similarly. Add notes about how actual
8885 passphrase hashes are now stored in the shadow database.
8886 Remove 20-year-old junk todo note.
8888 2018-06-29 Zack Weinberg <zackw@panix.com>
8890 * manual/crypt.texi: Use a normal top-level @node declaration.
8891 Move most of the introductory text to the 'crypt' section.
8892 Move the example programs below the @deftypefun for 'crypt_r'.
8893 Move the 'getpass' section...
8894 * manual/terminal.texi: ...here.
8896 2018-06-29 Zack Weinberg <zackw@panix.com>
8897 Florian Weimer <fweimer@redhat.com>
8899 * posix/unistd.h: Do not declare encrypt.
8900 (_XOPEN_CRYPT): Remove macro definition.
8901 (crypt): Declare only for _USE_MISC.
8902 * stdlib/stdlib.h: Do not declare setkey.
8903 * crypt/crypt.h: Do not declare encrypt, setkey, encrypt_r, setkey_r.
8904 * sunrpc/Makefile: Do not install des_crypt.h nor rpc_des.h.
8906 * crypt/crypt-entry.c: Make fcrypt a compat symbol.
8907 * crypt/crypt_util.c: Make encrypt, encrypt_r, setkey, setkey_r
8908 into compat symbols. Don't define initial_perm if it's not
8910 * crypt/cert.c: Link explicitly with the expected versions for
8911 setkey and encrypt. If they are not available at all, mark
8912 the test as unsupported.
8914 * sunrpc/des_crypt.c: Unconditionally block linkage with
8915 cbc_crypt and ecb_crypt for new binaries.
8916 * sunrpc/des_soft.c: Unconditionally block linkage with
8917 des_setparity for new binaries.
8919 * manual/crypt.texi: Remove the entire "DES Encryption"
8920 section. Also remove the paragraph talking about FIPS 140-2
8921 from the introduction.
8922 * manual/string.texi (strfry, memfrob): Revise. Recommend use
8923 of libgcrypt for "real" encryption, not DES.
8924 * manual/conf.texi (Constants for Sysconf): Mention that
8925 _XOPEN_CRYPT is no longer impelemented.
8927 * conform/data/unistd.h-data: Remove crypt function declaration.
8929 2018-06-29 Florian Weimer <fweimer@redhat.com>
8932 * malloc/hooks.c: Update comments on restoring of dumped heaps.
8933 (disallow_malloc_check): Remove variable.
8934 (__malloc_check_init): Adjust.
8935 (malloc_set_state): Update comment.
8936 * malloc/malloc.c (__malloc_get_state, __malloc_set_state): Remove
8939 2018-06-29 Rafal Luzynski <digitalfreak@lingonborough.com>
8942 * localedata/locales/ast_ES (mon): Rename to...
8944 (mon): Import from CLDR (genitive case).
8946 2018-06-29 Daniel Alvarez <dalvarez@redhat.com>
8947 Jakub Sitnicki <jkbs@redhat.com>
8950 * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Retry
8953 2018-06-28 Szabolcs Nagy <szabolcs.nagy@arm.com>
8955 * manual/llio.texi: Remove spurious space.
8957 2018-06-28 Florian Weimer <fweimer@redhat.com>
8960 * time/bits/types/struct_timespec.h: Change header inclusion guard to
8963 2018-06-28 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
8965 * sysdeps/ieee754/ldbl-128ibm-compat/Versions: Add __strfromieee128,
8966 __strtoieee128, __strtoieee128_l,__wcstoieee128 and __wcstoieee128_l.
8967 * sysdeps/ieee754/ldbl-128ibm-compat/strfromf128.c: New file.
8968 * sysdeps/ieee754/ldbl-128ibm-compat/strtof128.c: New file.
8969 * sysdeps/ieee754/ldbl-128ibm-compat/strtof128_l.c: New file.
8970 * sysdeps/ieee754/ldbl-128ibm-compat/wcstof128.c: New file.
8971 * sysdeps/ieee754/ldbl-128ibm-compat/wcstof128_l.c: New file.
8973 2018-06-27 Maciej W. Rozycki <macro@mips.com>
8976 * nis/nss_nisplus/nisplus-parser.c (_nss_nisplus_parse_pwent):
8977 Copy and null-terminate entries that are not terminated, in
8978 addition to empty ones.
8980 2018-06-27 Florian Weimer <fweimer@redhat.com>
8983 * include/alloca.h (stackinfo_alloca_round, extend_alloca)
8984 (extend_alloca_account): Remove.
8985 * manual/stdio.texi (Variable Arguments Output): Update comment.
8987 2018-06-27 Joseph Myers <joseph@codesourcery.com>
8989 * nptl/sockperf.c: Remove file.
8991 2018-06-27 Florian Weimer <fweimer@redhat.com>
8994 * elf/dl-deps.c (_dl_map_object_deps): Use struct
8995 scratch_buffer instead of extend_alloca.
8997 2018-06-27 Florian Weimer <fweimer@redhat.com>
9000 * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Use struct
9001 scratch_buffer instead of extend_alloca. Update comments.
9003 2018-06-27 Florian Weimer <fweimer@redhat.com>
9006 * posix/wordexp.c (parse_tilde): Use struct scratch_buffer
9007 instead of extend_alloca.
9009 2018-06-26 Joseph Myers <joseph@codesourcery.com>
9012 * posix/Makefile (CFLAGS-tst-spawn3.c): New variable.
9013 * posix/tst-spawn3.c (do_test): Put tst-spwan3.pid in OBJPFX, not
9015 * scripts/test-installation.pl: Put temporary files in build
9016 directory, not /tmp.
9017 * stdio-common/Makefile (CFLAGS-bug3.c): New variable.
9018 (CFLAGS-bug4.c): Likewise.
9019 (CFLAGS-bug5.c): Likewise.
9020 (CFLAGS-test-fseek.c): Likewise.
9021 (CFLAGS-test-popen.c): Likewise.
9022 (CFLAGS-test_rdwr.c): Likewise.
9023 * stdio-common/bug3.c (main): Put temporary file in OBJPFX, not
9025 * stdio-common/bug4.c (main): Likewise.
9026 * stdio-common/bug5.c (main): Likewise.
9027 * stdio-common/test-fseek.c (TESTFILE): Likewise.
9028 * stdio-common/test-popen.c (do_test): Likewise.
9029 * stdio-common/test_rdwr.c (main): Likewise.
9031 2018-06-26 Patsy Franklin <pfrankli@redhat.com>
9033 * nptl/sem_open.c [!__HAVE_64B_ATOMICS] (sem_open): Don't update pad.
9034 (sem_open): Set sem.newsem.pad to zero for valgrind.
9036 2018-06-26 Adhemerval Zanella <adhemerval.zanella@linaro.org>
9039 * NEWS: Mention fcntl64 addition.
9040 * csu/check_fds.c: Replace __fcntl_nocancel by __fcntl64_nocancel.
9041 * login/utmp_file.c: Likewise.
9042 * sysdeps/posix/fdopendir.c: Likewise.
9043 * sysdeps/posix/opendir.c: Likewise.
9044 * sysdeps/unix/pt-fcntl.c: Likewise.
9045 * include/fcntl.h (__libc_fcntl64, __fcntl64,
9046 __fcntl64_nocancel_adjusted): New prototype.
9047 (__fcntl_nocancel_adjusted): Remove prototype.
9048 * io/Makefile (routines): Add fcntl64.
9049 (CFLAGS-fcntl64.c): New rule.
9050 * io/Versions [GLIBC_2.28] (fcntl64): New symbol.
9051 [GLIBC_PRIVATE] (__libc_fcntl): Rename to __libc_fcntl64.
9052 * io/fcntl.h (fcntl64): Add prototype and redirect if
9053 __USE_FILE_OFFSET64 is defined.
9054 * io/fcntl64.c: New file.
9055 * manual/llio.text: Add a note for which commands fcntl acts a
9057 * nptl/Makefile (CFLAGS-fcntl64.c): New rule.
9058 * sysdeps/mach/hurd/fcntl.c: Alias fcntl to fcntl64 symbols.
9059 * sysdeps/mach/hurd/i386/libc.abilist [GLIBC_2.28] (fcntl, fcntl64):
9061 * sysdeps/unix/sysv/linux/fcntl.c (__libc_fcntl): Fix F_GETLK64,
9062 F_OFD_GETLK, F_SETLK64, F_SETLKW64, F_OFD_SETLK, and F_OFD_SETLKW for
9064 * sysdeps/unix/sysv/linux/fcntl64.c: New file.
9065 * sysdeps/unix/sysv/linux/fcntl_nocancel.c (__fcntl_nocancel): Rename
9066 to __fcntl64_nocancel.
9067 (__fcntl_nocancel_adjusted): Rename to __fcntl64_nocancel_adjusted.
9068 * sysdeps/unix/sysv/linux/not-cancel.h (__fcntl_nocancel): Rename
9069 to __fcntl64_nocancel.
9070 * sysdeps/generic/not-cancel.h: Likewise.
9071 * sysdeps/unix/sysv/linux/tst-ofdlocks.c: New file.
9072 * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-ofdlocks.
9073 * sysdeps/unix/sysv/linux/aarch64/libc.abilist [GLIBC_2.28]
9074 (fcntl64): New symbol.
9075 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
9076 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
9077 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
9078 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: Likewise.
9079 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist: Likewise.
9080 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist: Likewise.
9081 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
9082 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
9083 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
9084 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
9085 * sysdeps/unix/sysv/linux/arm/libc.abilist [GLIBC_2.28] (fcntl,
9087 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
9088 * sysdeps/unix/sysv/linux/i386/libc.abilis: Likewise.
9089 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
9090 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
9091 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
9092 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
9093 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: Likewise.
9094 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
9095 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
9096 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
9098 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
9100 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
9101 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
9102 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
9104 2018-06-26 Florian Weimer <fweimer@redhat.com>
9106 Run thread shutdown functions in an explicit order.
9107 * malloc/thread-freeres.c (__libc_thread_subfreeres): Remove hook
9109 (__libc_thread_freeres): Call thread shutdown functions
9111 * include/rpc/rpc.h (__rpc_thread_destroy): Add hidden attribute.
9112 * include/string.h (__strerror_thread_freeres): Declare.
9113 * malloc/arena.c (__malloc_arena_thread_freeres): Renamed from
9114 arena_thread_freeres. No longer static. Remove thread shutdown
9116 * malloc/malloc-internal.h (__malloc_arena_thread_freeres):
9118 * resolv/res-close.c (__res_thread_freeres): Renamed from
9119 res_thread_freeres. No longer static. Remove thread shutdown
9121 * resolv/resolv-internal.h (__res_thread_freeres): Declare.
9122 * resolv/resolv_conf.c (freeres): Remove incorrect section
9123 attribute and use libc_freeres_fn.
9124 * string/strerror_l.c (__strerror_thread_freeres): Renamed from
9125 strerror_thread_freeres. No longer static. Remove thread
9126 shutdown hook registration.
9127 * sysdeps/mach/strerror_l.c (__strerror_thread_freeres): Likewise.
9128 * sunrpc/rpc_thread.c (__rpc_thread_destroy): Remove thread
9129 shutdown hook registration.
9130 * Makerules (shlib.lds): Do not provide section boundary symbols
9131 for __libc_thread_subfreeres.
9132 * manual/memory.texi (Basic Allocation): Update comment.
9134 2018-06-26 Florian Weimer <fweimer@redhat.com>
9136 Remove always-defined _RPC_THREAD_SAFE_ macro.
9137 * sunrpc/Makefile (sunrpc-CPPFLAGS, CPPFLAGS, BUILD_CPPFLAGS):
9138 Do not define _RPC_THREAD_SAFE_.
9139 * include/rpc/rpc.h: Remove _RPC_THREAD_SAFE_ preprocessor
9141 * sunrpc/clnt_perr.c: Likewise.
9142 * sunrpc/clnt_raw.c: Likewise.
9143 * sunrpc/clnt_simp.c: Likewise.
9144 * sunrpc/key_call.c: Likewise.
9145 * sunrpc/rpc_common.c: Likewise.
9146 * sunrpc/rpc_main.c: Likewise.
9147 * sunrpc/rpc_thread.c: Likewise.
9148 * sunrpc/svc.c: Likewise.
9149 * sunrpc/svc_raw.c: Likewise.
9150 * sunrpc/svc_simple.c: Likewise.
9151 * sumrpc/svcauth_des.c: Likewise.
9153 2018-06-26 Florian Weimer <fweimer@redhat.com>
9155 * libio/Makefile (tests-internal): Add tst-vtables,
9156 tst-vtables-interposed.
9157 * libio/tst-vtables.c: New file.
9158 * libio/tst-vtables-common.c: Likewise.
9159 * libio/tst-vtables-interposed.c: Likewise.
9161 2018-06-26 Florian Weimer <fweimer@redhat.com>
9163 * support/support_test_main.c (support_test_main): Only call
9164 setvbuf if not disables.
9165 * support/test-driver.c (main): Check TEST_NO_SETVBUF.
9166 * support/test-driver.h (struct test_config): Add no_setvbuf member.
9168 2018-06-26 Florian Weimer <fweimer@redhat.com>
9171 * libio/vtables.c (check_stdfiles_vtables): New ELF constructor.
9173 2018-06-25 Florian Weimer <fweimer@redhat.com>
9176 * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
9177 Use struct scratch_buffer instead of extend_alloca.
9179 2018-06-25 Florian Weimer <fweimer@redhat.com>
9182 * nss/getent.c (initgroups_keys): Use dynarray instead of
9185 2018-06-25 Florian Weimer <fweimer@redhat.com>
9188 * nis/nss_nis/nis-initgroups.c (get_uid, _nss_nis_initgroups_dyn):
9189 Use struct scratch_buffer instead of extend_alloca.
9191 2018-06-25 Florian Weimer <fweimer@redhat.com>
9194 * nss/nss_compat/compat-initgroups.c (getgrent_next_nss): Fall
9195 back to malloc directly, without stack allocations.
9197 2018-06-25 Florian Weimer <fweimer@redhat.com>
9200 * nscd/aicache.c (addhstaiX): Use struct scratch_buffer instead
9203 2018-06-25 Florian Weimer <fweimer@redhat.com>
9206 * nscd/grpcache.c (addgrbyX): Use struct scratch_buffer instead
9208 * nscd/hstcache.c (addhstbyX): Likewise.
9209 * nscd/pwdcache.c (addpwbyX): Likewise.
9210 * nscd/servicescache.c (addservbyX): Likewise.
9212 2018-06-25 Florian Weimer <fweimer@redhat.com>
9215 * nscd/connections.c (read_cmdline): New function.
9216 (restart): Use it. Update comment.
9218 2018-06-25 Rafal Luzynski <digitalfreak@lingonborough.com>
9221 * localedata/locales/csb_PL (mon): Rename to...
9223 (abmon): Rename to...
9225 (mon): Add with proper genitive forms, copy from Wikipedia.
9228 2018-06-25 Rafal Luzynski <digitalfreak@lingonborough.com>
9231 * localedata/locales/csb_PL (mon): Fix typos:
9232 "łżëkwiôt" -> "łżëkwiat" (April); "lëpinc" -> "lëpińc" (July).
9233 (yesstr): Add, value is "jo".
9234 (nostr): Add, value is "nié".
9236 2018-06-22 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
9238 * sysdeps/m68k/m680x0/fpu/s_log1p.c: Set as the generic file for
9239 all log1p and significand functions on m680x0.
9240 * sysdeps/m68k/m680x0/fpu/s_log1pf.c: Include s_log1p.c instead
9241 of s_significand.c..
9242 * sysdeps/m68k/m680x0/fpu/s_log1pl.c: Likewise.
9243 * sysdeps/m68k/m680x0/fpu/s_significandf.c: Likewise.
9244 * sysdeps/m68k/m680x0/fpu/s_significandl.c: Likewise.
9245 * sysdeps/m68k/m680x0/fpu/s_significand.c: Move all the code to
9246 s_log1p.c and include it..
9248 2018-06-21 Vincent Chen <vincentc@andestech.com>
9250 * elf/elf.h (R_NDS32_NONE): New define.
9251 (R_NDS32_32_RELA): Likewise.
9252 (R_NDS32_COPY): Likewise.
9253 (R_NDS32_GLOB_DAT): Likewise.
9254 (R_NDS32_JUMP_SLOT): Likewise.
9255 (R_NDS32_RELATIVE): Likewise.
9256 (R_NDS32_TLS_TPOFF): Likewise.
9257 (R_NDS32_TLS_DESC): Likewise.
9259 2018-06-21 Mark Wielaard <mark@klomp.org>
9261 * elf/elf.h (R_BPF_MAP_FD): Removed.
9262 (R_BPF_64_64, R_BPF_64_32): New.
9264 2018-06-21 Florian Weimer <fweimer@redhat.com>
9267 * sysdeps/generic/math_private.h (default_libc_feholdsetround_ctx):
9268 Renamed from libc_feholdsetround_ctx.
9269 (default_libc_feresetround_ctx): Renamed from
9270 libc_feresetround_ctx.
9271 (default_libc_feholdsetround_noex_ctx): Renamed from
9272 libc_feholdsetround_noex_ctx.
9273 (default_libc_feresetround_noex_ctx): Renamed from
9274 libc_feresetround_noex_ctx.
9275 [!HAVE_RM_CTX] (libc_feholdsetround_ctx, libc_feresetround_ctx)
9276 (libc_feholdsetround_noex_ctx, libc_feresetround_noex_ctx): Macros
9277 forwardning to the old implementations under the new names.
9278 * sysdeps/i386/fpu/fenv_private.h [__SSE_MATH__]
9279 (libc_feholdexcept_setround_ctx, libc_fesetenv_ctx)
9280 (libc_feupdateenv_ctx, libc_feholdsetround_ctx)
9281 (libc_feresetround_ctx): Forward to default implements for i386
9282 and MATH_SET_BOTH_ROUNDING_MODES.
9283 * sysdeps/i386/Makefile [$(subdir) == math] (CFLAGS-e_gamma_r.c):
9284 Add -DMATH_SET_BOTH_ROUNDING_MODES.
9286 2018-06-20 Joseph Myers <joseph@codesourcery.com>
9288 * string/tst-cmp.c: Include <libc-diag.h>.
9289 (strncmp_max): Disable -Wstringop-overflow= around call to
9291 (strncasecmp_max): Disable -Wstringop-overflow= around call to
9294 * string/bug-strpbrk1.c: Include <libc-diag.h>.
9295 (main): Disable -Wunused-value around call to strpbrk.
9296 * string/bug-strspn1.c: Include <libc-diag.h>.
9297 (main): Disable -Wunused-value around call to strspn.
9299 2018-06-20 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
9300 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
9302 * sysdeps/ieee754/ldbl-128ibm-compat/Versions: New file.
9303 * sysdeps/ieee754/ldbl-128ibm-compat/libm-alias-float128.h: New file.
9305 2018-06-20 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
9307 * math/Makefile (libm-calls): Move s_significandF to...
9308 (gen-libm-calls): ... here.
9309 * math/s_significand_template.c: New file.
9310 * math/s_significand.c: Removed.
9311 * math/s_significandf.c: Removed.
9312 * math/s_significandl.c: Removed.
9313 * sysdeps/ieee754/ldbl-opt/s_significand.c: Removed.
9314 * sysdeps/ieee754/ldbl-opt/s_significandl.c: Removed.
9316 * math/e_exp2_template.c (declare_mgen_finite_alias,
9317 declare_mgen_finite_alias_s, declare_mgen_finite_alias_x): Move to...
9318 * sysdeps/generic/math-type-macros.h (declare_mgen_finite_alias,
9319 declare_mgen_finite_alias_s, declare_mgen_finite_alias_x): ... here.
9321 2018-06-20 Florian Weimer <fweimer@redhat.com>
9323 * libio/libioP.h (IO_validate_vtable): Avoid ptrdiff_t overflow.
9325 2018-06-19 Joseph Myers <joseph@codesourcery.com>
9328 * stdio-common/vfscanf.c (_IO_vfscanf_internal): Pass sign of
9329 floating-point number to strtod functions rather than possibly
9330 negating result of those functions.
9331 * stdio-common/tst-scanf-round.c: New file.
9332 * stdio-common/Makefile (tests): Add tst-scanf-round.
9333 ($(objpfx)tst-scanf-round): Depend on $(libm).
9335 2018-06-18 Samuel Thibault <samuel.thibault@ens-lyon.org>
9337 * sysdeps/mach/hurd/localplt.data: Move to...
9338 * sysdeps/mach/hurd/i386/localplt.data: new file. Add + REL
9339 R_386_GLOB_DAT like on Linux i386.
9341 2018-06-18 Joseph Myers <joseph@codesourcery.com>
9343 * sysdeps/unix/sysv/linux/alpha/bits/shm.h [__USE_MISC]
9344 (SHM_STAT_ANY): New macro.
9345 * sysdeps/unix/sysv/linux/arm/bits/shm.h [__USE_MISC]
9346 (SHM_STAT_ANY): Likewise.
9347 * sysdeps/unix/sysv/linux/bits/shm.h [__USE_MISC]
9348 (SHM_STAT_ANY): Likewise.
9349 * sysdeps/unix/sysv/linux/generic/bits/shm.h [__USE_MISC]
9350 (SHM_STAT_ANY): Likewise.
9351 * sysdeps/unix/sysv/linux/hppa/bits/shm.h [__USE_MISC]
9352 (SHM_STAT_ANY): Likewise.
9353 * sysdeps/unix/sysv/linux/ia64/bits/shm.h [__USE_MISC]
9354 (SHM_STAT_ANY): Likewise.
9355 * sysdeps/unix/sysv/linux/mips/bits/shm.h [__USE_MISC]
9356 (SHM_STAT_ANY): Likewise.
9357 * sysdeps/unix/sysv/linux/powerpc/bits/shm.h [__USE_MISC]
9358 (SHM_STAT_ANY): Likewise.
9359 * sysdeps/unix/sysv/linux/s390/bits/shm.h [__USE_MISC]
9360 (SHM_STAT_ANY): Likewise.
9361 * sysdeps/unix/sysv/linux/sh/bits/shm.h [__USE_MISC]
9362 (SHM_STAT_ANY): Likewise.
9363 * sysdeps/unix/sysv/linux/sparc/bits/shm.h [__USE_MISC]
9364 (SHM_STAT_ANY): Likewise.
9365 * sysdeps/unix/sysv/linux/x86/bits/shm.h [__USE_MISC]
9366 (SHM_STAT_ANY): Likewise.
9368 * sysdeps/unix/sysv/linux/alpha/bits/sem.h [__USE_MISC]
9369 (SEM_STAT_ANY): New macro.
9370 * sysdeps/unix/sysv/linux/bits/sem.h [__USE_MISC]
9371 (SEM_STAT_ANY): Likewise.
9372 * sysdeps/unix/sysv/linux/generic/bits/sem.h [__USE_MISC]
9373 (SEM_STAT_ANY): Likewise.
9374 * sysdeps/unix/sysv/linux/hppa/bits/sem.h [__USE_MISC]
9375 (SEM_STAT_ANY): Likewise.
9376 * sysdeps/unix/sysv/linux/ia64/bits/sem.h [__USE_MISC]
9377 (SEM_STAT_ANY): Likewise.
9378 * sysdeps/unix/sysv/linux/mips/bits/sem.h [__USE_MISC]
9379 (SEM_STAT_ANY): Likewise.
9380 * sysdeps/unix/sysv/linux/powerpc/bits/sem.h [__USE_MISC]
9381 (SEM_STAT_ANY): Likewise.
9382 * sysdeps/unix/sysv/linux/s390/bits/sem.h [__USE_MISC]
9383 (SEM_STAT_ANY): Likewise.
9384 * sysdeps/unix/sysv/linux/sparc/bits/sem.h [__USE_MISC]
9385 (SEM_STAT_ANY): Likewise.
9386 * sysdeps/unix/sysv/linux/x86/bits/sem.h [__USE_MISC]
9387 (SEM_STAT_ANY): Likewise.
9389 * sysdeps/unix/sysv/linux/alpha/bits/msq.h [__USE_MISC]
9390 (MSG_STAT_ANY): New macro.
9391 * sysdeps/unix/sysv/linux/bits/msq.h [__USE_MISC]
9392 (MSG_STAT_ANY): Likewise.
9393 * sysdeps/unix/sysv/linux/generic/bits/msq.h [__USE_MISC]
9394 (MSG_STAT_ANY): Likewise.
9395 * sysdeps/unix/sysv/linux/hppa/bits/msq.h [__USE_MISC]
9396 (MSG_STAT_ANY): Likewise.
9397 * sysdeps/unix/sysv/linux/ia64/bits/msq.h [__USE_MISC]
9398 (MSG_STAT_ANY): Likewise.
9399 * sysdeps/unix/sysv/linux/mips/bits/msq.h [__USE_MISC]
9400 (MSG_STAT_ANY): Likewise.
9401 * sysdeps/unix/sysv/linux/powerpc/bits/msq.h [__USE_MISC]
9402 (MSG_STAT_ANY): Likewise.
9403 * sysdeps/unix/sysv/linux/s390/bits/msq.h [__USE_MISC]
9404 (MSG_STAT_ANY): Likewise.
9405 * sysdeps/unix/sysv/linux/sparc/bits/msq.h [__USE_MISC]
9406 (MSG_STAT_ANY): Likewise.
9407 * sysdeps/unix/sysv/linux/x86/bits/msq.h [__USE_MISC]
9408 (MSG_STAT_ANY): Likewise.
9410 * sysdeps/unix/sysv/linux/hppa/bits/mman.h [__USE_MISC]
9411 (MAP_TYPE): Change value to 0x2b.
9413 2018-06-18 Florian Weimer <fweimer@redhat.com>
9416 * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): Create Netlink
9417 socket with SOCK_CLOEXEC.
9419 2018-06-18 Joseph Myers <joseph@codesourcery.com>
9422 * sysdeps/powerpc/powerpc64/le/Makefile
9423 (CFLAGS-tst-strtod-nan-sign.c): Add -mfloat128.
9424 (CFLAGS-tst-wcstod-nan-sign.c): Likewise.
9425 (gnulib-tests): Also add $(f128-loader-link) for
9426 tst-strtod-nan-sign abd tst-wcstod-nan-sign.
9428 2018-06-15 Samuel Thibault <samuel.thibault@ens-lyon.org>
9430 * include/sys/sendfile.h (__sendfile64): Declare hidden prototype.
9431 * sysdeps/mach/hurd/sendfile.c (sendfile): Call __sendfile64 instead
9433 * sysdeps/mach/hurd/sendfile64.c (sendfile64): Rename to __sendfile64.
9434 (sendfile64): New strong alias.
9435 * sysdeps/mach/hurd/lseek.c: Include <errno.h>.
9436 * sysdeps/mach/hurd/lseek.c (__libc_lseek): Check that the value
9437 returned by __lseek64 can fit off_t, return EOVERFLOW otherwise.
9438 * sysdeps/htl/pthreadP.h (___pthread_get_cleanup_stack): Add hidden
9440 * htl/pt-join.c (__pthread_get_cleanup_stack): Define to
9441 ___pthread_get_cleanup_stack.
9442 * sysdeps/mach/hurd/localplt.data (ld.so): Make ref to __open optional.
9443 * sysdeps/mach/include/mach-shortcuts-hidden.h: New file.
9444 * mach/shortcut.awk: Make syscall stubs include
9445 <mach-shortcuts-hidden.h> and add hidden definition.
9446 * sysdeps/mach/include/mach.h: Include <mach-shortcuts-hidden.h>.
9447 (__mach_msg): Add hidden prototype.
9448 * mach/msg.c: Include <mach.h>.
9449 (__mach_msg): Add hidden definition.
9450 * mach/Makefile ($(mach-syscalls:%=$(objpfx))): Add hidden definition.
9451 * sysdeps/mach/include/mach/mach_traps.h (__mach_reply_port,
9452 __mach_thread_self, __mach_task_self, __mach_host_self, __swtch,
9453 __swtch_pri, __thread_switch, __evc_wait): Add hidden prototypes.
9454 * sysdeps/mach/hurd/localplt.data (siglongjmp, longjmp,
9455 __libc_lseek64, _IO_funlockfile): Whitelist PLT references.
9456 * sysdeps/hurd/include/hurd/signal.h (_hurd_self_sigstate): Add hidden
9457 prototype and definition.
9458 * sysdeps/mach/hurd/i386/____longjmp_chk.S (____longjmp_chk): Use
9459 hidden target for _hurd_self_sigstate.
9461 2018-06-15 Joseph Myers <joseph@codesourcery.com>
9464 * stdlib/tst-strtod-nan-sign-main.c: New file.
9465 * stdlib/tst-strtod-nan-sign.c: Likewise.
9466 * wcsmbs/tst-wcstod-nan-sign.c: Likewise.
9467 * stdlib/Makefile (tests): Add tst-strtod-nan-sign.
9468 ($(objpfx)tst-strtod-nan-sign): Depend on $(libm).
9469 * wcsmbs/Makefile (tests) Add tst-wcstod-nan-sign.
9470 ($(objpfx)tst-wcstod-nan-sign): Depend on $(libm).
9472 2018-06-15 Herman ten Brugge <hermantenbrugge@home.nl>
9475 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Return NaN of
9478 2018-06-14 Florian Weimer <fweimer@redhat.com>
9481 * localedata/charmaps/IBM273: Map codepoint 0xbc to U+00AF, so
9482 that the result stays within the ISO-8859-1 range.
9483 * iconvdata/ibm273.c (HAS_HOLES): Define as 0 because all 256
9484 characters are defined in IBM273.
9486 2018-06-14 Samuel Thibault <samuel.thibault@ens-lyon.org>
9488 * sysdeps/mach/include/mach/mach_traps.h (__mach_thread_self,
9489 __mach_task_self): Remove attribute_hidden.
9491 2018-06-14 Joseph Myers <joseph@codesourcery.com>
9493 * string/tester.c (test_strncat) [__GNUC_PREREQ (7, 0)]: Also
9494 ignore -Wrestrict for one test.
9496 2018-06-14 Steve Ellcey <sellcey@caviumnetworks.com>
9497 Szabolcs Nagy <szabolcs.nagy@arm.com>
9499 * sysdeps/unix/sysv/linux/aarch64/gettimeofday.c: New file.
9501 2018-06-14 Florian Weimer <fweimer@redhat.com>
9503 * scripts/update-abilist.sh: Accept empty list of files to patch.
9505 2018-06-13 Samuel Thibault <samuel.thibault@ens-lyon.org>
9507 * sysdeps/mach/hurd/i386/Makefile (test-xfail-check-abi-libhurduser,
9508 test-xfail-check-abi-libmachuser): Add.
9509 * sysdeps/mach/hurd/localplt.data (ld.so): Add __open64, rename
9510 __libc_read and __libc_write to __read and __write.
9511 * sysdeps/hurd/include/hurd/port.h: New file.
9512 * mach/mach/mach_traps.h (__mach_reply_port, __mach_thread_self,
9513 __mach_task_self, __mach_host_self, __swtch, __swtch_pri,
9514 __thread_switch, __evc_wait): Move declarations to...
9515 * sysdeps/mach/include/mach/mach_traps.h: ... new file, and add
9517 * sysdeps/mach/hurd/i386/____longjmp_chk.S (____longjmp_chk): Do not
9518 use PLT to call _hurd_self_sigstate.
9520 2018-06-13 Joseph Myers <joseph@codesourcery.com>
9523 * stdlib/strtod_l.c (round_and_return): Handle an exponent of
9524 MAX_EXP as overflowing.
9525 * stdlib/gen-tst-strtod-round.c (string_to_fp): Clear MPFR
9527 (round_str): Output also whether result overflows in each rounding
9529 * stdlib/tst-strtod-round-data: Add more tests.
9530 * stdlib/tst-strtod-round-data.h: Regenerated.
9531 * stdlib/tst-strtod-round-skeleton.c (_XNTRY): Update comment.
9532 (TEST): Handle extra arguments for overflow flags.
9533 (struct test_overflow): New type.
9534 [!FE_OVERFLOW] (FE_OVERFLOW): Define to 0.
9535 (GEN_ONE_TEST): Clear all exceptions. Test overflow flag.
9536 (test_in_one_mode): Take argument with overflow information.
9537 (do_test): Update calls to test_in_one_mode.
9539 2018-06-12 Carlos O'Donell <carlos@redhat.com>
9541 * elf/dl-load (_dl_dst_substitute): Correct comment.
9542 (_dl_dst_count): Likewise.
9544 * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock): Call
9545 lll_futex_timed_wait.
9547 2018-06-12 Joseph Myers <joseph@codesourcery.com>
9550 * math/bits/mathcalls.h [__USE_ISOC99] (nan): Do not use __const__
9552 * math/test-nan-const.c: New file.
9553 * math/Makefile (tests): Add test-nan-const.
9554 (CFLAGS-test-nan-const.c): New variable.
9556 2018-06-12 H.J. Lu <hongjiu.lu@intel.com>
9558 * benchtests/scripts/compare_strings.py (process_results): Add
9559 funcs argument. Compare only functions which are selected.
9560 (main): Check if base function is among selected functions.
9561 Pass selected functions to process_results.
9562 (__main__): Add -f/--functions argument.
9564 2018-06-12 Minfeng Kang <minfeng.kang@hxt-semitech.com>
9565 Hongbo Zhang <hongbo.zhang@linaro.org>
9567 * sysdeps/aarch64/multiarch/memcpy.c (libc_ifunc): reuse
9568 __memcpy_falkor for phecda core.
9569 * sysdeps/aarch64/multiarch/memmove.c (libc_ifunc): reuse
9570 __memmove_falkor for phecda core.
9571 * sysdeps/aarch64/multiarch/memset.c (libc_ifunc): reuse
9572 __memset_falkor for phecda core.
9573 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c: add MIDR entry
9575 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h (IS_PHECDA): add
9576 macro to identify phecda core.
9578 2018-06-12 Carlos O'Donell <carlos@redhat.com>
9579 Andreas Schwab <schwab@suse.de>
9580 Dmitry V. Levin <ldv@altlinux.org>
9581 Florian Weimer <fweimer@redhat.com>
9588 * elf/dl-dst.h: Remove DL_DST_COUNT.
9589 * elf/dl-deps.c (expand_dst): Call _dl_dst_count.
9590 * elf/dl-load.c (is_trusted_path_normalize): Don't handle colons.
9591 (is_dst): Comment. Support ELF gABI.
9592 (_dl_dst_count): Comment. Simplify and count DSTs.
9593 (_dl_dst_substitute): Comment. Support __libc_enable_secure handling.
9594 (expand_dybamic_string_token): Comment. Call _dl_dst_count. Rename
9597 2018-06-12 Zack Weinberg <zackw@panix.com>
9599 * elf/dl-load.c, elf/dl-misc.c, elf/dl-profile.c, elf/rtld.c
9600 * sysdeps/unix/sysv/linux/dl-sysdep.c
9601 Include not-cancel.h. Use __close_nocancel instead of __close,
9602 __open64_nocancel instead of __open, __read_nocancel instead of
9603 __libc_read, and __write_nocancel instead of __libc_write.
9605 * csu/check_fds.c (check_one_fd)
9606 * sysdeps/posix/fdopendir.c (__fdopendir)
9607 * sysdeps/posix/opendir.c (__alloc_dir): Use __fcntl_nocancel
9608 instead of __fcntl and/or __libc_fcntl.
9610 * sysdeps/unix/sysv/linux/pthread_setname.c (pthread_setname_np)
9611 * sysdeps/unix/sysv/linux/pthread_getname.c (pthread_getname_np)
9612 * sysdeps/unix/sysv/linux/i386/smp.h (is_smp_system):
9613 Use __open64_nocancel instead of __open_nocancel.
9615 * sysdeps/unix/sysv/linux/not-cancel.h: Move all of the
9616 hidden_proto declarations to the end and issue them if either
9617 IS_IN(libc) or IS_IN(rtld).
9618 * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
9619 Add close_nocancel, fcntl_nocancel, nanosleep_nocancel,
9620 open_nocancel, open64_nocancel, openat_nocancel, pause_nocancel,
9621 read_nocancel, waitpid_nocancel, write_nocancel.
9623 * io/Versions [GLIBC_PRIVATE]: Add __libc_fcntl,
9624 __fcntl_nocancel, __open64_nocancel, __write_nocancel.
9625 * posix/Versions: Add __nanosleep_nocancel, __pause_nocancel.
9627 * nptl/pt-fcntl.c: New file.
9628 * nptl/Makefile (pthread-compat-wrappers): Remove fcntl.
9629 (libpthread-routines): Add pt-fcntl.
9630 * include/fcntl.h (__fcntl_nocancel_adjusted): New function.
9631 (__libc_fcntl): Remove attribute_hidden.
9632 * sysdeps/unix/sysv/linux/fcntl.c (__libc_fcntl): Call
9633 __fcntl_nocancel_adjusted, not fcntl_common.
9634 (__fcntl_nocancel): Move to new file fcntl_nocancel.c.
9635 (fcntl_common): Rename to __fcntl_nocancel_adjusted; also move
9636 to fcntl_nocancel.c.
9637 * sysdeps/unix/sysv/linux/fcntl_nocancel.c: New file.
9638 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c: Remove file.
9639 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
9640 Define FCNTL_ADJUST_CMD here, as a self-contained macro.
9642 * sysdeps/unix/sysv/linux/close.c: Move __close_nocancel to...
9643 * sysdeps/unix/sysv/linux/close_nocancel.c: ...this new file.
9644 * sysdeps/unix/sysv/linux/nanosleep.c: Move __nanosleep_nocancel to...
9645 * sysdeps/unix/sysv/linux/nanosleep_nocancel.c: ...this new file.
9646 * sysdeps/unix/sysv/linux/open.c: Move __open_nocancel to...
9647 * sysdeps/unix/sysv/linux/open_nocancel.c: ...this new file.
9648 * sysdeps/unix/sysv/linux/open64.c: Move __open64_nocancel to...
9649 * sysdeps/unix/sysv/linux/open64_nocancel.c: ...this new file.
9650 * sysdeps/unix/sysv/linux/openat.c: Move __openat_nocancel to...
9651 * sysdeps/unix/sysv/linux/openat_nocancel.c: ...this new file.
9652 * sysdeps/unix/sysv/linux/openat64.c: Move __openat64_nocancel to...
9653 * sysdeps/unix/sysv/linux/openat64_nocancel.c: ...this new file.
9654 * sysdeps/unix/sysv/linux/pause.c: Move __pause_nocancel to...
9655 * sysdeps/unix/sysv/linux/pause_nocancel.c: ...this new file.
9656 * sysdeps/unix/sysv/linux/read.c: Move __read_nocancel to...
9657 * sysdeps/unix/sysv/linux/read_nocancel.c: ...this new file.
9658 * sysdeps/unix/sysv/linux/waitpid.c: Move __waitpid_nocancel to...
9659 * sysdeps/unix/sysv/linux/waitpid_nocancel.c: ...this new file.
9660 * sysdeps/unix/sysv/linux/write.c: Move __write_nocancel to...
9661 * sysdeps/unix/sysv/linux/write_nocancel.c: ...this new file.
9663 * sysdeps/unix/sysv/linux/nios2/Makefile: Don't override
9664 libpthread-routines.
9665 * sysdeps/unix/sysv/linux/nios2/pt-vfork.S: New file which
9668 * sysdeps/mach/hurd/dl-sysdep.c: Define __read instead of
9669 __libc_read, and __write instead of __libc_write. Define
9670 __open64 in addition to __open.
9672 2018-06-12 H.J. Lu <hongjiu.lu@intel.com>
9676 * sysdeps/i386/nptl/tls.h (tcbhead_t): Change __private_tm[4]
9677 to _private_tm[3] and add __glibc_reserved2.
9678 Add _Static_assert of offset of __private_ss == 0x30.
9679 * sysdeps/x86_64/nptl/tls.h: Add _Static_assert of offset of
9680 __private_ss == 0x40 for ILP32 and == 0x70 for LP64.
9682 2018-06-12 Florian Weimer <fweimer@redhat.com>
9684 x86: Make strncmp usable from rtld.
9685 * sysdeps/i386/i686/multiarch/strncmp-c.c: Only rename strncmp to
9686 __strncmp_ia32 if in libc (and not in rtld).
9687 * sysdeps/x86_64/multiarch/strncmp-sse2.S: Rename strcmp to
9688 strncmp if not in libc (and not to __strncmp_sse2).
9690 2018-06-12 Rafal Luzynski <digitalfreak@lingonborough.com>
9693 * localedata/locales/gd_GB (mon): Rename to...
9695 (mon): Import from CLDR (genitive case).
9696 * localedata/locales/hsb_DE (mon): Rename to...
9698 (mon): Import from CLDR (genitive case).
9699 * localedata/locales/wa_BE (mon): Rename to...
9701 (mon): Add, fill with the proper genitive forms, but CLDR data
9702 is incomplete; completed according to the comments in this file.
9703 (d_t_fmt): Do not use "di" before the month name, no longer needed.
9705 * localedata/locales/wa_BE (country_name): Reword
9706 "Beljike" -> "Beldjike".
9708 2018-06-11 Joseph Myers <joseph@codesourcery.com>
9711 * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Start by handling all
9712 cases of non-finite arguments.
9713 * math/libm-test-fma.inc (fma_test_data): Add more tests.
9715 2018-06-10 John David Anglin <danglin@gcc.gnu.org>
9718 * sysdeps/unix/sysv/linux/hppa/Makefile: xfail check-execstack.
9720 2018-06-08 Adhemerval Zanella <adhemerval.zanella@linaro.org>
9723 * include/unistd.h (__execvpex): New prototype.
9724 * posix/Makefile (tests): Add tst-spawn4.
9725 (tests-internal): Add tst-spawn4-compat.
9726 * posix/execvpe.c (__execvpe_common, __execvpex): New functions.
9727 * posix/tst-spawn4-compat.c: New file.
9728 * posix/tst-spawn4.c: Likewise.
9729 * sysdeps/unix/sysv/linux/spawni.c (__spawni): Do not interpret invalid
9730 binaries as shell scripts.
9731 * sysdeps/posix/spawni.c (__spawni): Likewise.
9733 2018-06-08 H.J. Lu <hongjiu.lu@intel.com>
9736 * elf/Makefile (tests-special): Add $(objpfx)check-initfini.out.
9737 ($(all-built-dso:=.dynsym): New target.
9738 (common-generated): Add $(all-built-dso:$(common-objpfx)%=%.dynsym).
9739 ($(objpfx)check-initfini.out): New target.
9740 (generated): Add check-initfini.out.
9741 * scripts/check-initfini.awk: New file.
9742 * sysdeps/aarch64/crti.S (_init): Mark as hidden.
9744 * sysdeps/alpha/crti.S (_init): Mark as hidden.
9746 * sysdeps/arm/crti.S (_init): Mark as hidden.
9748 * sysdeps/hppa/crti.S (_init): Mark as hidden.
9750 * sysdeps/i386/crti.S (_init): Mark as hidden.
9752 * sysdeps/ia64/crti.S (_init): Mark as hidden.
9754 * sysdeps/m68k/crti.S (_init): Mark as hidden.
9756 * sysdeps/microblaze/crti.S (_init): Mark as hidden.
9758 * sysdeps/mips/mips32/crti.S (_init): Mark as hidden.
9760 * sysdeps/mips/mips64/n32/crti.S (_init): Mark as hidden.
9762 * sysdeps/mips/mips64/n64/crti.S (_init): Mark as hidden.
9764 * sysdeps/nios2/crti.S (_init): Mark as hidden.
9766 * sysdeps/powerpc/powerpc32/crti.S (_init): Mark as hidden.
9768 * sysdeps/powerpc/powerpc64/crti.S (_init): Mark as hidden.
9770 * sysdeps/s390/s390-32/crti.S (_init): Mark as hidden.
9772 * sysdeps/s390/s390-64/crti.S (_init): Mark as hidden.
9774 * sysdeps/sh/crti.S (_init): Mark as hidden.
9776 * sysdeps/sparc/crti.S (_init): Mark as hidden.
9778 * sysdeps/x86_64/crti.S (_init): Mark as hidden.
9781 2018-06-06 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
9783 * sysdeps/powerpc/powerpc64/le/fpu/e_sqrtf128.c
9784 [__HAVE_FLOAT128_UNLIKE_LDBL] (TFtype, TF): Restrict TFtype
9785 and TF redirection to KFtype and KF only when the default
9786 long double type is not the IEEE 128-bit floating point type.
9788 2018-06-05 Joseph Myers <joseph@codesourcery.com>
9790 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_DIT): New
9792 (HWCAP_USCAT): Likewise.
9793 (HWCAP_ILRCPC): Likewise.
9794 (HWCAP_FLAGM): Likewise.
9795 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c (_DL_HWCAP_COUNT):
9797 (_dl_aarch64_cap_flags): Add new flag names.
9799 * sysdeps/unix/sysv/linux/aarch64/bits/mman.h [__USE_MISC]
9800 (MAP_FIXED_NOREPLACE): New macro.
9801 * sysdeps/unix/sysv/linux/alpha/bits/mman.h [__USE_MISC]
9802 (MAP_FIXED_NOREPLACE): Likewise.
9803 * sysdeps/unix/sysv/linux/arm/bits/mman.h [__USE_MISC]
9804 (MAP_FIXED_NOREPLACE): Likewise.
9805 * sysdeps/unix/sysv/linux/hppa/bits/mman.h [__USE_MISC]
9806 (MAP_FIXED_NOREPLACE): Likewise.
9807 * sysdeps/unix/sysv/linux/ia64/bits/mman.h [__USE_MISC]
9808 (MAP_FIXED_NOREPLACE): Likewise.
9809 * sysdeps/unix/sysv/linux/m68k/bits/mman.h [__USE_MISC]
9810 (MAP_FIXED_NOREPLACE): Likewise.
9811 * sysdeps/unix/sysv/linux/microblaze/bits/mman.h [__USE_MISC]
9812 (MAP_FIXED_NOREPLACE): Likewise.
9813 * sysdeps/unix/sysv/linux/mips/bits/mman.h [__USE_MISC]
9814 (MAP_FIXED_NOREPLACE): Likewise.
9815 * sysdeps/unix/sysv/linux/nios2/bits/mman.h [__USE_MISC]
9816 (MAP_FIXED_NOREPLACE): Likewise.
9817 * sysdeps/unix/sysv/linux/powerpc/bits/mman.h [__USE_MISC]
9818 (MAP_FIXED_NOREPLACE): Likewise.
9819 * sysdeps/unix/sysv/linux/riscv/bits/mman.h [__USE_MISC]
9820 (MAP_FIXED_NOREPLACE): Likewise.
9821 * sysdeps/unix/sysv/linux/s390/bits/mman.h [__USE_MISC]
9822 (MAP_FIXED_NOREPLACE): Likewise.
9823 * sysdeps/unix/sysv/linux/sh/bits/mman.h [__USE_MISC]
9824 (MAP_FIXED_NOREPLACE): Likewise.
9825 * sysdeps/unix/sysv/linux/sparc/bits/mman.h [__USE_MISC]
9826 (MAP_FIXED_NOREPLACE): Likewise.
9827 * sysdeps/unix/sysv/linux/x86/bits/mman.h [__USE_MISC]
9828 (MAP_FIXED_NOREPLACE): Likewise.
9830 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
9833 2018-06-04 Joseph Myers <joseph@codesourcery.com>
9835 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
9838 2018-06-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
9840 * bits/shm.h (struct shmid_ds): Make shm_segsz field size_t instead of
9842 * sysdeps/gnu/bits/shm.h (struct shmid_ds): Likewise.
9844 2018-06-01 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
9846 * benchtests/scripts/compare_string.py: (process_results) Catch
9847 exception in non-existent base_func and catch exception in
9848 non-existent attribute.
9849 (parse_file) Catch exception if input file does not exist.
9851 2018-06-01 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
9853 * benchtests/scripts/compare_string.py: Add --no-diff and --no-header
9854 options to avoid diff calculation and omit header, respectively.
9855 (main): process --no-diff and --no-header
9857 2018-06-01 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
9858 H.J. Lu <hongjiu.lu@intel.com>
9860 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
9861 strcmp-avx2, strncmp-avx2, wcscmp-avx2, wcscmp-sse2, wcsncmp-avx2 and
9863 * sysdeps/x86_64/multiarch/ifunc-impl-list.c
9864 (__libc_ifunc_impl_list): Add tests for __strcmp_avx2,
9865 __strncmp_avx2, __wcscmp_avx2, __wcsncmp_avx2, __wcscmp_sse2
9867 * sysdeps/x86_64/multiarch/strcmp.c (OPTIMIZE (avx2)):
9868 (IFUNC_SELECTOR): Return OPTIMIZE (avx2) on AVX 2 machines if
9869 AVX unaligned load is fast and vzeroupper is preferred.
9870 * sysdeps/x86_64/multiarch/strncmp.c: Likewise.
9871 * sysdeps/x86_64/multiarch/strcmp-avx2.S: New file.
9872 * sysdeps/x86_64/multiarch/strncmp-avx2.S: Likewise.
9873 * sysdeps/x86_64/multiarch/wcscmp-avx2.S: Likewise.
9874 * sysdeps/x86_64/multiarch/wcscmp-sse2.S: Likewise.
9875 * sysdeps/x86_64/multiarch/wcscmp.c: Likewise.
9876 * sysdeps/x86_64/multiarch/wcsncmp-avx2.S: Likewise.
9877 * sysdeps/x86_64/multiarch/wcsncmp-sse2.c: Likewise.
9878 * sysdeps/x86_64/multiarch/wcsncmp.c: Likewise.
9879 * sysdeps/x86_64/wcscmp.S (__wcscmp): Add alias only if __wcscmp
9882 2018-06-01 Florian Weimer <fweimer@redhat.com>
9884 * sysdeps/i386/fpu/libm-test-ulps: Update with results from
9885 configuring with --disable-multi-arch, building with
9886 “-march=x86-64 -mtune=generic -mfpmath=sse” and running on a
9889 2018-06-01 Florian Weimer <fweimer@redhat.com>
9891 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Update with
9892 results from building with “-march=x86-64 -mtune=generic
9893 -mfpmath=sse” and running on a Haswell-era CPU.
9895 2018-06-01 Joseph Myers <joseph@codesourcery.com>
9898 * soft-fp/sqrttf2.c: Remove file.
9899 * soft-fp/sqrtdf2.c: Move to ....
9900 * sysdeps/powerpc/nofpu/sqrtdf2.c: ... here. Include
9902 (__sqrtdf2): Make conditional on
9903 [SHLIB_COMPAT (libc, GLIBC_2_3_2, GLIBC_2_28)]. Define as compat
9905 * soft-fp/sqrtsf2.c: Move to ....
9906 * sysdeps/powerpc/nofpu/sqrtsf2.c: ... here. Include
9908 (__sqrtsf2): Make conditional on
9909 [SHLIB_COMPAT (libc, GLIBC_2_3_2, GLIBC_2_28)]. Define as compat
9911 * soft-fp/Makefile (gcc-single-routines): Remove sqrtsf2.
9912 (gcc-double-routines): Remove sqrtdf2.
9913 (gcc-quad-routines): Remove sqrttf2.
9914 * sysdeps/nios2/Makefile [$(subdir) = soft-fp] (sysdep_routines):
9915 Do not filter out sqrtsf2 and sqrtdf2.
9916 * sysdeps/powerpc/nofpu/Makefile [$(subdir) = soft-fp]
9917 (sysdep_routines): Add sqrtsf2 and sqrtdf2.
9919 2018-06-01 Florian Weimer <fweimer@redhat.com>
9921 * sysdeps/generic/libcidn.abilist: Remove file.
9923 2018-06-01 Florian Weimer <fweimer@redhat.com>
9926 * libio/strfile.h (struct _IO_str_fields): Rename members to
9927 discourage their use and add comment.
9928 (_IO_STR_DYNAMIC): Remove unused macro.
9929 * libio/strops.c (_IO_str_init_static_internal): Do not use
9930 callback pointers. Call malloc and free.
9931 (_IO_str_overflow): Do not use callback pointers. Call malloc
9933 (enlarge_userbuf): Likewise.
9934 (_IO_str_finish): Call free.
9935 * libio/wstrops.c (_IO_wstr_init_static): Initialize
9936 _allocate_buffer_unused.
9937 (_IO_wstr_overflow): Do not use callback pointers. Call malloc
9939 (enlarge_userbuf): Likewise.
9940 (_IO_wstr_finish): Call free.
9941 * debug/vasprintf_chk.c (__vasprintf_chk): Initialize
9942 _allocate_buffer_unused, _free_buffer_unused.
9943 * libio/memstream.c (__open_memstream): Likewise.
9944 * libio/vasprintf.c (_IO_vasprintf): Likewise.
9945 * libio/wmemstream.c (open_wmemstream): Likewise.
9947 2018-05-30 Paul Pluzhnikov <ppluzhnikov@google.com>
9949 * sysdeps/x86_64/fpu/libm-test-ulps (log_vlen8_avx2): Update for
9952 2018-05-30 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
9954 * sysdeps/powerpc/powerpc64/le/fpu/multiarch/Makefile: New file to
9955 add w_sqrtf128-power9 and w_sqrtf128-ppc64le to libm-sysdep_routines.
9956 * sysdeps/powerpc/powerpc64/le/fpu/multiarch/w_sqrtf128-power9.c:
9958 * sysdeps/powerpc/powerpc64/le/fpu/multiarch/w_sqrtf128-ppc64le.c:
9960 * sysdeps/powerpc/powerpc64/le/fpu/multiarch/w_sqrtf128.c: Likewise.
9962 2018-05-29 Florian Weimer <fweimer@redhat.com>
9964 * support/Makefile (libsupport-routines): Add
9965 xpthread_barrierattr_destroy, xpthread_barrierattr_init,
9966 xpthread_barrierattr_setpshared.
9967 * support/xpthread_barrierattr_destroy.c: New file.
9968 * support/xpthread_barrierattr_init.c: Likewise.
9969 * support/xpthread_barrierattr_setpshared.c: Likewise.
9971 2018-05-29 H.J. Lu <hongjiu.lu@intel.com>
9974 * elf/dl-reloc-static-pie.c (_dl_relocate_static_pie): Initialize
9975 _r_debug and update DT_DEBUG for debugger.
9977 2018-05-29 Florian Weimer <fweimer@redhat.com>
9979 * stdlib/Makefile (tst-strtod1i.out): Depend on generated locales.
9980 (tst-strtod5i.out): Likewise.
9982 2018-05-25 Joseph Myers <joseph@codesourcery.com>
9984 * sysdeps/sparc/sparc64/Implies: Remove sparc/sparc64/soft-fp.
9985 * sysdeps/sparc/sparc64/Makefile [$(subdir) = soft-fp]
9986 (sparc64-quad-routines): New variable. Moved from ....
9987 [$(subdir) = soft-fp] (sysdep_routines): Add
9988 $(sparc64-quad-routines). Moved from ....
9989 [$(subdir) = math] (CPPFLAGS): Add -I../soft-fp/. Moved from ....
9990 * sysdeps/sparc/sparc64/soft-fp/Makefile: ... here. Remove file.
9991 * sysdeps/sparc/sparc64/Versions (libc): Add GLIBC_2.2 symbols
9993 * sysdeps/sparc/sparc64/soft-fp/Versions: ... here. Remove file.
9994 * sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c: Remove file.
9995 * sysdeps/sparc/sparc64/soft-fp/qp_add.c: Move to ....
9996 * sysdeps/sparc/sparc64/qp_add.c: ... here.
9997 * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c: Move to ....
9998 * sysdeps/sparc/sparc64/qp_cmp.c: ... here.
9999 * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c: Move to ....
10000 * sysdeps/sparc/sparc64/qp_cmpe.c: ... here.
10001 * sysdeps/sparc/sparc64/soft-fp/qp_div.c: Move to ....
10002 * sysdeps/sparc/sparc64/qp_div.c: ... here.
10003 * sysdeps/sparc/sparc64/soft-fp/qp_dtoq.c: Move to ....
10004 * sysdeps/sparc/sparc64/qp_dtoq.c: ... here.
10005 * sysdeps/sparc/sparc64/soft-fp/qp_feq.c: Move to ....
10006 * sysdeps/sparc/sparc64/qp_feq.c: ... here.
10007 * sysdeps/sparc/sparc64/soft-fp/qp_fge.c: Move to ....
10008 * sysdeps/sparc/sparc64/qp_fge.c: ... here.
10009 * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c: Move to ....
10010 * sysdeps/sparc/sparc64/qp_fgt.c: ... here.
10011 * sysdeps/sparc/sparc64/soft-fp/qp_fle.c: Move to ....
10012 * sysdeps/sparc/sparc64/qp_fle.c: ... here.
10013 * sysdeps/sparc/sparc64/soft-fp/qp_flt.c: Move to ....
10014 * sysdeps/sparc/sparc64/qp_flt.c: ... here.
10015 * sysdeps/sparc/sparc64/soft-fp/qp_fne.c: Move to ....
10016 * sysdeps/sparc/sparc64/qp_fne.c: ... here.
10017 * sysdeps/sparc/sparc64/soft-fp/qp_itoq.c: Move to ....
10018 * sysdeps/sparc/sparc64/qp_itoq.c: ... here.
10019 * sysdeps/sparc/sparc64/soft-fp/qp_mul.c: Move to ....
10020 * sysdeps/sparc/sparc64/qp_mul.c: ... here.
10021 * sysdeps/sparc/sparc64/soft-fp/qp_neg.S: Move to ....
10022 * sysdeps/sparc/sparc64/qp_neg.S: ... here.
10023 * sysdeps/sparc/sparc64/soft-fp/qp_qtod.c: Move to ....
10024 * sysdeps/sparc/sparc64/qp_qtod.c: ... here.
10025 * sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Move to ....
10026 * sysdeps/sparc/sparc64/qp_qtoi.c: ... here.
10027 * sysdeps/sparc/sparc64/soft-fp/qp_qtos.c: Move to ....
10028 * sysdeps/sparc/sparc64/qp_qtos.c: ... here.
10029 * sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Move to ....
10030 * sysdeps/sparc/sparc64/qp_qtoui.c: ... here.
10031 * sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Move to ....
10032 * sysdeps/sparc/sparc64/qp_qtoux.c: ... here.
10033 * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Move to ....
10034 * sysdeps/sparc/sparc64/qp_qtox.c: ... here.
10035 * sysdeps/sparc/sparc64/soft-fp/qp_sqrt.c: Move to ....
10036 * sysdeps/sparc/sparc64/qp_sqrt.c: ... here.
10037 * sysdeps/sparc/sparc64/soft-fp/qp_stoq.c: Move to ....
10038 * sysdeps/sparc/sparc64/qp_stoq.c: ... here.
10039 * sysdeps/sparc/sparc64/soft-fp/qp_sub.c: Move to ....
10040 * sysdeps/sparc/sparc64/qp_sub.c: ... here.
10041 * sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c: Move to ....
10042 * sysdeps/sparc/sparc64/qp_uitoq.c: ... here.
10043 * sysdeps/sparc/sparc64/soft-fp/qp_util.c: Move to ....
10044 * sysdeps/sparc/sparc64/qp_util.c: ... here.
10045 * sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c: Move to ....
10046 * sysdeps/sparc/sparc64/qp_uxtoq.c: ... here.
10047 * sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c: Move to ....
10048 * sysdeps/sparc/sparc64/qp_xtoq.c: ... here.
10049 * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h: Move to ....
10050 * sysdeps/sparc/sparc64/sfp-machine.h: ... here.
10052 * sysdeps/sparc/sparc32/Implies: Remove sparc/sparc32/soft-fp.
10053 * sysdeps/sparc/sparc32/Makefile [$(subdir) = soft-fp]
10054 (sparc32-quad-routines): New variable. Moved from ....
10055 [$(subdir) = soft-fp] (sysdep_routines): Add
10056 $(sparc32-quad-routines). Moved from ....
10057 * sysdeps/sparc/sparc32/soft-fp/Makefile: ... here. Remove file.
10058 * sysdeps/sparc/sparc32/Versions (libc): Add GLIBC_2.4 symbols
10060 * sysdeps/sparc/sparc32/soft-fp/Versions: ... here. Remove file.
10061 * sysdeps/sparc/sparc32/soft-fp/q_add.c: Move to ....
10062 * sysdeps/sparc/sparc32/q_add.c: ... here.
10063 * sysdeps/sparc/sparc32/soft-fp/q_cmp.c: Move to ....
10064 * sysdeps/sparc/sparc32/q_cmp.c: ... here.
10065 * sysdeps/sparc/sparc32/soft-fp/q_cmpe.c: Move to ....
10066 * sysdeps/sparc/sparc32/q_cmpe.c: ... here.
10067 * sysdeps/sparc/sparc32/soft-fp/q_div.c: Move to ....
10068 * sysdeps/sparc/sparc32/q_div.c: ... here.
10069 * sysdeps/sparc/sparc32/soft-fp/q_dtoq.c: Move to ....
10070 * sysdeps/sparc/sparc32/q_dtoq.c: ... here.
10071 * sysdeps/sparc/sparc32/soft-fp/q_feq.c: Move to ....
10072 * sysdeps/sparc/sparc32/q_feq.c: ... here.
10073 * sysdeps/sparc/sparc32/soft-fp/q_fge.c: Move to ....
10074 * sysdeps/sparc/sparc32/q_fge.c: ... here.
10075 * sysdeps/sparc/sparc32/soft-fp/q_fgt.c: Move to ....
10076 * sysdeps/sparc/sparc32/q_fgt.c: ... here.
10077 * sysdeps/sparc/sparc32/soft-fp/q_fle.c: Move to ....
10078 * sysdeps/sparc/sparc32/q_fle.c: ... here.
10079 * sysdeps/sparc/sparc32/soft-fp/q_flt.c: Move to ....
10080 * sysdeps/sparc/sparc32/q_flt.c: ... here.
10081 * sysdeps/sparc/sparc32/soft-fp/q_fne.c: Move to ....
10082 * sysdeps/sparc/sparc32/q_fne.c: ... here.
10083 * sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Move to ....
10084 * sysdeps/sparc/sparc32/q_itoq.c: ... here.
10085 * sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Move to ....
10086 * sysdeps/sparc/sparc32/q_lltoq.c: ... here.
10087 * sysdeps/sparc/sparc32/soft-fp/q_mul.c: Move to ....
10088 * sysdeps/sparc/sparc32/q_mul.c: ... here.
10089 * sysdeps/sparc/sparc32/soft-fp/q_neg.c: Move to ....
10090 * sysdeps/sparc/sparc32/q_neg.c: ... here.
10091 * sysdeps/sparc/sparc32/soft-fp/q_qtod.c: Move to ....
10092 * sysdeps/sparc/sparc32/q_qtod.c: ... here.
10093 * sysdeps/sparc/sparc32/soft-fp/q_qtoi.c: Move to ....
10094 * sysdeps/sparc/sparc32/q_qtoi.c: ... here.
10095 * sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: Move to ....
10096 * sysdeps/sparc/sparc32/q_qtoll.c: ... here.
10097 * sysdeps/sparc/sparc32/soft-fp/q_qtos.c: Move to ....
10098 * sysdeps/sparc/sparc32/q_qtos.c: ... here.
10099 * sysdeps/sparc/sparc32/soft-fp/q_qtou.c: Move to ....
10100 * sysdeps/sparc/sparc32/q_qtou.c: ... here.
10101 * sysdeps/sparc/sparc32/soft-fp/q_qtoull.c: Move to ....
10102 * sysdeps/sparc/sparc32/q_qtoull.c: ... here.
10103 * sysdeps/sparc/sparc32/soft-fp/q_sqrt.c: Move to ....
10104 * sysdeps/sparc/sparc32/q_sqrt.c: ... here.
10105 * sysdeps/sparc/sparc32/soft-fp/q_stoq.c: Move to ....
10106 * sysdeps/sparc/sparc32/q_stoq.c: ... here.
10107 * sysdeps/sparc/sparc32/soft-fp/q_sub.c: Move to ....
10108 * sysdeps/sparc/sparc32/q_sub.c: ... here.
10109 * sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Move to ....
10110 * sysdeps/sparc/sparc32/q_ulltoq.c: ... here.
10111 * sysdeps/sparc/sparc32/soft-fp/q_util.c: Move to ....
10112 * sysdeps/sparc/sparc32/q_util.c: ... here.
10113 * sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Move to ....
10114 * sysdeps/sparc/sparc32/q_utoq.c: ... here.
10115 * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h: Move to ....
10116 * sysdeps/sparc/sparc32/sfp-machine.h: ... here.
10118 2018-05-24 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
10119 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
10121 * sysdeps/powerpc/Implies: Removed. Previous contents copied to...
10122 * sysdeps/powerpc/powerpc32/Implies-after: ... here.
10123 * sysdeps/powerpc/powerpc64/be/Implies-after: ... here.
10124 * sysdeps/powerpc/powerpc64/le/Implies-before: ... and here.
10126 2018-05-24 Joseph Myers <joseph@codesourcery.com>
10128 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/Implies: Remove
10130 * sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nofpu/Implies:
10132 * sysdeps/powerpc/soft-fp/sfp-machine.h: Move to ....
10133 * sysdeps/powerpc/nofpu/sfp-machine.h: ... here.
10135 2018-05-24 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
10138 * math/math.h [C++] (iseqsig): Fix parameter type for the long
10141 2018-05-23 Joseph Myers <joseph@codesourcery.com>
10143 * sysdeps/sh/Implies: Remove sh/soft-fp.
10144 * sysdeps/sh/soft-fp/sfp-machine.h: Move to ....
10145 * sysdeps/sh/sfp-machine.h: ... here.
10147 2018-05-23 H.J. Lu <hongjiu.lu@intel.com>
10149 * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S
10150 (__mempcpy_erms): Skip zero length.
10151 (__memmove_erms): Likewise.
10152 * sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S
10153 (__memset_erms): Likewise.
10155 2018-05-23 Joseph Myers <joseph@codesourcery.com>
10157 * sysdeps/alpha/Implies: Remove alpha/soft-fp.
10158 * sysdeps/alpha/Makefile [$(subdir) = soft-fp] (sysdep_routines):
10159 Add functions moved from ....
10160 [$(subdir) = math] (CPPFLAGS): Add -I../soft-fp. Moved from ....
10161 * sysdeps/alpha/soft-fp/Makefile: ... here. Remove file.
10162 * sysdeps/alpha/Versions (libc): Add GLIBC_2.3.4 symbols moved
10164 * sysdeps/alpha/soft-fp/Versions: ... here. Remove file.
10165 * sysdeps/alpha/soft-fp/e_sqrtl.c: Move to ....
10166 * sysdeps/alpha/e_sqrtl.c: ... here.
10167 * sysdeps/alpha/soft-fp/local-soft-fp.h: Move to ....
10168 * sysdeps/alpha/local-soft-fp.h: ... here.
10169 * sysdeps/alpha/soft-fp/ots_add.c: Move to ....
10170 * sysdeps/alpha/ots_add.c: ... here.
10171 * sysdeps/alpha/soft-fp/ots_cmp.c: Move to ....
10172 * sysdeps/alpha/ots_cmp.c: ... here.
10173 * sysdeps/alpha/soft-fp/ots_cmpe.c: Move to ....
10174 * sysdeps/alpha/ots_cmpe.c: ... here.
10175 * sysdeps/alpha/soft-fp/ots_cvtqux.c: Move to ....
10176 * sysdeps/alpha/ots_cvtqux.c: ... here.
10177 * sysdeps/alpha/soft-fp/ots_cvtqx.c: Move to ....
10178 * sysdeps/alpha/ots_cvtqx.c: ... here.
10179 * sysdeps/alpha/soft-fp/ots_cvttx.c: Move to ....
10180 * sysdeps/alpha/ots_cvttx.c: ... here.
10181 * sysdeps/alpha/soft-fp/ots_cvtxq.c: Move to ....
10182 * sysdeps/alpha/ots_cvtxq.c: ... here.
10183 * sysdeps/alpha/soft-fp/ots_cvtxt.c: Move to ....
10184 * sysdeps/alpha/ots_cvtxt.c: ... here.
10185 * sysdeps/alpha/soft-fp/ots_div.c: Move to ....
10186 * sysdeps/alpha/ots_div.c: ... here.
10187 * sysdeps/alpha/soft-fp/ots_mul.c: Move to ....
10188 * sysdeps/alpha/ots_mul.c: ... here.
10189 * sysdeps/alpha/soft-fp/ots_nintxq.c: Move to ....
10190 * sysdeps/alpha/ots_nintxq.c: ... here.
10191 * sysdeps/alpha/soft-fp/ots_sub.c: Move to ....
10192 * sysdeps/alpha/ots_sub.c: ... here.
10193 * sysdeps/alpha/soft-fp/sfp-machine.h: Move to ....
10194 * sysdeps/alpha/sfp-machine.h: ... here.
10196 2018-05-23 Florian Weimer <fweimer@redhat.com>
10204 Switch to extern IDNA implementation (libidn2).
10205 * libidn: Remove subdirectory.
10206 * LICENSES: Do not mention licensing conditions for the removed
10208 * config.h.in (HAVE_LIBIDN): Remove.
10209 * include/dlfcn.h (__libc_dlopen): Update comment.
10210 * include/idna.h: Remove file.
10211 * inet/Makefile (routines): Add idna.
10212 (tests-static, tests-internal): Add tst-idna_name_classify.
10213 (LOCALES): Generate locales for tests.
10214 (tst-idna_name_classify.out): Depend on generated locales.
10215 * inet/idna_name_classify.c: New file.
10216 * inet/tst-idna_name_classify.c: Likewise.
10217 * inet/net-internal.h (__idna_to_dns_encoding)
10218 (__idna_from_dns_encoding): Declare.
10219 * inet/net-internal.h (enum idna_name_classification): Define.
10220 (__idna_name_classify): Declare.
10221 * inet/Versions (GLIBC_PRIVATE): Add __idna_to_dns_encoding,
10222 __idna_from_dns_encoding.
10223 * inet/getnameinfo.c (DEPRECATED_NI_IDN): Define.
10224 (gni_host_inet_name): Call __idna_from_dns_encoding. Use punycode
10225 name as a fallback in case of encoding errors.
10226 (getnameinfo): Use DEPRECATED_NI_IDN.
10227 * inet/idna.c: New file.
10228 * nscd/gai.c: Do not include <libidn/idn-stub.c>.
10229 * resolv/Makefile (tests): Add tst-resolv-ai_idn,
10230 tst-resolv-ai_idn-latin1, tst-resolv-ai_idn-nolibidn2.
10231 (modules-names): Add tst-no-libidn2.
10232 (extra-test-objs): Add tst-no-libidn2.os.
10233 (LDFLAGS-tst-no-libidn2.so): Set soname.
10234 (LOCALES): Set, and generate locales.
10235 (tst-resolv-ai_idn): Link with -ldl -lresolv -lpthread.
10236 (tst-resolv-ai_idn-latin1): Likewise.
10237 (tst-resolv-ai_idn-nolibidn2): Likewise.
10238 (tst-resolv-ai_idn.out): Depend on locales.
10239 (tst-resolv-ai_idn-latin1.out): Depend on locales.
10240 (tst-resolv-ai_idn-nolibidn2.out): Depend on locales and
10242 * resolv/netdb.h (AI_IDN_ALLOW_UNASSIGNED)
10243 (AI_IDN_USE_STD3_ASCII_RULES, NI_IDN_ALLOW_UNASSIGNED)
10244 (NI_IDN_USE_STD3_ASCII_RULES): Deprecate.
10245 * resolv/tst-resolv-ai_idn.c: New file.
10246 * resolv/tst-resolv-ai_idn-latin1.c: Likewise.
10247 * resolv/tst-resolv-ai_idn-nolibidn2.c: Likewise.
10248 * resolv/tst-no-libidn2.c: Likewise.
10249 * support/support_format_addrinfo.c (format_ai_flags): Do not
10250 handle AI_IDN_ALLOW_UNASSIGNED, AI_IDN_USE_STD3_ASCII_RULES.
10251 * sysdeps/posix/getaddrinfo.c (DEPRECATED_AI_IDN): Define.
10252 (gaih_inet): Call __idna_to_dns_encoding and
10253 __idna_from_dns_encoding, and use the original (punycode) name if
10254 __idna_from_dns_encoding fails due to an encoding error.
10255 (getaddrinfo): Use DEPRECATED_AI_IDN.
10256 * sysdeps/unix/inet/Subdirs (libidn): Remove.
10257 * sysdeps/unix/inet/configure: Remove file.
10258 * sysdeps/unix/inet/configure.ac: Likewise.
10260 2018-05-23 Florian Weimer <fweimer@redhat.com>
10262 Implement allocate_once.
10263 * include/allocate_once.h: New file.
10264 * misc/allocate_once.c: Likewise.
10265 * misc/tst-allocate_once.c: Likewise.
10266 * misc/Makefile (routines): Add allocate_once.
10267 (tests-internal): Add tst-allocate_once.
10268 (generated): Add tst-allocate_once.mtrace,
10269 tst-allocate_once-mem.out.
10270 (tests-special): Add tst-allocate_once-mem.out.
10271 (tst-allocate_once-ENV): Set MALLOC_TRACE.
10272 (tst-allocate_once-mem.out): Call mtrace.
10273 * misc/Versions (GLIBC_PRIVATE): Add __libc_allocate_once_slow.
10275 2018-05-23 H.J. Lu <hongjiu.lu@intel.com>
10278 * string/test-memcpy.c (do_test1): New function.
10279 (test_main): Call it.
10281 2018-05-23 Andreas Schwab <schwab@suse.de>
10285 * sysdeps/x86_64/multiarch/memmove-avx512-no-vzeroupper.S
10286 (L(preloop_large)): Save initial destination pointer in %r11 and
10287 use it instead of %rax after the loop.
10288 * string/test-mempcpy.c (MIN_PAGE_SIZE): Define.
10290 2018-05-22 Joseph Myers <joseph@codesourcery.com>
10292 * sysdeps/aarch64/Implies: Remove aarch64/soft-fp.
10293 * sysdeps/aarch64/Makefile [$(subdir) = math] (CPPFLAGS): Add
10294 -I../soft-fp. Moved from ....
10295 * sysdeps/aarch64/soft-fp/Makefile: ... here. Remove file.
10296 * sysdeps/aarch64/soft-fp/e_sqrtl.c: Move to ....
10297 * sysdeps/aarch64/e_sqrtl.c: ... here.
10298 * sysdeps/aarch64/soft-fp/sfp-machine.h: Move to ....
10299 * sysdeps/aarch64/sfp-machine.h: ... here.
10301 * sysdeps/ieee754/dbl-64/k_rem_pio2.c (__kernel_rem_pio2): Ignore
10302 -Wmaybe-uninitialized around access to fq[0].
10303 * sysdeps/ieee754/flt-32/k_rem_pio2f.c (__kernel_rem_pio2f):
10307 * sysdeps/unix/make-syscalls.sh (emit_weak_aliases): Use weak
10308 aliases for non-libc case of versioned symbols.
10309 * sysdeps/unix/sysv/linux/lseek64.c: Include <shlib-compat.h>.
10310 (llseek): Define as compat symbol if
10311 [SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_28)], not as weak alias
10313 * sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list (llseek):
10314 Make into a compat symbol, disabled for minimum symbol version
10315 GLIBC_2.28 and later.
10316 * sysdeps/unix/sysv/linux/x86_64/x32/llseek.S: Remove file.
10318 2018-05-22 Florian Weimer <fweimer@redhat.com>
10320 * sysdeps/i386/Makefile [$(subdir) == math] (sysdep-CFLAGS): Do
10321 not add -mpreferred-stack-boundary=4.
10322 [$(subdir) == csu] (sysdep-CFLAGS): Likewise.
10323 (stack-align-test-flags): Likewise.
10324 [$(subdir) == stdlib] (CFLAGS-exit.c, CFLAGS-cxa_finalize.c):
10326 [$(subdir) == elf] (CFLAGS-dl-init.c, CFLAGS-dl-fini.c)
10327 (CFLAGS-dl-open.c, CFLAGS-dl-close.c, CFLAGS-dl-error.c): Likewise.
10328 [$(subdir) == dlfcn] (CFLAGS-dlopen.c, CFLAGS-dlopenold.c)
10329 (CFLAGS-dlclose.c, CFLAGS-dlerror.c): Likewise.
10330 * sysdeps/i386/nptl/Makefile [$(subdir) == nptl]
10331 (CFLAGS-pthread_create.c, CFLAGS-tst-align.c)
10332 (CFLAGS-tst-align2.c): Likewise.
10334 2018-05-21 H.J. Lu <hongjiu.lu@intel.com>
10336 * sysdeps/x86/cpu-features.h (bit_arch_Prefer_FSRM): New.
10337 (index_arch_Prefer_FSRM): Likewise.
10338 * sysdeps/x86/cpu-tunables.c (TUNABLE_CALLBACK (set_hwcaps)):
10339 Also check Prefer_FSRM.
10340 * sysdeps/x86_64/multiarch/ifunc-memmove.h (IFUNC_SELECTOR):
10341 Also return OPTIMIZE (erms) for Prefer_FSRM.
10343 2018-05-21 H.J. Lu <hongjiu.lu@intel.com>
10345 * sysdeps/x86/cpu-features.h (bit_cpu_FSRM): New.
10346 (index_cpu_FSRM): Likewise.
10347 (reg_FSRM): Likewise.
10349 2018-05-18 Joseph Myers <joseph@codesourcery.com>
10351 * math/gen-tgmath-tests.py: Import sys.
10352 (Tests.__init__): Initialize macros_seen.
10353 (Tests.add_tests): Add macro to macros_seen. Only generate tests
10354 if requested to do so for this macro.
10355 (Tests.add_all_tests): Take argument for macro for which to
10357 (Tests.check_macro_list): New function.
10358 (main): Handle check-list argument and argument specifying macro
10359 for which to generate tests.
10360 * math/Makefile [PYTHON] (tgmath3-macros): New variable.
10361 [PYTHON] (tgmath3-macro-tests): Likewise.
10362 [PYTHON] (tests): Add $(tgmath3-macro-tests) not test-tgmath3.
10363 [PYTHON] (generated): Add $(addsuffix .c,$(tgmath3-macro-tests))
10364 not test-tgmath3.c.
10365 [PYTHON] (CFLAGS-test-tgmath3.c): Remove.
10366 [PYTHON] ($(tgmath3-macro-tests:%=$(objpfx)%.o): Add -fno-builtin
10368 [PYTHON] ($(objpfx)test-tgmath3.c): Replace rule by....
10369 [PYTHON] ($(foreach
10370 m,$(tgmath3-macros),$(objpfx)test-tgmath3-$(m).c): ... this. New
10372 [PYTHON] (tests-special): Add
10373 $(objpfx)test-tgmath3-macro-list.out.
10374 [PYTHON] ($(objpfx)test-tgmath3-macro-list.out): New rule.
10376 * sysdeps/unix/sysv/linux/syscalls.list (nfsservctl): Make into a
10377 compat symbol, disabled for minimum symbol version GLIBC_2.28 and
10381 * time/tzset.c (SECSPERDAY): Cast to time_t.
10382 * time/tst-y2039.c: New file.
10383 * time/Makefile (tests): Add tst-y2039.
10385 2018-05-17 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
10387 * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S
10388 (PREFETCH_ONE_SET): Remove duplicate line.
10390 2018-05-17 Florian Weimer <fweimer@redhat.com>
10392 * sysdeps/generic/math-type-macros-double.h: Include
10393 <math-nan-payload-double.h> after <libm-alias-double.h>.
10394 * sysdeps/generic/math-type-macros-float.h: Include
10395 <math-nan-payload-float.h> after <libm-alias-float.h>.
10396 * sysdeps/generic/math-type-macros-float128.h: Include
10397 <math-nan-payload-float128.h> after <libm-alias-float128.h>.
10398 * sysdeps/generic/math-type-macros-ldouble.h: Include
10399 <math-nan-payload-ldouble.h> after <libm-alias-ldouble.h>.
10401 2018-05-17 Andreas Schwab <schwab@suse.de>
10403 * resolv/res_send.c (__res_context_send): Don't set errno when
10404 returing error after malloc failure.
10406 2018-05-17 H.J. Lu <hongjiu.lu@intel.com>
10408 * nptl/allocatestack.c (allocate_stack): Remove the
10409 !__ASSUME_PRIVATE_FUTEX paths.
10410 * nptl/descr.h (header): Remove the !__ASSUME_PRIVATE_FUTEX path.
10411 * nptl/nptl-init.c (__pthread_initialize_minimal_internal):
10413 * sysdeps/i386/nptl/tcb-offsets.sym (PRIVATE_FUTEX): Removed.
10414 * sysdeps/powerpc/nptl/tcb-offsets.sym (PRIVATE_FUTEX): Likewise.
10415 * sysdeps/sh/nptl/tcb-offsets.sym (PRIVATE_FUTEX): Likewise.
10416 * sysdeps/x86_64/nptl/tcb-offsets.sym (PRIVATE_FUTEX): Likewise.
10417 * sysdeps/i386/nptl/tls.h: (tcbhead_t): Remve the
10418 !__ASSUME_PRIVATE_FUTEX path.
10419 * sysdeps/s390/nptl/tls.h (tcbhead_t): Likewise.
10420 * sysdeps/sparc/nptl/tls.h (tcbhead_t): Likewise.
10421 * sysdeps/x86_64/nptl/tls.h (tcbhead_t): Likewise.
10422 * sysdeps/unix/sysv/linux/i386/lowlevellock.S: Remove the
10423 !__ASSUME_PRIVATE_FUTEX macros.
10424 * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Likewise.
10425 * sysdeps/unix/sysv/linux/x86_64/cancellation.S: Likewise.
10426 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Likewise.
10427 * sysdeps/unix/sysv/linux/kernel-features.h
10428 (__ASSUME_PRIVATE_FUTEX): Removed.
10430 2018-05-17 Joseph Myers <joseph@codesourcery.com>
10432 * math/Makefile (libm-narrow-fns): Add div.
10433 (libm-test-funcs-narrow): Likewise.
10434 * math/Versions (GLIBC_2.28): Add narrowing divide functions.
10435 * math/bits/mathcalls-narrow.h (div): Use __MATHCALL_NARROW.
10436 * math/gen-auto-libm-tests.c (test_functions): Add div.
10437 * math/math-narrow.h (CHECK_NARROW_DIV): New macro.
10438 (NARROW_DIV_ROUND_TO_ODD): Likewise.
10439 (NARROW_DIV_TRIVIAL): Likewise.
10440 * sysdeps/ieee754/float128/float128_private.h (__fdivl): New
10442 (__ddivl): Likewise.
10443 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add fdiv and
10445 (CFLAGS-nldbl-ddiv.c): New variable.
10446 (CFLAGS-nldbl-fdiv.c): Likewise.
10447 * sysdeps/ieee754/ldbl-opt/Versions (GLIBC_2.28): Add
10449 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl_ddivl): New
10451 * manual/arith.texi (Misc FP Arithmetic): Document fdiv, fdivl,
10452 ddivl, fMdivfN, fMdivfNx, fMxdivfN and fMxdivfNx.
10453 * math/auto-libm-test-in: Add tests of div.
10454 * math/auto-libm-test-out-narrow-div: New generated file.
10455 * math/libm-test-narrow-div.inc: New file.
10456 * sysdeps/i386/fpu/s_f32xdivf64.c: Likewise.
10457 * sysdeps/ieee754/dbl-64/s_f32xdivf64.c: Likewise.
10458 * sysdeps/ieee754/dbl-64/s_fdiv.c: Likewise.
10459 * sysdeps/ieee754/float128/s_f32divf128.c: Likewise.
10460 * sysdeps/ieee754/float128/s_f64divf128.c: Likewise.
10461 * sysdeps/ieee754/float128/s_f64xdivf128.c: Likewise.
10462 * sysdeps/ieee754/ldbl-128/s_ddivl.c: Likewise.
10463 * sysdeps/ieee754/ldbl-128/s_f64xdivf128.c: Likewise.
10464 * sysdeps/ieee754/ldbl-128/s_fdivl.c: Likewise.
10465 * sysdeps/ieee754/ldbl-128ibm/s_ddivl.c: Likewise.
10466 * sysdeps/ieee754/ldbl-128ibm/s_fdivl.c: Likewise.
10467 * sysdeps/ieee754/ldbl-96/s_ddivl.c: Likewise.
10468 * sysdeps/ieee754/ldbl-96/s_fdivl.c: Likewise.
10469 * sysdeps/ieee754/ldbl-opt/nldbl-ddiv.c: Likewise.
10470 * sysdeps/ieee754/ldbl-opt/nldbl-fdiv.c: Likewise.
10471 * sysdeps/ieee754/soft-fp/s_ddivl.c: Likewise.
10472 * sysdeps/ieee754/soft-fp/s_fdiv.c: Likewise.
10473 * sysdeps/ieee754/soft-fp/s_fdivl.c: Likewise.
10474 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
10475 * sysdeps/mach/hurd/i386/libm.abilist: Likewise.
10476 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
10477 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
10478 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
10479 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
10480 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
10481 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
10482 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
10483 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
10484 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
10485 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
10486 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
10487 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
10488 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Likewise.
10489 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Likewise.
10490 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Likewise.
10491 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Likewise.
10492 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
10493 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
10494 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
10495 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
10496 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
10497 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
10498 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
10499 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
10501 2018-05-16 Adhemerval Zanella <adhemerval.zanella@linaro.org>
10504 * nscd/nscd-client.h (sendfileall): Remove prototype.
10505 * nscd/connections.c [HAVE_SENDFILE] (sendfileall): Remove function.
10506 (handle_request): Use writeall instead of sendfileall.
10507 * nscd/aicache.c (addhstaiX): Likewise.
10508 * nscd/grpcache.c (cache_addgr): Likewise.
10509 * nscd/hstcache.c (cache_addhst): Likewise.
10510 * nscd/initgrcache.c (addinitgroupsX): Likewise.
10511 * nscd/netgroupcache.c (addgetnetgrentX, addinnetgrX): Likewise.
10512 * nscd/pwdcache.c (cache_addpw): Likewise.
10513 * nscd/servicescache.c (cache_addserv): Likewise.
10514 * sysdeps/unix/sysv/linux/Makefile [$(subdir) == nscd]
10515 (sysdep-CFLAGS): Remove -DHAVE_SENDFILE.
10516 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_SENDFILE):
10519 2018-05-16 H.J. Lu <hongjiu.lu@intel.com>
10521 * sysdeps/x86_64/multiarch/strncat-c.c (STRNCAT_PRIMARY): Removed.
10522 Include <string/strncat.c>.
10523 * sysdeps/x86_64/multiarch/strncat.c (__strncat): New strong
10525 (__GI___strncat): New hidden alias.
10527 2018-05-16 Joseph Myers <joseph@codesourcery.com>
10529 * sysdeps/mips/mips32/libm-test-ulps: Update.
10530 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
10532 2018-05-16 Florian Weimer <fweimer@redhat.com>
10534 * support/Makefile (libsupport-routines): Add support_quote_blob,
10535 support_test_compare_blob.
10536 (tests): Add tst-support_quote_blob, tst-test_compare_blob.
10537 * support/check.h (TEST_COMPARE_BLOB): Define.
10538 (support_test_compare_blob): Declare.
10539 * support/support.h (support_quote_blob): Declare.
10540 * support/support_quote_blob.c: New file.
10541 * support/support_test_compare_blob.c: Likewise.
10542 * support/tst-support_quote_blob.c: Likewise.
10543 * support/tst-test_compare_blob.c: Likewise.
10545 2018-05-16 Florian Weimer <fweimer@redhat.com>
10547 * stdlib/strtod_nan.c: Include <math-type-macros-double.h> instead
10548 of <strtod_nan_double.h>.
10549 * stdlib/strtod_nan_main.c (STRTOD_NAN): Use SET_NAN_PAYLOAD
10550 instead of SET_MANTISSA.
10551 * stdlib/strtof_nan.c: Include <math-type-macros-float.h> instead
10552 of include <strtod_nan_float.h>.
10553 * stdlib/strtold_nan.c: Include <math-type-macros-ldouble.h>
10554 instead of <strtod_nan_ldouble.h>.
10555 * stdlib/strtod_nan_double.h: Move to ...
10556 * sysdeps/generic/math-nan-payload-double.h: ... here.
10557 (FLOAT): Remove definition.
10558 (SET_MANTISSA): Rename to ...
10559 (SET_NAN_PAYLOAD): ... this.
10560 * stdlib/strtod_nan_float.h: Move to ...
10561 * sysdeps/generic/math-nan-payload-float.h: ... here.
10562 (FLOAT): Remove definition.
10563 (SET_MANTISSA): Rename to ...
10564 (SET_NAN_PAYLOAD): ... this.
10565 * sysdeps/generic/math-type-macros-double.h: Include
10566 <math-nan-payload-double.h>. Include <math/math-svid-compat.h>
10567 instead of <math-svid-compat.h>.
10568 * sysdeps/generic/math-type-macros-float.h: Include
10569 <math-nan-payload-float.h>. Include <math/math-svid-compat.h>
10570 instead of <math-svid-compat.h>.
10571 * sysdeps/generic/math-type-macros-float128.h: Include
10572 <math-nan-payload-float128.h>.
10573 * sysdeps/generic/math-type-macros-ldouble.h: Include
10574 <math-nan-payload-ldouble.h>. Include <math/math-svid-compat.h>
10575 instead of <math-svid-compat.h>.
10576 * sysdeps/generic/math-type-macros.h: Document SET_NAN_PAYLOAD and
10577 check for definition.
10578 * sysdeps/ieee754/float128/strtod_nan_float128.h: Move to ...
10579 * sysdeps/ieee754/float128/math-nan-payload-float128.h: ... here.
10580 Include <ieee754_float128.h>.
10581 (FLOAT): Remove definition.
10582 (SET_MANTISSA): Rename to ...
10583 (SET_NAN_PAYLOAD): ... this.
10584 * sysdeps/ieee754/float128/strtof128_nan.c: Include
10585 <math-type-macros-float128.h> instead of <strtod_nan_float128.h>.
10586 Do not include <float128_private.h>.
10587 * sysdeps/ieee754/float128/wcstof128_nan.c: Likewise.
10588 * sysdeps/ieee754/ldbl-128/strtod_nan_ldouble.h: Move to ...
10589 * sysdeps/ieee754/ldbl-128/math-nan-payload-ldouble.h: ... here.
10590 (FLOAT): Remove definition.
10591 (SET_MANTISSA): Rename to ...
10592 (SET_NAN_PAYLOAD): ... this.
10593 * sysdeps/ieee754/ldbl-128ibm/strtod_nan_ldouble.h: Move to ...
10594 * sysdeps/ieee754/ldbl-128ibm/math-nan-payload-ldouble.h: ... here.
10595 (FLOAT): Remove definition.
10596 (SET_MANTISSA): Rename to ...
10597 (SET_NAN_PAYLOAD): ... this.
10598 * sysdeps/ieee754/ldbl-96/strtod_nan_ldouble.h: Move to ...
10599 * sysdeps/ieee754/ldbl-96/math-nan-payload-ldouble.h: ... here.
10600 (FLOAT): Remove definition.
10601 (SET_MANTISSA): Rename to ...
10602 (SET_NAN_PAYLOAD): ... this.
10603 * wcsmbs/wcstod_nan.c: Include <math-type-macros-double.h> instead
10604 of "../stdlib/strtod_nan_double.h".
10605 * wcsmbs/wcstof_nan.c: Include <math-type-macros-float.h> instead
10606 of "../stdlib/strtod_nan_float.h".
10607 * wcsmbs/wcstold_nan.c: Include <math-type-macros-ldouble.h>
10608 instead of "../stdlib/strtod_nan_ldouble.h".
10609 * manual/arith.texi (Parsing of Floats): Adjust comment.
10611 2018-05-16 Joseph Myers <joseph@codesourcery.com>
10613 * math/Makefile (libm-narrow-fns): Add mul.
10614 (libm-test-funcs-narrow): Likewise.
10615 * math/Versions (GLIBC_2.28): Add narrowing multiply functions.
10616 * math/bits/mathcalls-narrow.h (mul): Use __MATHCALL_NARROW.
10617 * math/gen-auto-libm-tests.c (test_functions): Add mul.
10618 * math/math-narrow.h (CHECK_NARROW_MUL): New macro.
10619 (NARROW_MUL_ROUND_TO_ODD): Likewise.
10620 (NARROW_MUL_TRIVIAL): Likewise.
10621 * soft-fp/op-common.h (FP_TRUNC_COOKED): Likewise.
10622 * sysdeps/ieee754/float128/float128_private.h (__fmull): New
10624 (__dmull): Likewise.
10625 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add fmul and
10627 (CFLAGS-nldbl-dmul.c): New variable.
10628 (CFLAGS-nldbl-fmul.c): Likewise.
10629 * sysdeps/ieee754/ldbl-opt/Versions (GLIBC_2.28): Add
10631 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl_dmull): New
10633 * manual/arith.texi (Misc FP Arithmetic): Document fmul, fmull,
10634 dmull, fMmulfN, fMmulfNx, fMxmulfN and fMxmulfNx.
10635 * math/auto-libm-test-in: Add tests of mul.
10636 * math/auto-libm-test-out-narrow-mul: New generated file.
10637 * math/libm-test-narrow-mul.inc: New file.
10638 * sysdeps/i386/fpu/s_f32xmulf64.c: Likewise.
10639 * sysdeps/ieee754/dbl-64/s_f32xmulf64.c: Likewise.
10640 * sysdeps/ieee754/dbl-64/s_fmul.c: Likewise.
10641 * sysdeps/ieee754/float128/s_f32mulf128.c: Likewise.
10642 * sysdeps/ieee754/float128/s_f64mulf128.c: Likewise.
10643 * sysdeps/ieee754/float128/s_f64xmulf128.c: Likewise.
10644 * sysdeps/ieee754/ldbl-128/s_dmull.c: Likewise.
10645 * sysdeps/ieee754/ldbl-128/s_f64xmulf128.c: Likewise.
10646 * sysdeps/ieee754/ldbl-128/s_fmull.c: Likewise.
10647 * sysdeps/ieee754/ldbl-128ibm/s_dmull.c: Likewise.
10648 * sysdeps/ieee754/ldbl-128ibm/s_fmull.c: Likewise.
10649 * sysdeps/ieee754/ldbl-96/s_dmull.c: Likewise.
10650 * sysdeps/ieee754/ldbl-96/s_fmull.c: Likewise.
10651 * sysdeps/ieee754/ldbl-opt/nldbl-dmul.c: Likewise.
10652 * sysdeps/ieee754/ldbl-opt/nldbl-fmul.c: Likewise.
10653 * sysdeps/ieee754/soft-fp/s_dmull.c: Likewise.
10654 * sysdeps/ieee754/soft-fp/s_fmul.c: Likewise.
10655 * sysdeps/ieee754/soft-fp/s_fmull.c: Likewise.
10656 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
10657 * sysdeps/mach/hurd/i386/libm.abilist: Likewise.
10658 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
10659 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
10660 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
10661 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
10662 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
10663 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
10664 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
10665 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
10666 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
10667 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
10668 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
10669 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
10670 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Likewise.
10671 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Likewise.
10672 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Likewise.
10673 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Likewise.
10674 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
10675 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
10676 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
10677 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
10678 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
10679 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
10680 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
10681 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
10683 2018-05-14 H.J. Lu <hongjiu.lu@intel.com>
10685 * sysdeps/i386/crti.S (_init): Replace PREINIT_FUNCTION@PLT
10686 with *%eax in call.
10688 2018-05-14 H.J. Lu <hongjiu.lu@intel.com>
10690 * sysdeps/i386/ldsodefs.h: Removed.
10691 * sysdeps/x86_64/ldsodefs.h: Moved to ...
10692 * sysdeps/x86/ldsodefs.h: This.
10693 (La_i86_regs): New.
10694 (La_i86_retval): Likewise.
10695 (ARCH_PLTENTER_MEMBERS): Add i86_gnu_pltenter.
10696 (ARCH_PLTEXIT_MEMBERS): i86_gnu_pltexit.
10698 2018-05-14 H.J. Lu <hongjiu.lu@intel.com>
10700 * sysdeps/x86_64/multiarch/strlen-avx2.S (STRLEN): Remove the
10703 2018-05-13 Alan Modra <amodra@gmail.com>
10705 * sysdeps/hppa/dl-machine.h (elf_machine_rela): Add
10706 R_PARISC_TLS_DTPOFF32 reloc addend.
10708 2018-05-11 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
10710 * bits/floatn-common.h: Define __HAVE_FLOAT128_UNLIKE_LDBL.
10711 * math/math.h: Restrict the prototype definition for the functions
10712 issignaling(_Float128) and iszero(_Float128); and template
10713 __iseqsig_type<_Float128>, from __HAVE_DISTINCT_FLOAT128 to
10714 __HAVE_FLOAT128_UNLIKE_LDBL.
10715 * sysdeps/powerpc/bits/floatn.h [__HAVE_FLOAT128
10716 && (!__GNUC_PREREQ (7, 0) || defined __cplusplus)
10717 && __LDBL_MANT_DIG__ == 113]: Use long double suffix for
10718 __f128() constants; define the type _Float128 as long double;
10719 and reuse long double in __CFLOAT128.
10721 2018-05-11 Joseph Myers <joseph@codesourcery.com>
10723 * sysdeps/generic/math_private.h: Do not include
10725 * stdlib/strtod_l.c: Include <math-barriers.h> instead of
10727 * math/fromfp.h: Include <math-barriers.h>.
10728 * math/math-narrow.h: Likewise.
10729 * math/s_nextafter.c: Likewise.
10730 * math/s_nexttowardf.c: Likewise.
10731 * sysdeps/aarch64/fpu/s_llrint.c: Likewise.
10732 * sysdeps/aarch64/fpu/s_llrintf.c: Likewise.
10733 * sysdeps/aarch64/fpu/s_lrint.c: Likewise.
10734 * sysdeps/aarch64/fpu/s_lrintf.c: Likewise.
10735 * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
10736 * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
10737 * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
10738 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
10739 * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
10740 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
10741 * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
10742 * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
10743 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
10744 * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
10745 * sysdeps/ieee754/dbl-64/s_fma.c: Likewise.
10746 * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
10747 * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
10748 * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
10749 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Likewise.
10750 * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
10751 * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
10752 * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
10753 * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
10754 * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
10755 * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
10756 * sysdeps/ieee754/k_standardl.c: Likewise.
10757 * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
10758 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
10759 * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
10760 * sysdeps/ieee754/ldbl-128/s_fmal.c: Likewise.
10761 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
10762 * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
10763 * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
10764 * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
10765 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
10766 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
10767 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
10768 * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
10769 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
10770 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
10771 * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
10772 * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
10773 * sysdeps/ieee754/ldbl-96/s_fma.c: Likewise.
10774 * sysdeps/ieee754/ldbl-96/s_fmal.c: Likewise.
10775 * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
10776 * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
10777 * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c: Likewise.
10778 * sysdeps/m68k/m680x0/fpu/s_nextafterl.c: Likewise.
10780 2018-05-11 Florian Weimer <fweimer@redhat.com>
10782 Use 64-bit epoch values in the time zone file parser.
10783 * include/time.h (internal_time_t): Define.
10784 (__tzfile_compute): Use it.
10785 * time/tzfile.c (struct leap): Use internal_time_t for epoch
10787 (transitions): Switch to internal_time_t.
10788 (__tzfile_read): Likewise. Remove code dealing with 4-byte time_t
10790 (__tzfile_compute): Use internal_time_t for timer argument. Check
10791 for truncation before calling __offtime.
10793 2018-05-11 Florian Weimer <fweimer@redhat.com>
10796 * include/rpc/clnt.h (rpc_createerr): Declare hidden alias.
10797 * include/rpc/svc.h (svc_pollfd, svc_max_pollfd, svc_fdset):
10799 * sunrpc/rpc_common.c (svc_fdset, rpc_createerr, svc_pollfd)
10800 (svc_max_pollfd): Add nocommon attribute and hidden alias. Do not
10801 export without --enable-obsolete-rpc.
10802 * sunrpc/svcauth_des.c (svcauthdes_stats): Turn into compatibility
10803 symbol. This should not have been exported, ever.
10805 2018-05-11 Rafal Luzynski <digitalfreak@lingonborough.com>
10808 * localedata/locales/gd_GB (abmon): Fix typo in May:
10809 "Mhàrt" -> "Cèit". Adjust the comment according to the change.
10811 2018-05-11 Siddhesh Poyarekar <siddhesh@sourceware.org>
10813 * sysdeps/aarch64/multiarch/memcpy_falkor.S (__memcpy_falkor):
10814 Use multiple registers to copy data in loop tail.
10816 * sysdeps/aarch64/multiarch/memmove_falkor.S
10817 (__memmove_falkor): Use multiple registers to move data in
10820 2018-05-10 Joseph Myers <joseph@codesourcery.com>
10822 * math/math-underflow.h: New file.
10823 * sysdeps/generic/math_private.h: Do not include <float.h>.
10824 (fabs_tg): Remove macro. Moved to math-underflow.h.
10825 (min_of_type_f): Likewise.
10826 (min_of_type_): Likewise.
10827 (min_of_type_l): Likewise.
10828 (min_of_type_f128): Likewise.
10829 (min_of_type): Likewise.
10830 (math_check_force_underflow): Likewise.
10831 (math_check_force_underflow_nonneg): Likewise.
10832 (math_check_force_underflow_complex): Likewise.
10833 * math/e_exp2_template.c: Include <math-underflow.h>.
10834 * math/k_casinh_template.c: Likewise.
10835 * math/s_catan_template.c: Likewise.
10836 * math/s_catanh_template.c: Likewise.
10837 * math/s_ccosh_template.c: Likewise.
10838 * math/s_cexp_template.c: Likewise.
10839 * math/s_clog10_template.c: Likewise.
10840 * math/s_clog_template.c: Likewise.
10841 * math/s_csin_template.c: Likewise.
10842 * math/s_csinh_template.c: Likewise.
10843 * math/s_csqrt_template.c: Likewise.
10844 * math/s_ctan_template.c: Likewise.
10845 * math/s_ctanh_template.c: Likewise.
10846 * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
10847 * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
10848 * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
10849 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
10850 * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
10851 * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
10852 * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
10853 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
10854 * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
10855 * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
10856 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
10857 * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
10858 * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
10859 * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
10860 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
10861 * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
10862 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
10863 * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
10864 * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
10865 * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
10866 * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
10867 * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
10868 * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
10869 * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
10870 * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
10871 * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
10872 * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
10873 * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
10874 * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
10875 * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
10876 * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
10877 * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
10878 * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
10879 * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
10880 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
10881 * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Likewise.
10882 * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
10883 * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
10884 * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
10885 * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
10886 * sysdeps/ieee754/ldbl-128/k_sincosl.c: Likewise.
10887 * sysdeps/ieee754/ldbl-128/k_sinl.c: Likewise.
10888 * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
10889 * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
10890 * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
10891 * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
10892 * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
10893 * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
10894 * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
10895 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
10896 * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
10897 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Likewise.
10898 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
10899 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c: Likewise.
10900 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
10901 * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
10902 * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
10903 * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
10904 * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
10905 * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
10906 * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
10907 * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Likewise.
10908 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
10909 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
10910 * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
10911 * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
10912 * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
10913 * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Likewise.
10914 * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
10915 * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
10916 * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
10917 * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
10918 * sysdeps/ieee754/ldbl-96/k_sinl.c: Likewise.
10919 * sysdeps/ieee754/ldbl-96/k_tanl.c: Likewise.
10920 * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
10921 * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
10922 * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
10923 * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
10924 * sysdeps/x86/fpu/powl_helper.c: Likewise.
10925 * sysdeps/ieee754/dbl-64/s_nextup.c: Include <float.h>.
10926 * sysdeps/ieee754/flt-32/s_nextupf.c: Likewise.
10927 * sysdeps/ieee754/ldbl-128/s_nextupl.c: Likewise.
10928 * sysdeps/ieee754/ldbl-128ibm/s_nextupl.c: Likewise.
10929 * sysdeps/ieee754/ldbl-96/s_nextupl.c: Likewise.
10931 2018-05-09 Joseph Myers <joseph@codesourcery.com>
10933 * sysdeps/generic/math-barriers.h: New file.
10934 * sysdeps/generic/math_private.h [!math_opt_barrier]
10935 (math_opt_barrier): Move to math-barriers.h.
10936 [!math_opt_barrier] (math_force_eval): Likewise.
10937 * sysdeps/aarch64/fpu/math-barriers.h: New file.
10938 * sysdeps/aarch64/fpu/math_private.h (math_opt_barrier): Move to
10940 (math_force_eval): Likewise.
10941 * sysdeps/alpha/fpu/math-barriers.h: New file.
10942 * sysdeps/alpha/fpu/math_private.h (math_opt_barrier): Move to
10944 (math_force_eval): Likewise.
10945 * sysdeps/x86/fpu/math-barriers.h: New file.
10946 * sysdeps/i386/fpu/fenv_private.h (math_opt_barrier): Move to
10948 (math_force_eval): Likewise.
10949 * sysdeps/m68k/m680x0/fpu/math_private.h: Move to....
10950 * sysdeps/m68k/m680x0/fpu/math-barriers.h: ... here. Adjust
10951 multiple-include guard for rename.
10952 * sysdeps/powerpc/fpu/math-barriers.h: New file.
10953 * sysdeps/powerpc/fpu/math_private.h (math_opt_barrier): Move to
10955 (math_force_eval): Likewise.
10957 2018-05-09 Paul Pluzhnikov <ppluzhnikov@google.com>
10961 * stdlib/canonicalize.c (__realpath): Fix overflow in path length
10963 * stdlib/Makefile (test-bz22786): New test.
10964 * stdlib/test-bz22786.c: New test.
10966 2018-05-09 Joseph Myers <joseph@codesourcery.com>
10968 * include/math-narrow-eval.h: New file. Contents moved from ....
10969 * sysdeps/generic/math_private.h: ... here.
10970 (math_narrow_eval): Remove macro. Moved to math-narrow-eval.h.
10971 [FLT_EVAL_METHOD != 0] (excess_precision): Likewise.
10972 * math/s_fdim_template.c: Include <math-narrow-eval.h>.
10973 * stdlib/strtod_l.c: Likewise.
10974 * sysdeps/i386/fpu/s_f32xaddf64.c: Likewise.
10975 * sysdeps/i386/fpu/s_f32xsubf64.c: Likewise.
10976 * sysdeps/i386/fpu/s_fdim.c: Likewise.
10977 * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
10978 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
10979 * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
10980 * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
10981 * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
10982 * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
10983 * sysdeps/ieee754/dbl-64/gamma_productf.c: Likewise.
10984 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
10985 * sysdeps/ieee754/dbl-64/lgamma_neg.c: Likewise.
10986 * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
10987 * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
10988 * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
10989 * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
10990 * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
10991 * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
10992 * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
10993 * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
10994 * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
10995 * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
10996 * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
10997 * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
10998 * sysdeps/ieee754/flt-32/lgamma_negf.c: Likewise.
10999 * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
11000 * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
11001 * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
11002 * sysdeps/ieee754/ldbl-96/gamma_product.c: Likewise.
11004 2018-05-08 Andreas Schwab <schwab@suse.de>
11006 * sysdeps/nptl/internaltypes.h: Fix comment.
11008 2018-05-07 H.J. Lu <hongjiu.lu@intel.com>
11010 * sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S
11011 (MEMSET_SYMBOL (__memset, erms)): Mark the debugger symbol as
11014 2018-05-07 Siddhesh Poyarekar <siddhesh@sourceware.org>
11016 * benchtests/bench-memcpy-walk.c (test_main): Move declaration
11017 of I into loop header.
11018 * benchtests/bench-memmove-walk.c
11019 (test_main): Likewise.
11021 2018-05-07 Alexandre Oliva <oliva@gnu.org>
11024 2018-04-30 Raymond Nicholson <rain1@airmail.cc>
11025 * manual/startup.texi (Aborting a Program): Remove inappropriate joke.
11027 2018-05-05 Paul Pluzhnikov <ppluzhnikov@google.com>
11030 * elf/dl-load.c (open_verify): Fix stack overflow.
11031 * elf/Makefile (tst-big-note): New test.
11032 * elf/tst-big-note-lib.S: New.
11033 * elf/tst-big-note.c: New.
11035 2018-05-04 Joseph Myers <joseph@codesourcery.com>
11037 * scripts/abilist.awk: Ignore absolute symbols.
11038 * sysdeps/mach/hurd/i386/ld.abilist: Remove absolute symbols.
11039 * sysdeps/mach/hurd/i386/libBrokenLocale.abilist: Likewise.
11040 * sysdeps/mach/hurd/i386/libanl.abilist: Likewise.
11041 * sysdeps/mach/hurd/i386/libc.abilist: Likewise.
11042 * sysdeps/mach/hurd/i386/libcrypt.abilist: Likewise.
11043 * sysdeps/mach/hurd/i386/libdl.abilist: Likewise.
11044 * sysdeps/mach/hurd/i386/libm.abilist: Likewise.
11045 * sysdeps/mach/hurd/i386/libnsl.abilist: Likewise.
11046 * sysdeps/mach/hurd/i386/libpthread.abilist: Likewise.
11047 * sysdeps/mach/hurd/i386/libresolv.abilist: Likewise.
11048 * sysdeps/mach/hurd/i386/librt.abilist: Likewise.
11049 * sysdeps/mach/hurd/i386/libutil.abilist: Likewise.
11050 * sysdeps/unix/sysv/linux/aarch64/ld.abilist: Likewise.
11051 * sysdeps/unix/sysv/linux/aarch64/libBrokenLocale.abilist: Likewise.
11052 * sysdeps/unix/sysv/linux/aarch64/libanl.abilist: Likewise.
11053 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Likewise.
11054 * sysdeps/unix/sysv/linux/aarch64/libcrypt.abilist: Likewise.
11055 * sysdeps/unix/sysv/linux/aarch64/libdl.abilist: Likewise.
11056 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
11057 * sysdeps/unix/sysv/linux/aarch64/libnsl.abilist: Likewise.
11058 * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist: Likewise.
11059 * sysdeps/unix/sysv/linux/aarch64/libresolv.abilist: Likewise.
11060 * sysdeps/unix/sysv/linux/aarch64/librt.abilist: Likewise.
11061 * sysdeps/unix/sysv/linux/aarch64/libthread_db.abilist: Likewise.
11062 * sysdeps/unix/sysv/linux/aarch64/libutil.abilist: Likewise.
11063 * sysdeps/unix/sysv/linux/alpha/ld.abilist: Likewise.
11064 * sysdeps/unix/sysv/linux/alpha/libBrokenLocale.abilist: Likewise.
11065 * sysdeps/unix/sysv/linux/alpha/libanl.abilist: Likewise.
11066 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
11067 * sysdeps/unix/sysv/linux/alpha/libcrypt.abilist: Likewise.
11068 * sysdeps/unix/sysv/linux/alpha/libdl.abilist: Likewise.
11069 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
11070 * sysdeps/unix/sysv/linux/alpha/libnsl.abilist: Likewise.
11071 * sysdeps/unix/sysv/linux/alpha/libpthread.abilist: Likewise.
11072 * sysdeps/unix/sysv/linux/alpha/libresolv.abilist: Likewise.
11073 * sysdeps/unix/sysv/linux/alpha/librt.abilist: Likewise.
11074 * sysdeps/unix/sysv/linux/alpha/libthread_db.abilist: Likewise.
11075 * sysdeps/unix/sysv/linux/alpha/libutil.abilist: Likewise.
11076 * sysdeps/unix/sysv/linux/arm/ld.abilist: Likewise.
11077 * sysdeps/unix/sysv/linux/arm/libBrokenLocale.abilist: Likewise.
11078 * sysdeps/unix/sysv/linux/arm/libanl.abilist: Likewise.
11079 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
11080 * sysdeps/unix/sysv/linux/arm/libcrypt.abilist: Likewise.
11081 * sysdeps/unix/sysv/linux/arm/libdl.abilist: Likewise.
11082 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
11083 * sysdeps/unix/sysv/linux/arm/libnsl.abilist: Likewise.
11084 * sysdeps/unix/sysv/linux/arm/libpthread.abilist: Likewise.
11085 * sysdeps/unix/sysv/linux/arm/libresolv.abilist: Likewise.
11086 * sysdeps/unix/sysv/linux/arm/librt.abilist: Likewise.
11087 * sysdeps/unix/sysv/linux/arm/libthread_db.abilist: Likewise.
11088 * sysdeps/unix/sysv/linux/arm/libutil.abilist: Likewise.
11089 * sysdeps/unix/sysv/linux/hppa/ld.abilist: Likewise.
11090 * sysdeps/unix/sysv/linux/hppa/libBrokenLocale.abilist: Likewise.
11091 * sysdeps/unix/sysv/linux/hppa/libanl.abilist: Likewise.
11092 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
11093 * sysdeps/unix/sysv/linux/hppa/libcrypt.abilist: Likewise.
11094 * sysdeps/unix/sysv/linux/hppa/libdl.abilist: Likewise.
11095 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
11096 * sysdeps/unix/sysv/linux/hppa/libnsl.abilist: Likewise.
11097 * sysdeps/unix/sysv/linux/hppa/libpthread.abilist: Likewise.
11098 * sysdeps/unix/sysv/linux/hppa/libresolv.abilist: Likewise.
11099 * sysdeps/unix/sysv/linux/hppa/librt.abilist: Likewise.
11100 * sysdeps/unix/sysv/linux/hppa/libthread_db.abilist: Likewise.
11101 * sysdeps/unix/sysv/linux/hppa/libutil.abilist: Likewise.
11102 * sysdeps/unix/sysv/linux/i386/ld.abilist: Likewise.
11103 * sysdeps/unix/sysv/linux/i386/libBrokenLocale.abilist: Likewise.
11104 * sysdeps/unix/sysv/linux/i386/libanl.abilist: Likewise.
11105 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
11106 * sysdeps/unix/sysv/linux/i386/libcrypt.abilist: Likewise.
11107 * sysdeps/unix/sysv/linux/i386/libdl.abilist: Likewise.
11108 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
11109 * sysdeps/unix/sysv/linux/i386/libnsl.abilist: Likewise.
11110 * sysdeps/unix/sysv/linux/i386/libpthread.abilist: Likewise.
11111 * sysdeps/unix/sysv/linux/i386/libresolv.abilist: Likewise.
11112 * sysdeps/unix/sysv/linux/i386/librt.abilist: Likewise.
11113 * sysdeps/unix/sysv/linux/i386/libthread_db.abilist: Likewise.
11114 * sysdeps/unix/sysv/linux/i386/libutil.abilist: Likewise.
11115 * sysdeps/unix/sysv/linux/ia64/ld.abilist: Likewise.
11116 * sysdeps/unix/sysv/linux/ia64/libBrokenLocale.abilist: Likewise.
11117 * sysdeps/unix/sysv/linux/ia64/libanl.abilist: Likewise.
11118 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
11119 * sysdeps/unix/sysv/linux/ia64/libcrypt.abilist: Likewise.
11120 * sysdeps/unix/sysv/linux/ia64/libdl.abilist: Likewise.
11121 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
11122 * sysdeps/unix/sysv/linux/ia64/libnsl.abilist: Likewise.
11123 * sysdeps/unix/sysv/linux/ia64/libpthread.abilist: Likewise.
11124 * sysdeps/unix/sysv/linux/ia64/libresolv.abilist: Likewise.
11125 * sysdeps/unix/sysv/linux/ia64/librt.abilist: Likewise.
11126 * sysdeps/unix/sysv/linux/ia64/libthread_db.abilist: Likewise.
11127 * sysdeps/unix/sysv/linux/ia64/libutil.abilist: Likewise.
11128 * sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist: Likewise.
11129 * sysdeps/unix/sysv/linux/m68k/coldfire/libBrokenLocale.abilist:
11131 * sysdeps/unix/sysv/linux/m68k/coldfire/libanl.abilist: Likewise.
11132 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
11133 * sysdeps/unix/sysv/linux/m68k/coldfire/libcrypt.abilist: Likewise.
11134 * sysdeps/unix/sysv/linux/m68k/coldfire/libdl.abilist: Likewise.
11135 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
11136 * sysdeps/unix/sysv/linux/m68k/coldfire/libnsl.abilist: Likewise.
11137 * sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist: Likewise.
11138 * sysdeps/unix/sysv/linux/m68k/coldfire/libresolv.abilist: Likewise.
11139 * sysdeps/unix/sysv/linux/m68k/coldfire/librt.abilist: Likewise.
11140 * sysdeps/unix/sysv/linux/m68k/coldfire/libthread_db.abilist: Likewise.
11141 * sysdeps/unix/sysv/linux/m68k/coldfire/libutil.abilist: Likewise.
11142 * sysdeps/unix/sysv/linux/m68k/m680x0/ld.abilist: Likewise.
11143 * sysdeps/unix/sysv/linux/m68k/m680x0/libBrokenLocale.abilist:
11145 * sysdeps/unix/sysv/linux/m68k/m680x0/libanl.abilist: Likewise.
11146 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
11147 * sysdeps/unix/sysv/linux/m68k/m680x0/libcrypt.abilist: Likewise.
11148 * sysdeps/unix/sysv/linux/m68k/m680x0/libdl.abilist: Likewise.
11149 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
11150 * sysdeps/unix/sysv/linux/m68k/m680x0/libnsl.abilist: Likewise.
11151 * sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist: Likewise.
11152 * sysdeps/unix/sysv/linux/m68k/m680x0/libresolv.abilist: Likewise.
11153 * sysdeps/unix/sysv/linux/m68k/m680x0/librt.abilist: Likewise.
11154 * sysdeps/unix/sysv/linux/m68k/m680x0/libthread_db.abilist: Likewise.
11155 * sysdeps/unix/sysv/linux/m68k/m680x0/libutil.abilist: Likewise.
11156 * sysdeps/unix/sysv/linux/microblaze/ld.abilist: Likewise.
11157 * sysdeps/unix/sysv/linux/microblaze/libBrokenLocale.abilist: Likewise.
11158 * sysdeps/unix/sysv/linux/microblaze/libanl.abilist: Likewise.
11159 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
11160 * sysdeps/unix/sysv/linux/microblaze/libcrypt.abilist: Likewise.
11161 * sysdeps/unix/sysv/linux/microblaze/libdl.abilist: Likewise.
11162 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
11163 * sysdeps/unix/sysv/linux/microblaze/libnsl.abilist: Likewise.
11164 * sysdeps/unix/sysv/linux/microblaze/libpthread.abilist: Likewise.
11165 * sysdeps/unix/sysv/linux/microblaze/libresolv.abilist: Likewise.
11166 * sysdeps/unix/sysv/linux/microblaze/librt.abilist: Likewise.
11167 * sysdeps/unix/sysv/linux/microblaze/libthread_db.abilist: Likewise.
11168 * sysdeps/unix/sysv/linux/microblaze/libutil.abilist: Likewise.
11169 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
11170 * sysdeps/unix/sysv/linux/mips/mips32/ld.abilist: Likewise.
11171 * sysdeps/unix/sysv/linux/mips/mips32/libBrokenLocale.abilist:
11173 * sysdeps/unix/sysv/linux/mips/mips32/libanl.abilist: Likewise.
11174 * sysdeps/unix/sysv/linux/mips/mips32/libcidn.abilist: Likewise.
11175 * sysdeps/unix/sysv/linux/mips/mips32/libcrypt.abilist: Likewise.
11176 * sysdeps/unix/sysv/linux/mips/mips32/libdl.abilist: Likewise.
11177 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
11178 * sysdeps/unix/sysv/linux/mips/mips32/libnsl.abilist: Likewise.
11179 * sysdeps/unix/sysv/linux/mips/mips32/libnss_compat.abilist: Likewise.
11180 * sysdeps/unix/sysv/linux/mips/mips32/libnss_db.abilist: Likewise.
11181 * sysdeps/unix/sysv/linux/mips/mips32/libnss_dns.abilist: Likewise.
11182 * sysdeps/unix/sysv/linux/mips/mips32/libnss_files.abilist: Likewise.
11183 * sysdeps/unix/sysv/linux/mips/mips32/libnss_hesiod.abilist: Likewise.
11184 * sysdeps/unix/sysv/linux/mips/mips32/libnss_nis.abilist: Likewise.
11185 * sysdeps/unix/sysv/linux/mips/mips32/libnss_nisplus.abilist: Likewise.
11186 * sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist: Likewise.
11187 * sysdeps/unix/sysv/linux/mips/mips32/libresolv.abilist: Likewise.
11188 * sysdeps/unix/sysv/linux/mips/mips32/librt.abilist: Likewise.
11189 * sysdeps/unix/sysv/linux/mips/mips32/libthread_db.abilist: Likewise.
11190 * sysdeps/unix/sysv/linux/mips/mips32/libutil.abilist: Likewise.
11191 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: Likewise.
11192 * sysdeps/unix/sysv/linux/mips/mips64/libBrokenLocale.abilist:
11194 * sysdeps/unix/sysv/linux/mips/mips64/libanl.abilist: Likewise.
11195 * sysdeps/unix/sysv/linux/mips/mips64/libcrypt.abilist: Likewise.
11196 * sysdeps/unix/sysv/linux/mips/mips64/libdl.abilist: Likewise.
11197 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
11198 * sysdeps/unix/sysv/linux/mips/mips64/libnsl.abilist: Likewise.
11199 * sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist: Likewise.
11200 * sysdeps/unix/sysv/linux/mips/mips64/librt.abilist: Likewise.
11201 * sysdeps/unix/sysv/linux/mips/mips64/libthread_db.abilist: Likewise.
11202 * sysdeps/unix/sysv/linux/mips/mips64/libutil.abilist: Likewise.
11203 * sysdeps/unix/sysv/linux/mips/mips64/n32/ld.abilist: Likewise.
11204 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
11205 * sysdeps/unix/sysv/linux/mips/mips64/n32/libresolv.abilist: Likewise.
11206 * sysdeps/unix/sysv/linux/mips/mips64/n64/ld.abilist: Likewise.
11207 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
11208 * sysdeps/unix/sysv/linux/mips/mips64/n64/libresolv.abilist: Likewise.
11209 * sysdeps/unix/sysv/linux/nios2/ld.abilist: Likewise.
11210 * sysdeps/unix/sysv/linux/nios2/libBrokenLocale.abilist: Likewise.
11211 * sysdeps/unix/sysv/linux/nios2/libanl.abilist: Likewise.
11212 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
11213 * sysdeps/unix/sysv/linux/nios2/libcrypt.abilist: Likewise.
11214 * sysdeps/unix/sysv/linux/nios2/libdl.abilist: Likewise.
11215 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
11216 * sysdeps/unix/sysv/linux/nios2/libnsl.abilist: Likewise.
11217 * sysdeps/unix/sysv/linux/nios2/libpthread.abilist: Likewise.
11218 * sysdeps/unix/sysv/linux/nios2/libresolv.abilist: Likewise.
11219 * sysdeps/unix/sysv/linux/nios2/librt.abilist: Likewise.
11220 * sysdeps/unix/sysv/linux/nios2/libthread_db.abilist: Likewise.
11221 * sysdeps/unix/sysv/linux/nios2/libutil.abilist: Likewise.
11222 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist: Likewise.
11223 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Likewise.
11224 * sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist: Likewise.
11225 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libBrokenLocale.abilist:
11227 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libanl.abilist: Likewise.
11228 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libcrypt.abilist: Likewise.
11229 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libdl.abilist: Likewise.
11230 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libnsl.abilist: Likewise.
11231 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist:
11233 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libresolv.abilist:
11235 * sysdeps/unix/sysv/linux/powerpc/powerpc32/librt.abilist: Likewise.
11236 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libthread_db.abilist:
11238 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libutil.abilist: Likewise.
11239 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
11241 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
11243 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist: Likewise.
11244 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist: Likewise.
11245 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale-le.abilist:
11247 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale.abilist:
11249 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl-le.abilist:
11251 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl.abilist: Likewise.
11252 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist: Likewise.
11253 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: Likewise.
11254 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt-le.abilist:
11256 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt.abilist: Likewise.
11257 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl-le.abilist: Likewise.
11258 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl.abilist: Likewise.
11259 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Likewise.
11260 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Likewise.
11261 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl-le.abilist:
11263 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl.abilist: Likewise.
11264 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread-le.abilist:
11266 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread.abilist:
11268 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv-le.abilist:
11270 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv.abilist:
11272 * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt-le.abilist: Likewise.
11273 * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt.abilist: Likewise.
11274 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db-le.abilist:
11276 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db.abilist:
11278 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil-le.abilist:
11280 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil.abilist: Likewise.
11281 * sysdeps/unix/sysv/linux/riscv/rv64/ld.abilist: Likewise.
11282 * sysdeps/unix/sysv/linux/riscv/rv64/libBrokenLocale.abilist:
11284 * sysdeps/unix/sysv/linux/riscv/rv64/libanl.abilist: Likewise.
11285 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist: Likewise.
11286 * sysdeps/unix/sysv/linux/riscv/rv64/libcrypt.abilist: Likewise.
11287 * sysdeps/unix/sysv/linux/riscv/rv64/libdl.abilist: Likewise.
11288 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
11289 * sysdeps/unix/sysv/linux/riscv/rv64/libnsl.abilist: Likewise.
11290 * sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist: Likewise.
11291 * sysdeps/unix/sysv/linux/riscv/rv64/libresolv.abilist: Likewise.
11292 * sysdeps/unix/sysv/linux/riscv/rv64/librt.abilist: Likewise.
11293 * sysdeps/unix/sysv/linux/riscv/rv64/libthread_db.abilist: Likewise.
11294 * sysdeps/unix/sysv/linux/riscv/rv64/libutil.abilist: Likewise.
11295 * sysdeps/unix/sysv/linux/s390/libanl.abilist: Likewise.
11296 * sysdeps/unix/sysv/linux/s390/s390-32/ld.abilist: Likewise.
11297 * sysdeps/unix/sysv/linux/s390/s390-32/libBrokenLocale.abilist:
11299 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
11300 * sysdeps/unix/sysv/linux/s390/s390-32/libcrypt.abilist: Likewise.
11301 * sysdeps/unix/sysv/linux/s390/s390-32/libdl.abilist: Likewise.
11302 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
11303 * sysdeps/unix/sysv/linux/s390/s390-32/libnsl.abilist: Likewise.
11304 * sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist: Likewise.
11305 * sysdeps/unix/sysv/linux/s390/s390-32/libresolv.abilist: Likewise.
11306 * sysdeps/unix/sysv/linux/s390/s390-32/librt.abilist: Likewise.
11307 * sysdeps/unix/sysv/linux/s390/s390-32/libthread_db.abilist: Likewise.
11308 * sysdeps/unix/sysv/linux/s390/s390-32/libutil.abilist: Likewise.
11309 * sysdeps/unix/sysv/linux/s390/s390-64/ld.abilist: Likewise.
11310 * sysdeps/unix/sysv/linux/s390/s390-64/libBrokenLocale.abilist:
11312 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
11313 * sysdeps/unix/sysv/linux/s390/s390-64/libcrypt.abilist: Likewise.
11314 * sysdeps/unix/sysv/linux/s390/s390-64/libdl.abilist: Likewise.
11315 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
11316 * sysdeps/unix/sysv/linux/s390/s390-64/libnsl.abilist: Likewise.
11317 * sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist: Likewise.
11318 * sysdeps/unix/sysv/linux/s390/s390-64/libresolv.abilist: Likewise.
11319 * sysdeps/unix/sysv/linux/s390/s390-64/librt.abilist: Likewise.
11320 * sysdeps/unix/sysv/linux/s390/s390-64/libthread_db.abilist: Likewise.
11321 * sysdeps/unix/sysv/linux/s390/s390-64/libutil.abilist: Likewise.
11322 * sysdeps/unix/sysv/linux/sh/ld.abilist: Likewise.
11323 * sysdeps/unix/sysv/linux/sh/libBrokenLocale.abilist: Likewise.
11324 * sysdeps/unix/sysv/linux/sh/libanl.abilist: Likewise.
11325 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
11326 * sysdeps/unix/sysv/linux/sh/libcrypt.abilist: Likewise.
11327 * sysdeps/unix/sysv/linux/sh/libdl.abilist: Likewise.
11328 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
11329 * sysdeps/unix/sysv/linux/sh/libnsl.abilist: Likewise.
11330 * sysdeps/unix/sysv/linux/sh/libpthread.abilist: Likewise.
11331 * sysdeps/unix/sysv/linux/sh/libresolv.abilist: Likewise.
11332 * sysdeps/unix/sysv/linux/sh/librt.abilist: Likewise.
11333 * sysdeps/unix/sysv/linux/sh/libthread_db.abilist: Likewise.
11334 * sysdeps/unix/sysv/linux/sh/libutil.abilist: Likewise.
11335 * sysdeps/unix/sysv/linux/sparc/sparc32/ld.abilist: Likewise.
11336 * sysdeps/unix/sysv/linux/sparc/sparc32/libBrokenLocale.abilist:
11338 * sysdeps/unix/sysv/linux/sparc/sparc32/libanl.abilist: Likewise.
11339 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
11340 * sysdeps/unix/sysv/linux/sparc/sparc32/libcrypt.abilist: Likewise.
11341 * sysdeps/unix/sysv/linux/sparc/sparc32/libdl.abilist: Likewise.
11342 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
11343 * sysdeps/unix/sysv/linux/sparc/sparc32/libnsl.abilist: Likewise.
11344 * sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist: Likewise.
11345 * sysdeps/unix/sysv/linux/sparc/sparc32/libresolv.abilist: Likewise.
11346 * sysdeps/unix/sysv/linux/sparc/sparc32/librt.abilist: Likewise.
11347 * sysdeps/unix/sysv/linux/sparc/sparc32/libthread_db.abilist: Likewise.
11348 * sysdeps/unix/sysv/linux/sparc/sparc32/libutil.abilist: Likewise.
11349 * sysdeps/unix/sysv/linux/sparc/sparc64/ld.abilist: Likewise.
11350 * sysdeps/unix/sysv/linux/sparc/sparc64/libBrokenLocale.abilist:
11352 * sysdeps/unix/sysv/linux/sparc/sparc64/libanl.abilist: Likewise.
11353 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
11354 * sysdeps/unix/sysv/linux/sparc/sparc64/libcrypt.abilist: Likewise.
11355 * sysdeps/unix/sysv/linux/sparc/sparc64/libdl.abilist: Likewise.
11356 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
11357 * sysdeps/unix/sysv/linux/sparc/sparc64/libnsl.abilist: Likewise.
11358 * sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist: Likewise.
11359 * sysdeps/unix/sysv/linux/sparc/sparc64/libresolv.abilist: Likewise.
11360 * sysdeps/unix/sysv/linux/sparc/sparc64/librt.abilist: Likewise.
11361 * sysdeps/unix/sysv/linux/sparc/sparc64/libthread_db.abilist: Likewise.
11362 * sysdeps/unix/sysv/linux/sparc/sparc64/libutil.abilist: Likewise.
11363 * sysdeps/unix/sysv/linux/x86_64/64/ld.abilist: Likewise.
11364 * sysdeps/unix/sysv/linux/x86_64/64/libBrokenLocale.abilist: Likewise.
11365 * sysdeps/unix/sysv/linux/x86_64/64/libanl.abilist: Likewise.
11366 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
11367 * sysdeps/unix/sysv/linux/x86_64/64/libcrypt.abilist: Likewise.
11368 * sysdeps/unix/sysv/linux/x86_64/64/libdl.abilist: Likewise.
11369 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
11370 * sysdeps/unix/sysv/linux/x86_64/64/libnsl.abilist: Likewise.
11371 * sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist: Likewise.
11372 * sysdeps/unix/sysv/linux/x86_64/64/libresolv.abilist: Likewise.
11373 * sysdeps/unix/sysv/linux/x86_64/64/librt.abilist: Likewise.
11374 * sysdeps/unix/sysv/linux/x86_64/64/libthread_db.abilist: Likewise.
11375 * sysdeps/unix/sysv/linux/x86_64/64/libutil.abilist: Likewise.
11376 * sysdeps/unix/sysv/linux/x86_64/libmvec.abilist: Likewise.
11377 * sysdeps/unix/sysv/linux/x86_64/x32/ld.abilist: Likewise.
11378 * sysdeps/unix/sysv/linux/x86_64/x32/libBrokenLocale.abilist: Likewise.
11379 * sysdeps/unix/sysv/linux/x86_64/x32/libanl.abilist: Likewise.
11380 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
11381 * sysdeps/unix/sysv/linux/x86_64/x32/libcrypt.abilist: Likewise.
11382 * sysdeps/unix/sysv/linux/x86_64/x32/libdl.abilist: Likewise.
11383 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
11384 * sysdeps/unix/sysv/linux/x86_64/x32/libnsl.abilist: Likewise.
11385 * sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist: Likewise.
11386 * sysdeps/unix/sysv/linux/x86_64/x32/libresolv.abilist: Likewise.
11387 * sysdeps/unix/sysv/linux/x86_64/x32/librt.abilist: Likewise.
11388 * sysdeps/unix/sysv/linux/x86_64/x32/libthread_db.abilist: Likewise.
11389 * sysdeps/unix/sysv/linux/x86_64/x32/libutil.abilist: Likewise.
11391 2018-05-04 Stefan Liebler <stli@linux.vnet.ibm.com>
11394 * sysdeps/nptl/lowlevellock.h (lll_wait_tid):
11395 Use atomic_load_acquire to load __tid.
11397 2018-05-02 H.J. Lu <hongjiu.lu@intel.com>
11399 * sysdeps/unix/sysv/linux/x86_64/swapcontext.S (__swapcontext):
11400 Restore the pointer into %rdx, after syscall and use %rdx,
11401 instead of %rsi, to restore context.
11403 2018-05-02 H.J. Lu <hongjiu.lu@intel.com>
11405 * sysdeps/unix/sysv/linux/x86_64/setcontext.S (__setcontext):
11406 Pop the pointer into %rdx after syscall and use %rdx, instead
11407 of %rsi, to restore context.
11409 2018-05-02 H.J. Lu <hongjiu.lu@intel.com>
11411 * nptl/pthread_create.c (START_THREAD_DEFN): Clear previous
11412 handlers after setjmp.
11413 * setjmp/longjmp.c (__libc_longjmp): Don't define alias if
11415 * sysdeps/unix/sysv/linux/x86/setjmpP.h: Include
11416 <libc-pointer-arith.h>.
11417 (_JUMP_BUF_SIGSET_BITS_PER_WORD): New.
11418 (_JUMP_BUF_SIGSET_NSIG): Changed to 96.
11419 (_JUMP_BUF_SIGSET_NWORDS): Changed to use ALIGN_UP and
11420 _JUMP_BUF_SIGSET_BITS_PER_WORD.
11421 * sysdeps/x86/Makefile (sysdep_routines): Add __longjmp_cancel.
11422 * sysdeps/x86/__longjmp_cancel.S: New file.
11423 * sysdeps/x86/longjmp.c: Likewise.
11424 * sysdeps/x86/nptl/pt-longjmp.c: Likewise.
11426 2018-05-02 Adhemerval Zanella <adhemerval.zanella@linaro.org>
11428 * NEWS: Add ustat.h deprecation entry.
11429 * bits/ustat.h: Remove file.
11430 * misc/sys/ustat.h: Likewise.
11431 * misc/ustat.h: Likewise.
11432 * sysdeps/unix/sysv/linux/generic/ustat.c: Likewise.
11433 * misc/Makefile (headers): Remove ustat.h and sys/ustat.h.
11434 * misc/ustat.c (__ustat): Rename to __old_ustat and export only in
11435 compatibility mode.
11436 * sysdeps/unix/sysv/linux/ustat.c (__ustat): Likewise.
11437 * sysdeps/unix/sysv/linux/mips/ustat.c: Define DEV_TO_KDEV and use
11438 generic Linux implementation.
11440 2018-04-30 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
11442 * math/w_exp_compat.c: Replace hidden_def with libm_hidden_def..
11443 * math/w_expl_compat.c: Likewise.
11444 * math/w_exp_template.c: Likewise. Remove hidden_def_x.
11446 2018-04-30 Raymond Nicholson <rain1@airmail.cc>
11448 * manual/startup.texi (Aborting a Program): Remove inappropriate joke.
11450 2018-04-27 Adhemerval Zanella <adhemerval.zanella@linaro.org>
11452 * sysdeps/unix/sysv/linux/arm/readahead.c: Remove file.
11453 * sysdeps/unix/sysv/linux/mips/mips32/readahead.c: Likewise.
11454 * sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list (readahead):
11456 * sysdeps/unix/sysv/linux/mips/mips64/n64/syscalls.list: Likewise.
11457 * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Likewise.
11458 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
11459 * sysdeps/unix/sysv/linux/readahead.c (__readahead): Assume
11460 __NR_readahead existence, and use INLINE_SYSCALL_CALL, __ALIGNMENT_ARG,
11463 2018-04-27 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
11465 * math/e_exp2_template.c: Replace M_SUF (M_LN2) with M_MLIT (M_LN2).
11467 * math/w_acos_template.c: Replace M_SUF (fabs) with M_FABS.
11468 * math/w_asin_template.c: Likewise.
11469 * math/w_atanh_template.c: Likewise.
11471 2018-04-27 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
11473 * sysdeps/powerpc/preconfigure [machine == powerpc64] (machine): Define
11474 to powerpc/powerpc64/be for big-endian.
11475 [machine == powerpc64le]: Define to powerpc/powerpc64/le for
11478 * sysdeps/powerpc/powerpc64/power4/Implies: Move to powerpc64/be.
11479 * sysdeps/powerpc/powerpc64/power4/fpu/Implies: Likewise.
11480 * sysdeps/powerpc/powerpc64/power4/fpu/multiarch/Implies: Likewise.
11481 * sysdeps/powerpc/powerpc64/power4/multiarch/Implies: Likewise.
11482 * sysdeps/powerpc/powerpc64/power5+/Implies: Likewise.
11483 * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Likewise.
11484 * sysdeps/powerpc/powerpc64/power5+/fpu/multiarch/Implies: Likewise.
11485 * sysdeps/powerpc/powerpc64/power5+/multiarch/Implies: Likewise.
11486 * sysdeps/powerpc/powerpc64/power5/Implies: Likewise.
11487 * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Likewise.
11488 * sysdeps/powerpc/powerpc64/power5/fpu/multiarch/Implies: Likewise.
11489 * sysdeps/powerpc/powerpc64/power5/multiarch/Implies: Likewise.
11490 * sysdeps/powerpc/powerpc64/power6/Implies: Likewise.
11491 * sysdeps/powerpc/powerpc64/power6/fpu/Implies: Likewise.
11492 * sysdeps/powerpc/powerpc64/power6/fpu/multiarch/Implies: Likewise.
11493 * sysdeps/powerpc/powerpc64/power6/multiarch/Implies: Likewise.
11494 * sysdeps/powerpc/powerpc64/power6x/Implies: Likewise.
11495 * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: Likewise.
11496 * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: Likewise.
11497 * sysdeps/powerpc/powerpc64/power6x/multiarch/Implies: Likewise.
11498 * sysdeps/powerpc/powerpc64/power7/Implies: Likewise.
11499 * sysdeps/powerpc/powerpc64/power7/fpu/Implies: Likewise.
11500 * sysdeps/powerpc/powerpc64/power7/fpu/multiarch/Implies: Likewise.
11501 * sysdeps/powerpc/powerpc64/power7/multiarch/Implies: Likewise.
11502 * sysdeps/powerpc/powerpc64/power8/Implies: Likewise.
11503 * sysdeps/powerpc/powerpc64/power8/fpu/Implies: Likewise.
11504 * sysdeps/powerpc/powerpc64/power8/fpu/multiarch/Implies: Likewise.
11505 * sysdeps/powerpc/powerpc64/power8/multiarch/Implies: Likewise.
11506 * sysdeps/powerpc/powerpc64/power9/Implies: Likewise.
11507 * sysdeps/powerpc/powerpc64/power9/fpu/Implies: Likewise.
11508 * sysdeps/powerpc/powerpc64/power9/fpu/multiarch/Implies: Likewise.
11509 * sysdeps/powerpc/powerpc64/power9/multiarch/Implies: Likewise.
11511 * sysdeps/powerpc/powerpc64/be/power4/Implies: Move from powerpc64 and
11512 adjusted to imply powerpc64 and older processors on powerpc64/be.
11513 * sysdeps/powerpc/powerpc64/be/power4/fpu/Implies: Likewise.
11514 * sysdeps/powerpc/powerpc64/be/power4/fpu/multiarch/Implies: Likewise.
11515 * sysdeps/powerpc/powerpc64/be/power4/multiarch/Implies: Likewise.
11516 * sysdeps/powerpc/powerpc64/be/power5+/Implies: Likewise.
11517 * sysdeps/powerpc/powerpc64/be/power5+/fpu/Implies: Likewise.
11518 * sysdeps/powerpc/powerpc64/be/power5+/fpu/multiarch/Implies: Likewise.
11519 * sysdeps/powerpc/powerpc64/be/power5+/multiarch/Implies: Likewise.
11520 * sysdeps/powerpc/powerpc64/be/power5/Implies: Likewise.
11521 * sysdeps/powerpc/powerpc64/be/power5/fpu/Implies: Likewise.
11522 * sysdeps/powerpc/powerpc64/be/power5/fpu/multiarch/Implies: Likewise.
11523 * sysdeps/powerpc/powerpc64/be/power5/multiarch/Implies: Likewise.
11524 * sysdeps/powerpc/powerpc64/be/power6/Implies: Likewise.
11525 * sysdeps/powerpc/powerpc64/be/power6/fpu/Implies: Likewise.
11526 * sysdeps/powerpc/powerpc64/be/power6/fpu/multiarch/Implies: Likewise.
11527 * sysdeps/powerpc/powerpc64/be/power6/multiarch/Implies: Likewise.
11528 * sysdeps/powerpc/powerpc64/be/power6x/Implies: Likewise.
11529 * sysdeps/powerpc/powerpc64/be/power6x/fpu/Implies: Likewise.
11530 * sysdeps/powerpc/powerpc64/be/power6x/fpu/multiarch/Implies: Likewise.
11531 * sysdeps/powerpc/powerpc64/be/power6x/multiarch/Implies: Likewise.
11532 * sysdeps/powerpc/powerpc64/be/power7/Implies: Likewise.
11533 * sysdeps/powerpc/powerpc64/be/power7/fpu/Implies: Likewise.
11534 * sysdeps/powerpc/powerpc64/be/power7/fpu/multiarch/Implies: Likewise.
11535 * sysdeps/powerpc/powerpc64/be/power7/multiarch/Implies: Likewise.
11536 * sysdeps/powerpc/powerpc64/be/power8/Implies: Likewise.
11537 * sysdeps/powerpc/powerpc64/be/power8/fpu/Implies: Likewise.
11538 * sysdeps/powerpc/powerpc64/be/power8/fpu/multiarch/Implies: Likewise.
11539 * sysdeps/powerpc/powerpc64/be/power8/multiarch/Implies: Likewise.
11540 * sysdeps/powerpc/powerpc64/be/power9/Implies: Likewise.
11541 * sysdeps/powerpc/powerpc64/be/power9/fpu/Implies: Likewise.
11542 * sysdeps/powerpc/powerpc64/be/power9/fpu/multiarch/Implies: Likewise.
11543 * sysdeps/powerpc/powerpc64/be/power9/multiarch/Implies: Likewise.
11545 * sysdeps/powerpc/powerpc64/970/Implies: Move to powerpc64/be.
11546 * sysdeps/powerpc/powerpc64/be/970/Implies: Move from powerpc64/be.
11547 * sysdeps/powerpc/powerpc64/be/a2/Implies: New file.
11548 * sysdeps/powerpc/powerpc64/be/cell/Implies: Likewise.
11550 * sysdeps/powerpc/powerpc64/be/Implies: New file.
11551 * sysdeps/powerpc/powerpc64/be/fpu/Implies: Likewise.
11552 * sysdeps/powerpc/powerpc64/be/fpu/multiarch/Implies: Likewise.
11553 * sysdeps/powerpc/powerpc64/be/multiarch/Implies: Likewise.
11555 * sysdeps/powerpc/powerpc64le/Implies: Move to powerpc64/le.
11556 * sysdeps/powerpc/powerpc64le/Implies-before: Likewise.
11557 * sysdeps/powerpc/powerpc64le/Makefile: Likewise.
11558 * sysdeps/powerpc/powerpc64le/configure: Likewise.
11559 * sysdeps/powerpc/powerpc64le/configure.ac: Likewise.
11560 * sysdeps/powerpc/powerpc64le/fpu/Implies: Likewise.
11561 * sysdeps/powerpc/powerpc64le/fpu/e_sqrtf128.c: Likewise.
11562 * sysdeps/powerpc/powerpc64le/fpu/multiarch/Implies: Likewise.
11563 * sysdeps/powerpc/powerpc64le/fpu/sfp-machine.h: Likewise.
11564 * sysdeps/powerpc/powerpc64le/multiarch/Implies: Likewise.
11565 * sysdeps/powerpc/powerpc64le/power9/fpu/e_sqrtf128.c: Likewise.
11567 * sysdeps/powerpc/powerpc64/le/Implies: Move from powerpc64le.
11568 * sysdeps/powerpc/powerpc64/le/Implies-before: Likewise.
11569 * sysdeps/powerpc/powerpc64/le/Makefile: Likewise.
11570 * sysdeps/powerpc/powerpc64/le/configure: Likewise.
11571 * sysdeps/powerpc/powerpc64/le/configure.ac: Likewise.
11572 * sysdeps/powerpc/powerpc64/le/fpu/Implies: Likewise.
11573 * sysdeps/powerpc/powerpc64/le/fpu/e_sqrtf128.c: Likewise.
11574 * sysdeps/powerpc/powerpc64/le/fpu/multiarch/Implies: Likewise.
11575 * sysdeps/powerpc/powerpc64/le/fpu/sfp-machine.h: Likewise.
11576 * sysdeps/powerpc/powerpc64/le/multiarch/Implies: Likewise.
11577 * sysdeps/powerpc/powerpc64/le/power9/fpu/e_sqrtf128.c: Likewise.
11579 * sysdeps/powerpc/powerpc64le/power7/Implies: Move to powerpc64/le.
11580 * sysdeps/powerpc/powerpc64le/power7/fpu/Implies: Likewise.
11581 * sysdeps/powerpc/powerpc64le/power7/fpu/multiarch/Implies: Likewise.
11582 * sysdeps/powerpc/powerpc64le/power7/multiarch/Implies: Likewise.
11583 * sysdeps/powerpc/powerpc64le/power8/Implies: Likewise.
11584 * sysdeps/powerpc/powerpc64le/power8/fpu/Implies: Likewise.
11585 * sysdeps/powerpc/powerpc64le/power8/fpu/multiarch/Implies: Likewise.
11586 * sysdeps/powerpc/powerpc64le/power8/multiarch/Implies: Likewise.
11587 * sysdeps/powerpc/powerpc64le/power9/Implies: Likewise.
11588 * sysdeps/powerpc/powerpc64le/power9/fpu/Implies: Likewise.
11589 * sysdeps/powerpc/powerpc64le/power9/fpu/multiarch/Implies: Likewise.
11590 * sysdeps/powerpc/powerpc64le/power9/multiarch/Implies: Likewise.
11592 * sysdeps/powerpc/powerpc64/le/power7/Implies: Move from powerpc64le
11593 and adjusted to imply olders processors.
11594 * sysdeps/powerpc/powerpc64/le/power7/fpu/Implies: Likewise.
11595 * sysdeps/powerpc/powerpc64/le/power7/fpu/multiarch/Implies: Likewise.
11596 * sysdeps/powerpc/powerpc64/le/power7/multiarch/Implies: Likewise.
11597 * sysdeps/powerpc/powerpc64/le/power8/Implies: Likewise.
11598 * sysdeps/powerpc/powerpc64/le/power8/fpu/Implies: Likewise.
11599 * sysdeps/powerpc/powerpc64/le/power8/fpu/multiarch/Implies: Likewise.
11600 * sysdeps/powerpc/powerpc64/le/power8/multiarch/Implies: Likewise.
11601 * sysdeps/powerpc/powerpc64/le/power9/Implies: Likewise.
11602 * sysdeps/powerpc/powerpc64/le/power9/fpu/Implies: Likewise.
11603 * sysdeps/powerpc/powerpc64/le/power9/fpu/multiarch/Implies: Likewise.
11604 * sysdeps/powerpc/powerpc64/le/power9/multiarch/Implies: Likewise.
11606 * sysdeps/unix/sysv/linux/powerpc/powerpc64le/Implies: Move to
11608 * sysdeps/unix/sysv/linux/powerpc/powerpc64le/float128-abi.h: Likewise.
11609 * sysdeps/unix/sysv/linux/powerpc/powerpc64le/fpu/Implies: Likewise.
11611 * sysdeps/unix/sysv/linux/powerpc/powerpc64/le/Implies: Move from
11613 * sysdeps/unix/sysv/linux/powerpc/powerpc64/le/float128-abi.h: Likewise.
11614 * sysdeps/unix/sysv/linux/powerpc/powerpc64/le/fpu/Implies: Likewise.
11616 * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/Implies: Move to
11618 * sysdeps/unix/sysv/linux/powerpc/powerpc64/a2/Implies: Likewise.
11619 * sysdeps/unix/sysv/linux/powerpc/powerpc64/cell/Implies: Likewise.
11620 * sysdeps/unix/sysv/linux/powerpc/powerpc64/cell/fpu/Implies: Likewise.
11622 * sysdeps/unix/sysv/linux/powerpc/powerpc64/be/970/Implies: Move from
11623 powerpc64 and adjusted.
11624 * sysdeps/unix/sysv/linux/powerpc/powerpc64/be/a2/Implies: Likewise.
11625 * sysdeps/unix/sysv/linux/powerpc/powerpc64/be/cell/Implies: Likewise.
11626 * sysdeps/unix/sysv/linux/powerpc/powerpc64/be/cell/fpu/Implies:
11629 2018-04-27 Joseph Myers <joseph@codesourcery.com>
11631 * sysdeps/tile: Remove.
11632 * sysdeps/unix/sysv/linux/tile: Likewise.
11633 * README (tilegx-*-linux-gnu): Remove from list of supported
11635 * manual/contrib.texi (Contributors): Mention Chris Metcalf's
11636 contribution of support for generic Linux kernel syscall
11638 * scripts/build-many-glibcs.py (Context.add_all_configs): Remove
11639 tilegx configurations.
11640 (Config.install_linux_headers): Do not handle tile.
11641 * sysdeps/unix/sysv/linux/aarch64/ldsodefs.h: Do not mention Tile
11643 * sysdeps/unix/sysv/linux/nios2/Makefile: Likewise.
11644 * sysdeps/unix/sysv/linux/posix_fadvise.c: Likewise.
11645 [__ASSUME_FADVISE64_64_NO_ALIGN] (__ALIGNMENT_ARG): Remove
11646 conditional undefine and redefine.
11647 * sysdeps/unix/sysv/linux/posix_fadvise64.c: Do not mention Tile
11649 [__ASSUME_FADVISE64_64_NO_ALIGN] (__ALIGNMENT_ARG): Remove
11650 conditional undefine and redefine.
11652 2018-04-26 Aurelien Jarno <aurelien@aurel32.net>
11654 * signal/tst-sigaction.c: New file to test BZ #23069.
11655 * signal/Makefile (tests): Fix indentation. Add tst-sigaction.
11657 2018-04-26 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
11660 * include/dlfcn.h [__libc_dl_open]: Replace RTLD_LAZY with RTLD_NOW.
11661 * sysdeps/gnu/unwind-resume.c (__lib_gcc_s_init): Replace
11662 __libc_dlopen_mode() using RTLD_NOW with __libc_dlopen.
11663 * sysdeps/nptl/unwind-forcedunwind.c: Likewise.
11665 2018-04-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
11667 * sysdeps/unix/sysv/linux/getdirentries.c (getdirentries): Build iff
11668 _DIRENT_MATCHES_DIRENT64 is not defined.
11669 * sysdeps/unix/sysv/linux/getdirentries64.c (getdirentries64): Open
11670 implementation and alias to getdirentries if _DIRENT_MATCHES_DIRENT64
11672 * sysdeps/unix/sysv/linux/wordsize-64/getdirentries.c: Remove file.
11673 * sysdeps/unix/sysv/linux/wordsize-64/getdirentries64.c: Remove file.
11675 2018-04-25 Joseph Myers <joseph@codesourcery.com>
11677 * scripts/build-many-glibcs.py (Context.checkout): Default GCC
11678 version to GCC 8 branch.
11680 2018-04-24 Joseph Myers <joseph@codesourcery.com>
11682 * sysdeps/mach/hurd/dl-sysdep.c: Include <not-errno.h>.
11683 (check_no_hidden): Use type of original function when declaring
11686 * sysdeps/unix/sysv/linux/sys/ptrace.h
11687 (PTRACE_SECCOMP_GET_METADATA): New enum value and macro.
11688 * sysdeps/unix/sysv/linux/bits/ptrace-shared.h
11689 (struct __ptrace_seccomp_metadata): New type.
11690 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h
11691 (PTRACE_SECCOMP_GET_METADATA): Likewise.
11692 * sysdeps/unix/sysv/linux/arm/sys/ptrace.h
11693 (PTRACE_SECCOMP_GET_METADATA): Likewise.
11694 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h
11695 (PTRACE_SECCOMP_GET_METADATA): Likewise.
11696 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h
11697 (PTRACE_SECCOMP_GET_METADATA): Likewise.
11698 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h
11699 (PTRACE_SECCOMP_GET_METADATA): Likewise.
11700 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h
11701 (PTRACE_SECCOMP_GET_METADATA): Likewise.
11702 * sysdeps/unix/sysv/linux/tile/sys/ptrace.h
11703 (PTRACE_SECCOMP_GET_METADATA): Likewise.
11704 * sysdeps/unix/sysv/linux/x86/sys/ptrace.h
11705 (PTRACE_SECCOMP_GET_METADATA): Likewise.
11707 2018-04-23 Adhemerval Zanella <adhemerval.zanella@linaro.org>
11709 * dirent/alphasort.c (alphasort): Build iff _DIRENT_MATCHES_DIRENT64 is
11711 * dirent/versionsort.c (versionsort): Likewise.
11712 * dirent/alphasort64.c (alphasort64): Build regardless and alias to
11713 alphasort if _DIRENT_MATCHES_DIRENT64 is defined.
11714 * dirent/versionsort64.c (versionsort64): Likewise.
11715 * sysdeps/unix/sysv/linux/i386/alphasort64.c: Remove file.
11716 * sysdeps/unix/sysv/linux/arm/alphasort64.c: Likewise.
11717 * sysdeps/unix/sysv/linux/arm/versionsort64.c: Likewise.
11718 * sysdeps/unix/sysv/linux/m68k/alphasort64.c: Likewise.
11719 * sysdeps/unix/sysv/linux/m68k/versionsort64.c: Likewise.
11720 * sysdeps/unix/sysv/linux/s390/s390-32/alphasort64.c: Likewise.
11721 * sysdeps/unix/sysv/linux/s390/s390-32/versionsort64.c: Likewise.
11722 * sysdeps/unix/sysv/linux/i386/versionsort64.c: Likewise.
11723 * sysdeps/unix/sysv/linux/alphasort64.c: New file.
11724 * sysdeps/unix/sysv/linux/versionsort64.c: Likewise.
11725 * sysdeps/unix/sysv/linux/powerpc/powerpc32/alphasort64.c: Likewise.
11726 * sysdeps/unix/sysv/linux/powerpc/powerpc32/versionsort64.c: Likewise.
11727 * sysdeps/unix/sysv/linux/sparc/sparc32/alphasort64.c: Likewise.
11728 * sysdeps/unix/sysv/linux/sparc/sparc32/versionsort64.c: Likewise.
11730 2018-04-23 Joseph Myers <joseph@codesourcery.com>
11732 * elf/elf.h (NT_PPC_PKEY): New macro.
11734 2018-04-23 Dragan Stanojevic - Nevidljivi <invisible@hidden-city.net>
11737 * localedata/locales/hr_HR: fix thousands_sep and
11740 2018-04-20 Joseph Myers <joseph@codesourcery.com>
11742 * sysdeps/unix/sysv/linux/alpha/bits/termios.h [__USE_MISC]
11743 (XTABS): Define to TAB3.
11745 2018-04-20 Adhemerval Zanella <adhemerval.zanella@linaro.org>
11747 * sysdeps/hppa/fpu/libm-test-ulps: Update.
11749 * dirent/scandir-tail-common.c: New file.
11750 * dirent/scandir-tail.c: Use scandir-tail-common.c.
11751 (__scandir_tail): Build iff _DIRENT_MATCHES_DIRENT64 is not defined.
11752 * dirent/scandir.c: Use scandir-tail-common.c.
11753 * dirent/scandirat.c: Likewise.
11754 * dirent/scandir64-tail.c: Use scandir-tail-common.c.
11755 * dirent/scandir64.c (scandir64): Always build and alias to scandir
11756 if _DIRENT_MATCHES_DIRENT64 is defined.
11757 * dirent/scandirat64.c (scandirat64): Likewise.
11758 * include/dirent.h (__scandir_tail): Only define iff
11759 _DIRENT_MATCHES_DIRENT64 is not defined.
11760 (__scandir64_tail): Define regardless.
11761 (__scandirat, scandirat64): Remove libc_hidden_proto.
11762 * sysdeps/unix/sysv/linux/arm/scandir64.c: Remove file.
11763 * sysdeps/unix/sysv/linux/m68k/scandir64.c: Likewise.
11764 * sysdeps/unix/sysv/linux/powerpc/powerpc32/scandir64.c: Likewise.
11765 * sysdeps/unix/sysv/linux/s390/s390-32/scandir64.c: Likewise.
11766 * sysdeps/unix/sysv/linux/i386/scandir64.c: Likewise.
11767 * sysdeps/unix/sysv/linux/sparc/sparc32/scandir64.c: Likewise.
11768 * sysdeps/unix/sysv/linux/scandir64.c: New file.
11770 2018-04-20 Joseph Myers <joseph@codesourcery.com>
11772 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_ASIMDFHM):
11774 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c (_DL_HWCAP_COUNT):
11776 (_dl_aarch64_cap_flags): Add asimdfhm.
11778 2018-04-19 Chung-Lin Tang <cltang@codesourcery.com>
11780 * sysdeps/nios2/libm-test-ulps: Update.
11782 2018-04-19 Adhemerval Zanella <adhemerval.zanella@linaro.org>
11784 * sysdeps/unix/sysv/linux/mips/mips64/getdents64.c (__getdents64):
11785 Only alias to __getdents for _DIRENT_MATCHES_DIRENT64.
11787 * sysdeps/unix/sysv/linux/alpha/getdents.c: Add comments with alpha
11789 (_DIRENT_MATCHES_DIRENT64): Undef
11790 * sysdeps/unix/sysv/linux/alpha/getdents64.c: Likewise.
11791 * sysdeps/unix/sysv/linux/arm/getdents64.c: Remove file.
11792 * sysdeps/unix/sysv/linux/generic/getdents.c: Likewise.
11793 * sysdeps/unix/sysv/linux/generic/getdents64.c: Likewise.
11794 * sysdeps/unix/sysv/linux/generic/wordsize-32/getdents.c: Likewise.
11795 * sysdeps/unix/sysv/linux/getdents.c: Simplify implementation by
11796 use getdents64 syscalls as base.
11797 * sysdeps/unix/sysv/linux/getdents64.c: Likewise and add compatibility
11798 symbol if required.
11799 * sysdeps/unix/sysv/linux/hppa/getdents64.c: Likewise.
11800 * sysdeps/unix/sysv/linux/i386/getdents64.c: Likewise.
11801 * sysdeps/unix/sysv/linux/m68k/getdents64.c: Likewise.
11802 * sysdeps/unix/sysv/linux/powerpc/getdents64.c: Likewise.
11803 * sysdeps/unix/sysv/linux/s390/s390-32/getdents64.c: Likewise.
11804 * sysdeps/unix/sysv/linux/sparc/sparc32/getdents64.c: Likewise.
11805 * sysdeps/unix/sysv/linux/wordsize-64/getdents.c: Likewise.
11806 * sysdeps/unix/sysv/linux/wordsize-64/getdents64.c: Likewise.
11807 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
11808 (__get_clockfreq_via_proc_openprom): Use __getdents64.
11809 * sysdeps/unix/sysv/linux/mips/mips64/getdents64.c: New file.
11811 2018-04-19 Stefan Liebler <stli@linux.vnet.ibm.com>
11813 * scripts/test_printers_common.py (init_test): Disable lock elision.
11815 2018-04-19 Stefan Liebler <stli@linux.vnet.ibm.com>
11817 * math/test-tgmath.c (count_double, count_float,
11818 count_ldouble, count_cdouble, count_cfloat,
11819 count_cldouble): Use volatile int.
11821 2018-04-19 Samuel Thibault <samuel.thibault@ens-lyon.org>
11823 * sysdeps/mach/hurd/i386/Makefile [$(subdir) = conform]
11824 (conformtest-xfail-conds): Add i386-gnu.
11825 * conform/data/fcntl.h-data (flock.l_type, flock.l_whence): XFAIL on
11827 * conform/data/sys/ipc.h-data (ipc_perm.uid, ipc_perm.gid,
11828 ipc_perm.cuid, ipc_perm.cgid): Likewise.
11829 * conform/data/sys/msg.h-data (msqid_ds.msg_lspid,
11830 msqid_ds.msg_lrpid): Likewise.
11831 * conform/data/sys/shm.h-data (shmid_ds.shm_lpid, shmid_ds.shm_cpid):
11833 * conform/data/sys/stat.h-data (stat.st_dev): Likewise.
11834 * conform/data/sys/statvfs.h-data (statvfs.f_fsid): Likewise.
11835 * sysdeps/mach/hurd/bits/statvfs.h (struct statvfs): Make f_bsize,
11836 f_namemax, f_frsize, and f_flag fields unsigned long int instead of
11838 (struct statvfs64): Likewise.
11839 * sysdeps/mach/hurd/bits/statfs.h (struct statfs, struct statfs64):
11841 * bits/in.h [!__USE_MISC]: Do not define struct ip_opts.
11842 * conform/data/netinet/in.h-data: Allow sin_ and sin6_ prefix.
11843 * sysdeps/gnu/bits/msq.h (struct msqid_ds): Use __wait_queue struct
11844 instead of wait_queue.
11845 * sysdeps/gnu/bits/shm.h (struct shmid_ds): Use __vm_area_struct
11846 instead of vm_area_struct.
11847 * bits/sched.h: Include <bits/types/struct_sched_param.h> and move
11848 struct sched_param definition to it.
11849 * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
11850 * bits/types/struct_sched_param.h: New file.
11851 * sysdeps/htl/bits/types/struct___pthread_attr.h: Include
11852 <bits/types/struct_sched_param.h> instead of <sched.h>.
11853 * posix/Makefile (headers): Add bits/types/struct_sched_param.h.
11854 * sysdeps/pthread/bits/types/sigevent_t.h: New file, based on the
11855 generic version but include <bits/pthreadtypes.h> to make struct
11856 sigevent's sigev_notify_attributes field a pthread_attr_t*.
11857 * bits/types/siginfo_t.h: Remove siginfo struct name, unused and
11859 * bits/termios.h [__USE_XOPEN || __USE_XOPEN2K8] (IXANY): Define.
11860 [__USE_XOPEN && !__USE_XOPEN2K] (IUCLC, OLCUC): Define.
11861 [__USE_XOPEN] (OFDEL): New macro.
11862 [__USE_XOPEN && !__USE_XOPEN2K] (XCASE): New macro.
11863 * bits/resource.h (RLIM_SAVED_MAX, RLIM_SAVED_CUR): New macros.
11864 * sysdeps/hurd/include/hurd.h [!_ISOMAC]: Do not declare libc hidden
11866 * sysdeps/hurd/include/hurd/fd.h [!_ISOMAC]: Likewise.
11867 * sysdeps/hurd/include/hurd/signal.h [!_ISOMAC]: Likewise.
11868 * sysdeps/arm/sys/ucontext.h: Remove fpregset struct name, unused and
11870 * sysdeps/i386/sys/ucontext.h: Likewise.
11871 * sysdeps/m68k/sys/ucontext.h: Likewise.
11872 * sysdeps/mips/sys/ucontext.h: Likewise.
11873 * sysdeps/unix/sysv/linux/hppa/sys/ucontext.h: Likewise.
11874 * sysdeps/mach/hurd/i386/Makefile
11875 (test-xfail-POSIX/fcntl.h/conform): Add.
11876 (test-xfail-POSIX/signal.h/conform): Add.
11877 (test-xfail-POSIX/semaphore.h/conform): Add.
11878 (test-xfail-POSIX/regex.h/conform): Add.
11879 (test-xfail-POSIX/aio.h/conform): Add.
11880 (test-xfail-POSIX/mqueue.h/conform): Add.
11881 (test-xfail-POSIX/sys/types.h/conform): Add.
11882 (test-xfail-UNIX98/fcntl.h/conform): Add.
11883 (test-xfail-UNIX98/netdb.h/conform): Add.
11884 (test-xfail-UNIX98/signal.h/conform): Add.
11885 (test-xfail-UNIX98/semaphore.h/conform): Add.
11886 (test-xfail-UNIX98/regex.h/conform): Add.
11887 (test-xfail-UNIX98/aio.h/conform): Add.
11888 (test-xfail-UNIX98/ftw.h/conform): Add.
11889 (test-xfail-UNIX98/mqueue.h/conform): Add.
11890 (test-xfail-UNIX98/netinet/in.h/conform): Add.
11891 (test-xfail-UNIX98/sys/wait.h/conform): Add.
11892 (test-xfail-UNIX98/sys/sem.h/conform): Add.
11893 (test-xfail-UNIX98/sys/uio.h/conform): Add.
11894 (test-xfail-UNIX98/sys/socket.h/conform): Add.
11895 (test-xfail-UNIX98/sys/types.h/conform): Add.
11896 (test-xfail-UNIX98/stdlib.h/conform): Add.
11897 (test-xfail-UNIX98/arpa/inet.h/conform): Add.
11898 (test-xfail-POSIX2008/fcntl.h/conform): Add.
11899 (test-xfail-POSIX2008/netdb.h/conform): Add.
11900 (test-xfail-POSIX2008/signal.h/conform): Add.
11901 (test-xfail-POSIX2008/semaphore.h/conform): Add.
11902 (test-xfail-POSIX2008/regex.h/conform): Add.
11903 (test-xfail-POSIX2008/aio.h/conform): Add.
11904 (test-xfail-POSIX2008/mqueue.h/conform): Add.
11905 (test-xfail-POSIX2008/netinet/in.h/conform): Add.
11906 (test-xfail-POSIX2008/sys/wait.h/conform): Add.
11907 (test-xfail-POSIX2008/sys/socket.h/conform): Add.
11908 (test-xfail-POSIX2008/sys/types.h/conform): Add.
11909 (test-xfail-POSIX2008/arpa/inet.h/conform): Add.
11910 (test-xfail-XOPEN2K/fcntl.h/conform): Add.
11911 (test-xfail-XOPEN2K/netdb.h/conform): Add.
11912 (test-xfail-XOPEN2K/signal.h/conform): Add.
11913 (test-xfail-XOPEN2K/semaphore.h/conform): Add.
11914 (test-xfail-XOPEN2K/regex.h/conform): Add.
11915 (test-xfail-XOPEN2K/aio.h/conform): Add.
11916 (test-xfail-XOPEN2K/ftw.h/conform): Add.
11917 (test-xfail-XOPEN2K/mqueue.h/conform): Add.
11918 (test-xfail-XOPEN2K/netinet/in.h/conform): Add.
11919 (test-xfail-XOPEN2K/sys/wait.h/conform): Add.
11920 (test-xfail-XOPEN2K/sys/sem.h/conform): Add.
11921 (test-xfail-XOPEN2K/sys/uio.h/conform): Add.
11922 (test-xfail-XOPEN2K/sys/socket.h/conform): Add.
11923 (test-xfail-XOPEN2K/sys/types.h/conform): Add.
11924 (test-xfail-XOPEN2K/stdlib.h/conform): Add.
11925 (test-xfail-XOPEN2K/arpa/inet.h/conform): Add.
11926 (test-xfail-XOPEN2K8/fcntl.h/conform): Add.
11927 (test-xfail-XOPEN2K8/netdb.h/conform): Add.
11928 (test-xfail-XOPEN2K8/signal.h/conform): Add.
11929 (test-xfail-XOPEN2K8/semaphore.h/conform): Add.
11930 (test-xfail-XOPEN2K8/regex.h/conform): Add.
11931 (test-xfail-XOPEN2K8/aio.h/conform): Add.
11932 (test-xfail-XOPEN2K8/ftw.h/conform): Add.
11933 (test-xfail-XOPEN2K8/mqueue.h/conform): Add.
11934 (test-xfail-XOPEN2K8/netinet/in.h/conform): Add.
11935 (test-xfail-XOPEN2K8/sys/wait.h/conform): Add.
11936 (test-xfail-XOPEN2K8/sys/sem.h/conform): Add.
11937 (test-xfail-XOPEN2K8/sys/uio.h/conform): Add.
11938 (test-xfail-XOPEN2K8/sys/socket.h/conform): Add.
11939 (test-xfail-XOPEN2K8/sys/types.h/conform): Add.
11940 (test-xfail-XOPEN2K8/stdlib.h/conform): Add.
11941 (test-xfail-XOPEN2K8/arpa/inet.h/conform): Add.
11942 * conform/data/signal.h-data (SA_SIGINFO, SA_NOCLDWAIT): XFAIL on
11944 * conform/data/sys/wait.h-data (WIFCONTINUED, WEXITED, WSTOPPED,
11945 WCONTINUED, WNOWAIT): XFAIL on i386-gnu.
11947 2018-04-18 Joseph Myers <joseph@codesourcery.com>
11949 * scripts/build-many-glibcs.py (Context.add_all_configs): Use
11950 --enable-obsolete for powerpc-linux-gnuspe.
11952 2018-04-18 Samuel Thibault <samuel.thibault@ens-lyon.org>
11954 * conform/data/sys/un.h-data: Allow sun_ prefix.
11955 * sysdeps/mach/include/lock-intern.h: Do not declare libc hidden
11957 * sysdeps/mach/include/mach.h: Likewise.
11958 * sysdeps/mach/include/mach/mig_support.h: Likewise.
11959 * sysdeps/mach/include/mach_error.h: Likewise.
11961 2018-04-16 Adhemerval Zanella <adhemerval.zanella@linaro.org>
11963 * sysdeps/arm/armv6t2/memchr.S (memchr): Remove ARM code path.
11964 * sysdeps/arm/armv6t2/strlen.S (memchr): Likewise.
11965 * sysdeps/arm/armv7/multiarch/memchr_neon.S (memchr): Likewise.
11966 * sysdeps/arm/armv7/strcmp.S (strcmp): Likewise.
11968 2018-04-16 Andreas Schwab <schwab@suse.de>
11971 * iconvdata/gconv-modules (ARMSCII8//, ShiftJISX0213//): New aliases.
11973 2018-04-15 Patrick McGehearty <patrick.mcgehearty@oracle.com>
11975 * sysdeps/ieee754/dbl-64/e_exp.c: faster __ieee754_exp()
11976 * sysdeps/ieee754/dbl-64/eexp.tbl: New file for e_exp.c
11978 2018-04-12 DJ Delorie <dj@redhat.com>
11980 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
11983 2018-04-12 Stefan Liebler <stli@linux.vnet.ibm.com>
11985 * sysdeps/unix/sysv/linux/s390/kernel_sigaction.h
11986 (struct kernel_sigaction): Use the same definition on 31bit as is used
11989 2018-04-09 Florian Weimer <fweimer@redhat.com>
11992 * resolv/res_send.c (send_dg): Use designated initializers instead
11993 of assignment to zero-initialize other fields of struct mmsghdr.
11995 2018-04-06 Adhemerval Zanella <adhemerval.zanella@linaro.org>
11997 * sysdeps/posix/readdir.c (__READDIR, __GETDENTS, DIRENTY_TYPE,
11998 __READDIR_ALIAS): Undefine after usage.
11999 * sysdeps/posix/readdir_r.c (__READDIR_R, __GETDENTS, DIRENT_TYPE,
12000 __READDIR_R_ALIAS): Likewise.
12001 * sysdeps/unix/sysv/linux/arm/readdir64.c: Remove file.
12002 * sysdeps/unix/sysv/linux/arm/readdir64_r.c: Likewise.
12003 * sysdeps/unix/sysv/linux/m68k/readdir64.c: Likewise.
12004 * sysdeps/unix/sysv/linux/m68k/readdir64_r.c: Likewise.
12005 * sysdeps/unix/sysv/linux/powerpc/readdir64.c: Likewise.
12006 * sysdeps/unix/sysv/linux/powerpc/readdir64_r.c: Likewise.
12007 * sysdeps/unix/sysv/linux/i386/readdir64.c: Likewise.
12008 * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
12009 * sysdeps/unix/sysv/linux/s390/s390-32/readdir64.c: Likewise.
12010 * sysdeps/unix/sysv/linux/s390/s390-32/readdir64_r.c: Likewise.
12011 * sysdeps/unix/sysv/linux/sparc/sparc32/readdir64.c: Likewise.
12012 * sysdeps/unix/sysv/linux/sparc/sparc32/readdir64_r.c: Likewise.
12013 * sysdeps/unix/sysv/linux/wordsize-64/readdir.c: Likewise.
12014 * sysdeps/unix/sysv/linux/wordsize-64/readdir64.c: Likewise.
12015 * sysdeps/unix/sysv/linux/wordsize-64/readdir64_r.c: Likewise.
12016 * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Likewise.
12017 * sysdeps/unix/sysv/linux/readdir.c: New file.
12018 * sysdeps/unix/sysv/linux/readdir_r.c: Likewise.
12019 * sysdeps/unix/sysv/linux/readdir64.c: Add compat symbol if required.
12020 * sysdeps/unix/sysv/linux/readdir64_r.c: Likewise.
12022 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Update.
12024 2018-04-06 Andreas Schwab <schwab@linux-m68k.org>
12026 * manual/charset.texi (Converting a Character): Fix typo.
12028 2018-04-05 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12030 * sysdeps/sparc/fpu/libm-test-ulps: Update.
12032 * sysdeps/arm/libm-test-ulps: Update.
12034 * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Use default Linux version
12035 as base implementation.
12036 * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
12037 * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
12038 * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
12039 * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
12040 * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
12041 * sysdeps/unix/sysv/linux/alpha/kernel_sigaction.h: Add include guards,
12042 remove unrequired definitions and update comments.
12043 * sysdeps/unix/sysv/linux/kernel_sigaction.h: Likewise.
12044 * sysdeps/unix/sysv/linux/mips/kernel_sigaction.h: Likewise.
12045 * sysdeps/unix/sysv/linux/ia64/kernel_sigaction.h: New file.
12046 * sysdeps/unix/sysv/linux/m68k/kernel_sigaction.h: Likewise.
12047 * sysdeps/unix/sysv/linux/nios2/kernel_sigaction.h: Likewise.
12048 * sysdeps/unix/sysv/linux/powerpc/kernel_sigaction: Likewise.
12049 * sysdeps/unix/sysv/linux/s390/kernel_sigaction.h: Likewise.
12050 * sysdeps/unix/sysv/linux/sh/kernel_sigaction.h: Likewise.
12051 * sysdeps/unix/sysv/linux/sparc/kernel_sigaction.h: Likewise.
12052 * sysdeps/unix/sysv/linux/tile/kernel_sigaction.h: Likewise.
12053 * sysdeps/unix/sysv/linux/ia64/sigaction.c: Remove file.
12054 * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
12055 * sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c: Likewise.
12056 * sysdeps/unix/sysv/linux/sigaction.c: Add STUB, SET_SA_RESTORER,
12057 and RESET_SA_RESTORER hooks.
12059 2018-04-05 Stefan Liebler <stli@linux.vnet.ibm.com>
12061 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
12063 2018-04-05 Florian Weimer <fweimer@redhat.com>
12065 * manual/examples/mbstouwcs.c (mbstouwcs): Fix loop termination,
12066 integer overflow, memory leak on error, and indeterminate errno
12067 value. Add a null wide character to terminate the result string.
12068 * manual/charset.texi (Converting a Character): Mention embedded
12069 null bytes in the mbrtowc input string. Explain what happens in
12070 the -2 result case. Do not claim that mbrtowc is simple or
12071 obvious to use. Adjust the description of the code example. Use
12072 @code, not @var, for concrete variables.
12074 2018-04-05 Florian Weimer <fweimer@redhat.com>
12076 * manual/examples/mbstouwcs.c: New file.
12077 * manual/charset.texi (Converting a Character): Include it.
12079 2018-04-05 Samuel Thibault <samuel.thibault@ens-lyon.org>
12081 * include/dirent.h (dirfd): Add hidden proto.
12082 * dirent/dirfd.c (dirfd): Add hidden def.
12083 * sysdeps/mach/hurd/dirfd.c (dirfd): Add hidden def.
12084 * sysdeps/posix/dirfd.c (dirfd): Add hidden def.
12086 2018-04-04 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
12088 * sysdeps/powerpc/fpu/libm-test-ulps: Increase double-precision
12089 sin, cos and sincos to 1 ULP.
12091 2018-04-04 Maciej W. Rozycki <macro@mips.com>
12094 * sysdeps/generic/ldsodefs.h (SYMBOL_ADDRESS): Handle SHN_ABS
12096 * elf/dl-addr.c (determine_info): Ignore SHN_ABS symbols.
12097 * elf/tst-absolute-sym.c: New file.
12098 * elf/tst-absolute-sym-lib.c: New file.
12099 * elf/tst-absolute-sym-lib.lds: New file.
12100 * elf/Makefile (tests): Add `tst-absolute-sym'.
12101 (modules-names): Add `tst-absolute-sym-lib'.
12102 (LDLIBS-tst-absolute-sym-lib.so): New variable.
12103 ($(objpfx)tst-absolute-sym-lib.so): New dependency.
12104 ($(objpfx)tst-absolute-sym): New dependency.
12107 * sysdeps/generic/ldsodefs.h (LOOKUP_VALUE_ADDRESS): Add `set'
12109 (SYMBOL_ADDRESS): New macro.
12110 [!ELF_FUNCTION_PTR_IS_SPECIAL] (DL_SYMBOL_ADDRESS): Use
12111 SYMBOL_ADDRESS for symbol address calculation.
12112 * elf/dl-runtime.c (_dl_fixup): Likewise.
12113 (_dl_profile_fixup): Likewise.
12114 * elf/dl-symaddr.c (_dl_symbol_address): Likewise.
12115 * elf/rtld.c (dl_main): Likewise.
12116 * sysdeps/aarch64/dl-machine.h (elf_machine_rela): Likewise.
12117 * sysdeps/alpha/dl-machine.h (elf_machine_rela): Likewise.
12118 * sysdeps/arm/dl-machine.h (elf_machine_rel): Likewise.
12119 (elf_machine_rela): Likewise.
12120 * sysdeps/hppa/dl-machine.h (elf_machine_rela): Likewise.
12121 * sysdeps/hppa/dl-symaddr.c (_dl_symbol_address): Likewise.
12122 * sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
12123 (elf_machine_rela): Likewise.
12124 * sysdeps/ia64/dl-machine.h (elf_machine_rela): Likewise.
12125 * sysdeps/m68k/dl-machine.h (elf_machine_rela): Likewise.
12126 * sysdeps/microblaze/dl-machine.h (elf_machine_rela): Likewise.
12127 * sysdeps/mips/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
12129 (elf_machine_reloc): Likewise.
12130 (elf_machine_got_rel): Likewise.
12131 * sysdeps/mips/dl-trampoline.c (__dl_runtime_resolve): Likewise.
12132 * sysdeps/nios2/dl-machine.h (elf_machine_rela): Likewise.
12133 * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela):
12135 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
12137 * sysdeps/riscv/dl-machine.h (elf_machine_rela): Likewise.
12138 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
12140 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
12142 * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
12143 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela):
12145 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
12147 * sysdeps/tile/dl-machine.h (elf_machine_rela): Likewise.
12148 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
12150 2018-04-04 Zack Weinberg <zackw@panix.com>
12152 * sysdeps/generic/internal-signals.h: Include signal.h,
12153 sigsetops.h, and stdbool.h.
12154 (__libc_signal_block_all): Actually block all signals.
12155 (__libc_signal_block_app): Likewise.
12156 (__libc_signal_restore_set): Actually restore the signal mask.
12158 2018-04-04 Florian Weimer <fweimer@redhat.com>
12160 inet: Actually build and run tst-deadline.
12161 * inet/Makefile (tests-internal): Add tst-deadline and do not
12162 overwrite the variable.
12163 (tests-static-internal): Remove variable.
12165 2018-04-03 H.J. Lu <hongjiu.lu@intel.com>
12168 * bits/uio-ext.h (RWF_APPEND): New.
12169 * sysdeps/unix/sysv/linux/bits/uio-ext.h (RWF_APPEND): Likewise.
12170 * manual/llio.texi: Document RWF_APPEND.
12171 * misc/tst-preadvwritev2-common.c (RWF_APPEND): New.
12172 (RWF_SUPPORTED): Add RWF_APPEND.
12174 2018-04-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12177 * nptl/sigaction.c (__sigaction): Use __is_internal_signal to
12178 check for internal nptl signals.
12179 * nptl/sigaction.c (__sigaction): Likewise.
12180 * signal/sigaddset.c (sigaddset): Likewise.
12181 * signal/sigdelset.c (sigdelset): Likewise.
12182 * sysdeps/posix/signal.c (__bsd_signal): Likewise.
12183 * sysdeps/posix/sigset.c (sigset): Call and check sigaddset return
12185 * signal/sigfillset.c (sigfillset): User __clear_internal_signals
12186 to filter out internal nptl signals.
12187 * signal/tst-sigset.c (do_test): Check ech signal indidually and
12188 also check realtime signals using standard macros.
12189 * sysdeps/generic/internal-signals.h (__clear_internal_signals,
12190 __is_internal_signal, __libc_signal_block_all,
12191 __libc_signal_block_app, __libc_signal_restore_set): New functions.
12192 * sysdeps/nptl/sigfillset.c: Remove file.
12193 * sysdeps/unix/sysv/linux/internal-signals.h (__is_internal_signal):
12194 Change return to bool.
12195 (__clear_internal_signals): Remove SIGTIMER clean since it is
12196 equal to SIGCANEL on Linux.
12197 * sysdeps/unix/sysv/linux/sigtimedwait.c (__sigtimedwait): Assume
12198 signal set was constructed using standard functions.
12200 2018-04-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
12202 * sysdeps/mach/hurd/if_index.c (__if_nametoindex): Return ENODEV if
12203 ifname is too long.
12204 * hurd/hurdsig.c (interrupted_reply_port_location): Use
12205 DIAG_IGNORE_NEEDS_COMMENT to silence warning with GCC 6 and before.
12206 * sysdeps/mach/hurd/i386/exc2signal.c (_hurd_exception2signal): Add
12208 * mach/spin-lock.c (__mutex_unlock): Add hidden def.
12209 * signal/sigaddset.c: Include <sigsetopts.h>.
12210 * signal/sigdelset.c: Likewise.
12212 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
12214 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Cleanup ifdefs.
12216 * sysdeps/ieee754/dbl-64/s_sin.c (__sincos): Refactor using the same
12217 logic as sin and cos.
12219 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
12221 * sysdeps/ieee754/dbl-64/s_sin.c (do_sin): Use TAYLOR_SIN for small
12222 inputs. Return correct sign.
12223 (do_sincos): Remove small input check before do_sin, let do_sin set
12228 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
12230 * sysdeps/ieee754/dbl-64/s_sin.c (TAYLOR_SLOW): Remove.
12231 (do_cos_slow): Likewise.
12232 (do_sin_slow): Likewise.
12233 (reduce_and_compute): Likewise.
12238 (sloww1): Likewise.
12239 (sloww2): Likewise.
12241 (bslow1): Likewise.
12242 (bslow2): Likewise.
12243 (cslow2): Likewise.
12245 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
12247 * sysdeps/ieee754/dbl-64/s_sin.c (TAYLOR_SIN): Remove cor parameter.
12248 (do_cos): Remove corp parameter and calculations.
12249 (do_sin): Likewise.
12250 (do_sincos): Remove cor variable.
12251 (__sin): Use do_sincos for huge inputs.
12253 * sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Likewise.
12254 (reduce_and_compute_sincos): Remove unused function.
12256 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
12258 * sysdeps/ieee754/dbl-64/s_sin.c (reduce_sincos_1): Rename to
12259 reduce_sincos, improve accuracy to 136 bits.
12260 (do_sincos_1): Rename to do_sincos, remove fallbacks to slow functions.
12261 (__sin): Use improved reduction and simplified do_sincos calculation.
12263 * sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Likewise.
12265 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
12267 * sysdeps/ieee754/dbl-64/s_sin.c (reduce_sincos_2): Remove function.
12268 (do_sincos_2): Likewise.
12269 (__sin): Remove middle range reduction case.
12271 * sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Remove middle range
12274 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
12276 * sysdeps/aarch64/libm-test-ulps: Update ULP for sin, cos, sincos.
12277 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Remove slow paths for small
12280 * sysdeps/x86_64/fpu/libm-test-ulps: Update ULP for sin, cos, sincos.
12282 2018-04-03 Joseph Myers <joseph@codesourcery.com>
12284 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
12287 2018-04-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12289 * sysdeps/posix/opendir.c (o_directory_works, tryopen_o_directory):
12290 Remove definitions.
12291 (opendir_oflags): Use O_DIRECTORY regardless.
12292 (__opendir, __opendirat): Remove need_isdir_precheck usage.
12293 * sysdeps/unix/sysv/linux/opendir.c: Remove file.
12295 2018-04-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
12297 * sysdeps/mach/hurd/bits/local_lim.h (_POSIX_THREAD_KEYS_MAX,
12298 _POSIX_THREAD_DESTRUCTOR_ITERATIONS, _POSIX_THREAD_THREADS_MAX): Define
12300 * sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_THREADS,
12301 _POSIX_THREAD_ATTR_STACKSIZE, _POSIX_THREAD_ATTR_STACKADDR,
12302 _POSIX_SEMAPHORES, _POSIX_READER_WRITER_LOCKS, _POSIX_TIMEOUTS,
12303 _POSIX_SPIN_LOCKS, _POSIX_BARRIERS): Define macros to 200809L.
12304 * sysdeps/mach/hurd/net/if_ppp.h: Remove file.
12305 * sysdeps/mach/hurd/Makefile (sysdep_headers): Remove net/if_ppp.h.
12307 * htl/Makefile: Bump licence to LGPL 2.1+.
12308 * htl/alloca_cutoff.c: Likewise.
12309 * htl/cthreads-compat.c: Likewise.
12310 * htl/lockfile.c: Likewise.
12311 * htl/pt-alloc.c: Likewise.
12312 * htl/pt-cancel.c: Likewise.
12313 * htl/pt-cleanup.c: Likewise.
12314 * htl/pt-create.c: Likewise.
12315 * htl/pt-dealloc.c: Likewise.
12316 * htl/pt-detach.c: Likewise.
12317 * htl/pt-exit.c: Likewise.
12318 * htl/pt-getattr.c: Likewise.
12319 * htl/pt-initialize.c: Likewise.
12320 * htl/pt-internal.h: Likewise.
12321 * htl/pt-join.c: Likewise.
12322 * htl/pt-self.c: Likewise.
12323 * htl/pt-setcancelstate.c: Likewise.
12324 * htl/pt-setcanceltype.c: Likewise.
12325 * htl/pt-sigmask.c: Likewise.
12326 * htl/pt-spin-inlines.c: Likewise.
12327 * htl/pt-testcancel.c: Likewise.
12328 * htl/pt-yield.c: Likewise.
12329 * htl/tests/test-1.c: Likewise.
12330 * htl/tests/test-10.c: Likewise.
12331 * htl/tests/test-11.c: Likewise.
12332 * htl/tests/test-12.c: Likewise.
12333 * htl/tests/test-13.c: Likewise.
12334 * htl/tests/test-14.c: Likewise.
12335 * htl/tests/test-15.c: Likewise.
12336 * htl/tests/test-16.c: Likewise.
12337 * htl/tests/test-17.c: Likewise.
12338 * htl/tests/test-2.c: Likewise.
12339 * htl/tests/test-3.c: Likewise.
12340 * htl/tests/test-4.c: Likewise.
12341 * htl/tests/test-5.c: Likewise.
12342 * htl/tests/test-6.c: Likewise.
12343 * htl/tests/test-7.c: Likewise.
12344 * htl/tests/test-8.c: Likewise.
12345 * htl/tests/test-9.c: Likewise.
12346 * htl/tests/test-__pthread_destroy_specific-skip.c: Likewise.
12347 * sysdeps/htl/bits/cancelation.h: Likewise.
12348 * sysdeps/htl/bits/pthread-np.h: Likewise.
12349 * sysdeps/htl/bits/pthread.h: Likewise.
12350 * sysdeps/htl/bits/pthreadtypes.h: Likewise.
12351 * sysdeps/htl/bits/semaphore.h: Likewise.
12352 * sysdeps/htl/bits/types/__pthread_key.h: Likewise.
12353 * sysdeps/htl/bits/types/struct___pthread_attr.h: Likewise.
12354 * sysdeps/htl/bits/types/struct___pthread_barrier.h: Likewise.
12355 * sysdeps/htl/bits/types/struct___pthread_barrierattr.h: Likewise.
12356 * sysdeps/htl/bits/types/struct___pthread_cond.h: Likewise.
12357 * sysdeps/htl/bits/types/struct___pthread_condattr.h: Likewise.
12358 * sysdeps/htl/bits/types/struct___pthread_mutex.h: Likewise.
12359 * sysdeps/htl/bits/types/struct___pthread_mutexattr.h: Likewise.
12360 * sysdeps/htl/bits/types/struct___pthread_once.h: Likewise.
12361 * sysdeps/htl/bits/types/struct___pthread_rwlock.h: Likewise.
12362 * sysdeps/htl/bits/types/struct___pthread_rwlockattr.h: Likewise.
12363 * sysdeps/htl/old_pt-atfork.c: Likewise.
12364 * sysdeps/htl/pt-atfork.c: Likewise.
12365 * sysdeps/htl/pt-attr-destroy.c: Likewise.
12366 * sysdeps/htl/pt-attr-getdetachstate.c: Likewise.
12367 * sysdeps/htl/pt-attr-getguardsize.c: Likewise.
12368 * sysdeps/htl/pt-attr-getinheritsched.c: Likewise.
12369 * sysdeps/htl/pt-attr-getschedparam.c: Likewise.
12370 * sysdeps/htl/pt-attr-getschedpolicy.c: Likewise.
12371 * sysdeps/htl/pt-attr-getscope.c: Likewise.
12372 * sysdeps/htl/pt-attr-getstack.c: Likewise.
12373 * sysdeps/htl/pt-attr-getstackaddr.c: Likewise.
12374 * sysdeps/htl/pt-attr-getstacksize.c: Likewise.
12375 * sysdeps/htl/pt-attr-init.c: Likewise.
12376 * sysdeps/htl/pt-attr-setdetachstate.c: Likewise.
12377 * sysdeps/htl/pt-attr-setguardsize.c: Likewise.
12378 * sysdeps/htl/pt-attr-setinheritsched.c: Likewise.
12379 * sysdeps/htl/pt-attr-setschedparam.c: Likewise.
12380 * sysdeps/htl/pt-attr-setschedpolicy.c: Likewise.
12381 * sysdeps/htl/pt-attr-setscope.c: Likewise.
12382 * sysdeps/htl/pt-attr-setstack.c: Likewise.
12383 * sysdeps/htl/pt-attr-setstackaddr.c: Likewise.
12384 * sysdeps/htl/pt-attr-setstacksize.c: Likewise.
12385 * sysdeps/htl/pt-attr.c: Likewise.
12386 * sysdeps/htl/pt-barrier-destroy.c: Likewise.
12387 * sysdeps/htl/pt-barrier-init.c: Likewise.
12388 * sysdeps/htl/pt-barrier-wait.c: Likewise.
12389 * sysdeps/htl/pt-barrier.c: Likewise.
12390 * sysdeps/htl/pt-barrierattr-destroy.c: Likewise.
12391 * sysdeps/htl/pt-barrierattr-getpshared.c: Likewise.
12392 * sysdeps/htl/pt-barrierattr-init.c: Likewise.
12393 * sysdeps/htl/pt-barrierattr-setpshared.c: Likewise.
12394 * sysdeps/htl/pt-cond-brdcast.c: Likewise.
12395 * sysdeps/htl/pt-cond-destroy.c: Likewise.
12396 * sysdeps/htl/pt-cond-init.c: Likewise.
12397 * sysdeps/htl/pt-cond-signal.c: Likewise.
12398 * sysdeps/htl/pt-cond-timedwait.c: Likewise.
12399 * sysdeps/htl/pt-cond-wait.c: Likewise.
12400 * sysdeps/htl/pt-cond.c: Likewise.
12401 * sysdeps/htl/pt-condattr-destroy.c: Likewise.
12402 * sysdeps/htl/pt-condattr-getclock.c: Likewise.
12403 * sysdeps/htl/pt-condattr-getpshared.c: Likewise.
12404 * sysdeps/htl/pt-condattr-init.c: Likewise.
12405 * sysdeps/htl/pt-condattr-setclock.c: Likewise.
12406 * sysdeps/htl/pt-condattr-setpshared.c: Likewise.
12407 * sysdeps/htl/pt-destroy-specific.c: Likewise.
12408 * sysdeps/htl/pt-equal.c: Likewise.
12409 * sysdeps/htl/pt-getconcurrency.c: Likewise.
12410 * sysdeps/htl/pt-getcpuclockid.c: Likewise.
12411 * sysdeps/htl/pt-getschedparam.c: Likewise.
12412 * sysdeps/htl/pt-getspecific.c: Likewise.
12413 * sysdeps/htl/pt-init-specific.c: Likewise.
12414 * sysdeps/htl/pt-key-create.c: Likewise.
12415 * sysdeps/htl/pt-key-delete.c: Likewise.
12416 * sysdeps/htl/pt-key.h: Likewise.
12417 * sysdeps/htl/pt-mutex-destroy.c: Likewise.
12418 * sysdeps/htl/pt-mutex-getprioceiling.c: Likewise.
12419 * sysdeps/htl/pt-mutex-init.c: Likewise.
12420 * sysdeps/htl/pt-mutex-lock.c: Likewise.
12421 * sysdeps/htl/pt-mutex-setprioceiling.c: Likewise.
12422 * sysdeps/htl/pt-mutex-timedlock.c: Likewise.
12423 * sysdeps/htl/pt-mutex-trylock.c: Likewise.
12424 * sysdeps/htl/pt-mutex-unlock.c: Likewise.
12425 * sysdeps/htl/pt-mutexattr-destroy.c: Likewise.
12426 * sysdeps/htl/pt-mutexattr-getprioceiling.c: Likewise.
12427 * sysdeps/htl/pt-mutexattr-getprotocol.c: Likewise.
12428 * sysdeps/htl/pt-mutexattr-getpshared.c: Likewise.
12429 * sysdeps/htl/pt-mutexattr-gettype.c: Likewise.
12430 * sysdeps/htl/pt-mutexattr-init.c: Likewise.
12431 * sysdeps/htl/pt-mutexattr-setprioceiling.c: Likewise.
12432 * sysdeps/htl/pt-mutexattr-setprotocol.c: Likewise.
12433 * sysdeps/htl/pt-mutexattr-setpshared.c: Likewise.
12434 * sysdeps/htl/pt-mutexattr-settype.c: Likewise.
12435 * sysdeps/htl/pt-mutexattr.c: Likewise.
12436 * sysdeps/htl/pt-once.c: Likewise.
12437 * sysdeps/htl/pt-rwlock-attr.c: Likewise.
12438 * sysdeps/htl/pt-rwlock-destroy.c: Likewise.
12439 * sysdeps/htl/pt-rwlock-init.c: Likewise.
12440 * sysdeps/htl/pt-rwlock-rdlock.c: Likewise.
12441 * sysdeps/htl/pt-rwlock-timedrdlock.c: Likewise.
12442 * sysdeps/htl/pt-rwlock-timedwrlock.c: Likewise.
12443 * sysdeps/htl/pt-rwlock-tryrdlock.c: Likewise.
12444 * sysdeps/htl/pt-rwlock-trywrlock.c: Likewise.
12445 * sysdeps/htl/pt-rwlock-unlock.c: Likewise.
12446 * sysdeps/htl/pt-rwlock-wrlock.c: Likewise.
12447 * sysdeps/htl/pt-rwlockattr-destroy.c: Likewise.
12448 * sysdeps/htl/pt-rwlockattr-getpshared.c: Likewise.
12449 * sysdeps/htl/pt-rwlockattr-init.c: Likewise.
12450 * sysdeps/htl/pt-rwlockattr-setpshared.c: Likewise.
12451 * sysdeps/htl/pt-setconcurrency.c: Likewise.
12452 * sysdeps/htl/pt-setschedparam.c: Likewise.
12453 * sysdeps/htl/pt-setschedprio.c: Likewise.
12454 * sysdeps/htl/pt-setspecific.c: Likewise.
12455 * sysdeps/htl/pt-spin.c: Likewise.
12456 * sysdeps/htl/pt-startup.c: Likewise.
12457 * sysdeps/htl/pthread.h: Likewise.
12458 * sysdeps/htl/sem-close.c: Likewise.
12459 * sysdeps/htl/sem-destroy.c: Likewise.
12460 * sysdeps/htl/sem-getvalue.c: Likewise.
12461 * sysdeps/htl/sem-init.c: Likewise.
12462 * sysdeps/htl/sem-open.c: Likewise.
12463 * sysdeps/htl/sem-post.c: Likewise.
12464 * sysdeps/htl/sem-timedwait.c: Likewise.
12465 * sysdeps/htl/sem-trywait.c: Likewise.
12466 * sysdeps/htl/sem-unlink.c: Likewise.
12467 * sysdeps/htl/sem-wait.c: Likewise.
12468 * sysdeps/hurd/htl/pt-kill.c: Likewise.
12469 * sysdeps/i386/htl/pt-machdep.h: Likewise.
12470 * sysdeps/mach/htl/pt-block.c: Likewise.
12471 * sysdeps/mach/htl/pt-spin.c: Likewise.
12472 * sysdeps/mach/htl/pt-stack-alloc.c: Likewise.
12473 * sysdeps/mach/htl/pt-thread-alloc.c: Likewise.
12474 * sysdeps/mach/htl/pt-thread-start.c: Likewise.
12475 * sysdeps/mach/htl/pt-thread-terminate.c: Likewise.
12476 * sysdeps/mach/htl/pt-timedblock.c: Likewise.
12477 * sysdeps/mach/htl/pt-wakeup.c: Likewise.
12478 * sysdeps/mach/hurd/htl/bits/pthread-np.h: Likewise.
12479 * sysdeps/mach/hurd/htl/bits/types/struct___pthread_mutex.h: Likewise.
12480 * sysdeps/mach/hurd/htl/pt-attr-setstackaddr.c: Likewise.
12481 * sysdeps/mach/hurd/htl/pt-attr-setstacksize.c: Likewise.
12482 * sysdeps/mach/hurd/htl/pt-docancel.c: Likewise.
12483 * sysdeps/mach/hurd/htl/pt-hurd-cond-timedwait.c: Likewise.
12484 * sysdeps/mach/hurd/htl/pt-hurd-cond-wait.c: Likewise.
12485 * sysdeps/mach/hurd/htl/pt-mutex-consistent.c: Likewise.
12486 * sysdeps/mach/hurd/htl/pt-mutex-destroy.c: Likewise.
12487 * sysdeps/mach/hurd/htl/pt-mutex-getprioceiling.c: Likewise.
12488 * sysdeps/mach/hurd/htl/pt-mutex-init.c: Likewise.
12489 * sysdeps/mach/hurd/htl/pt-mutex-lock.c: Likewise.
12490 * sysdeps/mach/hurd/htl/pt-mutex-setprioceiling.c: Likewise.
12491 * sysdeps/mach/hurd/htl/pt-mutex-timedlock.c: Likewise.
12492 * sysdeps/mach/hurd/htl/pt-mutex-transfer-np.c: Likewise.
12493 * sysdeps/mach/hurd/htl/pt-mutex-trylock.c: Likewise.
12494 * sysdeps/mach/hurd/htl/pt-mutex-unlock.c: Likewise.
12495 * sysdeps/mach/hurd/htl/pt-mutex.h: Likewise.
12496 * sysdeps/mach/hurd/htl/pt-mutexattr-destroy.c: Likewise.
12497 * sysdeps/mach/hurd/htl/pt-mutexattr-getprioceiling.c: Likewise.
12498 * sysdeps/mach/hurd/htl/pt-mutexattr-getprotocol.c: Likewise.
12499 * sysdeps/mach/hurd/htl/pt-mutexattr-getpshared.c: Likewise.
12500 * sysdeps/mach/hurd/htl/pt-mutexattr-getrobust.c: Likewise.
12501 * sysdeps/mach/hurd/htl/pt-mutexattr-gettype.c: Likewise.
12502 * sysdeps/mach/hurd/htl/pt-mutexattr-init.c: Likewise.
12503 * sysdeps/mach/hurd/htl/pt-mutexattr-setprioceiling.c: Likewise.
12504 * sysdeps/mach/hurd/htl/pt-mutexattr-setprotocol.c: Likewise.
12505 * sysdeps/mach/hurd/htl/pt-mutexattr-setpshared.c: Likewise.
12506 * sysdeps/mach/hurd/htl/pt-mutexattr-setrobust.c: Likewise.
12507 * sysdeps/mach/hurd/htl/pt-mutexattr-settype.c: Likewise.
12508 * sysdeps/mach/hurd/htl/pt-sigstate-destroy.c: Likewise.
12509 * sysdeps/mach/hurd/htl/pt-sigstate-init.c: Likewise.
12510 * sysdeps/mach/hurd/htl/pt-sigstate.c: Likewise.
12511 * sysdeps/mach/hurd/htl/pt-sysdep.c: Likewise.
12512 * sysdeps/mach/hurd/htl/pt-sysdep.h: Likewise.
12513 * sysdeps/mach/hurd/i386/htl/pt-machdep.c: Likewise.
12514 * sysdeps/mach/hurd/i386/htl/pt-setup.c: Likewise.
12516 * NEWS: Announce that glibc now builds unpatched on GNU/Hurd.
12517 * README: Remove the mention of out-of-tree patches needed for
12520 * sysdeps/mach/hurd/bits/stat.h [!__USE_MISC && __USE_ATFILE]
12521 (UTIME_NOW, UTIME_OMIT): Define macros.
12523 * htl/cthreads-compat.c (__cthread_detach): Call __pthread_detach
12524 instead of pthread_detach.
12525 (__cthread_fork): Call __pthread_create instead of pthread_create.
12526 (__cthread_keycreate): Call __pthread_key_create instead of
12527 pthread_key_create.
12528 (__cthread_getspecific): Call __pthread_getspecific instead of
12529 pthread_getspecific.
12530 (__cthread_setspecific): Call __pthread_setspecific instead of
12531 pthread_setspecific.
12532 * htl/pt-alloc.c (__pthread_alloc): Call __pthread_mutex_lock and
12533 __pthread_mutex_unlock instead of pthread_mutex_lock and
12534 pthread_mutex_unlock.
12535 * htl/pt-cleanup.c (__pthread_get_cleanup_stack): Rename to
12536 ___pthread_get_cleanup_stack.
12537 (__pthread_get_cleanup_stack): New strong alias.
12538 * htl/pt-create.c: Include <pthreadP.h>.
12539 (entry_point): Call __pthread_exit instead of pthread_exit.
12540 (pthread_create): Rename to __pthread_create.
12541 (pthread_create): New strong alias.
12542 * htl/pt-detach.c (pthread_detach): Rename to __pthread_detach.
12543 (pthread_detach): New strong alias.
12544 (__pthread_detach): Call __pthread_cond_broadcast instead of
12545 pthread_cond_broadcast.
12546 * htl/pt-exit.c: Include <pthreadP.h>.
12547 (__pthread_exit): Call __pthread_setcancelstate and
12548 ___pthread_get_cleanup_stack instead of pthread_setcancelstate and
12549 __pthread_get_cleanup_stack.
12550 * htl/pt-testcancel.c: Include <pthreadP.h>.
12551 (pthread_testcancel): Call __pthread_exit instead of pthread_exit.
12552 * sysdeps/htl/pt-attr-getstack.c: Include <pthreadP.h>
12553 (__pthread_attr_getstack): Call __pthread_attr_getstackaddr and
12554 __pthread_attr_getstacksize instead of pthread_attr_getstackaddr and
12555 pthread_attr_getstacksize.
12556 * sysdeps/htl/pt-attr-getstackaddr.c (pthread_attr_getstackaddr):
12557 Rename to __pthread_attr_getstackaddr.
12558 (pthread_attr_getstackaddr): New strong alias.
12559 * sysdeps/htl/pt-attr-getstacksize.c (pthread_attr_getstacksize):
12560 Rename to __pthread_attr_getstacksize.
12561 (pthread_attr_getstacksize): New strong alias.
12562 * sysdeps/htl/pt-attr-setstack.c: Include <pthreadP.h>.
12563 (pthread_attr_setstack): Rename to __pthread_attr_setstack.
12564 (pthread_attr_setstack): New strong alias.
12565 (__pthread_attr_setstack): Call __pthread_attr_getstacksize,
12566 __pthread_attr_setstacksize and __pthread_attr_setstackaddr instead of
12567 pthread_attr_getstacksize, pthread_attr_setstacksize and
12568 pthread_attr_setstackaddr.
12569 * sysdeps/htl/pt-attr-setstackaddr.c (pthread_attr_setstackaddr):
12570 Rename to __pthread_attr_setstackaddr.
12571 (pthread_attr_setstackaddr): New strong alias.
12572 * sysdeps/htl/pt-attr-setstacksize.c (pthread_attr_setstacksize):
12573 Rename to __pthread_attr_setstacksize.
12574 (pthread_attr_setstacksize): New strong alias.
12575 * sysdeps/htl/pt-cond-timedwait.c: Include <pthreadP.h>.
12576 (__pthread_cond_timedwait_internal): Use __pthread_exit instead of
12578 * sysdeps/htl/pt-key-create.c: Include <pthreadP.h>.
12579 (__pthread_key_create): New hidden def.
12580 * sysdeps/htl/pt-key.h: Include <pthreadP.h>.
12581 * sysdeps/htl/pthreadP.h (_pthread_mutex_init,
12582 __pthread_cond_broadcast, __pthread_create, __pthread_detach,
12583 __pthread_exit, __pthread_key_create, __pthread_getspecific,
12584 __pthread_setspecific, __pthread_setcancelstate,
12585 __pthread_attr_getstackaddr, __pthread_attr_setstackaddr,
12586 __pthread_attr_getstacksize, __pthread_attr_setstacksize,
12587 __pthread_attr_setstack, ___pthread_get_cleanup_stack): New
12589 (__pthread_key_create, _pthread_mutex_init): New hidden declarations.
12590 * sysdeps/mach/hurd/htl/pt-attr-setstackaddr.c
12591 (pthread_attr_setstackaddr): Rename to __pthread_attr_setstackaddr.
12592 (pthread_attr_setstackaddr): New strong alias.
12593 * sysdeps/mach/hurd/htl/pt-attr-setstacksize.c
12594 (pthread_attr_setstacksize): Rename to __pthread_attr_setstacksize.
12595 (pthread_attr_setstacksize): New strong alias.
12596 * sysdeps/mach/hurd/htl/pt-docancel.c: Include <pthreadP.h>.
12597 (call_exit): Call __pthread_exit instead of pthread_exit.
12598 * sysdeps/mach/hurd/htl/pt-mutex-init.c: Include <pthreadP.h>.
12599 (_pthread_mutex_init): New hidden definition.
12600 * sysdeps/mach/hurd/htl/pt-sysdep.c: Include <pthreadP.h>.
12601 (_init_routine): Call __pthread_attr_init and __pthread_attr_setstack
12602 instead of pthread_attr_init and pthread_attr_setstack.
12604 * hurd/hurdauth.c (_S_msg_add_auth): Call __vm_allocate and
12605 __vm_deallocate instead of vm_allocate and vm_deallocate.
12606 * hurd/hurdmsg.c (_S_msg_set_env_variable): Call __setenv instead of
12608 * hurd/hurdprio.c (_hurd_priority_which_map): Call __geteuid instead
12610 * hurd/path-lookup.c (file_name_path_scan): Call __strdup instead of
12612 * hurd/siginfo.c: Include <libioP.h>.
12613 (_hurd_siginfo_handler): Call _IO_puts instead of puts.
12614 * hurd/xattr.c (_hurd_xattr_get, _hurd_xattr_set): Call __munmap instead of
12616 * mach/devstream.c: Include <libioP.h>.
12617 (dealloc_ref): Call __mach_port_deallocate instead of
12618 mach_port_deallocate.
12619 (mach_open_devstream): Call _IO_fopencookie instead of fopencookie.
12620 Call __mach_port_deallocate instead of mach_port_deallocate.
12621 * stdlib/canonicalize.c (__realpath): Call __pathconf instead of
12623 * sysdeps/mach/hurd/ifreq.c (__ifreq): Call __munmap instead of
12625 * sysdeps/mach/hurd/ifreq.h (__if_freereq): Likewise.
12626 * sysdeps/mach/hurd/ptrace.c (ptrace): Call __kill instead of kill.
12627 * sysdeps/mach/hurd/sendfile64.c (sendfile64): Call __munmap instead
12629 * sysdeps/mach/hurd/socketpair.c (__socketpair): Call __close instead
12631 * sysdeps/posix/clock_getres.c (realtime_getres): Call __sysconf
12632 instead of sysconf.
12633 * sysdeps/pthread/timer_gettime.c (timer_gettime): Call
12634 __clock_gettime instead of clock_gettime.
12635 * sysdeps/pthread/timer_routines.c (thread_func): Likewise.
12636 * sysdeps/pthread/timer_settime.c (timer_settime): Likewise.
12637 * sysdeps/unix/bsd/gtty.c (gtty): Call __ioctl instead of ioctl.
12638 * sysdeps/unix/bsd/stty.c (stty): Likewise.
12639 * sysdeps/unix/bsd/tcflow.c (tcflow): Call __tcgetattr instead of
12641 * sysdeps/unix/clock_nanosleep.c (__clock_nanosleep): Call
12642 __clock_gettime and __nanosleep instead of clock_gettime and
12644 * hurd/catch-signal.c (hurd_catch_signal): Rename to
12645 __hurd_catch_signal.
12646 (hurd_catch_signal): New strong alias.
12647 (hurd_safe_memset, hurd_safe_copyout, hurd_safe_copyin): Call
12648 __hurd_catch_signal instead of hurd_catch_signal.
12649 * hurd/exc2signal.c (_hurd_exception2signal): Add hidden def.
12650 * hurd/hurdexec.c (_hurd_init): Add hidden def.
12651 * hurd/hurdinit.c (_hurd_init): Add hidden def.
12652 * hurd/hurdsig.c: Include <mach/mig_support.h>.
12653 (_hurd_thread_sigstate): Add hidden def.
12654 (_hurd_internal_post_signal): Use __mutex_unlock instead of
12656 * hurd/intern-fd.c (_hurd_intern_fd): Add hidden def.
12657 * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Add hidden def.
12658 * hurd/path-lookup.c (hurd_file_name_path_lookup): Rename to
12659 __hurd_file_name_path_lookup.
12660 (hurd_file_name_path_lookup): New strong alias.
12661 (file_name_path_lookup): Call __hurd_file_name_path_lookup instead of
12662 hurd_file_name_path_lookup.
12663 * mach/errstring.c (mach_error_type): Add hidden def.
12664 * mach/msg-destroy.c (__mach_msg_destroy): Add hidden def.
12665 * mach/mutex-init.c (__mutex_init): Add hidden def.
12666 * mach/spin-lock.c (__spin_lock_locked, __spin_lock, __spin_unlock,
12667 __spin_try_lock, __mutex_lock, __mutex_trylock): Add hidden defs.
12668 * mach/spin-solid.c (__spin_lock_solid): Add hidden def.
12669 * sysdeps/mach/hurd/getcwd.c
12670 (_hurd_canonicalize_directory_name_internal): Rename to
12671 __hurd_canonicalize_directory_name_internal.
12672 (_hurd_canonicalize_directory_name_internal): New strong alias.
12673 (__canonicalize_directory_name_internal, __getcwd): Call
12674 __hurd_canonicalize_directory_name_internal instead of
12675 _hurd_canonicalize_directory_name_internal.
12676 * sysdeps/mach/hurd/mig-reply.c: Include <mach/mig_support.h>.
12677 (__mig_get_reply_port, __mig_dealloc_reply_port, __mig_init): Add
12679 * sysdeps/hurd/include/hurd.h: New file.
12680 * sysdeps/hurd/include/hurd/fd.h: New file.
12681 * sysdeps/hurd/include/hurd/signal.h: New file.
12682 * sysdeps/mach/include/lock-intern.h: New file.
12683 * sysdeps/mach/include/mach.h: New file.
12684 * sysdeps/mach/include/mach/mig_support.h: New file.
12685 * sysdeps/mach/include/mach_error.h: New file.
12686 * sysdeps/hurd/include/hurd/signal.h (_hurd_raise_signal): Add hidden
12688 * hurd/hurd-raise.c (_hurd_raise_signal): Add hidden def.
12689 * hurd/Makefile ($(inlines:%=$(objpfx)%.c): Define
12690 _HEADER_H_HIDDEN_DEF macro.
12691 * sysdeps/hurd/include/hurd/fd.h (_hurd_fd_error,
12692 _hurd_fd_error_signal): Add hidden prototype.
12693 [_HURD_FD_H_HIDDEN_DEF] (_hurd_fd_error, _hurd_fd_error_signal): Add
12695 * libio/iolibio.h (_IO_puts): New hidden prototype.
12696 * libio/ioputs.c (_IO_puts): New hidden def.
12697 * sysdeps/mach/hurd/localplt.data: New file.
12699 2018-04-02 Agustina Arzille <avarzille@riseup.net>
12700 Amos Jeffries <squid3@treenet.co.nz>
12701 David Michael <fedora.dm0@gmail.com>
12702 Marco Gerards <marco@gnu.org>
12703 Marcus Brinkmann <marcus@gnu.org>
12704 Neal H. Walfield <neal@gnu.org>
12705 Pino Toscano <toscano.pino@tiscali.it>
12706 Richard Braun <rbraun@sceen.net>
12707 Roland McGrath <roland@gnu.org>
12708 Samuel Thibault <samuel.thibault@ens-lyon.org>
12709 Thomas DiModica <ricinwich@yahoo.com>
12710 Thomas Schwinge <tschwinge@gnu.org>
12712 * htl: New directory.
12713 * sysdeps/htl: New directory.
12714 * sysdeps/hurd/htl: New directory.
12715 * sysdeps/i386/htl: New directory.
12716 * sysdeps/mach/htl: New directory.
12717 * sysdeps/mach/hurd/htl: New directory.
12718 * sysdeps/mach/hurd/i386/htl: New directory.
12719 * nscd/Depend, resolv/Depend, rt/Depend: Add htl dependency.
12720 * sysdeps/mach/hurd/i386/Implies: Add mach/hurd/i386/htl imply.
12721 * sysdeps/mach/hurd/i386/libpthread.abilist: New file.
12723 2018-04-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
12725 * sysdeps/pthread/timer_routines.c (__timer_thread_start): Block all
12726 signals in thread created for runing timers.
12728 2018-04-01 Florian Weimer <fweimer@redhat.com>
12730 * support/support_format_addrinfo.c (support_format_addrinfo):
12731 Include unknown error number in formatted result.
12733 2018-03-29 Florian Weimer <fweimer@redhat.com>
12735 * sysdeps/unix/sysv/linux/i386/tst-bz21269.c (do_test): Also
12738 2018-03-27 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12740 * sysdeps/unix/sysv/linux/arch-fork.h [__ASSUME_CLONE_BACKWARDS]
12741 (arch_fork): Issue INLINE_CLONE_SYSCALL if defined.
12742 * sysdeps/unix/sysv/linux/sparc/kernel-features.h
12743 (__ASSUME_CLONE_BACKWARDS): Define.
12745 2018-03-27 Jesse Hathaway <jesse@mbuki-mvuki.org>
12748 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid): Return
12749 early when linux sentinel value is set.
12751 2018-03-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
12753 * sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_MEMLOCK): Define.
12755 2018-03-27 Andreas Schwab <schwab@suse.de>
12758 * resolv/res_send.c (__res_context_send): Return ENOMEM if
12759 allocation of private copy of nsaddr_list fails.
12761 2018-03-26 Joseph Myers <joseph@codesourcery.com>
12764 * sysdeps/unix/sysv/linux/generic/umount.c: Move to ....
12765 * sysdeps/unix/sysv/linux/umount.c: ... here.
12766 * sysdeps/unix/sysv/linux/arm/umount.c: Remove file.
12767 * sysdeps/unix/sysv/linux/hppa/umount.c: Likewise.
12768 * sysdeps/unix/sysv/linux/ia64/umount.c: Likewise.
12769 * sysdeps/unix/sysv/linux/mips/mips64/umount.c: Likewise.
12770 * sysdeps/unix/sysv/linux/powerpc/powerpc64/umount.c: Likewise.
12771 * sysdeps/unix/sysv/linux/umount.S: Likewise.
12772 * sysdeps/unix/sysv/linux/x86_64/umount.c: Likewise.
12774 2018-03-26 Andreas Schwab <schwab@suse.de>
12776 * elf/elf.h (R_RISCV_BRANCH, R_RISCV_JAL, R_RISCV_CALL)
12777 (R_RISCV_CALL_PLT, R_RISCV_GOT_HI20, R_RISCV_TLS_GOT_HI20)
12778 (R_RISCV_TLS_GD_HI20, R_RISCV_PCREL_HI20, R_RISCV_PCREL_LO12_I)
12779 (R_RISCV_PCREL_LO12_S, R_RISCV_HI20, R_RISCV_LO12_I)
12780 (R_RISCV_LO12_S, R_RISCV_TPREL_HI20, R_RISCV_TPREL_LO12_I)
12781 (R_RISCV_TPREL_LO12_S, R_RISCV_TPREL_ADD, R_RISCV_ADD8)
12782 (R_RISCV_ADD16, R_RISCV_ADD32, R_RISCV_ADD64, R_RISCV_SUB8)
12783 (R_RISCV_SUB16, R_RISCV_SUB32, R_RISCV_SUB64)
12784 (R_RISCV_GNU_VTINHERIT, R_RISCV_GNU_VTENTRY, R_RISCV_ALIGN)
12785 (R_RISCV_RVC_BRANCH, R_RISCV_RVC_JUMP, R_RISCV_RVC_LUI)
12786 (R_RISCV_GPREL_I, R_RISCV_GPREL_S, R_RISCV_TPREL_I)
12787 (R_RISCV_TPREL_S, R_RISCV_RELAX, R_RISCV_SUB6, R_RISCV_SET6)
12788 (R_RISCV_SET8, R_RISCV_SET16, R_RISCV_SET32, R_RISCV_32_PCREL)
12789 (R_RISCV_NUM): Define.
12791 2018-03-25 Samuel Thibault <samuel.thibault@ens-lyon.org>
12793 * include/errno.h [IS_IN(rtld) && !RTLD_PRIVATE_ERRNO]: Do not use the
12794 TLS declaration of errno.
12795 * sysdeps/generic/libc-start.h [!SHARED] (ARCH_SETUP_TLS): Define to
12797 * sysdeps/unix/sysv/linux/powerpc/libc-start.h [!SHARED]
12798 (ARCH_SETUP_TLS): Likewise.
12799 * sysdeps/mach/hurd/libc-start.h: New file copied from
12800 sysdeps/generic/libc-start.h, but define ARCH_SETUP_TLS to empty.
12801 * csu/libc-start.c [!SHARED] (LIBC_START_MAIN): Call ARCH_SETUP_TLS
12802 instead of __libc_setup_tls.
12803 * sysdeps/mach/hurd/i386/init-first.c [!SHARED] (init1): Call
12804 __libc_setup_tls before initializing libpthread and running _hurd_init
12805 which starts the signal thread.
12806 * sysdeps/generic/ldsodefs.h [SHARED] (__pthread_initialize_minimal):
12808 * sysdeps/mach/hurd/bits/errno.h: Regenerate.
12810 2018-03-24 H.J. Lu <hongjiu.lu@intel.com>
12813 * elf/Makefile (tests): Add $(tests-execstack-$(have-z-execstack))
12814 after it is defined.
12816 2018-03-23 Andrew Senkevich <andrew.senkevich@intel.com>
12817 Max Horn <max@quendi.de>
12821 * sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S: Fixed
12823 * string/test-memmove.c (do_test2): New testcase.
12825 2018-03-22 Joseph Myers <joseph@codesourcery.com>
12827 * sysdeps/generic/frame.h: Remove file.
12828 * sysdeps/arm/frame.h: Likewise.
12829 * sysdeps/hppa/frame.h: Likewise.
12830 * sysdeps/generic/sigcontextinfo.h (SIGCONTEXT_EXTRA_ARGS): Remove
12832 (GET_FRAME): Likewise.
12833 (GET_STACK): Likewise.
12834 (CALL_SIGHANDLER): Likewise.
12835 * sysdeps/mach/hurd/i386/sigcontextinfo.h (SIGCONTEXT_EXTRA_ARGS):
12837 (GET_FRAME): Likewise.
12838 (GET_STACK): Likewise.
12839 (CALL_SIGHANDLER): Likewise.
12840 * sysdeps/unix/sysv/linux/alpha/sigcontextinfo.h
12841 (SIGCONTEXT_EXTRA_ARGS): Likewise.
12842 (GET_FRAME): Likewise.
12843 (GET_STACK): Likewise.
12844 (CALL_SIGHANDLER): Likewise.
12845 * sysdeps/unix/sysv/linux/arm/sigcontextinfo.h
12846 (SIGCONTEXT_EXTRA_ARGS): Likewise.
12847 (GET_FRAME): Likewise.
12848 (GET_STACK): Likewise.
12849 (ADVANCE_STACK_FRAME): Likewise.
12850 (CALL_SIGHANDLER): Likewise.
12851 * sysdeps/unix/sysv/linux/i386/sigcontextinfo.h
12852 (SIGCONTEXT_EXTRA_ARGS): Likewise.
12853 (GET_FRAME): Likewise.
12854 (GET_STACK): Likewise.
12855 (CALL_SIGHANDLER): Likewise.
12856 * sysdeps/unix/sysv/linux/ia64/sigcontextinfo.h
12857 (SIGCONTEXT_EXTRA_ARGS): Likewise.
12858 (GET_FRAME): Likewise.
12859 (GET_STACK): Likewise.
12860 (CALL_SIGHANDLER): Likewise.
12861 * sysdeps/unix/sysv/linux/m68k/sigcontextinfo.h
12862 (SIGCONTEXT_EXTRA_ARGS): Likewise.
12863 (GET_FRAME): Likewise.
12864 (GET_STACK): Likewise.
12865 (CALL_SIGHANDLER): Likewise.
12866 * sysdeps/unix/sysv/linux/microblaze/sigcontextinfo.h
12867 (SIGCONTEXT_EXTRA_ARGS): Likewise.
12868 (GET_FRAME): Likewise.
12869 (GET_STACK): Likewise.
12870 (CALL_SIGHANDLER): Likewise.
12871 * sysdeps/unix/sysv/linux/mips/sigcontextinfo.h
12872 (SIGCONTEXT_EXTRA_ARGS): Likewise.
12873 (GET_FRAME): Likewise.
12874 (GET_STACK): Likewise.
12875 (CALL_SIGHANDLER): Likewise.
12876 * sysdeps/unix/sysv/linux/powerpc/sigcontextinfo.h
12877 (SIGCONTEXT_EXTRA_ARGS): Likewise.
12878 (GET_FRAME): Likewise.
12879 (GET_STACK): Likewise.
12880 (CALL_SIGHANDLER): Likewise.
12881 * sysdeps/unix/sysv/linux/riscv/sigcontextinfo.h
12882 (SIGCONTEXT_EXTRA_ARGS): Likewise.
12883 (GET_FRAME): Likewise.
12884 (GET_STACK): Likewise.
12885 (CALL_SIGHANDLER): Likewise.
12886 * sysdeps/unix/sysv/linux/s390/sigcontextinfo.h
12887 (SIGCONTEXT_EXTRA_ARGS): Likewise.
12888 (GET_FRAME): Likewise.
12889 (GET_STACK): Likewise.
12890 (CALL_SIGHANDLER): Likewise.
12891 * sysdeps/unix/sysv/linux/sh/sigcontextinfo.h
12892 (SIGCONTEXT_EXTRA_ARGS): Likewise.
12893 (GET_FRAME): Likewise.
12894 (GET_STACK): Likewise.
12895 (CALL_SIGHANDLER): Likewise.
12896 * sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h
12897 (SIGCONTEXT_EXTRA_ARGS): Likewise.
12898 (FIRST_FRAME_POINTER): Likewise.
12899 (ADVANCE_STACK_FRAME): Likewise.
12900 (GET_STACK): Likewise.
12901 (GET_FRAME): Likewise.
12902 (CALL_SIGHANDLER): Likewise.
12903 * sysdeps/unix/sysv/linux/sparc/sparc64/sigcontextinfo.h
12904 (SIGCONTEXT_EXTRA_ARGS): Likewise.
12905 (ADVANCE_STACK_FRAME): Likewise.
12906 (GET_STACK): Likewise.
12907 (GET_FRAME): Likewise.
12908 (CALL_SIGHANDLER): Likewise.
12909 * sysdeps/unix/sysv/linux/tile/sigcontextinfo.h
12910 (SIGCONTEXT_EXTRA_ARGS): Likewise.
12911 (GET_FRAME): Likewise.
12912 (GET_STACK): Likewise.
12913 (CALL_SIGHANDLER): Likewise.
12914 * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h
12915 (SIGCONTEXT_EXTRA_ARGS): Likewise.
12916 (GET_FRAME): Likewise.
12917 (GET_STACK): Likewise.
12918 (CALL_SIGHANDLER): Likewise.
12920 2018-03-21 Joseph Myers <joseph@codesourcery.com>
12922 * sysdeps/x86_64/backtrace.c: Move to ....
12923 * debug/backtrace.c: ... here.
12924 * sysdeps/aarch64/backtrace.c: Remove file.
12925 * sysdeps/alpha/backtrace.c: Likewise.
12926 * sysdeps/hppa/backtrace.c: Likewise.
12927 * sysdeps/ia64/backtrace.c: Likewise.
12928 * sysdeps/mips/backtrace.c: Likewise.
12929 * sysdeps/nios2/backtrace.c: Likewise.
12930 * sysdeps/riscv/backtrace.c: Likewise.
12931 * sysdeps/sh/backtrace.c: Likewise.
12932 * sysdeps/tile/backtrace.c: Likewise.
12934 2018-03-20 Joseph Myers <joseph@codesourcery.com>
12937 * sysdeps/powerpc/bits/mathinline.h (fdim): Remove inline
12940 * sysdeps/sparc/fpu/bits/mathinline.h: Remove file.
12943 * stdlib/random_r.c (__random_r): Use unsigned arithmetic for
12944 possibly overflowing computations.
12946 2018-03-20 Samuel Thibault <samuel.thibault@ens-lyon.org>
12948 * manual/errno.texi (EOWNERDEAD, ENOTRECOVERABLE): Remove errno
12949 values from Linux-specific section now that it is in the GNU section.
12950 * sysdeps/gnu/errlist.c: Regenerate.
12952 2018-03-20 Joseph Myers <joseph@codesourcery.com>
12954 * math/Makefile (libm-narrow-fns): Add sub.
12955 (libm-test-funcs-narrow): Likewise.
12956 * math/Versions (GLIBC_2.28): Add narrowing subtract functions.
12957 * math/bits/mathcalls-narrow.h (sub): Use __MATHCALL_NARROW.
12958 * math/gen-auto-libm-tests.c (test_functions): Add sub.
12959 * math/math-narrow.h (CHECK_NARROW_SUB): New macro.
12960 (NARROW_SUB_ROUND_TO_ODD): Likewise.
12961 (NARROW_SUB_TRIVIAL): Likewise.
12962 * sysdeps/ieee754/float128/float128_private.h (__fsubl): New
12964 (__dsubl): Likewise.
12965 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add fsub and
12967 (CFLAGS-nldbl-dsub.c): New variable.
12968 (CFLAGS-nldbl-fsub.c): Likewise.
12969 * sysdeps/ieee754/ldbl-opt/Versions (GLIBC_2.28): Add
12971 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl_dsubl): New
12973 * manual/arith.texi (Misc FP Arithmetic): Document fsub, fsubl,
12974 dsubl, fMsubfN, fMsubfNx, fMxsubfN and fMxsubfNx.
12975 * math/auto-libm-test-in: Add tests of sub.
12976 * math/auto-libm-test-out-narrow-sub: New generated file.
12977 * math/libm-test-narrow-sub.inc: New file.
12978 * sysdeps/i386/fpu/s_f32xsubf64.c: Likewise.
12979 * sysdeps/ieee754/dbl-64/s_f32xsubf64.c: Likewise.
12980 * sysdeps/ieee754/dbl-64/s_fsub.c: Likewise.
12981 * sysdeps/ieee754/float128/s_f32subf128.c: Likewise.
12982 * sysdeps/ieee754/float128/s_f64subf128.c: Likewise.
12983 * sysdeps/ieee754/float128/s_f64xsubf128.c: Likewise.
12984 * sysdeps/ieee754/ldbl-128/s_dsubl.c: Likewise.
12985 * sysdeps/ieee754/ldbl-128/s_f64xsubf128.c: Likewise.
12986 * sysdeps/ieee754/ldbl-128/s_fsubl.c: Likewise.
12987 * sysdeps/ieee754/ldbl-128ibm/s_dsubl.c: Likewise.
12988 * sysdeps/ieee754/ldbl-128ibm/s_fsubl.c: Likewise.
12989 * sysdeps/ieee754/ldbl-96/s_dsubl.c: Likewise.
12990 * sysdeps/ieee754/ldbl-96/s_fsubl.c: Likewise.
12991 * sysdeps/ieee754/ldbl-opt/nldbl-dsub.c: Likewise.
12992 * sysdeps/ieee754/ldbl-opt/nldbl-fsub.c: Likewise.
12993 * sysdeps/ieee754/soft-fp/s_dsubl.c: Likewise.
12994 * sysdeps/ieee754/soft-fp/s_fsub.c: Likewise.
12995 * sysdeps/ieee754/soft-fp/s_fsubl.c: Likewise.
12996 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
12997 * sysdeps/mach/hurd/i386/libm.abilist: Likewise.
12998 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
12999 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
13000 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
13001 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
13002 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
13003 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
13004 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
13005 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
13006 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
13007 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
13008 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
13009 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
13010 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Likewise.
13011 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Likewise.
13012 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Likewise.
13013 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Likewise.
13014 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
13015 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
13016 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
13017 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
13018 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
13019 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
13020 * sysdeps/unix/sysv/linux/tile/tilegx32/libm.abilist: Likewise.
13021 * sysdeps/unix/sysv/linux/tile/tilegx64/libm.abilist: Likewise.
13022 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
13023 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
13025 2018-03-19 Joseph Myers <joseph@codesourcery.com>
13028 * elf/elf.h (SHT_X86_64_UNWIND): New macro.
13030 2018-03-19 Wilco Dijkstra <wdijkstr@arm.com>
13032 * benchtests/bench-timing.h (attribute_hidden): Undefine.
13034 2018-03-18 Richard Braun <rbraun@sceen.net>
13036 * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Use a temporary
13039 2018-03-18 Agustina Arzille <avarzille@riseup.net>
13041 * sysdeps/mach/libc-lock.h (__libc_cleanup_frame): Define structure.
13042 (__libc_cleanup_fct): Define function.
13043 (__libc_cleanup_region_start, __libc_cleanup_region_end,
13044 __libc_cleanup_end): Rewrite implementation using
13045 __attribute__ ((__cleanup__)).
13046 (__libc_cleanup_push, __libc_cleanup_pop): New macros.
13047 * hurd/Makefile (routines): Add hurdlock.
13048 * hurd/Versions (GLIBC_PRIVATE): Added new entry to export the above
13050 (HURD_CTHREADS_0.3): Remove __libc_getspecific.
13051 * hurd/hurdpid.c: Include <lowlevellock.h>
13052 (_S_msg_proc_newids): Use lll_wait to synchronize.
13053 * hurd/hurdsig.c: (reauth_proc): Use __mutex_lock and __mutex_unlock.
13054 * hurd/setauth.c: Include <hurdlock.h>, use integer for synchronization.
13055 * mach/Makefile (lock-headers): Remove machine-lock.h.
13056 * mach/lock-intern.h: Include <lowlevellock.h> instead of
13058 (__spin_lock_t): New type.
13059 (__SPIN_LOCK_INITIALIZER): New macro.
13060 (__spin_lock, __spin_unlock, __spin_try_lock, __spin_lock_locked,
13061 __mutex_init, __mutex_lock_solid, __mutex_unlock_solid, __mutex_lock,
13062 __mutex_unlock, __mutex_trylock): Use lll to implement locks.
13063 * mach/mutex-init.c: Include <lowlevellock.h> instead of <cthreads.h>.
13064 (__mutex_init): Initialize with lll.
13065 * manual/errno.texi (EOWNERDEAD, ENOTRECOVERABLE): New errno values.
13066 * sysdeps/mach/Makefile: Add libmachuser as dependencies for libs
13068 * sysdeps/mach/hurd/bits/errno.h: Regenerate.
13069 * sysdeps/mach/hurd/cthreads.c (__libc_getspecific): Remove function.
13070 * sysdeps/mach/hurd/bits/libc-lock.h: Remove file.
13071 * sysdeps/mach/hurd/setpgid.c: Include <lowlevellock.h>.
13072 (__setpgid): Use lll for synchronization.
13073 * sysdeps/mach/hurd/setsid.c: Likewise with __setsid.
13074 * sysdeps/mach/bits/libc-lock.h: Include <tls.h> and <lowlevellock.h>
13075 instead of <cthreads.h>.
13076 (_IO_lock_inexpensive): New macro
13077 (__libc_lock_recursive_t, __rtld_lock_recursive_t): New structures.
13078 (__libc_lock_self0): New declaration.
13079 (__libc_lock_owner_self): New macro.
13080 (__libc_key_t): Remove type.
13081 (_LIBC_LOCK_INITIALIZER): New macro.
13082 (__libc_lock_define_initialized, __libc_lock_init, __libc_lock_fini,
13083 __libc_lock_fini_recursive, __rtld_lock_fini_recursive,
13084 __libc_lock_lock, __libc_lock_trylock, __libc_lock_unlock,
13085 __libc_lock_define_initialized_recursive,
13086 __rtld_lock_define_initialized_recursive,
13087 __libc_lock_init_recursive, __libc_lock_trylock_recursive,
13088 __libc_lock_lock_recursive, __libc_lock_unlock_recursive,
13089 __rtld_lock_initialize, __rtld_lock_trylock_recursive,
13090 __rtld_lock_lock_recursive, __rtld_lock_unlock_recursive
13091 __libc_once_define, __libc_mutex_unlock): Reimplement with lll.
13092 (__libc_lock_define_recursive, __rtld_lock_define_recursive,
13093 _LIBC_LOCK_RECURSIVE_INITIALIZER, _RTLD_LOCK_RECURSIVE_INITIALIZER):
13095 Include <libc-lockP.h> to reimplement libc_key* with pthread_key*.
13096 * hurd/hurdlock.c: New file.
13097 * hurd/hurdlock.h: New file.
13098 * mach/lowlevellock.h: New file
13100 2018-03-18 Samuel Thibault <samuel.thibault@ens-lyon.org>
13102 * sysdeps/mach/hurd/cthreads.c: Include <cthreads.h>.
13103 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Return ELOOP
13104 when opening a symlink with O_NOFOLLOW.
13105 * hurd/hurdlookup.c (__hurd_file_name_lookup): Do not append '/' to
13106 path when flags contains O_NOFOLLOW.
13107 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Return ENOTDIR
13108 if flags contains O_DIRECTORY and the result is a directory.
13109 * sysdeps/mach/hurd/i386/init-first.c (init): Also find ELF headers by
13110 oneself when the pointer given in D is nul (as set by ext2fs).
13111 * sysdeps/mach/hurd/mlockall.c: New file.
13112 * sysdeps/mach/hurd/munlockall.c: New file.
13114 2018-03-17 Samuel Thibault <samuel.thibault@ens-lyon.org>
13116 * hurd/hurdsig.c: Include <pthread.h>.
13117 (_hurdsig_init): Call pthread_getattr_np and pthread_attr_getstack to
13118 get the signal thread stack layout.
13119 * hurd/Makefile (headers): Remove threadvar.h.
13120 (inline-headers): Remove threadvar.h.
13121 * hurd/Versions (GLIBC_2.0: Remove __hurd_sigthread_stack_base,
13122 __hurd_sigthread_stack_end, __hurd_sigthread_variables,
13123 __hurd_threadvar_max, __hurd_errno_location.
13124 (HURD_CTHREADS_0.3): Add pthread_getattr_np, pthread_attr_getstack.
13125 * hurd/hurd/signal.h: Do not include <hurd/threadvar.h>.
13126 (_hurd_self_sigstate): Use THREAD_SELF to get _hurd_sigstate.
13127 (_HURD_SIGNAL_H_EXTERN_INLINE): Use THREAD_SELF to get _hurd_sigstate,
13128 unless TLS is not initialized yet, in which case we do not need a
13129 critical section yet anyway.
13130 * hurd/hurd/threadvar.h: Include <tls.h>, do not include
13132 (__hurd_sigthread_variables, __hurd_threadvar_max): Remove variables
13134 (__hurd_threadvar_index): Remove enum.
13135 (_HURD_THREADVAR_H_EXTERN_INLINE): Remove macro.
13136 (__hurd_threadvar_location_from_sp,__hurd_threadvar_location): Remove
13138 (__hurd_reply_port0): New variable declaration.
13139 (__hurd_local_reply_port): New macro.
13140 * hurd/hurdsig.c (__hurd_sigthread_variables): Remove variable.
13141 (interrupted_reply_port_location): Add thread_t parameter. Use it
13142 with THREAD_TCB to access thread-local variables.
13143 (_hurdsig_abort_rpcs): Pass ss->thread to
13144 interrupted_reply_port_location.
13145 (_hurd_internal_post_signal): Likewise.
13146 (_hurdsig_init): Use presence of cthread_fork instead of
13147 __hurd_threadvar_stack_mask to start signal thread by hand.
13148 Remove signal thread threadvar initialization.
13149 * hurd/hurdstartup.c: Do not include <hurd/threadvar.h>
13150 * hurd/sigunwind.c: Include <hurd/threadvar.h>
13151 (_hurdsig_longjmp_from_handler): Use __hurd_local_reply_port instead
13153 * sysdeps/mach/hurd/Versions (libc.GLIBC_PRIVATE): Add
13155 (ld.GLIBC_2.0): Remove __hurd_sigthread_stack_base,
13156 __hurd_sigthread_stack_end, __hurd_sigthread_variables.
13157 (ld.GLIBC_PRIVATE): Add __libc_lock_self0.
13158 * sysdeps/mach/hurd/cthreads.c: Add __libc_lock_self0.
13159 * sysdeps/mach/hurd/dl-sysdep.c (errno, __hurd_sigthread_stack_base,
13160 __hurd_sigthread_stack_end, __hurd_sigthread_variables, threadvars,
13161 __hurd_threadvar_stack_offset, __hurd_threadvar_stack_mask): Do not
13163 * sysdeps/mach/hurd/errno-loc.c: Do not include <errno.h> and
13164 <hurd/threadvar.h>.
13165 [IS_IN(rtld)] (rtld_errno): New variable.
13166 [IS_IN(rtld)] (__errno_location): New weak function.
13167 [!IS_IN(rtld)]: Include "../../../csu/errno-loc.c".
13168 * sysdeps/mach/hurd/errno.c: Remove file.
13169 * sysdeps/mach/hurd/fork.c: Include <hurd/threadvar.h>
13170 (__fork): Remove THREADVAR_SPACE macro and its use.
13171 * sysdeps/mach/hurd/i386/init-first.c (__hurd_threadvar_max): Remove
13173 (init): Do not initialize threadvar.
13174 * sysdeps/mach/hurd/i386/libc.abilist (__hurd_threadvar_max): Remove
13176 * sysdeps/mach/hurd/i386/sigreturn.c (__sigreturn): Use
13177 __hurd_local_reply_port instead of threadvar.
13178 * sysdeps/mach/hurd/i386/tls.h (tcbhead_t): Add reply_port and
13179 _hurd_sigstate fields.
13180 (HURD_DESC_TLS, __LIBC_NO_TLS, THREAD_TCB): New macro.
13181 * sysdeps/mach/hurd/i386/trampoline.c: Remove outdated comment.
13182 * sysdeps/mach/hurd/libc-lock.h: Do not include <hurd/threadvar.h>.
13183 (__libc_lock_owner_self): Use &__libc_lock_self0 and THREAD_SELF
13184 instead of threadvar.
13185 * sysdeps/mach/hurd/libc-tsd.h: Remove file.
13186 * sysdeps/mach/hurd/mig-reply.c (GETPORT, reply_port): Remove macros.
13187 (use_threadvar, global_reply_port): Remove variables.
13188 (__hurd_reply_port0): New variable.
13189 (__mig_get_reply_port): Use __hurd_local_reply_port and
13190 __hurd_reply_port0 instead of threadvar.
13191 (__mig_dealloc_reply_port): Likewise.
13192 (__mig_init): Do not initialize threadvar.
13193 * sysdeps/mach/hurd/profil.c: Fix comment.
13194 * hurd/Versions (HURD_CTHREADS_0.3): Rename weak refs cthread_fork,
13195 cthread_detach, pthread_getattr_np, pthread_attr_getstack,
13196 cthread_keycreate, cthread_getspecific, cthread_setspecific to
13197 __cthread_fork, __cthread_detach, __pthread_getattr_np,
13198 __pthread_attr_getstack, __cthread_keycreate, __cthread_getspecific,
13199 __cthread_setspecific.
13200 * hurd/hurdsig.c (_hurdsig_init): Use __cthread_fork,
13201 __cthread_detach, __pthread_getattr_np, __pthread_attr_getstack,
13202 __cthread_t instead of cthread_fork, cthread_detach,
13203 pthread_getattr_np, pthread_attr_getstack.
13204 * sysdeps/mach/hurd/cthreads.c (cthread_keycreate): Rename to
13205 __cthread_keycreate.
13206 (cthread_getspecific): Rename to __cthread_getspecific.
13207 (cthread_setspecific): Rename to __cthread_setspecific.
13208 (__libc_getspecific): Use __cthread_getspecific instead of
13209 cthread_getspecific.
13210 * sysdeps/mach/hurd/libc-lock.h (__libc_key_create): Use
13211 __cthread_keycreate instead of cthread_keycreate.
13212 (__libc_setspecific): Use __cthread_setspecific instead of
13213 cthread_setspecific.
13214 * sysdeps/mach/libc-lock.h (__libc_key_create, __libc_setspecific):
13216 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Always include
13217 <dl-sysdep.h>. Test for value of RTLD_PRIVATE_ERRNO instead of
13218 testing whether it is defined.
13220 2018-03-16 Samuel Thibault <samuel.thibault@ens-lyon.org>
13222 * sysdeps/generic/thread_state.h (MACHINE_NEW_THREAD_STATE_FLAVOR):
13224 * sysdeps/mach/thread_state.h (MACHINE_THREAD_STATE_FIX_NEW): New macro.
13225 * sysdeps/mach/i386/thread_state.h
13226 (MACHINE_NEW_THREAD_STATE_FLAVOR): New macro, defined to
13228 (MACHINE_THREAD_STATE_FLAVOR): Define to i386_REGS_SEGS_STATE instead of
13230 (MACHINE_THREAD_STATE_FIX_NEW): New macro, reads segments.
13232 * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler): Use
13233 i386_REGS_SEGS_STATE instead of i386_THREAD_STATE.
13235 * sysdeps/mach/hurd/i386/tls.h (TCB_ALIGNMENT, HURD_SEL_LDT): New
13237 (_hurd_tls_fork): Add original thread parameter, Duplicate existing LDT
13238 descriptor instead of creating a new one.
13239 (_hurd_tls_new): New function, creates a new descriptor and updates tcb.
13241 * mach/setup-thread.c: Include <ldsodefs.h>.
13242 (__mach_setup_thread): Call _dl_allocate_tls, pass
13243 MACHINE_NEW_THREAD_STATE_FLAVOR to __thread_set_state instead of
13244 MACHINE_THREAD_STATE_FLAVOR, before getting
13245 MACHINE_THREAD_STATE_FLAVOR, calling _hurd_tls_new, and setting
13246 MACHINE_THREAD_STATE_FLAVOR with the result.
13247 * hurd/hurdfault.c (_hurdsig_fault_init): Call
13248 MACHINE_THREAD_STATE_FIX_NEW.
13249 * sysdeps/mach/hurd/fork.c (__fork): Call _hurd_tls_fork for sigthread
13250 too. Add original thread parameter.
13252 2018-03-16 Joseph Myers <joseph@codesourcery.com>
13254 * sysdeps/x86/fpu/bits/mathinline.h [__USE_MISC] (__finite):
13255 Remove inline function.
13257 * sysdeps/i386/fpu/libm-test-ulps: Update.
13258 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
13260 2018-03-16 Wilco Dijkstra <wdijkstr@arm.com>
13262 * sysdeps/m68k/m680x0/fpu/mathimpl.h (__ieee754_sqrt): Revert previous
13265 2018-03-15 Joseph Myers <joseph@codesourcery.com>
13267 * sysdeps/x86/fpu/bits/mathinline.h [__FAST_MATH__]
13268 (__sincos_code): Remove define and undefine.
13269 [__FAST_MATH__] (__sincos): Remove inline function.
13270 [__FAST_MATH__] (__sincosf): Remove inline function.
13271 [__FAST_MATH__] (__sincosl): Remove inline function.
13272 (__atan2l): Remove inline functions.
13273 [!__GNUC_PREREQ (3, 4)] (__atan2_code): Remove macro.
13274 [!__GNUC_PREREQ (3, 4) && __FAST_MATH__] (atan2): Remove inline
13276 (floor): Remove inline function.
13278 [__FAST_MATH__] (__ldexp_code): Remove macro.
13279 [__FAST_MATH__] (ldexp): Remove inline function.
13280 [__FAST_MATH__ && __USE_ISOC99] (ldexpf): Likewise.
13281 [__FAST_MATH__ && __USE_ISOC99] (ldexpl): Likewise.
13282 [__FAST_MATH__ && __USE_ISOC99] (rint): Likewise.
13283 [__USE_ISOC99] (__lrint_code): Remove macro.
13284 [__USE_ISOC99] (__llrint_code): Likewise.
13285 [__USE_ISOC99] (lrintf): Remove inline function.
13286 [__USE_ISOC99] (lrint): Likewise.
13287 [__USE_ISOC99] (lrintl): Likewise.
13288 [__USE_ISOC99] (llrint): Likewise.
13289 [__USE_ISOC99] (llrintf): Likewise.
13290 [__USE_ISOC99] (llrintl): Likewise.
13292 2018-03-15 Wilco Dijkstra <wdijkstr@arm.com>
13294 * sysdeps/aarch64/fpu/math_private.h (__ieee754_sqrt): Remove.
13295 (__ieee754_sqrtf): Remove.
13296 * sysdeps/alpha/fpu/math_private.h (__ieee754_sqrt): Remove.
13297 (__ieee754_sqrtf): Remove.
13298 * sysdeps/generic/math-type-macros.h (M_SQRT): Use sqrt.
13299 * sysdeps/m68k/m680x0/fpu/mathimpl.h (__ieee754_sqrt): Remove.
13300 * sysdeps/powerpc/fpu/math_private.h (__ieee754_sqrt): Remove.
13301 (__ieee754_sqrtf): Remove.
13302 * sysdeps/s390/fpu/bits/mathinline.h: Remove file.
13303 * sysdeps/sparc/fpu/bits/mathinline.h (sqrt) Remove.
13306 (__ieee754_sqrt): Remove.
13307 (__ieee754_sqrtf): Remove.
13308 (__ieee754_sqrtl): Remove.
13309 * sysdeps/m68k/m680x0/fpu/mathimpl.h (__ieee754_sqrt): Remove.
13310 * sysdeps/x86/fpu/math_private.h (__ieee754_sqrt): Remove.
13311 * sysdeps/x86_64/fpu/math_private.h (__ieee754_sqrt): Remove.
13312 (__ieee754_sqrtf): Remove.
13313 (__ieee754_sqrtl): Remove.
13315 2018-03-15 Wilco Dijkstra <wdijkstr@arm.com>
13317 * sysdeps/ieee754/dbl-64/e_acosh.c (__ieee754_acosh): Use sqrt.
13318 * sysdeps/ieee754/dbl-64/e_gamma_r.c (gamma_positive): Likewise.
13319 * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Likewise.
13320 * sysdeps/ieee754/dbl-64/e_j0.c (__ieee754_j0): Likewise.
13321 * sysdeps/ieee754/dbl-64/e_j1.c (__ieee754_j1): Likewise.
13322 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn): Likewise.
13323 * sysdeps/ieee754/dbl-64/s_asinh.c (__asinh): Likewise.
13324 * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c (__ieee754_acosh):
13326 * sysdeps/ieee754/flt-32/e_acosf.c (__ieee754_acosf): Likewise.
13327 * sysdeps/ieee754/flt-32/e_acoshf.c (__ieee754_acoshf): Likewise.
13328 * sysdeps/ieee754/flt-32/e_asinf.c (__ieee754_asinf): Likewise.
13329 * sysdeps/ieee754/flt-32/e_gammaf_r.c (gammaf_positive): Likewise.
13330 * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf): Likewise.
13331 * sysdeps/ieee754/flt-32/e_j0f.c (__ieee754_j0f): Likewise.
13332 * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_j1f): Likewise.
13333 * sysdeps/ieee754/flt-32/e_powf.c (__ieee754_powf): Likewise.
13334 * sysdeps/ieee754/flt-32/s_asinhf.c (__asinhf): Likewise.
13335 * sysdeps/ieee754/ldbl-128/e_acoshl.c (__ieee754_acoshl): Use sqrtl.
13336 * sysdeps/ieee754/ldbl-128/e_acosl.c (__ieee754_acosl): Likewise.
13337 * sysdeps/ieee754/ldbl-128/e_asinl.c (__ieee754_asinl): Likewise.
13338 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (gammal_positive): Likewise.
13339 * sysdeps/ieee754/ldbl-128/e_hypotl.c (__ieee754_hypotl): Likewise.
13340 * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee754_j0l): Likewise.
13341 * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
13342 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_jnl): Likewise.
13343 * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Likewise.
13344 * sysdeps/ieee754/ldbl-128/s_asinhl.c (__ieee754_asinhl): Likewise.
13345 * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Likewise.
13346 * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Likewise.
13347 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
13348 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (gammal_positive): Likewise.
13349 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Likewise.
13350 * sysdeps/ieee754/ldbl-128ibm/e_j0l.c (__ieee754_j0l): Likewise.
13351 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c (__ieee754_j1l): Likewise
13352 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
13353 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
13354 * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__ieee754_asinhl): Likewise.
13355 * sysdeps/ieee754/ldbl-96/e_acoshl.c (__ieee754_acoshl): Use sqrtl.
13356 * sysdeps/ieee754/ldbl-96/e_asinl.c (__ieee754_asinl): Likewise.
13357 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (gammal_positive): Likewise.
13358 * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Likewise.
13359 * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l): Likewise.
13360 * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l): Likewise.
13361 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl): Likewise.
13362 * sysdeps/ieee754/ldbl-96/s_asinhl.c (__ieee754_asinhl): Likewise.
13363 * sysdeps/m68k/m680x0/fpu/e_pow.c (__ieee754_pow): Likewise.
13364 * sysdeps/powerpc/fpu/e_hypot.c (__ieee754_hypot): Likewise.
13365 * sysdeps/powerpc/fpu/e_hypotf.c (__ieee754_hypotf): Likewise.
13367 2018-03-15 Wilco Dijkstra <wdijkstr@arm.com>
13369 * include/math.h (sqrt): Declare with asm redirect.
13372 (sqrtf128): Likewise.
13373 * Makeconfig: Add -fno-math-errno for libc/libm, but build testsuite,
13374 nonlib and libnldbl with -fmath-errno.
13375 * math/w_sqrt_compat.c: Define NO_MATH_REDIRECT.
13376 * math/w_sqrt_template.c: Likewise.
13377 * math/w_sqrtf_compat.c: Likewise.
13378 * math/w_sqrtl_compat.c: Likewise.
13379 * sysdeps/i386/fpu/w_sqrt.c: Likewise.
13380 * sysdeps/i386/fpu/w_sqrt_compat.c: Likewise.
13381 * sysdeps/generic/math-type-macros-float128.h: Remove math.h and
13384 2018-03-15 Wilco Dijkstra <wdijkstr@arm.com>
13386 * benchtests/Makefile: Define _ISOMAC.
13387 * benchtests/bench-strcoll.c: Add missing sys/stat.h include.
13388 * benchtests/bench-string.h: Define inhibit_loop_to_libcall macro.
13389 * benchtests/bench-strstr.c: Define empty libc_hidden_builtin_def.
13390 * benchtests/bench-strtok.c (oldstrtok): Use rawmemchr.
13391 * benchtests/bench-timing.h: Define attribute_hidden.
13393 2018-03-15 Siddhesh Poyarekar <siddhesh@sourceware.org>
13395 * sysdeps/aarch64/strncmp.S (strncmp): Use lsr instead of
13398 2018-03-15 Rafal Luzynski <digitalfreak@lingonborough.com>
13401 * localedata/locales/cs_CZ (mon): Rename to...
13403 (mon): Import from CLDR (genitive case).
13405 2018-03-15 Rafal Luzynski <digitalfreak@lingonborough.com>
13408 * localedata/locales/el_CY (abmon): Rename to...
13409 (ab_alt_mon): This.
13410 (abmon): Import from CLDR (abbreviated genitive case).
13411 * localedata/locales/el_GR (abmon): Rename to...
13412 (ab_alt_mon): This.
13413 (abmon): Import from CLDR (abbreviated genitive case).
13415 2018-03-15 Rafal Luzynski <digitalfreak@lingonborough.com>
13418 * localedata/locales/lt_LT (abmon): Synchronize with CLDR.
13420 2018-03-15 Robert Buj <robert.buj@gmail.com>
13423 * localedata/locales/ca_ES (abmon): Rename to...
13424 (ab_alt_mon): This, then synchronize with CLDR (nominative case).
13425 (mon): Rename to...
13427 (abmon): Import from CLDR (genitive case, month names preceded by
13430 (abday): Synchronize with CLDR.
13431 (d_t_fmt): Likewise.
13435 (LC_TIME): Improve indentation.
13436 (LC_TELEPHONE): Likewise.
13437 (LC_NAME): Likewise.
13438 (LC_ADDRESS): Likewise.
13440 2018-03-14 Joseph Myers <joseph@codesourcery.com>
13442 * sysdeps/x86/fpu/bits/mathinline.h [!__GNUC_PREREQ (3, 4)]
13443 (lrintf): Remove definitions used only with old GCC.
13444 [!__GNUC_PREREQ (3, 4)] (lrint): Likewise.
13445 [!__GNUC_PREREQ (3, 4)] (llrintf): Likewise.
13446 [!__GNUC_PREREQ (3, 4)] (llrint): Likewise.
13447 [!__GNUC_PREREQ (3, 4)] (fmaxf): Likewise.
13448 [!__GNUC_PREREQ (3, 4)] (fmax): Likewise.
13449 [!__GNUC_PREREQ (3, 4)] (fminf): Likewise.
13450 [!__GNUC_PREREQ (3, 4)] (fmin): Likewise.
13451 [!__GNUC_PREREQ (3, 4)] (rint): Likewise.
13452 [!__GNUC_PREREQ (3, 4)] (rintf): Likewise.
13453 [!__GNUC_PREREQ (3, 4)] (nearbyint): Likewise.
13454 [!__GNUC_PREREQ (3, 4)] (nearbyintf): Likewise.
13455 [!__GNUC_PREREQ (3, 4)] (ceil): Likewise.
13456 [!__GNUC_PREREQ (3, 4)] (ceilf): Likewise.
13457 [!__GNUC_PREREQ (3, 4)] (floor): Likewise.
13458 [!__GNUC_PREREQ (3, 4)] (floorf): Likewise.
13459 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (tan): Likewise.
13460 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (fmod): Likewise.
13461 [__FAST_MATH__ && !__GNUC_PREREQ (3, 4)] (sin): Likewise.
13462 [__FAST_MATH__ && !__GNUC_PREREQ (3, 4)] (cos): Likewise.
13463 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (log10): Likewise.
13464 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (asin): Likewise.
13465 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (acos): Likewise.
13466 [__FAST_MATH__ && !__GNUC_PREREQ (3, 4)] (atan): Likewise.
13467 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (log1p): Likewise.
13468 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (logb): Likewise.
13469 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (log2): Likewise.
13470 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (drem): Likewise.
13471 [__FAST_MATH__] (__M_SQRT2): Remove macro.
13473 2018-03-14 Siddhesh Poyarekar <siddhesh@sourceware.org>
13475 * sysdeps/aarch64/strncmp.S (strncmp): Use a separate shift
13476 instruction to unbreak builds with binutils 2.26 and older.
13478 2018-03-13 Siddhesh Poyarekar <siddhesh@sourceware.org>
13480 * sysdeps/aarch64/strncmp.S (count): New macro.
13481 (strncmp): Store misaligned length in SRC1 in COUNT.
13482 (mutual_align): Adjust.
13483 (misaligned8): Load dword at a time when it is safe.
13485 2018-03-12 Zack Weinberg <zackw@panix.com>
13489 * libio/fileops.c (_IO_new_file_underflow): Return EOF immediately
13490 if the _IO_EOF_SEEN bit is already set; update commentary.
13491 * libio/oldfileops.c (_IO_old_file_underflow): Likewise.
13492 * libio/wfileops.c (_IO_wfile_underflow): Likewise.
13494 * support/support_openpty.c, support/tty.h: New files.
13495 * support/Makefile (libsupport-routines): Add support_openpty.
13497 * libio/tst-fgetc-after-eof.c, wcsmbs/test-fgetwc-after-eof.c:
13499 * libio/Makefile (tests): Add tst-fgetc-after-eof.
13500 * wcsmbs/Makefile (tests): Add tst-fgetwc-after-eof.
13502 2018-03-12 Dmitry V. Levin <ldv@altlinux.org>
13504 * po/pt_BR.po: Update translations.
13506 2018-03-12 David Michael <fedora.dm0@gmail.com>
13508 * sysdeps/mach/hurd/reboot.c: Include <hurd/paths.h>
13509 (reboot): Lookup _SERVERS_STARTUP instead of calling proc_getmsgport to
13510 get a port to the startup server.
13512 2018-03-11 Zack Weinberg <zackw@panix.com>
13514 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Include math.h
13515 before nldbl-compat.h.
13517 2018-03-10 Zack Weinberg <zackw@panix.com>
13519 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Don't include
13520 math.h or math_private.h.
13522 * sysdeps/alpha/fpu/s_isnan.c
13523 * sysdeps/ieee754/ldbl-128ibm/s_ceill.c
13524 * sysdeps/ieee754/ldbl-128ibm/s_floorl.c
13525 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c
13526 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c
13527 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c
13528 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c
13529 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c
13530 * sysdeps/ieee754/ldbl-128ibm/s_roundl.c
13531 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c
13532 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot.c
13533 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf.c:
13534 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_expf.c
13535 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot.c
13536 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c:
13537 Include math_private.h.
13539 * sysdeps/ieee754/ldbl-64-128/s_finitel.c
13540 * sysdeps/ieee754/ldbl-64-128/s_fpclassifyl.c
13541 * sysdeps/ieee754/ldbl-64-128/s_isinfl.c
13542 * sysdeps/ieee754/ldbl-64-128/s_isnanl.c
13543 * sysdeps/ieee754/ldbl-64-128/s_signbitl.c
13544 * sysdeps/powerpc/power7/fpu/s_logb.c:
13545 Include math.h and math_private.h.
13547 * sysdeps/unix/sysv/linux/alpha/clone.S (__clone): Wrap manual
13548 uses of $at in .set noat / .set at.
13550 2018-03-10 H.J. Lu <hongjiu.lu@intel.com>
13552 * include/setjmp.h (__libc_longjmp): Remove libc_hidden_proto.
13553 * setjmp/longjmp.c (__libc_longjmp): Remove libc_hidden_def.
13554 * sysdeps/s390/longjmp.c (__libc_longjmp): Likewise.
13555 * sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S (__libc_longjmp):
13558 2018-03-09 Florian Weimer <fweimer@redhat.com>
13560 * malloc/malloc.c (prev_size, set_prev_size, prev_chunk): Fix typo
13563 2018-03-09 Aurelien Jarno <aurelien@aurel32.net>
13566 * sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S (__startcontext):
13567 Add nop before __startcontext, add explaining comments.
13569 2018-03-07 Adhemerval Zanella <adhemerval.zanella@linaro.org>
13572 * sysdeps/powerpc/powerpc32/sysdep.h (ABORT_TRANSACTION_IMPL): Define
13574 * sysdeps/powerpc/sysdep.h (ABORT_TRANSACTION): Likewise.
13575 * sysdeps/unix/sysv/linux/powerpc/elision-lock.c (__lll_lock_elision):
13576 Do not build hardware transactional code for __SPE__.
13577 * sysdeps/unix/sysv/linux/powerpc/elision-trylock.c
13578 (__lll_trylock_elision): Likewise.
13579 * sysdeps/unix/sysv/linux/powerpc/elision-unlock.c
13580 (__lll_unlock_elision): Likewise.
13582 * sysdeps/nptl/fork.c (ARCH_FORK): Replace by arch_fork.
13583 * sysdeps/unix/sysv/linux/alpha/arch-fork.h: Remove file.
13584 * sysdeps/unix/sysv/linux/riscv/arch-fork.h: Likewise.
13585 * sysdeps/unix/sysv/linux/aarch64/arch-fork.h: Likewise.
13586 * sysdeps/unix/sysv/linux/arm/arch-fork.h: Likewise.
13587 * sysdeps/unix/sysv/linux/hppa/arch-fork.h: Likewise.
13588 * sysdeps/unix/sysv/linux/i386/arch-fork.h: Likewise.
13589 * sysdeps/unix/sysv/linux/ia64/arch-fork.h: Likewise.
13590 * sysdeps/unix/sysv/linux/m68k/arch-fork.h: Likewise.
13591 * sysdeps/unix/sysv/linux/microblaze/arch-fork.h: Likewise.
13592 * sysdeps/unix/sysv/linux/mips/arch-fork.h: Likewise.
13593 * sysdeps/unix/sysv/linux/nios2/arch-fork.h: Likewise.
13594 * sysdeps/unix/sysv/linux/powerpc/arch-fork.h: Likewise.
13595 * sysdeps/unix/sysv/linux/s390/arch-fork.h: Likewise.
13596 * sysdeps/unix/sysv/linux/sh/arch-fork.h: Likewise.
13597 * sysdeps/unix/sysv/linux/sparc/arch-fork.h: Likewise.
13598 * sysdeps/unix/sysv/linux/tile/arch-fork.h: Likewise.
13599 * sysdeps/unix/sysv/linux/x86_64/arch-fork.h: Likewise.
13600 * sysdeps/unix/sysv/linux/arch-fork.h (arch_fork): New function.
13601 * sysdeps/unix/sysv/linux/aarch64/kernel-features.h: New file.
13602 * sysdeps/unix/sysv/linux/riscv/kernel-features.h: Likewise.
13603 * sysdeps/unix/sysv/linux/arm/kernel-features.h
13604 (__ASSUME_CLONE_BACKWARDS): Define.
13605 * sysdeps/unix/sysv/linux/createthread.c (ARCH_CLONE): Define to
13606 __clone2 if __NR_clone2 is defined.
13607 * sysdeps/unix/sysv/linux/hppa/kernel-features.h
13608 (__ASSUME_CLONE_BACKWARDS): Likewise.
13609 * sysdeps/unix/sysv/linux/i386/kernel-features.h
13610 (__ASSUME_CLONE_BACKWARDS): Likewise.
13611 * sysdeps/unix/sysv/linux/ia64/kernel-features.h
13612 (__ASSUME_CLONE2): Likewise.
13613 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
13614 (__ASSUME_CLONE_BACKWARDS3): Likewise.
13615 * sysdeps/unix/sysv/linux/kernel-features.h: Document possible clone
13616 variants and the define architecture can use.
13617 (__ASSUME_CLONE_DEFAULT): Define as default.
13618 * sysdeps/unix/sysv/linux/mips/kernel-features.h
13619 (__ASSUME_CLONE_BACKWARDS): Likewise.
13620 * sysdeps/unix/sysv/linux/powerpc/kernel-features.h
13621 (__ASSUME_CLONE_BACKWARDS): Likewise.
13622 * sysdeps/unix/sysv/linux/s390/kernel-features.h
13623 (__ASSUME_CLONE_BACKWARDS2): Likewise.
13625 2018-03-06 Siddhesh Poyarekar <siddhesh@sourceware.org>
13627 * sysdeps/aarch64/memcmp.S (more16): Fix loop16 branch target.
13629 * sysdeps/aarch64/memcmp.S: Widen comparison to 16 bytes at a
13632 * benchtests/bench-strncmp.c (test_main): Remove 0 length tests.
13633 (do_test_limit): Likewise.
13635 * benchtests/bench-strncmp.c (do_test_limit): Reallocate buffers
13636 for every implementation.
13637 (do_test): Likewise.
13639 * benchtests/bench-strncmp.c: Convert output to json.
13641 2018-03-06 Samuel Thibault <samuel.thibault@ens-lyon.org>
13643 * io/futimens.c: Add missing start-of-file descriptive comment.
13644 * io/utime.c: Likewise.
13645 * misc/futimesat.c: Likewise.
13646 * misc/utimes.c: Likewise.
13647 * sysdeps/mach/hurd/futimesat.c: Likewise.
13648 * sysdeps/mach/hurd/utimes.c: Likewise.
13649 * sysdeps/posix/utime.c: Likewise.
13650 * sysdeps/posix/utimes.c: Likewise.
13651 * sysdeps/unix/sysv/linux/futimesat.c: Likewise.
13652 * sysdeps/unix/sysv/linux/generic/futimesat.c: Likewise.
13653 * sysdeps/unix/sysv/linux/generic/utimes.c: Likewise.
13654 * sysdeps/unix/sysv/linux/utimes.c: Likewise.
13656 2018-03-05 Samuel Thibault <samuel.thibault@ens-lyon.org>
13658 * sysdeps/mach/hurd/utime-helper.c (hurd_futimens): Rename function to
13660 * sysdeps/mach/hurd/utimes.c (__utimes): Update call accordingly.
13661 * sysdeps/mach/hurd/lutimes.c (__lutimes): Likewise.
13662 * sysdeps/mach/hurd/futimens.c: Include "utime-helper.c".
13663 (__futimens): Move implementation to...
13664 * sysdeps/mach/hurd/utime-helper.c (utime_ts_from_tspec,
13665 utime_tvalue_from_tspec): ... new helper functions.
13666 (hurd_futimens): New function.
13667 * sysdeps/mach/hurd/futimesat.c: New file.
13668 * sysdeps/mach/hurd/utimensat.c: New file.
13670 2018-03-05 Flávio Cruz <flaviocruz@gmail.com>
13672 * sysdeps/mach/hurd/bits/stat.h [__USE_ATFILE] (UTIME_NOW,
13673 UTIME_OMIT): New macros.
13674 * sysdeps/mach/hurd/futimens.c (__futimens): Try to use __file_utimens
13675 before reverting to converting time spec to time value and calling
13677 * sysdeps/mach/hurd/utime-helper.c: New file.
13678 * sysdeps/mach/hurd/futimes.c: Include "utime-helper.c".
13679 (__futimes): Try to use utime_ts_from_tval and __file_utimens before
13680 reverting to utime_tvalue_from_tval and __file_utimes.
13681 * sysdeps/mach/hurd/lutimes.c: Include "utime-helper.c".
13682 (__lutimes): Just call hurd_futimens after lookup.
13683 * sysdeps/mach/hurd/utimes.c: Likewise.
13685 2018-03-05 Samuel Thibault <samuel.thibault@ens-lyon.org>
13687 * bits/sigaction.h: Add include guard.
13688 * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h: Likewise.
13689 * sysdeps/unix/sysv/linux/bits/sigaction.h: Likewise.
13690 * sysdeps/unix/sysv/linux/hppa/bits/sigaction.h: Likewise.
13691 * sysdeps/unix/sysv/linux/ia64/bits/sigaction.h: Likewise.
13692 * sysdeps/unix/sysv/linux/mips/bits/sigaction.h: Likewise.
13693 * sysdeps/unix/sysv/linux/s390/bits/sigaction.h: Likewise.
13694 * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h: Likewise.
13695 * sysdeps/unix/sysv/linux/tile/bits/sigaction.h: Likewise.
13696 * hurd/hurd/signal.h: Include <bits/sigaction.h>.
13698 2018-03-05 Joseph Myers <joseph@codesourcery.com>
13700 * iconv/loop.c (UNICODE_TAG_HANDLER): Disable
13701 -Wmaybe-uninitialized for -Os.
13702 * sysdeps/s390/multiarch/8bit-generic.c (BODY): Add comment about
13705 2018-03-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
13707 * bits/dirent.h (__INO_T_MATCHES_INO64_T): Define regardless whether
13708 __INO_T_MATCHES_INO64_T is defined.
13709 * sysdeps/unix/sysv/linux/bits/dirent.h: Likewise.
13710 * dirent/alphasort.c: Check _DIRENT_MATCHES_DIRENT64 value instead
13712 * dirent/alphasort64.c: Likewise.
13713 * dirent/scandir.c: Likewise.
13714 * dirent/scandir64-tail.c: Likewise.
13715 * dirent/scandir64.c: Likewise.
13716 * dirent/scandirat.c: Likewise.
13717 * dirent/scandirat64.c: Likewise.
13718 * dirent/versionsort.c: Likewise.
13719 * dirent/versionsort64.c: Likewise.
13720 * include/dirent.h: Likewise.
13722 * nptl/tst-cancel4-common.h (set_socket_buffer): New function.
13723 * nptl/tst-cancel4-common.c (do_test): Call set_socket_buffer
13724 for socketpair endpoint.
13725 * nptl/tst-cancel4.c (tf_send): Call set_socket_buffer and use
13726 WRITE_BUFFER_SIZE as buffer size for sending socket.
13727 (tf_sendto): Use SOCK_STREAM instead of SOCK_DGRAM and fix an
13728 issue on system where send is implemented with sendto syscall.
13729 * sysdeps/unix/sysv/linux/mips/mips64/Makefile [$(subdir) = socket]
13730 (CFLAGS-recv.c, CFLAGS-send.c): Remove rules.
13731 [$(subdir) = nptl] (CFLAGS-recv.c, CFLAGS-send.c): Likewise.
13732 * sysdeps/unix/sysv/linux/riscv/rv64/Makefile: Remove file.
13735 * sysdeps/unix/sysv/linux/i386/Makefile (tests): Add tst-bz21269.
13736 * sysdeps/unix/sysv/linux/i386/sigaction.c (SET_SA_RESTORER): Clear
13737 sa_restorer for vDSO case.
13738 * sysdeps/unix/sysv/linux/i386/tst-bz21269.c: New file.
13740 2018-03-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
13742 * scripts/check-installed-headers.sh: Ignore Hurd and Mach headers.
13743 * hurd/hurd/id.h: Include <hurd/hurd_types.h>
13744 * hurd/hurd/ioctl.h: Include <mach/port.h>
13745 * hurd/hurd/lookup.h: Include <hurd/hurd_types.h>
13746 * mach/Makefile ($(objpfx)mach-shortcuts.h): Make it include
13747 <mach/mach_types.h> and <mach/message.h>.
13748 (headers): Move mach/param.h to bits/mach/param.h.
13749 * sysdeps/mach/i386/mach/param.h: Move file to ...
13750 * sysdeps/mach/i386/bits/mach/param.h: ... here. Update path in #error.
13751 * sysdeps/mach/hurd/bits/param.h: Include <bits/mach/param.h> instead
13753 * hurd/hurd/port.h: Do not include <hurd/signal.h>.
13754 * hurd/hurd/userlink.h [!defined __USE_EXTERN_INLINES ||
13755 !defined _LIBC || !IS_IN (libc)]: Do not include <hurd/signal.h>.
13756 * hurd/hurd/fd.h (_hurd_fd_error): Fix struct initializer to be
13757 trivial, for C++ conformity.
13758 * sysdeps/mach/hurd/dl-sysdep.c: Include <mach/machine/vm_param.h>.
13759 * mach/Machrules ($(patsubst %,$(objpfx)%.h,$(user-interfaces)):
13760 Process mig output through $(migheadersed).
13761 * hurd/Makefile (migheadersed): Define variable.
13762 * mach/mach/mig_support.h [defined __USE_GNU]: Do not #error out.
13763 * scripts/check-installed-headers.sh: Do not ignore Hurd and Mach
13765 * hurd/hurd.h: Include <bits/types/sigset_t.h>
13766 * hurd/hurd/fd.h: Include <sys/select.h> and <bits/types/sigset_t.h>
13767 (_hurd_fd_read, _hurd_fd_write): Use __loff_t instead of loff_t.
13768 * hurd/hurd/signal.h: Include <bits/types/stack_t.h> and
13769 <bits/types/sigset_t.h>.
13770 [!defined __USE_GNU]: Do not #error out.
13771 (struct hurd_sigstate): Use _NSIG instead of NSIG.
13772 * hurd/hurd/sigpreempt.h (__need_size_t): Define.
13773 Include <stddef.h> and <bits/types/sigset_t.h>
13774 (struct hurd_signal_preemptor, hurd_catch_signal): Use __sighandler_t
13775 instead of sighandler_t.
13776 * stdlib/errno.h (error_t): Move definition to...
13777 * bits/types/error_t.h: ... new header.
13778 * stdlib/Makefile (headers): Add bits/types/error_t.h.
13779 * sysdeps/mach/hurd/bits/errno.h (error_t): Move definition to...
13780 * sysdeps/mach/hurd/bits/types/error_t.h: ... new header.
13781 * sysdeps/mach/hurd/errnos.awk (error_t): Likewise.
13782 * hurd/hurd.h: Include <bits/types/error_t.h>
13783 * hurd/hurd/fd.h: Include <bits/types/error_t.h>
13784 * hurd/hurd/id.h: Include <errno.h> and <bits/types/error_t.h>
13785 * hurd/hurd/lookup.h: Include <errno.h> and <bits/types/error_t.h>
13786 * hurd/hurd/resource.h: Include <bits/types/error_t.h>
13787 * hurd/hurd/signal.h: Include <bits/types/error_t.h>
13788 * hurd/hurd/sigpreempt.h: Include <bits/types/error_t.h>
13789 * sysdeps/mach/hurd/futimens.c: New file.
13791 2018-03-03 Andreas Schwab <schwab@linux-m68k.org>
13794 * nss/nsswitch.h (DEFINE_DATABASE): Don't define __nss_*_database.
13795 * nss/nsswitch.c (DEFINE_DATABASE): Define __nss_*_database here.
13796 * nscd/gai.c (__nss_hosts_database): Readd definition.
13797 * posix/tst-rfc3484.c (__nss_hosts_database): Likewise.
13798 * posix/tst-rfc3484-3.c (__nss_hosts_database): Likewise.
13799 * posix/tst-rfc3484-2.c (__nss_hosts_database): Likewise.
13801 2018-03-02 Joseph Myers <joseph@codesourcery.com>
13803 * sysdeps/powerpc/ifunc-sel.h (ifunc_sel): Make always_inline.
13804 (ifunc_one): Likewise.
13806 2018-03-01 DJ Delorie <dj@delorie.com>
13809 * nscd/netgroupcache.c (addinnetgrX): Include trailing NUL in
13812 2018-03-01 Maciej W. Rozycki <macro@mips.com>
13814 * nptl_db/td_ta_thr_iter.c (iterate_thread_list): Remove
13815 `match_pid' parameter.
13816 (td_ta_thr_iter): Update accordingly.
13818 2018-03-01 Florian Weimer <fweimer@redhat.com>
13820 * nptl/Makefile (install-lib-ldscripts): Remove.
13821 (install): Remove rule.
13822 ($(inst_libdir)/libpthread.so): Likewise.
13824 2018-03-01 Mike FABIAN <mfabian@redhat.com>
13827 * localedata/locales/an_ES: update month and day names,
13828 improve d_fmt, improve postal_fmt, add country_post,
13831 2018-03-01 Mike FABIAN <mfabian@redhat.com>
13833 * localedata/locales/bg_BG (LC_COLLATE): The comment mentioned
13834 Ukrainian instead of Bulgarian.
13836 2018-03-01 Florian Weimer <fweimer@redhat.com>
13838 * nptl/Makefile (libpthread.so): Drop libpthread_nonshared.a
13841 2018-03-01 Florian Weimer <fweimer@redhat.com>
13843 Move pthread_atfork to libc. Remove libpthread_nonshared.a.
13844 * nptl/Makefile (routines): Add pthread_atfork.
13845 (static-only-routines): Set to pthread_atfork.
13846 (libpthread-routines): Remove pthread_atfork.
13847 (libpthread-static-only-routines): Remove.
13848 (install): Update comment.
13849 (libpthread.so): Do not install libpthread_nonshared.a.
13850 (tests): Do not link with libpthread_nonshared.a.
13851 (generated): Remove libpthread_nonshared.a.
13852 * nptl/pthread_atfork.c (pthread_atfork): Turn into weak alias.
13853 * sysdeps/nptl/Makeconfig (shared-thread-library): Do not link
13854 with libpthread_nonshared.a.
13856 2018-02-28 Joseph Myers <joseph@codesourcery.com>
13859 * sysdeps/i386/fpu/fenv_private.h [!__x86_64__]
13860 (libc_feholdexcept_setroundf128): New macro.
13861 [!__x86_64__] (libc_feupdateenv_testf128): Likewise.
13864 * sysdeps/wordsize-32/strtoumax.c (strtoumax): Use
13866 * sysdeps/wordsize-64/strtoumax.c (strtoumax): Likewise.
13867 * include/inttypes.h: New file.
13869 2018-02-27 Joseph Myers <joseph@codesourcery.com>
13871 * locale/weightwc.h (findidx): Ignore -Wmaybe-uninitialized for
13872 -Os in two more places.
13874 2018-02-27 Mike FABIAN <mfabian@redhat.com>
13876 See this bug https://sourceware.org/bugzilla/show_bug.cgi?id=22898
13877 * localedata/cmn_TW.UTF-8.in: Remove the lines which cannot
13878 be sorted correctly at the moment because of a bug.
13880 2018-02-27 Mike FABIAN <mfabian@redhat.com>
13882 [BZ #22550] - es_ES locale (and other es_* locales): collation should
13883 treat ñ as a primary different character, sync the collation
13884 for Spanish with CLDR.
13885 [BZ #21547] - Tibetan script collation broken (Dzongkha and Tibetan).
13886 * localedata/Makefile: Add new test files.
13887 * localedata/lv_LV.UTF-8.in: Adapt test file to new collation order.
13888 * localedata/sv_SE.ISO-8859-1.in: Adapt test file to new
13890 * localedata/uk_UA.UTF-8.in: Adapt test file to new collation order.
13891 * localedata/am_ET.UTF-8.in: New test file.
13892 * localedata/az_AZ.UTF-8.in: Likewise.
13893 * localedata/be_BY.UTF-8.in: Likewise.
13894 * localedata/ber_DZ.UTF-8.in: Likewise.
13895 * localedata/ber_MA.UTF-8.in: Likewise.
13896 * localedata/bg_BG.UTF-8.in: Likewise.
13897 * localedata/br_FR.UTF-8.in: Likewise.
13898 * localedata/cmn_TW.UTF-8.in: Likewise.
13899 * localedata/crh_UA.UTF-8.in: Likewise.
13900 * localedata/csb_PL.UTF-8.in: Likewise.
13901 * localedata/cv_RU.UTF-8.in: Likewise.
13902 * localedata/cy_GB.UTF-8.in: Likewise.
13903 * localedata/dz_BT.UTF-8.in: Likewise.
13904 * localedata/eo.UTF-8.in: Likewise.
13905 * localedata/es_ES.UTF-8.in: Likewise.
13906 * localedata/fa_IR.UTF-8.in: Likewise.
13907 * localedata/fi_FI.UTF-8.in: Likewise.
13908 * localedata/fil_PH.UTF-8.in: Likewise.
13909 * localedata/fur_IT.UTF-8.in: Likewise.
13910 * localedata/gez_ER.UTF-8@abegede.in: Likewise.
13911 * localedata/ha_NG.UTF-8.in: Likewise.
13912 * localedata/ig_NG.UTF-8.in: Likewise.
13913 * localedata/ik_CA.UTF-8.in: Likewise.
13914 * localedata/kk_KZ.UTF-8.in: Likewise.
13915 * localedata/ku_TR.UTF-8.in: Likewise.
13916 * localedata/ky_KG.UTF-8.in: Likewise.
13917 * localedata/ln_CD.UTF-8.in: Likewise.
13918 * localedata/mi_NZ.UTF-8.in: Likewise.
13919 * localedata/ml_IN.UTF-8.in: Likewise.
13920 * localedata/mn_MN.UTF-8.in: Likewise.
13921 * localedata/mr_IN.UTF-8.in: Likewise.
13922 * localedata/mt_MT.UTF-8.in: Likewise.
13923 * localedata/nb_NO.UTF-8.in: Likewise.
13924 * localedata/om_KE.UTF-8.in: Likewise.
13925 * localedata/os_RU.UTF-8.in: Likewise.
13926 * localedata/ps_AF.UTF-8.in: Likewise.
13927 * localedata/ro_RO.UTF-8.in: Likewise.
13928 * localedata/ru_RU.UTF-8.in: Likewise.
13929 * localedata/sc_IT.UTF-8.in: Likewise.
13930 * localedata/se_NO.UTF-8.in: Likewise.
13931 * localedata/sq_AL.UTF-8.in: Likewise.
13932 * localedata/sv_SE.UTF-8.in: Likewise.
13933 * localedata/szl_PL.UTF-8.in: Likewise.
13934 * localedata/tg_TJ.UTF-8.in: Likewise.
13935 * localedata/tk_TM.UTF-8.in: Likewise.
13936 * localedata/tt_RU.UTF-8.in: Likewise.
13937 * localedata/tt_RU.UTF-8@iqtelif.in: Likewise.
13938 * localedata/ug_CN.UTF-8.in: Likewise.
13939 * localedata/uz_UZ.UTF-8.in: Likewise.
13940 * localedata/vi_VN.UTF-8.in: Likewise.
13941 * localedata/yi_US.UTF-8.in: Likewise.
13942 * localedata/yo_NG.UTF-8.in: Likewise.
13943 * localedata/zh_CN.UTF-8.in: Likewise.
13944 * localedata/locales/am_ET: Adapt collation rules to new iso14651_t1_common
13945 file and fix bugs in the collation.
13946 * localedata/locales/az_AZ: Likewise.
13947 * localedata/locales/be_BY: Likewise.
13948 * localedata/locales/ber_DZ: Likewise.
13949 * localedata/locales/ber_MA: Likewise.
13950 * localedata/locales/bg_BG: Likewise.
13951 * localedata/locales/br_FR: Likewise.
13952 * localedata/locales/br_FR@euro: Likewise.
13953 * localedata/locales/ca_ES: Likewise.
13954 * localedata/locales/cns11643_stroke: Likewise.
13955 * localedata/locales/crh_UA: Likewise.
13956 * localedata/locales/cs_CZ: Likewise.
13957 * localedata/locales/csb_PL: Likewise.
13958 * localedata/locales/cv_RU: Likewise.
13959 * localedata/locales/cy_GB: Likewise.
13960 * localedata/locales/da_DK: Likewise.
13961 * localedata/locales/dz_BT: Likewise.
13962 * localedata/locales/en_CA: Likewise.
13963 * localedata/locales/eo: Likewise.
13964 * localedata/locales/es_CU: Likewise.
13965 * localedata/locales/es_EC: Likewise.
13966 * localedata/locales/es_ES: Likewise.
13967 * localedata/locales/es_US: Likewise.
13968 * localedata/locales/et_EE: Likewise.
13969 * localedata/locales/fa_IR: Likewise.
13970 * localedata/locales/fi_FI: Likewise.
13971 * localedata/locales/fil_PH: Likewise.
13972 * localedata/locales/fur_IT: Likewise.
13973 * localedata/locales/gez_ER@abegede: Likewise.
13974 * localedata/locales/ha_NG: Likewise.
13975 * localedata/locales/hr_HR: Likewise.
13976 * localedata/locales/hsb_DE: Likewise.
13977 * localedata/locales/hu_HU: Likewise.
13978 * localedata/locales/ig_NG: Likewise.
13979 * localedata/locales/ik_CA: Likewise.
13980 * localedata/locales/is_IS: Likewise.
13981 * localedata/locales/iso14651_t1_pinyin: Likewise.
13982 * localedata/locales/kk_KZ: Likewise.
13983 * localedata/locales/ku_TR: Likewise.
13984 * localedata/locales/ky_KG: Likewise.
13985 * localedata/locales/ln_CD: Likewise.
13986 * localedata/locales/lt_LT: Likewise.
13987 * localedata/locales/lv_LV: Likewise.
13988 * localedata/locales/mi_NZ: Likewise.
13989 * localedata/locales/ml_IN: Likewise.
13990 * localedata/locales/mn_MN: Likewise.
13991 * localedata/locales/mr_IN: Likewise.
13992 * localedata/locales/mt_MT: Likewise.
13993 * localedata/locales/nb_NO: Likewise.
13994 * localedata/locales/om_KE: Likewise.
13995 * localedata/locales/os_RU: Likewise.
13996 * localedata/locales/pl_PL: Likewise.
13997 * localedata/locales/ps_AF: Likewise.
13998 * localedata/locales/ro_RO: Likewise.
13999 * localedata/locales/ru_RU: Likewise.
14000 * localedata/locales/ru_UA: Likewise.
14001 * localedata/locales/sc_IT: Likewise.
14002 * localedata/locales/se_NO: Likewise.
14003 * localedata/locales/si_LK: Likewise.
14004 * localedata/locales/sq_AL: Likewise.
14005 * localedata/locales/sv_FI: Likewise.
14006 * localedata/locales/sv_FI@euro: Likewise.
14007 * localedata/locales/sv_SE: Likewise.
14008 * localedata/locales/szl_PL: Likewise.
14009 * localedata/locales/tg_TJ: Likewise.
14010 * localedata/locales/ti_ER: Likewise.
14011 * localedata/locales/tk_TM: Likewise.
14012 * localedata/locales/tl_PH: Likewise.
14013 * localedata/locales/tr_TR: Likewise.
14014 * localedata/locales/tt_RU: Likewise.
14015 * localedata/locales/tt_RU@iqtelif: Likewise.
14016 * localedata/locales/ug_CN: Likewise.
14017 * localedata/locales/uk_UA: Likewise.
14018 * localedata/locales/uz_UZ: Likewise.
14019 * localedata/locales/uz_UZ@cyrillic: Likewise.
14020 * localedata/locales/vi_VN: Likewise.
14021 * localedata/locales/yi_US: Likewise.
14022 * localedata/locales/yo_NG: Likewise.
14024 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14026 * gen-locales.mk: Make test files which contain @ modifiers in their
14028 * localedata/gen-locale.sh: Likewise.
14030 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14032 * posix/tst-fnmatch.input: Fix results for range expressions
14034 * posix/tst-regexloc.c: Do not use a range expression for
14035 de_DE.ISO-8859-1 locale.
14037 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14039 * posix/bug-regex5.c: Fix test case because with the new
14040 iso14651_t1_common file, the da_DK locale now has 6 collating elements
14041 in the ISO-8859-1 range instead of 4 with the old iso14651_t1_common
14044 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14046 * localedata/da_DK.ISO-8859-1.in: In the new iso14651_t1_common file
14047 downloaded from ISO, the collation order of @-. and space has changed.
14048 Therefore, this test file needed to be adapted.
14049 * localedata/fr_CA.UTF-8.in: Likewise.
14050 * localedata/fr_FR.UTF-8.in: Likewise.
14051 * localedata/uk_UA.UTF-8.in: Likewise.
14053 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14055 * localedata/cs_CZ.UTF-8.in: adapt this test file to the collation
14056 order of ȥ in the new iso14651_t1_common file.
14057 * localedata/pl_PL.UTF-8.in: Likewise.
14059 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14061 * localedata/locales/iso14651_t1_common: Add sections for various
14062 scripts to the iso14651_t1_common file.
14064 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14066 * localedata/locales/iso14651_t1_common: Use the code point of a
14067 character in the fourth collation level instead of IGNORE for all
14068 entries which have IGNORE on all 4 levels.
14070 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14072 * localedata/locales/iso14651_t1_common: Add some convenient collation
14073 symbols like <AFTER-A>, <BEFORE-A> to make tailoring easier using
14074 rules similar to those in CLDR.
14076 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14078 * localedata/locales/iso14651_t1_common: The new version of this
14079 file downloaded from ISO contained several syntax errors which
14080 are fixed by this patch.
14082 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14084 * localedata/locales/iso14651_t1_common: replace all <U.....>
14085 with <U000.....> because glibc understands only 4 digit or 8 digit
14087 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14089 * localedata/locales/iso14651_t1_common: Necessary changes
14090 to make the file downloaded from ISO usable by glibc.
14092 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14095 * localedata/locales/iso14651_t1_common: Update file to
14096 latest version from ISO (ISO14651_2016_TABLE1_en.txt).
14098 2018-02-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
14100 * sysdeps/pthread/timer_routines.c: Include <timer_routines.h> instead
14101 of <nptl/pthreadP.h>
14102 (thread_attr_compare): Move function to...
14103 [!defined DELAYTIMER_MAX] (DELAYTIMER_MAX): Define to INT_MAX.
14104 * sysdeps/nptl/timer_routines.h: ... new header.
14105 * sysdeps/mach/hurd/gai_misc.h: New file.
14107 2018-02-26 Joseph Myers <joseph@codesourcery.com>
14109 * string/strcoll_l.c: Include <libc-diag.h>.
14110 (STRCOLL): Ignore -Wmaybe-uninitialized for -Os around
14111 declarations of seq1 and seq2.
14114 * stdlib/atoi.c (atoi): Use libc_hidden_def.
14115 * include/stdlib.h [!_ISOMAC] (atoi): Use libc_hidden_proto.
14117 2018-02-26 Dmitry V. Levin <ldv@altlinux.org>
14121 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (__ptrace_request): Add
14122 PTRACE_GETREGS, PTRACE_SETREGS, PTRACE_GETFPREGS, PTRACE_SETFPREGS,
14123 PTRACE_GETVRREGS, PTRACE_SETVRREGS, PTRACE_GETEVRREGS,
14124 PTRACE_SETEVRREGS, PTRACE_GETREGS64, PTRACE_SETREGS64,
14125 PTRACE_GET_DEBUGREG, PTRACE_SET_DEBUGREG, PTRACE_GETVSRREGS,
14126 PTRACE_SETVSRREGS, and PTRACE_SINGLEBLOCK.
14128 2018-02-26 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
14130 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Undefine Linux
14131 macros used in __ptrace_request.
14133 2018-02-23 H.J. Lu <hongjiu.lu@intel.com>
14136 * Makerules ($(common-objpfx)%.h): Pass -DGEN_AS_CONST_HEADERS
14138 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Include
14139 <tcb-offsets.h> only if GEN_AS_CONST_HEADERS isn't defined.
14140 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Don't include
14143 2018-02-23 Joseph Myers <joseph@codesourcery.com>
14146 * ctype/ctype.c (tolower): Use libc_hidden_def.
14147 (toupper): Likewise.
14148 * include/ctype.h [!_ISOMAC] (tolower): Use libc_hidden_proto.
14149 [!_ISOMAC] (toupper): Likewise.
14151 2018-02-23 Mike FABIAN <mfabian@redhat.com>
14153 * localedata/Makefile: Remove --quiet argument when
14156 2018-02-23 Mike FABIAN <mfabian@redhat.com>
14159 * localedata/locales/pt_BR (LC_TIME): use / instead of -
14161 * localedata/locales/pt_PT (LC_TIME): likewise
14163 2018-02-23 Mike FABIAN <mfabian@redhat.com>
14166 * localedata/locales/es_CL (LC_TIME): copy "es_BO".
14167 * localedata/locales/es_CU (LC_TIME): copy "es_BO".
14168 * localedata/locales/es_EC (LC_TIME): copy "es_BO".
14170 2018-02-22 Adhemerval Zanella <adhemerval.zanella@linaro.org>
14172 * sysdeps/sparc/fpu/libm-test-ulps: Update.
14174 * nptl/Makefile (routines): Remove unregister-atfork.
14175 * nptl/register-atfork.c (fork_handler_pool): Remove variable.
14176 (fork_handler_alloc): Remove function.
14177 (fork_handlers, fork_handler_init): New variables.
14178 (__fork_lock): Rename to atfork_lock.
14179 (__register_atfork, __unregister_atfork, libc_freeres_fn): Rewrite
14180 to use a dynamic array to add/remove atfork handlers.
14181 * sysdeps/nptl/fork.c (__libc_fork): Likewise.
14182 * sysdeps/nptl/fork.h (__fork_lock, __fork_handlers, __linkin_atfork):
14183 Remove declaration.
14184 (fork_handler): Remove next, refcntr, and need_signal member.
14185 (__run_fork_handler_type): New enum.
14186 (__run_fork_handlers): New prototype.
14187 * nptl/register-atfork.c: Remove file.
14188 * sysdeps/nptl/libc-lockP.h (__libc_atfork): Remove declaration.
14190 * sysdeps/nptl/nptl-signals.h: Move to ...
14191 * sysdeps/generic/internal-signals.h: ... here. Adjust internal
14193 * sysdeps/unix/sysv/linux/internal-signals.h: Add include guards.
14194 (__nptl_is_internal_signal): Rename to __is_internal_signal and remove
14195 unnecessary check for SIGTIMER.
14196 (__nptl_clear_internal_signals): Rename to __clear_internal_signals and
14197 remove unnecessary removal of SIGTIMER.
14198 * sysdeps/unix/sysv/linux/raise.c: Adjust nptl-signal.h to
14199 include-signals.h rename.
14200 * nptl/pthreadP.h: Likewise.
14201 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Call
14202 __is_internal_signal instead of __nptl_is_internal_signal.
14204 2018-02-22 Andrew Waterman <andrew@sifive.com>
14207 * sysdeps/riscv/rvd/s_fmax.c (__fmax): Handle sNaNs correctly.
14208 * sysdeps/riscv/rvd/s_fmin.c (__fmin): Likewise.
14209 * sysdeps/riscv/rvf/s_fmaxf.c (__fmaxf): Likewise.
14210 * sysdeps/riscv/rvf/s_fminf.c (__fminf): Likewise.
14212 2018-02-22 DJ Delorie <dj@delorie.com>
14214 * sysdeps/riscv/tls-macros.h: Do not initialize $gp.
14216 2018-02-22 Siddhesh Poyarekar <siddhesh@sourceware.org>
14218 * sysdeps/aarch64/strcmp.S (do_misaligned): Jump back to
14219 do_misaligned, not misaligned8.
14221 2018-02-22 Steve Ellcey <sellcey@cavium.com>
14223 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines):
14224 Add memcpy_thunderx2.
14225 * sysdeps/aarch64/multiarch/ifunc-impl-list.c (MAX_IFUNC):
14227 (__libc_ifunc_impl_list): Add __memcpy_thunderx2.
14228 * sysdeps/aarch64/multiarch/memcpy.c (libc_ifunc): Add IS_THUNDERX2
14229 and IS_THUNDERX2PA checks.
14230 * sysdeps/aarch64/multiarch/memcpy_thunderx.S (USE_THUNDERX2):
14231 Use macro to set name appropriately.
14232 (memcpy): Use USE_THUNDERX2 macro to modify prefetches.
14233 * sysdeps/aarch64/multiarch/memcpy_thunderx2.S: New file.
14234 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h (IS_THUNDERX2PA):
14236 (IS_THUNDERX2): New macro.
14238 2018-02-22 Stefan Liebler <stli@linux.vnet.ibm.com>
14240 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
14242 2018-02-21 Zack Weinberg <zackw@panix.com>
14244 * libio/libio.h (_IO_pos_BAD, _IO_pos_0, _IO_pos_adjust):
14245 Define here, unconditionally.
14246 * libio/iolibio.h (_IO_pos_BAD): Don't define here.
14247 * libio/libioP.h: Remove #if 0 blocks.
14248 (_IO_pos_BAD, _IO_pos_0, _IO_pos_adjust): Don't define here.
14249 (_IO_va_start, COERCE_FILE, MAYBE_SET_EINVAL): Don't define.
14250 (CHECK_FILE): Don't use MAYBE_SET_EINVAL or COERCE_FILE. Fix style.
14252 * libio/clearerr.c, libio/fputc.c, libio/getchar.c:
14253 Assume weak_alias is always defined.
14255 * libio/fileops.c, libio/genops.c, libio/oldfileops.c
14256 * libio/oldpclose.c, libio/pclose.c, libio/wfileops.c:
14257 Remove #if 0 and #ifdef TODO blocks.
14258 Assume text_set_element is always defined.
14260 * libio/iofdopen.c, libio/iogetdelim.c, libio/oldiofdopen.c
14261 Use __set_errno (EINVAL) instead of MAYBE_SET_EINVAL.
14262 * libio/tst-mmap-eofsync.c: Make #if 1 block unconditional.
14264 * libio/libio.h (_IOS_ATEND, _IOS_APPEND, _IOS_TRUNC)
14265 (_IOS_NOCREATE, _IOS_NOREPLACE, _IOS_BIN, _OLD_STDIO_MAGIC)
14266 (_IO_SKIPWS, _IO_LEFT, _IO_RIGHT, _IO_INTERNAL, _IO_DEC)
14267 (_IO_OCT, _IO_HEX, _IO_SHOWBASE, _IO_SHOWPOINT, _IO_UPPERCASE)
14268 (_IO_SHOWPOS, _IO_SCIENTIFIC, _IO_FIXED, _IO_UNITBUF, _IO_STDIO)
14269 (_IO_DONT_CLOSE, _IO_BOOLALPHA, _IO_BAD_SEEN): Remove, unused.
14270 Reformat bit flags for _flags field to make occupancy clearer.
14272 * libio/bits/types/struct_FILE.h (_IO_EOF_SEEN, _IO_ERR_SEEN):
14273 Keep definitions consistent with those in libio/libio.h.
14275 * libio/libio.h (_IO_file_flags): Remove macro.
14276 All uses changed to _flags.
14278 * libio/libio.h (_IO_UNIFIED_JUMPTABLES, _STDIO_USES_IOSTREAM)
14279 (__HAVE_COLUMN, _IO_BE): Don't define.
14280 (_IO_peekc_unlocked, _IO_getwc_unlocked, _IO_putwc_unlocked)
14281 (_IO_fwide_maybe_incompatible): Use __glibc_unlikely.
14282 * libio/libioP.h (EOF): Don't define.
14283 * libio/iofdopen.c, libio/iofopen.c, libio/iopopen.c
14284 * libio/iovdprintf.c, libio/oldiofdopen.c, libio/oldiofopen.c
14285 * libio/oldiopopen.c, debug/vdprintf_chk.c: Remove #if block
14286 testing _IO_UNIFIED_JUMPTABLES.
14288 * libio/libio.h (_IO_FILE): Delete; all uses changed to FILE.
14289 (_IO_fpos_t): Delete; all uses changed to __fpos_t.
14290 (_IO_fpos64_t): Delete; all uses changed to __fpos64_t.
14291 (_IO_size_t): Delete; all uses changed to size_t.
14292 (_IO_ssize_t): Delete; all uses changed to ssize_t or __ssize_t.
14293 (_IO_off_t): Delete; all uses changed to off_t.
14294 (_IO_off64_t): Delete; all uses changed to off64_t.
14295 (_IO_pid_t): Delete; all uses changed to pid_t.
14296 (_IO_uid_t): Delete; all uses changed to uid_t.
14297 (_IO_wint_t): Delete; all uses changed to wint_t.
14298 (_IO_va_list): Delete; all uses changed to va_list or __gnuc_va_list.
14299 (_IO_BUFSIZ): Delete; all uses changed to BUFSIZ.
14300 (_IO_cookie_io_functions_t): Delete; all uses changed to
14301 cookie_io_functions_t.
14302 (__io_read_fn): Delete; all uses changed to cookie_read_function_t.
14303 (__io_write_fn): Delete; all uses changed to cookie_write_function_t.
14304 (__io_seek_fn): Delete; all uses changed to cookie_seek_function_t.
14305 (__io_close_fn): Delete: all uses changed to cookie_close_function_t.
14307 * libio/iofopncook.c: Remove unnecessary forward declarations.
14308 * libio/iolibio.h: Correct outdated commentary.
14309 * malloc/malloc.c (__malloc_stats): Remove unnecessary casts.
14310 * stdio-common/fxprintf.c (__fxprintf_nocancel):
14311 Remove unnecessary casts.
14312 * stdio-common/getline.c: Use _IO_getdelim directly.
14313 Don't redefine ssize_t.
14314 * stdio-common/printf_fp.c, stdio_common/printf_fphex.c
14315 * stdio-common/printf_size.c: Don't redefine size_t or FILE.
14316 Remove outdated comments.
14317 * stdio-common/vfscanf.c: Don't redefine va_list.
14319 * libio/iolibio.h, libio/libioP.h: Remove extern "C".
14320 * libio/libio.h: Remove __BEGIN_DECLS and __END_DECLS.
14321 Remove preprocessor conditionals on _LIBC and __USE_GNU,
14322 which are always true, and __cplusplus, which is always false.
14324 2018-02-21 Joseph Myers <joseph@codesourcery.com>
14328 * libio/fputc_u.c (fputc_unlocked): Use libc_hidden_def.
14329 * libio/putc_u.c (putc_unlocked): Rename to __putc_unlocked and
14330 define as weak alias of __putc_unlocked. Use libc_hidden_weak.
14331 * include/stdio.h [!_ISOMAC] (fputc_unlocked): Use
14333 [!_ISOMAC] (putc_unlocked): Likewise.
14334 [!_ISOMAC] (__putc_unlocked): Declare as hidden function, and
14335 define inline if [__USE_EXTERN_INLINES].
14336 * misc/syslog.c (__vsyslog_chk): Call __putc_unlocked instead of
14341 * libio/getc_u.c (getc_unlocked): Use libc_hidden_weak.
14342 * include/stdio.h [!_ISOMAC] (__getc_unlocked): Use
14343 attribute_hidden, and define inline if [__USE_EXTERN_INLINES].
14344 [!_ISOMAC] (getc_unlocked): Use libc_hidden_proto.
14345 * misc/getttyent.c (__getttyent): Call __getc_unlocked instead of
14347 * time/tzfile.c (__tzfile_read): Likewise.
14349 2018-02-21 Mike FABIAN <mfabian@redhat.com>
14352 * localedata/locales/et_EE (LC_COLLATE): add missing “reorder-end”
14354 2018-02-21 Rical Jasan <ricaljasan@pacific.net>
14356 * io/fcntl.h: Fix a typo in a comment.
14358 2018-02-21 Rical Jasan <ricaljasan@pacific.net>
14361 * include/features.h: Add _ISOC11_SOURCE to test for whether to
14362 define _DEFAULT_SOURCE.
14363 * manual/creature.texi (_DEFAULT_SOURCE): Improve documentation.
14365 2018-02-21 Florian Weimer <fweimer@redhat.com>
14368 * elf/cache.c (save_cache): Call fsync on temporary file before
14370 (save_aux_cache): Call fdatasync on temporary file before renaming
14373 2018-02-21 Florian Weimer <fweimer@redhat.com>
14376 * include/caller.h: Remove file.
14377 * elf/dl-caller.c: Likewise.
14378 * elf/Makefile (dl-routines): Remove dl-caller.
14379 (shared-only-routines): Do not add dl-caller.
14380 * elf/dl-load.c (_dl_map_object_from_fd): Do not call
14382 * elf/dl-open.c (struct dl_open_args): Remove caller_dl_open
14384 (dl_open_worker): Do not call __check_caller.
14385 (_dl_open): Do not set caller_dl_open member.
14386 * elf/rtld.c (_rtld_global_ro): Do not initialize
14387 _dl_check_caller member.
14388 * sysdeps/generic/ldsodefs.h (rtld_global): Remove
14389 _dl_check_caller member.
14390 (_dl_check_caller): Remove declaration.
14391 * sysdeps/unix/sysv/linux/dl-execstack.c
14392 (_dl_make_stack_executable): Do not call __check_caller.
14394 2018-02-21 Samuel Thibault <samuel.thibault@ens-lyon.org>
14396 * sysdeps/mach/hurd/dl-sysdep.c (_dl_random): New variable.
14397 * sysdeps/mach/hurd/sysdep-cancel.h: New file.
14399 2018-02-20 Rical Jasan <ricaljasan@pacific.net>
14401 * manual/creature.texi (_ISOC99_SOURCE): Update the dated
14404 2018-02-20 Rical Jasan <ricaljasan@pacific.net>
14407 * manual/creature.texi (_POSIX_C_SOURCE): Document special values
14408 of 199606L, 200112L, and 200809L.
14409 (_XOPEN_SOURCE): Document special values of 600 and 700.
14410 (_ISOC11_SOURCE): Document macro.
14411 (_ATFILE_SOURCE): Likewise.
14412 (_FORTIFY_SOURCE): Likewise.
14414 2018-02-19 Joseph Myers <joseph@codesourcery.com>
14418 * libio/ferror_u.c (ferror_unlocked): Rename to __ferror_unlocked
14419 and define as weak alias of __ferror_unlocked. Use
14421 * include/stdio.h [!_ISOMAC] (ferror_unlocked): Use
14423 [!_ISOMAC] (__ferror_unlocked) New declaration, and inline
14424 function if [__USE_EXTERN_INLINES].
14425 * time/getdate.c (__getdate_r): Call __ferror_unlocked instead of
14428 2018-02-19 Rical Jasan <ricaljasan@pacific.net>
14431 * manual/filesys.texi (get_current_dir_name): Clarify behaviour.
14433 2018-02-18 Aurelien Jarno <aurelien@aurel32.net>
14436 * posix/tst-glob_lstat_compat.c [__alpha__] (glob): Access
14437 the GLIBC_2.1 version.
14439 2018-02-18 Aurelien Jarno <aurelien@aurel32.net>
14442 * catgets/xopen-msg.awk: Ignore POT-Creation-Date line.
14443 * intl/Makefile ($(objpfx)tst-gettext-de.po): Generate
14444 intl/tst-gettext-de.po from po/de.po by removing the
14445 POT-Creation-Date line.
14446 ($(objpfx)msgs.h): Depend on $(objpfx)tst-gettext-de.po instead of
14448 * intl/tst-gettext.sh: Use ${objpfx}tst-gettext-de.po instead of
14451 2018-02-17 Samuel Thibault <samuel.thibault@ens-lyon.org>
14453 * mach/Makefile (headers): Add mach/param.h.
14454 * sysdeps/mach/hurd/bits/param.h: Include <mach/param.h>.
14455 * sysdeps/mach/i386/mach/param.h: New file, defines EXEC_PAGESIZE
14456 * sysdeps/mach/hurd/ptsname.c: Include <sys/stat.h>.
14457 (__ptsname_r): Move implementation to...
14458 (__ptsname_internal): ... new function. Add filling the STP
14461 2018-02-17 John David Anglin <danglin@gcc.gnu.org>
14463 * sysdeps/hppa/fpu/libm-test-ulps (pow): Increase double and
14466 2018-02-16 Rical Jasan <ricaljasan@pacific.net>
14468 * manual/platform.texi (__riscv_flush_icache): Fix @deftypefun
14471 2018-02-16 Stefan Liebler <stli@linux.vnet.ibm.com>
14473 * nptl/Makefile (tst-mutex8-ENV): Delete.
14474 * nptl/tst-mutex8.c (check_type):
14475 Add runtime check if mutex will be elided.
14477 2018-02-15 Joseph Myers <joseph@codesourcery.com>
14481 * manual/install.texi (Configuring and compiling): Describe
14482 passing CC and CFLAGS on configure command line, not as
14483 environment variables. Use @code markup on those variables.
14484 Specify what options go in CC and what go in CFLAGS. Note the
14485 requirement to compile with optimization.
14486 * INSTALL: Regenerated.
14489 * sysdeps/hppa/bsd-setjmp.S: Include <sysdep.h>.
14490 (setjmp): Use HIDDEN_JUMPTARGET with __sigsetjmp.
14491 * sysdeps/unix/sysv/linux/hppa/getcontext.S (__getcontext): Call
14492 __sigprocmask instead of sigprocmask.
14493 * sysdeps/unix/sysv/linux/hppa/setcontext.S (__setcontext):
14495 * sysdeps/unix/sysv/linux/hppa/localplt.data: Remove entries for
14496 __sigsetjmp and sigprocmask.
14499 * include/argz.h (argz_next): Use libc_hidden_proto.
14500 (__argz_next): Likewise.
14501 * string-argz-next.c (__argz_next): Use libc_hidden_def.
14502 (argz_next): Use libc_hidden_weak.
14505 * include/sys/socket.h [!_ISOMAC] (__cmsg_nxthdr): Use
14507 * sysdeps/unix/sysv/linux/cmsg_nxthdr.c (__cmsg_nxthdr): Use
14511 * include/stdio.h [!_ISOMAC && IS_IN (libc)] (fputs): Use
14513 * libio/iofputs.c (fputs): Use libc_hidden_weak.
14517 * libio/feof_u.c (feof_unlocked): Rename to __feof_unlocked and
14518 define as weak alias of __feof_unlocked. Use libc_hidden_weak.
14519 * include/stdio.h (feof_unlocked): Use libc_hidden_proto.
14520 (__feof_unlocked): New declaration, and inline function if
14521 [__USE_EXTERN_INLINES].
14522 * iconv/gconv_conf.c (read_conf_file): Call __feof_unlocked
14523 instead of feof_unlocked.
14524 * intl/localealias.c [_LIBC] (FEOF): Likewise.
14525 * nss/nsswitch.c (nss_parse_file): Likewise.
14526 * sysdeps/unix/sysv/linux/readonly-area.c (__readonly_area):
14528 * time/getdate.c (__getdate_r): Likewise.
14529 * sysdeps/posix/getaddrinfo.c [IS_IN (libc)] (feof_unlocked):
14530 Define as macro to call __feof_unlocked.
14532 2018-02-15 Wilco Dijkstra <wdijkstr@arm.com>
14534 * sysdeps/aarch64/fpu/fpu_control.h: Use <> in include.
14536 2018-02-15 Wilco Dijkstra <wdijkstr@arm.com>
14538 * math/Makefile: Remove mpexp.c and mplog.c
14539 * sysdeps/i386/fpu/mpexp.c: Delete file.
14540 * sysdeps/i386/fpu/mplog.c: Likewise.
14541 * sysdeps/ia64/fpu/mpexp.c: Likewise.
14542 * sysdeps/ia64/fpu/mplog.c: Likewise.
14543 * sysdeps/ieee754/dbl-64/e_exp.c: Remove mention of mpexp and mplog.
14544 * sysdeps/ieee754/dbl-64/mpa.h (__pow_mp): Remove unused function.
14545 * sysdeps/ieee754/dbl-64/mpexp.c: Delete file.
14546 * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
14547 * sysdeps/m68k/m680x0/fpu/mpexp.c: Likewise.
14548 * sysdeps/m68k/m680x0/fpu/mplog.c: Likewise.
14549 * sysdeps/x86_64/fpu/multiarch/Makefile: Remove mpexp* and mplog*.
14550 * sysdeps/x86_64/fpu/multiarch/e_log-avx.c: Remove unused defines.
14551 * sysdeps/x86_64/fpu/multiarch/e_log-fma.c: Likewise.
14552 * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: Likewise.
14553 * sysdeps/x86_64/fpu/multiarch/mpexp-avx.c: Delete file.
14554 * sysdeps/x86_64/fpu/multiarch/mpexp-fma.c: Likewise.
14555 * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: Likewise.
14556 * sysdeps/x86_64/fpu/multiarch/mplog-avx.c: Likewise.
14557 * sysdeps/x86_64/fpu/multiarch/mplog-fma.c: Likewise.
14558 * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: Likewise.
14560 2018-02-15 Stefan Liebler <stli@linux.vnet.ibm.com>
14562 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
14564 2018-02-14 Adhemerval Zanella <adhemerval.zanella@linaro.org>
14566 * sysdeps/sh/libm-test-ulps: Update.
14568 2018-02-12 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
14570 * sysdeps/powerpc/fpu/libm-test-ulps (pow): Increase double and
14573 2018-02-12 Zack Weinberg <zackw@panix.com>
14576 * posix/sys/types.h: Don't include sys/sysmacros.h.
14577 * misc/sys/sysmacros.h: Remove the conditional deprecation
14578 warnings for the macros defined by this header.
14580 2018-02-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
14582 * manual/probes.texi: Remove slowexp probes.
14583 * math/Makefile: Remove slowexp.
14584 * sysdeps/generic/math_private.h (__slowexp): Remove.
14585 * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Remove __slowexp and
14586 document error bounds.
14587 * sysdeps/i386/fpu/slowexp.c: Remove.
14588 * sysdeps/ia64/fpu/slowexp.c: Remove.
14589 * sysdeps/ieee754/dbl-64/slowexp.c: Remove.
14590 * sysdeps/ieee754/dbl-64/uexp.h (err_0): Remove.
14591 * sysdeps/m68k/m680x0/fpu/slowexp.c: Remove.
14592 * sysdeps/powerpc/power4/fpu/Makefile (CPPFLAGS-slowexp.c): Remove.
14593 * sysdeps/x86_64/fpu/multiarch/Makefile: Remove slowexp-fma.
14594 * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c (__slowexp): Remove.
14595 * sysdeps/x86_64/fpu/multiarch/e_exp-fma.c (__slowexp): Remove.
14596 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c (__slowexp): Remove.
14597 * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: Remove.
14598 * sysdeps/x86_64/fpu/multiarch/slowexp-fma.c: Remove.
14599 * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Remove.
14601 2018-02-12 Wilco Dijkstra <wdijkstr@arm.com>
14604 * sysdeps/ieee754/dbl-64/uexp.h (err_1): Remove.
14605 * benchtests/pow-inputs: Update comment for slow path cases.
14606 * manual/probes.texi (slowpow_p10): Delete removed probe.
14607 (slowpow_p10): Likewise.
14608 * math/Makefile: Remove halfulp.c and slowpow.c.
14609 * sysdeps/aarch64/libm-test-ulps: Set ULP of pow to 1.
14610 * sysdeps/generic/math_private.h (__exp1): Remove error argument.
14611 (__halfulp): Remove.
14612 (__slowpow): Remove.
14613 * sysdeps/i386/fpu/halfulp.c: Delete file.
14614 * sysdeps/i386/fpu/slowpow.c: Likewise.
14615 * sysdeps/ia64/fpu/halfulp.c: Likewise.
14616 * sysdeps/ia64/fpu/slowpow.c: Likewise.
14617 * sysdeps/ieee754/dbl-64/e_exp.c (__exp1): Remove error argument,
14618 improve comments and add error analysis.
14619 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Add error analysis.
14620 (power1): Remove function:
14621 (log1): Remove error argument, add error analysis.
14622 (my_log2): Remove function.
14623 * sysdeps/ieee754/dbl-64/halfulp.c: Delete file.
14624 * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
14625 * sysdeps/m68k/m680x0/fpu/halfulp.c: Likewise.
14626 * sysdeps/m68k/m680x0/fpu/slowpow.c: Likewise.
14627 * sysdeps/powerpc/power4/fpu/Makefile: Remove CPPFLAGS-slowpow.c.
14628 * sysdeps/x86_64/fpu/libm-test-ulps: Set ULP of pow to 1.
14629 * sysdeps/x86_64/fpu/multiarch/Makefile: Remove slowpow-fma.c,
14630 slowpow-fma4.c, halfulp-fma.c, halfulp-fma4.c.
14631 * sysdeps/x86_64/fpu/multiarch/e_pow-fma.c (__slowpow): Remove define.
14632 * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c (__slowpow): Likewise.
14633 * sysdeps/x86_64/fpu/multiarch/halfulp-fma.c: Delete file.
14634 * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: Likewise.
14635 * sysdeps/x86_64/fpu/multiarch/slowpow-fma.c: Likewise.
14636 * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: Likewise.
14638 2018-02-11 Samuel Thibault <samuel.thibault@ens-lyon.org>
14640 * nscd/connections.c (RWLOCK_INITIALIZER): Define to
14641 PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP or
14643 2018-02-10 Dmitry V. Levin <ldv@altlinux.org>
14646 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h (__ptrace_request):
14647 Remove arm-specific PTRACE_GET_THREAD_AREA, PTRACE_GETHBPREGS,
14648 and PTRACE_SETHBPREGS.
14650 2018-02-10 Zack Weinberg <zackw@panix.com>
14653 * malloc/malloc.c (__malloc_stats): Restore stderr->_flags2
14655 * malloc/tst-malloc-stats-cancellation.c: New test case.
14656 * malloc/Makefile: Add new test case.
14658 2018-02-10 Wilco Dijkstra <wdijkstr@arm.com>
14660 * sysdeps/aarch64/fpu/fpu_control.h: Add features.h to fix build error.
14662 2018-02-10 Joseph Myers <joseph@codesourcery.com>
14664 * math/Makefile (libm-narrow-fns): Add add.
14665 (libm-test-funcs-narrow): Likewise.
14666 * math/Versions (GLIBC_2.28): Add narrowing add functions.
14667 * math/bits/mathcalls-narrow.h (add): Use __MATHCALL_NARROW .
14668 * math/gen-auto-libm-tests.c (test_functions): Add add.
14669 * math/math-narrow.h (CHECK_NARROW_ADD): New macro.
14670 (NARROW_ADD_ROUND_TO_ODD): Likewise.
14671 (NARROW_ADD_TRIVIAL): Likewise.
14672 * sysdeps/ieee754/float128/float128_private.h (__faddl): New
14674 (__daddl): Likewise.
14675 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add fadd and
14677 (CFLAGS-nldbl-dadd.c): New variable.
14678 (CFLAGS-nldbl-fadd.c): Likewise.
14679 * sysdeps/ieee754/ldbl-opt/Versions (GLIBC_2.28): Add
14681 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl_daddl): New
14683 * manual/arith.texi (Misc FP Arithmetic): Document fadd, faddl,
14684 daddl, fMaddfN, fMaddfNx, fMxaddfN and fMxaddfNx.
14685 * math/auto-libm-test-in: Add tests of add.
14686 * math/auto-libm-test-out-narrow-add: New generated file.
14687 * math/libm-test-narrow-add.inc: New file.
14688 * sysdeps/i386/fpu/s_f32xaddf64.c: Likewise.
14689 * sysdeps/ieee754/dbl-64/s_f32xaddf64.c: Likewise.
14690 * sysdeps/ieee754/dbl-64/s_fadd.c: Likewise.
14691 * sysdeps/ieee754/float128/s_f32addf128.c: Likewise.
14692 * sysdeps/ieee754/float128/s_f64addf128.c: Likewise.
14693 * sysdeps/ieee754/float128/s_f64xaddf128.c: Likewise.
14694 * sysdeps/ieee754/ldbl-128/s_daddl.c: Likewise.
14695 * sysdeps/ieee754/ldbl-128/s_f64xaddf128.c: Likewise.
14696 * sysdeps/ieee754/ldbl-128/s_faddl.c: Likewise.
14697 * sysdeps/ieee754/ldbl-128ibm/s_daddl.c: Likewise.
14698 * sysdeps/ieee754/ldbl-128ibm/s_faddl.c: Likewise.
14699 * sysdeps/ieee754/ldbl-96/s_daddl.c: Likewise.
14700 * sysdeps/ieee754/ldbl-96/s_faddl.c: Likewise.
14701 * sysdeps/ieee754/ldbl-opt/nldbl-dadd.c: Likewise.
14702 * sysdeps/ieee754/ldbl-opt/nldbl-fadd.c: Likewise.
14703 * sysdeps/ieee754/soft-fp/s_daddl.c: Likewise.
14704 * sysdeps/ieee754/soft-fp/s_fadd.c: Likewise.
14705 * sysdeps/ieee754/soft-fp/s_faddl.c: Likewise.
14706 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
14707 * sysdeps/mach/hurd/i386/libm.abilist: Likewise.
14708 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
14709 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
14710 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
14711 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
14712 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
14713 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
14714 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
14715 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
14716 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
14717 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
14718 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
14719 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
14720 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Likewise.
14721 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Likewise.
14722 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Likewise.
14723 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Likewise.
14724 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
14725 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
14726 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
14727 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
14728 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
14729 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
14730 * sysdeps/unix/sysv/linux/tile/tilegx32/libm.abilist: Likewise.
14731 * sysdeps/unix/sysv/linux/tile/tilegx64/libm.abilist: Likewise.
14732 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
14733 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
14735 * sysdeps/powerpc/powerpc64le/Makefile [$(subdir) = math]
14736 (f128-pairs): New variable.
14737 [$(subdir) = math] ($(foreach suf,$(all-object-suffixes),$(foreach
14738 pair,$(f128-pairs),$(objpfx)test-$(pair)%$(suf)))): Add -mfloat128
14740 [$(subdir) = math] ($(foreach pair,$(f128-pairs),test-$(pair)%)):
14741 Also make tests add $(f128-loader-link) to gnulib-tests.
14743 2018-02-09 DJ Delorie <dj@redhat.com>
14746 * sysdeps/unix/sysv/linux/riscv/readelflib.c (process_elf_file): Use
14747 64-bit ELF type for 64-bit ELF objects.
14749 2018-02-09 Joseph Myers <joseph@codesourcery.com>
14751 * math/libm-test-driver.c (snan_tests_arg): New variable.
14752 * math/libm-test-support.h (snan_tests_arg): New declaration.
14753 * math/libm-test-support.c (enable_test): Check snan_tests_arg.
14755 * math/Makefile (test-type-pairs): New variable.
14756 (test-type-pairs-f64xf128-yes): Likewise.
14757 (tests): Add test-narrow-macros.
14758 (libm-test-funcs-narrow): New variable.
14759 (libm-test-c-narrow): Likewise.
14760 (generated): Add $(libm-test-c-narrow).
14761 (libm-tests-base-narrow): New variable.
14762 (libm-tests-narrow): Likewise.
14763 (libm-tests): Add $(libm-tests-narrow).
14764 (libm-tests-for-type): Handle $(libm-tests-narrow).
14765 (libm-test-c-narrow-obj): New variable.
14766 ($(libm-test-c-narrow-obj)): New rule.
14767 ($(foreach t,$(libm-tests-narrow),$(objpfx)$(t).c)): Likewise.
14768 ($(foreach f,$(libm-test-funcs-narrow),$(objpfx)$(o)-$(f).o)): Use
14769 $(o-iterator) to set dependencies and CFLAGS.
14770 * math/gen-auto-libm-tests.c: Document use for narrowing
14772 (output_for_one_input_case): Take argument NARROW.
14773 (generate_output): Likewise. Update call to
14774 output_for_one_input_case.
14775 (main): Take --narrow option. Update call to generate_output.
14776 * math/gen-libm-test.pl (_apply_lit): Take macro name as argument.
14777 (apply_lit): Update call to _apply_lit.
14778 (apply_arglit): New function.
14779 (parse_args): Handle "a" arguments.
14780 (parse_auto_input): Handle format names using ":".
14781 * math/README.libm-test: Document "a" parameter type.
14782 * math/libm-test-support.h (ARG_TYPE_MIN): New macro.
14783 (ARG_TYPE_TRUE_MIN): Likewise.
14784 (ARG_TYPE_MAX): Likwise.
14785 (ARG_MIN_EXP): Likewise.
14786 (ARG_MAX_EXP): Likewise.
14787 (ARG_MANT_DIG): Likewise.
14788 (TEST_COND_arg_ibm128): Likewise.
14789 (TEST_COND_ibm128_libgcc): Define conditional on [ARG_FLOAT].
14790 (TEST_COND_arg_fmt): New macro.
14791 (init_max_error): Update prototype.
14792 * math/libm-test-support.c (test_ibm128): New variable.
14793 (init_max_error): Take argument testing_ibm128 and set test_ibm128
14794 instead of using [TEST_COND_ibm128] conditional.
14795 (test_exceptions): Use test_ibm128 instead of TEST_COND_ibm128.
14796 * math/libm-test-driver.c (STR_ARG_FLOAT): New macro.
14797 [TEST_NARROW] (TEST_MSG): New definition.
14798 (arg_plus_zero): New macro.
14799 (arg_minus_zero): Likewise.
14800 (arg_plus_infty): Likewise.
14801 (arg_minus_infty): Likewise.
14802 (arg_qnan_value_pl): Likewise.
14803 (arg_qnan_value): Likewise.
14804 (arg_snan_value_pl): Likewise.
14805 (arg_snan_value): Likewise.
14806 (arg_max_value): Likewise.
14807 (arg_min_value): Likewise.
14808 (arg_min_subnorm_value): Likewise.
14809 [ARG_FLOAT] (struct test_aa_f_data): New struct type.
14810 (RUN_TEST_LOOP_aa_f): New macro.
14811 (TEST_SUFF): New macro.
14812 (TEST_SUFF_STR): Likewise.
14813 [!TEST_MATHVEC] (VEC_SUFF): Don't define.
14814 (TEST_COND_any_ibm128): New macro.
14815 (START): Use TEST_SUFF and TEST_SUFF_STR in initializer for
14816 this_func. Update call to init_max_error.
14817 * math/test-double.h (FUNC_NARROW_PREFIX): New macro.
14818 * math/test-float.h (FUNC_NARROW_PREFIX): Likewise.
14819 * math/test-float128.h (FUNC_NARROW_PREFIX): Likewise.
14820 * math/test-float32.h (FUNC_NARROW_PREFIX): Likewise.
14821 * math/test-float32x.h (FUNC_NARROW_PREFIX): Likewise.
14822 * math/test-float64.h (FUNC_NARROW_PREFIX): Likewise.
14823 * math/test-float64x.h (FUNC_NARROW_PREFIX): Likewise.
14824 * math/test-math-scalar.h (TEST_NARROW): Likewise.
14825 * math/test-math-vector.h (TEST_NARROW): Likewise.
14826 * math/test-arg-double.h: New file.
14827 * math/test-arg-float128.h: Likewise.
14828 * math/test-arg-float32x.h: Likewise.
14829 * math/test-arg-float64.h: Likewise.
14830 * math/test-arg-float64x.h: Likewise.
14831 * math/test-arg-ldouble.h: Likewise.
14832 * math/test-math-narrow.h: Likewise.
14833 * math/test-narrow-macros.c: Likewise.
14834 * sysdeps/ieee754/ldbl-opt/test-narrow-macros-ldbl-64.c: Likewise.
14835 * sysdeps/ieee754/ldbl-opt/Makefile (tests): Add
14836 test-narrow-macros-ldbl-64.
14837 (CFLAGS-test-narrow-macros-ldbl-64.c): New variable.
14839 * math/bits/mathcalls-narrow.h: New file.
14840 * include/bits/mathcalls-narrow.h: Likewise.
14841 * math/math-narrow.h: Likewise.
14842 * math/math.h (__MATHCALL_NARROW_ARGS_1): New macro.
14843 (__MATHCALL_NARROW_ARGS_2): Likewise.
14844 (__MATHCALL_NARROW_ARGS_3): Likewise.
14845 (__MATHCALL_NARROW_NORMAL): Likewise.
14846 (__MATHCALL_NARROW_REDIR): Likewise.
14847 (__MATHCALL_NARROW): Likewise.
14848 [__GLIBC_USE (IEC_60559_BFP_EXT)]: Repeatedly include
14849 <bits/mathcalls-narrow.h> with _Mret_, _Marg_ and __MATHCALL_NAME
14851 [__GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
14852 * math/Makefile (headers): Add bits/mathcalls-narrow.h.
14853 (libm-narrow-fns): New variable.
14854 (libm-narrow-types-basic): Likewise.
14855 (libm-narrow-types-ldouble-yes): Likewise.
14856 (libm-narrow-types-float128-yes): Likewise.
14857 (libm-narrow-types-float128-alias-yes): Likewise.
14858 (libm-narrow-types): Likewise.
14859 (libm-routines): Add narrowing functions.
14860 * sysdeps/i386/fpu/fenv_private.h [__x86_64__]
14861 (libc_feholdexcept_setroundf128): New macro.
14862 [__x86_64__] (libc_feupdateenv_testf128): Likewise.
14863 * sysdeps/ieee754/float128/float128_private.h: Include
14864 <math/math-narrow.h>.
14865 [libc_feholdexcept_setroundf128] (libc_feholdexcept_setroundl):
14866 Undefine and redefine.
14867 [libc_feupdateenv_testf128] (libc_feupdateenv_testl): Likewise.
14868 (libm_alias_float_ldouble): Undefine and redefine.
14869 (libm_alias_double_ldouble): Likewise.
14871 * math/Makefile [$(PERL) != no] (libm-test-incs): Remove variable.
14873 2018-02-09 Wilco Dijkstra <wdijkstr@arm.com>
14875 * sysdeps/aarch64/fpu/fpu_control.h: Use builtins for accessing
14878 2018-02-09 Rical Jasan <ricaljasan@pacific.net>
14880 * manual/creature.texi: Convert references to gcc.info to gcc.
14881 * manual/stdio.texi: Likewise.
14882 * manual/string.texi: Likewise.
14884 2018-02-07 Joseph Myers <joseph@codesourcery.com>
14887 * posix/bits/types.h (__int_least8_t): New typedef.
14888 (__uint_least8_t): Likewise.
14889 (__int_least16_t): Likewise.
14890 (__uint_least16_t): Likewise.
14891 (__int_least32_t): Likewise.
14892 (__uint_least32_t): Likewise.
14893 (__int_least64_t): Likewise.
14894 (__uint_least64_t): Likewise.
14895 * sysdeps/generic/stdint.h (int_least8_t): Define using
14897 (int_least16_t): Define using __int_least16_t.
14898 (int_least32_t): Define using __int_least32_t.
14899 (int_least64_t): Define using __int_least64_t.
14900 (uint_least8_t): Define using __uint_least8_t.
14901 (uint_least16_t): Define using __uint_least16_t.
14902 (uint_least32_t): Define using __uint_least32_t.
14903 (uint_least64_t): Define using __uint_least64_t.
14904 * wcsmbs/uchar.h: Include <bits/types.h>.
14905 (char16_t): Define using __uint_least16_t conditional only on
14907 (char32_t): Define using __uint_least32_t conditional only on
14909 * wcsmbs/test-char-types.c: New file.
14910 * wcsmbs/Makefile (tests): Add test-char-types.
14912 * scripts/build-many-glibcs.py (Context.checkout): Default MPFR
14915 2018-02-07 Zack Weinberg <zackw@panix.com>
14917 * bits/_G_config.h: Move back to sysdeps/generic/_G_config.h.
14918 Delete all contents except for definitions of _G_HAVE_MMAP and
14919 _G_HAVE_MREMAP. Add commentary explaining those two symbols.
14920 * sysdeps/unix/sysv/linux/bits/_G_config.h: Move back to
14921 sysdeps/unix/sysv/linux/_G_config.h. Make same content
14924 * libio/libio.h: Don't include bits/_G_config.h here.
14925 Include stddef.h with __need_wchar_t defined. Include
14926 bits/types/__mbstate_t.h, bits/types/wint_t.h, and gconv.h.
14927 Define _IO_iconv_t here, directly.
14928 Don't define _IO_HAVE_ST_BLKSIZE.
14929 * libio/libioP.h: Include _G_config.h here. Move include of
14930 shlib-compat.h up with rest of includes. Simplify conditionals
14931 controlling definition of _IO_JUMPS_OFFSET.
14933 * csu/init.c: Remove always-true #if around entire file.
14934 Don't include stdio.h. Set _IO_stdin_used to hardwired
14935 constant 0x20001, and update commentary.
14936 * include/stdio.h, sysdeps/ieee754/ldbl-opt/nldbl-compat.h:
14937 Replace all uses of _G_va_list with __gnuc_va_list.
14938 * libio/filedoalloc.c: Use #if defined _STATBUF_ST_BLKSIZE
14939 instead of #if _IO_HAVE_ST_BLKSIZE.
14940 * libio/fileops.c: Test _G_HAVE_MREMAP with #if, not #ifdef.
14941 * libio/iofdopen.c, libio/iofopen.c: Test _G_HAVE_MMAP with #if,
14944 * libio/bits/libio.h: Move back to libio/libio.h and adjust
14945 multiple-include guard to match.
14946 Merge contents of libio/bits/libio-ldbl.h and include/libio.h
14948 Remove preprocessor conditionals that are always true and/or
14949 redundant to other preprocessor conditionals in the same nest.
14950 Include shlib-compat.h unconditionally.
14951 Error out if _LIBC is not defined, or if _ISOMAC is defined,
14952 or if _IO_MTSAFE_IO is defined but _IO_lock_t_defined is not
14953 defined after including stdio.h.
14954 Use __BEGIN_DECLS/__END_DECLS.
14956 * libio/bits/libio-ldbl.h, include/bits/libio.h: Delete file.
14957 * include/stdio.h, libio/iolibio.h, libio/libioP.h: Include
14958 libio.h as <libio/libio.h> rather than as <bits/libio.h>.
14960 2018-02-07 Zack Weinberg <zackw@panix.com>
14962 * libio/bits/types/__fpos_t.h, libio/bits/types/__fpos64_t.h:
14963 New single-type headers split from _G_config.h.
14964 * libio/bits/types/cookie_io_functions_t.h
14965 * libio/bits/types/struct_FILE.h
14966 New single-type headers split from libio.h.
14968 * libio/Makefile: Install the above new headers. Don't install
14969 libio.h, _G_config.h, bits/libio.h, bits/_G_config.h, or
14971 * libio/_G_config.h, libio/libio.h: Delete file.
14973 * libio/bits/libio.h: Remove improper-inclusion guard.
14974 Include stdio.h and don't repeat anything that it does.
14975 Define _IO_fpos_t as __fpos_t, _IO_fpos64_t as __fpos64_t,
14976 _IO_BUFSIZ as BUFSIZ, _IO_va_list as __gnuc_va_list,
14977 __io_read_fn as cookie_read_function_t,
14978 __io_write_fn as cookie_write_function_t,
14979 __io_seek_fn as cookie_seek_function_t,
14980 __io_close_fn as cookie_close_function_t,
14981 and _IO_cookie_io_functions_t as cookie_io_functions_t.
14982 Define _STDIO_USES_IOSTREAM, __HAVE_COLUMN, and _IO_file_flags
14983 here, in the "compatibility defines" section. Remove an #if 0
14984 block. Use the "body" macros from bits/types/struct_FILE.h to
14985 define _IO_getc_unlocked, _IO_putc_unlocked, _IO_feof_unlocked,
14986 and _IO_ferror_unlocked.
14987 Move prototypes of __uflow and __overflow...
14989 * libio/stdio.h: ...here. Don't include bits/libio.h.
14990 Don't define _STDIO_USES_IOSTREAM. Get __gnuc_va_list
14991 directly from stdarg.h. Include bits/types/__fpos_t.h,
14992 bits/types/__fpos64_t.h, bits/types/struct_FILE.h,
14993 and, when __USE_GNU, bits/types/cookie_io_functions_t.h.
14994 Use __gnuc_va_list, not _G_va_list; __fpos_t, not _G_fpos_t;
14995 __fpos64_t, not _G_fpos64_t; FILE, not struct _IO_FILE;
14996 cookie_io_functions_t, not _IO_cookie_io_functions_t;
14997 __ssize_t, not _IO_ssize_t. Unconditionally define
14998 BUFSIZ as 8192 and EOF as (-1).
15000 * libio/bits/stdio.h: Add multiple-include guard. Use the "body"
15001 macros from bits/types/struct_FILE.h instead of _IO_* macros
15002 from libio.h; use __gnuc_va_list instead of va_list and __ssize_t
15003 instead of _IO_ssize_t.
15004 * libio/bits/stdio2.h: Similarly.
15006 * libio/iolibio.h: Add multiple-include guard.
15007 Include bits/libio.h after stdio.h.
15008 * libio/libioP.h: Add multiple-include guard.
15009 Include stdio.h and bits/libio.h before iolibio.h.
15011 * include/bits/types/__fpos_t.h, include/bits/types/__fpos64_t.h
15012 * include/bits/types/cookie_io_functions_t.h
15013 * include/bits/types/struct_FILE.h: New wrappers.
15015 * bits/_G_config.h, sysdeps/unix/sysv/linux/_G_config.h:
15016 Get definitions of _G_fpos_t and _G_fpos64_t from
15017 bits/types/__fpos_t.h and bits/types/__fpos64_t.h
15018 respectively. Remove improper-inclusion guards.
15020 * conform/data/stdio.h-data: Update expectations of va_list.
15021 * scripts/check-installed-headers.sh: Remove special case for
15022 libio.h and _G_config.h.
15024 2018-02-07 Joseph Myers <joseph@codesourcery.com>
15028 * include/sys/sysmacros.h [!_ISOMAC]
15029 (__SYSMACROS_NEED_IMPLEMENTATION): Define macro.
15030 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC]
15031 (_SYS_SYSMACROS_H_WRAPPER): Likewise.
15032 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (gnu_dev_major): Use
15034 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (gnu_dev_minor): Likewise.
15035 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (gnu_dev_makedev):
15037 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (__SYSMACROS_DECL_TEMPL):
15038 Undefine and redefine to add use __gnu_dev_ prefix.
15039 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (__SYSMACROS_IMPL_TEMPL):
15041 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (__gnu_dev_major): Declare
15042 and define as hidden inline function.
15043 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (__gnu_dev_minor):
15045 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (__gnu_dev_makedev):
15047 * misc/makedev.c (OUT_OF_LINE_IMPL_TEMPL): Use __gnu_dev_ prefix.
15048 (gnu_dev_major): Use weak_alias and libc_hidden_weak.
15049 (gnu_dev_minor): Likewise.
15050 (gnu_dev_makedev): Likewise.
15051 * csu/check_fds.c (check_one_fd): Use __gnu_dev_makedev instead of
15053 * posix/wordexp.c (exec_comm_child): Likewise.
15054 * sysdeps/mach/hurd/xmknodat.c (__xmknodat): Use __gnu_dev_minor
15055 instead of minor and __gnu_dev_major instead of major.
15056 * sysdeps/unix/sysv/linux/device-nrs.h (DEV_TTY_P): Use
15057 __gnu_dev_major instead of major.
15058 * sysdeps/unix/sysv/linux/pathconf.c (distinguish_extX): Use
15059 __gnu_dev_major instead of gnu_dev_major and __gnu_dev_minor
15060 instead of gnu_dev_minor.
15061 * sysdeps/unix/sysv/linux/ptsname.c (MASTER_P): Likewise.
15062 (SLAVE_P): Likewise.
15063 (__ptsname_internal): Use __gnu_dev_minor instead of minor.
15064 * sysdeps/unix/sysv/linux/ttyname.h (is_pty): Use __gnu_dev_major
15068 * locale/weight.h (findidx): Disable -Wmaybe-uninitialized for -Os
15070 * locale/weightwc.h (findidx): Likewise.
15072 2018-02-07 Wilco Dijkstra <wdijkstr@arm.com>
15074 * manual/probes.texi (slowlog): Delete documentation of removed probe.
15075 (slowlog_inexact): Likewise
15076 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Remove slow paths.
15077 * sysdeps/ieee754/dbl-64/ulog.h: Remove unused declarations.
15079 2018-02-07 Igor Gnatenko <ignatenko@redhat.com>
15082 * sysdeps/unix/sysv/linux/bits/mman-shared.h (pkey_get): Add
15083 missing second underscore to parameter name.
15085 2018-02-06 Joseph Myers <joseph@codesourcery.com>
15091 * bits/byteswap.h: Update file comment. Do not include
15092 <bits/byteswap-16.h>.
15093 (__bswap_constant_16): Cast result to __uint16_t. Use signed 0xff
15095 (__bswap_16): Define as inline function.
15096 (__bswap_constant_32): Reformat definition.
15097 (__bswap_32): Always define as inline function, not macro, using
15098 __uint32_t. Use __builtin_bswap32 if [__GNUC_PREREQ (4, 3)],
15099 otherwise __bswap_constant_32.
15100 (__bswap_constant_64): Reformat definition. Do not use
15101 __extension__ here.
15102 (__bswap_64): Always define as inline function, not macro. Use
15103 __extension__ on function definition. Use __builtin_bswap64 if
15104 [__GNUC_PREREQ (4, 3)], otherwise __bswap_constant_64.
15105 * string/test-endian-file-scope.c: New file.
15106 * string/test-endian-sign-conversion.c: Likewise.
15107 * string/Makefile (headers): Remove bits/byteswap-16.h.
15108 (tests): Add test-endian-file-scope and
15109 test-endian-sign-conversion.
15110 (CFLAGS-test-endian-sign-conversion.c): New variable.
15111 * bits/byteswap-16.h: Remove file.
15112 * sysdeps/ia64/bits/byteswap-16.h: Likewise.
15113 * sysdeps/ia64/bits/byteswap.h: Likewise.
15114 * sysdeps/m68k/bits/byteswap.h: Likewise.
15115 * sysdeps/s390/bits/byteswap-16.h: Likewise.
15116 * sysdeps/s390/bits/byteswap.h: Likewise.
15117 * sysdeps/tile/bits/byteswap.h: Likewise.
15118 * sysdeps/x86/bits/byteswap-16.h: Likewise.
15119 * sysdeps/x86/bits/byteswap.h: Likewise.
15122 * misc/sys/cdefs.h [!__GNUC__ && (__cplusplus || (__STDC_VERSION__
15123 && __STDC_VERSION__ >= 199901L))] (__inline): Define to inline.
15124 [!__GNUC_PREREQ (2,92) && __STDC_VERSION__ && __STDC_VERSION__ >=
15125 199901L] (__restrict): Define to restrict.
15128 * string/testcopy.c: Include <support/support.h>. Do not include
15129 <malloc.h>. Use <support/test-driver.c>.
15130 (main): Rename to do_test. Make static. Use xmalloc instead of
15134 * posix/bits/posix1_lim.h: Include <bits/wordsize.h>.
15135 [!SSIZE_MAX && !(__WORDSIZE == 64 || __WORDSIZE32_SIZE_ULONG)]
15136 (SSIZE_MAX): Define to INT_MAX.
15137 * posix/test-ssize-max.c: New file.
15138 * posix/Makefile (tests): Add test-ssize-max.
15141 * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c: Include
15142 <support/support.h>. Do not include <malloc.h>.
15143 (query_auxv): Use xmalloc instead of malloc.
15146 * posix/sys/types.h (loff_t): Only define for [__USE_MISC].
15147 * sysdeps/unix/sysv/linux/sys/quota.h (dqoff): Use __loff_t
15150 2018-02-06 Florian Weimer <fweimer@redhat.com>
15153 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
15154 Use scratch_buffer instead of extend_alloca.
15156 2018-02-06 Zack Weinberg <zackw@panix.com>
15158 * libio/stdio.h: Don't define getc or putc as macros.
15159 * libio/bits/stdio.h (getchar, putchar): Use getc and putc,
15160 not _IO_getc and _IO_putc.
15162 * stdio-common/tstgetln.c: Don't redefine FILE, va_list, or BUFSIZ.
15163 * stdio-common/tstgetln.c: Don't redefine ssize_t.
15165 2018-02-06 Joseph Myers <joseph@codesourcery.com>
15167 * sysdeps/gnu/netinet/tcp.h (TCP_FASTOPEN_KEY): New macro.
15168 (TCP_FASTOPEN_NO_COOKIE): Likewise.
15170 * sysdeps/unix/sysv/linux/bits/in.h (IPV6_FREEBIND): New macro.
15173 * elf/elf.h (NT_PRFPREG): New macro.
15174 (NT_S390_VXRS_LOW): Likewise.
15175 (NT_S390_VXRS_HIGH): Likewise.
15176 (NT_S390_GS_CB): Likewise.
15177 (NT_S390_GS_BC): Likewise.
15178 (NT_S390_RI_CB): Likewise.
15180 * sysdeps/unix/sysv/linux/aarch64/bits/mman.h [__USE_MISC]
15181 (MAP_SYNC): New macro.
15182 * sysdeps/unix/sysv/linux/arm/bits/mman.h [__USE_MISC] (MAP_SYNC):
15184 * sysdeps/unix/sysv/linux/ia64/bits/mman.h [__USE_MISC]
15185 (MAP_SYNC): Likewise.
15186 * sysdeps/unix/sysv/linux/m68k/bits/mman.h [__USE_MISC]
15187 (MAP_SYNC): Likewise.
15188 * sysdeps/unix/sysv/linux/microblaze/bits/mman.h [__USE_MISC]
15189 (MAP_SYNC): Likewise.
15190 * sysdeps/unix/sysv/linux/nios2/bits/mman.h [__USE_MISC]
15191 (MAP_SYNC): Likewise.
15192 * sysdeps/unix/sysv/linux/riscv/bits/mman.h [__USE_MISC]
15193 (MAP_SYNC): Likewise.
15194 * sysdeps/unix/sysv/linux/s390/bits/mman.h [__USE_MISC]
15195 (MAP_SYNC): Likewise.
15196 * sysdeps/unix/sysv/linux/sh/bits/mman.h [__USE_MISC] (MAP_SYNC):
15198 * sysdeps/unix/sysv/linux/x86/bits/mman.h [__USE_MISC] (MAP_SYNC):
15201 * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_MISC]
15202 (MAP_SHARED_VALIDATE): New macro.
15203 * sysdeps/unix/sysv/linux/hppa/bits/mman.h [__USE_MISC]
15204 (MAP_SHARED_VALIDATE): Likewise.
15206 2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
15208 * elf/dl-addr.c (determine_info): Use ADDRIDX with DT_GNU_HASH.
15209 * elf/dl-lookup.c (_dl_setup_hash): Likewise.
15210 * elf/get-dynamic-info.h (elf_get_dynamic_info): Likewise.
15212 2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
15214 * elf/elf.h (DT_SYMTAB_SHNDX): New. Set to 34.
15215 (DT_NUM): Updated to 35.
15217 2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
15219 * sysdeps/i386/dl-machine.h (elf_machine_rel): Replace
15220 __builtin_expect with __glibc_likely and __glibc_unlikely.
15221 (elf_machine_rela): Likewise.
15222 (elf_machine_lazy_rel): Likewise.
15224 2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
15226 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Replace
15227 __builtin_expect with __glibc_likely and __glibc_unlikely.
15228 (elf_machine_lazy_rel): Likewise.
15230 2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
15233 * sysdeps/sparc/sparc32/start.S (_start): Check PIC instead of
15235 * sysdeps/sparc/sparc64/start.S (_start): Likewise.
15237 2018-02-05 Andreas Schwab <schwab@suse.de>
15240 * assert/assert-perr.c (__assert_perror_fail): Append %n to format
15243 2018-02-04 Samuel Thibault <samuel.thibault@ens-lyon.org>
15245 * stdlib/test-atexit-race-common.c [!defined PTHREAD_STACK_MIN]: Do
15246 not check against PTHREAD_STACK_MIN.
15248 2018-02-02 Sean McKean <smckean83@gmail.com>
15251 * time/time.h (clock): Reference CLOCKS_PER_SEC in comment.
15253 2018-02-02 Florian Weimer <fweimer@redhat.com>
15256 * sysdeps/posix/preadv2.c (preadv2): Handle offset == -1.
15257 * sysdeps/posix/preadv64v2.c (preadv64v2): Likewise.
15258 * sysdeps/posix/pwritev2.c (pwritev2): Likewise.
15259 * sysdeps/posix/pwritev64v2.c (pwritev64v2): Likweise.
15260 * sysdeps/unix/sysv/linux/preadv2.c (preadv2): Likewise.
15261 * sysdeps/unix/sysv/linux/preadv64v2.c (preadv64v2): Likewise.
15262 * sysdeps/unix/sysv/linux/pwritev2.c (pwritev2): Likewise.
15263 * sysdeps/unix/sysv/linux/pwritev64v2.c (pwritev64v2): Likweise.
15264 * manual/llio.texi (Scatter-Gather): Mention offset -1.
15265 * misc/tst-preadvwritev-common.c (do_test_without_offset): New.
15266 * misc/tst-preadvwritev2.c (do_test): Call it.
15267 * misc/tst-preadvwritev64v2.c (do_test): Likewise.
15269 2018-02-02 Siddhesh Poyarekar <siddhesh@sourceware.org>
15271 * sysdeps/aarch64/memcmp.S: Use L() macro for labels.
15273 * benchtests/bench-memcmp.c: Print json instead of plain text.
15275 * benchtests/bench-memcmp.c (do_test): Call realloc_buf for
15278 2018-02-01 Joseph Myers <joseph@codesourcery.com>
15280 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
15282 (s390_sthyi): New syscall.
15284 * sysdeps/generic/ldbl-classify-compat.h: New file.
15285 * sysdeps/arm/ldbl-classify-compat.h: Likewise.
15286 * sysdeps/m68k/coldfire/ldbl-classify-compat.h: Likewise.
15287 * sysdeps/microblaze/ldbl-classify-compat.h: Likewise.
15288 * sysdeps/mips/ldbl-classify-compat.h: Likewise.
15289 * sysdeps/nios2/ldbl-classify-compat.h: Likewise.
15290 * sysdeps/sh/ldbl-classify-compat.h: Likewise.
15291 * sysdeps/ieee754/dbl-64/s_finite.c: Include
15292 <ldbl-classify-compat.h>.
15293 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
15294 * sysdeps/ieee754/dbl-64/s_isinf.c: Include
15295 <ldbl-classify-compat.h>.
15296 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
15297 * sysdeps/ieee754/dbl-64/s_isnan.c: Include
15298 <ldbl-classify-compat.h>.
15299 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
15300 * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Include
15301 <ldbl-classify-compat.h>.
15302 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
15303 * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf.c: Include
15304 <ldbl-classify-compat.h>.
15305 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
15306 * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Include
15307 <ldbl-classify-compat.h>.
15308 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
15309 * sysdeps/arm/math_private.h (LDBL_CLASSIFY_COMPAT): Remove macro.
15310 * sysdeps/mips/math_private.h (LDBL_CLASSIFY_COMPAT): Likewise.
15311 * sysdeps/m68k/coldfire/math_private.h: Remove file.
15312 * sysdeps/microblaze/math_private.h: Likewise.
15313 * sysdeps/nios2/math_private.h: Likewise.
15314 * sysdeps/sh/math_private.h: Likewise.
15316 * sysdeps/m68k/coldfire/fpu/math_private.h: Move to ....
15317 * sysdeps/m68k/coldfire/math_private.h: ... here.
15318 * sysdeps/m68k/coldfire/nofpu/math_private.h: Remove file.
15319 * sysdeps/tile/math_private.h: Likewise.
15320 * sysdeps/microblaze/math_private.h (libc_feholdexcept_setround):
15322 * sysdeps/nios2/math_private.h (libc_feholdexcept_setround):
15325 * sysdeps/m68k/coldfire/nofpu/math_private.h (libc_fesetround):
15327 (libc_fetestexcept): Likewise.
15328 (libc_feupdateenv_test): Likewise.
15329 * sysdeps/microblaze/math_private.h (libc_fesetround): Likewise.
15330 (libc_fetestexcept): Likewise.
15331 (libc_feupdateenv_test): Likewise.
15332 * sysdeps/nios2/math_private.h (libc_fesetround): Likewise.
15333 (libc_fetestexcept): Likewise.
15334 (libc_feupdateenv_test): Likewise.
15335 * sysdeps/tile/math_private.h (libc_fesetround): Likewise.
15336 (libc_fetestexcept): Likewise.
15337 (libc_feupdateenv_test): Likewise.
15339 * sysdeps/generic/math_private.h
15340 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (feholdexcept):
15341 New inline function.
15342 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (__feholdexcept):
15345 * include/fenv.h [!_ISOMAC && !FE_TONEAREST]: Give #error.
15346 [!_ISOMAC] (FE_HAVE_ROUNDING_MODES): New macro.
15347 * sysdeps/generic/math_private.h
15348 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (fegetenv): New
15350 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (__fegetenv):
15352 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (fesetenv):
15354 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (__fesetenv):
15356 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (feupdateenv):
15358 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (__feupdateenv):
15360 [!FE_HAVE_ROUNDING_MODES] (fegetround): Likewise.
15361 [!FE_HAVE_ROUNDING_MODES] (__fegetround): Likewise.
15362 [!FE_HAVE_ROUNDING_MODES] (fesetround): Likewise.
15363 [!FE_HAVE_ROUNDING_MODES] (__fesetround): Likewise.
15364 * sysdeps/tile/math_private.h (fegetenv): Remove inline function.
15365 (__fegetenv): Likewise.
15366 (fesetenv): Likewise.
15367 (__fesetenv): Likewise.
15368 (feupdateenv): Likewise.
15369 (__feupdateenv): Likewise.
15370 (fegetround): Likewise.
15371 (__fegetround): Likewise.
15372 (fesetround): Likewise.
15373 (__fesetround): Likewise.
15375 * sysdeps/generic/math_private.h [FE_ALL_EXCEPT == 0]
15376 (feraiseexcept): New macro.
15377 [FE_ALL_EXCEPT == 0] (__feraiseexcept): Likewise.
15378 * sysdeps/m68k/coldfire/nofpu/math_private.h (feraiseexcept):
15380 (__feraiseexcept): Likewise.
15381 (feclearexcept): Likewise.
15382 * sysdeps/microblaze/math_private.h (feraiseexcept): Likewise.
15383 (__feraiseexcept): Likewise.
15384 (feclearexcept): Likewise.
15385 * sysdeps/nios2/math_private.h (feraiseexcept): Likewise.
15386 (__feraiseexcept): Likewise.
15387 (feclearexcept): Likewise.
15388 * sysdeps/tile/math_private.h (feraiseexcept): Likewise.
15389 (__feraiseexcept): Likewise.
15390 (feclearexcept): Likewise.
15391 (fetestexcept): Likewise.
15393 * sysdeps/m68k/coldfire/math-tests.h: New file.
15395 * sysdeps/m68k/fpu/bits/fenv.h: Move to ....
15396 * sysdeps/m68k/bits/fenv.h: ... here.
15397 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_INEXACT): Do
15399 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_DIVBYZERO):
15401 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_UNDERFLOW):
15403 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_OVERFLOW):
15405 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_INVALID):
15407 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_ALL_EXCEPT):
15409 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__]
15410 (__FE_UNDEFINED): New enum constant.
15411 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_TOWARDZERO):
15413 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_DOWNWARD):
15415 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_UPWARD):
15417 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (fenv_t): Define
15418 to match generic bits/fenv.h.
15419 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_NOMASK_ENV):
15422 * soft-fp/double.h (union _FP_UNION_D): Do not use attribute
15424 * soft-fp/extended.h (union _FP_UNION_E): Likewise.
15425 * soft-fp/half.h (union _FP_UNION_H): Likewise.
15426 * soft-fp/quad.h (union _FP_UNION_Q): Likewise.
15427 * soft-fp/single.h (union _FP_UNION_S): Likewise.
15429 2018-02-01 Carlos O'Donell <carlos@redhat.com>
15430 Ramin Seyed-Moussavi <lordrasmus@gmail.com>
15431 Joseph Myers <joseph@codesourcery.com>
15434 * sysdeps/ieee754/dbl-64/s_log1p.c: Include <libc-diag.h>.
15435 (__log1p): Disable -Wmaybe-uninitialized for -Os around
15436 computation using c.
15437 * sysdeps/ieee754/flt-32/s_log1pf.c: Include <libc-diag.h>.
15438 (__log1pf): Disable -Wmaybe-uninitialized for -Os around
15439 computation using c.
15441 2018-02-01 Dmitry V. Levin <ldv@altlinux.org>
15443 * version.h (RELEASE): Set to "development".
15444 (VERSION): Set to "2.27.9000".
15445 * NEWS (2.28): New section.
15447 * version.h (RELEASE): Set to "stable".
15448 (VERSION): Set to "2.27".
15449 * include/features.h (__GLIBC_MINOR__): Set to 2.27.
15451 * NEWS: Add the list of bugs fixed in 2.27.
15453 2018-02-01 Adhemerval Zanella <adhemerval.zanella@linaro.org>
15455 * stdlib/test-atexit-race-common.c (do_test): Check stack size
15456 against PTHREAD_STACK_MIN.
15458 2018-02-01 Dmitry V. Levin <ldv@altlinux.org>
15460 * manual/contrib.texi (Palmer Dabbelt, Arjun Shankar, Florian Weimer):
15462 (Rafal Luzynski, Andreas Schwab): Update.
15464 2018-02-01 Rafal Luzynski <digitalfreak@lingonborough.com>
15467 * NEWS: List the languages which actually use the alternative
15468 months feature in this release. Also explain that "alt_mon" and
15469 "ab_alt_mon" are optional.
15471 2018-01-31 Il'ya Malakhov <ilmalakhov@yandex.ru>
15474 * crypt/badsalttest.c (do_test): Set cd.initialized to 0.
15476 2018-01-31 Dmitry V. Levin <ldv@altlinux.org>
15478 * manual/install.texi (Tools for Compilation): Update the newest
15479 versions of gcc, binutils, texinfo, gawk, bison, and sed.
15480 * INSTALL: Regenerated.
15482 2018-01-30 Samuel Thibault <samuel.thibault@ens-lyon.org>
15484 * sysdeps/pthread/allocalim.h (__libc_use_alloca): Use __glibc_likely
15485 instead of __builtin_expect.
15487 2018-01-30 Florian Weimer <fweimer@redhat.com>
15489 * nss/bug17079.c (do_test): Use nss_files only for reading passwd
15491 * nss/tst-nss-getpwent.c (do_test): Likewise.
15493 2018-01-30 Rafal Luzynski <digitalfreak@lingonborough.com>
15496 * localedata/locales/hr_HR (mon): Rename to...
15498 (mon): Import from CLDR (genitive case).
15499 (d_t_fmt): Update the comment.
15501 2018-01-29 Andreas Schwab <schwab@linux-m68k.org>
15503 * sysdeps/posix/fpathconf.c (__fpathconf): Verify the values of
15504 _POSIX_CHOWN_RESTRICTED, _POSIX_NO_TRUNC, _POSIX_VDISABLE.
15505 * sysdeps/posix/pathconf.c (__pathconf): Likewise.
15507 2018-01-29 Samuel Thibault <samuel.thibault@ens-lyon.org>
15509 * mach/Versions: Fix version when __mach_host_self_ was added.
15510 * hurd/Versions: Fix version when _hurd_exec_paths was added.
15511 * sysdeps/mach/hurd/i386/ld.abilist: New file.
15512 * sysdeps/mach/hurd/i386/libBrokenLocale.abilist: New file.
15513 * sysdeps/mach/hurd/i386/libanl.abilist: New file.
15514 * sysdeps/mach/hurd/i386/libc.abilist: New file.
15515 * sysdeps/mach/hurd/i386/libcrypt.abilist: New file.
15516 * sysdeps/mach/hurd/i386/libdl.abilist: New file.
15517 * sysdeps/mach/hurd/i386/libm.abilist: New file.
15518 * sysdeps/mach/hurd/i386/libnsl.abilist: New file.
15519 * sysdeps/mach/hurd/i386/libresolv.abilist: New file.
15520 * sysdeps/mach/hurd/i386/librt.abilist: New file.
15521 * sysdeps/mach/hurd/i386/libutil.abilist: New file.
15522 * sysdeps/pthread/allocalim.h (__libc_use_alloca): Commute operands of
15523 || to respect codestyle.
15524 * libio/tst-memstream3.c (_FWRITE): Rename to FWRITE_FUNC.
15525 (do_test_bz20181): Rename accordingly.
15526 * malloc/malloc.c: Include <assert.h>.
15527 (assert): Do not define.
15528 [!defined NDEBUG] (__assert_fail): Define to __malloc_assert.
15529 * bits/fcntl.h: Fix comment for FREAD and FWRITE.
15530 * sysdeps/mach/hurd/bits/fcntl.h: Likewise.
15531 * sysdeps/mach/hurd/hp-timing.h: New file.
15532 * sysdeps/mach/hurd/i386/tlsdesc.sym: New file.
15534 2018-01-29 Darius Rad <darius@bluespec.com>
15536 * sysdeps/unix/sysv/linux/riscv/ipc_priv.h: New file.
15538 2018-01-29 Palmer Dabbelt <palmer@sifive.com>
15540 * sysdeps/init_array/crti.S (.section .init_array): Add
15541 PREINIT_FUNCTION when defined.
15542 * manual/math.texi: RISC-V supports _Float128 and _Float64x.
15543 * config.h.in: Regenerate.
15544 * manual/platform.texi: Add RISC-V documenation for
15545 __riscv_flush_icache.
15546 * sysdeps/riscv/__longjmp.S: New file.
15547 * sysdeps/riscv/backtrace.c: Likewise.
15548 * sysdeps/riscv/bits/endian.h: Likewise.
15549 * sysdeps/riscv/bits/setjmp.h: Likewise.
15550 * sysdeps/riscv/bits/wordsize.h: Likewise.
15551 * sysdeps/riscv/bsd-_setjmp.c: Likewise.
15552 * sysdeps/riscv/bsd-setjmp.c: Likewise.
15553 * sysdeps/riscv/dl-trampoline.S: Likewise.
15554 * sysdeps/riscv/gccframe.h: Likewise.
15555 * sysdeps/riscv/jmpbuf-offsets.h: Likewise.
15556 * sysdeps/riscv/jmpbuf-unwind.h: Likewise.
15557 * sysdeps/riscv/machine-gmon.h: Likewise.
15558 * sysdeps/riscv/memusage.h: Likewise.
15559 * sysdeps/riscv/setjmp.S: Likewise.
15560 * sysdeps/riscv/sys/asm.h: Likewise.
15561 * sysdeps/riscv/tls-macros.h: Likewise.
15562 * sysdeps/riscv/dl-tls.h: New file.
15563 * sysdeps/riscv/libc-tls.c: Likewise.
15564 * sysdeps/riscv/nptl/tcb-offsets.sym: Likewise.
15565 * sysdeps/riscv/nptl/tls.h: Likewise.
15566 * sysdeps/riscv/stackinfo.h: Likewise.
15567 * sysdeps/riscv/bits/fenv.h: New file.
15568 * sysdeps/riscv/e_sqrtl.c: Likewise.
15569 * sysdeps/riscv/fpu_control.h: Likewise.
15570 * sysdeps/riscv/math-tests.h: Likewise.
15571 * sysdeps/riscv/nofpu/Implies: Likewise.
15572 * sysdeps/riscv/sfp-machine.h: Likewise.
15573 * sysdeps/riscv/tininess.h: Likewise.
15574 * sysdeps/riscv/rv64/rvd/s_ceil.c: New file.
15575 * sysdeps/riscv/rv64/rvd/s_floor.c: Likewise.
15576 * sysdeps/riscv/rv64/rvd/s_llrint.c: Likewise.
15577 * sysdeps/riscv/rv64/rvd/s_llround.c: Likewise.
15578 * sysdeps/riscv/rv64/rvd/s_lrint.c: Likewise.
15579 * sysdeps/riscv/rv64/rvd/s_lround.c: Likewise.
15580 * sysdeps/riscv/rv64/rvd/s_nearbyint.c: Likewise.
15581 * sysdeps/riscv/rv64/rvd/s_rint.c: Likewise.
15582 * sysdeps/riscv/rv64/rvd/s_round.c: Likewise.
15583 * sysdeps/riscv/rv64/rvd/s_roundeven.c: Likewise.
15584 * sysdeps/riscv/rv64/rvd/s_trunc.c: Likewise.
15585 * sysdeps/riscv/rv64/rvf/s_llrintf.c: Likewise.
15586 * sysdeps/riscv/rv64/rvf/s_llroundf.c: Likewise.
15587 * sysdeps/riscv/rv64/rvf/s_lrintf.c: Likewise.
15588 * sysdeps/riscv/rv64/rvf/s_lroundf.c: Likewise.
15589 * sysdeps/riscv/rvd/e_sqrt.c: Likewise.
15590 * sysdeps/riscv/rvd/s_copysign.c: Likewise.
15591 * sysdeps/riscv/rvd/s_finite.c: Likewise.
15592 * sysdeps/riscv/rvd/s_fma.c: Likewise.
15593 * sysdeps/riscv/rvd/s_fmax.c: Likewise.
15594 * sysdeps/riscv/rvd/s_fmin.c: Likewise.
15595 * sysdeps/riscv/rvd/s_fpclassify.c: Likewise.
15596 * sysdeps/riscv/rvd/s_isinf.c: Likewise.
15597 * sysdeps/riscv/rvd/s_isnan.c: Likewise.
15598 * sysdeps/riscv/rvd/s_issignaling.c: Likewise.
15599 * sysdeps/riscv/rvf/e_sqrtf.c: Likewise.
15600 * sysdeps/riscv/rvf/fclrexcpt.c: Likewise.
15601 * sysdeps/riscv/rvf/fegetenv.c: Likewise.
15602 * sysdeps/riscv/rvf/fegetmode.c: Likewise.
15603 * sysdeps/riscv/rvf/fegetround.c: Likewise.
15604 * sysdeps/riscv/rvf/feholdexcpt.c: Likewise.
15605 * sysdeps/riscv/rvf/fesetenv.c: Likewise.
15606 * sysdeps/riscv/rvf/fesetexcept.c: Likewise.
15607 * sysdeps/riscv/rvf/fesetmode.c: Likewise.
15608 * sysdeps/riscv/rvf/fesetround.c: Likewise.
15609 * sysdeps/riscv/rvf/feupdateenv.c: Likewise.
15610 * sysdeps/riscv/rvf/fgetexcptflg.c: Likewise.
15611 * sysdeps/riscv/rvf/fraiseexcpt.c: Likewise.
15612 * sysdeps/riscv/rvf/fsetexcptflg.c: Likewise.
15613 * sysdeps/riscv/rvf/ftestexcept.c: Likewise.
15614 * sysdeps/riscv/rvf/get-rounding-mode.h: Likewise.
15615 * sysdeps/riscv/rvf/math_private.h: Likewise.
15616 * sysdeps/riscv/rvf/s_ceilf.c: Likewise.
15617 * sysdeps/riscv/rvf/s_copysignf.c: Likewise.
15618 * sysdeps/riscv/rvf/s_finitef.c: Likewise.
15619 * sysdeps/riscv/rvf/s_floorf.c: Likewise.
15620 * sysdeps/riscv/rvf/s_fmaf.c: Likewise.
15621 * sysdeps/riscv/rvf/s_fmaxf.c: Likewise.
15622 * sysdeps/riscv/rvf/s_fminf.c: Likewise.
15623 * sysdeps/riscv/rvf/s_fpclassifyf.c: Likewise.
15624 * sysdeps/riscv/rvf/s_isinff.c: Likewise.
15625 * sysdeps/riscv/rvf/s_isnanf.c: Likewise.
15626 * sysdeps/riscv/rvf/s_issignalingf.c: Likewise.
15627 * sysdeps/riscv/rvf/s_nearbyintf.c: Likewise.
15628 * sysdeps/riscv/rvf/s_rintf.c: Likewise.
15629 * sysdeps/riscv/rvf/s_roundevenf.c: Likewise.
15630 * sysdeps/riscv/rvf/s_roundf.c: Likewise.
15631 * sysdeps/riscv/rvf/s_truncf.c: Likewise.
15632 * sysdeps/riscv/nptl/bits/pthreadtypes-arch.h: New file.
15633 * sysdeps/riscv/nptl/bits/semaphore.h: Likewise.
15634 * sysdeps/riscv/nptl/libc-lowlevellock.c: Likewise.
15635 * sysdeps/unix/sysv/linux/riscv/atomic-machine.h: Likewise.
15636 * sysdeps/riscv/nptl/nptl-sysdep.S: New file.
15637 * sysdeps/unix/sysv/linux/riscv/arch-fork.h: Likewise.
15638 * sysdeps/unix/sysv/linux/riscv/clone.S: Likewise.
15639 * sysdeps/unix/sysv/linux/riscv/profil-counter.h: Likewise.
15640 * sysdeps/unix/sysv/linux/riscv/pt-vfork.S: Likewise.
15641 * sysdeps/unix/sysv/linux/riscv/syscall.c: Likewise.
15642 * sysdeps/unix/sysv/linux/riscv/sysdep.S: Likewise.
15643 * sysdeps/unix/sysv/linux/riscv/sysdep.h: Likewise.
15644 * sysdeps/unix/sysv/linux/riscv/vfork.S: Likewise.
15645 * sysdeps/riscv/nptl/pthread-offsets.h: New file.
15646 * sysdeps/riscv/nptl/pthreaddef.h: Likewise.
15647 * sysdeps/unix/sysv/linux/riscv/bits/fcntl.h: Likewise.
15648 * sysdeps/unix/sysv/linux/riscv/bits/mman.h: Likewise.
15649 * sysdeps/unix/sysv/linux/riscv/bits/sigcontext.h: Likewise.
15650 * sysdeps/unix/sysv/linux/riscv/dl-cache.h: Likewise.
15651 * sysdeps/unix/sysv/linux/riscv/flush-icache.c: Likewise.
15652 * sysdeps/unix/sysv/linux/riscv/getcontext.S: Likewise.
15653 * sysdeps/unix/sysv/linux/riscv/init-first.c: Likewise.
15654 * sysdeps/unix/sysv/linux/riscv/libc-vdso.h: Likewise.
15655 * sysdeps/unix/sysv/linux/riscv/makecontext.c: Likewise.
15656 * sysdeps/unix/sysv/linux/riscv/readelflib.c: Likewise.
15657 * sysdeps/unix/sysv/linux/riscv/register-dump.h: Likewise.
15658 * sysdeps/unix/sysv/linux/riscv/setcontext.S: Likewise.
15659 * sysdeps/unix/sysv/linux/riscv/sigcontextinfo.h: Likewise.
15660 * sysdeps/unix/sysv/linux/riscv/swapcontext.S: Likewise.
15661 * sysdeps/unix/sysv/linux/riscv/sys/cachectl.h: Likewise.
15662 * sysdeps/unix/sysv/linux/riscv/sys/procfs.h: Likewise.
15663 * sysdeps/unix/sysv/linux/riscv/sys/ucontext.h: Likewise.
15664 * sysdeps/unix/sysv/linux/riscv/sys/user.h: Likewise.
15665 * sysdeps/unix/sysv/linux/riscv/ucontext-macros.h: Likewise.
15666 * sysdeps/unix/sysv/linux/riscv/ucontext_i.sym: Likewise.
15667 * sysdeps/unix/sysv/linux/riscv/dl-static.c: New file.
15668 * sysdeps/unix/sysv/linux/riscv/ldconfig.h: Likewise.
15669 * sysdeps/unix/sysv/linux/riscv/ldsodefs.h: Likewise.
15670 * sysdeps/riscv/nofpu/libm-test-ulps: New file.
15671 * sysdeps/riscv/nofpu/libm-test-ulps-name: Likewise.
15672 * sysdeps/riscv/rv64/rvd/libm-test-ulps: Likewise.
15673 * sysdeps/riscv/rv64/rvd/libm-test-ulps-name: Likewise.
15674 * sysdeps/unix/sysv/linux/riscv/localplt.data: Likewise.
15675 * sysdeps/unix/sysv/linux/riscv/rv64/c++-types.data: Likewise.
15676 * sysdeps/unix/sysv/linux/riscv/rv64/ld.abilist: Likewise.
15677 * sysdeps/unix/sysv/linux/riscv/rv64/libanl.abilist: Likewise.
15678 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist: Likewise.
15679 * sysdeps/unix/sysv/linux/riscv/rv64/libdl.abilist: Likewise.
15680 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
15681 * sysdeps/unix/sysv/linux/riscv/rv64/libnsl.abilist: Likewise.
15682 * sysdeps/unix/sysv/linux/riscv/rv64/librt.abilist: Likewise.
15683 * sysdeps/unix/sysv/linux/riscv/rv64/libutil.abilist: Likewise.
15684 * sysdeps/riscv/Implies: New file.
15685 * sysdeps/riscv/Makefile: Likewise.
15686 * sysdeps/riscv/configure: Likewise.
15687 * sysdeps/riscv/configure.ac: Likewise.
15688 * sysdeps/riscv/nptl/Makefile: Likewise.
15689 * sysdeps/riscv/preconfigure: Likewise.
15690 * sysdeps/riscv/rv64/Implies-after: Likewise.
15691 * sysdeps/riscv/rv64/rvd/Implies: Likewise.
15692 * sysdeps/riscv/rv64/rvf/Implies: Likewise.
15693 * sysdeps/unix/sysv/linux/riscv/Implies: Likewise.
15694 * sysdeps/unix/sysv/linux/riscv/Makefile: Likewise.
15695 * sysdeps/unix/sysv/linux/riscv/Versions: Likewise.
15696 * sysdeps/unix/sysv/linux/riscv/configure: Likewise.
15697 * sysdeps/unix/sysv/linux/riscv/configure.ac: Likewise.
15698 * sysdeps/unix/sysv/linux/riscv/ldd-rewrite.sed: Likewise.
15699 * sysdeps/unix/sysv/linux/riscv/rv64/Implies: Likewise.
15700 * sysdeps/unix/sysv/linux/riscv/rv64/Makefile: Likewise.
15701 * sysdeps/unix/sysv/linux/riscv/shlib-versions: Likewise.
15702 * scripts/build-many-glibcs.py (Context): Add RISC-V targets.
15703 (Config): Likewise.
15705 2018-01-29 Florian Weimer <fweimer@redhat.com>
15708 * include/rpcsvc/nislib.h (__nis_default_ttl): Add
15709 libnsl_hidden_proto.
15710 * include/rpcsvc/yp.h (yp_xdrall): Declare with
15711 libnsl_hidden_proto.
15712 * include/rpcsvc/ypclnt.h (yp_maplist): Likewise.
15713 * nis/Makefile (libnsl-routines): Add nss-default only for
15714 build-obsolete-nsl.
15715 * nis/nis_defaults.c (__nis_default_ttl): Add
15716 libnsl_hidden_nolink_def.
15717 * nis/rpcsvc/ypclnt.h (yp_maplist): Remove #ifdef'ed-out
15719 * nis/yp_xdr.c (xdr_ypall): Add libnsl_hidden_nolink_def.
15720 * nis/ypclnt.c (yp_maplist): Likewise.
15722 2018-01-29 Romain Naour <romain.naour@gmail.com> (tiny change)
15724 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
15725 (__ASSUME_COPY_FILE_RANGE) [__LINUX_KERNEL_VERSION < 0x040A00]: Undef.
15727 2018-01-29 Joseph Myers <joseph@codesourcery.com>
15729 * scripts/build-many-glibcs.py (Context.git_checkout): Use git
15730 clean -dxfq for git updates when replacing sources.
15732 * scripts/build-many-glibcs.py (Config.build_gcc): Use
15733 --disable-libcilkrts unconditionally, not just for the final GCC
15736 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
15739 2018-01-29 Rafal Luzynski <digitalfreak@lingonborough.com>
15742 * localedata/locales/lt_LT (alt_mon): Import from CLDR (nominative
15745 2018-01-29 Rafal Luzynski <digitalfreak@lingonborough.com>
15748 * localedata/locales/be_BY (mon): Rename to...
15749 (alt_mon): This, then synchronize with CLDR (nominative case).
15750 (abmon): Rename to...
15751 (ab_alt_mon): This, then synchronize with CLDR (nominative case).
15752 (mon): Import from CLDR (genitive case).
15754 * localedata/locales/be_BY@latin (mon): Rename to...
15756 (mon): Add, proper genitive forms provided by Viktar Siarheichyk.
15758 * localedata/locales/be_BY@latin (lang_name): Reworded to
15759 "biełaruskaja mova".
15761 2018-01-29 Rafal Luzynski <digitalfreak@lingonborough.com>
15764 * localedata/locales/el_CY (mon): Renamed to...
15766 (mon): Import from CLDR (genitive case).
15767 * localedata/locales/el_GR: Likewise.
15769 2018-01-29 Rafal Luzynski <digitalfreak@lingonborough.com>
15772 * localedata/locales/ru_RU (mon): Rename to...
15774 (abmon): Rename to...
15775 (ab_alt_mon): This.
15776 (mon): Import from CLDR (genitive case).
15777 (abmon): Copy from the old content except the 5th month which is
15778 now in the genitive case, even when abbreviated.
15779 * localedata/locales/ru_UA: Likewise.
15780 * time/tst-strptime.c (day_tests): Add an actual example of
15781 a difference between %b and %Ob in Russian.
15783 2018-01-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
15785 * sysdeps/mach/hurd/xmknodat.c: Include <sys/sysmacros.h>.
15786 * sysdeps/mach/hurd/profil.c: Reuse `a' variable instead of introducing
15788 * resolv/res-close.c: Include <stdlib.h>.
15789 * sysdeps/generic/not-cancel.h: Include <fcntl.h>, <unistd.h>,
15790 <sys/wait.h>, <time.h>, <sys/uio.h>.
15791 (NOT_CANCEL_H): Add inclusion guard.
15792 * sysdeps/generic/sigset-cvt-mask.h: Include <sigsetops.h>.
15793 * sysdeps/generic/sigsetops.h (__sigemptyset, __sigfillset,
15794 __sigandset, __sigorset, __sigaddset, __sigdelset): Make them really
15796 * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start): Cast
15797 vm_address_t * to ElfW(Addr) * for dl_main parameter.
15798 * sysdeps/pthread/posix-timer.h (timer_ptr2id): Cast to timer_t
15800 * sysdeps/pthread/timer_create.c (timer_create): Do not use
15801 timer_ptr2id to cast struct timer_node * to void *.
15802 * scripts/build-many-glibcs.py [os == gnu] (build_gcc): Pass
15803 --disable-libcilkrts to gcc configure.
15804 (checkout_vcs): Add mig and gnumach repository URLs, run autoreconf,
15805 and make them the default for now.
15806 * sysdeps/mach/hurd/Makefile [$(subdir)==nis]: Add
15807 -DUSE_BINDINGDIR=1 to CFLAGS-ypclnt.c.
15808 * mach/Machrules (MIGFLAGS): Do not set -DMACH_IPC_COMPAT=0.
15809 * mach/mach/mach_traps.h: Drop comment about MACH_IPC_COMPAT.
15810 * sysdeps/mach/hurd/fork.c (__fork): Drop special casing
15812 * sysdeps/mach/hurd/dl-sysdep.c (_exit): Call LOSE and abort() if
15813 __task_terminate would ever return successfully.
15814 * sysdeps/mach/hurd/profil.c (special_profil_failure): Move variable
15816 * sysdeps/mach/pagecopy.h (PAGE_THRESHOLD): Rename to
15817 PAGE_COPY_THRESHOLD and set to benchmarked 16384.
15818 * sysdeps/mach/hurd/getresgid.c (__getresgid): Set result from
15819 critical section to make code simpler and avoid warning.
15820 * sysdeps/mach/hurd/getresuid.c (__getresuid): Set result from
15821 critical section to make code simpler and avoid warning.
15822 * sysdeps/mach/hurd/spawni.c (__spawni): Make relpath and abspath
15823 const char * instead of char *.
15824 * hurd/hurd/lookup.h (__hurd_file_name_lookup, hurd_file_name_lookup,
15825 __hurd_file_name_split, hurd_file_name_split,
15826 __hurd_directory_name_split, hurd_directory_name_split,
15827 __hurd_file_name_lookup_retry, hurd_file_name_lookup_retry,
15828 hurd_file_name_path_lookup): Make lookup function parameter take a
15829 const char *name instead of char *name.
15830 * hurd/hurdlookup.c (__hurd_file_name_lookup, __hurd_file_name_split,
15831 __hurd_directory_name_split): Likewise.
15832 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Likewise.
15833 * hurd/path-lookup.c (hurd_file_name_path_lookup): Likewise.
15834 * sysdeps/mach/hurd/check_native.c: New file.
15835 * sysdeps/mach/hurd/check_pf.c: New file.
15836 * nscd/gai.c (__getifaddrs): Define macro to getifaddrs.
15837 (__freeifaddrs): Define macro to freeifaddrs.
15838 * sysdeps/mach/hurd/libhurduser.abilist: New file.
15839 * sysdeps/mach/libmachuser.abilist: New file.
15840 * libio/tst-memstream3.c (FWRITE): Rename to _FWRITE.
15841 (do_test_bz20181): Rename accordingly.
15842 * libio/tst-wmemstream3.c (FWRITE): Rename accordingly.
15843 * io/tst-copy_file_range.c [!defined CLONE_NEWNS]: Do not include
15845 * hurd/hurd.h (__hurd_fail): Always declare function, and provide inline
15846 version only if __USE_EXTERN_INLINES is defined.
15847 * hurd/hurd/fd.h (_hurd_fd_error_signal, _hurd_fd_error, __hurd_dfail,
15848 __hurd_sockfail): Likewise.
15849 (_hurd_fd_get): Always declare functions, and provide inline versions
15850 only if __USE_EXTERN_INLINES and _LIBC are defined and IS_IN(libc).
15851 * hurd/hurd/port.h (_hurd_port_init, _hurd_port_locked_get,
15852 _hurd_port_get, _hurd_port_free, _hurd_port_locked_set,
15853 _hurd_port_set): Always declare functions, and provide inline versions
15854 only if __USE_EXTERN_INLINES and _LIBC are defined and
15856 * hurd/hurd/signal.h (_hurd_self_sigstate, _hurd_critical_section_lock,
15857 _hurd_critical_section_unlock): Likewise.
15858 * hurd/hurd/threadvar.h (__hurd_threadvar_location_from_sp,
15859 * __hurd_threadvar_location): Likewise.
15860 * hurd/hurd/userlink.h (_hurd_userlink_link, _hurd_userlink_unlink,
15861 _hurd_userlink_clear): Likewise.
15862 * mach/lock-intern.h (__spin_lock_init, __spin_lock, __mutex_lock,
15863 __mutex_unlock, __mutex_trylock): Always declare functions, and provide
15864 inline versions only if __USE_EXTERN_INLINES and _LIBC are defined.
15865 * mach/mach/mig_support.h (__mig_strncpy): Likewise.
15866 * sysdeps/generic/machine-lock.h (__spin_unlock, __spin_try_lock,
15867 __spin_lock_locked): Likewise.
15868 * sysdeps/mach/i386/machine-lock.h (__spin_unlock, __spin_try_lock,
15869 __spin_lock_locked): Likewise.
15870 * mach/spin-lock.c (__USE_EXTERN_INLINES): Define to 1.
15871 * hurd/Versions (libc: GLIBC_2.27): Add _hurd_fd_error_signal,
15872 _hurd_fd_error, __hurd_dfail, __hurd_sockfail, _hurd_port_locked_set,
15873 __hurd_threadvar_location_from_sp, __hurd_threadvar_location,
15874 _hurd_userlink_link, _hurd_userlink_unlink, _hurd_userlink_clear.
15875 * sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_CHOWN_RESTRICTED,
15876 _POSIX_NO_TRUNC): Define to 0.
15877 * sysdeps/pthread/allocalim.h [!defined PTHREAD_STACK_MIN]: Do not
15878 check size against PTHREAD_STACK_MIN.
15879 * hurd/hurd/signal.h [__USE_EXTERN_INLINES][_LIBC][IS_IN(libc) ||
15880 IS_IN(libpthread)]: Include <sigsetops.h>.
15881 * mach/Makefile (user-interfaces): Add mach/gnumach.
15882 * sysdeps/mach/configure.ac (mach_interface_list): Add gnumach.
15883 * sysdeps/mach/configure (mach_interface_list): Regenerate.
15884 * sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_VDISABLE): Set to '\0'
15885 instead of invalid -1.
15886 * sysdeps/mach/hurd/net/ethernet.h: Include <stdint.h>.
15887 * sysdeps/mach/hurd/net/if_arp.h: Include <stdint.h>.
15888 * sysdeps/mach/hurd/net/if_ppp.h: Do not include non-existing
15891 2018-01-27 Thomas Schwinge <tschwinge@gnu.org>
15893 * hurd/fcntl-internal.h: New file.
15895 2018-01-27 James Clarke <jrtc27@jrtc27.com>
15897 * sysdeps/hppa/fpu/libm-test-ulps: Update.
15899 * sysdeps/alpha/fpu/libm-test-ulps: Update.
15901 2018-01-26 Andreas Schwab <schwab@linux-m68k.org>
15904 * nis/Makefile (libnsl-inhibit-o) [$(build-obsolete-nsl) != yes]:
15905 Build only shared objects.
15907 2018-01-26 Carlos O'Donell <carlos@redhat.com>
15909 * README: Update for hppa.
15911 2018-01-26 Patrick McGehearty <patrick.mcgehearty@oracle.com>
15913 * sysdeps/sparc/fpu/libm-test-ulps: Update
15914 cpow, ctan, ctanh, j0, j1, y0, yn ulps.
15916 2018-01-26 Carlos O'Donell <carlos@redhat.com>
15920 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
15923 * sysdeps/i386/nptl/tcb-offsets.sym (FEATURE_1_OFFSET): New.
15924 * sysdeps/i386/nptl/tls.h (tcbhead_t): Add feature_1.
15925 * sysdeps/x86_64/nptl/tcb-offsets.sym (FEATURE_1_OFFSET): New.
15926 * sysdeps/x86_64/nptl/tls.h (tcbhead_t): Rename __glibc_unused1
15929 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
15932 * bits/types/__cancel_jmp_buf_tag.h: New file.
15933 * sysdeps/unix/sysv/linux/x86/bits/types/__cancel_jmp_buf_tag.h
15934 * sysdeps/unix/sysv/linux/x86/pthreaddef.h: Likewise.
15935 * sysdeps/unix/sysv/linux/x86/nptl/pthreadP.h: Likewise.
15936 * nptl/Makefile (headers): Add
15937 bits/types/__cancel_jmp_buf_tag.h.
15938 * nptl/descr.h [NEED_SAVED_MASK_IN_CANCEL_JMP_BUF]
15939 (pthread_unwind_buf): Add saved_mask to cancel_jmp_buf.
15940 * sysdeps/nptl/pthread.h: Include
15941 <bits/types/__cancel_jmp_buf_tag.h>.
15942 (__pthread_unwind_buf_t): Use struct __cancel_jmp_buf_tag with
15944 * sysdeps/unix/sysv/linux/hppa/pthread.h: Likewise.
15946 2018-01-25 Rafal Luzynski <digitalfreak@lingonborough.com>
15949 * localedata/locales/uk_UA (mon): Renamed to...
15951 (alt_digits): "0" removed and then renamed to...
15953 (date_fmt): Definition changed not to use the alternative
15956 2018-01-25 Palmer Dabbelt <palmer@sifive.com>
15958 * elf/cache.c (print_entry): Add FLAG_RISCV_FLOAT_ABI_SOFT and
15959 FLAG_RISCV_FLOAT_ABI_DOUBLE.
15960 * elf/elf.h (EF_RISCV_RVC): New define.
15961 (EF_RISCV_FLOAT_ABI): Likewise.
15962 (EF_RISCV_FLOAT_ABI_SOFT): Likewise.
15963 (EF_RISCV_FLOAT_ABI_SINGLE): Likewise.
15964 (EF_RISCV_FLOAT_ABI_DOUBLE): Likewise.
15965 (EF_RISCV_FLOAT_ABI_QUAD): Likewise.
15966 * sysdeps/generic/ldconfig.h (FLAG_RISCV_FLOAT_ABI_SOFT): New
15968 (FLAG_RISCV_FLOAT_ABI_DOUBLE): Likewise.
15970 2018-01-25 Andreas Schwab <schwab@suse.de>
15972 * aclocal.m4 (LIBC_SLIBDIR_RTLDDIR): Consistently put arguments in
15974 * sysdeps/gnu/configure: Regenerate.
15975 * sysdeps/unix/sysv/linux/aarch64/configure: Regenerate.
15976 * sysdeps/unix/sysv/linux/mips/configure: Regenerate.
15977 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Regenerate.
15978 * sysdeps/unix/sysv/linux/s390/s390-64/configure: Regenerate.
15979 * sysdeps/unix/sysv/linux/sparc/sparc64/configure: Regenerate.
15980 * sysdeps/unix/sysv/linux/tile/configure: Regenerate.
15981 * sysdeps/unix/sysv/linux/x86_64/64/configure: Regenerate.
15982 * sysdeps/unix/sysv/linux/x86_64/x32/configure: Regenerate.
15984 2018-01-25 Samuel Thibault <samuel.thibault@ens-lyon.org>
15986 * scripts/build-many-glibcs.py (checkout_vcs): Add hurd repository
15987 URL, and run autoconf, make it the default for now.
15989 2018-01-24 Joseph Myers <joseph@codesourcery.com>
15991 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
15992 soft-float ColdFire configuration.
15994 * sysdeps/unix/sysv/linux/m68k/localplt.data: Move to ....
15995 * sysdeps/unix/sysv/linux/m68k/m680x0/localplt.data: ... here.
15996 * sysdeps/unix/sysv/linux/m68k/coldfire/localplt.data: New file.
15998 * sysdeps/m68k/coldfire/nofpu/math_private.h: New file. Based on
16001 * sysdeps/unix/sysv/linux/m68k/coldfire/jmp_buf-macros.h: Move to
16003 * sysdeps/unix/sysv/linux/m68k/coldfire/fpu/jmp_buf-macros.h:
16005 * sysdeps/unix/sysv/linux/m68k/coldfire/nofpu/jmp_buf-macros.h:
16008 * sysdeps/unix/sysv/linux/m68k/jmp_buf-macros.h: Move to ....
16009 * sysdeps/unix/sysv/linux/m68k/m680x0/jmp_buf-macros.h: ... here.
16010 * sysdeps/unix/sysv/linux/m68k/coldfire/jmp_buf-macros.h: New
16013 2018-01-24 Szabolcs Nagy <szabolcs.nagy@arm.com>
16016 * sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h (__glibc_reserved1):
16017 Rename to __reserved and add comment.
16018 * sysdeps/unix/sysv/linux/aarch64/ucontext_i.sym (__glibc_reserved1):
16019 Rename to __reserved.
16021 2018-01-24 Joseph Myers <joseph@codesourcery.com>
16023 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
16024 i686-gnu configurations.
16025 (Context.run_builds): Include mig, gnumach and hurd in components
16027 (Context.checkout): Add mig, gnumach and hurd to components.
16028 (Context.checkout_tar): Add URL mappings for mig, gnumach and
16030 (Context.bot_cycle): Check for changes to mig, gnumach and hurd.
16031 (Config.build): Install gnumach headers, build mig and install
16032 hurd headers for 'gnu' OS.
16033 (Config.install_gnumach_headers): New function.
16034 (Config.install_hurd_headers): Likewise.
16035 (Glibc.build_glibc): Do not use /usr for 'gnu' OS. Specifiy MIG
16036 when building for 'gnu' OS.
16038 2018-01-23 Tobias Klauser <tklauser@distanz.ch>
16040 * manual/tunables.texi (Hardware Capability Tunables): Fix
16043 2018-01-22 Rical Jasan <ricaljasan@pacific.net>
16045 * manual/locale.texi (ALTMON_1, ALTMON_2, ALTMON_3, ALTMON_4)
16046 (ALTMON_5, ALTMON_6, ALTMON_7, ALTMON_8, ALTMON_9, ALTMON_10)
16047 (ALTMON_11, ALTMON_12): Improve documentation.
16048 * manual/time.texi (strftime): Likewise.
16050 2018-01-22 Rafal Luzynski <digitalfreak@lingonborough.com>
16053 * localedata/locales/pl_PL: Alternative month names added,
16054 primary month names are genitive now.
16055 * time/tst-strptime.c (day_tests): Actually use a genitive case
16056 of a month name in Polish language.
16058 2018-01-22 Rafal Luzynski <digitalfreak@lingonborough.com>
16061 * manual/locale.texi: Document ALTMON_1..12 constants for
16062 nl_langinfo. Specify when to use ALTMON instead of MON.
16063 * manual/time.texi (strftime, strptime): Document GNU extension
16064 permitting O modifier with %B and %b. Specify when to use
16067 2018-01-22 Rafal Luzynski <digitalfreak@lingonborough.com>
16070 * locale/C-time.c (_nl_C_LC_TIME): Add abbreviated alternative month
16071 names, define them as the same as abbreviated month names explicitly.
16072 * locale/categories.def (LC_TIME): Add ab_alt_mon and wide-ab_alt_mon.
16073 * locale/langinfo.h: (_NL_ABALTMON_1, _NL_ABALTMON_2, _NL_ABALTMON_3,
16074 _NL_ABALTMON_4, _NL_ABALTMON_5, _NL_ABALTMON_6, _NL_ABALTMON_7,
16075 _NL_ABALTMON_8, _NL_ABALTMON_9, _NL_ABALTMON_10, _NL_ABALTMON_11,
16076 _NL_ABALTMON_12, _NL_WABALTMON_1, _NL_WABALTMON_2, _NL_WABALTMON_3,
16077 _NL_WABALTMON_4, _NL_WABALTMON_5, _NL_WABALTMON_6, _NL_WABALTMON_7,
16078 _NL_WABALTMON_8, _NL_WABALTMON_9, _NL_WABALTMON_10, _NL_WABALTMON_11,
16079 _NL_WABALTMON_12): New enum constants.
16080 * locale/programs/ld-time.c (struct locale_time_t): Add ab_alt_mon,
16081 wab_alt_mon, and ab_alt_mon_defined members.
16082 (time_output): Output ab_alt_mon and wab_alt_mon members.
16083 (time_read): Read them, initialize them as copies of abmon and wabmon
16084 respectively if they are missing, initialize ab_alt_mon_defined.
16085 * locale/programs/locfile-kw.gperf (ab_alt_mon): Define.
16086 * locale/programs/locfile-kw.h: Regenerate.
16087 * locale/programs/locfile-token.h (tok_ab_alt_mon): New enum constant.
16088 * time/Makefile [$(run-built-tests) = yes] (LOCALES): Add es_ES.UTF-8
16090 * time/strftime_l.c (a_altmonth, aam_len): New macros.
16091 [!COMPILE_WIDE] (ABALTMON_1): New macro.
16092 (__strftime_internal): Handle %Ob and %Oh formats.
16093 * time/strptime_l.c [_LIBC] (ab_alt_month_name): New macro.
16094 (__strptime_internal): Handle %Ob and %Oh formats.
16095 * time/tst-strptime.c (day_tests): Add more tests to parse different
16096 forms of month names including the new %Ob format specifier.
16098 2018-01-22 Rafal Luzynski <digitalfreak@lingonborough.com>
16101 * locale/C-time.c (_nl_C_LC_TIME): Add alternative month names,
16102 define them as the same as primary full month names explicitly.
16103 * locale/categories.def (LC_TIME): Add alt_mon and wide-alt_mon.
16104 * locale/langinfo.h (__ALTMON_1, __ALTMON_2, __ALTMON_3, __ALTMON_4,
16105 __ALTMON_5, __ALTMON_6, __ALTMON_7, __ALTMON_8, __ALTMON_9, __ALTMON_10,
16106 __ALTMON_11, __ALTMON_12, _NL_WALTMON_1, _NL_WALTMON_2, _NL_WALTMON_3,
16107 _NL_WALTMON_4, _NL_WALTMON_5, _NL_WALTMON_6, _NL_WALTMON_7,
16108 _NL_WALTMON_8, _NL_WALTMON_9, _NL_WALTMON_10, _NL_WALTMON_11,
16109 _NL_WALTMON_12): New enum constants.
16110 [__USE_GNU] (ALTMON_1, ALTMON_2, ALTMON_3, ALTMON_4, ALTMON_5, ALTMON_6,
16111 ALTMON_7, ALTMON_8, ALTMON_9, ALTMON_10, ALTMON_11, ALTMON_12): New
16113 * locale/programs/ld-time.c (struct locale_time_t): Add alt_mon,
16114 walt_mon, and alt_mon_defined members.
16115 (time_output): Output alt_mon and walt_mon members.
16116 (time_read): Read them, initialize them as copies of mon and wmon
16117 respectively if they are missing, initialize alt_mon_defined.
16118 * locale/programs/locfile-kw.gperf (alt_mon): Define.
16119 * locale/programs/locfile-kw.h: Regenerate.
16120 * locale/programs/locfile-token.h (tok_alt_mon): New enum constant.
16121 * localedata/tst-langinfo.c (map): Add tests for the new constants
16122 ALTMON_1 .. ALTMON_12.
16123 * time/Makefile [$(run-built-tests) = yes] (LOCALES): Add fr_FR.UTF-8
16125 * time/strftime_l.c (f_altmonth): New macro.
16126 (__strftime_internal): Handle %OB format.
16127 * time/strptime_l.c [_LIBC] (alt_month_name): New macro.
16128 (__strptime_internal): Handle %OB format.
16129 * time/tst-strptime.c (day_tests): Add tests to parse different forms
16130 of month names including the new %OB format specifier.
16132 2018-01-19 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
16135 * sysdeps/powerpc/powerpc32/sysdep.h (ABORT_TRANSACTION_IMPL): Renamed
16136 from ABORT_TRANSACTION.
16137 (ABORT_TRANSACTION): Redirect to ABORT_TRANSACTION_IMPL.
16138 * sysdeps/powerpc/powerpc64/sysdep.h (ABORT_TRANSACTION,
16139 ABORT_TRANSACTION_IMPL): Likewise.
16140 * sysdeps/unix/sysv/linux/powerpc/not-errno.h: New file. Reuse
16141 Linux code, but remove the code that aborts transactions.
16143 2018-01-19 Samuel Thibault <samuel.thibault@ens-lyon.org>
16145 * sysdeps/generic/netinet/if_ether.h: Include <stdint.h>.
16147 2018-01-19 Rafal Luzynski <digitalfreak@lingonborough.com>
16149 * localedata/locales/gu_IN (LC_IDENTIFICATION): Fix an obvious typo
16150 in date: "2004-14-09" should be "2004-09-14".
16151 * localedata/locales/lo_LA: Fix an obvious typo in date in the header:
16152 "2003-15-09" should be "2003-09-15".
16154 2018-01-18 Arjun Shankar <arjun@redhat.com>
16160 * malloc/malloc.c (checked_request2size): call REQUEST_OUT_OF_RANGE
16162 (_int_memalign): check for integer overflow before calling
16164 * malloc/tst-malloc-too-large.c: New test.
16165 * malloc/Makefile: Add tst-malloc-too-large.
16167 2018-01-18 Rafal Luzynski <digitalfreak@lingonborough.com>
16169 * localedata/locales/bho_NP (LC_IDENTIFICATION): Fix an obvious typo
16170 in date: "2017-24-07" should be "2017-07-24".
16171 * localedata/locales/mai_IN: Likewise.
16172 * localedata/locales/mai_NP: Likewise.
16174 2018-01-17 Dmitry V. Levin <ldv@altlinux.org>
16176 * po/ru.po: Update translations.
16178 2018-01-17 Joseph Myers <joseph@codesourcery.com>
16181 * sysdeps/hppa/backtrace.c: New file.
16183 2018-01-17 H.J. Lu <hongjiu.lu@intel.com>
16186 * sysdeps/x86_64/dl-trampoline.h (_dl_runtime_profile): Properly
16187 align La_x86_64_retval to VEC_SIZE.
16189 2018-01-16 Joseph Myers <joseph@codesourcery.com>
16191 * sysdeps/x86_64/backtrace.c: Include <gnu/lib-names.h>.
16192 (init): Use LIBGCC_S_SO not hardcoded "libgcc_s.so.1".
16194 2018-01-16 Florian Weimer <fweimer@redhat.com>
16196 * nptl/Makefile [$(have-cxx-thread_local)] (tests-unsupported):
16197 Move tst-thread-exit-clobber ...
16198 [$(CXX)] (tests-unsupported): ... to here.
16200 2018-01-16 Szabolcs Nagy <szabolcs.nagy@arm.com>
16202 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_SHA3): Define.
16203 (HWCAP_SM3, HWCAP_SM4, HWCAP_ASIMDDP, HWCAP_SHA512, HWCAP_SVE): Define.
16204 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c
16205 (_dl_aarch64_cap_flags): Update.
16206 (_DL_HWCAP_COUNT): Update.
16208 2018-01-16 Szabolcs Nagy <szabolcs.nagy@arm.com>
16210 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h
16211 (_DL_HWCAP_LAST): Remove.
16212 (_DL_HWCAP_COUNT): Move to ...
16213 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c
16214 (_DL_HWCAP_COUNT): ... here.
16216 2018-01-16 Florian Weimer <fweimer@redhat.com>
16218 * nptl/Makefile (CFLAGS-tst-minstack-throw.o): Compile in C++11
16219 mode with GNU extensions.
16221 2018-01-15 Alan Hayward <alan.hayward@arm.com>
16223 * elf/elf.h (NT_ARM_SVE): Define.
16225 2018-01-15 Florian Weimer <fweimer@redhat.com>
16228 * nptl/tst-minstack-throw.cc: New file.
16229 * nptl/Makefile (tests): Add tst-minstack-throw.
16230 (LDLIBS-tst-minstack-throw): Link with libstdc++.
16231 [!CXX] (tests-unsupported): Add tst-minstack-throw.
16233 2018-01-15 Joseph Myers <joseph@codesourcery.com>
16235 * scripts/build-many-glibcs.py (Context.checkout): Default
16236 binutils version to 2.30 branch, MPFR version to 4.0.0 and MPC
16239 2018-01-13 Carlos O'Donell <carlos@redhat.com>
16242 * elf/elf.h (DF_1_STUB): Define.
16243 (DF_1_PIE): Define.
16245 2018-01-12 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
16248 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S (__llround):
16249 Do not add 0.5 to integer or out-of-range arguments.
16251 2018-01-12 Dmitry V. Levin <ldv@altlinux.org>
16253 * po/bg.po: Update translations.
16254 * po/cs.po: Likewise.
16255 * po/de.po: Likewise.
16256 * po/ko.po: Likewise.
16257 * po/pl.po: Likewise.
16258 * po/sv.po: Likewise.
16259 * po/uk.po: Likewise.
16260 * po/vi.po: Likewise.
16262 2018-01-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
16264 * aarch64/start.S (_start): Use __wrap_main.
16265 (__wrap_main): New local symbol.
16267 2018-01-12 Dmitry V. Levin <ldv@altlinux.org>
16271 * sysdeps/unix/sysv/linux/getcwd.c (__getcwd): Fall back to
16272 generic_getcwd if the path returned by getcwd syscall is not absolute.
16273 * io/tst-getcwd-abspath.c: New test.
16274 * io/Makefile (tests): Add tst-getcwd-abspath.
16276 2018-01-12 Istvan Kurucsai <pistukem@gmail.com>
16278 * malloc/malloc.c (malloc_consolidate): Add size check.
16280 2018-01-12 Florian Weimer <fweimer@redhat.com>
16282 * support/write_message.c (write_message): Preserve errno.
16283 * support/check.c (print_failure): Likewise.
16284 * support/support_test_verify_impl.c (support_test_verify_impl):
16286 * support/support_test_compare_failure.c
16287 (support_test_compare_failure): Likewise.
16289 2018-01-12 Florian Weimer <fweimer@redhat.com>
16292 * nis/Makefile (install-lib-ldscripts, $(inst_libdir)/libnsl.so):
16293 Prevent installation of libnsl.so.
16294 (libnsl-inhibit-o): Do not build (or install) static libraries.
16296 2018-01-12 Egmont Koblinger <egmont@gmail.com>
16299 * localedata/locales/hu_HU (d_t_fmt): Avoid a leading space
16300 before the day number which may produce a double space.
16301 (date_fmt): Likewise.
16303 2018-01-12 Joseph Myers <joseph@codesourcery.com>
16305 * sysdeps/s390/fpu/feholdexcpt.c (__feholdexcept): Call __fegetenv
16306 instead of fegetenv.
16308 2018-01-11 Joseph Myers <joseph@codesourcery.com>
16311 * sysdeps/generic/math_private.h (libc_feresetround_noex): Update
16312 comment to say exceptions are discarded.
16313 (libc_feholdsetround_noex_ctx): Use __feholdexcept instead of
16315 (SET_RESTORE_ROUND_NOEX): Update comment to say non-stop mode must
16318 2018-01-11 Florian Weimer <fweimer@redhat.com>
16320 * sysdeps/gnu/unwind-resume.c (__libgcc_s_init): Update comment
16323 2018-01-11 Florian Weimer <fweimer@redhat.com>
16326 * nptl/Makefile (tests): Add tst-minstack-cancel, tst-minstack-exit.
16327 * nptl/tst-minstack-cancel.c, nptl/tst-minstack-exit.c: New files.
16329 2018-01-10 Joseph Myers <joseph@codesourcery.com>
16332 * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Handle
16333 negative arguments in test for NaN or infinity argument.
16335 2018-01-10 Dmitry V. Levin <ldv@altlinux.org>
16337 * po/libc.pot: Regenerate.
16339 2018-01-10 Florian Weimer <fweimer@redhat.com>
16342 * sysdeps/nptl/unwind-forcedunwind.c (pthread_cancel_init): Open
16343 libgcc.so with RTLD_NOW, to avoid lazy binding during unwind.
16345 2018-01-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
16347 * hurd/hurd/fd.h: Include <fcntl.h>
16348 (__hurd_at_flags): New function.
16349 * hurd/lookup-at.c (__file_name_lookup_at): Replace flag computation
16350 with call to __hurd_at_flags.
16351 * include/unistd.h (__faccessat, __faccessat_noerrno): Add declaration.
16352 * sysdeps/mach/hurd/access.c (access_common): Move implementation to
16354 (hurd_fail_seterrno, hurd_fail_noerrno): Move to sysdeps/mach/hurd/faccessat.c.
16355 (__access_noerrno): Use __faccessat_common instead of access_common.
16356 (__access): Likewise.
16357 * sysdeps/mach/hurd/euidaccess.c (__euidaccess): Replace implementation
16358 with a call to __faccessat.
16359 * sysdeps/mach/hurd/faccessat.c (faccessat): Rename into...
16360 (__faccessat_common): ... this. Move implementation of __access into it when
16361 AT_FLAGS does not contain AT_EACCESS. Make it call __hurd_at_flags, add
16362 reauthenticate_cwdir_at helper to implement AT mechanism.
16363 (__faccessat_noerrno): New function, just calls __faccessat_common.
16364 (__faccessat): New function, just calls __faccessat_common.
16365 (faccessat): Define weak alias.
16367 2018-01-10 Joseph Myers <joseph@codesourcery.com>
16370 * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
16371 (CFLAGS-s_fmaxmagl.c): New variable.
16372 [$(subdir) = math] (CFLAGS-s_fminmagl.c: Likewise.
16375 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Use unsigned
16376 long int for arguments of possibly overflowing addition or
16378 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c (__lroundl): Likewise.
16380 2018-01-09 Joseph Myers <joseph@codesourcery.com>
16383 * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
16384 (CFLAGS-e_remainderl.c): New variable.
16387 * sysdeps/powerpc/nofpu/Makefile (CFLAGS-s_cacosl.c): New
16389 (CFLAGS-s_cacoshl.c): Likewise.
16390 (CFLAGS-s_casinhl.c): Likewise.
16391 (CFLAGS-s_catanl.c): Likewise.
16392 (CFLAGS-s_catanhl.c): Likewise.
16393 (CFLAGS-s_cexpl.c): Likewise.
16394 (CFLAGS-s_ccoshl.c): Add -fsignaling-nans.
16395 (CFLAGS-s_csinhl.c): Likewise.
16396 (CFLAGS-s_clogl.c): Likewise.
16397 (CFLAGS-s_clog10l.c): Likewise.
16398 (CFLAGS-s_csinl.c): Likewise.
16399 (CFLAGS-s_csqrtl.c): Likewise.
16401 2017-01-09 Emilio Pozuelo Monfort <pochu27@gmail.com>
16402 2017-01-09 Svante Signell <svante.signell@gmail.com>
16404 * hurd/hurdexec.c (_hurd_exec): Deprecate function.
16405 (_hurd_exec_paths): New function.
16406 * hurd/hurd.h (_hurd_exec): Deprecate function.
16407 (_hurd_exec_paths): Declare function.
16408 * hurd/Versions: Export _hurd_exec_paths.
16409 * sysdeps/mach/hurd/execve.c: Include <stdlib.h> and <stdio.h>
16410 (__execve): Use __getcwd to build absolute path, and use
16411 _hurd_exec_paths instead of _hurd_exec.
16412 * sysdeps/mach/hurd/spawni.c: Likewise.
16413 * sysdeps/mach/hurd/fexecve.c: Use _hurd_exec_paths instead of
16416 2018-01-08 Dmitry V. Levin <ldv@altlinux.org>
16418 * sysdeps/unix/sysv/linux/tst-ttyname.c (do_in_chroot_1): Skip the
16419 test instead of failing in case of ENOENT returned by posix_openpt.
16421 2018-01-08 Florian Weimer <fweimer@redhat.com>
16423 resolv: Support binary labels in test framework.
16424 * support/resolv_test.c (struct to_be_freed): Remove.
16425 (struct compressed_name): New.
16426 (allocate_compressed_name, ascii_tolower)
16427 (compare_compressed_name): New functions.
16428 (struct resolv_response_builder): Update type of
16429 compression_offsets for use with tsearch. Rempve to_be_freed.
16430 (response_push_pointer_to_free): Remove function.
16431 (resolv_response_add_name): Rewrite using struct compressed_name
16432 and tsearch instead of hsearch_r.
16433 (response_builder_allocate): Remove initialization of
16434 compression_offsets.
16435 (response_builder_free): Update for removal of to_be_freed. Use
16436 tdestroy instead of hdestroy_r.
16437 * resolv/Makefile (tests): Add tst-resolv-binary.
16438 (tst-resolv-binary): Link with -lresolv -lpthread.
16440 2018-01-08 Florian Weimer <fweimer@redhat.com>
16442 * support/check.h (TEST_COMPARE): Allow sign mismatch at compile
16443 time. Pass positive flag instead of negative flag to
16444 support_test_compare_failure.
16445 (support_test_compare_failure): Change negative parameter to
16447 * support/support_test_compare_failure.c (report)
16448 (support_test_compare_failure): Likewise.
16449 * support/tst-test_compare.c (return_ssize_t, return_int): New.
16450 (do_test): Check int/size_t, ssize_t/size_t comparisons.
16452 2018-01-08 Szabolcs Nagy <szabolcs.nagy@arm.com>
16455 * nptl/descr.h (stackblock, stackblock_size): Update comments.
16456 * nptl/allocatestack.c (allocate_stack): Add guardsize to stacksize.
16457 * nptl/nptl-init.c (__pthread_get_minstack): Remove guardsize from
16459 * nptl/pthread_getattr_np.c (pthread_getattr_np): Likewise.
16461 2018-01-08 H.J. Lu <hongjiu.lu@intel.com>
16463 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
16464 Add s_sincosf-sse2 and s_sincosf-fma.
16465 (CFLAGS-s_sincosf-fma.c): New.
16466 * sysdeps/x86_64/fpu/multiarch/s_sincosf-fma.c: New file.
16467 * sysdeps/x86_64/fpu/multiarch/s_sincosf-sse2.S: Likewise.
16468 * sysdeps/x86_64/fpu/multiarch/s_sincosf.c: Likewise.
16469 * sysdeps/x86_64/fpu/s_sincosf.S: Don't add alias if
16470 __sincosf is defined.
16472 2018-01-08 Florian Weimer <fweimer@redhat.com>
16474 * nptl/tst-thread-exit-clobber.cc: New file.
16475 * nptl/Makefile (CFLAGS-tst-thread-exit-clobber.o): Compile in
16477 (LDLIBS-tst-thread-exit-clobber): Link with libstdc++.
16478 (tests): Add tst-thread-exit-clobber.
16479 [!CXX] (tests-unsupported): Add tst-thread-exit-clobber.
16481 2018-01-08 Florian Weimer <fweimer@redhat.com>
16483 * support/check.h (support_static_assert): Define.
16484 (TEST_COMPARE): Use it.
16486 2018-01-07 Aurelien Jarno <aurelien@aurel32.net>
16488 * sysdeps/unix/sysv/linux/getrlimit64 (getrlimit64)
16489 [!__RLIM_T_MATCHES_RLIM64_T]
16490 [!SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_2)]: Define as weak alias of
16491 __getrlimit64. Add libc_hidden_weak.
16493 2018-01-06 Palmer Dabbelt <palmer@sifive.com>
16495 * elf/elf.h (R_RISCV_NONE): New define.
16496 (R_RISCV_32): Likewise.
16497 (R_RISCV_64): Likewise.
16498 (R_RISCV_RELATIVE): Likewise.
16499 (R_RISCV_COPY): Likewise.
16500 (R_RISCV_JUMP_SLOT): Likewise.
16501 (R_RISCV_TLS_DTPMOD32): Likewise.
16502 (R_RISCV_TLS_DTPMOD64): Likewise.
16503 (R_RISCV_TLS_DTPREL32): Likewise.
16504 (R_RISCV_TLS_DTPREL64): Likewise.
16505 (R_RISCV_TLS_TPREL32): Likewise.
16506 (R_RISCV_TLS_TPREL64): Likewise.
16507 * Makerules (make-link-multidir): Make directories before linking into
16509 * sysdeps/unix/sysv/linux/dl-vdso.h (VDSO_NAME_LINUX_4_15): New
16511 (VDSO_HASH_LINUX_4_15): Likewise.
16512 * scripts/build-many-glibcs.py (class Glibc): Strip shared objects
16513 in subdirectories of lib.
16514 * nptl/Makefile (/librt.so): Always depend on
16515 "$(shared-thread-library)".
16517 2018-01-06 Samuel Thibault <samuel.thibault@ens-lyon.org>
16519 * sysdeps/mach/hurd/i386/jmp_buf-macros.h: New file.
16520 * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_dynamic) [NO_RTLD_HIDDEN]: Call
16521 JUMPTARGET (___tls_get_addr) instead of HIDDEN_JUMPTARGET
16523 * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Likewise.
16524 * sysdeps/i386/fpu/libm-test-ulps: Regenerated for GCC 7 with
16526 * posix/tst-glob_symlinks.c [!PATH_MAX]: Define PATH_MAX macro.
16527 * sysdeps/gnu/glob64.c (__glob): Define macro instead of glob macro.
16528 (__glob64): Define GLIBC_2_27 versioned symbol instead of glob64.
16529 * sysdeps/gnu/glob-lstat-compat.c: New file.
16530 * sysdeps/gnu/glob64-lstat-compat.c: New file.
16531 * sysdeps/posix/pwritev_common.c: Add PROT_READ to __mmap prot.
16533 2018-01-05 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
16535 * sysdeps/powerpc/powerpc64/dl-machine.c (_dl_reloc_overflow):
16536 Reserve 16 chars to reloc_addr before calling _itoa_word.
16538 2018-01-05 Aurelien Jarno <aurelien@aurel32.net>
16541 * sysdeps/unix/sysv/linux/prlimit.c (prlimit): Translate
16542 old_rlimit from RLIM64_INFINITY to RLIM_INFINITY.
16544 * sysdeps/unix/sysv/linux/tst-rlimit-infinity.c: New file.
16545 * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-rlimit-infinity.
16547 * resource/tst-getrlimit.c: Add copyright header.
16549 2018-01-05 Aurelien Jarno <aurelien@aurel32.net>
16550 Adhemerval Zanella <adhemerval.zanella@linaro.org>
16552 * sysdeps/unix/sysv/linux/getrlimit64.c [USE_VERSIONED_RLIMIT]: Do not
16553 define getrlimit and getrlimit64 as weak aliases of __getrlimit64.
16554 Define __GI_getrlimit64 as weak alias of __getrlimit64.
16555 [__RLIM_T_MATCHES_RLIM64_T]: Do not redefine SHLIB_COMPAT, use #elif
16557 * sysdeps/unix/sysv/linux/setrlimit64.c [USE_VERSIONED_RLIMIT]: Do not
16558 define setrlimit and setrlimit64 as weak aliases of __setrlimit64.
16559 * sysdeps/unix/sysv/linux/alpha/bits/resource.h (RLIM_INFINITY,
16560 RLIM64_INFINITY): Fix values to match the kernel ones.
16561 * sysdeps/unix/sysv/linux/alpha/getrlimit64.c: Define
16562 USE_VERSIONED_RLIMIT. Rename __getrlimit64 into __old_getrlimit64 and
16563 provide it as getrlimit@@GLIBC_2_0 and getrlimit64@@GLIBC_2_1. Add a
16564 __getrlimit64 function and provide it as getrlimit@@GLIBC_2_27 and
16565 getrlimit64@@GLIBC_2_27.
16566 * sysdeps/unix/sysv/linux/alpha/setrlimit64.c: Ditto with setrlimit
16568 * sysdeps/unix/sysv/linux/alpha/libc.abilist (GLIBC_2.27): Add
16569 getrlimit, setrlimit, getrlimit64 and setrlimit64.
16570 * sysdeps/unix/sysv/linux/alpha/Versions (libc): Add getrlimit,
16571 setrlimit, getrlimit64 and setrlimit64.
16573 2018-01-05 Aurelien Jarno <aurelien@aurel32.net>
16576 * sysdeps/unix/sysv/linux/alpha/getrlimit64.c: New file.
16577 * sysdeps/unix/sysv/linux/alpha/setrlimit64.c: Ditto.
16579 2018-01-04 Joseph Myers <joseph@codesourcery.com>
16581 * malloc/tst-malloc-tcache-leak.c (TIMEOUT): Define to 50.
16582 * posix/tst-glob-tilde.c (TIMEOUT): Define to 200.
16583 * resolv/tst-resolv-res_ninit.c (TIMEOUT): Define to 50.
16585 2018-01-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
16589 * sysdeps/alpha/fpu/s_trunc.c: Remove file.
16590 * sysdeps/alpha/fpu/s_truncf.c: Likewise.
16594 * sysdeps/alpha/fpu/s_ceil.c: Remove file.
16595 * sysdeps/alpha/fpu/s_ceilf.c: Likewise.
16596 * sysdeps/alpha/fpu/s_floor.c: Likewise.
16597 * sysdeps/alpha/fpu/s_floorf.c: Likewise.
16599 2018-01-04 Florian Weimer <fweimer@redhat.com>
16602 * sysdeps/unix/sysv/linux/i386/makecontext.S (__makecontext):
16603 Align the stack before calling exit.
16604 * stdlib/tst-makecontext-align.c: New file.
16605 * stdlib/Makefile (tests): Add tst-makecontext-align.
16607 2018-01-04 Florian Weimer <fweimer@redhat.com>
16609 Add support for calling dlvsym from libc.so.
16610 * include/dlfcn.h (__libc_dlvsym): Declare.
16611 * elf/Makefile (tests-static-internal): Add
16612 tst-libc_dlvsym-static.
16613 (tests-internal): Add tst-libc_dlvsym.
16614 (modules-names): Add tst-libc_dlvsym-dso.
16615 (tst-libc_dlvsym, tst-libc_dlvsym-static): Link with libdl.
16616 (tst-libc_dlvsym-dso.so): Link with libdl, libsupport.
16617 (tst-libc_dlvsym.out, tst-libc_dlvsym-static.out): The shared
16618 object tst-libc_dlvsym-dso.so needs to be built before running
16620 (tst-libc_dlvsym-static-ENV): Set LD_LIBRARY_PATH.
16621 * elf/Versions: Export __libc_dlvsym.
16622 * elf/dl-libc.c (struct do_dlvsym_args): New.
16623 (do_dlvsym, __libc_dlvsym): New functions.
16624 (struct dl_open_hook, _dl_open_hook): Add dlvsym member.
16625 (_dl_open_hook2): New variable.
16626 (__libc_register_dl_open_hook): Set it.
16627 * elf/tst-libc_dlvsym-dso.c: New file.
16628 * elf/tst-libc_dlvsym-static.c: Likewise.
16629 * elf/tst-libc_dlvsym.c: Likewise.
16630 * elf/tst-libc_dlvsym.h: Likewise.
16632 2018-01-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
16634 * support/support_enter_mount_namespace.c [!CLONE_NEWNS]: Do not
16635 include <sys/mount.h>.
16637 2018-01-02 Wilco Dijkstra <wdijkstr@arm.com>
16639 * math/math.h (math_errhandling): Set to 0 with __FAST_MATH__.
16640 Add __NO_MATH_ERRNO__ check.
16642 2018-01-02 Joseph Myers <joseph@codesourcery.com>
16644 * sysdeps/mips/mips32/libm-test-ulps: Update.
16645 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
16647 2018-01-02 Florian Weimer <fweimer@redhat.com>
16649 * misc/tst-pselect.c: Add copyright header.
16651 2018-01-02 Aurelien Jarno <aurelien@aurel32.net>
16653 * sysdeps/unix/sysv/linux/alpha/getrlimit64.c: Fix a typo in the
16655 * sysdeps/unix/sysv/linux/alpha/setrlimit64.c: Fix a typo in the
16657 (settrlimit): Rename into setrlimit.
16658 (__sttrlimit): Rename into __setrlimit.
16660 * sysdeps/unix/sysv/linux/alpha/getrlimit64.c (__old_getrlimit64):
16661 Drop __RLIM_T_MATCHES_RLIM64_T conditional as __old_getrlimit64 is
16662 never defined in that case.
16664 2018-01-02 Joseph Myers <joseph@codesourcery.com>
16666 * sysdeps/powerpc/nofpu/libm-test-ulps: Update.
16668 * sysdeps/arm/libm-test-ulps: Update.
16670 * math/Makefile (run-regen-ulps): Add $(objpfx) to test name here.
16671 (regen-ulps): Use $(libm-tests) not $^ in shell loop.
16673 2018-01-02 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
16675 * NEWS: Add cosf and sincosf to list of optimized functions.
16677 2018-01-02 Aurelien Jarno <aurelien@aurel32.net>
16680 * sysdeps/alpha/fpu/s_fmax.S: Remove file.
16681 * sysdeps/alpha/fpu/s_fmaxf.S: Likewise.
16682 * sysdeps/alpha/fpu/s_fmin.S: Likewise.
16683 * sysdeps/alpha/fpu/s_fminf.S: Likewise.
16685 2018-01-01 Dmitry V. Levin <ldv@altlinux.org>
16688 * sysdeps/unix/sysv/linux/arm/sys/ptrace.h: New file.
16690 * elf/dl-load.c (decompose_rpath): Check for rpath emptiness before
16691 making a copy of it.
16693 2018-01-01 Joseph Myers <joseph@codesourcery.com>
16695 * manual/texinfo.tex: Update to version 2017-12-26.21 with
16696 trailing whitespace removed.
16697 * scripts/config.guess: Update to version 2018-01-01.
16698 * scripts/config.sub: Update to version 2018-01-01.
16699 * scripts/move-if-change: Update from gnulib.
16701 * NEWS: Update copyright dates.
16702 * catgets/gencat.c (print_version): Likewise.
16703 * csu/version.c (banner): Likewise.
16704 * debug/catchsegv.sh: Likewise.
16705 * debug/pcprofiledump.c (print_version): Likewise.
16706 * debug/xtrace.sh (do_version): Likewise.
16707 * elf/ldconfig.c (print_version): Likewise.
16708 * elf/ldd.bash.in: Likewise.
16709 * elf/pldd.c (print_version): Likewise.
16710 * elf/sotruss.sh: Likewise.
16711 * elf/sprof.c (print_version): Likewise.
16712 * iconv/iconv_prog.c (print_version): Likewise.
16713 * iconv/iconvconfig.c (print_version): Likewise.
16714 * locale/programs/locale.c (print_version): Likewise.
16715 * locale/programs/localedef.c (print_version): Likewise.
16716 * login/programs/pt_chown.c (print_version): Likewise.
16717 * malloc/memusage.sh (do_version): Likewise.
16718 * malloc/memusagestat.c (print_version): Likewise.
16719 * malloc/mtrace.pl: Likewise.
16720 * manual/libc.texinfo: Likewise.
16721 * nptl/version.c (banner): Likewise.
16722 * nscd/nscd.c (print_version): Likewise.
16723 * nss/getent.c (print_version): Likewise.
16724 * nss/makedb.c (print_version): Likewise.
16725 * posix/getconf.c (main): Likewise.
16726 * scripts/test-installation.pl: Likewise.
16727 * sysdeps/unix/sysv/linux/lddlibc4.c (main): Likewise.
16729 * All files with FSF copyright notices: Update copyright dates
16730 using scripts/update-copyrights.
16731 * locale/programs/charmap-kw.h: Regenerated.
16732 * locale/programs/locfile-kw.h: Likewise.
16734 2017-12-31 Zack Weinberg <zackw@panix.com>
16736 * libio/bits/libio-ldbl.h: Correct check for improper
16737 inclusion. Add own multiple include guard.
16739 2017-12-30 Aurelien Jarno <aurelien@aurel32.net>
16740 Dmitry V. Levin <ldv@altlinux.org>
16744 * elf/dl-load.c (fillin_rpath): Check for empty tokens before dynamic
16745 string token expansion. Check for NULL pointer or empty string possibly
16746 returned by expand_dynamic_string_token.
16747 (decompose_rpath): Check for empty path after dynamic string
16750 2017-12-29 Dmitry V. Levin <ldv@altlinux.org>
16753 * sysdeps/unix/sysv/linux/x86/sys/ptrace.h: New file.
16755 * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_request): Add comments
16756 about PTRACE_PEEKSIGINFO, PTRACE_GETSIGMASK, PTRACE_SETSIGMASK, and
16757 PTRACE_SECCOMP_GET_FILTER. Update comments about PTRACE_SINGLESTEP
16758 and PTRACE_SYSCALL.
16759 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h: Likewise.
16760 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
16761 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
16762 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
16763 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
16764 * sysdeps/unix/sysv/linux/tile/sys/ptrace.h: Likewise.
16766 * sysdeps/unix/sysv/linux/sys/ptrace.h: Include <bits/ptrace-shared.h>.
16767 (__ptrace_setoptions, __ptrace_eventcodes, __ptrace_peeksiginfo_args,
16768 __ptrace_peeksiginfo_flags, ptrace): Move to ...
16769 * sysdeps/unix/sysv/linux/bits/ptrace-shared.h: ... new file.
16770 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
16771 bits/ptrace-shared.h.
16772 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h: Include
16773 <bits/ptrace-shared.h>.
16774 (__ptrace_setoptions, __ptrace_eventcodes, __ptrace_peeksiginfo_args,
16775 __ptrace_peeksiginfo_flags, ptrace): Remove.
16776 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
16777 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
16778 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
16779 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
16780 * sysdeps/unix/sysv/linux/tile/sys/ptrace.h: Likewise.
16782 2017-12-29 Aurelien Jarno <aurelien@aurel32.net>
16785 * dirent/scandir-tail.c (SCANDIR_TAIL): Move __set_errno (0) at the
16786 end of the loop. Improve comments.
16788 2017-12-29 Zack Weinberg <zackw@panix.com>
16791 * manual/errno.texi (Checking for Errors): Explicitly say that errno
16792 might be set on success.
16794 2017-12-29 Aurelien Jarno <aurelien@aurel32.net>
16797 * malloc/tst-realloc.c (do_test): Remove the test checking that errno
16798 is unchanged on success.
16800 2017-12-27 Dmitry V. Levin <ldv@altlinux.org>
16802 * elf/dl-dst.h (DL_DST_COUNT): Remove is_path argument, all callers
16804 * elf/dl-load.c (is_dst, _dl_dst_count, _dl_dst_substitute,
16805 expand_dynamic_string_token): Likewise.
16806 * sysdeps/generic/ldsodefs.h (_dl_dst_count, _dl_dst_substitute): Remove
16809 * elf/dl-load.c (is_dst): Remove checks that is_path is set and name
16812 * elf/dl-load.c (_dl_dst_substitute): Remove checks that is_path
16813 is set and name contains ':', and all code depending on these checks.
16815 2017-12-24 Zack Weinberg <zackw@panix.com>
16817 * libio/libio.h, libio/_G_config.h: New stub headers which issue a
16818 deprecation warning and then include <bits/libio.h>, <bits/_G_config.h>
16820 * libio/libio.h: Rename the original version of this file to
16821 libio/bits/libio.h. Error out if not included by stdio.h or the
16823 * include/libio.h: Move to include/bits. Forward to libio/bits/libio.h.
16824 * sysdeps/generic/_G_config.h: Move to top-level bits/. Error out
16825 if not included by bits/libio.h or the stub _G_config.h.
16826 * sysdeps/unix/sysv/linux/_G_config.h: Move to
16827 sysdeps/unix/sysv/linux/bits. Error out if not included by
16828 bits/libio.h or the stub _G_config.h.
16829 * libio/stdio.h: Include bits/libio.h, not libio.h.
16830 * libio/Makefile: Install bits/libio.h and bits/_G_config.h as
16831 well as libio.h and _G_config.h.
16833 * csu/init.c, libio/fmemopen.c, libio/iolibio.h, libio/oldfmemopen.c
16834 * libio/strfile.h, stdio-common/vfscanf.c
16835 * sysdeps/pthread/flockfile.c, sysdeps/pthread/funlockfile.c
16836 Include stdio.h, not _G_config.h nor libio.h.
16837 * libio/iofgetpos.c: Also rename fgetpos64 out of the way.
16838 * libio/iofsetpos.c: Also rename fsetpos64 out of the way.
16840 * scripts/check-installed-headers.sh: Skip libio.h and _G_config.h.
16842 2017-12-23 Dmitry V. Levin <ldv@altlinux.org>
16845 * stdlib/getrandom.c (getrandom): Fix comment.
16846 * sysdeps/unix/sysv/linux/getrandom.c (getrandom): Likewise.
16848 2017-12-23 Aurelien Jarno <aurelien@aurel32.net>
16851 * manual/arith.texi (strtoul): Fix a typo.
16854 * manual/arith.texi (finite): Fix the description of the return
16857 2017-12-22 Eric Blake <ebb9@byu.net>
16859 Avoid gcc warnings on cygwin
16860 * posix/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
16861 * posix/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
16862 Avoid unused variable.
16864 2017-12-22 Florian Weimer <fweimer@redhat.com>
16866 * io/Makefile (routines): Add copy_file_range.
16867 (tests): Add tst-copy_file_range.
16868 (tests-static, tests-internal): Add tst-copy_file_range-compat.
16869 * io/Versions (GLIBC_2.27): Export copy_file_range.
16870 * io/copy_file_range-compat.c: New file.
16871 * io/copy_file_range.c: Likewise.
16872 * io/tst-copy_file_range-compat.c: Likewise.
16873 * io/tst-copy_file_range.c: Likewise.
16874 * manual/llio.texi (Copying File Data): New section.
16875 * posix/unistd.h [__USE_GNU] (copy_file_range): Declare.
16876 * support/Makefile (libsupport-routines): Add support-xfstat,
16877 xftruncate, xlseek.
16878 * support/support-xfstat.c: New file.
16879 * support/xftruncate.c: Likewise.
16880 * support/xlseek.c: Likewise.
16881 * support/xunistd.h (xfstat, xftruncate, xlseek): Declare.
16882 * sysdeps/unix/sysv/linux/**.abilist: Update.
16883 * sysdeps/unix/sysv/linux/copy_file_range.c: New file.
16885 2017-12-21 Szabolcs Nagy <szabolcs.nagy@arm.com>
16887 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
16888 disable-multi-arch variant to aarch64-linux-gnu.
16890 2017-12-20 Joseph Myers <joseph@codesourcery.com>
16892 * manual/texinfo.tex: Update to version 2017-12-18.20 with
16893 trailing whitespace removed.
16894 * scripts/config.guess: Update to version 2017-12-17.
16895 * scripts/config.sub: Update to version 2017-11-23.
16896 * scripts/install-sh: Update to version 2017-09-23.17.
16897 * scripts/move-if-change: Update to version 2017-09-13 06:45.
16899 2017-12-20 Adhemerval Zanella <adhemerval.zanella@linaro.org>
16901 * sysdeps/tile/__longjmp.S (__longjmp): Use lowercase instructions.
16902 * sysdeps/tile/__tls_get_addr.S (__tls_get_addr): Likewise.
16903 * sysdeps/tile/_mcount.S (__mcount): Likewise.
16904 * sysdeps/tile/crti.S (_init, _fini): Likewise.
16905 * sysdeps/tile/crtn.S: Likewise.
16906 * sysdeps/tile/dl-start.S (_start): Likewise.
16907 * sysdeps/tile/dl-trampoline.S: Likewise.
16908 * sysdeps/tile/setjmp.S (__sigsetjmp): Likewise.
16909 * sysdeps/tile/start.S (_start): Likewise.
16910 * sysdeps/unix/sysv/linux/tile/clone.S (_clone): Likewise.
16911 * sysdeps/unix/sysv/linux/tile/getcontext.S (__getcontext): Likewise.
16912 * sysdeps/unix/sysv/linux/tile/ioctl.S (__ioctl): Likewise.
16913 * sysdeps/unix/sysv/linux/tile/setcontext.S (__setcontext): Likewise.
16914 * sysdeps/unix/sysv/linux/tile/swapcontext.S (__swapcontext): Likewise.
16915 * sysdeps/unix/sysv/linux/tile/syscall.S (syscall): Likewise.
16916 * sysdeps/unix/sysv/linux/tile/vfork.S (__vfork): Likewise.
16918 * stdlib/bug-getcontext.c (do_test): Remove tilepro mention in
16920 * sysdeps/tile/preconfigure: Remove tilegx folder.
16921 * sysdeps/tile/tilegx/Implies: Move definitions to ...
16922 * sysdeps/tile/Implies: ... here.
16923 * sysdeps/tile/tilegx/Makefile: Move rules to ...
16924 * sysdeps/tile/Makefile: ... here.
16925 * sysdeps/tile/tilegx/atomic-machine.h: Move definitions to ...
16926 * sysdeps/tile/atomic-machine.h: ... here. Add include guards.
16927 * sysdeps/tile/tilegx/bits/wordsize.h: Move to ...
16928 * sysdeps/tile/bits/wordsize.h: ... here.
16929 * sysdeps/tile/tilegx/*: Move to ...
16930 * sysdeps/tile/*: ... here.
16931 * sysdeps/tile/tilegx/tilegx32/Implies: Move to ...
16932 * sysdeps/tile/tilegx32/Implies: ... here.
16933 * sysdeps/tile/tilegx/tilegx64/Implies: Move to ...
16934 * sysdeps/tile/tilegx64/Implies: ... here.
16935 * sysdeps/unix/sysv/linux/tile/tilegx/Makefile: Move definitions
16937 * sysdeps/unix/sysv/linux/tile/Makefile: ... here.
16938 * sysdeps/unix/sysv/linux/tile/tilegx/*: Move to ...
16939 * sysdeps/unix/sysv/linux/tile/*: ... here.
16940 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/*: Move to ...
16941 * sysdeps/unix/sysv/linux/tile/tilegx32/*: ... here.
16942 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/*: Move to ...
16943 * sysdeps/unix/sysv/linux/tile/tilegx64/*: ... here.
16945 * README: Remove tilepro-*-linux-gnu from supported architecture.
16946 * scripts/build-many-glibcs.py: Likewise.
16947 * sysdeps/tile/__tls_get_addr.S (__tls_get_addr): Likewise.
16948 * sysdeps/tile/crti.S (PREINIT_FUNCTION): Likewise.
16949 * sysdeps/tile/dl-machine.h (ELF_MACHINE_NAME,
16950 elf_machine_matches_host, elf_machine_dynamic,
16951 elf_machine_load_address, elf_machine_runtime_setup, reloc_howto
16952 howto, elf_machine_rela): Likewise.
16953 * sysdeps/tile/dl-start.S (_start): Likewise.
16954 * sysdeps/tile/memcmp.c (DBLALIGN, REVBYTES): Likewise.
16955 * sysdeps/tile/memcopy.h (MEMCPY_OK_FOR_FWD_MEMMOVE,
16956 MEMCPY_OK_FOR_FWD_MEMMOVE, op_t): Likewise.
16957 * sysdeps/tile/nptl/pthread_spin_lock.c (TNS, CMPTNS): Likewise.
16958 * sysdeps/tile/nptl/pthread_spin_trylock.c (TNS): Likewise.
16959 * sysdeps/tile/nptl/pthread_spin_unlock.c (pthread_spin_unlock):
16961 * sysdeps/tile/nptl/tls.h (DB_THREAD_SELF): Likewise.
16962 * sysdeps/tile/preconfigure: Likewise.
16963 * sysdeps/tile/stackguard-macros.h (STACK_CHK_GUARD,
16964 POINTER_CHK_GUARD): Likewise.
16965 * sysdeps/tile/stackinfo.h (__stackinfo_sub): Likewise.
16966 * sysdeps/tile/start.S (_start): Likewise.
16967 * sysdeps/tile/tls-macros.h (TLS_GD_OFFSET, TLS_IE_OFFSET, _TLS_LE):
16969 * sysdeps/tile/sysdep.h (REGSIZE): Likewise.
16970 (LD, LD4U, ST, ST4, BNEZ, BEQZ, BEQZT, BGTZ, CMPEQI, CMPEQ, CMOVEQZ,
16972 * sysdeps/unix/sysv/linux/tile/bits/environments.h
16973 (__ILP32_OFF32_CFLAGS, __ILP32_OFFBIG_CFLAGS, __ILP32_OFF32_LDFLAGS,
16974 __ILP32_OFFBIG_LDFLAGS, __LP64_OFF64_CFLAGS, __LP64_OFF64_LDFLAGS):
16976 * sysdeps/tile/wordcopy.c (DBLALIGN): Likewise.
16977 * sysdeps/tile/tilepro/Implies: Remove file.
16978 * sysdeps/tile/tilepro/atomic-machine.h: Likewise.
16979 * sysdeps/tile/tilepro/bits/wordsize.h: Likewise.
16980 * sysdeps/tile/tilepro/memchr.c: Likewise.
16981 * sysdeps/tile/tilepro/memcpy.S: Likewise.
16982 * sysdeps/tile/tilepro/memset.c: Likewise.
16983 * sysdeps/tile/tilepro/memusage.h: Likewise.
16984 * sysdeps/tile/tilepro/rawmemchr.c: Likewise.
16985 * sysdeps/tile/tilepro/strchr.c: Likewise.
16986 * sysdeps/tile/tilepro/strchrnul.c: Likewise.
16987 * sysdeps/tile/tilepro/strlen.c: Likewise.
16988 * sysdeps/tile/tilepro/strrchr.c: Likewise.
16989 * sysdeps/unix/sysv/linux/tile/tilepro/Implies: Likewise.
16990 * sysdeps/unix/sysv/linux/tile/tilepro/c++-types.data: Likewise.
16991 * sysdeps/unix/sysv/linux/tile/tilepro/jmp_buf-macros.h: Likewise.
16992 * sysdeps/unix/sysv/linux/tile/tilepro/ld.abilist: Likewise.
16993 * sysdeps/unix/sysv/linux/tile/tilepro/ldconfig.h: Likewise.
16994 * sysdeps/unix/sysv/linux/tile/tilepro/libBrokenLocale.abilist:
16996 * sysdeps/unix/sysv/linux/tile/tilepro/libanl.abilist: Likewise.
16997 * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: Likewise.
16998 * sysdeps/unix/sysv/linux/tile/tilepro/libcrypt.abilist: Likewise.
16999 * sysdeps/unix/sysv/linux/tile/tilepro/libdl.abilist: Likewise.
17000 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
17001 * sysdeps/unix/sysv/linux/tile/tilepro/libnsl.abilist: Likewise.
17002 * sysdeps/unix/sysv/linux/tile/tilepro/libpthread.abilist: Likewise.
17003 * sysdeps/unix/sysv/linux/tile/tilepro/libresolv.abilist: Likewise.
17004 * sysdeps/unix/sysv/linux/tile/tilepro/librt.abilist: Likewise.
17005 * sysdeps/unix/sysv/linux/tile/tilepro/libthread_db.abilist: Likewise.
17006 * sysdeps/unix/sysv/linux/tile/tilepro/libutil.abilist: Likewise.
17007 * sysdeps/unix/sysv/linux/tile/tilepro/register-dump.h: Likewise.
17008 * sysdeps/unix/sysv/linux/tile/sysconf.c (linux_sysconf): Remove
17009 tilepro mention in comment.
17011 * nptl/Makefile (libpthread-routines): Add pthread_join_common.
17012 * nptl/pthreadP.h (__pthread_timedjoin_ex): New prototype.
17013 * nptl/pthread_join_common.c: New file: common function used on
17014 pthread_join, pthread_timedjoin_np, pthread_tryjoin_np.
17015 * nptl/pthread_join.c (pthread_join): Use __pthread_timedjoin_ex.
17016 * nptl/pthread_tryjoin.c (pthread_tryjoin): Likewise.
17017 * nptl/pthread_timedjoin.c (pthread_timedjoin_np): Likewise.
17018 (cleanup): Move definition to pthread_join_common.c.
17019 * sysdeps/unix/sysv/linux/i386/lowlevellock.h (__lll_timedwait_tid):
17020 Remove superflous checks.
17021 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (__lll_timedwait_tid):
17024 2017-12-20 Szabolcs Nagy <szabolcs.nagy@arm.com>
17026 * sysdeps/aarch64/libm-test-ulps: Update.
17028 2017-12-20 Adhemerval Zanella <adhemerval.zanella@linaro.org>
17030 * sysdeps/aarch64/memset.S (MEMSET): Define.
17032 2017-12-20 Florian Weimer <fweimer@redhat.com>
17035 nptl: Provide full implementation of pthread_self in libc.so.
17036 * nptl/Makefile (routines): Add pthread_self.
17037 (libpthread-routines): Replace pthread_self with
17038 compat-pthread_self.
17039 * nptl/forward.c (pthread_self): Remove.
17040 * nptl/nptl-init.c (pthread_functions): Do not initialize
17042 * nptl/pthread_self.c (pthread_self): Remove weak alias.
17043 * nptl/compat-pthread_self.c: New file.
17044 * sysdeps/nptl/pthread-functions.h (struct pthread_functions):
17045 Remove ptr_pthread_self.
17047 2017-12-19 Arnold D. Robbins <arnold@skeeve.com>
17049 * posix/regcomp.c: Fix spelling in comments.
17050 * posix/regex.h: Likewise.
17051 * posix/regex_internal.c: Likewise.
17052 * posix/regexec.c: Likewise.
17054 2017-12-19 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
17057 * math/Makefile [C++] (tests): Add test for iseqsig.
17058 * math/math.h [C++] (iseqsig): New implementation, which does
17059 not rely on __MATH_TG/__builtin_types_compatible_p.
17060 * math/test-math-iseqsig.cc: New file.
17061 * sysdeps/powerpc/powerpc64le/Makefile
17062 (CFLAGS-test-math-iseqsig.cc): New variable.
17064 2017-12-19 Dmitry V. Levin <ldv@altlinux.org>
17066 * elf/dl-load.c (is_trusted_path): Remove.
17067 (fillin_rpath): Remove check_trusted argument and its use,
17068 all callers changed.
17070 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
17073 * Makeconfig (link-pie-before-libc): Replace -pie with
17074 $(if $($(@F)-no-pie),$(no-pie-ldflag),-pie).
17075 * elf/Makefile (LDFLAGS-tst-dlopen-aout): Removed.
17076 (tst-dlopen-aout-no-pie): New.
17077 (LDFLAGS-tst-prelink): Removed.
17078 (tst-prelink-no-pie): New.
17079 (LDFLAGS-tst-main1): Removed.
17080 (tst-main1-no-pie): New.
17081 * gmon/Makefile (LDFLAGS-tst-gmon): Removed.
17082 (tst-gmon-no-pie): New.
17084 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
17086 * manual/install.texi: Document that --enable-static-pie
17088 * INSTALL: Regenerated.
17090 2017-12-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
17093 * sysdeps/ieee754/dbl-64/e_pow.c (checkint): Make m and n
17096 2017-12-19 Joseph Myers <joseph@codesourcery.com>
17100 2017-12-19 Joseph Myers <joseph@codesourcery.com>
17102 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
17104 2017-12-19 Patrick McGehearty <patrick.mcgehearty@oracle.com>
17106 * sysdeps/ieee754/dbl-64/e_exp.c: Include <math-svid-compat.h> and
17107 <errno.h>. Include "eexp.tbl".
17108 (half): New constant.
17110 (__ieee754_exp): Rewrite.
17111 (__slowexp): Remove prototype.
17112 * sysdeps/ieee754/dbl-64/eexp.tbl: New file.
17113 * sysdeps/ieee754/dbl-64/slowexp.c: Remove file.
17114 * sysdeps/i386/fpu/slowexp.c: Likewise.
17115 * sysdeps/ia64/fpu/slowexp.c: Likewise.
17116 * sysdeps/m68k/m680x0/fpu/slowexp.c: Likewise.
17117 * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: Likewise.
17118 * sysdeps/x86_64/fpu/multiarch/slowexp-fma.c: Likewise.
17119 * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Likewise.
17120 * sysdeps/generic/math_private.h (__slowexp): Remove prototype.
17121 * sysdeps/ieee754/dbl-64/e_pow.c: Remove mention of slowexp.c in
17123 * sysdeps/powerpc/power4/fpu/Makefile [$(subdir) = math]
17124 (CPPFLAGS-slowexp.c): Remove variable.
17125 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
17126 Remove slowexp-fma, slowexp-fma4 and slowexp-avx.
17127 (CFLAGS-slowexp-fma.c): Remove variable.
17128 (CFLAGS-slowexp-fma4.c): Likewise.
17129 (CFLAGS-slowexp-avx.c): Likewise.
17130 * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c (__slowexp): Do not
17132 * sysdeps/x86_64/fpu/multiarch/e_exp-fma.c (__slowexp): Likewise.
17133 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c (__slowexp): Likewise.
17134 * math/Makefile (type-double-routines): Remove slowexp.
17135 * manual/probes.texi (slowexp_p6): Remove.
17136 (slowexp_p32): Likewise.
17138 2017-12-19 Adhemerval Zanella <adhemerval.zanella@linaro.org>
17140 * lib/glob.c (glob): Use a 'char *', not a 'void *', in pointer
17143 * lib/glob.c (glob): Do not pass NULL to mempcpy.
17145 2017-12-19 Joseph Myers <joseph@codesourcery.com>
17147 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
17149 2017-12-19 Patrick McGehearty <patrick.mcgehearty@oracle.com>
17151 * sysdeps/ieee754/dbl-64/e_exp.c: Include <math-svid-compat.h> and
17152 <errno.h>. Include "eexp.tbl".
17153 (half): New constant.
17155 (__ieee754_exp): Rewrite.
17156 (__slowexp): Remove prototype.
17157 * sysdeps/ieee754/dbl-64/eexp.tbl: New file.
17158 * sysdeps/ieee754/dbl-64/slowexp.c: Remove file.
17159 * sysdeps/i386/fpu/slowexp.c: Likewise.
17160 * sysdeps/ia64/fpu/slowexp.c: Likewise.
17161 * sysdeps/m68k/m680x0/fpu/slowexp.c: Likewise.
17162 * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: Likewise.
17163 * sysdeps/x86_64/fpu/multiarch/slowexp-fma.c: Likewise.
17164 * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Likewise.
17165 * sysdeps/generic/math_private.h (__slowexp): Remove prototype.
17166 * sysdeps/ieee754/dbl-64/e_pow.c: Remove mention of slowexp.c in
17168 * sysdeps/powerpc/power4/fpu/Makefile [$(subdir) = math]
17169 (CPPFLAGS-slowexp.c): Remove variable.
17170 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
17171 Remove slowexp-fma, slowexp-fma4 and slowexp-avx.
17172 (CFLAGS-slowexp-fma.c): Remove variable.
17173 (CFLAGS-slowexp-fma4.c): Likewise.
17174 (CFLAGS-slowexp-avx.c): Likewise.
17175 * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c (__slowexp): Do not
17177 * sysdeps/x86_64/fpu/multiarch/e_exp-fma.c (__slowexp): Likewise.
17178 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c (__slowexp): Likewise.
17179 * math/Makefile (type-double-routines): Remove slowexp.
17180 * manual/probes.texi (slowexp_p6): Remove.
17181 (slowexp_p32): Likewise.
17183 2017-12-19 Adhemerval Zanella <adhemerval.zanella@linaro.org>
17184 James Clarke <jrtc27@jrtc27.com>
17187 * sysdeps/ia64/memchr.S (__memchr): Avoid overflow in pointer
17190 2017-12-19 Adhemerval Zanella <adhemerval.zanella@linaro.org>
17193 * sysdeps/unix/sysv/linux/sh/clone.S (__clone): Fix exit return
17196 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
17199 * sysdeps/i386/nptl/tcb-offsets.sym (FEATURE_1_OFFSET): New.
17200 * sysdeps/i386/nptl/tls.h (tcbhead_t): Add feature_1.
17201 * sysdeps/x86_64/nptl/tcb-offsets.sym (FEATURE_1_OFFSET): New.
17202 * sysdeps/x86_64/nptl/tls.h (tcbhead_t): Rename __glibc_unused1
17205 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
17208 * bits/types/__cancel_jmp_buf_tag.h: New file.
17209 * sysdeps/unix/sysv/linux/x86/bits/types/__cancel_jmp_buf_tag.h
17210 * sysdeps/unix/sysv/linux/x86/pthreaddef.h: Likewise.
17211 * sysdeps/unix/sysv/linux/x86/nptl/pthreadP.h: Likewise.
17212 * nptl/Makefile (headers): Add
17213 bits/types/__cancel_jmp_buf_tag.h.
17214 * nptl/descr.h [NEED_SAVED_MASK_IN_CANCEL_JMP_BUF]
17215 (pthread_unwind_buf): Add saved_mask to cancel_jmp_buf.
17216 * sysdeps/nptl/pthread.h: Include
17217 <bits/types/__cancel_jmp_buf_tag.h>.
17218 (__pthread_unwind_buf_t): Use struct __cancel_jmp_buf_tag with
17220 * sysdeps/unix/sysv/linux/hppa/pthread.h: Likewise.
17222 2017-12-18 H.J. Lu <hongjiu.lu@intel.com>
17224 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
17225 --enable-static-pie variants to x86_64, x32 and i686.
17227 2017-12-19 Joseph Myers <joseph@codesourcery.com>
17230 * sysdeps/m68k/m680x0/fpu/bits/mathinline.h (__m81_defun): Add
17231 argument for attrubutes. All callers changed.
17232 (__inline_mathop1): Likewise. All callers changed.
17233 (__inline_mathop): Likewise. All callers changed.
17234 [__USE_MISC] (scalbn): Use __inline_forward instead of
17235 __inline_forward_c.
17236 [__USE_ISOC99] (scalbln): Likewise.
17237 [__USE_ISOC99] (nearbyint): Likewise.
17238 [__USE_ISOC99] (lrint): Likewise.
17239 [__USE_MISC] (scalbnf): Likewise.
17240 [__USE_ISOC99] (scalblnf): Likewise.
17241 [__USE_ISOC99] (nearbyintf): Likewise.
17242 [__USE_ISOC99] (lrintf): Likewise.
17243 [__USE_MISC] (scalbnl): Likewise.
17244 [__USE_ISOC99] (scalblnl): Likewise.
17245 [__USE_ISOC99] (nearbyintl): Likewise.
17246 [__USE_ISOC99] (lrintl): Likewise.
17247 * sysdeps/m68k/m680x0/fpu/mathimpl.h: All callers of
17248 __inline_mathop and __m81_defun changed.
17250 * scripts/build-many-glibcs.py (Context.add_all_configs): Specify
17251 CPU or FPU for ARM hard-float configurations.
17253 2017-12-18 Joseph Myers <joseph@codesourcery.com>
17255 * nptl/tst-attr3.c: Include <libc-diag.h>.
17256 (do_test) [__GNUC_PREREQ (7, 0)]: Ignore -Wrestrict for two tests.
17258 * posix/tst-glob_symlinks.c (do_test): Increase size of buf.
17260 * string/tester.c (test_strncat): Also disable -Warray-bounds
17261 warnings for two tests.
17263 2017-12-18 H.J. Lu <hongjiu.lu@intel.com>
17266 * Makeconfig (no-pie-ldflag): Set to -no-pie only if
17267 $(cc-pie-default) == yes.
17268 * config.make.in (cc-pie-default): New.
17269 * configure.ac (libc_cv_pie_default): Renamed to ...
17270 (libc_cv_cc_pie_default): This.
17271 (libc_cv_pie_default): Set to $libc_cv_cc_pie_default.
17272 * configure: Regenerated.
17274 2017-12-18 Florian Weimer <fweimer@redhat.com>
17277 ld.so: Harden dl-libc/libdl hooks.
17278 * sysdeps/generic/ldsodefs.h (_dl_init_all_dirs): Update comment.
17279 (rtld_active): New function.
17280 * dlfcn/dladdr.c (__dladdr): Call it.
17281 * dlfcn/dladdr1.c (__dladdr1): Likewise.
17282 * dlfcn/dlclose.c (__dlcose): Likewise.
17283 * dlfcn/dlerror.c (__dlerror): Likewise.
17284 * dlfcn/dlinfo.c (__dlinfo): Likewise.
17285 * dlfcn/dlmopen.c (__dlmopen): Likewise.
17286 * dlfcn/dlopen.c (__dlopen): Likewise.
17287 * dlfcn/dlopenold.c (__dlopen_nocheck): Likewise.
17288 * dlfcn/dlsym.c (__dlsym): Likewise.
17289 * dlfcn/dlvsym.c (__dlvsym): Likewise.
17290 * libio/vtables.c (_IO_vtable_check): Likewise.
17291 * elf/dl-libc.c (__libc_dlopen_mode, __libc_dlsym)
17292 (__libc_dlclose): Likewise.
17293 * elf/rtld.c (dl_main): Update comment on the _dl_init_all_dirs
17296 2017-12-18 Joseph Myers <joseph@codesourcery.com>
17299 * nscd/connections.c (handle_request) [SO_PEERCRED]: Use separate
17300 buffers for readlink input and output.
17302 2017-12-18 Sergei Trofimovich <slyfox@gentoo.org>
17305 * sysdeps/mips/setjmp_aux.c (__sigsetjmp_aux): Use
17306 inhibit_stack_protector.
17309 * sysdeps/mips/mips64/setjmp_aux.c (__sigsetjmp_aux): Use
17310 inhibit_stack_protector.
17312 2017-12-18 Dmitry V. Levin <ldv@altlinux.org>
17315 * elf/dl-load.c (_dl_init_paths): Remove _dl_dst_substitute preparatory
17316 code and invocation.
17318 2017-12-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
17320 * sysdeps/aarch64/start.S (_start): Handle PIC && !SHARED case.
17322 2017-12-16 Aurelien Jarno <aurelien@aurel32.net>
17325 * elf/ldconfig.c (main): Call setlocale to force LC_COLLATE to C.
17327 2017-12-16 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
17329 * sysdeps/s390/fpu/libm-test-ulps: Update.
17331 2017-12-16 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
17333 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
17335 2017-12-16 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
17337 * sysdeps/ieee754/flt-32/s_cosf.c: Move reduced() and
17338 constants to s_sincosf.h file.
17339 * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
17340 * sysdeps/ieee754/flt-32/s_sincosf.c: New
17342 * sysdeps/ieee754/flt-32/s_sincosf.h:
17345 2017-12-12 Carlos O'Donell <carlos@redhat.com>
17348 * elf/tst-leaks1.c (do_test): Call one dlopen with $ORIGIN expansion
17351 2017-12-15 H.J. Lu <hongjiu.lu@intel.com>
17354 * INSTALL: Regenerated.
17355 * Makeconfig (real-static-start-installed-name): New.
17356 (pic-default): Updated for --enable-static-pie.
17357 (pie-default): New for --enable-static-pie.
17358 (default-pie-ldflag): Likewise.
17359 (+link-static-before-libc): Replace $(DEFAULT-LDFLAGS-$(@F))
17360 with $(if $($(@F)-no-pie),$(no-pie-ldflag),$(default-pie-ldflag)).
17361 Replace $(static-start-installed-name) with
17362 $(real-static-start-installed-name).
17363 (+prectorT): Updated for --enable-static-pie.
17364 (+postctorT): Likewise.
17365 (CFLAGS-.o): Add $(pie-default).
17366 (CFLAGS-.op): Likewise.
17367 * NEWS: Mention --enable-static-pie.
17368 * config.h.in (ENABLE_STATIC_PIE): New.
17369 * configure.ac (--enable-static-pie): New configure option.
17370 (have-no-dynamic-linker): New LIBC_CONFIG_VAR.
17371 (have-static-pie): Likewise.
17372 Enable static PIE if linker supports --no-dynamic-linker.
17373 (ENABLE_STATIC_PIE): New AC_DEFINE.
17374 (enable-static-pie): New LIBC_CONFIG_VAR.
17375 * configure: Regenerated.
17376 * csu/Makefile (omit-deps): Add r$(start-installed-name) and
17377 gr$(start-installed-name) for --enable-static-pie.
17378 (extra-objs): Likewise.
17379 (install-lib): Likewise.
17380 (extra-objs): Add static-reloc.o and static-reloc.os
17381 ($(objpfx)$(start-installed-name)): Also depend on
17382 $(objpfx)static-reloc.o.
17383 ($(objpfx)r$(start-installed-name)): New.
17384 ($(objpfx)g$(start-installed-name)): Also depend on
17385 $(objpfx)static-reloc.os.
17386 ($(objpfx)gr$(start-installed-name)): New.
17387 * csu/libc-start.c (LIBC_START_MAIN): Call _dl_relocate_static_pie
17389 * csu/libc-tls.c (__libc_setup_tls): Add main_map->l_addr to
17391 * csu/static-reloc.c: New file.
17392 * elf/Makefile (routines): Add dl-reloc-static-pie.
17393 (elide-routines.os): Likewise.
17394 (DEFAULT-LDFLAGS-tst-tls1-static-non-pie): Removed.
17395 (tst-tls1-static-non-pie-no-pie): New.
17396 * elf/dl-reloc-static-pie.c: New file.
17397 * elf/dl-support.c (_dl_get_dl_main_map): New function.
17398 * elf/dynamic-link.h (ELF_DURING_STARTUP): Also check
17399 STATIC_PIE_BOOTSTRAP.
17400 * elf/get-dynamic-info.h (elf_get_dynamic_info): Likewise.
17401 * gmon/Makefile (tests): Add tst-gmon-static-pie.
17402 (tests-static): Likewise.
17403 (DEFAULT-LDFLAGS-tst-gmon-static): Removed.
17404 (tst-gmon-static-no-pie): New.
17405 (CFLAGS-tst-gmon-static-pie.c): Likewise.
17406 (CRT-tst-gmon-static-pie): Likewise.
17407 (tst-gmon-static-pie-ENV): Likewise.
17408 (tests-special): Likewise.
17409 ($(objpfx)tst-gmon-static-pie.out): Likewise.
17410 (clean-tst-gmon-static-pie-data): Likewise.
17411 ($(objpfx)tst-gmon-static-pie-gprof.out): Likewise.
17412 * gmon/tst-gmon-static-pie.c: New file.
17413 * manual/install.texi: Document --enable-static-pie.
17414 * sysdeps/generic/ldsodefs.h (_dl_relocate_static_pie): New.
17415 (_dl_get_dl_main_map): Likewise.
17416 * sysdeps/i386/configure.ac: Check if linker supports static PIE.
17417 * sysdeps/x86_64/configure.ac: Likewise.
17418 * sysdeps/i386/configure: Regenerated.
17419 * sysdeps/x86_64/configure: Likewise.
17420 * sysdeps/mips/Makefile (ASFLAGS-.o): Add $(pie-default).
17421 (ASFLAGS-.op): Likewise.
17423 2017-12-15 Joseph Myers <joseph@codesourcery.com>
17425 * io/Makefile (tst-open-tmpfile-ARGS): New variable.
17426 * posix/tst-mmap-offset.c (fname): Use /tmp.
17427 * stdlib/tst-setcontext3.sh (tempfile): Use ${objpfx}.
17429 2017-12-15 Steve Ellcey <sellcey@cavium.com>
17431 * nscd/dbg_log.c (dbg_log): Increase msg buffer size.
17433 2017-12-15 Thomas Schwinge <thomas@codesourcery.com>
17435 * sysdeps/mach/hurd/dl-sysdep.c (__access_noerrno): Don't set
17438 2017-12-15 Joseph Myers <joseph@codesourcery.com>
17440 * scripts/build-many-glibcs.py (Context.add_all_configs): Use
17441 --with-float=hard for arm-linux-gnueabihf configurations.
17444 * po/Makefile (generated): Add $(ALL_LINGUAS:%=%.mo).
17445 (%.mo): Change to $(objpfx)%.mo. Use $(make-target-directory).
17446 ($(mo-installed)): Use $(objpfx)%.mo.
17447 (realclean): Remove rule.
17449 * po/Makefile (linguas): Remove rule and dependencies.
17450 (linguas.mo): Likewise.
17451 (.PHONY): Do not depend on linguas and linguas.mo.
17452 (podir): Remove variable.
17453 (pofiles): Likewise.
17454 [$(pofiles)] (%.po): Remove rule.
17456 * sysdeps/sparc/sparc32/Makefile
17457 ($(divrem:%=$(sysdep_dir)/sparc/sparc32/%.S)): Do not include
17458 start-of-line whitespace in argument of echo.
17459 * sysdeps/sparc/sparc32/divrem.m4: Avoid generating lines starting
17460 with whitespace. Generate __wrap_.udiv alias.
17461 * sysdeps/sparc/sparc32/rem.S: Regenerated.
17462 * sysdeps/sparc/sparc32/sdiv.S: Likewise.
17463 * sysdeps/sparc/sparc32/udiv.S: Likewise.
17464 * sysdeps/sparc/sparc32/urem.S: Likewise.
17466 2017-12-15 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
17468 * sysdeps/powerpc/powerpc64/power8/strcpy.S: Use vectors
17469 for aligned inputs.
17471 2017-12-14 Siddhesh Poyarekar <siddhesh@sourceware.org>
17473 * benchtests/bench-strcmp.c: Print output in JSON format.
17475 * elf/dl-tunables.list: Remove redundant SXID_ERASE.
17477 2017-12-14 Florian Weimer <fweimer@redhat.com>
17481 * elf/dl-load.c (_dl_init_paths): Compute number of components in
17482 the expanded path string.
17484 2017-12-14 Florian Weimer <fweimer@redhat.com>
17488 * elf/dl-load.c (system_dirs): Update comment.
17489 (nsystem_dirs_len): Use array_length.
17490 (_dl_init_paths): Use nsystem_dirs_len to compute the array size.
17492 2017-12-14 Florian Weimer <fweimer@redhat.com>
17494 Simplify compiling most of support/ outside of glibc.
17495 * support/check_addrinfo.c: Include <string.h>.
17496 * support/check_dns_packet.c: Likewise.
17497 * support/check_hostent.c: Likewise.
17498 * support/support_can_chroot.c: Include <support/xunistd.h>.
17499 * support/support_format_addrinfo.c: Include <stdlib.h>
17500 * support/support_format_dns_packet.c: Include <stdbool.h>.
17501 * support/support_format_hostent.c: Include <stdlib.h>.
17502 * support/support_format_netent.c: Likewise.
17503 * support/support_write_string.c: Include <support/xunistd.h>.
17504 * support/xdlfcn.c: Include <stddef.h>.
17506 2017-12-14 H.J. Lu <hongjiu.lu@intel.com>
17508 * sysdeps/x86_64/fpu/s_cosf.S: Removed.
17510 2017-12-14 Patrick McGehearty <patrick.mcgehearty@oracle.com>
17511 Adhemerval Zanella <adhemerval.zanella@linaro.org>
17513 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile
17514 (sysdeps_routines): Add memset-niagara7.
17515 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdes_rotuines):
17517 * sysdeps/sparc/sparc32/sparcv9/multiarch/memset-niagara7.S: New
17519 * sysdeps/sparc/sparc64/multiarch/memset-niagara7.S: Likewise.
17520 * sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c
17521 (__libc_ifunc_impl_list): Add __bzero_niagara7 and __memset_niagara7.
17522 * sysdeps/sparc/sparc64/multiarch/ifunc-memset.h (IFUNC_SELECTOR):
17523 Add niagara7 option.
17524 * NEWS: Mention sparc m7 optimized memcpy, mempcpy, memmove, and
17527 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile
17528 (sysdeps_routines): Add memcpy-memmove-niagara7 and memmove-ultra1.
17529 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdeps_routines):
17531 * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy-memmove-niagara7.S:
17533 * sysdeps/sparc/sparc32/sparcv9/multiarch/memmove-ultra1.S: Likewise.
17534 * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memmove.c: Likewise.
17535 * sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c
17536 (__libc_ifunc_impl_list): Add __memcpy_niagara7, __mempcpy_niagara7,
17537 and __memmove_niagara7.
17538 * sysdeps/sparc/sparc64/multiarch/ifunc-memcpy.h (IFUNC_SELECTOR):
17539 Add niagara7 option.
17540 * sysdeps/sparc/sparc64/multiarch/memmove.c: New file.
17541 * sysdeps/sparc/sparc64/multiarch/ifunc-memmove.h: Likewise.
17542 * sysdeps/sparc/sparc64/multiarch/memcpy-memmove-niagara7.S: Likewise.
17543 * sysdeps/sparc/sparc64/multiarch/memmove-ultra1.S: Likewise.
17544 * sysdeps/sparc/sparc64/multiarch/rtld-memmove.c: Likewise.
17546 2017-12-14 Jose E. Marchesi <jose.marchesi@oracle.com>
17548 * sysdeps/sparc/sparc32/sparcv9/memmove.S: New file.
17549 * sysdeps/sparc/sparc32/sparcv9/rtld-memmove.c: Likewise.
17550 * sysdeps/sparc/sparc64/memmove.S: Likewise.
17551 * sysdeps/sparc/sparc64/rtld-memmove.c: Likewise.
17553 * sysdeps/sparc/bits/hwcap.h (HWCAP_SPARC_ADP): Defined.
17554 * sysdeps/sparc/dl-procinfo.c: Added "adp" to the
17555 _dl_sparc_cap_flags array.
17556 * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Increment.
17558 2017-12-13 Siddhesh Poyarekar <siddhesh@sourceware.org>
17560 * sysdeps/aarch64/strcmp.S (misaligned8): Compare dword at a
17561 time whenever possible.
17563 2017-12-12 Carlos O'Donell <carlos@redhat.com>
17565 * elf/Makefile [$(nss-crypt)$(static-nss-crypt) == yesno]
17566 (CFLAGS-tst-linkall-static.c): Undefine USE_CRYPT first.
17568 2017-12-12 Joseph Myers <joseph@codesourcery.com>
17570 * soft-fp/fmadf4.c: Move to ....
17571 * sysdeps/ieee754/soft-fp/s_fma.c: ... here.
17572 * soft-fp/fmasf4.c: Move to ....
17573 * sysdeps/ieee754/soft-fp/s_fmaf.c: ... here.
17574 * soft-fp/fmatf4.c: Move to ....
17575 * sysdeps/ieee754/soft-fp/s_fmal.c: ... here.
17576 * sysdeps/ieee754/soft-fp/Makefile: New file.
17577 * sysdeps/arm/preconfigure.ac: Define with_fp_cond.
17578 * sysdeps/arm/preconfigure: Regenerated.
17579 * sysdeps/arm/nofpu/Implies: New file.
17580 * sysdeps/arm/s_fma.c: Remove file.
17581 * sysdeps/arm/s_fmaf.c: Likewise.
17582 * sysdeps/m68k/coldfire/nofpu/Implies: New file.
17583 * sysdeps/m68k/coldfire/nofpu/s_fma.c: Remove file.
17584 * sysdeps/m68k/coldfire/nofpu/s_fmaf.c: Likewise.
17585 * sysdeps/microblaze/Implies: Add ieee754/soft-fp.
17586 * sysdeps/microblaze/s_fma.c: Remove file.
17587 * sysdeps/microblaze/s_fmaf.c: Likewise.
17588 * sysdeps/mips/mips32/nofpu/Implies: New file.
17589 * sysdeps/mips/mips64/n32/fpu/s_fma.c: Likewise.
17590 * sysdeps/mips/mips64/n32/nofpu/Implies: Likewise.
17591 * sysdeps/mips/mips64/n64/fpu/s_fma.c: Likewise.
17592 * sysdeps/mips/mips64/n64/nofpu/Implies: Likewise.
17593 * sysdeps/mips/ieee754/s_fma.c: Remove file.
17594 * sysdeps/mips/ieee754/s_fmaf.c: Likewise.
17595 * sysdeps/mips/ieee754/s_fmal.c: Update include for move of fmal
17597 * sysdeps/nios2/Implies: Add ieee754/soft-fp.
17598 * sysdeps/nios2/s_fma.c: Remove file.
17599 * sysdeps/nios2/s_fmaf.c: Likewise.
17600 * sysdeps/sh/nofpu/Implies: New file.
17601 * sysdeps/sh/s_fma.c: Remove file.
17602 * sysdeps/sh/s_fmaf.c: Likewise.
17603 * sysdeps/tile/Implies: Add ieee754/soft-fp.
17604 * sysdeps/tile/s_fma.c: Remove file.
17605 * sysdeps/tile/s_fmaf.c: Likewise.
17607 2017-12-12 H.J. Lu <hongjiu.lu@intel.com>
17609 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
17610 Add s_cosf-sse2 and s_cosf-fma.
17611 (CFLAGS-s_cosf-fma.c): New.
17612 * sysdeps/x86_64/fpu/multiarch/s_cosf-fma.c: New file.
17613 * sysdeps/x86_64/fpu/multiarch/s_cosf-sse2.c: Likewise.
17614 * sysdeps/x86_64/fpu/multiarch/s_cosf.c: Likewise.
17616 2017-12-12 Steve Ellcey <sellcey@cavium.com>
17618 * nscd/nscd.h (init_traced_file): Change strncpy to memcpy.
17620 2017-12-12 Adhemerval Zanella <adhemerval.zanella@linaro.org>
17622 * libio/Makefile (tests): Add tst-bz22415.
17623 (tst-bz22415-ENV): New rule.
17624 (generated): Add tst-bz22415.mtrace and tst-bz22415.check.
17625 (tests-special): Add tst-bz22415-mem.out.
17626 ($(objpfx)tst-bz22415-mem.out): New rule.
17627 * libio/fileops.c (_IO_new_file_seekoff): Call _IO_free_backup_area
17628 in case of a successful seek operation.
17629 * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
17630 (_IO_wfile_overflow): Call _IO_free_wbackup_area in case a write
17631 buffer is required.
17632 * libio/tst-bz22415.c: New test.
17634 * sysdeps/ia64/fpu/libm-test-ulps: Update.
17636 2017-12-12 James Clarke <jrtc27@jrtc27.com>
17638 * sysdeps/unix/sysv/linux/ia64/ipc_priv.h: New file defining
17639 __IPC_64 to 0 to avoid IPC_64 being set.
17641 2017-12-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
17644 * math/bits/mathcalls.h (nextafter): Remove const.
17645 (nexttoward): Likewise.
17647 2017-12-12 Joseph Myers <joseph@codesourcery.com>
17649 * configure.ac (--with-fp): Remove configure option.
17650 (with_fp_cond): New variable.
17651 (libc_cv_with_fp): New configure test. Use this variable instead
17653 * configure: Regenerated.
17654 * config.make.in (with-fp): Use @libc_cv_with_fp@.
17655 * manual/install.texi (Configuring and compiling): Remove
17657 * INSTALL: Regenerated.
17658 * sysdeps/m68k/preconfigure (with_fp_cond): Define for ColdFire.
17659 * sysdeps/mips/preconfigure (with_fp_cond): Define.
17660 * sysdeps/powerpc/preconfigure (with_fp_cond): Define for 32-bit.
17661 * sysdeps/sh/preconfigure (with_fp_cond): Define.
17662 * scripts/build-many-glibcs.py (Context.add_all_configs): Do not
17663 use --without-fp to configure glibc.
17665 2017-12-12 Rical Jasan <ricaljasan@pacific.net>
17667 * manual/locale.texi (nl_langinfo): Fix a typo.
17669 2017-12-12 Aurelien Jarno <aurelien@aurel32.net>
17672 * manual/conf.texi (SC_SSIZE_MAX): Rename into _SC_SSIZE_MAX.
17674 2017-12-11 H.J. Lu <hongjiu.lu@intel.com>
17676 * argp/Makefile (CFLAGS-argp-help.c): Replace = with +=.
17677 (CFLAGS-argp-parse.c): Likewise.
17678 (CFLAGS-argp-fmtstream.c): Likewise.
17679 * crypt/Makefile (CPPFLAGS-sha256-crypt.c): Likewise.
17680 (CPPFLAGS-sha512-crypt.c): Likewise.
17681 (CPPFLAGS-md5-crypt.c): Likewise.
17682 * debug/Makefile (CFLAGS-stack_chk_fail.c): Likewise.
17683 (CFLAGS-stack_chk_fail_local.c): Likewise.
17684 (CFLAGS-backtrace.c): Likewise.
17685 (CFLAGS-sprintf_chk.c): Likewise.
17686 (CFLAGS-snprintf_chk.c): Likewise.
17687 (CFLAGS-vsprintf_chk.c): Likewise.
17688 (CFLAGS-vsnprintf_chk.c): Likewise.
17689 (CFLAGS-asprintf_chk.c): Likewise.
17690 (CFLAGS-vasprintf_chk.c): Likewise.
17691 (CFLAGS-obprintf_chk.c): Likewise.
17692 (CFLAGS-dprintf_chk.c): Likewise.
17693 (CFLAGS-vdprintf_chk.c): Likewise.
17694 (CFLAGS-printf_chk.c): Likewise.
17695 (CFLAGS-fprintf_chk.c): Likewise.
17696 (CFLAGS-vprintf_chk.c): Likewise.
17697 (CFLAGS-vfprintf_chk.c): Likewise.
17698 (CFLAGS-gets_chk.c): Likewise.
17699 (CFLAGS-fgets_chk.c): Likewise.
17700 (CFLAGS-fgets_u_chk.c): Likewise.
17701 (CFLAGS-fread_chk.c): Likewise.
17702 (CFLAGS-fread_u_chk.c): Likewise.
17703 (CFLAGS-swprintf_chk.c): Likewise.
17704 (CFLAGS-vswprintf_chk.c): Likewise.
17705 (CFLAGS-wprintf_chk.c): Likewise.
17706 (CFLAGS-fwprintf_chk.c): Likewise.
17707 (CFLAGS-vwprintf_chk.c): Likewise.
17708 (CFLAGS-vfwprintf_chk.c): Likewise.
17709 (CFLAGS-fgetws_chk.c): Likewise.
17710 (CFLAGS-fgetws_u_chk.c): Likewise.
17711 (CFLAGS-read_chk.c): Likewise.
17712 (CFLAGS-pread_chk.c): Likewise.
17713 (CFLAGS-pread64_chk.c): Likewise.
17714 (CFLAGS-recv_chk.c): Likewise.
17715 (CFLAGS-recvfrom_chk.c): Likewise.
17716 (CFLAGS-tst-longjmp_chk.c): Likewise.
17717 (CPPFLAGS-tst-longjmp_chk.c): Likewise.
17718 (CFLAGS-tst-longjmp_chk2.c): Likewise.
17719 (CPPFLAGS-tst-longjmp_chk2.c): Likewise.
17720 (CFLAGS-tst-longjmp_chk3.c): Likewise.
17721 (CPPFLAGS-tst-longjmp_chk3.c): Likewise.
17722 (CFLAGS-tst-chk1.c): Likewise.
17723 (CFLAGS-tst-chk2.c): Likewise.
17724 (CFLAGS-tst-chk3.c): Likewise.
17725 (CFLAGS-tst-chk4.cc): Likewise.
17726 (CFLAGS-tst-chk5.cc): Likewise.
17727 (CFLAGS-tst-chk6.cc): Likewise.
17728 (CFLAGS-tst-lfschk1.c): Likewise.
17729 (CFLAGS-tst-lfschk2.c): Likewise.
17730 (CFLAGS-tst-lfschk3.c): Likewise.
17731 (CFLAGS-tst-lfschk4.cc): Likewise.
17732 (CFLAGS-tst-lfschk5.cc): Likewise.
17733 (CFLAGS-tst-lfschk6.cc): Likewise.
17734 (CFLAGS-tst-ssp-1.c): Likewise.
17735 * dirent/Makefile (CFLAGS-scandir.c): Likewise.
17736 (CFLAGS-scandir64.c): Likewise.
17737 (CFLAGS-scandir-tail.c): Likewise.
17738 (CFLAGS-scandir64-tail.c): Likewise.
17739 * elf/Makefile (CPPFLAGS-dl-tunables.c): Likewise.
17740 (CFLAGS-dl-tunables.c): Likewise.
17741 (CFLAGS-dl-runtime.c): Likewise.
17742 (CFLAGS-dl-lookup.c): Likewise.
17743 (CFLAGS-dl-iterate-phdr.c): Likewise.
17744 (CFLAGS-vismain.c): Likewise.
17745 (CFLAGS-tst-linkall-static.c): Likewise.
17746 (CFLAGS-tst-linkall-static.c): Likewise.
17747 (CPPFLAGS-dl-load.c): Likewise.
17748 (CFLAGS-ldconfig.c): Likewise.
17749 (CFLAGS-dl-cache.c): Likewise.
17750 (CFLAGS-cache.c): Likewise.
17751 (CFLAGS-rtld.c): Likewise.
17752 (CFLAGS-multiload.c): Likewise.
17753 (CFLAGS-filtmod1.c): Likewise.
17754 (CFLAGS-tst-align.c): Likewise.
17755 (CFLAGS-tst-align2.c): Likewise.
17756 (CFLAGS-tst-alignmod.c): Likewise.
17757 (CFLAGS-tst-alignmod2.c): Likewise.
17758 (CPPFLAGS-tst-execstack.c): Likewise.
17759 (CFLAGS-tst-ptrguard1-static.c): Likewise.
17760 (CFLAGS-tst-latepthreadmod.c): Likewise.
17761 * grp/Makefile (CFLAGS-getgrgid_r.c): Likewise.
17762 (CFLAGS-getgrnam_r.c): Likewise.
17763 (CFLAGS-getgrent_r.c): Likewise.
17764 (CFLAGS-getgrent.c): Likewise.
17765 (CFLAGS-fgetgrent.c): Likewise.
17766 (CFLAGS-fgetgrent_r.c): Likewise.
17767 (CFLAGS-putgrent.c): Likewise.
17768 (CFLAGS-initgroups.c): Likewise.
17769 (CFLAGS-getgrgid.c): Likewise.
17770 * gshadow/Makefile (CFLAGS-getsgent_r.c): Likewise.
17771 (CFLAGS-getsgent.c): Likewise.
17772 (CFLAGS-fgetsgent.c): Likewise.
17773 (CFLAGS-fgetsgent_r.c): Likewise.
17774 (CFLAGS-putsgent.c): Likewise.
17775 (CFLAGS-getsgnam.c): Likewise.
17776 (CFLAGS-getsgnam_r.c): Likewise.
17777 * iconv/Makefile (CFLAGS-iconv_prog.c): Likewise.
17778 (CFLAGS-iconv_charmap.c): Likewise.
17779 (CFLAGS-dummy-repertoire.c): Likewise.
17780 (CFLAGS-charmap.c): Likewise.
17781 (CFLAGS-linereader.c): Likewise.
17782 (CFLAGS-simple-hash.c): Likewise.
17783 (CFLAGS-gconv_conf.c): Likewise.
17784 (CFLAGS-iconvconfig.c): Likewise.
17785 * inet/Makefile (CFLAGS-gethstbyad_r.c): Likewise.
17786 (CFLAGS-gethstbyad.c): Likewise.
17787 (CFLAGS-gethstbynm_r.c): Likewise.
17788 (CFLAGS-gethstbynm.c): Likewise.
17789 (CFLAGS-gethstbynm2_r.c): Likewise.
17790 (CFLAGS-gethstbynm2.c): Likewise.
17791 (CFLAGS-gethstent_r.c): Likewise.
17792 (CFLAGS-gethstent.c): Likewise.
17793 (CFLAGS-rcmd.c): Likewise.
17794 (CFLAGS-getnetbynm_r.c): Likewise.
17795 (CFLAGS-getnetbynm.c): Likewise.
17796 (CFLAGS-getnetbyad_r.c): Likewise.
17797 (CFLAGS-getnetbyad.c): Likewise.
17798 (CFLAGS-getnetent_r.c): Likewise.
17799 (CFLAGS-getnetent.c): Likewise.
17800 (CFLAGS-getaliasent_r.c): Likewise.
17801 (CFLAGS-getaliasent.c): Likewise.
17802 (CFLAGS-getrpcent_r.c): Likewise.
17803 (CFLAGS-getrpcent.c): Likewise.
17804 (CFLAGS-getservent_r.c): Likewise.
17805 (CFLAGS-getservent.c): Likewise.
17806 (CFLAGS-getprtent_r.c): Likewise.
17807 (CFLAGS-getprtent.c): Likewise.
17808 (CFLAGS-either_ntoh.c): Likewise.
17809 (CFLAGS-either_hton.c): Likewise.
17810 (CFLAGS-getnetgrent.c): Likewise.
17811 (CFLAGS-getnetgrent_r.c): Likewise.
17812 (CFLAGS-tst-checks-posix.c): Likewise.
17813 (CFLAGS-tst-sockaddr.c): Likewise.
17814 * intl/Makefile (CFLAGS-tst-gettext.c): Likewise.
17815 (CFLAGS-tst-translit.c): Likewise.
17816 (CFLAGS-tst-gettext2.c): Likewise.
17817 (CFLAGS-tst-codeset.c): Likewise.
17818 (CFLAGS-tst-gettext3.c): Likewise.
17819 (CFLAGS-tst-gettext4.c): Likewise.
17820 (CFLAGS-tst-gettext5.c): Likewise.
17821 (CFLAGS-tst-gettext6.c): Likewise.
17822 * io/Makefile (CFLAGS-open.c): Likewise.
17823 (CFLAGS-open64.c): Likewise.
17824 (CFLAGS-creat.c): Likewise.
17825 (CFLAGS-creat64.c): Likewise.
17826 (CFLAGS-fcntl.c): Likewise.
17827 (CFLAGS-poll.c): Likewise.
17828 (CFLAGS-ppoll.c): Likewise.
17829 (CFLAGS-lockf.c): Likewise.
17830 (CFLAGS-statfs.c): Likewise.
17831 (CFLAGS-fstatfs.c): Likewise.
17832 (CFLAGS-statvfs.c): Likewise.
17833 (CFLAGS-fstatvfs.c): Likewise.
17834 (CFLAGS-fts.c): Likewise.
17835 (CFLAGS-fts64.c): Likewise.
17836 (CFLAGS-ftw.c): Likewise.
17837 (CFLAGS-ftw64.c): Likewise.
17838 (CFLAGS-lockf.c): Likewise.
17839 (CFLAGS-posix_fallocate.c): Likewise.
17840 (CFLAGS-posix_fallocate64.c): Likewise.
17841 (CFLAGS-fallocate.c): Likewise.
17842 (CFLAGS-fallocate64.c): Likewise.
17843 (CFLAGS-read.c): Likewise.
17844 (CFLAGS-write.c): Likewise.
17845 (CFLAGS-test-stat.c): Likewise.
17846 (CFLAGS-test-lfs.c): Likewise.
17847 * libio/Makefile (CFLAGS-fileops.c): Likewise.
17848 (CFLAGS-fputc.c): Likewise.
17849 (CFLAGS-fputwc.c): Likewise.
17850 (CFLAGS-freopen64.c): Likewise.
17851 (CFLAGS-freopen.c): Likewise.
17852 (CFLAGS-fseek.c): Likewise.
17853 (CFLAGS-fseeko64.c): Likewise.
17854 (CFLAGS-fseeko.c): Likewise.
17855 (CFLAGS-ftello64.c): Likewise.
17856 (CFLAGS-ftello.c): Likewise.
17857 (CFLAGS-fwide.c): Likewise.
17858 (CFLAGS-genops.c): Likewise.
17859 (CFLAGS-getc.c): Likewise.
17860 (CFLAGS-getchar.c): Likewise.
17861 (CFLAGS-getwc.c): Likewise.
17862 (CFLAGS-getwchar.c): Likewise.
17863 (CFLAGS-iofclose.c): Likewise.
17864 (CFLAGS-iofflush.c): Likewise.
17865 (CFLAGS-iofgetpos64.c): Likewise.
17866 (CFLAGS-iofgetpos.c): Likewise.
17867 (CFLAGS-iofgets.c): Likewise.
17868 (CFLAGS-iofgetws.c): Likewise.
17869 (CFLAGS-iofputs.c): Likewise.
17870 (CFLAGS-iofputws.c): Likewise.
17871 (CFLAGS-iofread.c): Likewise.
17872 (CFLAGS-iofsetpos64.c): Likewise.
17873 (CFLAGS-iofsetpos.c): Likewise.
17874 (CFLAGS-ioftell.c): Likewise.
17875 (CFLAGS-iofwrite.c): Likewise.
17876 (CFLAGS-iogetdelim.c): Likewise.
17877 (CFLAGS-iogetline.c): Likewise.
17878 (CFLAGS-iogets.c): Likewise.
17879 (CFLAGS-iogetwline.c): Likewise.
17880 (CFLAGS-ioputs.c): Likewise.
17881 (CFLAGS-ioseekoff.c): Likewise.
17882 (CFLAGS-ioseekpos.c): Likewise.
17883 (CFLAGS-iosetbuffer.c): Likewise.
17884 (CFLAGS-iosetvbuf.c): Likewise.
17885 (CFLAGS-ioungetc.c): Likewise.
17886 (CFLAGS-ioungetwc.c): Likewise.
17887 (CFLAGS-oldfileops.c): Likewise.
17888 (CFLAGS-oldiofclose.c): Likewise.
17889 (CFLAGS-oldiofgetpos64.c): Likewise.
17890 (CFLAGS-oldiofgetpos.c): Likewise.
17891 (CFLAGS-oldiofsetpos64.c): Likewise.
17892 (CFLAGS-oldiofsetpos.c): Likewise.
17893 (CFLAGS-peekc.c): Likewise.
17894 (CFLAGS-putc.c): Likewise.
17895 (CFLAGS-putchar.c): Likewise.
17896 (CFLAGS-putwc.c): Likewise.
17897 (CFLAGS-putwchar.c): Likewise.
17898 (CFLAGS-rewind.c): Likewise.
17899 (CFLAGS-wfileops.c): Likewise.
17900 (CFLAGS-wgenops.c): Likewise.
17901 (CFLAGS-oldiofopen.c): Likewise.
17902 (CFLAGS-iofopen.c): Likewise.
17903 (CFLAGS-iofopen64.c): Likewise.
17904 (CFLAGS-oldtmpfile.c): Likewise.
17905 (CFLAGS-tst_putwc.c): Likewise.
17906 * locale/Makefile (CFLAGS-md5.c): Likewise.
17907 (CFLAGS-charmap.c): Likewise.
17908 (CFLAGS-locfile.c): Likewise.
17909 (CFLAGS-charmap-dir.c): Likewise.
17910 * login/Makefile (CFLAGS-grantpt.c): Likewise.
17911 (CFLAGS-getpt.c): Likewise.
17912 (CFLAGS-pt_chown.c): Likewise.
17913 * malloc/Makefile (CFLAGS-mcheck-init.c): Likewise.
17914 (CFLAGS-obstack.c): Likewise.
17915 * math/Makefile (CFLAGS-test-tgmath3.c): Likewise.
17916 (CFLAGS-test-double-vlen4-wrappers.c): Likewise.
17917 (CFLAGS-test-double-vlen8-wrappers.c): Likewise.
17918 (CFLAGS-test-float-vlen8-wrappers.c): Likewise.
17919 (CFLAGS-test-float-vlen16-wrappers.c): Likewise.
17920 (CFLAGS-test-tgmath.c): Likewise.
17921 (CFLAGS-test-tgmath2.c): Likewise.
17922 (CFLAGS-test-tgmath-ret.c): Likewise.
17923 (CFLAGS-test-powl.c): Likewise.
17924 (CFLAGS-test-snan.c): Likewise.
17925 (CFLAGS-test-signgam-finite.c): Likewise.
17926 (CFLAGS-test-signgam-finite-c99.c): Likewise.
17927 (CFLAGS-test-signgam-finite-c11.c): Likewise.
17928 (CFLAGS-test-signgam-uchar.c): Likewise.
17929 (CFLAGS-test-signgam-uchar-init.c): Likewise.
17930 (CFLAGS-test-signgam-uchar-static.c): Likewise.
17931 (CFLAGS-test-signgam-uchar-init-static.c): Likewise.
17932 (CFLAGS-test-signgam-uint.c): Likewise.
17933 (CFLAGS-test-signgam-uint-init.c): Likewise.
17934 (CFLAGS-test-signgam-uint-static.c): Likewise.
17935 (CFLAGS-test-signgam-uint-init-static.c): Likewise.
17936 (CFLAGS-test-signgam-ullong.c): Likewise.
17937 (CFLAGS-test-signgam-ullong-init.c): Likewise.
17938 (CFLAGS-test-signgam-ullong-static.c): Likewise.
17939 (CFLAGS-test-signgam-ullong-init-static.c): Likewise.
17940 (CFLAGS-test-math-cxx11.cc): Likewise.
17941 (CFLAGS-test-math-isinff.cc): Likewise.
17942 (CFLAGS-test-math-iszero.cc): Likewise.
17943 (CFLAGS-test-math-issignaling.cc): Likewise.
17944 (CFLAGS-test-math-iscanonical.cc): Likewise.
17945 (CFLAGS-test-iszero-excess-precision.c): Likewise.
17946 (CFLAGS-test-iseqsig-excess-precision.c): Likewise.
17947 (CFLAGS-test-flt-eval-method.c): Likewise.
17948 (CFLAGS-test-fe-snans-always-signal.c): Likewise.
17949 (CFLAGS-test-finite-macros.c): Likewise.
17950 * misc/Makefile (CFLAGS-select.c): Likewise.
17951 (CFLAGS-tsearch.c): Likewise.
17952 (CFLAGS-lsearch.c): Likewise.
17953 (CFLAGS-pselect.c): Likewise.
17954 (CFLAGS-readv.c): Likewise.
17955 (CFLAGS-writev.c): Likewise.
17956 (CFLAGS-preadv.c): Likewise.
17957 (CFLAGS-preadv64.c): Likewise.
17958 (CFLAGS-pwritev.c): Likewise.
17959 (CFLAGS-pwritev64.c): Likewise.
17960 (CFLAGS-preadv2.c): Likewise.
17961 (CFLAGS-preadv64v2.c): Likewise.
17962 (CFLAGS-pwritev2.c): Likewise.
17963 (CFLAGS-pwritev64v2.c): Likewise.
17964 (CFLAGS-usleep.c): Likewise.
17965 (CFLAGS-syslog.c): Likewise.
17966 (CFLAGS-error.c): Likewise.
17967 (CFLAGS-getpass.c): Likewise.
17968 (CFLAGS-mkstemp.c): Likewise.
17969 (CFLAGS-mkstemp64.c): Likewise.
17970 (CFLAGS-getsysstats.c): Likewise.
17971 (CFLAGS-getusershell.c): Likewise.
17972 (CFLAGS-err.c): Likewise.
17973 (CFLAGS-tst-tsearch.c): Likewise.
17974 (CFLAGS-msync.c): Likewise.
17975 (CFLAGS-fdatasync.c): Likewise.
17976 (CFLAGS-fsync.c): Likewise.
17977 * nptl/Makefile (CFLAGS-nptl-init.c): Likewise.
17978 (CFLAGS-unwind.c): Likewise.
17979 (CFLAGS-unwind-forcedunwind.c): Likewise.
17980 (CFLAGS-pthread_cancel.c): Likewise.
17981 (CFLAGS-pthread_setcancelstate.c): Likewise.
17982 (CFLAGS-pthread_setcanceltype.c): Likewise.
17983 (CFLAGS-cancellation.c): Likewise.
17984 (CFLAGS-libc-cancellation.c): Likewise.
17985 (CFLAGS-pthread_exit.c): Likewise.
17986 (CFLAGS-forward.c): Likewise.
17987 (CFLAGS-pthread_testcancel.c): Likewise.
17988 (CFLAGS-pthread_join.c): Likewise.
17989 (CFLAGS-pthread_timedjoin.c): Likewise.
17990 (CFLAGS-pthread_once.c): Likewise.
17991 (CFLAGS-pthread_cond_wait.c): Likewise.
17992 (CFLAGS-sem_wait.c): Likewise.
17993 (CFLAGS-sem_timedwait.c): Likewise.
17994 (CFLAGS-fcntl.c): Likewise.
17995 (CFLAGS-lockf.c): Likewise.
17996 (CFLAGS-pread.c): Likewise.
17997 (CFLAGS-pread64.c): Likewise.
17998 (CFLAGS-pwrite.c): Likewise.
17999 (CFLAGS-pwrite64.c): Likewise.
18000 (CFLAGS-wait.c): Likewise.
18001 (CFLAGS-waitpid.c): Likewise.
18002 (CFLAGS-sigwait.c): Likewise.
18003 (CFLAGS-msgrcv.c): Likewise.
18004 (CFLAGS-msgsnd.c): Likewise.
18005 (CFLAGS-tcdrain.c): Likewise.
18006 (CFLAGS-open.c): Likewise.
18007 (CFLAGS-open64.c): Likewise.
18008 (CFLAGS-pause.c): Likewise.
18009 (CFLAGS-recv.c): Likewise.
18010 (CFLAGS-send.c): Likewise.
18011 (CFLAGS-accept.c): Likewise.
18012 (CFLAGS-sendto.c): Likewise.
18013 (CFLAGS-connect.c): Likewise.
18014 (CFLAGS-recvfrom.c): Likewise.
18015 (CFLAGS-recvmsg.c): Likewise.
18016 (CFLAGS-sendmsg.c): Likewise.
18017 (CFLAGS-close.c): Likewise.
18018 (CFLAGS-read.c): Likewise.
18019 (CFLAGS-write.c): Likewise.
18020 (CFLAGS-nanosleep.c): Likewise.
18021 (CFLAGS-sigsuspend.c): Likewise.
18022 (CFLAGS-msync.c): Likewise.
18023 (CFLAGS-fdatasync.c): Likewise.
18024 (CFLAGS-fsync.c): Likewise.
18025 (CFLAGS-pt-system.c): Likewise.
18026 (CFLAGS-tst-cleanup2.c): Likewise.
18027 (CFLAGS-tst-cleanupx2.c): Likewise.
18028 (CFLAGS-flockfile.c): Likewise.
18029 (CFLAGS-ftrylockfile.c): Likewise.
18030 (CFLAGS-funlockfile.c): Likewise.
18031 (CFLAGS-tst-initializers1.c): Likewise.
18032 (CFLAGS-tst-initializers1-c89.c): Likewise.
18033 (CFLAGS-tst-initializers1-c99.c): Likewise.
18034 (CFLAGS-tst-initializers1-c11.c): Likewise.
18035 (CFLAGS-tst-initializers1-gnu89.c): Likewise.
18036 (CFLAGS-tst-initializers1-gnu99.c): Likewise.
18037 (CFLAGS-tst-initializers1-gnu11.c): Likewise.
18038 * nscd/Makefile (CFLAGS-nscd_getpw_r.c): Likewise.
18039 (CFLAGS-nscd_getgr_r.c): Likewise.
18040 (CFLAGS-nscd_gethst_r.c): Likewise.
18041 (CFLAGS-nscd_getai.c): Likewise.
18042 (CFLAGS-nscd_initgroups.c): Likewise.
18043 * posix/Makefile (CFLAGS-getaddrinfo.c): Likewise.
18044 (CFLAGS-pause.c): Likewise.
18045 (CFLAGS-pread.c): Likewise.
18046 (CFLAGS-pread64.c): Likewise.
18047 (CFLAGS-pwrite.c): Likewise.
18048 (CFLAGS-pwrite64.c): Likewise.
18049 (CFLAGS-sleep.c): Likewise.
18050 (CFLAGS-wait.c): Likewise.
18051 (CFLAGS-waitid.c): Likewise.
18052 (CFLAGS-waitpid.c): Likewise.
18053 (CFLAGS-getopt.c): Likewise.
18054 (CFLAGS-wordexp.c): Likewise.
18055 (CFLAGS-sysconf.c): Likewise.
18056 (CFLAGS-pathconf.c): Likewise.
18057 (CFLAGS-fpathconf.c): Likewise.
18058 (CFLAGS-spawn.c): Likewise.
18059 (CFLAGS-spawnp.c): Likewise.
18060 (CFLAGS-spawni.c): Likewise.
18061 (CFLAGS-glob.c): Likewise.
18062 (CFLAGS-glob64.c): Likewise.
18063 (CFLAGS-getconf.c): Likewise.
18064 (CFLAGS-nanosleep.c): Likewise.
18065 * pwd/Makefile (CFLAGS-getpwent_r.c): Likewise.
18066 (CFLAGS-getpwent.c): Likewise.
18067 (CFLAGS-getpw.c): Likewise.
18068 (CFLAGS-fgetpwent_r.c): Likewise.
18069 * resolv/Makefile (CFLAGS-res_hconf.c): Likewise.
18070 * rt/Makefile (CFLAGS-aio_suspend.c): Likewise.
18071 (CFLAGS-mq_timedreceive.c): Likewise.
18072 (CFLAGS-mq_timedsend.c): Likewise.
18073 (CFLAGS-clock_nanosleep.c): Likewise.
18074 (CFLAGS-librt-cancellation.c): Likewise.
18075 * shadow/Makefile (CFLAGS-getspent_r.c): Likewise.
18076 (CFLAGS-getspent.c): Likewise.
18077 (CFLAGS-fgetspent.c): Likewise.
18078 (CFLAGS-fgetspent_r.c): Likewise.
18079 (CFLAGS-putspent.c): Likewise.
18080 (CFLAGS-getspnam.c): Likewise.
18081 (CFLAGS-getspnam_r.c): Likewise.
18082 * signal/Makefile (CFLAGS-sigpause.c): Likewise.
18083 (CFLAGS-sigsuspend.c): Likewise.
18084 (CFLAGS-sigtimedwait.c): Likewise.
18085 (CFLAGS-sigwait.c): Likewise.
18086 (CFLAGS-sigwaitinfo.c): Likewise.
18087 (CFLAGS-sigreturn.c): Likewise.
18088 * stdio-common/Makefile (CFLAGS-vfprintf.c): Likewise.
18089 (CFLAGS-vfwprintf.c): Likewise.
18090 (CFLAGS-tmpfile.c): Likewise.
18091 (CFLAGS-tmpfile64.c): Likewise.
18092 (CFLAGS-tempname.c): Likewise.
18093 (CFLAGS-psignal.c): Likewise.
18094 (CFLAGS-vprintf.c): Likewise.
18095 (CFLAGS-cuserid.c): Likewise.
18096 (CFLAGS-errlist.c): Likewise.
18097 (CFLAGS-siglist.c): Likewise.
18098 (CFLAGS-scanf15.c): Likewise.
18099 (CFLAGS-scanf17.c): Likewise.
18100 * stdlib/Makefile (CFLAGS-bsearch.c): Likewise.
18101 (CFLAGS-msort.c): Likewise.
18102 (CFLAGS-qsort.c): Likewise.
18103 (CFLAGS-system.c): Likewise.
18104 (CFLAGS-fmtmsg.c): Likewise.
18105 (CFLAGS-strfmon.c): Likewise.
18106 (CFLAGS-strfmon_l.c): Likewise.
18107 (CFLAGS-strfromd.c): Likewise.
18108 (CFLAGS-strfromf.c): Likewise.
18109 (CFLAGS-strfroml.c): Likewise.
18110 (CFLAGS-tst-bsearch.c): Likewise.
18111 (CFLAGS-tst-qsort.c): Likewise.
18112 (CFLAGS-tst-makecontext2.c): Likewise.
18113 * sunrpc/Makefile (CFLAGS-xbootparam_prot.c): Likewise.
18114 (CFLAGS-xnlm_prot.c): Likewise.
18115 (CFLAGS-xrstat.c): Likewise.
18116 (CFLAGS-xyppasswd.c): Likewise.
18117 (CFLAGS-xklm_prot.c): Likewise.
18118 (CFLAGS-xrex.c): Likewise.
18119 (CFLAGS-xsm_inter.c): Likewise.
18120 (CFLAGS-xmount.c): Likewise.
18121 (CFLAGS-xrusers.c): Likewise.
18122 (CFLAGS-xspray.c): Likewise.
18123 (CFLAGS-xnfs_prot.c): Likewise.
18124 (CFLAGS-xrquota.c): Likewise.
18125 (CFLAGS-xkey_prot.c): Likewise.
18126 (CFLAGS-auth_unix.c): Likewise.
18127 (CFLAGS-key_call.c): Likewise.
18128 (CFLAGS-pmap_rmt.c): Likewise.
18129 (CFLAGS-clnt_perr.c): Likewise.
18130 (CFLAGS-openchild.c): Likewise.
18131 * sysvipc/Makefile (CFLAGS-msgrcv.c): Likewise.
18132 (CFLAGS-msgsnd.c): Likewise.
18133 * termios/Makefile (CFLAGS-tcdrain.c): Likewise.
18134 * time/Makefile (CFLAGS-tzfile.c): Likewise.
18135 (CFLAGS-tzset.c): Likewise.
18136 (CFLAGS-getdate.c): Likewise.
18137 (CFLAGS-test_time.c): Likewise.
18138 (CPPFLAGS-tst-tzname.c): Likewise.
18139 * timezone/Makefile (CFLAGS-zdump.c): Likewise.
18140 (CFLAGS-zic.c): Likewise.
18141 * wcsmbs/Makefile (CFLAGS-wcwidth.c): Likewise.
18142 (CFLAGS-wcswidth.c): Likewise.
18143 (CFLAGS-wcstol.c): Likewise.
18144 (CFLAGS-wcstoul.c): Likewise.
18145 (CFLAGS-wcstoll.c): Likewise.
18146 (CFLAGS-wcstoull.c): Likewise.
18147 (CFLAGS-wcstod.c): Likewise.
18148 (CFLAGS-wcstold.c): Likewise.
18149 (CFLAGS-wcstof128.c): Likewise.
18150 (CFLAGS-wcstof.c): Likewise.
18151 (CFLAGS-wcstol_l.c): Likewise.
18152 (CFLAGS-wcstoul_l.c): Likewise.
18153 (CFLAGS-wcstoll_l.c): Likewise.
18154 (CFLAGS-wcstoull_l.c): Likewise.
18155 (CFLAGS-wcstod_l.c): Likewise.
18156 (CFLAGS-wcstold_l.c): Likewise.
18157 (CFLAGS-wcstof128_l.c): Likewise.
18158 (CFLAGS-wcstof_l.c): Likewise.
18159 (CPPFLAGS-tst-wchar-h.c): Likewise.
18160 (CPPFLAGS-wcstold_l.c): Likewise.
18162 2017-12-11 Paul A. Clarke <pc@us.ibm.com>
18164 * sysdeps/ieee754/flt-32/s_cosf.c: New implementation.
18166 2017-12-11 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
18167 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
18169 * manual/tunables.texi (Hardware Capability Tunables): Document
18170 glibc.tune.cached_memopt.
18171 * sysdeps/powerpc/cpu-features.c: New file.
18172 * sysdeps/powerpc/cpu-features.h: New file.
18173 * sysdeps/powerpc/dl-procinfo.c [!IS_IN(ldconfig)]: Add
18174 _dl_powerpc_cpu_features.
18175 * sysdeps/powerpc/dl-tunables.list: New file.
18176 * sysdeps/powerpc/ldsodefs.h: Include cpu-features.h.
18177 * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h
18178 (INIT_ARCH): Initialize use_aligned_memopt.
18179 * sysdeps/powerpc/powerpc64/dl-machine.h [defined(SHARED &&
18180 IS_IN(rtld))]: Restrict dl_platform_init availability and
18181 initialize CPU features used by tunables.
18182 * sysdeps/powerpc/powerpc64/multiarch/Makefile (sysdep_routines):
18183 Add memcpy-power8-cached.
18184 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Add
18185 __memcpy_power8_cached.
18186 * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: Likewise.
18187 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power8-cached.S:
18190 2017-12-11 H.J. Lu <hongjiu.lu@intel.com>
18192 * string/Makefile (CFLAGS-inl-tester.c): Replace = with +=.
18193 (CFLAGS-noinl-tester.c): Likewise.
18194 (CFLAGS-tst-strlen.c): Likewise.
18195 (CFLAGS-stratcliff.c): Likewise.
18196 (CFLAGS-test-ffs.c): Likewise.
18197 (CFLAGS-tst-inlcall.c): Likewise.
18198 (CFLAGS-tst-xbzero-opt.c): Likewise.
18199 (CFLAGS-memcpy.c): Likewise.
18200 (CFLAGS-wordcopy.c): Likewise.
18202 2017-12-11 Stefan Liebler <stli@linux.vnet.ibm.com>
18204 * sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_resolve):
18205 Store r15 on stack and add cfi rule.
18206 * sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_resolve):
18209 2017-12-10 Aurelien Jarno <aurelien@aurel32.net>
18212 * elf/rtld.c (init_tls): Add missing new line to the _dl_fatal_printf
18215 2017-12-07 H.J. Lu <hongjiu.lu@intel.com>
18217 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
18218 Add s_sinf-sse2 and s_sinf-fma.
18219 (CFLAGS-s_sinf-fma.c): New.
18220 * sysdeps/x86_64/fpu/multiarch/s_sinf-fma.c: New file.
18221 * sysdeps/x86_64/fpu/multiarch/s_sinf-sse2.c: Likewise.
18222 * sysdeps/x86_64/fpu/multiarch/s_sinf.c: Likewise.
18224 2017-12-07 H.J. Lu <hongjiu.lu@intel.com>
18226 * sysdeps/x86_64/fpu/s_sinf.S: Removed.
18228 2017-12-07 Joseph Myers <joseph@codesourcery.com>
18231 * math/s_ctan_template.c (M_DECL_FUNC (__ctan)): Set imaginary
18232 part of result to imaginary part of argument if it is zero and the
18233 real part of the argument is not finite.
18234 * math/s_ctanh_template.c (M_DECL_FUNC (__ctanh)): Set real part
18235 of result to real part of argument if it is zero and the imaginary
18236 part of the argument is not finite.
18238 2017-12-07 Mike FABIAN <mfabian@redhat.com>
18241 * localedata/Makefile: Add lt_LT.UTF-8 to test-input
18242 and to the list of locales to be built for testing.
18243 * localedata/lt_LT.UTF-8.in: New file for testing the collation.
18244 * localedata/locales/lt_LT (LC_COLLATE): Use “copy "iso14651_t1"”
18245 and build the collation rules upon that.
18247 2017-12-07 Joseph Myers <joseph@codesourcery.com>
18249 * bits/floatn-common.h (__HAVE_FLOAT32): Define to 1.
18250 * manual/math.texi (Mathematics): Document support for _Float32.
18251 * math/Makefile (test-types): Add float32.
18252 * math/Versions (GLIBC_2.27): Add _Float32 functions.
18253 * stdlib/Versions (GLIBC_2.27): Likewise.
18254 * wcsmbs/Versions (GLIBC_2.27): Likewise.
18255 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Update.
18256 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
18257 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
18258 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
18259 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
18260 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
18261 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
18262 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
18263 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
18264 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
18265 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
18266 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
18267 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
18268 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
18269 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
18270 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
18271 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
18272 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
18273 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
18274 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
18275 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist:
18277 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
18278 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
18279 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
18280 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
18281 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
18282 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
18284 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist:
18286 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
18288 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
18291 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist:
18293 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist:
18295 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
18297 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist:
18299 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
18300 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
18301 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
18302 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
18303 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
18304 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
18305 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
18306 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
18307 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
18308 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
18309 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist:
18311 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist:
18313 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist:
18315 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist:
18317 * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: Likewise.
18318 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
18319 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
18320 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
18321 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
18322 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
18323 * sysdeps/i386/fpu/libm-test-ulps: Likewise.
18324 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
18326 2017-12-06 Joseph Myers <joseph@codesourcery.com>
18328 * stdlib/strtof.c: Include <bits/floatn.h>
18329 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (strtof32): Define
18330 and later undefine as macro. Define as weak alias if
18332 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (wcstof32): Define
18333 and later undefine as macro. Define as weak alias if
18335 * stdlib/strtof_l.c: Include <bits/floatn.h>
18336 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (strtof32_l): Define
18337 and later undefine as macro. Define as weak alias if
18339 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (wcstof32_l): Define
18340 and later undefine as macro. Define as weak alias if
18343 * stdlib/strfromf.c: Include <bits/floatn.h>.
18344 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (strfromf32): Define
18345 and later undefine as macro and define as weak alias.
18347 * math/test-float32.h: New file.
18349 * sysdeps/generic/libm-alias-float.h: Include <bits/floatn.h>.
18350 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32]
18351 (libm_alias_float_other_r): Create f32 alias.
18352 (libm_alias_float_r): Use semicolon before call to
18353 libm_alias_float_other_r.
18355 * sysdeps/ia64/fpu/e_exp2f.S (__exp2f): Use exp2 not __exp2 as
18356 second argument to libm_alias_float_other.
18357 * sysdeps/ia64/fpu/e_log2f.S (__log2f): Use log2 not __log2 as
18358 second argument to libm_alias_float_other.
18359 * sysdeps/ia64/fpu/e_powf.S (__powf): Use pow not __pow as second
18360 argument to libm_alias_float_other.
18363 * math/s_cacosh_template.c (M_DECL_FUNC (__cacosh)): Use pi/2 for
18364 real part of result for argument 0 + i * NaN.
18365 * math/libm-test-cacosh.inc (cacosh_test_data): Update expected
18366 results for tests of 0 + i * NaN.
18368 2017-12-06 Adhemerval Zanella <adhemerval.zanella@linaro.org>
18370 * sysdeps/alpha/fpu/libm-test-ulps: Update.
18372 2017-12-06 David S. Miller <davem@davemloft.net>
18374 * sysdeps/sparc/fpu/libm-test-ulps: Update
18375 exp_{downward,towardzero,upward} ulps.
18377 2017-12-06 Joseph Myers <joseph@codesourcery.com>
18379 * sysdeps/ieee754/ldbl-96/e_j1l.c (qone): Don't make local
18382 * sysdeps/ieee754/ldbl-128/e_j0l.c (Y0_2N): Make const.
18384 * sysdeps/ieee754/ldbl-128/e_j1l.c (Y0_2N): Likewise.
18386 * sysdeps/ieee754/ldbl-128ibm/e_j0l.c (Y0_2N): Likewise.
18388 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c (Y0_2N): Likewise.
18391 2017-12-06 Mike FABIAN <mfabian@redhat.com>
18394 * localedata/Makefile: Add hsb_DE.UTF-8 to test-input
18395 and to the list of locales to be built for testing.
18396 * localedata/hsb_DE.UTF-8.in: New file for testing the collation.
18397 * localedata/locales/hsb_DE (LC_COLLATE): Use “copy "iso14651_t1"”
18398 and build the collation rules upon that.
18400 2017-12-06 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
18402 * NEWS: Add sinf to list of optimized functions.
18404 2017-12-06 Joseph Myers <joseph@codesourcery.com>
18406 * bits/floatn-common.h (__HAVE_FLOAT64): Define to 1.
18407 (__HAVE_FLOAT32X): Likewise.
18408 * manual/math.texi (Mathematics): Document support for _Float64
18410 * math/Makefile (test-types): Add float64 and float32x.
18411 * math/Versions (GLIBC_2.27): Add _Float64 and _Float32x
18413 * stdlib/Versions (GLIBC_2.27): Likewise.
18414 * wcsmbs/Versions (GLIBC_2.27): Likewise.
18415 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Update.
18416 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
18417 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
18418 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
18419 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
18420 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
18421 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
18422 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
18423 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
18424 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
18425 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
18426 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
18427 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
18428 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
18429 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
18430 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
18431 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
18432 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
18433 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
18434 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
18435 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist:
18437 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
18438 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
18439 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
18440 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
18441 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
18442 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
18444 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist:
18446 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
18448 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
18450 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist:
18452 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist:
18454 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
18456 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist:
18458 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
18459 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
18460 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
18461 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
18462 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
18463 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
18464 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
18465 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
18466 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
18467 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
18468 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist:
18470 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist:
18472 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist:
18474 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist:
18476 * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: Likewise.
18477 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
18478 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
18479 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
18480 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
18481 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
18482 * sysdeps/i386/fpu/libm-test-ulps: Likewise.
18483 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
18485 2017-12-05 Joseph Myers <joseph@codesourcery.com>
18487 * bits/floatn-common.h: Include <bits/long-double.h>.
18488 [__HAVE_FLOAT64 && (!__GNUC_PREREQ (7, 0) || defined __cplusplus)
18489 && __NO_LONG_DOUBLE_MATH] (__f64): Use suffix 'l'.
18490 [__HAVE_FLOAT64 && (!__GNUC_PREREQ (7, 0) || defined __cplusplus)
18491 && __NO_LONG_DOUBLE_MATH] (__CFLOAT64): Use _Complex long double.
18492 [__HAVE_FLOAT64 && (!__GNUC_PREREQ (7, 0) || defined __cplusplus)
18493 && __NO_LONG_DOUBLE_MATH] (_Float64): Use long double.
18494 [__HAVE_FLOAT64 && !__GNUC_PREREQ (7, 0) && __NO_LONG_DOUBLE_MATH]
18495 (__builtin_huge_valf64): Use __builtin_huge_vall.
18496 [__HAVE_FLOAT64 && !__GNUC_PREREQ (7, 0) && __NO_LONG_DOUBLE_MATH]
18497 (__builtin_inff64): Use __builtin_infl.
18498 [__HAVE_FLOAT64 && !__GNUC_PREREQ (7, 0) && __NO_LONG_DOUBLE_MATH]
18499 (__builtin_nanf64): Use __builtin_nanl.
18500 [__HAVE_FLOAT64 && !__GNUC_PREREQ (7, 0) && __NO_LONG_DOUBLE_MATH]
18501 (__builtin_nansf64): Use __builtin_nansl.
18503 2017-12-05 Rogerio A. Cardoso <rcardoso@linux.vnet.ibm.com>
18504 Paul E. Murphy <murphyp@linux.vnet.ibm.com>
18505 Carlos O'Donnell <carlos@redhat.com>
18507 * elf/dl-tunables.list: Add elision parameters.
18508 * manual/tunables.texi: Add entries about elision tunable.
18509 * sysdeps/unix/sysv/linux/powerpc/elision-conf.c:
18510 Add callback functions to dynamically enable/disable elision.
18511 Add multiple callbacks functions to set elision parameters.
18512 Deleted __libc_enable_secure check.
18513 * sysdeps/unix/sysv/linux/s390/elision-conf.c: Likewise.
18514 * sysdeps/unix/sysv/linux/x86/elision-conf.c: Likewise.
18515 * configure: Regenerated.
18516 * configure.ac: Option enable_lock_elision was deleted.
18517 * config.h.in: ENABLE_LOCK_ELISION flag was deleted.
18518 * config.make.in: Remove references to enable_lock_elision.
18519 * manual/install.texi: Elision configure option was removed.
18520 * INSTALL: Regenerated to remove enable_lock_elision.
18522 Disable elision so it can verify error case for destroying a mutex.
18523 * sysdeps/powerpc/nptl/elide.h:
18524 Cleanup ENABLE_LOCK_ELISION check.
18525 Deleted macros for the case when ENABLE_LOCK_ELISION was not defined.
18526 * sysdeps/s390/configure: Regenerated.
18527 * sysdeps/s390/configure.ac: Remove references to enable_lock_elision..
18528 * nptl/tst-mutex8.c:
18529 Deleted all #ifndef ENABLE_LOCK_ELISION from the test.
18530 * sysdeps/powerpc/powerpc32/sysdep.h:
18531 Deleted all ENABLE_LOCK_ELISION checks.
18532 * sysdeps/powerpc/powerpc64/sysdep.h: Likewise.
18533 * sysdeps/powerpc/sysdep.h: Likewise.
18534 * sysdeps/s390/nptl/bits/pthreadtypes-arch.h: Likewise.
18535 * sysdeps/unix/sysv/linux/powerpc/force-elision.h: Likewise.
18536 * sysdeps/unix/sysv/linux/s390/elision-conf.h: Likewise.
18537 * sysdeps/unix/sysv/linux/s390/force-elision.h: Likewise.
18538 * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
18539 * sysdeps/unix/sysv/linux/s390/Makefile: Remove references to
18540 enable-lock-elision.
18542 2017-12-05 Joseph Myers <joseph@codesourcery.com>
18544 * stdlib/strtod.c: Include <bits/floatn.h>.
18545 (BUILD_DOUBLE): New macro.
18546 [BUILD_DOUBLE && __HAVE_FLOAT64 && !__HAVE_DISTINCT_FLOAT64]
18547 (strtof64): Define and later undefine as macro. Define as weak
18548 alias if [!USE_WIDE_CHAR].
18549 [BUILD_DOUBLE && __HAVE_FLOAT64 && !__HAVE_DISTINCT_FLOAT64]
18550 (wcstof64): Define and later undefine as macro. Define as weak
18551 alias if [USE_WIDE_CHAR].
18552 [BUILD_DOUBLE && __HAVE_FLOAT32X && !__HAVE_DISTINCT_FLOAT32X]
18553 (strtof32x): Define and later undefine as macro. Define as weak
18554 alias if [!USE_WIDE_CHAR].
18555 [BUILD_DOUBLE && __HAVE_FLOAT32X && !__HAVE_DISTINCT_FLOAT32X]
18556 (wcstof32x): Define and later undefine as macro. Define as weak
18557 alias if [USE_WIDE_CHAR].
18558 * stdlib/strtod_l.c: Include <bits/floatn.h>.
18559 (BUILD_DOUBLE): New macro.
18560 [BUILD_DOUBLE && __HAVE_FLOAT64 && !__HAVE_DISTINCT_FLOAT64]
18561 (strtof64_l): Define and later undefine as macro. Define as weak
18562 alias if [!USE_WIDE_CHAR].
18563 [BUILD_DOUBLE && __HAVE_FLOAT64 && !__HAVE_DISTINCT_FLOAT64]
18564 (wcstof64_l): Define and later undefine as macro. Define as weak
18565 alias if [USE_WIDE_CHAR].
18566 [BUILD_DOUBLE && __HAVE_FLOAT32X && !__HAVE_DISTINCT_FLOAT32X]
18567 (strtof32x_l): Define and later undefine as macro. Define as weak
18568 alias if [!USE_WIDE_CHAR].
18569 [BUILD_DOUBLE && __HAVE_FLOAT32X && !__HAVE_DISTINCT_FLOAT32X]
18570 (wcstof32x_l): Define and later undefine as macro. Define as weak
18571 alias if [USE_WIDE_CHAR].
18573 2017-12-05 Adhemerval Zanella <adhemerval.zanella@linaro.org>
18575 * sysdeps/ieee754/flt-32/s_sinf.c (ones): Define as double.
18576 (reduced): Use ones as double instead of integer.
18578 2017-12-05 Szabolcs Nagy <szabolcs.nagy@arm.com>
18580 * sysdeps/ieee754/flt-32/s_sinf.c (sinf): Use isless.
18582 2017-12-05 Joseph Myers <joseph@codesourcery.com>
18584 * stdlib/strfromd.c: Include <bits/floatn.h>.
18585 [__HAVE_FLOAT64 && !__HAVE_DISTINCT_FLOAT64] (strfromf64): Define
18586 and later undefine as macro and define as weak alias.
18587 [__HAVE_FLOAT32X && !__HAVE_DISTINCT_FLOAT32X] (strfromf32x):
18590 * math/test-float32x.h: New file.
18591 * math/test-float64.h: Likewise.
18593 * sysdeps/generic/libm-alias-double.h: Include <bits/floatn.h>.
18594 (libm_alias_double_other_r_f64): New macro.
18595 (libm_alias_double_other_r_f32x): Likewise.
18596 (libm_alias_double_other_r): Use libm_alias_double_other_r_f64 and
18597 libm_alias_double_other_r_f32x.
18598 (libm_alias_double_r): Use semicolon before call to
18599 libm_alias_double_other_r.
18600 * sysdeps/ieee754/ldbl-opt/libm-alias-double.h: Include
18602 (libm_alias_double_other_r_f64): New macro.
18603 (libm_alias_double_other_r_f32x): Likewise.
18604 (libm_alias_double_other_r): Use libm_alias_double_other_r_f64 and
18605 libm_alias_double_other_r_f32x.
18607 2017-12-05 H.J. Lu <hongjiu.lu@intel.com>
18609 * sysdeps/ieee754/flt-32/s_sinf.c (reduced): Replace long with
18611 (SINF_FUNC): Likewise. Replace floor with simple casts.
18613 2017-12-05 Mike FABIAN <mfabian@redhat.com>
18616 * localedata/Makefile: Add et_EE.UTF-8 to test-input
18617 and to the list of locales to be built for testing.
18618 * localedata/et_EE.UTF-8.in: New file for testing the collation.
18619 * localedata/locales/et_EE (LC_COLLATE): Use “copy "iso14651_t1"”
18620 and build the collation rules upon that.
18622 2017-12-05 Chris Metcalf <cmetcalf@mellanox.com>
18624 * sysdeps/tile/tilegx/string-endian.h (VECOP): Provide working
18625 replacements for __insn_xxx builtins for v1cmpeq, v1cmpltu,
18626 v1cmpne, v1add, v1shru, v1shl (register and immediate versions).
18627 * sysdeps/tile/tilegx/memchr.c (__memchr): Use VECOP function
18628 instead of __insn__xxx.
18629 * sysdeps/tile/tilegx/rawmemchr.c (__rawmemchr): Likewise.
18630 * sysdeps/tile/tilegx/strstr.c (strcasechr): Likewise.
18631 * sysdeps/tile/tilegx/strrchr.c (strrchr): Likewise.
18632 * sysdeps/tile/tilegx/strlen.c (strlen): Likewise.
18633 * sysdeps/tile/tilegx/strchrnul.c (__strchrnul): Likewise.
18634 * sysdeps/tile/tilegx/strchr.c (strchr): Likewise.
18636 2017-12-05 Florian Weimer <fweimer@redhat.com>
18638 Linux: Implement interfaces for memory protection keys
18639 * support/Makefile (libsupport-routines): Add xraise, xsigaction,
18641 * support/xsignal.h (xraise, xsignal, xsigaction): Declare.
18642 * support/xunistd.h (xsysconf): Declare.
18643 * support/xraise.c: New file.
18644 * support/xsigaction.c: Likewise.
18645 * support/xsignal.c: Likewise.
18646 * support/xsysconf.c: Likewise.
18647 * sysdeps/unix/sysv/linux/Makefile [misc] (routines): Add
18648 pkey_set, pkey_get, pkey_mprotect.
18649 [misc] (tests): Add tst-pkey.
18650 (tst-pkey): Link with -lpthread.
18651 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.27): Add pkey_alloc,
18652 pkey_free, pkey_set, pkey_get, pkey_mprotect.
18653 * sysdeps/unix/sysv/linux/bits/mman-linux.h (PKEY_DISABLE_ACCESS)
18654 (PKEY_DISABLE_WRITE): Define.
18655 (pkey_alloc, pkey_free, pkey_set, pkey_get, pkey_mprotect):
18657 * sysdeps/unix/sysv/linux/bits/siginfo-consts.h (SEGV_BNDERR)
18658 (SEGV_PKUERR): Add.
18659 * sysdeps/unix/sysv/linux/pkey_get.c: New file.
18660 * sysdeps/unix/sysv/linux/pkey_set.c: Likewise.
18661 * sysdeps/unix/sysv/linux/pkey_mprotect.c: Likewise.
18662 * sysdeps/unix/sysv/linux/syscalls.list (pkey_alloc, pkey_free):
18664 * sysdeps/unix/sysv/linux/tst-pkey.c: New file.
18665 * sysdeps/unix/sysv/linux/x86/arch-pkey.h: Likewise.
18666 * sysdeps/unix/sysv/linux/x86/pkey_get.c: Likewise.
18667 * sysdeps/unix/sysv/linux/x86/pkey_set.c: Likewise.
18668 * sysdeps/unix/sysv/linux/**.abilist: Update.
18670 2017-12-05 Florian Weimer <fweimer@redhat.com>
18672 * support/tst-test_compare.c (subprocess): Use long long instead
18673 of long argument for consistent type width across 32-bit and
18674 64-bit architectures.
18675 (do_test): Adjust expected output.
18677 2017-12-05 Joseph Myers <joseph@codesourcery.com>
18679 * sysdeps/powerpc/fpu/s_cosf.c: Include <libm-alias-float.h>.
18680 (cosf): Define using libm_alias_float.
18681 * sysdeps/powerpc/fpu/s_fabs.S: Include <libm-alias-float.h>.
18682 (fabsf): Define using libm_alias_float.
18683 * sysdeps/powerpc/fpu/s_fmaf.S: Include <libm-alias-float.h>.
18684 (fmaf): Define using libm_alias_float.
18685 * sysdeps/powerpc/fpu/s_rintf.c: Include <libm-alias-float.h>.
18686 (rintf): Define using libm_alias_float.
18687 * sysdeps/powerpc/fpu/s_sinf.c: Include <libm-alias-float.h>.
18688 (sinf): Define using libm_alias_float.
18689 * sysdeps/powerpc/power5+/fpu/s_modff.c: Include
18690 <libm-alias-float.h>.
18691 (modff): Define using libm_alias_float.
18692 * sysdeps/powerpc/power7/fpu/s_logbf.c: Include
18693 <libm-alias-float.h>.
18694 (logbf): Define using libm_alias_float.
18695 * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S: Include
18696 <libm-alias-float.h>.
18697 (ceilf): Define using libm_alias_float.
18698 * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Include
18699 <libm-alias-float.h>.
18700 (copysignf): Define using libm_alias_float.
18701 * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: Include
18702 <libm-alias-float.h>.
18703 (floorf): Define using libm_alias_float.
18704 * sysdeps/powerpc/powerpc32/fpu/s_llrintf.c: Include
18705 <libm-alias-float.h>.
18706 (llrintf): Define using libm_alias_float.
18707 * sysdeps/powerpc/powerpc32/fpu/s_llroundf.c: Include
18708 <libm-alias-float.h>.
18709 (llroundf): Define using libm_alias_float.
18710 * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: Include
18711 <libm-alias-float.h>.
18712 (lrintf): Define using libm_alias_float.
18713 * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Include
18714 <libm-alias-float.h>.
18715 (lroundf): Define using libm_alias_float.
18716 * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S: Include
18717 <libm-alias-float.h>.
18718 (nearbyintf): Define using libm_alias_float.
18719 * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: Include
18720 <libm-alias-float.h>.
18721 (rintf): Define using libm_alias_float.
18722 * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Include
18723 <libm-alias-float.h>.
18724 (roundf): Define using libm_alias_float.
18725 * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Include
18726 <libm-alias-float.h>.
18727 (truncf): Define using libm_alias_float.
18728 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c:
18729 Include <libm-alias-float.h>.
18730 (ceilf): Define using libm_alias_float.
18731 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c:
18732 Include <libm-alias-float.h>.
18733 (copysignf): Define using libm_alias_float.
18734 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c:
18735 Include <libm-alias-float.h>.
18736 (floorf): Define using libm_alias_float.
18737 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf.c:
18738 Include <libm-alias-float.h>.
18739 (llrintf): Define using libm_alias_float.
18740 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llroundf.c:
18741 Include <libm-alias-float.h>.
18742 (llroundf): Define using libm_alias_float.
18743 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf.c:
18744 Include <libm-alias-float.h>.
18745 (logbf): Define using libm_alias_float.
18746 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrintf.c:
18747 Include <libm-alias-float.h>.
18748 (lrintf): Define using libm_alias_float.
18749 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lroundf.c:
18750 Include <libm-alias-float.h>.
18751 (lroundf): Define using libm_alias_float.
18752 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff.c:
18753 Include <libm-alias-float.h>.
18754 (modff): Define using libm_alias_float.
18755 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c:
18756 Include <libm-alias-float.h>.
18757 (roundf): Define using libm_alias_float.
18758 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c:
18759 Include <libm-alias-float.h>.
18760 (truncf): Define using libm_alias_float.
18761 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Include
18762 <libm-alias-float.h>.
18763 (llrintf): Define using libm_alias_float.
18764 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Include
18765 <libm-alias-float.h>.
18766 (llroundf): Define using libm_alias_float.
18767 * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceilf.S: Include
18768 <libm-alias-float.h>.
18769 (ceilf): Define using libm_alias_float.
18770 * sysdeps/powerpc/powerpc32/power5+/fpu/s_floorf.S: Include
18771 <libm-alias-float.h>.
18772 (floorf): Define using libm_alias_float.
18773 * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Include
18774 <libm-alias-float.h>.
18775 (llroundf): Define using libm_alias_float.
18776 * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Include
18777 <libm-alias-float.h>.
18778 (lroundf): Define using libm_alias_float.
18779 * sysdeps/powerpc/powerpc32/power5+/fpu/s_roundf.S: Include
18780 <libm-alias-float.h>.
18781 (roundf): Define using libm_alias_float.
18782 * sysdeps/powerpc/powerpc32/power5+/fpu/s_truncf.S: Include
18783 <libm-alias-float.h>.
18784 (truncf): Define using libm_alias_float.
18785 * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Include
18786 <libm-alias-float.h>.
18787 (copysignf): Define using libm_alias_float.
18788 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Include
18789 <libm-alias-float.h>.
18790 (llrintf): Define using libm_alias_float.
18791 * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Include
18792 <libm-alias-float.h>.
18793 (llroundf): Define using libm_alias_float.
18794 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S: Include
18795 <libm-alias-float.h>.
18796 (lrintf): Define using libm_alias_float.
18797 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: Include
18798 <libm-alias-float.h>.
18799 (lroundf): Define using libm_alias_float.
18800 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c: Include
18801 <libm-alias-float.h>.
18802 (ceilf): Define using libm_alias_float.
18803 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c: Include
18804 <libm-alias-float.h>.
18805 (copysignf): Define using libm_alias_float.
18806 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf.c: Include
18807 <libm-alias-float.h>.
18808 (cosf): Define using libm_alias_float.
18809 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c: Include
18810 <libm-alias-float.h>.
18811 (floorf): Define using libm_alias_float.
18812 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrintf.c: Include
18813 <libm-alias-float.h>.
18814 (llrintf): Define using libm_alias_float.
18815 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llroundf.c: Include
18816 <libm-alias-float.h>.
18817 (llroundf): Define using libm_alias_float.
18818 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf.c: Include
18819 <libm-alias-float.h>.
18820 (logbf): Define using libm_alias_float.
18821 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c: Include
18822 <libm-alias-float.h>.
18823 (modff): Define using libm_alias_float.
18824 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c: Include
18825 <libm-alias-float.h>.
18826 (roundf): Define using libm_alias_float.
18827 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf.c: Include
18828 <libm-alias-float.h>.
18829 (sinf): Define using libm_alias_float.
18830 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c: Include
18831 <libm-alias-float.h>.
18832 (truncf): Define using libm_alias_float.
18833 * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Include
18834 <libm-alias-float.h>.
18835 (ceilf): Define using libm_alias_float.
18836 * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Include
18837 <libm-alias-float.h>.
18838 (copysignf): Define using libm_alias_float.
18839 * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Include
18840 <libm-alias-float.h>.
18841 (floorf): Define using libm_alias_float.
18842 * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Include
18843 <libm-alias-float.h>.
18844 (llrintf): Define using libm_alias_float.
18845 * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: Include
18846 <libm-alias-float.h>.
18847 (llroundf): Define using libm_alias_float.
18848 * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: Include
18849 <libm-alias-float.h>.
18850 (nearbyintf): Define using libm_alias_float.
18851 * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Include
18852 <libm-alias-float.h>.
18853 (rintf): Define using libm_alias_float.
18854 * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Include
18855 <libm-alias-float.h>.
18856 (roundf): Define using libm_alias_float.
18857 * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Include
18858 <libm-alias-float.h>.
18859 (truncf): Define using libm_alias_float.
18860 * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S: Include
18861 <libm-alias-float.h>.
18862 (ceilf): Define using libm_alias_float.
18863 * sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S: Include
18864 <libm-alias-float.h>.
18865 (floorf): Define using libm_alias_float.
18866 * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: Include
18867 <libm-alias-float.h>.
18868 (llroundf): Define using libm_alias_float.
18869 * sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S: Include
18870 <libm-alias-float.h>.
18871 (roundf): Define using libm_alias_float.
18872 * sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S: Include
18873 <libm-alias-float.h>.
18874 (truncf): Define using libm_alias_float.
18875 * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Include
18876 <libm-alias-float.h>.
18877 (copysignf): Define using libm_alias_float.
18878 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: Include
18879 <libm-alias-float.h>.
18880 (llrintf): Define using libm_alias_float.
18881 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: Include
18882 <libm-alias-float.h>.
18883 (llroundf): Define using libm_alias_float.
18884 * sysdeps/powerpc/powerpc64/power8/fpu/s_cosf.S: Include
18885 <libm-alias-float.h>.
18886 (cosf): Define using libm_alias_float.
18887 * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S: Include
18888 <libm-alias-float.h>.
18889 (llrintf): Define using libm_alias_float.
18890 * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S: Include
18891 <libm-alias-float.h>.
18892 (llroundf): Define using libm_alias_float.
18893 * sysdeps/powerpc/powerpc64/power8/fpu/s_sinf.S: Include
18894 <libm-alias-float.h>.
18895 (sinf): Define using libm_alias_float.
18897 2017-12-04 Florian Weimer <fweimer@redhat.com>
18899 * support/check.h (TEST_COMPARE): Define.
18900 (support_test_compare_failure): Declare.
18901 * support/Makefile (libsupport-routines): Add
18902 support_test_compare_failure.
18903 (tests): Add tst-test_compare.
18904 * support /support_test_compare_failure.c: New file.
18905 * support/tst-test_compare.c: Likewise.
18907 2017-12-04 Mike FABIAN <mfabian@redhat.com>
18910 * localedata/locales/tr_TR (LC_COLLATE): Base collation rules
18911 on iso14651_t1. A test file localedata/tr_TR.UTF-8.in is already
18912 available, this rewrite of the collation rules does reproduce
18913 the test file in the same order.
18915 2017-12-04 Mike FABIAN <mfabian@redhat.com>
18918 * localedata/locales/hr_HR (LC_TIME): Use two letters for the
18919 digraphs in the month and day names. Using single code points for
18920 digraphs is deprecated. While there are dedicated Unicode
18921 codepoints, for the digraphs, these are included for backwards
18922 compatibility and modern texts use a sequence of Basic Latin
18923 characters. See: https://www.unicode.org/faq/ligature_digraph.html
18924 This makes the month and day names agree exactly with CLDR now,
18925 CLDR does not use the single code points for the digraphs either.
18927 2017-12-04 Chris Metcalf <cmetcalf@mellanox.com>
18929 * sysdeps/tile/libm-test-ulps: Update ca{cos,sin,tan}{,h} ulps.
18931 2017-12-04 Joseph Myers <joseph@codesourcery.com>
18933 * sysdeps/ieee754/flt-32/s_sinf.c (SINF_FUNC): Use __floor instead
18936 2017-12-04 Siddhesh Poyarekar <siddhesh@sourceware.org>
18938 * sysdeps/aarch64/multiarch/memcpy_generic.S (__GI_memcpy):
18939 Define only for libc.so.
18941 2017-12-04 Stefan Liebler <stli@linux.vnet.ibm.com>
18943 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
18944 (INTERNAL_VSYSCALL_CALL, CLOBBER_0, CLOBBER_1, CLOBBER_2,
18945 CLOBBER_3, CLOBBER_4, CLOBBER_5, CLOBBER_6,
18946 INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK): Remove.
18947 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
18949 2017-12-04 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
18952 * sysdeps/ieee754/flt-32/s_sinf.c: New implementation.
18954 2017-12-02 John David Anglin <danglin@gcc.gnu.org>
18957 * sysdeps/hppa/crti.S: Declare PREINIT_FUNCTION weak_extern when
18958 PREINIT_FUNCTION_WEAK is nonzero.
18959 (gmon_initializer): New function. Put procedure label for it in
18960 .init_array section.
18961 (_init): Don't call PREINIT_FUNCTION.
18962 * sysdeps/hppa/crtn.S (__gmon_start__): Remove.
18963 * sysdeps/hppa/dl-lookupcfg.h (DL_FIXUP_MAKE_VALUE): Create null fixup
18964 value when map argument is null.
18966 * sysdeps/hppa/dl-fptr.c (elf_machine_resolve): Remove unnecessary
18967 depi instruction from PIC pc-relative sequence.
18968 * sysdeps/hppa/dl-fptr.h (ELF_MACHINE_LOAD_ADDRESS): Likewise.
18969 * sysdeps/hppa/dl-machine.h (elf_machine_dynamic): Likewise.
18970 (elf_machine_load_address): Likewise.
18971 (elf_machine_runtime_setup): Likewise.
18973 2017-12-02 Joseph Myers <joseph@codesourcery.com>
18975 * sysdeps/powerpc/power7/fpu/s_logb.c: Include
18976 <libm-alias-double.h>.
18977 (logb): Define using libm_alias_double.
18978 * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Include
18979 <libm-alias-double.h>.
18980 (copysign): Define using libm_alias_double.
18981 * sysdeps/powerpc/powerpc32/fpu/s_llrint.c: Include
18982 <libm-alias-double.h>.
18983 (llrint): Define using libm_alias_double.
18984 * sysdeps/powerpc/powerpc32/fpu/s_llround.c: Include
18985 <libm-alias-double.h>.
18986 (llround): Define using libm_alias_double.
18987 * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: Include
18988 <libm-alias-double.h>.
18989 (lrint): Define using libm_alias_double.
18990 * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Include
18991 <libm-alias-double.h>.
18992 (lround): Define using libm_alias_double.
18993 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c:
18994 Include <libm-alias-double.h>.
18995 (copysign): Define using libm_alias_double.
18996 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint.c:
18997 Include <libm-alias-double.h>.
18998 (llrint): Define using libm_alias_double.
18999 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround.c:
19000 Include <libm-alias-double.h>.
19001 (llround): Define using libm_alias_double.
19002 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c: Include
19003 <libm-alias-double.h>.
19004 (logb): Define using libm_alias_double.
19005 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint.c:
19006 Include <libm-alias-double.h>.
19007 (lrint): Define using libm_alias_double.
19008 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround.c:
19009 Include <libm-alias-double.h>.
19010 (lround): Define using libm_alias_double.
19011 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Include
19012 <libm-alias-double.h>.
19013 (llrint): Define using libm_alias_double.
19014 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Include
19015 <libm-alias-double.h>.
19016 (llround): Define using libm_alias_double.
19017 * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Include
19018 <libm-alias-double.h>.
19019 (llround): Define using libm_alias_double.
19020 * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Include
19021 <libm-alias-double.h>.
19022 (lround): Define using libm_alias_double.
19023 * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Include
19024 <libm-alias-double.h>.
19025 (copysign): Define using libm_alias_double.
19026 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Include
19027 <libm-alias-double.h>.
19028 (llrint): Define using libm_alias_double.
19029 * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Include
19030 <libm-alias-double.h>.
19031 (llround): Define using libm_alias_double.
19032 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S: Include
19033 <libm-alias-double.h>.
19034 (lrint): Define using libm_alias_double.
19035 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: Include
19036 <libm-alias-double.h>.
19037 (lround): Define using libm_alias_double.
19038 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: Include
19039 <libm-alias-double.h>.
19040 (copysign): Define using libm_alias_double.
19041 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c: Include
19042 <libm-alias-double.h>.
19043 (llrint): Define using libm_alias_double.
19045 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c: Include
19046 <libm-alias-double.h>.
19047 (llround): Define using libm_alias_double.
19048 (lround): Likewise.
19049 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c: Include
19050 <libm-alias-double.h>.
19051 (logb): Define using libm_alias_double.
19052 * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Include
19053 <libm-alias-double.h>.
19054 (copysign): Define using libm_alias_double.
19055 * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Include
19056 <libm-alias-double.h>.
19057 (llrint): Define using libm_alias_double.
19059 * sysdeps/powerpc/powerpc64/fpu/s_llround.S: Include
19060 <libm-alias-double.h>.
19061 (llround): Define using libm_alias_double.
19062 (lround): Likewise.
19063 * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: Include
19064 <libm-alias-double.h>.
19065 (llround): Define using libm_alias_double.
19066 (lround): Likewise.
19067 * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Include
19068 <libm-alias-double.h>.
19069 (copysign): Define using libm_alias_double.
19070 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: Include
19071 <libm-alias-double.h>.
19072 (llrint): Define using libm_alias_double.
19074 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: Include
19075 <libm-alias-double.h>.
19076 (llround): Define using libm_alias_double.
19077 (lround): Likewise.
19078 * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S: Include
19079 <libm-alias-double.h>.
19080 (llrint): Define using libm_alias_double.
19082 * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S: Include
19083 <libm-alias-double.h>.
19084 (llround): Define using libm_alias_double.
19085 (lround): Likewise.
19087 2017-12-01 Joseph Myers <joseph@codesourcery.com>
19089 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c
19090 [LONG_DOUBLE_COMPAT(libm, GLIBC_2_1)] (lroundl): Do not define
19091 compat symbol based on llround.
19093 * sysdeps/powerpc/power7/fpu/s_logb.c
19094 [LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)] (logbl): Define as compat
19095 symbol based on __logb, not on logb.
19096 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c
19097 [LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)] (logbl): Likewise.
19098 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c
19099 [LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)] (logbl): Likewise.
19101 * sysdeps/powerpc/fpu/s_rint.c: Include <libm-alias-double.h>.
19102 (rint): Define using libm_alias_double.
19103 * sysdeps/powerpc/power5+/fpu/s_modf.c: Include
19104 <libm-alias-double.h>.
19105 (modf): Define using libm_alias_double.
19106 * sysdeps/powerpc/powerpc32/fpu/s_ceil.S: Include
19107 <libm-alias-double.h>.
19108 (ceil): Define using libm_alias_double.
19109 * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Include
19110 <libm-alias-double.h>.
19111 (floor): Define using libm_alias_double.
19112 * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S: Include
19113 <libm-alias-double.h>.
19114 (nearbyint): Define using libm_alias_double.
19115 * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Include
19116 <libm-alias-double.h>.
19117 (rint): Define using libm_alias_double.
19118 * sysdeps/powerpc/powerpc32/fpu/s_round.S: Include
19119 <libm-alias-double.h>.
19120 (round): Define using libm_alias_double.
19121 * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Include
19122 <libm-alias-double.h>.
19123 (trunc): Define using libm_alias_double.
19124 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c: Include
19125 <libm-alias-double.h>.
19126 (ceil): Define using libm_alias_double.
19127 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c:
19128 Include <libm-alias-double.h>.
19129 (floor): Define using libm_alias_double.
19130 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c: Include
19131 <libm-alias-double.h>.
19132 (modf): Define using libm_alias_double.
19133 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c:
19134 Include <libm-alias-double.h>.
19135 (round): Define using libm_alias_double.
19136 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c:
19137 Include <libm-alias-double.h>.
19138 (trunc): Define using libm_alias_double.
19139 * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceil.S: Include
19140 <libm-alias-double.h>.
19141 (ceil): Define using libm_alias_double.
19142 * sysdeps/powerpc/powerpc32/power5+/fpu/s_floor.S: Include
19143 <libm-alias-double.h>.
19144 (floor): Define using libm_alias_double.
19145 * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S: Include
19146 <libm-alias-double.h>.
19147 (round): Define using libm_alias_double.
19148 * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S: Include
19149 <libm-alias-double.h>.
19150 (trunc): Define using libm_alias_double.
19151 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c: Include
19152 <libm-alias-double.h>.
19153 (ceil): Define using libm_alias_double.
19154 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c: Include
19155 <libm-alias-double.h>.
19156 (floor): Define using libm_alias_double.
19157 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: Include
19158 <libm-alias-double.h>.
19159 (modf): Define using libm_alias_double.
19160 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c: Include
19161 <libm-alias-double.h>.
19162 (round): Define using libm_alias_double.
19163 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c: Include
19164 <libm-alias-double.h>.
19165 (trunc): Define using libm_alias_double.
19166 * sysdeps/powerpc/powerpc64/fpu/s_ceil.S: Include
19167 <libm-alias-double.h>.
19168 (ceil): Define using libm_alias_double.
19169 * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Include
19170 <libm-alias-double.h>.
19171 (floor): Define using libm_alias_double.
19172 * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S: Include
19173 <libm-alias-double.h>.
19174 (nearbyint): Define using libm_alias_double.
19175 * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Include
19176 <libm-alias-double.h>.
19177 (rint): Define using libm_alias_double.
19178 * sysdeps/powerpc/powerpc64/fpu/s_round.S: Include
19179 <libm-alias-double.h>.
19180 (round): Define using libm_alias_double.
19181 * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Include
19182 <libm-alias-double.h>.
19183 (trunc): Define using libm_alias_double.
19184 * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S: Include
19185 <libm-alias-double.h>.
19186 (ceil): Define using libm_alias_double.
19187 * sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S: Include
19188 <libm-alias-double.h>.
19189 (floor): Define using libm_alias_double.
19190 * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S: Include
19191 <libm-alias-double.h>.
19192 (round): Define using libm_alias_double.
19193 * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S: Include
19194 <libm-alias-double.h>.
19195 (trunc): Define using libm_alias_double.
19197 * sysdeps/powerpc/fpu/s_fabs.S: Include <libm-alias-double.h>.
19198 (fabs): Define using libm_alias_double.
19199 * sysdeps/powerpc/fpu/s_fma.S: Include <libm-alias-double.h>.
19200 (fma): Define using libm_alias_double.
19201 * sysdeps/powerpc/powerpc32/fpu/s_fabs.S: Remove file.
19202 * sysdeps/powerpc/powerpc32/fpu/s_fma.S: Likewise.
19203 * sysdeps/powerpc/powerpc64/fpu/s_fabs.S: Likewise.
19204 * sysdeps/powerpc/powerpc64/fpu/s_fma.S: Likewise.
19206 2017-12-01 Adhemerval Zanella <adhemerval.zanella@linaro.org>
19208 * sysdeps/unix/sysv/linux/x86_64/x32/getcpu.c: Remove file.
19210 * sysdeps/sparc/sparc-ifunc.h (SPARC_ASM_IFUNC_DFLT,
19211 SPARC_ASM_IFUNC1, SPARC_ASM_IFUNC2, SET, SPARC_ASM_VIS2_IFUNC,
19212 SPARC_ASM_VIS3_IFUNC, SPARC_ASM_VIS3_VIS2_IFUNC): Remove macros.
19214 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.c: Fix build
19215 due redirect macro.
19217 2017-12-01 Andreas Schwab <schwab@linux-m68k.org>
19219 * intl/Makefile ($(objpfx)plural.c): Add $(make-target-directory).
19221 2017-12-01 Adhemerval Zanella <adhemerval.zanella@linaro.org>
19223 * sysdeps/sparc/sparc64/cpu_relax.c: New file.
19224 * sysdeps/sparc/sparc32/sparcv9/cpu_relax.c: Likewise.
19225 * sysdeps/sparc/sparc64/cpu_relax.S: Remove file.
19226 * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: Likewise.
19228 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
19229 (libm-sysdep_routines): Add s_nearbyintf-generic and
19230 s_nearbyint-generic.
19231 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint-generic.S:
19233 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.c: Likewise.
19234 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf-generic.S:
19236 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.c:
19238 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.S: Remove
19240 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.S:
19243 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
19244 (libm-sysdep_routines): Add s_rintf-generic and s_rint-generic.
19245 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint-generic.S: New
19247 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.c: Likewise.
19248 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf-generic.S:
19250 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.c: Likewise.
19251 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Remove file.
19252 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: Likewise.
19254 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
19255 (libm-sysdep_routines): Add s_llrintf-generic and s_llrint-generic.
19256 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint-generic.S: New
19258 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.c: Likewise.
19259 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf-generic.S:
19261 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.c: Likewise.
19262 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: Remove file.
19263 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S: Likewise.
19265 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
19266 (libm-sysdep_routines): Add s_fabsf-generic and s_fabs-generic.
19267 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs-generic.S: New
19269 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.c: Likewise.
19270 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf-generic.S:
19272 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.c: Likewise.
19273 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Remove file.
19274 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: Likewise.
19276 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
19277 (sysdep_calls): New rule.
19278 (sysdep_routines): Use sysdep_calls as base.
19279 (libm-sysdep_routines): Add generic rule for symbols shared with
19280 libc. Add s_copysign-generic and s_copysign-generic objects.
19281 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign-generic.S:
19283 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.c: Likewise.
19284 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf-generic.S:
19286 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.c: Likewise.
19287 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S: Remove file.
19288 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S: Likewise.
19290 2017-12-01 Mike FABIAN <mfabian@redhat.com>
19293 * localedata/Makefile: Add is_IS.UTF-8 to test-input and to
19294 the list of locales to be built for testing.
19295 * localedata/is_IS.UTF-8.in: New file.
19296 * localedata/locales/is_IS (LC_COLLATE): Base collation rules
19299 2017-12-01 Joseph Myers <joseph@codesourcery.com>
19301 * sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S: Include
19302 <libm-alias-float.h>.
19303 (fabsf): Define using libm_alias_float.
19305 2017-11-30 H.J. Lu <hongjiu.lu@intel.com>
19307 * sysdeps/mips/dl-machine.h (elf_machine_reloc): Expand MIN.
19309 2017-11-30 Joseph Myers <joseph@codesourcery.com>
19311 * sysdeps/m68k/coldfire/fpu/s_fabsf.c: Include
19312 <libm-alias-float.h>.
19313 (fabsf): Define using libm_alias_float.
19314 * sysdeps/m68k/coldfire/fpu/s_lrintf.c: Include
19315 <libm-alias-float.h>.
19316 (lrintf): Define using libm_alias_float.
19317 * sysdeps/m68k/coldfire/fpu/s_rintf.c: Include
19318 <libm-alias-float.h>.
19319 (rintf): Define using libm_alias_float.
19321 * sysdeps/m68k/coldfire/fpu/s_fabs.c: Include
19322 <libm-alias-double.h>.
19323 (fabs): Define using libm_alias_double.
19324 * sysdeps/m68k/coldfire/fpu/s_lrint.c: Include
19325 <libm-alias-double.h>.
19326 (lrint): Define using libm_alias_double.
19327 * sysdeps/m68k/coldfire/fpu/s_rint.c: Include
19328 <libm-alias-double.h>.
19329 (rint): Define using libm_alias_double.
19331 * sysdeps/m68k/m680x0/fpu/s_atan_template.c: New file.
19332 * sysdeps/m68k/m680x0/fpu/s_ceil_template.c: Likewise.
19333 * sysdeps/m68k/m680x0/fpu/s_cos_template.c: Likewise.
19334 * sysdeps/m68k/m680x0/fpu/s_expm1_template.c: Likewise.
19335 * sysdeps/m68k/m680x0/fpu/s_fabs_template.c: Likewise.
19336 * sysdeps/m68k/m680x0/fpu/s_floor_template.c: Likewise.
19337 * sysdeps/m68k/m680x0/fpu/s_frexp_template.c: Likewise.
19338 * sysdeps/m68k/m680x0/fpu/s_lrint_template.c: Likewise.
19339 * sysdeps/m68k/m680x0/fpu/s_modf_template.c: Likewise.
19340 * sysdeps/m68k/m680x0/fpu/s_nearbyint_template.c: Likewise.
19341 * sysdeps/m68k/m680x0/fpu/s_remquo_template.c: Likewise.
19342 * sysdeps/m68k/m680x0/fpu/s_rint_template.c: Likewise.
19343 * sysdeps/m68k/m680x0/fpu/s_sin_template.c: Likewise.
19344 * sysdeps/m68k/m680x0/fpu/s_sincos_template.c: Likewise.
19345 * sysdeps/m68k/m680x0/fpu/s_tan_template.c: Likewise.
19346 * sysdeps/m68k/m680x0/fpu/s_tanh_template.c: Likewise.
19347 * sysdeps/m68k/m680x0/fpu/s_trunc_template.c: Likewise.
19348 * sysdeps/m68k/m680x0/fpu/s_atan.c: Reimplement to use
19350 * sysdeps/m68k/m680x0/fpu/s_atanf.c: Likewise.
19351 * sysdeps/m68k/m680x0/fpu/s_atanl.c: Likewise.
19352 * sysdeps/m68k/m680x0/fpu/s_ceil.c: Reimplement to use
19354 * sysdeps/m68k/m680x0/fpu/s_ceilf.c: Likewise.
19355 * sysdeps/m68k/m680x0/fpu/s_ceill.c: Likewise.
19356 * sysdeps/m68k/m680x0/fpu/s_cos.c: Reimplement to use
19358 * sysdeps/m68k/m680x0/fpu/s_cosf.c: Likewise.
19359 * sysdeps/m68k/m680x0/fpu/s_cosl.c: Likewise.
19360 * sysdeps/m68k/m680x0/fpu/s_expm1.c: Reimplement to use
19361 s_expm1_template.c.
19362 * sysdeps/m68k/m680x0/fpu/s_expm1f.c: Likewise.
19363 * sysdeps/m68k/m680x0/fpu/s_expm1l.c: Likewise.
19364 * sysdeps/m68k/m680x0/fpu/s_fabs.c: Reimplement to use
19366 * sysdeps/m68k/m680x0/fpu/s_fabsf.c: Likewise.
19367 * sysdeps/m68k/m680x0/fpu/s_fabsl.c: Likewise.
19368 * sysdeps/m68k/m680x0/fpu/s_floor.c: Reimplement to use
19369 s_floor_template.c.
19370 * sysdeps/m68k/m680x0/fpu/s_floorf.c: Likewise.
19371 * sysdeps/m68k/m680x0/fpu/s_floorl.c: Likewise.
19372 * sysdeps/m68k/m680x0/fpu/s_frexp.c: Reimplement to use
19373 s_frexp_template.c.
19374 * sysdeps/m68k/m680x0/fpu/s_frexpf.c: Likewise.
19375 * sysdeps/m68k/m680x0/fpu/s_lrint.c: Reimplement to use
19376 s_lrint_template.c.
19377 * sysdeps/m68k/m680x0/fpu/s_lrintf.c: Likewise.
19378 * sysdeps/m68k/m680x0/fpu/s_lrintl.c: Likewise.
19379 * sysdeps/m68k/m680x0/fpu/s_modf.c: Reimplement to use
19381 * sysdeps/m68k/m680x0/fpu/s_modff.c: Likewise.
19382 * sysdeps/m68k/m680x0/fpu/s_modfl.c: Likewise.
19383 * sysdeps/m68k/m680x0/fpu/s_nearbyint.c: Reimplement to use
19384 s_nearbyint_template.c.
19385 * sysdeps/m68k/m680x0/fpu/s_nearbyintf.c: Likewise.
19386 * sysdeps/m68k/m680x0/fpu/s_nearbyintl.c: Likewise.
19387 * sysdeps/m68k/m680x0/fpu/s_remquo.c: Reimplement to use
19388 s_remquo_template.c.
19389 * sysdeps/m68k/m680x0/fpu/s_remquof.c: Likewise.
19390 * sysdeps/m68k/m680x0/fpu/s_remquol.c: Likewise.
19391 * sysdeps/m68k/m680x0/fpu/s_rint.c: Reimplement to use
19393 * sysdeps/m68k/m680x0/fpu/s_rintf.c: Likewise.
19394 * sysdeps/m68k/m680x0/fpu/s_rintl.c: Likewise.
19395 * sysdeps/m68k/m680x0/fpu/s_sin.c: Reimplement to use
19397 * sysdeps/m68k/m680x0/fpu/s_sinf.c: Likewise.
19398 * sysdeps/m68k/m680x0/fpu/s_sinl.c: Likewise.
19399 * sysdeps/m68k/m680x0/fpu/s_sincos.c: Reimplement to use
19400 s_sincos_template.c.
19401 * sysdeps/m68k/m680x0/fpu/s_sincosf.c: Likewise.
19402 * sysdeps/m68k/m680x0/fpu/s_sincosl.c: Likewise.
19403 * sysdeps/m68k/m680x0/fpu/s_tan.c: Reimplement to use
19405 * sysdeps/m68k/m680x0/fpu/s_tanf.c: Likewise.
19406 * sysdeps/m68k/m680x0/fpu/s_tanl.c: Likewise.
19407 * sysdeps/m68k/m680x0/fpu/s_tanh.c: Reimplement to use
19409 * sysdeps/m68k/m680x0/fpu/s_tanhf.c: Likewise.
19410 * sysdeps/m68k/m680x0/fpu/s_tanhl.c: Likewise.
19411 * sysdeps/m68k/m680x0/fpu/s_trunc.c: Reimplement to use
19412 s_trunc_template.c.
19413 * sysdeps/m68k/m680x0/fpu/s_truncf.c: Likewise.
19414 * sysdeps/m68k/m680x0/fpu/s_truncl.c: Likewise.
19415 * sysdeps/m68k/m680x0/fpu/s_significand.c: Reimplement based on
19416 s_atan.c instead of including s_atan.c.
19417 * sysdeps/m68k/m680x0/fpu/s_significandf.c: Reimplement based on
19418 s_atanf.c instead of including s_atanf.c.
19419 * sysdeps/m68k/m680x0/fpu/s_significandl.c: Reimplement based on
19420 s_atanl.c instead of including s_atanl.c.
19421 * sysdeps/m68k/m680x0/fpu/s_log1p.c: Include s_significand.c
19422 instead of s_atan.c.
19423 * sysdeps/m68k/m680x0/fpu/s_log1pf.c: Include s_significandf.c
19424 instead of s_atanf.c.
19425 * sysdeps/m68k/m680x0/fpu/s_log1pl.c: Include s_significandl.c
19426 instead of s_atanl.c.
19428 * scripts/update-copyrights: Do not handle intl/plural.c
19431 2017-11-30 Juro Bystricky <juro.bystricky@linux.intel.com>
19434 * configure.ac (BISON): Require to be present.
19435 * configure: Regenerated.
19436 * intl/Makefile (generated): Add plural.c.
19437 [$(BISON) != no]: Make code unconditional.
19438 (plural.c): Change rule to $(objpfx)plural.c.
19439 ($(objpfx)plural.o): Depend on $(objpfx)plural.c.
19440 * intl/plural.c: Remove.
19441 * manual/install.texi (Tools for Compilation): Document bison as
19443 * INSTALL: Regenerated.
19445 2017-11-30 Joseph Myers <joseph@codesourcery.com>
19447 * sysdeps/m68k/m680x0/fpu/s_llrint.c: Include
19448 <libm-alias-double.h>.
19449 (llrint): Define using libm_alias_double.
19450 * sysdeps/m68k/m680x0/fpu/s_llrintf.c: Include
19451 <libm-alias-float.h>.
19452 (llrintf): Define using libm_alias_float.
19453 * sysdeps/m68k/m680x0/fpu/s_llrintl.c: Include
19454 <libm-alias-ldouble.h>.
19455 (llrintl): Define using libm_alias_ldouble.
19457 * sysdeps/m68k/m680x0/fpu/s_ccosh_template.c (ccosh): Use
19458 declare_mgen_alias instead of weak_alias.
19459 * sysdeps/m68k/m680x0/fpu/s_cexp_template.c (cexp): Likewise.
19460 * sysdeps/m68k/m680x0/fpu/s_csin_template.c (csin): Likewise.
19461 * sysdeps/m68k/m680x0/fpu/s_csinh_template.c (csinh): Likewise.
19463 2017-11-30 Adhemerval Zanella <adhemerval.zanella@linaro.org>
19465 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines):
19467 * sysdeps/sparc/sparc64/multiarch/add_n-generic.S: New file.
19468 * sysdeps/sparc/sparc64/multiarch/add_n.c: Likewise.
19469 * sysdeps/sparc/sparc64/multiarch/add_n.S: Remove file.
19471 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines):
19472 Add submul_1-generic.
19473 * sysdeps/sparc/sparc64/multiarch/submul_1-generic.S: New file.
19474 * sysdeps/sparc/sparc64/multiarch/submul_1.c: Likewise.
19475 * sysdeps/sparc/sparc64/multiarch/submul_1.S: Remove file.
19477 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines):
19478 Add addmul_1-generic.
19479 * sysdeps/sparc/sparc64/multiarch/addmul_1-generic.S: New file.
19480 * sysdeps/sparc/sparc64/multiarch/addmul_1.c: Likewise.
19481 * sysdeps/sparc/sparc64/multiarch/addmul_1.S: Remove file.
19483 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines):
19485 * sysdeps/sparc/sparc64/multiarch/sub_n-generic.S: New file.
19486 * sysdeps/sparc/sparc64/multiarch/sub_n.c: Likewise.
19487 * sysdeps/sparc/sparc64/multiarch/sub_n.S: Remove file.
19489 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines):
19491 * sysdeps/sparc/sparc64/multiarch/mul_1-generic.S: New file.
19492 * sysdeps/sparc/sparc64/multiarch/mul_1.c: Likewise.
19493 * sysdeps/sparc/sparc64/multiarch/mul_1.S: Remove file.
19495 2017-11-30 Mike FABIAN <mfabian@redhat.com>
19497 According to CLDR, collation rules for Serbian and Bosnian
19498 should be the same as for Croatian.
19501 * localedata/Makefile: Add sr_RS.UTF-8 and bs_BA.UTF-8 to test-input
19502 and to the list of locales to be built for testing.
19503 * localedata/bs_BA.UTF-8.in: New file (same as hr_HR.UTF-8.in).
19504 * localedata/sr_RS.UTF-8.in: New file (same as hr_HR.UTF-8.in).
19505 * localedata/locales/bs_BA (LC_COLLATE): Use “copy "hr_HR"”.
19506 * localedata/locales/sr_RS (LC_COLLATE): Use “copy "hr_HR"”.
19508 2017-11-30 Mike FABIAN <mfabian@redhat.com>
19510 * localedata/locales/hr_HR (LC_COLLATE): Fix collation
19511 to make test case pass.
19512 * localedata/hr_HR.UTF-8.in: Add more test strings.
19514 2017-11-30 Mike FABIAN <mfabian@redhat.com>
19516 * stdlib/tst-strfmon_l.c: Fix testcase. Needed because of [BZ #10580]
19518 2017-11-30 Dragan Stanojević - Nevidljivi <invisible@hidden-city.net>
19520 * localedata/Makefile: Add hr_HR.UTF-8 to test-input and to
19521 the list of locales to built for testing.
19522 * localedata/hr_HR.UTF-8.in: New file.
19524 2017-11-30 Dragan Stanojević - Nevidljivi <invisible@hidden-city.net>
19527 * localedata/locales/hr_HR (LC_COLLATE): Base collation rules on
19529 * localedata/locales/hr_HR (LC_TIME): Sync month and day names with
19530 CLDR (except use ligatures for the digraphs, CLDR does not use
19531 the ligatures), add first_workday, some fixes in the date and time
19533 * localedata/locales/hr_HR (LC_CTYPE): Add transliteration rules
19535 * localedata/locales/hr_HR (LC_MONETARY): Change currency_symbol to
19536 lower case. p_cs_precedes and n_cs_precedes should be 0 instead of 1.
19537 Add int_p_cs_precedes and int_n_cs_precedes.
19538 * localedata/locales/hr_HR (LC_NUMERIC): Change thousands_sep to
19539 "<U202F>" (NARROW NO-BREAK SPACE) and grouping to 3;3 (Agrees with
19541 * localedata/locales/hr_HR (LC_TELEPHONE): Add tel_dom_fmt.
19542 * localedata/locales/hr_HR (LC_NAME): Add name_mr, name_mrs, and
19544 * localedata/locales/hr_HR (LC_ADDRESS): Add country_post, country_isbn,
19545 and lang_lib. Change postal_fmt.
19547 2017-11-30 H.J. Lu <hongjiu.lu@intel.com>
19549 * debug/longjmp_chk.c: Include <setjmpP.h> instead of
19551 * setjmp/longjmp.c: Include <setjmpP.h> instead of <setjmp.h>.
19552 (__libc_siglongjmp): Cast &env[0].__saved_mask to "sigset_t *".
19553 * setjmp/sigjmp.c: Include <setjmpP.h> instead of <setjmp.h>.
19554 (__sigjmp_save): Cast &env[0].__saved_mask to "sigset_t *".
19555 * sysdeps/generic/setjmpP.h: New file.
19556 * sysdeps/unix/sysv/linux/x86/jmp_buf-ssp.sym: Likewise.
19557 * sysdeps/unix/sysv/linux/x86/setjmpP.h: Likewise.
19558 * sysdeps/unix/sysv/linux/x86/tst-saved_mask-1.c: Likewise.
19559 * sysdeps/unix/sysv/linux/x86/Makefile (gen-as-const-headers):
19560 Add jmp_buf-ssp.sym.
19561 (tests): Add tst-saved_mask-1.
19563 2017-11-30 Arjun Shankar <arjun@redhat.com>
19567 * malloc/malloc.c (__libc_malloc): Use checked_request2size
19568 instead of request2size.
19570 2017-11-30 Joseph Myers <joseph@codesourcery.com>
19572 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S
19573 (__lllrint): Remove alias.
19574 (lllrint): Likewise.
19575 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S
19576 (__lllrintf): Likewise.
19577 (lllrintf): Likewise.
19579 * sysdeps/sparc/sparc32/fpu/s_copysignf.S: Include
19580 <libm-alias-float.h>.
19581 (copysignf): Define using libm_alias_float.
19582 * sysdeps/sparc/sparc32/fpu/s_fabsf.S: Include
19583 <libm-alias-float.h>.
19584 (fabsf): Define using libm_alias_float.
19585 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S:
19586 Include <libm-alias-float.h>.
19587 (copysignf): Define using libm_alias_float.
19588 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: Include
19589 <libm-alias-float.h>.
19590 (fabsf): Define using libm_alias_float.
19591 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf.c: Include
19592 <libm-alias-float.h>.
19593 (fdimf): Define using libm_alias_float.
19594 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf.c: Include
19595 <libm-alias-float.h>.
19596 (fmaf): Define using libm_alias_float.
19597 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S: Include
19598 <libm-alias-float.h>.
19599 (llrintf): Define using libm_alias_float.
19600 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.S:
19601 Include <libm-alias-float.h>.
19602 (nearbyintf): Define using libm_alias_float.
19603 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: Include
19604 <libm-alias-float.h>.
19605 (rintf): Define using libm_alias_float.
19606 * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrintf.S: Include
19607 <libm-alias-float.h>.
19608 (llrintf): Define using libm_alias_float.
19609 * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrintf.S: Include
19610 <libm-alias-float.h>.
19611 (lrintf): Define using libm_alias_float.
19612 * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyintf.S: Include
19613 <libm-alias-float.h>.
19614 (nearbyintf): Define using libm_alias_float.
19615 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: Include
19616 <libm-alias-float.h>.
19617 (rintf): Define using libm_alias_float.
19618 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.c: Include
19619 <libm-alias-float.h>.
19620 (ceilf): Define using libm_alias_float.
19621 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.c: Include
19622 <libm-alias-float.h>.
19623 (floorf): Define using libm_alias_float.
19624 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf.c: Include
19625 <libm-alias-float.h>.
19626 (fmaf): Define using libm_alias_float.
19627 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.c: Include
19628 <libm-alias-float.h>.
19629 (lrintf): Define using libm_alias_float.
19630 (llrintf): Likewise.
19631 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.c: Include
19632 <libm-alias-float.h>.
19633 (nearbyintf): Define using libm_alias_float.
19634 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.c: Include
19635 <libm-alias-float.h>.
19636 (rintf): Define using libm_alias_float.
19637 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.c: Include
19638 <libm-alias-float.h>.
19639 (truncf): Define using libm_alias_float.
19640 * sysdeps/sparc/sparc64/fpu/s_copysignf.S: Include
19641 <libm-alias-float.h>.
19642 (copysignf): Define using libm_alias_float.
19643 * sysdeps/sparc/sparc64/fpu/s_fabsf.c: Include
19644 <libm-alias-float.h>.
19645 (fabsf): Define using libm_alias_float.
19646 * sysdeps/sparc/sparc64/fpu/s_lrintf.S: Include
19647 <libm-alias-float.h>.
19648 (lrintf): Define using libm_alias_float.
19649 (llrintf): Likewise.
19650 * sysdeps/sparc/sparc64/fpu/s_nearbyintf.S: Include
19651 <libm-alias-float.h>.
19652 (nearbyintf): Define using libm_alias_float.
19653 * sysdeps/sparc/sparc64/fpu/s_rintf.S: Include
19654 <libm-alias-float.h>.
19655 (rintf): Define using libm_alias_float.
19657 2017-11-29 Joseph Myers <joseph@codesourcery.com>
19659 * sysdeps/sparc/sparc32/fpu/s_copysign.S: Include
19660 <libm-alias-double.h>.
19661 (copysign): Define using libm_alias_double.
19662 * sysdeps/sparc/sparc32/fpu/s_fabs.S: Include
19663 <libm-alias-double.h>.
19664 (fabs): Define using libm_alias_double.
19665 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S:
19666 Include <libm-alias-double.h>.
19667 (copysign): Define using libm_alias_double.
19668 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Include
19669 <libm-alias-double.h>.
19670 (fabs): Define using libm_alias_double.
19671 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.c: Include
19672 <libm-alias-double.h>.
19673 (fdim): Define using libm_alias_double.
19674 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c: Include
19675 <libm-alias-double.h>.
19676 (fma): Define using libm_alias_double.
19677 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: Include
19678 <libm-alias-double.h>.
19679 (llrint): Define using libm_alias_double.
19680 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.S:
19681 Include <libm-alias-double.h>.
19682 (nearbyint): Define using libm_alias_double.
19683 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Include
19684 <libm-alias-double.h>.
19685 (rint): Define using libm_alias_double.
19686 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S: Include
19687 <libm-alias-double.h>.
19688 (fabs): Define using libm_alias_double.
19689 * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: Include
19690 <libm-alias-double.h>.
19691 (llrint): Define using libm_alias_double.
19692 * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyint.S: Include
19693 <libm-alias-double.h>.
19694 (nearbyint): Define using libm_alias_double.
19695 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Include
19696 <libm-alias-double.h>.
19697 (rint): Define using libm_alias_double.
19698 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.c: Include
19699 <libm-alias-double.h>.
19700 (ceil): Define using libm_alias_double.
19701 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.c: Include
19702 <libm-alias-double.h>.
19703 (floor): Define using libm_alias_double.
19704 * sysdeps/sparc/sparc64/fpu/multiarch/s_fma.c: Include
19705 <libm-alias-double.h>.
19706 (fma): Define using libm_alias_double.
19707 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.c: Include
19708 <libm-alias-double.h>.
19709 (lrint): Define using libm_alias_double.
19710 (llrint): Likewise.
19711 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.c: Include
19712 <libm-alias-double.h>.
19713 (nearbyint): Define using libm_alias_double.
19714 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.c: Include
19715 <libm-alias-double.h>.
19716 (rint): Define using libm_alias_double.
19717 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.c: Include
19718 <libm-alias-double.h>.
19719 (trunc): Define using libm_alias_double.
19720 * sysdeps/sparc/sparc64/fpu/s_copysign.S: Include
19721 <libm-alias-double.h>.
19722 (copysign): Define using libm_alias_double.
19723 * sysdeps/sparc/sparc64/fpu/s_fabs.c: Include
19724 <libm-alias-double.h>.
19725 (fabs): Define using libm_alias_double.
19726 * sysdeps/sparc/sparc64/fpu/s_lrint.S: Include
19727 <libm-alias-double.h>.
19728 (lrint): Define using libm_alias_double.
19729 (llrint): Likewise.
19730 * sysdeps/sparc/sparc64/fpu/s_nearbyint.S: Include
19731 <libm-alias-double.h>.
19732 (nearbyint): Define using libm_alias_double.
19733 * sysdeps/sparc/sparc64/fpu/s_rint.S: Include
19734 <libm-alias-double.h>.
19735 (rint): Define using libm_alias_double.
19738 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S: Include
19740 (fabsl): Define as compat symbol at version GLIBC_2_0 for libm.
19742 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
19743 SPARC --disable-multi-arch glibc variants.
19745 * sysdeps/x86_64/fpu/multiarch/e_exp2f.c: Include
19746 <libm-alias-float.h>.
19747 (exp2f): Define using libm_alias_float, or libm_alias_float_other
19749 * sysdeps/x86_64/fpu/multiarch/e_expf.c: Include
19750 <libm-alias-float.h>.
19751 (exp2f): Define using libm_alias_float, or libm_alias_float_other
19753 * sysdeps/x86_64/fpu/multiarch/e_log2f.c: Include
19754 <libm-alias-float.h>.
19755 (exp2f): Define using libm_alias_float, or libm_alias_float_other
19757 * sysdeps/x86_64/fpu/multiarch/e_logf.c: Include
19758 <libm-alias-float.h>.
19759 (exp2f): Define using libm_alias_float, or libm_alias_float_other
19761 * sysdeps/x86_64/fpu/multiarch/e_powf.c: Include
19762 <libm-alias-float.h>.
19763 (exp2f): Define using libm_alias_float, or libm_alias_float_other
19765 * sysdeps/x86_64/fpu/multiarch/s_ceilf.c: Include
19766 <libm-alias-float.h>.
19767 (ceilf): Define using libm_alias_float.
19768 * sysdeps/x86_64/fpu/multiarch/s_floorf.c: Include
19769 <libm-alias-float.h>.
19770 (floorf): Define using libm_alias_float.
19771 * sysdeps/x86_64/fpu/multiarch/s_fmaf.c: Include
19772 <libm-alias-float.h>.
19773 (fmaf): Define using libm_alias_float.
19774 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.c: Include
19775 <libm-alias-float.h>.
19776 (nearbyintf): Define using libm_alias_float.
19777 * sysdeps/x86_64/fpu/multiarch/s_rintf.c: Include
19778 <libm-alias-float.h>.
19779 (rintf): Define using libm_alias_float.
19780 * sysdeps/x86_64/fpu/multiarch/s_truncf.c: Include
19781 <libm-alias-float.h>.
19782 (truncf): Define using libm_alias_float.
19783 * sysdeps/x86_64/fpu/s_copysignf.S: Include <libm-alias-float.h>.
19784 (copysignf): Define using libm_alias_float.
19785 * sysdeps/x86_64/fpu/s_cosf.S: Include <libm-alias-float.h>.
19786 (cosf): Define using libm_alias_float.
19787 * sysdeps/x86_64/fpu/s_fabsf.c: Include <libm-alias-float.h>.
19788 (fabsf): Define using libm_alias_float.
19789 * sysdeps/x86_64/fpu/s_fmaxf.S: Include <libm-alias-float.h>.
19790 (fmaxf): Define using libm_alias_float.
19791 * sysdeps/x86_64/fpu/s_fminf.S: Include <libm-alias-float.h>.
19792 (fminf): Define using libm_alias_float.
19793 * sysdeps/x86_64/fpu/s_llrintf.S: Include <libm-alias-float.h>.
19794 (llrintf): Define using libm_alias_float.
19795 [!__ILP32__] (lrintf): Likewise.
19796 * sysdeps/x86_64/fpu/s_sincosf.S: Include <libm-alias-float.h>.
19797 (sincosf): Define using libm_alias_float.
19798 * sysdeps/x86_64/fpu/s_sinf.S: Include <libm-alias-float.h>.
19799 (sinf): Define using libm_alias_float.
19800 * sysdeps/x86_64/x32/fpu/s_lrintf.S: Include <libm-alias-float.h>.
19801 (lrintf): Define using libm_alias_float.
19803 * sysdeps/x86_64/fpu/multiarch/s_atan.c: Include
19804 <libm-alias-double.h>.
19805 (atan): Define using libm_alias_double.
19806 * sysdeps/x86_64/fpu/multiarch/s_ceil.c: Include
19807 <libm-alias-double.h>.
19808 (ceil): Define using libm_alias_double.
19809 * sysdeps/x86_64/fpu/multiarch/s_floor.c: Include
19810 <libm-alias-double.h>.
19811 (floor): Define using libm_alias_double.
19812 * sysdeps/x86_64/fpu/multiarch/s_fma.c: Include
19813 <libm-alias-double.h>.
19814 (fma): Define using libm_alias_double.
19815 * sysdeps/x86_64/fpu/multiarch/s_nearbyint.c: Include
19816 <libm-alias-double.h>.
19817 (nearbyint): Define using libm_alias_double.
19818 * sysdeps/x86_64/fpu/multiarch/s_rint.c: Include
19819 <libm-alias-double.h>.
19820 (rint): Define using libm_alias_double.
19821 * sysdeps/x86_64/fpu/multiarch/s_sin.c: Include
19822 <libm-alias-double.h>.
19823 (sin): Define using libm_alias_double.
19825 * sysdeps/x86_64/fpu/multiarch/s_tan.c: Include
19826 <libm-alias-double.h>.
19827 (tan): Define using libm_alias_double.
19828 * sysdeps/x86_64/fpu/multiarch/s_trunc.c: Include
19829 <libm-alias-double.h>.
19830 (trunc): Define using libm_alias_double.
19831 * sysdeps/x86_64/fpu/s_copysign.S: Include <libm-alias-double.h>.
19832 (copysign): Define using libm_alias_double.
19833 * sysdeps/x86_64/fpu/s_fabs.c: Include <libm-alias-double.h>.
19834 (fabs): Define using libm_alias_double.
19835 * sysdeps/x86_64/fpu/s_fmax.S: Include <libm-alias-double.h>.
19836 (fmax): Define using libm_alias_double.
19837 * sysdeps/x86_64/fpu/s_fmin.S: Include <libm-alias-double.h>.
19838 (fmin): Define using libm_alias_double.
19839 * sysdeps/x86_64/fpu/s_llrint.S: Include <libm-alias-double.h>.
19840 (llrint): Define using libm_alias_double.
19841 [!__ILP32__] (lrint): Likewise.
19842 * sysdeps/x86_64/x32/fpu/s_lrint.S: Include <libm-alias-double.h>.
19843 (lrint): Define using libm_alias_double.
19845 2017-11-29 Adhemerval Zanella <adhemerval.zanella@linaro.org>
19847 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile
19848 (libm-sysdep_routines): Add s_rintf-generic and s_rint-generic
19850 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint-generic.S: New file.
19851 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.c: Likewise.
19852 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf-generic.S: Likewise.
19853 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.c: Likewise.
19854 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: Remove file.
19855 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: Likewise.
19857 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile
19858 (libm-sysdep_routines): Add s_lrint-generic and s_lrintf-generic
19860 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint-generic.S: New file.
19861 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.c: Likewise.
19862 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf-generic.S: Likewise.
19863 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.c: Likewise.
19864 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: Remove file.
19865 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: Likewise.
19867 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile
19868 (libm-sysdep_routines): Add s_nearbyint-generic and
19869 s_nearbyintf-generic objects.
19870 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint-generic.S: New file.
19871 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.c: Likewise.
19872 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf-generic.S: Likewise.
19873 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.c: Likewise.
19874 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.S: Remove file.
19875 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.S: Likewise.
19877 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile (sysdeps_calls):
19878 Add s_finitef-generic and s_finite-generic objects.
19879 * sysdeps/sparc/sparc64/fpu/multiarch/s_finite-generic.S: New file.
19880 * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.c: Likewise.
19881 * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef-generic.S: Likewise.
19882 * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.c: Likewise.
19883 * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: Remove file.
19884 * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: Remove file.
19886 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile (sysdeps_calls):
19887 Add s_isinff-generic and s_isinf-generic objects.
19888 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf-generic.S: New file.
19889 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.c: Likewise.
19890 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff-generic.S: Likewise.
19891 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.c: Likewise.
19892 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: Remove file.
19893 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: Likewise.
19895 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile (sysdeps_calls):
19896 Add s_isnanf-generic and s_isnan-generic objects.
19897 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan-generic.S: New file.
19898 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf-generic.S: Likewise.
19899 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.c: Likewise.
19900 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.c: Likewise.
19901 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: Remove file.
19902 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: Likewise.
19904 * sysdeps/sparc/sparc-ifunc.h (sparc_libm_ifunc_redirected): New
19906 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile (sysdep_calls): New
19908 (sysdep_routines): Use sysdep_calls as base.
19909 (libm-sysdep_routines): Add generic rule for symbols shared with
19910 libc. Add s_signbit-generic and s_signbitf-generic objects.
19911 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.c: New file.
19912 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.c: Likewise.
19913 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit-generic.S: Likewise.
19914 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf-generic.S: Likewise.
19915 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: Remove file.
19916 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: Likewise.
19918 2017-11-29 Joseph Myers <joseph@codesourcery.com>
19920 * sysdeps/ia64/fpu/libm-symbols.h: Include <libm-alias-float.h>.
19921 * sysdeps/ia64/fpu/e_acosf.S (acosf): Use libm_alias_float_other.
19922 * sysdeps/ia64/fpu/e_acoshf.S (acoshf): Likewise.
19923 * sysdeps/ia64/fpu/e_asinf.S (asinf): Likewise.
19924 * sysdeps/ia64/fpu/e_atan2f.S (atan2f): Likewise.
19925 * sysdeps/ia64/fpu/e_atanhf.S (atanhf): Likewise.
19926 * sysdeps/ia64/fpu/e_coshf.S (coshf): Likewise.
19927 * sysdeps/ia64/fpu/e_exp10f.S (exp10f): Likewise.
19928 * sysdeps/ia64/fpu/e_exp2f.S (exp2f): Likewise.
19929 * sysdeps/ia64/fpu/e_expf.S (expf): Likewise.
19930 * sysdeps/ia64/fpu/e_fmodf.S (fmodf): Likewise.
19931 * sysdeps/ia64/fpu/e_hypotf.S (hypotf): Likewise.
19932 * sysdeps/ia64/fpu/e_lgammaf_r.c (lgammaf_r): Define using
19933 libm_alias_float_r.
19934 * sysdeps/ia64/fpu/e_log2f.S (log2f): Use libm_alias_float_other.
19935 * sysdeps/ia64/fpu/e_logf.S (log10f): Likewise.
19937 * sysdeps/ia64/fpu/e_powf.S (powf): Likewise.
19938 * sysdeps/ia64/fpu/e_remainderf.S (remainderf): Likewise.
19939 * sysdeps/ia64/fpu/e_sinhf.S (sinhf): Likewise.
19940 * sysdeps/ia64/fpu/e_sqrtf.S (sqrtf): Likewise.
19941 * sysdeps/ia64/fpu/libm_sincosf.S (sincosf): Likewise.
19942 * sysdeps/ia64/fpu/s_asinhf.S (asinhf): Likewise.
19943 * sysdeps/ia64/fpu/s_atanf.S (atanf): Likewise.
19944 * sysdeps/ia64/fpu/s_cbrtf.S (cbrtf): Likewise.
19945 * sysdeps/ia64/fpu/s_ceilf.S (ceilf): Likewise.
19946 * sysdeps/ia64/fpu/s_copysign.S (copysignf): Define using
19948 * sysdeps/ia64/fpu/s_cosf.S (sinf): Use libm_alias_float_other.
19950 * sysdeps/ia64/fpu/s_erfcf.S (erfcf): Likewise.
19951 * sysdeps/ia64/fpu/s_erff.S (erff): Likewise.
19952 * sysdeps/ia64/fpu/s_expm1f.S (expm1f): Likewise.
19953 * sysdeps/ia64/fpu/s_fabsf.S (fabsf): Likewise.
19954 * sysdeps/ia64/fpu/s_fdimf.S (fdimf): Likewise.
19955 * sysdeps/ia64/fpu/s_floorf.S (floorf): Likewise.
19956 * sysdeps/ia64/fpu/s_fmaf.S (fmaf): Likewise.
19957 * sysdeps/ia64/fpu/s_fmaxf.S (fmaxf): Likewise.
19958 * sysdeps/ia64/fpu/s_frexpf.c (frexpf): Likewise.
19959 * sysdeps/ia64/fpu/s_ldexpf.c (ldexpf): Likewise.
19960 * sysdeps/ia64/fpu/s_log1pf.S (log1pf): Likewise.
19961 * sysdeps/ia64/fpu/s_logbf.S (logbf): Likewise.
19962 * sysdeps/ia64/fpu/s_modff.S (modff): Likewise.
19963 * sysdeps/ia64/fpu/s_nearbyintf.S (nearbyintf): Likewise.
19964 * sysdeps/ia64/fpu/s_nextafterf.S (nextafterf): Likewise.
19965 * sysdeps/ia64/fpu/s_rintf.S (rintf): Likewise.
19966 * sysdeps/ia64/fpu/s_roundf.S (roundf): Likewise.
19967 * sysdeps/ia64/fpu/s_scalblnf.c (scalblnf): Likewise.
19968 * sysdeps/ia64/fpu/s_scalbnf.c (scalbnf): Define using
19970 * sysdeps/ia64/fpu/s_tanf.S (tanf): Use libm_alias_float_other.
19971 * sysdeps/ia64/fpu/s_tanhf.S (tanhf): Likewise.
19972 * sysdeps/ia64/fpu/s_truncf.S (truncf): Likewise.
19973 * sysdeps/ia64/fpu/w_lgammaf_main.c
19974 [BUILD_LGAMMA && !USE_AS_COMPAT] (lgammaf): Likewise.
19975 * sysdeps/ia64/fpu/w_tgammaf_compat.S (tgammaf): Likewise.
19977 2017-11-28 Mike FABIAN <mfabian@redhat.com>
19978 Alexandre Oliva <aoliva@redhat.com>
19981 * Makefile: add fr_CA.UTF-8 to test-input and LOCALES.
19982 * localedata/fr_CA.UTF-8.in: New file with test data for backward
19984 * localedata/fr_FR.UTF-8.in: Fix test data for forward accents
19986 * localedata/locales/cs_CZ (LC_COLLATE): Remove “define DIACRIT_FORWARD”
19987 * localedata/locales/de_DE (LC_COLLATE): Likewise.
19988 * localedata/locales/hu_HU (LC_COLLATE): Likewise.
19989 * localedata/locales/lb_LU (LC_COLLATE): Likewise.
19990 * localedata/locales/yuw_PG (LC_COLLATE): Likewise.
19991 * localedata/locales/fr_CA (LC_COLLATE): Add “define DIACRIT_BACKWARD”
19992 * localedata/locales/iso14651_t1_common: Use “ifdef DIACRIT_FORWARD”
19993 instead of “ifdef DIACRIT_BACKWARD”.
19995 2017-11-29 Adhemerval Zanella <adhemerval.zanella@linaro.org>
19997 * config.h.in (HAVE_AS_VIS3_SUPPORT): Remove check for VIS3 support.
19998 * sysdeps/sparc/configure.ac (HAVE_AS_VIS3_SUPPORT): Likewise.
19999 * sysdeps//sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.c: Likewise.
20000 * sysdeps//sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf.c: Likewise.
20001 * sysdeps//sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c: Likewise.
20002 * sysdeps//sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf.c: Likewise.
20003 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.c: Likewise.
20004 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.c: Likewise.
20005 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.c: Likewise.
20006 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.c: Likewise.
20007 * sysdeps/sparc/sparc64/fpu/multiarch/s_fma.c: Likewise.
20008 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf.c: Likewise.
20009 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.c: Likewise.
20010 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.c: Likewise.
20011 * sysdeps/sparc/sparc-ifunc.h [!HAVE_AS_VIS3_SUPPORT]
20012 (SPARC_ASM_VIS3_IFUNC, SPARC_ASM_VIS3_VIS2_IFUNC): Remove macros.
20013 * sysdeps/sparc/sparc32/sparcv9/Makefile [$(have-as-vis3) != yes]
20014 (ASFLAGS.o, ASFLAGS-.os, ASFLAGS-.op, ASFLAGS-.oS): Remove rules.
20015 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
20016 ($(have-as-vis3) == yes): Remove conditional.
20017 * sysdeps/sparc/sparc64/Makefile (($(have-as-vis3) == yes)):
20019 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-generic.c: New
20021 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf-generic.c: New
20023 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma-generic.c: New
20025 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf-generic.c: New
20027 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-generic.c: New file.
20028 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-generic.c: New file.
20029 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-generic.c: New file.
20030 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-generic.c: New file.
20031 * sysdeps/sparc/sparc64/fpu/multiarch/s_fma-generic.c: New file.
20032 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf-generic.c: New file.
20033 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc-generic.c: New file.
20034 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf-generic.c: New file.
20036 2017-11-29 Joseph Myers <joseph@codesourcery.com>
20038 * sysdeps/ia64/fpu/libm-symbols.h: Include <libm-alias-double.h>.
20039 * sysdeps/ia64/fpu/e_acos.S (acos): Use libm_alias_double_other.
20040 * sysdeps/ia64/fpu/e_acosh.S (acosh): Likewise.
20041 * sysdeps/ia64/fpu/e_asin.S (asin): Likewise.
20042 * sysdeps/ia64/fpu/e_atan2.S (atan2): Likewise.
20043 * sysdeps/ia64/fpu/e_atanh.S (atanh): Likewise.
20044 * sysdeps/ia64/fpu/e_cosh.S (cosh): Likewise.
20045 * sysdeps/ia64/fpu/e_exp.S (exp): Likewise.
20046 * sysdeps/ia64/fpu/e_exp10.S (exp10): Likewise.
20047 * sysdeps/ia64/fpu/e_exp2.S (exp2): Likewise.
20048 * sysdeps/ia64/fpu/e_fmod.S (fmod): Likewise.
20049 * sysdeps/ia64/fpu/e_hypot.S (hypot): Likewise.
20050 * sysdeps/ia64/fpu/e_lgamma_r.c (lgamma_r): Define using
20051 libm_alias_double_r.
20052 * sysdeps/ia64/fpu/e_log.S (log10): Use libm_alias_double_other.
20054 * sysdeps/ia64/fpu/e_log2.S (log2): Likewise.
20055 * sysdeps/ia64/fpu/e_pow.S (pow): Likewise.
20056 * sysdeps/ia64/fpu/e_remainder.S (remainder): Likewise.
20057 * sysdeps/ia64/fpu/e_sinh.S (sinh): Likewise.
20058 * sysdeps/ia64/fpu/e_sqrt.S (sqrt): Likewise.
20059 * sysdeps/ia64/fpu/libm_sincos.S (sincos): Likewise.
20060 * sysdeps/ia64/fpu/s_asinh.S (asinh): Likewise.
20061 * sysdeps/ia64/fpu/s_atan.S (atan): Likewise.
20062 * sysdeps/ia64/fpu/s_cbrt.S (cbrt): Likewise.
20063 * sysdeps/ia64/fpu/s_ceil.S (ceil): Likewise.
20064 * sysdeps/ia64/fpu/s_copysign.S (copysign): Define using
20066 * sysdeps/ia64/fpu/s_cos.S (sin): Use libm_alias_double_other.
20068 * sysdeps/ia64/fpu/s_erf.S (erf): Likewise.
20069 * sysdeps/ia64/fpu/s_erfc.S (erfc): Likewise.
20070 * sysdeps/ia64/fpu/s_expm1.S (expm1): Likewise.
20071 * sysdeps/ia64/fpu/s_fabs.S (fabs): Likewise.
20072 * sysdeps/ia64/fpu/s_fdim.S (fdim): Likewise.
20073 * sysdeps/ia64/fpu/s_floor.S (floor): Likewise.
20074 * sysdeps/ia64/fpu/s_fma.S (fma): Likewise.
20075 * sysdeps/ia64/fpu/s_fmax.S (fmax): Likewise.
20076 * sysdeps/ia64/fpu/s_frexp.c (frexp): Likewise.
20077 * sysdeps/ia64/fpu/s_ldexp.c (ldexp): Likewise.
20078 * sysdeps/ia64/fpu/s_log1p.S (log1p): Likewise.
20079 * sysdeps/ia64/fpu/s_logb.S (logb): Likewise.
20080 * sysdeps/ia64/fpu/s_modf.S (modf): Likewise.
20081 * sysdeps/ia64/fpu/s_nearbyint.S (nearbyint): Likewise.
20082 * sysdeps/ia64/fpu/s_nextafter.S (nextafter): Likewise.
20083 * sysdeps/ia64/fpu/s_rint.S (rint): Likewise.
20084 * sysdeps/ia64/fpu/s_round.S (round): Likewise.
20085 * sysdeps/ia64/fpu/s_scalbn.c (scalbn): Define using
20087 * sysdeps/ia64/fpu/s_tan.S (tan): Use libm_alias_double_other.
20088 * sysdeps/ia64/fpu/s_tanh.S (tanh): Likewise.
20089 * sysdeps/ia64/fpu/s_trunc.S (trunc): Likewise.
20090 * sysdeps/ia64/fpu/w_lgamma_main.c
20091 [BUILD_LGAMMA && !USE_AS_COMPAT] (lgamma): Likewise.
20092 * sysdeps/ia64/fpu/w_tgamma_compat.S (tgamma): Likewise.
20094 2017-11-28 John David Anglin <danglin@gcc.gnu.org>
20096 * sysdeps/hppa/start.S (_start): Check PIC instead of SHARED. Load
20097 address of $global$ into %dp register earlier. Use pc-relative
20098 instruction sequence for PIC case.
20100 2017-11-28 Joseph Myers <joseph@codesourcery.com>
20102 * sysdeps/i386/fpu/s_asinhf.S: Include <libm-alias-float.h>.
20103 (asinhf): Define using libm_alias_float.
20104 * sysdeps/i386/fpu/s_atanf.S: Include <libm-alias-float.h>.
20105 (atanf): Define using libm_alias_float.
20106 * sysdeps/i386/fpu/s_cbrtf.S: Include <libm-alias-float.h>.
20107 (cbrtf): Define using libm_alias_float.
20108 * sysdeps/i386/fpu/s_ceilf.S: Include <libm-alias-float.h>.
20109 (ceilf): Define using libm_alias_float.
20110 * sysdeps/i386/fpu/s_copysignf.S: Include <libm-alias-float.h>.
20111 (copysignf): Define using libm_alias_float.
20112 * sysdeps/i386/fpu/s_expm1f.S: Include <libm-alias-float.h>.
20113 (expm1f): Define using libm_alias_float.
20114 * sysdeps/i386/fpu/s_fabsf.S: Include <libm-alias-float.h>.
20115 (fabsf): Define using libm_alias_float.
20116 * sysdeps/i386/fpu/s_floorf.S: Include <libm-alias-float.h>.
20117 (floorf): Define using libm_alias_float.
20118 * sysdeps/i386/fpu/s_fmaxf.S: Include <libm-alias-float.h>.
20119 (fmaxf): Define using libm_alias_float.
20120 * sysdeps/i386/fpu/s_fminf.S: Include <libm-alias-float.h>.
20121 (fminf): Define using libm_alias_float.
20122 * sysdeps/i386/fpu/s_frexpf.S: Include <libm-alias-float.h>.
20123 (frexpf): Define using libm_alias_float.
20124 * sysdeps/i386/fpu/s_llrintf.S: Include <libm-alias-float.h>.
20125 (llrintf): Define using libm_alias_float.
20126 * sysdeps/i386/fpu/s_logbf.S: Include <libm-alias-float.h>.
20127 (logbf): Define using libm_alias_float.
20128 * sysdeps/i386/fpu/s_lrintf.S: Include <libm-alias-float.h>.
20129 (lrintf): Define using libm_alias_float.
20130 * sysdeps/i386/fpu/s_nearbyintf.S: Include <libm-alias-float.h>.
20131 (nearbyintf): Define using libm_alias_float.
20132 * sysdeps/i386/fpu/s_remquof.S: Include <libm-alias-float.h>.
20133 (remquof): Define using libm_alias_float.
20134 * sysdeps/i386/fpu/s_rintf.S: Include <libm-alias-float.h>.
20135 (rintf): Define using libm_alias_float.
20136 * sysdeps/i386/fpu/s_truncf.S: Include <libm-alias-float.h>.
20137 (truncf): Define using libm_alias_float.
20138 * sysdeps/i386/i686/fpu/multiarch/e_exp2f.c: Include
20139 <libm-alias-float.h>.
20140 (exp2f): Define using libm_alias_float, or libm_alias_float_other
20142 * sysdeps/i386/i686/fpu/multiarch/e_expf.c: Include
20143 <libm-alias-float.h>.
20144 (expf): Define using libm_alias_float, or libm_alias_float_other
20146 * sysdeps/i386/i686/fpu/multiarch/e_log2f.c: Include
20147 <libm-alias-float.h>.
20148 (log2f): Define using libm_alias_float, or libm_alias_float_other
20150 * sysdeps/i386/i686/fpu/multiarch/e_logf.c: Include
20151 <libm-alias-float.h>.
20152 (logf): Define using libm_alias_float, or libm_alias_float_other
20154 * sysdeps/i386/i686/fpu/multiarch/e_powf.c: Include
20155 <libm-alias-float.h>.
20156 (powf): Define using libm_alias_float, or libm_alias_float_other
20158 * sysdeps/i386/i686/fpu/multiarch/s_cosf.c: Include
20159 <libm-alias-float.h>.
20160 (cosf): Define using libm_alias_float.
20161 * sysdeps/i386/i686/fpu/multiarch/s_sincosf.c: Include
20162 <libm-alias-float.h>.
20163 (sincosf): Define using libm_alias_float.
20164 * sysdeps/i386/i686/fpu/multiarch/s_sinf.c: Include
20165 <libm-alias-float.h>.
20166 (sinf): Define using libm_alias_float.
20167 * sysdeps/i386/i686/fpu/s_fmaxf.S: Include <libm-alias-float.h>.
20168 (fmaxf): Define using libm_alias_float.
20169 * sysdeps/i386/i686/fpu/s_fminf.S: Include <libm-alias-float.h>.
20170 (fminf): Define using libm_alias_float.
20171 * sysdeps/i386/i686/multiarch/s_fmaf.c: Include
20172 <libm-alias-float.h>.
20173 (fmaf): Define using libm_alias_float.
20175 * sysdeps/i386/fpu/s_asinh.S: Include <libm-alias-double.h>.
20176 (asinh): Define using libm_alias_double.
20177 * sysdeps/i386/fpu/s_atan.S: Include <libm-alias-double.h>.
20178 (atan): Define using libm_alias_double.
20179 * sysdeps/i386/fpu/s_cbrt.S: Include <libm-alias-double.h>.
20180 (cbrt): Define using libm_alias_double.
20181 * sysdeps/i386/fpu/s_ceil.S: Include <libm-alias-double.h>.
20182 (ceil): Define using libm_alias_double.
20183 * sysdeps/i386/fpu/s_copysign.S: Include <libm-alias-double.h>.
20184 (copysign): Define using libm_alias_double.
20185 * sysdeps/i386/fpu/s_expm1.S: Include <libm-alias-double.h>.
20186 (expm1): Define using libm_alias_double.
20187 * sysdeps/i386/fpu/s_fabs.S: Include <libm-alias-double.h>.
20188 (fabs): Define using libm_alias_double.
20189 * sysdeps/i386/fpu/s_fdim.c: Include <libm-alias-double.h>.
20190 (fdim): Define using libm_alias_double.
20191 * sysdeps/i386/fpu/s_floor.S: Include <libm-alias-double.h>.
20192 (floor): Define using libm_alias_double.
20193 * sysdeps/i386/fpu/s_fmax.S: Include <libm-alias-double.h>.
20194 (fmax): Define using libm_alias_double.
20195 * sysdeps/i386/fpu/s_fmin.S: Include <libm-alias-double.h>.
20196 (fmin): Define using libm_alias_double.
20197 * sysdeps/i386/fpu/s_frexp.S: Include <libm-alias-double.h>.
20198 (frexp): Define using libm_alias_double.
20199 * sysdeps/i386/fpu/s_llrint.S: Include <libm-alias-double.h>.
20200 (llrint): Define using libm_alias_double.
20201 * sysdeps/i386/fpu/s_logb.S: Include <libm-alias-double.h>.
20202 (logb): Define using libm_alias_double.
20203 * sysdeps/i386/fpu/s_lrint.S: Include <libm-alias-double.h>.
20204 (lrint): Define using libm_alias_double.
20205 * sysdeps/i386/fpu/s_nearbyint.S: Include <libm-alias-double.h>.
20206 (nearbyint): Define using libm_alias_double.
20207 * sysdeps/i386/fpu/s_remquo.S: Include <libm-alias-double.h>.
20208 (remquo): Define using libm_alias_double.
20209 * sysdeps/i386/fpu/s_rint.S: Include <libm-alias-double.h>.
20210 (rint): Define using libm_alias_double.
20211 * sysdeps/i386/fpu/s_trunc.S: Include <libm-alias-double.h>.
20212 (trunc): Define using libm_alias_double.
20213 * sysdeps/i386/i686/fpu/s_fmax.S: Include <libm-alias-double.h>.
20214 (fmax): Define using libm_alias_double.
20215 * sysdeps/i386/i686/fpu/s_fmin.S: Include <libm-alias-double.h>.
20216 (fmin): Define using libm_alias_double.
20217 * sysdeps/i386/i686/multiarch/s_fma.c: Include <libm-alias-double.h>.
20218 (fma): Define using libm_alias_double.
20220 2017-11-28 H.J. Lu <hongjiu.lu@intel.com>
20223 * elf/dl-hwcaps.c (ROUND): Removed.
20224 (_dl_important_hwcaps): Replace ROUND with ELF_NOTE_DESC_OFFSET
20225 and ELF_NOTE_NEXT_OFFSET.
20226 * elf/dl-load.c (ROUND): Removed.
20227 (open_verify): Replace ROUND with ELF_NOTE_NEXT_OFFSET.
20228 * elf/readelflib.c (ROUND): Removed.
20229 (process_elf_file): Replace ROUND with ELF_NOTE_NEXT_OFFSET.
20230 * include/elf.h [!_ISOMAC]: Include <libc-pointer-arith.h>.
20231 [!_ISOMAC] (ELF_NOTE_DESC_OFFSET): New.
20232 [!_ISOMAC] (ELF_NOTE_NEXT_OFFSET): Likewise.
20234 2017-11-28 Joseph Myers <joseph@codesourcery.com>
20236 * sysdeps/s390/fpu/s_fmaf.c: Include <libm-alias-float.h>.
20237 [!__fmaf] (fmaf): Define using libm_alias_float.
20239 * sysdeps/s390/fpu/s_fma.c: Include <libm-alias-double.h>.
20240 [!__fma] (fma): Define using libm_alias_double.
20241 * sysdeps/unix/sysv/linux/s390/fpu/s_fma.c: Remove.
20243 2017-11-28 Mike FABIAN <mfabian@redhat.com>
20246 * localedata/locales/cs_CZ (LC_COLLATE): Use “copy "iso14651_t1"”
20247 and implement the collation rules for cs from CLDR on top of that.
20248 * Makefile: Add cs_CZ.UTF-8 to test-input.
20249 * cs_CZ.UTF-8.in: New file with test data to test the Czech sorting.
20251 2017-11-28 Siddhesh Poyarekar <siddhesh@sourceware.org>
20253 * localedata/Makefile (LOCALES): Remove duplicate cs_CZ.UTF-8.
20255 2017-11-28 Victor Rodriguez <victor.rodriguez.bahena@intel.com>
20256 Icarus Sparry <icarus.w.sparry@intel.com>
20258 * benchtests/Makefile:Add BENCHSET to allow subsets of
20259 benchmarks to be run.
20260 * benchtests/README: Add documentation for: Running subsets of
20263 2017-11-28 Victor Rodriguez <victor.rodriguez.bahena@intel.com>
20265 * benchtests/scripts/benchout.schema.json: Fix regex to accept a wider
20266 range of tests names.
20268 * benchtests/scripts/benchout.schema.json: Add throughput as accepted
20269 result from property and remove "max", min" and "mean" from
20270 required properties based on benchtests/bench-skeleton.c.
20272 2017-11-28 Florian Weimer <fweimer@redhat.com>
20275 Turn posix/tst-getaddrinfo4, posix/tst-getaddrinfo5 into xtests
20276 due to Internet requirement.
20277 * posix/Makefile (tests): Remove tst-getaddrinfo4,
20279 (xtests): Add tst-getaddrinfo4, tst-getaddrinfo5.
20281 2017-11-28 Adhemerval Zanella <adhemerval.zanella@linaro.org>
20283 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile
20284 [$(subdir) = string] (sysdep_routines): Add memset-ultra1.
20285 * sysdeps/sparc/sparc64/multiarch/Makefile [$(subdir) = string]
20286 (sysdep_routines): Add memset-ultra1.
20287 * sysdeps/sparc/sparc32/sparcv9/multiarch/memset-ultra1.S: New
20289 * sysdeps/sparc/sparc32/sparcv9/multiarch/memset.c: Likewise.
20290 * sysdeps/sparc/sparc32/sparcv9/multiarch/bzero.c: Likewise.
20291 * sysdeps/sparc/sparc64/multiarch/ifunc-memset.h: Likewise.
20292 * sysdeps/sparc/sparc64/multiarch/memset-ultra1.S: Likewise.
20293 * sysdeps/sparc/sparc64/multiarch/memset.c: Likewise.
20294 * sysdeps/sparc/sparc64/multiarch/bzero.c: Likewise.
20295 * sysdeps/sparc/sparc32/sparcv9/multiarch/memset.S: Remove file.
20296 * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
20298 * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy-ultra1.S: New
20300 * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy.c: Likewise.
20301 * sysdeps/sparc/sparc32/sparcv9/multiarch/mempcpy.c: Likewise.
20302 * sysdeps/sparc/sparc64/multiarch/ifunc-memcpy.h: Likewise.
20303 * sysdeps/sparc/sparc64/multiarch/memcpy-ultra1.S: Likewise.
20304 * sysdeps/sparc/sparc64/multiarch/memcpy.c: Likewise.
20305 * sysdeps/sparc/sparc64/multiarch/mempcpy.c: Likewise.
20306 * sysdeps/sparc/sparc-ifunc.h (sparc_libc_ifunc_redirected): New
20308 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile
20309 [$(subdir) = string] (sysdep_routines): Add memcpy-ultra1.
20310 * sysdeps/sparc/sparc64/multiarch/Makefile [$(subdir) = string]
20311 (sysdep_routines): Add memcpy-ultra1.
20312 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Remove file.
20313 * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy.S: Likewise.
20315 2017-11-28 Joseph Myers <joseph@codesourcery.com>
20317 * sysdeps/alpha/fpu/cfloat-compat.h: Include <libm-alias-float.h>.
20318 (cfloat_versions): Take function argument without trailing 'f'.
20319 Call libm_alias_float_other.
20320 * sysdeps/alpha/fpu/cabsf.c: Update call to cfloat_versions.
20321 * sysdeps/alpha/fpu/cargf.c: Likewise.
20322 * sysdeps/alpha/fpu/cimagf.c: Likewise.
20323 * sysdeps/alpha/fpu/conjf.c: Likewise.
20324 * sysdeps/alpha/fpu/crealf.c: Likewise.
20325 * sysdeps/alpha/fpu/s_cacosf.c: Likewise.
20326 * sysdeps/alpha/fpu/s_cacoshf.c: Likewise.
20327 * sysdeps/alpha/fpu/s_casinf.c: Likewise.
20328 * sysdeps/alpha/fpu/s_casinhf.c: Likewise.
20329 * sysdeps/alpha/fpu/s_catanf.c: Likewise.
20330 * sysdeps/alpha/fpu/s_catanhf.c: Likewise.
20331 * sysdeps/alpha/fpu/s_ccosf.c: Likewise.
20332 * sysdeps/alpha/fpu/s_ccoshf.c: Likewise.
20333 * sysdeps/alpha/fpu/s_cexpf.c: Likewise.
20334 * sysdeps/alpha/fpu/s_clogf.c: Likewise.
20335 * sysdeps/alpha/fpu/s_cpowf.c: Likewise.
20336 * sysdeps/alpha/fpu/s_cprojf.c: Likewise.
20337 * sysdeps/alpha/fpu/s_csinf.c: Likewise.
20338 * sysdeps/alpha/fpu/s_csinhf.c: Likewise.
20339 * sysdeps/alpha/fpu/s_csqrtf.c: Likewise.
20340 * sysdeps/alpha/fpu/s_ctanf.c: Likewise.
20341 * sysdeps/alpha/fpu/s_ctanhf.c: Likewise.
20342 * sysdeps/alpha/fpu/s_clog10f.c: Include <libm-alias-float.h>.
20343 (clog10f): Use libm_alias_float_other.
20344 * sysdeps/alpha/fpu/s_ceilf.c: Include <libm-alias-float.h>.
20345 (ceilf): Define using libm_alias_float.
20346 * sysdeps/alpha/fpu/s_copysignf.c: Include <libm-alias-float.h>.
20347 (copysignf): Define using libm_alias_float.
20348 * sysdeps/alpha/fpu/s_fabsf.c: Include <libm-alias-float.h>.
20349 (fabsf): Define using libm_alias_float.
20350 * sysdeps/alpha/fpu/s_floorf.c: Include <libm-alias-float.h>.
20351 (floorf): Define using libm_alias_float.
20352 * sysdeps/alpha/fpu/s_fmax.S: Include <libm-alias-float.h>.
20353 (fmaxf): Define using libm_alias_float.
20354 * sysdeps/alpha/fpu/s_fmin.S: Include <libm-alias-float.h>.
20355 (fminf): Define using libm_alias_float.
20356 * sysdeps/alpha/fpu/s_lrintf.c: Include <libm-alias-float.h>.
20357 (lrintf): Define using libm_alias_float.
20358 (llrintf): Likewise.
20359 * sysdeps/alpha/fpu/s_lroundf.c: Include <libm-alias-float.h>.
20360 (lroundf): Define using libm_alias_float.
20361 (llroundf): Likewise.
20362 * sysdeps/alpha/fpu/s_rintf.c: Include <libm-alias-float.h>.
20363 (rintf): Define using libm_alias_float.
20364 * sysdeps/alpha/fpu/s_truncf.c: Include <libm-alias-float.h>.
20365 (truncf): Define using libm_alias_float.
20367 * sysdeps/aarch64/fpu/s_ceilf.c: Include <libm-alias-float.h>.
20368 (ceilf): Define using libm_alias_float.
20369 * sysdeps/aarch64/fpu/s_floorf.c: Include <libm-alias-float.h>.
20370 (floorf): Define using libm_alias_float.
20371 * sysdeps/aarch64/fpu/s_fmaf.c: Include <libm-alias-float.h>.
20372 (fmaf): Define using libm_alias_float.
20373 * sysdeps/aarch64/fpu/s_fmaxf.c: Include <libm-alias-float.h>.
20374 (fmaxf): Define using libm_alias_float.
20375 * sysdeps/aarch64/fpu/s_fminf.c: Include <libm-alias-float.h>.
20376 (fminf): Define using libm_alias_float.
20377 * sysdeps/aarch64/fpu/s_llrintf.c: Include <libm-alias-float.h>.
20378 (llrintf): Define using libm_alias_float.
20379 * sysdeps/aarch64/fpu/s_llroundf.c: Include <libm-alias-float.h>.
20380 (llroundf): Define using libm_alias_float.
20381 * sysdeps/aarch64/fpu/s_lrintf.c: Include <libm-alias-float.h>.
20382 (lrintf): Define using libm_alias_float.
20383 * sysdeps/aarch64/fpu/s_lroundf.c: Include <libm-alias-float.h>.
20384 (lroundf): Define using libm_alias_float.
20385 * sysdeps/aarch64/fpu/s_nearbyintf.c: Include
20386 <libm-alias-float.h>.
20387 (nearbyintf): Define using libm_alias_float.
20388 * sysdeps/aarch64/fpu/s_rintf.c: Include <libm-alias-float.h>.
20389 (rintf): Define using libm_alias_float.
20390 * sysdeps/aarch64/fpu/s_roundf.c: Include <libm-alias-float.h>.
20391 (roundf): Define using libm_alias_float.
20392 * sysdeps/aarch64/fpu/s_truncf.c: Include <libm-alias-float.h>.
20393 (truncf): Define using libm_alias_float.
20395 * sysdeps/alpha/fpu/s_ceil.c: Include <libm-alias-double.h>.
20396 (ceil): Define using libm_alias_double.
20397 * sysdeps/alpha/fpu/s_copysign.c: Include <libm-alias-double.h>.
20398 (copysign): Define using libm_alias_double.
20399 * sysdeps/alpha/fpu/s_fabs.c: Include <libm-alias-double.h>.
20400 (fabs): Define using libm_alias_double.
20401 * sysdeps/alpha/fpu/s_floor.c: Include <libm-alias-double.h>.
20402 (floor): Define using libm_alias_double.
20403 * sysdeps/alpha/fpu/s_fmax.S: Include <libm-alias-double.h>.
20404 (fmax): Define using libm_alias_double.
20405 * sysdeps/alpha/fpu/s_fmin.S: Include <libm-alias-double.h>.
20406 (fmin): Define using libm_alias_double.
20407 * sysdeps/alpha/fpu/s_lrint.c: Include <libm-alias-double.h>.
20408 (lrint): Define using libm_alias_double.
20409 (llrint): Likewise.
20410 * sysdeps/alpha/fpu/s_lround.c: Include <libm-alias-double.h>.
20411 (lround): Define using libm_alias_double.
20412 (llround): Likewise.
20413 * sysdeps/alpha/fpu/s_rint.c: Include <libm-alias-double.h>.
20414 (rint): Define using libm_alias_double.
20415 * sysdeps/alpha/fpu/s_trunc.c: Include <libm-alias-double.h>.
20416 (trunc): Define using libm_alias_double.
20418 * sysdeps/ieee754/ldbl-opt/libm-alias-double.h
20419 (libm_alias_double_r): Add semicolon after weak_alias call.
20421 2017-11-27 Joseph Myers <joseph@codesourcery.com>
20423 * sysdeps/aarch64/fpu/s_ceil.c: Include <libm-alias-double.h>.
20424 (ceil): Define using libm_alias_double.
20425 * sysdeps/aarch64/fpu/s_floor.c: Include <libm-alias-double.h>.
20426 (floor): Define using libm_alias_double.
20427 * sysdeps/aarch64/fpu/s_fma.c: Include <libm-alias-double.h>.
20428 (fma): Define using libm_alias_double.
20429 * sysdeps/aarch64/fpu/s_fmax.c: Include <libm-alias-double.h>.
20430 (fmax): Define using libm_alias_double.
20431 * sysdeps/aarch64/fpu/s_fmin.c: Include <libm-alias-double.h>.
20432 (fmin): Define using libm_alias_double.
20433 * sysdeps/aarch64/fpu/s_llrint.c: Include <libm-alias-double.h>.
20434 (llrint): Define using libm_alias_double.
20435 * sysdeps/aarch64/fpu/s_llround.c: Include <libm-alias-double.h>.
20436 (llround): Define using libm_alias_double.
20437 * sysdeps/aarch64/fpu/s_lrint.c: Include <libm-alias-double.h>.
20438 (lrint): Define using libm_alias_double.
20439 * sysdeps/aarch64/fpu/s_lround.c: Include <libm-alias-double.h>.
20440 (lround): Define using libm_alias_double.
20441 * sysdeps/aarch64/fpu/s_nearbyint.c: Include <libm-alias-double.h>.
20442 (nearbyint): Define using libm_alias_double.
20443 * sysdeps/aarch64/fpu/s_rint.c: Include <libm-alias-double.h>.
20444 (rint): Define using libm_alias_double.
20445 * sysdeps/aarch64/fpu/s_round.c: Include <libm-alias-double.h>.
20446 (round): Define using libm_alias_double.
20447 * sysdeps/aarch64/fpu/s_trunc.c: Include <libm-alias-double.h>.
20448 (trunc): Define using libm_alias_double.
20450 2017-11-27 Florian Weimer <fweimer@redhat.com>
20452 * sysdeps/unix/sysv/linux/mlock2.c: New file.
20453 * sysdeps/unix/sysv/linux/tst-mlock2.c: Likewise.
20454 * sysdeps/unix/sysv/linux/Makefile (routines): Add mlock2.
20455 (tests): Add tst-mlock2.
20456 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.27): Export mlock2.
20457 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_MLOCK2)
20458 [__LINUX_KERNEL_VERSION >= 4.4]: Define.
20459 * sysdeps/unix/sysv/linux/libc**.abilist: Update.
20460 * manual/memory.texi (Page Lock Functions): Move @end deftypefun
20461 for mlock. Document mlock2.
20463 2017-11-27 Joseph Myers <joseph@codesourcery.com>
20465 * sysdeps/ia64/Makeconfig (float64x-alias-fcts): New variable.
20466 * sysdeps/ieee754/float128/Makeconfig (float64x-alias-fcts):
20468 * sysdeps/ieee754/ldbl-128/Makeconfig (float64x-alias-fcts):
20470 * sysdeps/x86/Makeconfig: New file.
20471 * bits/floatn-common.h (__HAVE_FLOAT64X): Remove macro.
20472 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
20473 * bits/floatn.h (__HAVE_FLOAT64X): New macro.
20474 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
20475 * sysdeps/ia64/bits/floatn.h (__HAVE_FLOAT64X): Likewise.
20476 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
20477 * sysdeps/ieee754/ldbl-128/bits/floatn.h (__HAVE_FLOAT64X):
20479 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
20480 * sysdeps/mips/ieee754/bits/floatn.h (__HAVE_FLOAT64X): Likewise.
20481 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
20482 * sysdeps/powerpc/bits/floatn.h (__HAVE_FLOAT64X): Likewise.
20483 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
20484 * sysdeps/x86/bits/floatn.h (__HAVE_FLOAT64X): Likewise.
20485 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
20486 * manual/math.texi (Mathematics): Document support for _Float64x.
20487 * math/Versions (GLIBC_2.27): Add _Float64x functions.
20488 * stdlib/Versions (GLIBC_2.27): Likewise.
20489 * wcsmbs/Versions (GLIBC_2.27): Likewise.
20490 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Update.
20491 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
20492 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
20493 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
20494 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
20495 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
20496 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
20497 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
20498 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
20499 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
20500 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
20501 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist:
20503 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
20505 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
20506 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
20507 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
20508 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
20509 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
20510 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
20511 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
20512 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
20513 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
20514 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
20515 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
20516 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
20517 * sysdeps/i386/fpu/libm-test-ulps: Likewise.
20518 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
20520 2017-11-27 Andreas Schwab <schwab@suse.de>
20522 * elf/Makefile (dl-routines): Add dl-sort-maps.
20523 * elf/dl-sort-maps.c: New file.
20524 * sysdeps/generic/ldsodefs.h (_dl_sort_fini): Don't declare.
20525 (_dl_sort_maps): Declare.
20526 * elf/dl-fini.c (_dl_sort_fini): Remove.
20527 (_dl_fini): Use _dl_sort_maps instead of _dl_sort_fini.
20528 * elf/dl-close.c (_dl_close_worker): Likewise.
20529 * elf/dl-deps.c (_dl_map_object_deps): Use _dl_sort_maps instead of
20531 * elf/dl-open.c (dl_open_worker): Likewise.
20533 2017-11-24 Joseph Myers <joseph@codesourcery.com>
20535 * sysdeps/ieee754/float128/s_fromfpf128.c (fromfpf128): Define
20536 using libm_alias_float128.
20537 * sysdeps/ieee754/float128/s_fromfpxf128.c (fromfpxf128):
20539 * sysdeps/ieee754/float128/s_setpayloadf128.c (setpayloadf128):
20541 * sysdeps/ieee754/float128/s_setpayloadsigf128.c
20542 (setpayloadsigf128): Likewise.
20543 * sysdeps/ieee754/float128/s_ufromfpf128.c (ufromfpf128):
20545 * sysdeps/ieee754/float128/s_ufromfpxf128.c (ufromfpxf128):
20548 * sysdeps/powerpc/powerpc64le/Makefile ($(foreach
20549 suf,$(all-object-suffixes),$(objpfx)test-float64x%$(suf))): Add
20550 -mfloat128 to CFLAGS.
20552 suf,$(all-object-suffixes),$(objpfx)test-ifloat64x%$(suf))):
20554 (CFLAGS-libm-test-support-float64x.c): New variable.
20555 ($(objpfx)test-float64x% $(objpfx)test-ifloat64x%): Add
20556 $(f128-loader-link) to gnulib-tests.
20558 * sysdeps/generic/libm-alias-float128.h: Include <bits/floatn.h>.
20559 (libm_alias_float128_other_r): If
20560 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE], define f64x
20562 (libm_alias_float128_r): Add semicolon after weak_alias call.
20563 * sysdeps/generic/libm-alias-ldouble.h
20564 (libm_alias_ldouble_other_r_f128): New macro.
20565 (libm_alias_ldouble_other_r_f64x): Likewise.
20566 (libm_alias_ldouble_other_r): Use libm_alias_ldouble_other_r_f128
20567 and libm_alias_ldouble_other_r_f64x.
20568 (libm_alias_ldouble_r): Add semicolon after weak_alias call.
20569 * sysdeps/ieee754/ldbl-opt/libm-alias-ldouble.h
20570 (libm_alias_ldouble_other_r_f128): New macro.
20571 (libm_alias_ldouble_other_r_f64x): Likewise.
20572 (libm_alias_ldouble_other_r): Use libm_alias_ldouble_other_r_f128
20573 and libm_alias_ldouble_other_r_f64x.
20575 * stdlib/strfroml.c: Always include <stdlib.h>.
20576 [__HAVE_FLOAT64X_LONG_DOUBLE] (strfromf64x): Define and later
20577 undefine as macro and define as weak alias.
20578 * sysdeps/ieee754/float128/strfromf128.c: Include <bits/floatn.h>.
20579 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE]: Include
20581 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE] (strfromf64x):
20582 Define and later undefine as macro and define as weak alias.
20584 * stdlib/strtold.c [__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x):
20585 Define and later undefine as macro. Define as weak alias if
20587 [__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x): Define and later
20588 undefine as macro. Define as weak alias if [USE_WIDE_CHAR].
20589 * sysdeps/ieee754/float128/strtof128.c: Include <bits/floatn.h>.
20590 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x):
20591 Define and later undefine as macro. Define as weak alias if
20593 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x):
20594 Define and later undefine as macro. Define as weak alias if
20596 * sysdeps/ieee754/float128/strtof128_l.c
20597 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x_l):
20598 Define and later undefine as macro. Define as weak alias if
20600 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x_l):
20601 Define and later undefine as macro. Define as weak alias if
20603 * sysdeps/ieee754/ldbl-128/strtold_l.c
20604 [__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x_l): Define and later
20605 undefine as macro. Define as weak alias if [!USE_WIDE_CHAR].
20606 [__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x_l): Define and later
20607 undefine as macro. Define as weak alias if [USE_WIDE_CHAR].
20608 * sysdeps/ieee754/ldbl-64-128/strtold_l.c
20609 [__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x_l): Define and later
20610 undefine as macro. Define as weak alias if [!USE_WIDE_CHAR].
20611 [__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x_l): Define and later
20612 undefine as macro. Define as weak alias if [USE_WIDE_CHAR].
20613 * sysdeps/ieee754/ldbl-96/strtold_l.c
20614 [__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x_l): Define and later
20615 undefine as macro. Define as weak alias if [!USE_WIDE_CHAR].
20616 [__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x_l): Define and later
20617 undefine as macro. Define as weak alias if [USE_WIDE_CHAR].
20619 * math/test-float64x.h: New file.
20620 * math/Makefile (type-float64x-yes): New variable.
20621 (test-types): Add $(type-float64x-$(float64x-alias-fcts)).
20623 * sysdeps/generic/math_private.h (min_of_type_f): Make into a
20624 function-like macro.
20625 (min_of_type_): Likewise.
20626 (min_of_type_l): Likewise.
20627 (min_of_type_f128): Likewise.
20628 (min_of_type): Pass () as last argument of __MATH_TG.
20630 * stdlib/tst-strtod-round-skeleton.c
20631 (__STDC_WANT_IEC_60559_TYPES_EXT__): Define before including
20634 * math/gen-tgmath-tests.py (Type.init_types): Pass suffix argument
20635 for combinations of long double with _Float64 and _Float64x.
20637 * bits/libm-simd-decl-stubs.h (__DECL_SIMD_cosf16): New macro.
20638 (__DECL_SIMD_cosf32): Likewise.
20639 (__DECL_SIMD_cosf64): Likewise.
20640 (__DECL_SIMD_cosf32x): Likewise.
20641 (__DECL_SIMD_cosf64x): Likewise.
20642 (__DECL_SIMD_cosf128x): Likewise.
20643 (__DECL_SIMD_sinf16): Likewise.
20644 (__DECL_SIMD_sinf32): Likewise.
20645 (__DECL_SIMD_sinf64): Likewise.
20646 (__DECL_SIMD_sinf32x): Likewise.
20647 (__DECL_SIMD_sinf64x): Likewise.
20648 (__DECL_SIMD_sinf128x): Likewise.
20649 (__DECL_SIMD_sincosf16): Likewise.
20650 (__DECL_SIMD_sincosf32): Likewise.
20651 (__DECL_SIMD_sincosf64): Likewise.
20652 (__DECL_SIMD_sincosf32x): Likewise.
20653 (__DECL_SIMD_sincosf64x): Likewise.
20654 (__DECL_SIMD_sincosf128x): Likewise.
20655 (__DECL_SIMD_logf16): Likewise.
20656 (__DECL_SIMD_logf32): Likewise.
20657 (__DECL_SIMD_logf64): Likewise.
20658 (__DECL_SIMD_logf32x): Likewise.
20659 (__DECL_SIMD_logf64x): Likewise.
20660 (__DECL_SIMD_logf128x): Likewise.
20661 (__DECL_SIMD_expf16): Likewise.
20662 (__DECL_SIMD_expf32): Likewise.
20663 (__DECL_SIMD_expf64): Likewise.
20664 (__DECL_SIMD_expf32x): Likewise.
20665 (__DECL_SIMD_expf64x): Likewise.
20666 (__DECL_SIMD_expf128x): Likewise.
20667 (__DECL_SIMD_powf16): Likewise.
20668 (__DECL_SIMD_powf32): Likewise.
20669 (__DECL_SIMD_powf64): Likewise.
20670 (__DECL_SIMD_powf32x): Likewise.
20671 (__DECL_SIMD_powf64x): Likewise.
20672 (__DECL_SIMD_powf128x): Likewise.
20674 * stdlib/Versions (libc): Move entries for wcstof128 and
20675 wcstof128_l to ....
20676 * wcsmbs/Versions (libc): ... here.
20677 Include <float128-abi.h>.
20679 2017-11-24 Florian Weimer <fweimer@redhat.com>
20681 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
20682 bits/mman-shared.h.
20683 * sysdeps/unix/sysv/linux/bits/mman-linux.h: Include
20684 <bits/mman-shared.h>.
20685 (MFD_CLOEXEC, MFD_ALLOW_SEALING, MFD_HUGETLB, memfd_create): Move
20687 * sysdeps/unix/sysv/linux/bits/mman-shared.h: ... this new file.
20688 Add #ifndef guard for the MFD_* constants based on MFD_CLOEXEC.
20689 * sysdeps/unix/sysv/linux/hppa/bits/mman.h: Include
20690 <bits/mman-shared.h>.
20692 2017-11-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
20695 * sysdeps/posix/preadv_common.c (PREADV): Use mmap/munmap instead of
20696 posix_memalign/free.
20697 * sysdeps/posix/pwritev_common.c (PWRITEV): Likewise.
20699 2017-11-22 Mike FABIAN <mfabian@redhat.com>
20702 * localedata/locales/pl_PL (LC_COLLATE): Use “copy "iso14651_t1"”
20703 and implement the collation rules for pl from CLDR on top of that.
20704 * Makefile: Add pl_PL.UTF-8 to test-input and to the list
20705 of locales to be built for testing.
20706 * pl_PL.UTF-8.in: New file with test data to test the Polish sorting.
20708 2017-11-23 Joseph Myers <joseph@codesourcery.com>
20710 * sysdeps/ia64/fpu/libm-symbols.h: Include <libm-alias-ldouble.h>.
20711 * sysdeps/ia64/fpu/e_acoshl.S (acoshl): Use
20712 libm_alias_ldouble_other.
20713 * sysdeps/ia64/fpu/e_acosl.S (acosl): Likewise.
20714 * sysdeps/ia64/fpu/e_asinl.S (asinl): Likewise.
20715 * sysdeps/ia64/fpu/e_atanhl.S (atanhl): Likewise.
20716 * sysdeps/ia64/fpu/e_coshl.S (coshl): Likewise.
20717 * sysdeps/ia64/fpu/e_exp10l.S (exp10l): Likewise.
20718 * sysdeps/ia64/fpu/e_exp2l.S (exp2l): Likewise.
20719 * sysdeps/ia64/fpu/e_fmodl.S (fmodl): Likewise.
20720 * sysdeps/ia64/fpu/e_hypotl.S (hypotl): Likewise.
20721 * sysdeps/ia64/fpu/e_lgammal_r.c (lgammal_r): Define using
20722 libm_alias_ldouble_r.
20723 * sysdeps/ia64/fpu/e_log2l.S (log2l): Use
20724 libm_alias_ldouble_other.
20725 * sysdeps/ia64/fpu/e_logl.S (logl): Likewise.
20726 (log10l): Likewise.
20727 * sysdeps/ia64/fpu/e_powl.S (powl): Likewise.
20728 * sysdeps/ia64/fpu/e_remainderl.S (remainderl): Likewise.
20729 * sysdeps/ia64/fpu/e_sinhl.S (sinhl): Likewise.
20730 * sysdeps/ia64/fpu/e_sqrtl.S (sqrtl): Likewise.
20731 * sysdeps/ia64/fpu/libm_sincosl.S (sincosl): Likewise.
20732 * sysdeps/ia64/fpu/s_asinhl.S (asinhl): Likewise.
20733 * sysdeps/ia64/fpu/s_atanl.S (atanl): Likewise.
20734 (atan2l): Likewise.
20735 * sysdeps/ia64/fpu/s_cbrtl.S (cbrtl): Likewise.
20736 * sysdeps/ia64/fpu/s_ceill.S (ceill): Likewise.
20737 * sysdeps/ia64/fpu/s_copysign.S (copysignl): Define using
20738 libm_alias_ldouble.
20739 * sysdeps/ia64/fpu/s_cosl.S (sinl): Use libm_alias_ldouble_other.
20741 * sysdeps/ia64/fpu/s_erfcl.S (erfcl): Likewise.
20742 * sysdeps/ia64/fpu/s_erfl.S (erfl): Likewise.
20743 * sysdeps/ia64/fpu/s_expm1l.S (expm1l): Likewise.
20745 * sysdeps/ia64/fpu/s_fabsl.S (fabsl): Likewise.
20746 * sysdeps/ia64/fpu/s_fdiml.S (fdiml): Likewise.
20747 * sysdeps/ia64/fpu/s_floorl.S (floorl): Likewise.
20748 * sysdeps/ia64/fpu/s_fmal.S (fmal): Likewise.
20749 * sysdeps/ia64/fpu/s_fmaxl.S (fmaxl): Likewise.
20750 * sysdeps/ia64/fpu/s_frexpl.c (frexpl): Likewise.
20751 * sysdeps/ia64/fpu/s_ldexpl.c (ldexpl): Likewise.
20752 * sysdeps/ia64/fpu/s_log1pl.S (log1pl): Likewise.
20753 * sysdeps/ia64/fpu/s_logbl.S (logbl): Likewise.
20754 * sysdeps/ia64/fpu/s_modfl.S (modfl): Likewise.
20755 * sysdeps/ia64/fpu/s_nearbyintl.S (nearbyintl): Define using
20756 libm_alias_ldouble.
20757 * sysdeps/ia64/fpu/s_nextafterl.S (nextafterl): Use
20758 libm_alias_ldouble_other.
20759 * sysdeps/ia64/fpu/s_rintl.S (rintl): Likewise.
20760 * sysdeps/ia64/fpu/s_roundl.S (roundl): Likewise.
20761 * sysdeps/ia64/fpu/s_scalbnl.c (scalbnl): Define using
20762 libm_alias_ldouble.
20763 * sysdeps/ia64/fpu/s_tanhl.S (tanhl): Use
20764 libm_alias_ldouble_other.
20765 * sysdeps/ia64/fpu/s_tanl.S (tanl): Likewise.
20766 * sysdeps/ia64/fpu/s_truncl.S (truncl): Likewise.
20767 * sysdeps/ia64/fpu/w_lgammal_main.c
20768 [BUILD_LGAMMA && !USE_AS_COMPAT] (lgammal): Likewise.
20769 * sysdeps/ia64/fpu/w_tgammal_compat.S (tgammal): Likewise.
20771 2017-11-23 Florian Weimer <fweimer@redhat.com>
20773 * malloc/malloc.c (tcache_thread_shutdown): Rename from
20774 tcache_thread_freeres. Define for USE_TCACHE and !USE_TCACHE
20775 alike. Remove freeres marker.
20776 * malloc/arena.c (arena_thread_freeres): Call
20777 tcache_thread_shutdown.
20779 2017-11-23 Florian Weimer <fweimer@redhat.com>
20782 Export nscd hash function as __nss_hash.
20783 * include/nss.h (__nss_hash): Declare.
20784 * nis/nis_hash.c (__nis_hash): Call __nss_hash. Turn into compat
20786 * nscd/Makefile (aux, nscd-modules): Remove nscd_hash.
20787 * nscd/cache.c (cache_search, cache_add): Call __nss_hash instead
20789 * nscd/nscd_helper.c (__nscd_cache_search): Likewise.
20790 * nscd/nscd_hash.h, nscd/nscd_hash.c: Remove files.
20791 * nss/Makefiles (routines): Add nss_hash.
20792 * nss/Versions (GLIBC_PRIVATE): Export __nss_hash.
20793 * nss/nss_hash.c: Rename from nis/nis_hash.c.
20794 (__nss_hash): Rename from __nis_hash. Define hidden alias.
20795 * nis/rpcsvc/nislib.h (__nis_hash): Remove declaration.
20797 2017-11-23 Florian Weimer <fweimer@redhat.com>
20800 * sysdeps/unix/sysv/linux/sigwait.c (__sigwait): Retry on EINTR.
20801 Return error code, not -1.
20802 * signal/tst-sigwait-eintr.c: New file.
20803 * signal/Makefile (tests): Add tst-sigwait-eintr.
20805 2017-11-23 Florian Weimer <fweimer@redhat.com>
20807 Linux: Add memfd_create system call wrapper
20808 * sysdeps/unix/sysv/linux/Makefile [misc] (tests): Add
20810 * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_GNU]
20811 (MFD_CLOEXEC, MFD_ALLOW_SEALING): Define.
20812 [__USE_GNU] (memfd_create): Declare.
20813 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.27): Add memfd_create.
20814 * sysdeps/unix/sysv/linux/syscalls.list (memfd_create): Add.
20815 * sysdeps/unix/sysv/linux/tst-memfd_create.c: New file.
20816 * sysdeps/unix/sysv/linux/**.abilist: Update.
20817 * manual/llio.texi (Memory-mapped I/O): Document memfd_create.
20819 2017-11-22 Joseph Myers <joseph@codesourcery.com>
20821 * localedata/gen-locale.sh: Fix typo in variable name.
20823 * resolv/res_debug.c (p_secstodate): Condition definition on
20824 [SHLIB_COMPAT (libresolv, GLIBC_2_0, GLIBC_2_27)]. Define
20825 directly as __p_secstodate, and as a compat symbol. Do not use
20826 libresolv_hidden_def.
20827 * resolv/resolv.h (p_secstodate): Remove macro and function
20829 * resolv/ns_print.c (ns_sprintrrf): Print times with %lu, not
20830 using p_secstodate.
20831 * include/resolv.h (__p_secstodate): Do not use
20832 libresolv_hidden_proto.
20833 * resolv/Makefile (tests): Move tst-p_secstodate to ....
20834 (tests-internal): ... here.
20835 * resolv/tst-p_secstodate.c: Include <shlib-compat.h>. Condition
20836 all contents on [TEST_COMPAT (libresolv, GLIBC_2_0, GLIBC_2_27)]
20837 and declare and use __p_secstodate and use compat_symbol_reference
20839 [!TEST_COMPAT (libresolv, GLIBC_2_0, GLIBC_2_27)] (do_test): Add
20840 implementation returning 77.
20843 * resolv/res_debug.c: Include <libc-diag.h>.
20844 (p_secstodate): Assert time_t at least as wide as u_long. On
20845 overflow, use integer seconds since the epoch as output, or use
20846 "<overflow>" as output and set errno to EOVERFLOW if integer
20847 seconds since the epoch would be 14 or more characters.
20848 (p_secstodate) [__GNUC_PREREQ (7, 0)]: Disable -Wformat-overflow=
20850 * resolv/tst-p_secstodate.c: New file.
20851 * resolv/Makefile (tests): Add tst-p_secstodate.
20852 ($(objpfx)tst-p_secstodate): Depend on $(objpfx)libresolv.so.
20854 * sysdeps/sparc/sparc64/soft-fp/s_frexpl.c: Remove file.
20855 * sysdeps/sparc/sparc64/soft-fp/s_scalblnl.c: Likewise.
20856 * sysdeps/sparc/sparc64/soft-fp/s_scalbnl.c: Likewise.
20858 2017-11-22 Paul Eggert <eggert@cs.ucla.edu>
20860 * posix/regcomp.c (init_word_char): Add comments.
20862 2017-11-22 Joseph Myers <joseph@codesourcery.com>
20865 * sysdeps/unix/getlogin_r.c (__getlogin_r): Use __strnlen not
20866 strlen to compute length of ut_user and set trailing NUL byte of
20869 2017-11-21 Mike FABIAN <mfabian@redhat.com>
20872 * localedata/locales/lv_LV (LC_COLLATE): Fix collation by
20873 using “copy "iso14651_t1"” and then implementing the
20874 collation rules for lv from CLDR on top of that.
20875 * Makefile: Add lv_LV.UTF-8 to test-input and to the list
20876 of locales to be built for testing.
20877 * lv_LV.UTF-8.in: New file with test data to test the Latvian
20880 2017-11-21 Joseph Myers <joseph@codesourcery.com>
20882 * sysdeps/unix/sysv/linux/hppa/bits/mman.h
20883 [__USE_MISC] (MADV_SPACEAVAIL): Remove macro.
20884 [__USE_MISC] (MADV_VPS_PURGE): Likewise.
20885 [__USE_MISC] (MADV_VPS_INHERIT): Likewise.
20886 [__USE_MISC] (MADV_HWPOISON): New macro.
20887 [__USE_MISC] (MADV_SOFT_OFFLINE): Likewise.
20889 2017-11-21 Adhemerval Zanella <adhemerval.zanella@linaro.org>
20891 * nptl/pthreadP.h (ASSERT_PTHREAD_INTERNAL_SIZE): Add workarond for
20892 -Wmissing-braces on GCC 4.9.
20894 2017-11-21 Stefan Liebler <stli@linux.vnet.ibm.com>
20896 * sysdeps/s390/s390-64/start.S (_start): Add cfi information for r14.
20897 * sysdeps/s390/s390-32/start.S (_start): Likewise
20898 * sysdeps/unix/sysv/linux/s390/s390-64/clone.S
20899 (thread_start): Likewise.
20900 * sysdeps/unix/sysv/linux/s390/s390-32/clone.S
20901 (thread_start): Likewise.
20902 * sysdeps/unix/sysv/linux/s390/s390-64/__makecontext_ret.S
20903 (__makecontext_ret): Likewise.
20904 * sysdeps/unix/sysv/linux/s390/s390-32/__makecontext_ret.S
20905 (__makecontext_ret): Likewise.
20907 2017-11-21 Stefan Liebler <stli@linux.vnet.ibm.com>
20909 * include/wchar.h (__wcsnlen, __wcscat, __wcsncpy, __wcpncpy,
20910 __wcschrnul): Remove attribute_hidden.
20912 2017-11-20 Paul Eggert <eggert@cs.ucla.edu>
20914 regex: don't assume uint64_t or uint32_t
20915 This avoids -Werror=overflow errors for 32-bit systems in
20916 the 64-bit case. Problem reported by Joseph Myers in:
20917 https://sourceware.org/ml/libc-alpha/2017-11/msg00694.html
20918 Also, when this code is used in Gnulib it ports to platforms
20919 that lack uint64_t and uint32_t. The C standard doesn't guarantee
20920 them, and on some 32-bit compilers there is no uint64_t.
20921 Problem reported by Gianluigi Tiesi in:
20922 http://lists.gnu.org/archive/html/bug-gnulib/2012-03/msg00154.html
20923 * posix/regcomp.c (init_word_char): Don't assume that the types
20924 uint64_t and uint32_t exist. Adapted from Gnulib patch
20925 2012-05-27T06:40:00!eggert@cs.ucla.edu. See:
20926 https://git.savannah.gnu.org/cgit/gnulib.git/commit/?id=252b52457da7887667c036d18cc5169777615bb0
20928 2017-11-20 Siddhesh Poyarekar <siddhesh@sourceware.org>
20930 * sysdeps/aarch64/memset-reg.h: New file.
20931 * sysdeps/aarch64/memset.S: Use it.
20932 (__memset): Rename to MEMSET macro.
20933 [ZVA_MACRO]: Use zva_macro.
20934 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines):
20935 Add memset_generic and memset_falkor.
20936 * sysdeps/aarch64/multiarch/ifunc-impl-list.c
20937 (__libc_ifunc_impl_list): Add memset ifuncs.
20938 * sysdeps/aarch64/multiarch/init-arch.h (INIT_ARCH): New
20939 local variable zva_size.
20940 * sysdeps/aarch64/multiarch/memset.c: New file.
20941 * sysdeps/aarch64/multiarch/memset_generic.S: New file.
20942 * sysdeps/aarch64/multiarch/memset_falkor.S: New file.
20943 * sysdeps/aarch64/multiarch/rtld-memset.S: New file.
20944 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c
20945 (DCZID_DZP_MASK): New macro.
20946 (DCZID_BS_MASK): Likewise.
20947 (init_cpu_features): Read and set zva_size.
20948 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h
20949 (struct cpu_features): New member zva_size.
20951 * benchtests/bench-memcpy-walk.c (START_SIZE): Set to 128.
20952 * benchtests/bench-memmove-walk.c (START_SIZE): Likewise.
20953 * benchtests/bench-memset-walk.c (START_SIZE): Likewise.
20955 * benchtests/bench-memcpy-walk.c (do_one_test): Copy only
20956 backwards. Fix timing computation.
20957 * benchtests/bench-memmove-walk.c (do_one_test): Likewise.
20958 * benchtests/bench-memset-walk.c (do_one_test): Walk backwards
20959 on memset by N at a time. Fix timing computation.
20961 2017-11-20 Florian Weimer <fweimer@redhat.com>
20963 * manual/llio.texi (Memory-mapped I/O): Document MAP_HUGETLB,
20964 MADV_HUGEPAGE, MADV_NOHUGEPAGE.
20966 2017-11-19 Florian Weimer <fweimer@redhat.com>
20968 manual: Document mprotect
20969 * manual/memory.texi (Memory Protection): New section.
20970 * manual/llio.texi (Memory-mapped I/O): Remove duplicate
20971 documentation of PROT_* flags and reference the Memory Protection
20974 2017-11-19 Florian Weimer <fweimer@redhat.com>
20976 * manual/llio.texi (I/O Primitives): Move preadv, preadv64,
20977 pwritev, pwritev64, preadv2, preadv64v2, pwritev2, pwritev64v2 ...
20978 (Scatter-Gather): ... to here. Remove misleading comment.
20980 2017-11-18 Christian Brauner <christian.brauner@ubuntu.com>
20982 * support/support_become_root.c (setup_uid_gid_mapping): Fix comment
20985 * support/support_become_root.c (setup_uid_gid_mapping): Don't fail
20986 when /proc/<pid>/setgroups does not exist.
20988 2017-11-18 Florian Weimer <fweimer@redhat.com>
20990 * sysdeps/unix/sysv/linux/tst-ttyname.c
20991 (become_root_in_mount_ns): Remove.
20992 (do_in_chroot_1): Call support_enter_mount_namespace.
20993 (do_in_chroot_2): Likewise.
20994 (do_test): Call support_become_root early.
20996 2017-11-18 Florian Weimer <fweimer@redhat.com>
20998 * support/namespace.h (support_enter_mount_namespace): Declare.
20999 * support/support_enter_mount_namespace.c: New file.
21000 * support/Makefile (libsupport-routines): Add
21001 support_enter_mount_namespace.
21003 2017-11-18 Florian Weimer <fweimer@redhat.com>
21005 * support/temp_file.c (support_create_temp_directory): Use
21006 test_dir and do not rely on the presence of the XXXXXX suffix.
21007 * support/temp_file.h (support_create_temp_directory): Update
21009 * support/tst-xreadlink.c (do_test): Adjust.
21010 * support/support_chroot.c (support_chroot_create): Likewise.
21012 2017-11-17 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
21014 * sysdeps/powerpc/bits/hwcap.h (PPC_FEATURE2_HTM_NO_SUSPEND): New
21016 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add
21019 2017-11-17 Joseph Myers <joseph@codesourcery.com>
21021 * sysdeps/x86_64/fpu/e_expl.S: Include <libm-alias-ldouble.h>.
21022 [USE_AS_EXPM1L] (expm1l): Define using libm_alias_ldouble.
21023 * sysdeps/x86_64/fpu/s_ceill.S: Include <libm-alias-ldouble.h>.
21024 (ceill): Define using libm_alias_ldouble.
21025 * sysdeps/x86_64/fpu/s_copysignl.S: Include
21026 <libm-alias-ldouble.h>.
21027 (copysignl): Define using libm_alias_ldouble.
21028 * sysdeps/x86_64/fpu/s_fabsl.S: Include <libm-alias-ldouble.h>.
21029 (fabsl): Define using libm_alias_ldouble.
21030 * sysdeps/x86_64/fpu/s_floorl.S: Include <libm-alias-ldouble.h>.
21031 (floorl): Define using libm_alias_ldouble.
21032 * sysdeps/x86_64/fpu/s_fmaxl.S: Include <libm-alias-ldouble.h>.
21033 (fmaxl): Define using libm_alias_ldouble.
21034 * sysdeps/x86_64/fpu/s_fminl.S: Include <libm-alias-ldouble.h>.
21035 (fminl): Define using libm_alias_ldouble.
21036 * sysdeps/x86_64/fpu/s_llrintl.S: Include <libm-alias-ldouble.h>.
21037 (llrintl): Define using libm_alias_ldouble.
21038 (lrintl): Likewise.
21039 * sysdeps/x86_64/fpu/s_nearbyintl.S: Include
21040 <libm-alias-ldouble.h>.
21041 (nearbyintl): Define using libm_alias_ldouble.
21042 * sysdeps/x86_64/fpu/s_truncl.S: Include <libm-alias-ldouble.h>.
21043 (truncl): Define using libm_alias_ldouble.
21044 * sysdeps/x86_64/x32/fpu/s_lrintl.S: Include
21045 <libm-alias-ldouble.h>.
21046 (lrintl): Define using libm_alias_ldouble.
21048 * sysdeps/i386/fpu/e_expl.S: Include <libm-alias-ldouble.h>.
21049 [USE_AS_EXPM1L] (expm1l): Define using libm_alias_ldouble.
21050 * sysdeps/i386/fpu/s_asinhl.S: Include <libm-alias-ldouble.h>.
21051 (asinhl): Define using libm_alias_ldouble.
21052 * sysdeps/i386/fpu/s_atanl.c: Include <libm-alias-ldouble.h>.
21053 (atanl): Define using libm_alias_ldouble.
21054 * sysdeps/i386/fpu/s_cbrtl.S: Include <libm-alias-ldouble.h>.
21055 (cbrtl): Define using libm_alias_ldouble.
21056 * sysdeps/i386/fpu/s_ceill.S: Include <libm-alias-ldouble.h>.
21057 (ceill): Define using libm_alias_ldouble.
21058 * sysdeps/i386/fpu/s_copysignl.S: Include <libm-alias-ldouble.h>.
21059 (copysignl): Define using libm_alias_ldouble.
21060 * sysdeps/i386/fpu/s_fabsl.S: Include <libm-alias-ldouble.h>.
21061 (fabsl): Define using libm_alias_ldouble.
21062 * sysdeps/i386/fpu/s_floorl.S: Include <libm-alias-ldouble.h>.
21063 (floorl): Define using libm_alias_ldouble.
21064 * sysdeps/i386/fpu/s_fmaxl.S: Include <libm-alias-ldouble.h>.
21065 (fmaxl): Define using libm_alias_ldouble.
21066 * sysdeps/i386/fpu/s_fminl.S: Include <libm-alias-ldouble.h>.
21067 (fminl): Define using libm_alias_ldouble.
21068 * sysdeps/i386/fpu/s_frexpl.S: Include <libm-alias-ldouble.h>.
21069 (frexpl): Define using libm_alias_ldouble.
21070 * sysdeps/i386/fpu/s_llrintl.S: Include <libm-alias-ldouble.h>.
21071 (llrintl): Define using libm_alias_ldouble.
21072 * sysdeps/i386/fpu/s_logbl.c: Include <libm-alias-ldouble.h>.
21073 (logbl): Define using libm_alias_ldouble.
21074 * sysdeps/i386/fpu/s_lrintl.S: Include <libm-alias-ldouble.h>.
21075 (lrintl): Define using libm_alias_ldouble.
21076 * sysdeps/i386/fpu/s_nearbyintl.S: Include <libm-alias-ldouble.h>.
21077 (nearbyintl): Define using libm_alias_ldouble.
21078 * sysdeps/i386/fpu/s_nextafterl.c: Include <libm-alias-ldouble.h>.
21079 (nextafterl): Define using libm_alias_ldouble.
21080 * sysdeps/i386/fpu/s_remquol.S: Include <libm-alias-ldouble.h>.
21081 (remquol): Define using libm_alias_ldouble.
21082 * sysdeps/i386/fpu/s_rintl.c: Include <libm-alias-ldouble.h>.
21083 (rintl): Define using libm_alias_ldouble.
21084 * sysdeps/i386/fpu/s_truncl.S: Include <libm-alias-ldouble.h>.
21085 (truncl): Define using libm_alias_ldouble.
21086 * sysdeps/i386/i686/fpu/s_fmaxl.S: Include <libm-alias-ldouble.h>.
21087 (fmaxl): Define using libm_alias_ldouble.
21088 * sysdeps/i386/i686/fpu/s_fminl.S: Include <libm-alias-ldouble.h>.
21089 (fminl): Define using libm_alias_ldouble.
21091 * bits/floatn-common.h [!__ASSEMBLER]: Disable everything related
21092 to C syntax instead of availability and properties of types.
21093 * bits/floatn.h [!__ASSEMBLER]: Likewise.
21094 * sysdeps/ia64/bits/floatn.h [!__ASSEMBLER]: Likewise.
21095 * sysdeps/ieee754/ldbl-128/bits/floatn.h [!__ASSEMBLER]: Likewise.
21096 * sysdeps/mips/ieee754/bits/floatn.h [!__ASSEMBLER]: Likewise.
21097 * sysdeps/powerpc/bits/floatn.h [!__ASSEMBLER]: Likewise.
21098 * sysdeps/x86/bits/floatn.h [!__ASSEMBLER]: Likewise.
21100 2017-11-17 Florian Weimer <fweimer@redhat.com>
21102 support_become_root: Enable file creation in namespaces.
21103 * support/support_become_root.c (setup_mapping): New function.
21104 (support_become_root): Call it.
21106 2017-11-17 Joseph Myers <joseph@codesourcery.com>
21108 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_DCPOP): New
21111 2017-11-16 Adhemerval Zanella <adhemerval.zanella@linaro.org>
21113 * sysdeps/aarch64/fpu/Makefile (CFLAGS-s_fmax.c, CFLAGS-s_fmaxf.c,
21114 CFLAGS-s_fmin.c, CFLAGS-s_fminf.c): New rule: add -ffinite-math-only.
21116 2017-11-16 Joseph Myers <joseph@codesourcery.com>
21118 * sysdeps/unix/sysv/linux/net/if_arp.h (ARPHRD_RAWIP): New macro.
21120 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
21123 2017-11-16 Siddhesh Poyarekar <siddhesh@sourceware.org>
21125 * INSTALL: Fix botched up regeneration.
21127 * NEWS: Update sourceare link to https.
21128 * configure.ac: Likewise.
21129 * crypt/md5test-giant.c: Likewise.
21130 * dlfcn/bug-atexit1.c: Likewise.
21131 * dlfcn/bug-atexit2.c: Likewise.
21132 * localedata/README: Likewise.
21133 * malloc/tst-mallocfork.c: Likewise.
21134 * manual/install.texi: Likewise.
21135 * nptl/tst-pthread-getattr.c: Likewise.
21136 * stdio-common/tst-fgets.c: Likewise.
21137 * stdio-common/tst-fwrite.c: Likewise.
21138 * sunrpc/Makefile: Likewise.
21139 * sysdeps/arm/armv7/multiarch/memcpy_impl.S: Likewise.
21140 * wcsmbs/tst-mbrtowc2.c: Likewise.
21141 * configure: Regenerate.
21142 * INSTALL: Regenerate.
21144 2017-11-15 Martin Sebor <msebor@redhat.com>
21146 * misc/sys/cdefs.h (__attribute_nonstring__): New macro.
21147 * sysdeps/gnu/bits/utmp.h (struct utmp): Use it.
21148 * sysdeps/unix/sysv/linux/s390/bits/utmp.h (struct utmp): Same.
21150 2017-11-15 Luke Shumaker <lukeshu@parabola.nu>
21153 * sysdeps/unix/sysv/linux/tst-ttyname.c: New file.
21154 * sysdeps/unix/sysv/linux/Makefile: Add tst-ttyname to tests.
21157 * sysdeps/unix/sysv/linux/ttyname.c (ttyname):
21158 Defer is_pty check until end of the function.
21159 * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
21162 * sysdeps/unix/sysv/linux/ttyname.h (is_mytty): New function.
21163 * sysdeps/unix/sysv/linux/ttyname.c (getttyname): Call is_mytty.
21164 (ttyname): Likewise.
21165 * sysdeps/unix/sysv/linux/ttyname_r.c (getttyname_r): Likewise.
21166 (__ttyname_r): Likewise.
21168 * sysdeps/unix/sysv/linux/ttyname.h (is_pty): Change return type from
21171 * sysdeps/unix/sysv/linux/ttyname.h (is_pty): Update doc reference.
21173 * manual/terminal.texi (Is It a Terminal):
21174 Mention ENODEV for ttyname and ttyname_r.
21176 2017-11-15 Joseph Myers <joseph@codesourcery.com>
21178 * sysdeps/unix/sysv/linux/bits/socket.h (MSG_ZEROCOPY): New enum
21179 constant and macro.
21181 * sysdeps/unix/sysv/linux/bits/mman-linux.h
21182 [__USE_MISC] (MADV_WIPEONFORK): New macro.
21183 [__USE_MISC] (MADV_KEEPONFORK): Likewise.
21184 * sysdeps/unix/sysv/linux/hppa/bits/mman.h
21185 [__USE_MISC] (MADV_WIPEONFORK): Likewise.
21186 [__USE_MISC] (MADV_KEEPONFORK): Likewise.
21188 2017-11-15 Adhemerval Zanella <adhemerval.zanella@linaro.org>
21190 * signal/sigrelse.c (sigrelse): Optimize implementation.
21192 * sysdeps/posix/sigpause.c (do_sigpause): Remove.
21193 (__sigpause): Rely on __sigsuspend to implement single thread
21194 optimization. Add LIBC_CANCEL_HANDLED for cancellation marking.
21196 2017-11-15 Joseph Myers <joseph@codesourcery.com>
21198 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
21199 kernel version to 4.14.
21201 2017-11-15 Steve Ellcey <sellcey@cavium.com>
21204 * sysdeps/unix/sysv/linux/if_index.c (__if_nametoindex):
21205 Check if ifname is too long.
21207 2017-11-15 Luke Shumaker <lukeshu@parabola.nu>
21209 * sysdeps/unix/sysv/linux/epoll_wait.c: Include <sysdep-cancel.h>.
21211 2017-11-15 Mike FABIAN <mfabian@redhat.com>
21213 * localedata/locales/ka_GE (LC_MESSAGES): Add “X” back to yesexpr,
21214 was accidentally lost.
21216 2017-11-15 Mike FABIAN <mfabian@redhat.com>
21218 * localedata/locales/az_IR: Add standard copyright header.
21220 2017-11-15 Florian Weimer <fweimer@redhat.com>
21223 * malloc/malloc.c (__malloc_info): Count all heaps in an arena,
21224 not just the top one. Output a new "subheaps" statistic.
21226 2017-11-15 Florian Weimer <fweimer@redhat.com>
21229 * malloc/malloc.c (__malloc_info): Obtain arena heap statistics
21230 under the per-arena lock.
21231 * malloc/Makefile (tests): Add tst-malloc_info.
21232 (tst-malloc_info): Link with libpthread.
21233 * malloc/tst-malloc_info.c: New file.
21235 2017-11-15 Joseph Myers <joseph@codesourcery.com>
21238 * math/tgmath.h (__HAVE_BUILTIN_TGMATH): New macro.
21239 [__HAVE_BUILTIN_TGMATH] (__TG_F16_ARG): Likewise.
21240 [__HAVE_BUILTIN_TGMATH] (__TG_F32_ARG): Likewise.
21241 [__HAVE_BUILTIN_TGMATH] (__TG_F64_ARG): Likewise.
21242 [__HAVE_BUILTIN_TGMATH] (__TG_F128_ARG): Likewise.
21243 [__HAVE_BUILTIN_TGMATH] (__TG_F32X_ARG): Likewise.
21244 [__HAVE_BUILTIN_TGMATH] (__TG_F64X_ARG): Likewise.
21245 [__HAVE_BUILTIN_TGMATH] (__TG_F128X_ARG): Likewise.
21246 [__HAVE_BUILTIN_TGMATH] (__TGMATH_FUNCS): Likewise.
21247 [__HAVE_BUILTIN_TGMATH] (__TGMATH_RCFUNCS): Likewise.
21248 [__HAVE_BUILTIN_TGMATH] (__TGMATH_1): Likewise.
21249 [__HAVE_BUILTIN_TGMATH] (__TGMATH_2): Likewise.
21250 [__HAVE_BUILTIN_TGMATH] (__TGMATH_2STD): Likewise.
21251 [__HAVE_BUILTIN_TGMATH] (__TGMATH_3): Likewise.
21252 [__HAVE_BUILTIN_TGMATH] (__TGMATH_1C): Likewise.
21253 [__HAVE_BUILTIN_TGMATH] (__TGMATH_2C): Likewise.
21254 (__tgml): Make conditional on [!__HAVE_BUILTIN_TGMATH].
21255 (__floating_type): Likewise.
21256 (__real_integer_type): Likewise.
21257 (__complex_integer_type): Likewise.
21258 (__expr_is_real): Likewise.
21259 (__tgmath_real_type_sub): Likewise.
21260 (__tgmath_real_type): Likewise.
21261 (__tgmath_complex_type_sub): Likewise.
21262 (__tgmath_complex_type): Likewise.
21263 (__TGMATH_F128): Likewise.
21264 (__TGMATH_CF128): Likewise.
21265 [__HAVE_BUILTIN_TGMATH] (__TGMATH_UNARY_REAL_ONLY): Define using
21267 [__HAVE_BUILTIN_TGMATH] (__TGMATH_UNARY_REAL_RET_ONLY): Likewise.
21268 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_FIRST_REAL_ONLY):
21270 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_FIRST_REAL_STD_ONLY):
21272 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_REAL_ONLY): Likewise.
21273 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_REAL_STD_ONLY): Likewise.
21274 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_REAL_RET_ONLY): Likewise.
21275 [__HAVE_BUILTIN_TGMATH] (__TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY):
21277 [__HAVE_BUILTIN_TGMATH] (__TGMATH_TERNARY_REAL_ONLY): Likewise.
21278 [__HAVE_BUILTIN_TGMATH] (__TGMATH_TERNARY_FIRST_REAL_RET_ONLY):
21280 [__HAVE_BUILTIN_TGMATH] (__TGMATH_UNARY_REAL_IMAG): Likewise.
21281 [__HAVE_BUILTIN_TGMATH] (__TGMATH_UNARY_IMAG): Likewise.
21282 [__HAVE_BUILTIN_TGMATH] (__TGMATH_UNARY_REAL_IMAG_RET_REAL):
21284 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_REAL_IMAG): Likewise.
21285 (__TGMATH_UNARY_REAL_IMAG_RET_REAL_SAME): New macro.
21286 (carg): Use __TGMATH_UNARY_REAL_IMAG_RET_REAL_SAME.
21290 2017-11-14 Joseph Myers <joseph@codesourcery.com>
21292 * string/tester.c (test_stpncpy): Disable -Wstringop-truncation
21293 for stpncpy calls for GCC 8.
21294 (test_strncat): Disable -Wstringop-truncation warning for strncat
21295 calls for GCC 8. Disable -Wstringop-overflow= warning for one
21296 strncat call for GCC 7.
21297 (test_strncpy): Disable -Wstringop-truncation warning for strncpy
21299 (test_memcmp): Use memcpy instead of strncpy for calls not copying
21302 * string/bug-strncat1.c: Include <libc-diag.h>.
21303 (main): Disable -Wstringop-truncation for strncat call for GCC 8.
21305 2017-11-13 Claude Paroz <claude@2xlibre.net>
21308 * localedata/locales/aa_DJ: Improved readibility by replacing
21309 <Uxxxx> sequences in the ASCII printable range by their ASCII
21310 character equivalents.
21311 * localedata/locales/aa_ER: Likewise.
21312 * localedata/locales/aa_ER@saaho: Likewise.
21313 * localedata/locales/aa_ET: Likewise.
21314 * localedata/locales/af_ZA: Likewise.
21315 * localedata/locales/agr_PE: Likewise.
21316 * localedata/locales/ak_GH: Likewise.
21317 * localedata/locales/am_ET: Likewise.
21318 * localedata/locales/anp_IN: Likewise.
21319 * localedata/locales/ar_AE: Likewise.
21320 * localedata/locales/ar_BH: Likewise.
21321 * localedata/locales/ar_DZ: Likewise.
21322 * localedata/locales/ar_EG: Likewise.
21323 * localedata/locales/ar_IN: Likewise.
21324 * localedata/locales/ar_IQ: Likewise.
21325 * localedata/locales/ar_JO: Likewise.
21326 * localedata/locales/ar_KW: Likewise.
21327 * localedata/locales/ar_LB: Likewise.
21328 * localedata/locales/ar_LY: Likewise.
21329 * localedata/locales/ar_MA: Likewise.
21330 * localedata/locales/ar_OM: Likewise.
21331 * localedata/locales/ar_QA: Likewise.
21332 * localedata/locales/ar_SA: Likewise.
21333 * localedata/locales/ar_SD: Likewise.
21334 * localedata/locales/ar_SS: Likewise.
21335 * localedata/locales/ar_SY: Likewise.
21336 * localedata/locales/ar_TN: Likewise.
21337 * localedata/locales/ar_YE: Likewise.
21338 * localedata/locales/as_IN: Likewise.
21339 * localedata/locales/ast_ES: Likewise.
21340 * localedata/locales/ayc_PE: Likewise.
21341 * localedata/locales/az_AZ: Likewise.
21342 * localedata/locales/az_IR: Likewise.
21343 * localedata/locales/be_BY: Likewise.
21344 * localedata/locales/be_BY@latin: Likewise.
21345 * localedata/locales/bem_ZM: Likewise.
21346 * localedata/locales/ber_DZ: Likewise.
21347 * localedata/locales/ber_MA: Likewise.
21348 * localedata/locales/bg_BG: Likewise.
21349 * localedata/locales/bhb_IN: Likewise.
21350 * localedata/locales/bho_IN: Likewise.
21351 * localedata/locales/bi_VU: Likewise.
21352 * localedata/locales/bn_BD: Likewise.
21353 * localedata/locales/bn_IN: Likewise.
21354 * localedata/locales/bo_CN: Likewise.
21355 * localedata/locales/bo_IN: Likewise.
21356 * localedata/locales/br_FR: Likewise.
21357 * localedata/locales/brx_IN: Likewise.
21358 * localedata/locales/bs_BA: Likewise.
21359 * localedata/locales/byn_ER: Likewise.
21360 * localedata/locales/ca_AD: Likewise.
21361 * localedata/locales/ca_ES: Likewise.
21362 * localedata/locales/ca_FR: Likewise.
21363 * localedata/locales/ca_IT: Likewise.
21364 * localedata/locales/ce_RU: Likewise.
21365 * localedata/locales/chr_US: Likewise.
21366 * localedata/locales/cmn_TW: Likewise.
21367 * localedata/locales/crh_UA: Likewise.
21368 * localedata/locales/cs_CZ: Likewise.
21369 * localedata/locales/csb_PL: Likewise.
21370 * localedata/locales/cv_RU: Likewise.
21371 * localedata/locales/cy_GB: Likewise.
21372 * localedata/locales/da_DK: Likewise.
21373 * localedata/locales/de_AT: Likewise.
21374 * localedata/locales/de_BE: Likewise.
21375 * localedata/locales/de_CH: Likewise.
21376 * localedata/locales/de_DE: Likewise.
21377 * localedata/locales/de_IT: Likewise.
21378 * localedata/locales/de_LI: Likewise.
21379 * localedata/locales/de_LU: Likewise.
21380 * localedata/locales/doi_IN: Likewise.
21381 * localedata/locales/dv_MV: Likewise.
21382 * localedata/locales/dz_BT: Likewise.
21383 * localedata/locales/el_CY: Likewise.
21384 * localedata/locales/el_GR: Likewise.
21385 * localedata/locales/en_AG: Likewise.
21386 * localedata/locales/en_AU: Likewise.
21387 * localedata/locales/en_BW: Likewise.
21388 * localedata/locales/en_CA: Likewise.
21389 * localedata/locales/en_DK: Likewise.
21390 * localedata/locales/en_GB: Likewise.
21391 * localedata/locales/en_HK: Likewise.
21392 * localedata/locales/en_IE: Likewise.
21393 * localedata/locales/en_IL: Likewise.
21394 * localedata/locales/en_IN: Likewise.
21395 * localedata/locales/en_NG: Likewise.
21396 * localedata/locales/en_NZ: Likewise.
21397 * localedata/locales/en_PH: Likewise.
21398 * localedata/locales/en_SG: Likewise.
21399 * localedata/locales/en_US: Likewise.
21400 * localedata/locales/en_ZA: Likewise.
21401 * localedata/locales/en_ZM: Likewise.
21402 * localedata/locales/en_ZW: Likewise.
21403 * localedata/locales/eo: Likewise.
21404 * localedata/locales/es_AR: Likewise.
21405 * localedata/locales/es_BO: Likewise.
21406 * localedata/locales/es_CL: Likewise.
21407 * localedata/locales/es_CO: Likewise.
21408 * localedata/locales/es_CR: Likewise.
21409 * localedata/locales/es_CU: Likewise.
21410 * localedata/locales/es_DO: Likewise.
21411 * localedata/locales/es_EC: Likewise.
21412 * localedata/locales/es_ES: Likewise.
21413 * localedata/locales/es_GT: Likewise.
21414 * localedata/locales/es_HN: Likewise.
21415 * localedata/locales/es_MX: Likewise.
21416 * localedata/locales/es_NI: Likewise.
21417 * localedata/locales/es_PA: Likewise.
21418 * localedata/locales/es_PE: Likewise.
21419 * localedata/locales/es_PR: Likewise.
21420 * localedata/locales/es_PY: Likewise.
21421 * localedata/locales/es_SV: Likewise.
21422 * localedata/locales/es_US: Likewise.
21423 * localedata/locales/es_UY: Likewise.
21424 * localedata/locales/es_VE: Likewise.
21425 * localedata/locales/et_EE: Likewise.
21426 * localedata/locales/eu_ES: Likewise.
21427 * localedata/locales/eu_ES@euro: Likewise.
21428 * localedata/locales/fa_IR: Likewise.
21429 * localedata/locales/ff_SN: Likewise.
21430 * localedata/locales/fi_FI: Likewise.
21431 * localedata/locales/fil_PH: Likewise.
21432 * localedata/locales/fo_FO: Likewise.
21433 * localedata/locales/fr_BE: Likewise.
21434 * localedata/locales/fr_CA: Likewise.
21435 * localedata/locales/fr_CH: Likewise.
21436 * localedata/locales/fr_FR: Likewise.
21437 * localedata/locales/fr_LU: Likewise.
21438 * localedata/locales/fur_IT: Likewise.
21439 * localedata/locales/fy_DE: Likewise.
21440 * localedata/locales/fy_NL: Likewise.
21441 * localedata/locales/ga_IE: Likewise.
21442 * localedata/locales/gd_GB: Likewise.
21443 * localedata/locales/gez_ER: Likewise.
21444 * localedata/locales/gez_ET: Likewise.
21445 * localedata/locales/gl_ES: Likewise.
21446 * localedata/locales/gu_IN: Likewise.
21447 * localedata/locales/gv_GB: Likewise.
21448 * localedata/locales/ha_NG: Likewise.
21449 * localedata/locales/hak_TW: Likewise.
21450 * localedata/locales/he_IL: Likewise.
21451 * localedata/locales/hi_IN: Likewise.
21452 * localedata/locales/hif_FJ: Likewise.
21453 * localedata/locales/hne_IN: Likewise.
21454 * localedata/locales/hr_HR: Likewise.
21455 * localedata/locales/hsb_DE: Likewise.
21456 * localedata/locales/ht_HT: Likewise.
21457 * localedata/locales/hu_HU: Likewise.
21458 * localedata/locales/hy_AM: Likewise.
21459 * localedata/locales/i18n: Likewise.
21460 * localedata/locales/ia_FR: Likewise.
21461 * localedata/locales/id_ID: Likewise.
21462 * localedata/locales/ig_NG: Likewise.
21463 * localedata/locales/ik_CA: Likewise.
21464 * localedata/locales/is_IS: Likewise.
21465 * localedata/locales/it_CH: Likewise.
21466 * localedata/locales/it_IT: Likewise.
21467 * localedata/locales/iu_CA: Likewise.
21468 * localedata/locales/ja_JP: Likewise.
21469 * localedata/locales/ka_GE: Likewise.
21470 * localedata/locales/kk_KZ: Likewise.
21471 * localedata/locales/kl_GL: Likewise.
21472 * localedata/locales/kn_IN: Likewise.
21473 * localedata/locales/ko_KR: Likewise.
21474 * localedata/locales/kok_IN: Likewise.
21475 * localedata/locales/ks_IN: Likewise.
21476 * localedata/locales/ks_IN@devanagari: Likewise.
21477 * localedata/locales/ku_TR: Likewise.
21478 * localedata/locales/kw_GB: Likewise.
21479 * localedata/locales/ky_KG: Likewise.
21480 * localedata/locales/lb_LU: Likewise.
21481 * localedata/locales/lg_UG: Likewise.
21482 * localedata/locales/li_BE: Likewise.
21483 * localedata/locales/li_NL: Likewise.
21484 * localedata/locales/lij_IT: Likewise.
21485 * localedata/locales/ln_CD: Likewise.
21486 * localedata/locales/lo_LA: Likewise.
21487 * localedata/locales/lt_LT: Likewise.
21488 * localedata/locales/lv_LV: Likewise.
21489 * localedata/locales/lzh_TW: Likewise.
21490 * localedata/locales/mag_IN: Likewise.
21491 * localedata/locales/mai_IN: Likewise.
21492 * localedata/locales/mg_MG: Likewise.
21493 * localedata/locales/mhr_RU: Likewise.
21494 * localedata/locales/mi_NZ: Likewise.
21495 * localedata/locales/mk_MK: Likewise.
21496 * localedata/locales/ml_IN: Likewise.
21497 * localedata/locales/mn_MN: Likewise.
21498 * localedata/locales/mni_IN: Likewise.
21499 * localedata/locales/mr_IN: Likewise.
21500 * localedata/locales/ms_MY: Likewise.
21501 * localedata/locales/mt_MT: Likewise.
21502 * localedata/locales/my_MM: Likewise.
21503 * localedata/locales/nan_TW: Likewise.
21504 * localedata/locales/nan_TW@latin: Likewise.
21505 * localedata/locales/nb_NO: Likewise.
21506 * localedata/locales/nds_DE: Likewise.
21507 * localedata/locales/nds_NL: Likewise.
21508 * localedata/locales/ne_NP: Likewise.
21509 * localedata/locales/nhn_MX: Likewise.
21510 * localedata/locales/niu_NU: Likewise.
21511 * localedata/locales/niu_NZ: Likewise.
21512 * localedata/locales/nl_AW: Likewise.
21513 * localedata/locales/nl_BE: Likewise.
21514 * localedata/locales/nl_NL: Likewise.
21515 * localedata/locales/nn_NO: Likewise.
21516 * localedata/locales/nr_ZA: Likewise.
21517 * localedata/locales/nso_ZA: Likewise.
21518 * localedata/locales/oc_FR: Likewise.
21519 * localedata/locales/om_ET: Likewise.
21520 * localedata/locales/om_KE: Likewise.
21521 * localedata/locales/or_IN: Likewise.
21522 * localedata/locales/os_RU: Likewise.
21523 * localedata/locales/pa_IN: Likewise.
21524 * localedata/locales/pa_PK: Likewise.
21525 * localedata/locales/pap_AW: Likewise.
21526 * localedata/locales/pap_CW: Likewise.
21527 * localedata/locales/pl_PL: Likewise.
21528 * localedata/locales/ps_AF: Likewise.
21529 * localedata/locales/pt_BR: Likewise.
21530 * localedata/locales/pt_PT: Likewise.
21531 * localedata/locales/quz_PE: Likewise.
21532 * localedata/locales/raj_IN: Likewise.
21533 * localedata/locales/ro_RO: Likewise.
21534 * localedata/locales/ru_RU: Likewise.
21535 * localedata/locales/ru_UA: Likewise.
21536 * localedata/locales/rw_RW: Likewise.
21537 * localedata/locales/sa_IN: Likewise.
21538 * localedata/locales/sat_IN: Likewise.
21539 * localedata/locales/sc_IT: Likewise.
21540 * localedata/locales/sd_IN: Likewise.
21541 * localedata/locales/sd_IN@devanagari: Likewise.
21542 * localedata/locales/se_NO: Likewise.
21543 * localedata/locales/sgs_LT: Likewise.
21544 * localedata/locales/shs_CA: Likewise.
21545 * localedata/locales/si_LK: Likewise.
21546 * localedata/locales/sid_ET: Likewise.
21547 * localedata/locales/sk_SK: Likewise.
21548 * localedata/locales/sl_SI: Likewise.
21549 * localedata/locales/sm_WS: Likewise.
21550 * localedata/locales/so_DJ: Likewise.
21551 * localedata/locales/so_ET: Likewise.
21552 * localedata/locales/so_KE: Likewise.
21553 * localedata/locales/so_SO: Likewise.
21554 * localedata/locales/sq_AL: Likewise.
21555 * localedata/locales/sq_MK: Likewise.
21556 * localedata/locales/sr_ME: Likewise.
21557 * localedata/locales/sr_RS: Likewise.
21558 * localedata/locales/sr_RS@latin: Likewise.
21559 * localedata/locales/ss_ZA: Likewise.
21560 * localedata/locales/st_ZA: Likewise.
21561 * localedata/locales/sv_FI: Likewise.
21562 * localedata/locales/sv_SE: Likewise.
21563 * localedata/locales/sw_KE: Likewise.
21564 * localedata/locales/sw_TZ: Likewise.
21565 * localedata/locales/szl_PL: Likewise.
21566 * localedata/locales/ta_IN: Likewise.
21567 * localedata/locales/ta_LK: Likewise.
21568 * localedata/locales/tcy_IN: Likewise.
21569 * localedata/locales/te_IN: Likewise.
21570 * localedata/locales/tg_TJ: Likewise.
21571 * localedata/locales/th_TH: Likewise.
21572 * localedata/locales/the_NP: Likewise.
21573 * localedata/locales/ti_ER: Likewise.
21574 * localedata/locales/ti_ET: Likewise.
21575 * localedata/locales/tig_ER: Likewise.
21576 * localedata/locales/tk_TM: Likewise.
21577 * localedata/locales/tl_PH: Likewise.
21578 * localedata/locales/tn_ZA: Likewise.
21579 * localedata/locales/to_TO: Likewise.
21580 * localedata/locales/tpi_PG: Likewise.
21581 * localedata/locales/tr_CY: Likewise.
21582 * localedata/locales/tr_TR: Likewise.
21583 * localedata/locales/ts_ZA: Likewise.
21584 * localedata/locales/tt_RU: Likewise.
21585 * localedata/locales/tt_RU@iqtelif: Likewise.
21586 * localedata/locales/ug_CN: Likewise.
21587 * localedata/locales/uk_UA: Likewise.
21588 * localedata/locales/unm_US: Likewise.
21589 * localedata/locales/ur_IN: Likewise.
21590 * localedata/locales/ur_PK: Likewise.
21591 * localedata/locales/uz_UZ: Likewise.
21592 * localedata/locales/uz_UZ@cyrillic: Likewise.
21593 * localedata/locales/ve_ZA: Likewise.
21594 * localedata/locales/vi_VN: Likewise.
21595 * localedata/locales/wa_BE: Likewise.
21596 * localedata/locales/wae_CH: Likewise.
21597 * localedata/locales/wal_ET: Likewise.
21598 * localedata/locales/wo_SN: Likewise.
21599 * localedata/locales/xh_ZA: Likewise.
21600 * localedata/locales/yi_US: Likewise.
21601 * localedata/locales/yo_NG: Likewise.
21602 * localedata/locales/yue_HK: Likewise.
21603 * localedata/locales/yuw_PG: Likewise.
21604 * localedata/locales/zh_CN: Likewise.
21605 * localedata/locales/zh_HK: Likewise.
21606 * localedata/locales/zh_SG: Likewise.
21607 * localedata/locales/zh_TW: Likewise.
21608 * localedata/locales/zu_ZA: Likewise.
21610 2017-11-13 Florian Weimer <fweimer@redhat.com>
21612 * support/next_to_fault.h, support/next_to_fault.c: New files.
21613 * support/Makefile (libsupport-routines): Add next_to_fault.
21614 * resolv/tst-inet_pton.c (struct next_to_fault)
21615 (next_to_fault_allocate, next_to_fault_free): Remove.
21616 (run_one_test): Switch to <support/next_to_fault.h> interfaces.
21618 2017-11-13 H.J. Lu <hongjiu.lu@intel.com>
21620 * elf/dl-support.c: Include <dl-procruntime.c>.
21621 * include/link.h: Include <link_map.h>.
21622 * sysdeps/generic/dl-procruntime.c: New file.
21623 * sysdeps/generic/link_map.h: Likewise.
21624 * sysdeps/generic/ldsodefs.h: Include <dl-procruntime.c> in
21625 the writable ld.so namespace.
21627 2017-11-12 Paul Eggert <eggert@cs.ucla.edu>
21629 timezone: pacify GCC -Wstringop-truncation
21630 Problem reported by Martin Sebor in:
21631 https://sourceware.org/ml/libc-alpha/2017-11/msg00336.html
21632 * timezone/zic.c (writezone): Use memcpy, not strncpy.
21634 2017-11-12 Florian Weimer <fweimer@redhat.com>
21636 * support/Makefile (libsupport-routines): Add xreadlink, xstrndup,
21638 (tests): Add tst-xreadlink.
21639 * support/support.h (xstrndup): Declare.
21640 * support/xunistd.h (xunlink, xreadlink): Declare.
21641 * support/temp_file.h (support_create_temp_directory): Declare.
21642 * support/temp_file.c (support_create_temp_directory): New function.
21643 * support/support_chroot.c (support_chroot_create): Use it.
21644 * support/xreadlink.c: New file.
21645 * support/xstrndup.c: Likewise.
21646 * support/xunlink.c: Likewise.
21647 * support/tst-xreadlink.c: Likewise.
21649 2017-11-11 John David Anglin <danglin@gcc.gnu.org>
21651 * sysdeps/hppa/fpu/libm-test-ulps: Update clog10_downward ulps.
21653 2017-11-11 Florian Weimer <fweimer@redhat.com>
21657 * resolv/res_comp.c (printable_string, binary_hnok)
21658 (binary_leading_dash): New functions.
21659 (res_hnok): Reimplement using these functions and ns_name_pton.
21660 (res_ownok): Likewise.
21661 (res_mailok): Reimplement using printable_string, ns_name_pton and
21663 (res_dnok): Reimplement using printable_string and ns_name_pton.
21664 * resolv/tst-res_hnok.c (tests): Add additional tests.
21665 (LETTERDIGITS, PRINTABLE): Define.
21666 (do_test): Adjust one_char results.
21668 2017-11-11 Florian Weimer <fweimer@redhat.com>
21671 * resolv/ns_name.c (ns_name_pton): Treat trailing backslash as error.
21672 * resolv/tst-ns_name_pton.c (tests): Add trailing backslash tests.
21674 2017-11-11 Florian Weimer <fweimer@redhat.com>
21676 * resolv/tst-ns_name_pton.c: New file.
21677 * resolv/Makefile (tests): Add tst-ns_name_pton.
21678 (tst-ns_name_pton): Link against libresolv.
21680 2017-11-11 Florian Weimer <fweimer@redhat.com>
21682 * resolv/tst-res_hnok.c: New file.
21683 * resolv/Makefile (tests): Add tst-res_hnok.
21684 (tst-res_hnok): Link against libresolv.
21686 2017-11-11 Florian Weimer <fweimer@redhat.com>
21688 * resolv/tst-resolv-network.c: Use test framework instead explicit
21691 2017-11-09 H.J. Lu <hongjiu.lu@intel.com>
21693 * include/setjmp.h [!_ISOMAC]: Include <stddef.h> and
21694 <jmp_buf-macros.h>.
21695 [!_ISOMAC] (STR_HELPER): New.
21696 [!_ISOMAC] (STR): Likewise.
21697 [!_ISOMAC] (TEST_SIZE): Likewise.
21698 [!_ISOMAC] (TEST_ALIGN): Likewise.
21699 [!_ISOMAC] (TEST_OFFSET): Likewise.
21700 [!_ISOMAC] Add _Static_assert to check sizes, alignments and
21701 field offsets of jmp_buf as well as sigjmp_buf.
21702 * sysdeps/unix/sysv/linux/aarch64/jmp_buf-macros.h: Likewise.
21703 * sysdeps/unix/sysv/linux/alpha/jmp_buf-macros.h: Likewise.
21704 * sysdeps/unix/sysv/linux/arm/jmp_buf-macros.h: Likewise.
21705 * sysdeps/unix/sysv/linux/hppa/jmp_buf-macros.h: Likewise.
21706 * sysdeps/unix/sysv/linux/i386/jmp_buf-macros.h: Likewise.
21707 * sysdeps/unix/sysv/linux/ia64/jmp_buf-macros.h: Likewise.
21708 * sysdeps/unix/sysv/linux/m68k/jmp_buf-macros.h: Likewise.
21709 * sysdeps/unix/sysv/linux/microblaze/jmp_buf-macros.h: Likewise.
21710 * sysdeps/unix/sysv/linux/mips/mips32/jmp_buf-macros.h: Likewise.
21711 * sysdeps/unix/sysv/linux/mips/mips64/n32/jmp_buf-macros.h:
21713 * sysdeps/unix/sysv/linux/mips/mips64/n64/jmp_buf-macros.h:
21715 * sysdeps/unix/sysv/linux/nios2/jmp_buf-macros.h: Likewise.
21716 * sysdeps/unix/sysv/linux/powerpc/powerpc32/jmp_buf-macros.h:
21718 * sysdeps/unix/sysv/linux/powerpc/powerpc64/jmp_buf-macros.h:
21720 * sysdeps/unix/sysv/linux/s390/s390-32/jmp_buf-macros.h: Likewise.
21721 * sysdeps/unix/sysv/linux/s390/s390-64/jmp_buf-macros.h: Likewise.
21722 * sysdeps/unix/sysv/linux/sh/jmp_buf-macros.h: Likewise.
21723 * sysdeps/unix/sysv/linux/sparc/sparc32/jmp_buf-macros.h: Likewise.
21724 * sysdeps/unix/sysv/linux/sparc/sparc64/jmp_buf-macros.h: Likewise.
21725 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/jmp_buf-macros.h:
21727 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/jmp_buf-macros.h:
21729 * sysdeps/unix/sysv/linux/tile/tilepro/jmp_buf-macros.h: Likewise.
21730 * sysdeps/unix/sysv/linux/x86_64/64/jmp_buf-macros.h: Likewise.
21731 * sysdeps/unix/sysv/linux/x86_64/x32/jmp_buf-macros.h: Likewise.
21733 2017-11-07 Joseph Myers <joseph@codesourcery.com>
21736 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21737 && __HAVE_FLOAT32] (FLT32_MANT_DIG): New macro.
21738 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21739 && __HAVE_FLOAT32] (FLT32_DECIMAL_DIG): Likewise.
21740 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21741 && __HAVE_FLOAT32] (FLT32_DIG): Likewise.
21742 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21743 && __HAVE_FLOAT32] (FLT32_MIN_EXP): Likewise.
21744 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21745 && __HAVE_FLOAT32] (FLT32_MIN_10_EXP): Likewise.
21746 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21747 && __HAVE_FLOAT32] (FLT32_MAX_EXP): Likewise.
21748 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21749 && __HAVE_FLOAT32] (FLT32_MAX_10_EXP): Likewise.
21750 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21751 && __HAVE_FLOAT32] (FLT32_MAX): Likewise.
21752 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21753 && __HAVE_FLOAT32] (FLT32_EPSILON): Likewise.
21754 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21755 && __HAVE_FLOAT32] (FLT32_MIN): Likewise.
21756 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21757 && __HAVE_FLOAT32] (FLT32_TRUE_MIN): Likewise.
21758 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21759 && __HAVE_FLOAT64] (FLT64_MANT_DIG): Likewise.
21760 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21761 && __HAVE_FLOAT64] (FLT64_DECIMAL_DIG): Likewise.
21762 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21763 && __HAVE_FLOAT64] (FLT64_DIG): Likewise.
21764 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21765 && __HAVE_FLOAT64] (FLT64_MIN_EXP): Likewise.
21766 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21767 && __HAVE_FLOAT64] (FLT64_MIN_10_EXP): Likewise.
21768 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21769 && __HAVE_FLOAT64] (FLT64_MAX_EXP): Likewise.
21770 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21771 && __HAVE_FLOAT64] (FLT64_MAX_10_EXP): Likewise.
21772 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21773 && __HAVE_FLOAT64] (FLT64_MAX): Likewise.
21774 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21775 && __HAVE_FLOAT64] (FLT64_EPSILON): Likewise.
21776 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21777 && __HAVE_FLOAT64] (FLT64_MIN): Likewise.
21778 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21779 && __HAVE_FLOAT64] (FLT64_TRUE_MIN): Likewise.
21780 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21781 && __HAVE_FLOAT32X] (FLT32X_MANT_DIG): Likewise.
21782 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21783 && __HAVE_FLOAT32X] (FLT32X_DECIMAL_DIG): Likewise.
21784 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21785 && __HAVE_FLOAT32X] (FLT32X_DIG): Likewise.
21786 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21787 && __HAVE_FLOAT32X] (FLT32X_MIN_EXP): Likewise.
21788 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21789 && __HAVE_FLOAT32X] (FLT32X_MIN_10_EXP): Likewise.
21790 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21791 && __HAVE_FLOAT32X] (FLT32X_MAX_EXP): Likewise.
21792 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21793 && __HAVE_FLOAT32X] (FLT32X_MAX_10_EXP): Likewise.
21794 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21795 && __HAVE_FLOAT32X] (FLT32X_MAX): Likewise.
21796 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21797 && __HAVE_FLOAT32X] (FLT32X_EPSILON): Likewise.
21798 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21799 && __HAVE_FLOAT32X] (FLT32X_MIN): Likewise.
21800 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21801 && __HAVE_FLOAT32X] (FLT32X_TRUE_MIN): Likewise.
21802 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21803 && __HAVE_FLOAT64X] (FLT64X_MANT_DIG): Likewise.
21804 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21805 && __HAVE_FLOAT64X] (FLT64X_DECIMAL_DIG): Likewise.
21806 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21807 && __HAVE_FLOAT64X] (FLT64X_DIG): Likewise.
21808 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21809 && __HAVE_FLOAT64X] (FLT64X_MIN_EXP): Likewise.
21810 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21811 && __HAVE_FLOAT64X] (FLT64X_MIN_10_EXP): Likewise.
21812 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21813 && __HAVE_FLOAT64X] (FLT64X_MAX_EXP): Likewise.
21814 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21815 && __HAVE_FLOAT64X] (FLT64X_MAX_10_EXP): Likewise.
21816 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21817 && __HAVE_FLOAT64X] (FLT64X_MAX): Likewise.
21818 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21819 && __HAVE_FLOAT64X] (FLT64X_EPSILON): Likewise.
21820 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21821 && __HAVE_FLOAT64X] (FLT64X_MIN): Likewise.
21822 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
21823 && __HAVE_FLOAT64X] (FLT64X_TRUE_MIN): Likewise.
21825 * stdlib/tst-strtod.h (F16): New macro.
21831 (IF_FLOAT16): Likewise.
21832 (IF_FLOAT32): Likewise.
21833 (IF_FLOAT64): Likewise.
21834 (IF_FLOAT32X): Likewise.
21835 (IF_FLOAT64X): Likewise.
21836 (IF_FLOAT128X): Likewise.
21837 (GEN_TEST_STRTOD_FOREACH): Conditionally call macros for _Float16,
21838 _Float32, _Float64, _Float32x, _Float64x and _Float128x.
21839 (STRTOD_TEST_FOREACH): Likewise.
21840 * stdlib/tst-strtod-round-skeleton.c (CHOOSE_f32): New macro.
21841 (CHOOSE_f64): Likewise.
21842 (CHOOSE_f32x): Likewise.
21843 (CHOOSE_f64x): Likewise.
21845 2017-11-07 Andreas Schwab <schwab@suse.de>
21847 * nptl/Makefile (tests-internal): Remove tst-typesizes.
21849 2017-11-07 Mike FABIAN <mfabian@redhat.com>
21852 * localedata/locales/mfe_MU (LC_TIME): Fix wrong d_fmt, / needs
21854 * localedata/locales/miq_NI (LC_TIME): Fix wrong d_fmt, / needs
21857 2017-11-07 Claude Paroz <claude@2xlibre.net>
21860 * localedata/locales/an_ES (LC_TIME): Fix wrong d_fmt, / needs
21862 * localedata/locales/kab_DZ (LC_TIME): Fix wrong d_fmt, / needs
21864 * localedata/locales/om_ET (LC_TIME): Fix wrong d_fmt, / needs
21867 2017-11-07 Adhemerval Zanella <adhemerval.zanella@linaro.org>
21870 * nptl/allocatestack.c (allocate_stack): Check if
21871 __PTHREAD_MUTEX_HAVE_PREV is non-zero, instead if
21872 __PTHREAD_MUTEX_HAVE_PREV is defined.
21873 * nptl/descr.h (pthread): Likewise.
21874 * nptl/nptl-init.c (__pthread_initialize_minimal_internal):
21876 * nptl/pthread_create.c (START_THREAD_DEFN): Likewise.
21877 * sysdeps/nptl/fork.c (__libc_fork): Likewise.
21878 * sysdeps/nptl/pthread.h (PTHREAD_MUTEX_INITIALIZER): Likewise.
21879 * sysdeps/nptl/bits/thread-shared-types.h
21880 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION): New
21882 (__pthread_internal_list): Check __PTHREAD_MUTEX_USE_UNION instead
21883 of __WORDSIZE for internal layout.
21884 (__pthread_mutex_s): Check __PTHREAD_MUTEX_NUSERS_AFTER_KIND instead
21885 of __WORDSIZE for internal __nusers layout and __PTHREAD_MUTEX_USE_UNION
21886 instead of __WORDSIZE whether to use an union for __spins and __list
21888 (__PTHREAD_MUTEX_HAVE_PREV): Define also for __PTHREAD_MUTEX_USE_UNION
21890 * sysdeps/aarch64/nptl/bits/pthreadtypes-arch.h
21891 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION): New
21893 * sysdeps/alpha/nptl/bits/pthreadtypes-arch.h
21894 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
21896 * sysdeps/arm/nptl/bits/pthreadtypes-arch.h
21897 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
21899 * sysdeps/hppa/nptl/bits/pthreadtypes-arch.h
21900 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
21902 * sysdeps/ia64/nptl/bits/pthreadtypes-arch.h
21903 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
21905 * sysdeps/m68k/nptl/bits/pthreadtypes-arch.h
21906 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
21908 * sysdeps/microblaze/nptl/bits/pthreadtypes-arch.h
21909 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
21911 * sysdeps/mips/nptl/bits/pthreadtypes-arch.h
21912 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
21914 * sysdeps/nios2/nptl/bits/pthreadtypes-arch.h
21915 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
21917 * sysdeps/powerpc/nptl/bits/pthreadtypes-arch.h
21918 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
21920 * sysdeps/s390/nptl/bits/pthreadtypes-arch.h
21921 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
21923 * sysdeps/sh/nptl/bits/pthreadtypes-arch.h
21924 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
21926 * sysdeps/sparc/nptl/bits/pthreadtypes-arch.h
21927 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
21929 * sysdeps/tile/nptl/bits/pthreadtypes-arch.h
21930 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
21932 * sysdeps/x86/nptl/bits/pthreadtypes-arch.h
21933 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
21936 * nptl/pthreadP.h (ASSERT_TYPE_SIZE, ASSERT_PTHREAD_INTERNAL_SIZE):
21938 * nptl/pthread_attr_init.c (__pthread_mutex_init): Add build time
21939 checks for expected input type size.
21940 * nptl/pthread_barrier_init.c (__pthread_barrier_init): Likewise.
21941 * nptl/pthread_barrierattr_init.c (pthread_barrierattr_init):
21943 * nptl/pthread_cond_init.c (__pthread_cond_init): Likewise.
21944 * nptl/pthread_condattr_init.c (__pthread_condattr_init): Likewise.
21945 * nptl/pthread_mutex_init.c (__pthread_mutex_init): Likewise.
21946 * nptl/pthread_mutexattr_init.c (__pthread_mutexattr_init): Likewise.
21947 * nptl/pthread_rwlock_init.c (__pthread_rwlock_init): Likewise.
21948 * nptl/pthread_rwlockattr_init.c (pthread_rwlockattr_init): Likewise.
21949 * nptl/sem_init.c (__new_sem_init, __old_sem_init): Likewise
21950 * nptl/pthread_attr_destroy.c (__pthread_attr_destroy): Remove
21951 superflous runtime assert check.
21952 * nptl/pthread_attr_getaffinity.c (__pthread_attr_getaffinity_new):
21954 * nptl/pthread_attr_getdetachstate.c (__pthread_attr_getdetachstate):
21956 * nptl/pthread_attr_getguardsize.c (pthread_attr_getguardsize):
21958 * nptl/pthread_attr_getinheritsched.c (__pthread_attr_getinheritsched):
21960 * nptl/pthread_attr_getschedparam.c (__pthread_attr_getschedparam):
21962 * nptl/pthread_attr_getschedpolicy.c (__pthread_attr_getschedpolicy):
21964 * nptl/pthread_attr_getscope.c (__pthread_attr_getscope): Likewise.
21965 * nptl/pthread_attr_getstack.c (__pthread_attr_getstack): Likewise.
21966 * nptl/pthread_attr_getstackaddr.c (__pthread_attr_getstackaddr):
21968 * nptl/pthread_attr_getstacksize.c (__pthread_attr_getstacksize):
21970 * nptl/pthread_attr_setaffinity.c (__pthread_attr_setaffinity_new):
21972 * nptl/pthread_attr_setdetachstate.c (__pthread_attr_setdetachstate):
21974 * nptl/pthread_attr_setguardsize.c (pthread_attr_setguardsize):
21976 * nptl/pthread_attr_setinheritsched.c
21977 (__pthread_attr_setinheritsched): Likewise.
21978 * nptl/pthread_attr_setschedparam.c (__pthread_attr_setschedparam):
21980 * nptl/pthread_attr_setschedpolicy.c (__pthread_attr_setschedpolicy):
21982 * nptl/pthread_attr_setscope.c (__pthread_attr_setscope): Likewise.
21983 * nptl/pthread_attr_setstack.c (__pthread_attr_setstack,
21984 __old_pthread_attr_setstack): Likewise.
21985 * nptl/pthread_attr_setstackaddr.c (__pthread_attr_setstackaddr):
21987 * nptl/pthread_attr_setstacksize.c (__pthread_attr_setstacksize):
21989 * nptl/pthread_getattr_default_np.c (pthread_getattr_default_np):
21991 * nptl/pthread_mutex_lock.c (__pthread_mutex_lock): Likewise.
21992 * nptl/pthread_setattr_default_np.c (pthread_setattr_default_np):
21994 * nptl/tst-typesizes.c: Remove file.
21996 * nptl/pthreadP.h (ASSERT_PTHREAD_STRING,
21997 ASSERT_PTHREAD_INTERNAL_OFFSET): New macro.
21998 * nptl/pthread_mutex_init.c (__pthread_mutex_init): Add build time
21999 checks for internal pthread_mutex_t offsets.
22000 * sysdeps/aarch64/nptl/pthread-offsets.h
22001 (__PTHREAD_MUTEX_NUSERS_OFFSET, __PTHREAD_MUTEX_KIND_OFFSET,
22002 __PTHREAD_MUTEX_SPINS_OFFSET, __PTHREAD_MUTEX_ELISION_OFFSET,
22003 __PTHREAD_MUTEX_LIST_OFFSET): New macro.
22004 * sysdeps/alpha/nptl/pthread-offsets.h: Likewise.
22005 * sysdeps/arm/nptl/pthread-offsets.h: Likewise.
22006 * sysdeps/hppa/nptl/pthread-offsets.h: Likewise.
22007 * sysdeps/i386/nptl/pthread-offsets.h: Likewise.
22008 * sysdeps/ia64/nptl/pthread-offsets.h: Likewise.
22009 * sysdeps/m68k/nptl/pthread-offsets.h: Likewise.
22010 * sysdeps/microblaze/nptl/pthread-offsets.h: Likewise.
22011 * sysdeps/mips/nptl/pthread-offsets.h: Likewise.
22012 * sysdeps/nios2/nptl/pthread-offsets.h: Likewise.
22013 * sysdeps/powerpc/nptl/pthread-offsets.h: Likewise.
22014 * sysdeps/s390/nptl/pthread-offsets.h: Likewise.
22015 * sysdeps/sh/nptl/pthread-offsets.h: Likewise.
22016 * sysdeps/sparc/nptl/pthread-offsets.h: Likewise.
22017 * sysdeps/tile/nptl/pthread-offsets.h: Likewise.
22018 * sysdeps/x86_64/nptl/pthread-offsets.h: Likewise.
22020 2017-11-07 Florian Weimer <fweimer@redhat.com>
22022 * bits/mman-linux.h: Move ...
22023 * sysdeps/unix/sysv/linux/bits/mman-linux.h: ... here. Update
22025 * sysdeps/unix/sysv/linux/bits/Makefile (sysdep_headers): Remove
22028 2017-11-07 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
22030 * sysdeps/powerpc/powerpc64/multiarch/strcasestr-power8.S (STRNLEN):
22031 Redefine STRNLEN as __strnlen_power8.
22033 2017-11-06 Adhemerval Zanella <adhemerval.zanella@linaro.org>
22035 * signal/sighold.c (sighold): Optimize implementation.
22037 * sysdeps/unix/sysv/linux/sigqueue.c (__sigqueue): Asssume
22038 __NR_rt_sigqueueinfo.
22040 * sysdeps/unix/sysv/linux/Versions (libc) [GLIBC_PRIVATE]: Add
22042 * sysdeps/unix/sysv/linux/sigtimedwait.c: Simplify includes and
22043 assume __NR_rt_sigtimedwait.
22044 * sysdeps/unix/sysv/linux/sigwait.c (__sigwait): Call __sigtimedwait
22045 and add LIBC_CANCEL_HANDLED for cancellation marking.
22046 * sysdeps/unix/sysv/linux/sigwaitinfo.c (__sigwaitinfo): Likewise.
22048 * sysdeps/arm/armv7/multiarch/Makefile [$(subdir) = string]
22049 (sysdeps_routines): Add memchr_noneon.
22050 * sysdeps/arm/armv7/multiarch/ifunc-memchr.h: New file.
22051 * sysdeps/arm/armv7/multiarch/memchr_noneon.S: Likewise.
22052 * sysdeps/arm/armv7/multiarch/rtld-memchr.S: Likewise.
22053 * sysdeps/arm/armv7/multiarch/memchr.S: Remove file.
22054 * sysdeps/arm/armv7/multiarch/memchr.c: New file.
22055 * sysdeps/arm/armv7/multiarch/memchr_impl.S: Move to ...
22056 * sysdeps/arm/armv7/multiarch/memchr_neon.S: ... here.
22058 * sysdeps/arm/arm-ifunc.h: New file.
22059 * sysdeps/arm/armv7/multiarch/ifunc-memcpy.h: Likewise.
22060 * sysdeps/arm/armv7/multiarch/memcpy.c: Likewise.
22061 * sysdeps/arm/armv7/multiarch/memcpy_arm.S: Likewise.
22062 * sysdeps/arm/armv7/multiarch/rtld-memcpy.S: Likewise.
22063 * sysdeps/arm/armv7/multiarch/memcpy_neon.S [!__ARM_NEON__]
22064 (__memcpy_neon): Avoid create hidden alias.
22065 * sysdeps/arm/armv7/multiarch/memcpy_vfp.S [!__ARM_NEON_]
22066 (__memcpy_vfp): Likewise.
22067 * sysdeps/arm/armv7/multiarch/Makefile [$(subdir) = string]
22068 (sysdep_routines): Add memcpy_arm.
22069 * sysdeps/arm/armv7/multiarch/memcpy.S: Remove file.
22071 2017-11-06 H.J. Lu <hongjiu.lu@intel.com>
22074 * Makerules (make-link-multidir): New.
22075 * config.make.in (multidir): New.
22076 * configure.ac (libc_cv_multidir): New. AC_SUBST.
22077 * configure: Regenerated.
22078 * csu/Makefile [$(multidir) != .](multilib-extra-objs): New.
22079 [$(multidir) != .](extra-objs): Add $(multilib-extra-objs).
22080 [$(multidir) != .]($(addprefix $(objpfx)$(multidir)/, $(install-lib))):
22083 2017-11-06 Joseph Myers <joseph@codesourcery.com>
22086 * sysdeps/powerpc/bits/floatn.h: Include <bits/long-double.h>.
22087 [__NO_LONG_DOUBLE_MATH] (__HAVE_FLOAT128): Define to 0.
22089 2017-11-04 Mike FABIAN <mfabian@redhat.com>
22091 * localedata/locales/tpi_PG (LC_TIME): Fix wrong d_fmt, / needs
22094 2017-11-04 Florian Weimer <fweimer@redhat.com>
22096 * manual/llio.texi (Open-time Flags): Document O_TMPFILE.
22098 2017-11-03 Joseph Myers <joseph@codesourcery.com>
22100 * math/math.h [__HAVE_DISTINCT_FLOAT16
22101 || __HAVE_DISTINCT_FLOAT32 || __HAVE_DISTINCT_FLOAT64
22102 || __HAVE_DISTINCT_FLOAT32X || __HAVE_DISTINCT_FLOAT64X
22103 || __HAVE_DISTINCT_FLOAT128X]: Use #error.
22104 [__NO_LONG_DOUBLE_MATH && __HAVE_DISTINCT_FLOAT128]: Likewise.
22105 [__HAVE_DISTINCT_FLOAT128 && !__HAVE_GENERIC_SELECTION
22106 && __HAVE_FLOATN_NOT_TYPEDEF]: Likewise.
22107 [__HAVE_DISTINCT_FLOAT128 && __HAVE_GENERIC_SELECTION]
22108 (__MATH_TG_F32): New macro.
22109 [__HAVE_DISTINCT_FLOAT128 && __HAVE_GENERIC_SELECTION]
22110 (__MATH_TG_F64X): Likewise.
22111 [__HAVE_DISTINCT_FLOAT128 && __HAVE_GENERIC_SELECTION]
22112 (__MATH_TG): Use __MATH_TG_F32 and __MATH_TG_F64X.
22114 2017-11-03 Dmitry V. Levin <ldv@altlinux.org>
22116 * po/de.po: Update translations.
22117 * po/ru.po: Likewise.
22119 2017-11-03 Florian Weimer <fweimer@redhat.com>
22121 * manual/filesys.texi (Hard Links): Document linkat.
22123 2017-11-03 Joseph Myers <joseph@codesourcery.com>
22125 * math/tgmath.h [__HAVE_DISTINCT_FLOAT16
22126 || __HAVE_DISTINCT_FLOAT32 || __HAVE_DISTINCT_FLOAT64
22127 || __HAVE_DISTINCT_FLOAT32X || __HAVE_DISTINCT_FLOAT64X
22128 || __HAVE_DISTINCT_FLOAT128X]: Use #error.
22129 [__HAVE_DISTINCT_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)
22130 && __HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE
22131 && __HAVE_FLOATN_NOT_TYPEDEF] (__TGMATH_F128): Handle _Float64x
22132 the same as _Float128.
22133 [__HAVE_DISTINCT_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)
22134 && __HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE
22135 && __HAVE_FLOATN_NOT_TYPEDEF] (__TGMATH_CF128): Likewise.
22138 [__HAVE_FLOAT16 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (strtof16):
22140 [__HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (strtof32):
22142 [__HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (strtof64):
22144 [__HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22145 (strtof32x): Likewise.
22146 [__HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22147 (strtof64x): Likewise.
22148 [__HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22149 (strtof128x): Likewise.
22150 [__HAVE_FLOAT16 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22151 (strfromf16): Likewise.
22152 [__HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22153 (strfromf32): Likewise.
22154 [__HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22155 (strfromf64): Likewise.
22156 [__HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22157 (strfromf32x): Likewise.
22158 [__HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22159 (strfromf64x): Likewise.
22160 [__HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22161 (strfromf128x): Likewise.
22162 [__USE_GNU && __HAVE_FLOAT16] (strtof16_l): Likewise.
22163 [__USE_GNU && __HAVE_FLOAT32] (strtof32_l): Likewise.
22164 [__USE_GNU && __HAVE_FLOAT64] (strtof64_l): Likewise.
22165 [__USE_GNU && __HAVE_FLOAT32X] (strtof32x_l): Likewise.
22166 [__USE_GNU && __HAVE_FLOAT64X] (strtof64x_l): Likewise.
22167 [__USE_GNU && __HAVE_FLOAT128X] (strtof128x_l): Likewise.
22169 2017-11-03 Richard Henderson <rth@twiddle.net>
22171 * sysdeps/unix/sysv/linux/aarch64/sysconf.c: New file.
22173 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
22175 * sysdeps/aarch64/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Optimize.
22177 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
22179 * sysdeps/arm/dl-machine.h (elf_machine_runtime_setup): Remove
22180 DT_TLSDESC_GOT initialization.
22181 * sysdeps/arm/dl-tlsdesc.S (_dl_tlsdesc_lazy_resolver): Remove.
22182 (_dl_tlsdesc_resolve_hold): Likewise.
22183 * sysdeps/aarch64/dl-tlsdesc.h (_dl_tlsdesc_lazy_resolver): Remove.
22184 (_dl_tlsdesc_resolve_hold): Likewise.
22185 * sysdeps/aarch64/tlsdesc.c (_dl_tlsdesc_lazy_resolver_fixup): Remove.
22186 (_dl_tlsdesc_resolve_hold_fixup): Likewise.
22188 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
22190 * sysdeps/arm/dl-machine.h (elf_machine_rel): Remove volatile.
22192 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
22195 * sysdeps/arm/dl-machine.h (elf_machine_lazy_rel): Do symbol binding
22196 non-lazily for R_ARM_TLS_DESC.
22198 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
22201 * sysdeps/arm/dl-machine.h (elf_machine_rela): Remove the
22202 R_ARM_TLS_DESC case.
22203 (elf_machine_lazy_rel): Remove the prelink check.
22205 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
22207 * sysdeps/aarch64/dl-machine.h (elf_machine_runtime_setup): Remove
22208 DT_TLSDESC_GOT initialization.
22209 * sysdeps/aarch64/dl-tlsdesc.S (_dl_tlsdesc_return_lazy): Remove.
22210 (_dl_tlsdesc_resolve_rela): Likewise.
22211 (_dl_tlsdesc_resolve_hold): Likewise.
22212 (_dl_tlsdesc_undefweak): Remove ldar.
22213 (_dl_tlsdesc_dynamic): Likewise.
22214 * sysdeps/aarch64/dl-tlsdesc.h (_dl_tlsdesc_return_lazy): Remove.
22215 (_dl_tlsdesc_resolve_rela): Likewise.
22216 (_dl_tlsdesc_resolve_hold): Likewise.
22217 * sysdeps/aarch64/tlsdesc.c (_dl_tlsdesc_resolve_rela_fixup): Remove.
22218 (_dl_tlsdesc_resolve_hold_fixup): Likewise.
22219 (_dl_tlsdesc_resolve_rela): Likewise.
22220 (_dl_tlsdesc_resolve_hold): Likewise.
22222 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
22224 * sysdeps/aarch64/dl-machine.h (elf_machine_lazy_rel): Do symbol
22225 binding and initialization non-lazily for R_AARCH64_TLSDESC.
22227 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
22229 * elf/tlsdeschtab.h (_dl_tls_resolve_early_return_p): Mark unused.
22230 (_dl_tlsdesc_wake_up_held_fixups): Likewise.
22232 2017-11-02 Joseph Myers <joseph@codesourcery.com>
22234 * wcsmbs/wchar.h [__HAVE_FLOAT16 && __USE_GNU] (wcstof16):
22236 [__HAVE_FLOAT32 && __USE_GNU] (wcstof32): Likewise.
22237 [__HAVE_FLOAT64 && __USE_GNU] (wcstof64): Likewise.
22238 [__HAVE_FLOAT32X && __USE_GNU] (wcstof32x): Likewise.
22239 [__HAVE_FLOAT64X && __USE_GNU] (wcstof64x): Likewise.
22240 [__HAVE_FLOAT128X && __USE_GNU] (wcstof128x): Likewise.
22241 [__HAVE_FLOAT16 && __USE_GNU] (wcstof16_l): Likewise.
22242 [__HAVE_FLOAT32 && __USE_GNU] (wcstof32_l): Likewise.
22243 [__HAVE_FLOAT64 && __USE_GNU] (wcstof64_l): Likewise.
22244 [__HAVE_FLOAT32X && __USE_GNU] (wcstof32x_l): Likewise.
22245 [__HAVE_FLOAT64X && __USE_GNU] (wcstof64x_l): Likewise.
22246 [__HAVE_FLOAT128X && __USE_GNU] (wcstof128x_l): Likewise.
22248 2017-11-02 Mike FABIAN <mfabian@redhat.com>
22251 * localedata/locales/tpi_PG (LC_TIME): Fix syntax error.
22252 * localedata/locales/tpi_PG: Add standard header.
22254 2017-11-02 Florian Weimer <fweimer@redhat.com>
22256 test-errno-linux: quotactl can fail with EPERM in containers.
22257 * sysdeps/unix/sysv/linux/test-errno-linux.c
22258 (LIST, LIST_FORWARD): New macros.
22259 (check_error_in_list): New function.
22260 (test_wrp_rv): Accept list of permitted error codes.
22261 (test_wrp_rv2): Remove.
22262 (test_wrp): Call test_wrp_rv with list of error codes.
22263 (test_wrp2): Accept list of error codes.
22264 (do_test): Adjust. Allow EPERM for quotactl.
22266 2017-11-02 Florian Weimer <fweimer@redhat.com>
22268 * stdio-common/bug16.c (do_test): Use array_length.
22269 * stdio-common/errlist.c (_sys_nerr): Likewise.
22270 * stdio-common/printf_fp.c (PRINTF_FP_FETCH): Likewise.
22271 * stdio-common/printf_fphex.c (__printf_fphex): Use array_end.
22272 * stdio-common/psiginfo.c (psiginfo): Use array_length.
22273 * stdio-common/test-vfprintf.c (nlocs): Remove definition.
22274 (do_test): Use array_length.
22275 * stdio-common/tst-fphex.c (do_test): Use array_end, array_length.
22276 * stdio-common/tst-long-dbl-fphex.c (do_test): Use array_length.
22277 * stdio-common/tst-printf-round.c (do_test): Likewise.
22278 * stdio-common/tst-swprintf.c (nbuf): Remove definition.
22279 (CHECK): Use array_length.
22280 * stdio-common/tstdiomisc.c (t3, F): Likewise.
22281 * stdio-common/tstscanf.c (main): Likewise.
22282 * stdio-common/vfprintf.c (process_string_arg): Likewise.
22284 2017-11-02 Florian Weimer <fweimer@redhat.com>
22286 Add array_length and array_end macros.
22287 * include/array_length.h: New file.
22289 2017-11-02 Florian Weimer <fweimer@redhat.com>
22292 * posix/tst-glob-tilde.c (do_noescape): New variable.
22293 (one_test): Process it.
22294 (do_test): Set do_noescape. Add unescaping test case.
22296 2017-11-01 Joseph Myers <joseph@codesourcery.com>
22299 [(__HAVE_DISTINCT_FLOAT16 || (__HAVE_FLOAT16 && !_LIBC))
22300 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Include <bits/cmathcalls.h>
22301 with appropriate macros defined and undefined.
22302 [(__HAVE_DISTINCT_FLOAT32 || (__HAVE_FLOAT32 && !_LIBC))
22303 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
22304 [(__HAVE_DISTINCT_FLOAT64 || (__HAVE_FLOAT64 && !_LIBC))
22305 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
22306 [(__HAVE_DISTINCT_FLOAT32X || (__HAVE_FLOAT32X && !_LIBC))
22307 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
22308 [(__HAVE_DISTINCT_FLOAT64X || (__HAVE_FLOAT64X && !_LIBC))
22309 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
22310 [(__HAVE_DISTINCT_FLOAT128X || (__HAVE_FLOAT128X && !_LIBC))
22311 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
22314 [(__HAVE_DISTINCT_FLOAT128 || (__HAVE_FLOAT128 && !LIBC))
22315 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Move conditional code after
22316 that for long double. Do not condition define and undefine of
22317 _Mdouble_complex_ on [__CFLOAT128].
22319 2017-11-01 H.J. Lu <hongjiu.lu@intel.com>
22321 * sysdeps/i386/sysdep.h: Include <sysdeps/x86/sysdep.h> instead
22322 of <sysdeps/generic/sysdep.h>.
22323 (ALIGNARG): Removed.
22324 (ASM_SIZE_DIRECTIVE): Likewise.
22327 (ENTRY_CHK): Likewise.
22328 (END_CHK): Likewise.
22329 (syscall_error): Likewise.
22330 (mcount): Likewise.
22331 (PSEUDO_END): Likewise.
22333 (atom_text_section): Likewise.
22334 * sysdeps/x86/sysdep.h: New file.
22335 * sysdeps/x86_64/sysdep.h: Include <sysdeps/x86/sysdep.h> instead
22336 of <sysdeps/generic/sysdep.h>.
22337 (ALIGNARG): Removed.
22338 (ASM_SIZE_DIRECTIVE): Likewise.
22341 (ENTRY_CHK): Likewise.
22342 (END_CHK): Likewise.
22343 (syscall_error): Likewise.
22344 (mcount): Likewise.
22345 (PSEUDO_END): Likewise.
22347 (atom_text_section): Likewise.
22349 2017-10-31 Rafal Luzynski <digitalfreak@lingonborough.com>
22351 * localedata/unicode-gen/gen_unicode_ctype.py (output_head):
22352 category of LC_CTYPE set to "i18n:2012".
22353 * localedata/locales/i18n_ctype: Regenerate.
22355 2017-10-31 Yury Norov <ynorov@caviumnetworks.com>
22357 * sysdeps/unix/sysv/linux/sigprocmask.c: Remove useless #ifdefs.
22358 * sysdeps/unix/sysv/linux/sigtimedwait.c: Likewise.
22359 * sysdeps/unix/sysv/linux/sigwait.c: Likewise.
22360 * sysdeps/unix/sysv/linux/sigwaitinfo.c: Likewise.
22362 * sysdeps/unix/sysv/linux/ia64/sigpending.c: Remove file.
22363 * sysdeps/unix/sysv/linux/s390/s390-64/sigpending.c: Likewise.
22364 * sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c: Likewise.
22365 * sysdeps/unix/sysv/linux/x86_64/sigpending.c: Likewise.
22367 2017-10-31 Joseph Myers <joseph@codesourcery.com>
22370 [__HAVE_FLOAT16 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (CMPLXF16):
22372 [__HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (CMPLXF32):
22374 [__HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (CMPLXF64):
22376 [__HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22377 (CMPLXF32X): Likewise.
22378 [__HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22379 (CMPLXF64X): Likewise.
22380 [__HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22381 (CMPLXF128X): Likewise.
22384 [__FLT_EVAL_METHOD__ == 0 || __FLT_EVAL_METHOD__ == 32]
22385 (__MATH_EVAL_FMT2): Define to add 0.0f.
22387 2017-10-31 Alan Modra <amodra@gmail.com>
22389 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_expf-power8.S: Don't
22391 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-power5+.S: Likewise.
22392 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-ppc64.S: Likewise.
22393 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf-power8.S: Likewise.
22394 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf-ppc64.c: Likewise.
22395 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power7.S: Likewise.
22396 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power8.S: Likewise.
22397 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-power5+.S: Likewise.
22398 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-ppc64.S: Likewise.
22399 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-power5+.S: Likewise.
22400 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-ppc64.S: Likewise.
22401 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-power8.S: Likewise.
22402 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-ppc64.c: Likewise.
22403 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-power5+.S: Likewise.
22404 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-ppc64.S: Likewise.
22405 * sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S: Likewise.
22406 * sysdeps/powerpc/powerpc64/multiarch/memchr-power8.S: Likewise.
22407 * sysdeps/powerpc/powerpc64/multiarch/memcmp-power4.S: Likewise.
22408 * sysdeps/powerpc/powerpc64/multiarch/memcmp-power7.S: Likewise.
22409 * sysdeps/powerpc/powerpc64/multiarch/memcmp-power8.S: Likewise.
22410 * sysdeps/powerpc/powerpc64/multiarch/memcpy-a2.S: Likewise.
22411 * sysdeps/powerpc/powerpc64/multiarch/memcpy-cell.S: Likewise.
22412 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power4.S: Likewise.
22413 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power6.S: Likewise.
22414 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power7.S: Likewise.
22415 * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: Likewise.
22416 * sysdeps/powerpc/powerpc64/multiarch/memmove-power7.S: Likewise.
22417 * sysdeps/powerpc/powerpc64/multiarch/mempcpy-power7.S: Likewise.
22418 * sysdeps/powerpc/powerpc64/multiarch/memrchr-power7.S: Likewise.
22419 * sysdeps/powerpc/powerpc64/multiarch/memrchr-power8.S: Likewise.
22420 * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S: Likewise.
22421 * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: Likewise.
22422 * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: Likewise.
22423 * sysdeps/powerpc/powerpc64/multiarch/memset-power8.S: Likewise.
22424 * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S: Likewise.
22425 * sysdeps/powerpc/powerpc64/multiarch/stpcpy-power8.S: Likewise.
22426 * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power7.S: Likewise.
22427 * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S: Likewise.
22428 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: Likewise.
22429 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power8.S: Likewise.
22430 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: Likewise.
22431 * sysdeps/powerpc/powerpc64/multiarch/strcasestr-power8.S: Likewise.
22432 * sysdeps/powerpc/powerpc64/multiarch/strchr-power7.S: Likewise.
22433 * sysdeps/powerpc/powerpc64/multiarch/strchr-power8.S: Likewise.
22434 * sysdeps/powerpc/powerpc64/multiarch/strchr-ppc64.S: Likewise.
22435 * sysdeps/powerpc/powerpc64/multiarch/strchrnul-power7.S: Likewise.
22436 * sysdeps/powerpc/powerpc64/multiarch/strchrnul-power8.S: Likewise.
22437 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power7.S: Likewise.
22438 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power8.S: Likewise.
22439 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power9.S: Likewise.
22440 * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: Likewise.
22441 * sysdeps/powerpc/powerpc64/multiarch/strcpy-power8.S: Likewise.
22442 * sysdeps/powerpc/powerpc64/multiarch/strcspn-power8.S: Likewise.
22443 * sysdeps/powerpc/powerpc64/multiarch/strlen-power7.S: Likewise.
22444 * sysdeps/powerpc/powerpc64/multiarch/strlen-power8.S: Likewise.
22445 * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: Likewise.
22446 * sysdeps/powerpc/powerpc64/multiarch/strncase-power8.S: Likewise.
22447 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power4.S: Likewise.
22448 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power7.S: Likewise.
22449 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power8.S: Likewise.
22450 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power9.S: Likewise.
22451 * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: Likewise.
22452 * sysdeps/powerpc/powerpc64/multiarch/strncpy-power7.S: Likewise.
22453 * sysdeps/powerpc/powerpc64/multiarch/strncpy-power8.S: Likewise.
22454 * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: Likewise.
22455 * sysdeps/powerpc/powerpc64/multiarch/strnlen-power8.S: Likewise.
22456 * sysdeps/powerpc/powerpc64/multiarch/strrchr-power7.S: Likewise.
22457 * sysdeps/powerpc/powerpc64/multiarch/strrchr-power8.S: Likewise.
22458 * sysdeps/powerpc/powerpc64/multiarch/strspn-power8.S: Likewise.
22459 * sysdeps/powerpc/powerpc64/multiarch/strstr-power7.S: Likewise.
22461 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-ppc64.S: Don't
22462 include sysdep.h and math_ldbl_opt.h.
22464 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-power5+.S: Don't
22465 include sysdep.h and math_ldbl_opt.h. Include shlib-compat.h.
22466 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-ppc64.S: Likewise.
22467 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-power6.S: Likewise.
22468 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-ppc64.S: Likewise.
22469 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-power5+.S: Likewise.
22470 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S: Likewise.
22471 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power8.S: Likewise.
22472 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power5.S: Likewise.
22473 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6.S: Likewise.
22474 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6x.S: Likewise.
22475 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power7.S: Likewise.
22476 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power8.S: Likewise.
22477 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S: Likewise.
22478 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power6x.S: Likewise.
22479 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power8.S: Likewise.
22480 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-ppc64.S: Likewise.
22481 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S: Likewise.
22482 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S: Likewise.
22483 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power8.S: Likewise.
22484 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S: Likewise.
22485 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llroundf-ppc64.S: Likewise.
22486 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-power5+.S: Likewise.
22487 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-ppc64.S: Likewise.
22488 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-power5+.S: Likewise.
22489 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-ppc64.S: Likewise.
22491 2017-10-31 Alan Modra <amodra@gmail.com>
22493 * sysdeps/powerpc/powerpc64/multiarch/strncase_l-power7.c: Include
22494 string/strncase_l.c, not string/strncase.c.
22495 (USE_IN_EXTENDED_LOCALE_MODEL): Don't define.
22496 (libc_hidden_def): Redefine.
22498 2017-10-31 Alan Modra <amodra@gmail.com>
22500 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S:
22501 (__STRCMP, STRCMP, __strcasecmp_l): Define.
22502 (__strcasecmp): Don't define.
22504 2017-10-31 Alan Modra <amodra@gmail.com>
22506 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power8.S: Wrap in
22508 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power9.S: Likewise.
22509 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power8.S: Likewise.
22510 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power9.S: Likewise.
22512 2017-10-31 Alan Modra <amodra@gmail.com>
22514 * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S: Don't define
22517 2017-10-31 Alan Modra <amodra@gmail.com>
22519 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S (hidden_def):
22520 Redefine only when SHARED.
22522 2017-10-30 Joseph Myers <joseph@codesourcery.com>
22524 * math/math.h [__HAVE_DISTINCT_FLOAT16 || (__HAVE_FLOAT16 && !_LIBC)]:
22525 Include <bits/math-finite.h> with appropriate macros defined and
22527 [__HAVE_DISTINCT_FLOAT32 || (__HAVE_FLOAT32 && !_LIBC)]: Likewise.
22528 [__HAVE_DISTINCT_FLOAT64 || (__HAVE_FLOAT64 && !_LIBC)]: Likewise.
22529 [__HAVE_DISTINCT_FLOAT32X || (__HAVE_FLOAT32X && !_LIBC)]: Likewise.
22530 [__HAVE_DISTINCT_FLOAT64X || (__HAVE_FLOAT64X && !_LIBC)]: Likewise.
22531 [__HAVE_DISTINCT_FLOAT128X || (__HAVE_FLOAT128X && !_LIBC)]: Likewise.
22533 * math/math.h [!_Mfloat_] (_Mfloat_): Do not define.
22534 [!_Mlong_double_] (_Mlong_double_): Likewise.
22535 [!_Mfloat16_] (_Mfloat16_): Likewise.
22536 [!_Mfloat32_] (_Mfloat32_): Likewise.
22537 [!_Mfloat64_] (_Mfloat64_): Likewise.
22538 [!_Mfloat128_] (_Mfloat128_): Likewise.
22539 [!_Mfloat32x_] (_Mfloat32x_): Likewise.
22540 [!_Mfloat64x_] (_Mfloat64x_): Likewise.
22541 [!_Mfloat128x_] (_Mfloat128x_): Likewise.
22542 (_Mdouble_): Define without indirection through those macros.
22543 * math/complex.h [!_Mfloat_] (_Mfloat_): Do not define.
22544 [!_Mfloat128_] (_Mfloat128_): Likewise.
22545 [_Mlong_double_] (_Mlong_double_): Likewise.
22546 (_Mdouble_): Define without indirection through those macros.
22547 * math/Makefile [$(long-double-fcts) != yes] (math-CPPFLAGS): Do
22548 not add -D_Mlong_double_=double.
22549 * include/math.h [_ISOMAC] (_Mlong_double_): Do not undefine.
22550 * math/test-signgam-finite-c99.c (_Mlong_double_): Likewise.
22552 2017-10-30 H.J. Lu <hongjiu.lu@intel.com>
22554 * sysdeps/x86/libc-start.c: Add /* !SHARED */.
22556 2017-10-30 H.J. Lu <hongjiu.lu@intel.com>
22558 * sysdeps/x86/libc-start.c: Reformat.
22560 2017-10-30 H.J. Lu <hongjiu.lu@intel.com>
22563 * sysdeps/i386/i586/strcpy.S (STRCPY): Use conditional branches.
22564 (1): Renamed to ...
22567 (L(Src2)): Likewise.
22568 (L(1)): Renamed to ...
22571 2017-10-30 Joseph Myers <joseph@codesourcery.com>
22573 * math/math.h [__HAVE_FLOAT16 && __USE_GNU] (M_Ef16): New macro.
22574 [__HAVE_FLOAT16 && __USE_GNU] (M_LOG2Ef16): Likewise.
22575 [__HAVE_FLOAT16 && __USE_GNU] (M_LOG10Ef16): Likewise.
22576 [__HAVE_FLOAT16 && __USE_GNU] (M_LN2f16): Likewise.
22577 [__HAVE_FLOAT16 && __USE_GNU] (M_LN10f16): Likewise.
22578 [__HAVE_FLOAT16 && __USE_GNU] (M_PIf16): Likewise.
22579 [__HAVE_FLOAT16 && __USE_GNU] (M_PI_2f16): Likewise.
22580 [__HAVE_FLOAT16 && __USE_GNU] (M_PI_4f16): Likewise.
22581 [__HAVE_FLOAT16 && __USE_GNU] (M_1_PIf16): Likewise.
22582 [__HAVE_FLOAT16 && __USE_GNU] (M_2_PIf16): Likewise.
22583 [__HAVE_FLOAT16 && __USE_GNU] (M_2_SQRTPIf16): Likewise.
22584 [__HAVE_FLOAT16 && __USE_GNU] (M_SQRT2f16): Likewise.
22585 [__HAVE_FLOAT16 && __USE_GNU] (M_SQRT1_2f16): Likewise.
22586 [__HAVE_FLOAT32 && __USE_GNU] (M_Ef32): Likewise.
22587 [__HAVE_FLOAT32 && __USE_GNU] (M_LOG2Ef32): Likewise.
22588 [__HAVE_FLOAT32 && __USE_GNU] (M_LOG10Ef32): Likewise.
22589 [__HAVE_FLOAT32 && __USE_GNU] (M_LN2f32): Likewise.
22590 [__HAVE_FLOAT32 && __USE_GNU] (M_LN10f32): Likewise.
22591 [__HAVE_FLOAT32 && __USE_GNU] (M_PIf32): Likewise.
22592 [__HAVE_FLOAT32 && __USE_GNU] (M_PI_2f32): Likewise.
22593 [__HAVE_FLOAT32 && __USE_GNU] (M_PI_4f32): Likewise.
22594 [__HAVE_FLOAT32 && __USE_GNU] (M_1_PIf32): Likewise.
22595 [__HAVE_FLOAT32 && __USE_GNU] (M_2_PIf32): Likewise.
22596 [__HAVE_FLOAT32 && __USE_GNU] (M_2_SQRTPIf32): Likewise.
22597 [__HAVE_FLOAT32 && __USE_GNU] (M_SQRT2f32): Likewise.
22598 [__HAVE_FLOAT32 && __USE_GNU] (M_SQRT1_2f32): Likewise.
22599 [__HAVE_FLOAT64 && __USE_GNU] (M_Ef64): Likewise.
22600 [__HAVE_FLOAT64 && __USE_GNU] (M_LOG2Ef64): Likewise.
22601 [__HAVE_FLOAT64 && __USE_GNU] (M_LOG10Ef64): Likewise.
22602 [__HAVE_FLOAT64 && __USE_GNU] (M_LN2f64): Likewise.
22603 [__HAVE_FLOAT64 && __USE_GNU] (M_LN10f64): Likewise.
22604 [__HAVE_FLOAT64 && __USE_GNU] (M_PIf64): Likewise.
22605 [__HAVE_FLOAT64 && __USE_GNU] (M_PI_2f64): Likewise.
22606 [__HAVE_FLOAT64 && __USE_GNU] (M_PI_4f64): Likewise.
22607 [__HAVE_FLOAT64 && __USE_GNU] (M_1_PIf64): Likewise.
22608 [__HAVE_FLOAT64 && __USE_GNU] (M_2_PIf64): Likewise.
22609 [__HAVE_FLOAT64 && __USE_GNU] (M_2_SQRTPIf64): Likewise.
22610 [__HAVE_FLOAT64 && __USE_GNU] (M_SQRT2f64): Likewise.
22611 [__HAVE_FLOAT64 && __USE_GNU] (M_SQRT1_2f64): Likewise.
22612 [__HAVE_FLOAT32X && __USE_GNU] (M_Ef32x): Likewise.
22613 [__HAVE_FLOAT32X && __USE_GNU] (M_LOG2Ef32x): Likewise.
22614 [__HAVE_FLOAT32X && __USE_GNU] (M_LOG10Ef32x): Likewise.
22615 [__HAVE_FLOAT32X && __USE_GNU] (M_LN2f32x): Likewise.
22616 [__HAVE_FLOAT32X && __USE_GNU] (M_LN10f32x): Likewise.
22617 [__HAVE_FLOAT32X && __USE_GNU] (M_PIf32x): Likewise.
22618 [__HAVE_FLOAT32X && __USE_GNU] (M_PI_2f32x): Likewise.
22619 [__HAVE_FLOAT32X && __USE_GNU] (M_PI_4f32x): Likewise.
22620 [__HAVE_FLOAT32X && __USE_GNU] (M_1_PIf32x): Likewise.
22621 [__HAVE_FLOAT32X && __USE_GNU] (M_2_PIf32x): Likewise.
22622 [__HAVE_FLOAT32X && __USE_GNU] (M_2_SQRTPIf32x): Likewise.
22623 [__HAVE_FLOAT32X && __USE_GNU] (M_SQRT2f32x): Likewise.
22624 [__HAVE_FLOAT32X && __USE_GNU] (M_SQRT1_2f32x): Likewise.
22625 [__HAVE_FLOAT64X && __USE_GNU] (M_Ef64x): Likewise.
22626 [__HAVE_FLOAT64X && __USE_GNU] (M_LOG2Ef64x): Likewise.
22627 [__HAVE_FLOAT64X && __USE_GNU] (M_LOG10Ef64x): Likewise.
22628 [__HAVE_FLOAT64X && __USE_GNU] (M_LN2f64x): Likewise.
22629 [__HAVE_FLOAT64X && __USE_GNU] (M_LN10f64x): Likewise.
22630 [__HAVE_FLOAT64X && __USE_GNU] (M_PIf64x): Likewise.
22631 [__HAVE_FLOAT64X && __USE_GNU] (M_PI_2f64x): Likewise.
22632 [__HAVE_FLOAT64X && __USE_GNU] (M_PI_4f64x): Likewise.
22633 [__HAVE_FLOAT64X && __USE_GNU] (M_1_PIf64x): Likewise.
22634 [__HAVE_FLOAT64X && __USE_GNU] (M_2_PIf64x): Likewise.
22635 [__HAVE_FLOAT64X && __USE_GNU] (M_2_SQRTPIf64x): Likewise.
22636 [__HAVE_FLOAT64X && __USE_GNU] (M_SQRT2f64x): Likewise.
22637 [__HAVE_FLOAT64X && __USE_GNU] (M_SQRT1_2f64x): Likewise.
22638 [__HAVE_FLOAT128X && __USE_GNU]: Use #error.
22640 2017-10-30 Florian Weimer <fweimer@redhat.com>
22642 * elf/ldconfig.c (search_dir): Assume that _DIRENT_HAVE_D_TYPE is
22644 * io/tst-mkdirat.c (do_test): Likewise.
22645 * io/tst-mkfifoat.c (do_test): Likewise.
22646 * io/tst-mknodat.c (do_test): Likewise.
22647 * locale/programs/charmap-dir.c (charmap_readdir): Likewise.
22648 * locale/programs/locale.c (select_dirs): Likewise.
22649 * locale/programs/locarchive.c (add_locales_to_archive): Likewise.
22650 * posix/bug-glob2.c (my_readdir): Likewise.
22651 * posix/tst-dir.c (main): Likewise.
22652 * posix/tst-glob_lstat_compat.c (my_readdir): Likewise.
22653 * posix/tst-gnuglob-skeleton.c (my_readdir): Likewise.
22655 2017-10-30 Florian Weimer <fweimer@redhat.com>
22657 * string/strings.h (ffsl, ffsll): Declare under __USE_MISC, not
22660 2017-10-30 Florian Weimer <fweimer@redhat.com>
22662 * posix/tst-gnuglob-skeleton.c: Renamed from tst-gnuglob.c.
22663 Convert to support/test-driver.c.
22664 (GLOB_FUNC, GLOB_TYPE, GLOBFREE_FUNC, DIRENT_STRUCT, STAT_STRUCT):
22665 New macro parameters.
22666 (PRINTF): Remove macro. Use test_verbose conditionals instead.
22667 * posix/tst-gnuglob.c: New file.
22668 * posix/tst-gnuglob64.c: Likewise.
22669 * posix/Makefile (tests): Add tst-gnuglob64.
22671 2017-10-30 Michal Ostrowski <ostrowski.michal@gmail.com>
22674 * localedata/locales/csb_PL (LC_TIME): Fix “abmon” for March
22675 and use a better translation for March in “mon”.
22676 * localedata/locales/csb_PL: Use more ASCII to improve the
22677 readability of the source.
22679 2017-10-30 Mike FABIAN <mfabian@redhat.com>
22682 * localedata/locales/km_KH: Use ASCII as much
22683 as possible for better readability of the source and
22684 remove useless comments.
22685 * localedata/locales/km_KH (LC_TIME): Remove era stuff, it
22686 was commented out and apparently wrong anyway because it was
22687 using Lao characters. If Buddhist era should be used
22688 for km_KH, a native speaker should write the correct formaat
22690 * localedata/locales/km_KH (LC_TIME): Add first_weekday 1
22691 (According to CLDR, the first weekday for Cambodia is Sunday).
22692 * localedata/locales/km_KH (LC_NAME): Remove name_mr and name_mrs
22693 (These were using Lao characters which must be wrong. If we get
22694 the correct data from a native speaker, we could add it back, until
22695 then it is better not to have name_mr and name_mrs at all than
22698 2017-10-27 Rafal Luzynski <digitalfreak@lingonborough.com>
22700 * locale/loadlocale.c: Correct size of
22701 _nl_value_type_LC_<category> arrays.
22703 2017-10-27 Joseph Myers <joseph@codesourcery.com>
22705 * math/math.h [__HAVE_DISTINCT_FLOAT16 || (__HAVE_FLOAT16 && !_LIBC)]:
22706 Include <bits/mathcalls-helper-functions.h> and <bits/mathcalls.h>
22707 with appropriate macros defined and undefined.
22708 [__HAVE_DISTINCT_FLOAT32 || (__HAVE_FLOAT32 && !_LIBC)]: Likewise.
22709 [__HAVE_DISTINCT_FLOAT64 || (__HAVE_FLOAT64 && !_LIBC)]: Likewise.
22710 [__HAVE_DISTINCT_FLOAT32X || (__HAVE_FLOAT32X && !_LIBC)]: Likewise.
22711 [__HAVE_DISTINCT_FLOAT64X || (__HAVE_FLOAT64X && !_LIBC)]: Likewise.
22712 [__HAVE_DISTINCT_FLOAT128X || (__HAVE_FLOAT128X && !_LIBC)]: Likewise.
22714 2017-10-27 H.J. Lu <hongjiu.lu@intel.com>
22716 * sysdeps/i386/fpu/libm-test-ulps: Regenerated for GCC 7 with
22719 2017-10-27 Mike FABIAN <mfabian@redhat.com>
22721 * localedata/locales/tt_RU (LC_MESSAGES): Start yesstr and nostr
22722 with lowercase letters to make it agree with CLDR.
22724 2017-10-27 Mike FABIAN <mfabian@redhat.com>
22727 * localedata/locales/doi_IN (LC_MESSAGES): Match only for the
22728 first letters of yesstr and nostr in yesexpr and noexpr,
22729 not for the full words.
22730 * localedata/locales/hne_IN (LC_MESSAGES): Likewise.
22731 * localedata/locales/kok_IN (LC_MESSAGES): Likewise.
22732 * localedata/locales/mr_IN (LC_MESSAGES): Likewise.
22733 * localedata/locales/sat_IN (LC_MESSAGES): Likewise.
22734 * localedata/locales/km_KH (LC_MESSAGES): Match also for the
22735 first letters of yesstr and nostr in yesexpr and noexpr,
22736 until now only English was matched in yesexpr and noexpr.
22737 * localedata/locales/tl_PH (LC_MESSAGES): Use “copy "fil_PH"”
22738 instead of “copy "en_US"”. CLDR has yesstr and nostr data for
22739 fil but not for tl. As tl and fil are very similar, using fil
22740 is probably better than using English.
22742 2017-10-27 Thierry Vignaud <thierry.vignaud@gmail.com>
22745 * localedata/locales/br_FR (LC_MESSAGES): Use all lowercase
22746 in yesstr and nostr.
22748 2017-10-26 Joseph Myers <joseph@codesourcery.com>
22750 * math/math.h [__HAVE_FLOAT16 && __GLIBC_USE
22751 (IEC_60559_TYPES_EXT)] (SNANF16): New macro.
22752 [__HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (SNANF32):
22754 [__HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (SNANF64):
22756 [__HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)] (SNANF32X):
22758 [__HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)] (SNANF64X):
22760 [__HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22761 (SNANF128X): Likewise.
22763 * math/math.h [__HAVE_FLOAT16 && __GLIBC_USE
22764 (IEC_60559_TYPES_EXT)] (HUGE_VAL_F16): New macro.
22765 [__HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22766 (HUGE_VAL_F32): Likewise.
22767 [__HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22768 (HUGE_VAL_F64): Likewise.
22769 [__HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22770 (HUGE_VAL_F32X): Likewise.
22771 [__HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22772 (HUGE_VAL_F64X): Likewise.
22773 [__HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
22774 (HUGE_VAL_F128X): Likewise.
22776 2017-10-26 Thierry Vignaud <thierry.vignaud@gmail.com>
22778 * localedata/locales/br_FR (LC_IDENTIFICATON): Add
22779 Thierry Vignaud <thierry.vignaud@gmail.com> as the contact
22780 for the br_FR locale.
22782 2017-10-26 Thierry Vignaud <thierry.vignaud@gmail.com>
22785 * localedata/locales/br_FR (LC_MESSAGES): Fix nostr.
22787 2017-10-25 Carlos O'Donell <carlos@redhat.com>
22789 * locale/programs/record-status.h: Define globals, and function
22790 prototypes. Move function bodies...
22791 * locale/programs/record-status.c: ... to here. New file.
22792 * iconv/Makefile (iconv_prog-modules): Add record-status.
22793 * locale/Makefile (lib-modules): Likewise.
22794 * iconv/iconv_prog.c: Remove verbose.
22795 * iconv/iconv_prog.h: Include record-status.h (defines verbose).
22796 * locale/programs/charmap.c (charmap_read): If warn_ascii is true then
22797 record a warning about ASCII compatibility.
22798 * locale/programs/ld-monetary.c (monetary_finish): If
22799 warn_int_curr_symbol is true then record a warning about the symbol
22800 not being in our ISO 4217 list.
22801 * locale/programs/locale.c: Include record-status.h. Remove verbose.
22802 * locale/programs/localedef.c: Include ctype.h. Remove delcaration of
22803 verbose, recorded_warning_count, recorded_error_count, and be_quiet.
22804 (OPT_NO_WARN): Define.
22805 (OPT_WARN): Define.
22806 (options): Add entry for --no-warnings, and --warnings.
22807 (set_warnings): New function to enable/disable warnings.
22808 (parse_opt): Call set_warnings for OPT_NO_WARN and OPT_WARN.
22809 * locale/programs/localedef.h: Remove warn_int_curr_symbol.
22810 * localedata/gen-locale.sh: Default flags to `--quiet -c'.
22811 Add `--no-warnings=ascii' to locales using SHIFT_JIS or SHIFT_JIXX0213.
22812 Pass flags to generate_locale.
22813 (generate_locale): Accept new flag argument and pass it to localedef
22815 * localedata/Makefile (INSTALL-SUPPORTED-LOCALES): Use
22816 --no-warnings=ascii for SHIFT_JIS and SHIFT_JISX0213 charmaps.
22818 * localedata/Makefile (test-input-data): Use full file name.
22819 * localedata/da_DK.in: Rename to...
22820 * localedata/da_DK.ISO-8859-1.in: ...this.
22821 * localedata/de_DE.in: Rename to...
22822 * localedata/de_DE.ISO-8859-1.in: ...this.
22823 * localedata/en_US.in: Rename to...
22824 * localedata/en_US.ISO-8859-1.in: ...this.
22825 * localedata/fr_FR.in: Rename to...
22826 * localedata/fr_FR.UTF-8.in: ... this.
22827 * localedata/hr_HR.in: Rename to...
22828 * localedata/hr_HR.ISO-8859-2.in: ...this.
22829 * localedata/hu_HU.in: Rename to...
22830 * localedata/hu_HU.UTF-8.in: ...this.
22831 * localedata/si_LK.in: Rename to...
22832 * localedata/si_LK.UTF-8.in: ...this.
22833 * localedata/sv_SE.in: Rename to...
22834 * localedata/sv_SE.ISO-8859-1.in: ...this.
22835 * localedata/tr_TR.in: Rename to...
22836 * localedata/tr_TR.UTF-8.in: ...this.
22837 * localedata/uk_UA.in: Rename to...
22838 * localedata/uk_UA.UTF-8.in: ...this.
22839 * localedata/sort-test.sh: Test file is locale name with the
22842 * localedata/unicode-gen/Makefile (check_i18n): Rename to
22843 check_i18n_ctype. Depend on i18n_ctype-report. Check i18n_ctype-report
22845 * localedata/locales/i18n_ctype: Regenerate.
22846 * localedata/locales/tr_TR: Likewise.
22847 * localedata/locales/translit_circle: Likewise.
22848 * localedata/locales/translit_cjk_compat: Likewise.
22849 * localedata/locales/translit_combining: Likewise.
22850 * localedata/locales/translit_compat: Likewise.
22851 * localedata/locales/translit_font: Likewise.
22852 * localedata/locales/translit_fraction: Likewise.
22854 2017-10-25 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
22856 * sysdeps/powerpc/powerpc64/power7/memcpy.S: Replace
22857 lxvd2x/stxvd2x with lvx/stvx.
22858 * sysdeps/powerpc/powerpc64/power7/memmove.S: Likewise.
22860 2017-10-25 H.J. Lu <hongjiu.lu@intel.com>
22862 * include/alloc_buffer.h: Replace "if if " with "if " in
22864 * sysdeps/mips/memcpy.S: Likkewise.
22865 * sysdeps/mips/memset.S: Likewise.
22866 * sysdeps/x86_64/fpu/multiarch/svml_s_sincosf16_core_avx512.S:
22868 * sysdeps/x86_64/fpu/multiarch/svml_s_sincosf4_core_sse4.S:
22870 * sysdeps/x86_64/fpu/multiarch/svml_s_sincosf8_core_avx2.S:
22873 2017-10-25 Mike FABIAN <mfabian@redhat.com>
22876 * localedata/locales/cmn_TW (LC_MESSAGES): Add fullwidth yYnN to
22877 yesexpr and noexpr.
22878 * localedata/locales/hak_TW (LC_MESSAGES): Likewise.
22879 * localedata/locales/ko_KR (LC_MESSAGES): Likewise.
22880 * localedata/locales/lzh_TW (LC_MESSAGES): Likewise.
22881 * localedata/locales/nan_TW (LC_MESSAGES): Likewise.
22882 * localedata/locales/zh_CN (LC_MESSAGES): Likewise.
22883 * localedata/locales/zh_HK (LC_MESSAGES): Likewise.
22884 * localedata/locales/zh_TW (LC_MESSAGES): Likewise.
22886 2017-10-25 Mike FABIAN <mfabian@redhat.com>
22888 * localedata/locales/am_ET (LC_MESSAGES): Sync with CLDR.
22889 * localedata/locales/az_AZ (LC_MESSAGES): Likewise.
22890 * localedata/locales/el_GR (LC_MESSAGES): Likewise.
22891 * localedata/locales/ha_NG (LC_MESSAGES): Likewise.
22892 * localedata/locales/ln_CD (LC_MESSAGES): Likewise.
22893 * localedata/locales/mfe_MU (LC_MESSAGES): Likewise.
22894 * localedata/locales/ml_IN (LC_MESSAGES): Likewise.
22895 * localedata/locales/mt_MT (LC_MESSAGES): Likewise.
22896 * localedata/locales/os_RU (LC_MESSAGES): Likewise.
22897 * localedata/locales/tg_TJ (LC_MESSAGES): Likewise.
22898 * localedata/locales/tt_RU (LC_MESSAGES): Likewise.
22899 * localedata/locales/wo_SN (LC_MESSAGES): Likewise.
22901 2017-10-25 Mike FABIAN <mfabian@redhat.com>
22903 * localedata/locales/aa_ET (LC_MESSAGES): Use ASCII as much
22904 as possible for better readability of the source.
22905 * localedata/locales/af_ZA (LC_MESSAGES): Likewise.
22906 * localedata/locales/ak_GH (LC_MESSAGES): Likewise.
22907 * localedata/locales/am_ET (LC_MESSAGES): Likewise.
22908 * localedata/locales/anp_IN (LC_MESSAGES): Likewise.
22909 * localedata/locales/ar_EG (LC_MESSAGES): Likewise.
22910 * localedata/locales/as_IN (LC_MESSAGES): Likewise.
22911 * localedata/locales/ast_ES (LC_MESSAGES): Likewise.
22912 * localedata/locales/ayc_PE (LC_MESSAGES): Likewise.
22913 * localedata/locales/az_AZ (LC_MESSAGES): Likewise.
22914 * localedata/locales/az_IR (LC_MESSAGES): Likewise.
22915 * localedata/locales/be_BY (LC_MESSAGES): Likewise.
22916 * localedata/locales/be_BY@latin (LC_MESSAGES): Likewise.
22917 * localedata/locales/bem_ZM (LC_MESSAGES): Likewise.
22918 * localedata/locales/ber_MA (LC_MESSAGES): Likewise.
22919 * localedata/locales/bg_BG (LC_MESSAGES): Likewise.
22920 * localedata/locales/bhb_IN (LC_MESSAGES): Likewise.
22921 * localedata/locales/bi_VU (LC_MESSAGES): Likewise.
22922 * localedata/locales/bo_CN (LC_MESSAGES): Likewise.
22923 * localedata/locales/br_FR (LC_MESSAGES): Likewise.
22924 * localedata/locales/bs_BA (LC_MESSAGES): Likewise.
22925 * localedata/locales/ca_ES (LC_MESSAGES): Likewise.
22926 * localedata/locales/ce_RU (LC_MESSAGES): Likewise.
22927 * localedata/locales/crh_UA (LC_MESSAGES): Likewise.
22928 * localedata/locales/cs_CZ (LC_MESSAGES): Likewise.
22929 * localedata/locales/csb_PL (LC_MESSAGES): Likewise.
22930 * localedata/locales/cv_RU (LC_MESSAGES): Likewise.
22931 * localedata/locales/cy_GB (LC_MESSAGES): Likewise.
22932 * localedata/locales/da_DK (LC_MESSAGES): Likewise.
22933 * localedata/locales/de_DE (LC_MESSAGES): Likewise.
22934 * localedata/locales/dv_MV (LC_MESSAGES): Likewise.
22935 * localedata/locales/dz_BT (LC_MESSAGES): Likewise.
22936 * localedata/locales/el_GR (LC_MESSAGES): Likewise.
22937 * localedata/locales/en_CA (LC_MESSAGES): Likewise.
22938 * localedata/locales/en_US (LC_MESSAGES): Likewise.
22939 * localedata/locales/es_ES (LC_MESSAGES): Likewise.
22940 * localedata/locales/et_EE (LC_MESSAGES): Likewise.
22941 * localedata/locales/eu_ES (LC_MESSAGES): Likewise.
22942 * localedata/locales/fa_IR (LC_MESSAGES): Likewise.
22943 * localedata/locales/ff_SN (LC_MESSAGES): Likewise.
22944 * localedata/locales/fi_FI (LC_MESSAGES): Likewise.
22945 * localedata/locales/fil_PH (LC_MESSAGES): Likewise.
22946 * localedata/locales/fo_FO (LC_MESSAGES): Likewise.
22947 * localedata/locales/fr_BE (LC_MESSAGES): Likewise.
22948 * localedata/locales/fr_CH (LC_MESSAGES): Likewise.
22949 * localedata/locales/fr_FR (LC_MESSAGES): Likewise.
22950 * localedata/locales/fr_LU (LC_MESSAGES): Likewise.
22951 * localedata/locales/fur_IT (LC_MESSAGES): Likewise.
22952 * localedata/locales/fy_DE (LC_MESSAGES): Likewise.
22953 * localedata/locales/ga_IE (LC_MESSAGES): Likewise.
22954 * localedata/locales/gd_GB (LC_MESSAGES): Likewise.
22955 * localedata/locales/gl_ES (LC_MESSAGES): Likewise.
22956 * localedata/locales/gu_IN (LC_MESSAGES): Likewise.
22957 * localedata/locales/gv_GB (LC_MESSAGES): Likewise.
22958 * localedata/locales/ha_NG (LC_MESSAGES): Likewise.
22959 * localedata/locales/hak_TW (LC_MESSAGES): Likewise.
22960 * localedata/locales/he_IL (LC_MESSAGES): Likewise.
22961 * localedata/locales/hif_FJ (LC_MESSAGES): Likewise.
22962 * localedata/locales/hne_IN (LC_MESSAGES): Likewise.
22963 * localedata/locales/hr_HR (LC_MESSAGES): Likewise.
22964 * localedata/locales/hsb_DE (LC_MESSAGES): Likewise.
22965 * localedata/locales/ht_HT (LC_MESSAGES): Likewise.
22966 * localedata/locales/hu_HU (LC_MESSAGES): Likewise.
22967 * localedata/locales/hy_AM (LC_MESSAGES): Likewise.
22968 * localedata/locales/ia_FR (LC_MESSAGES): Likewise.
22969 * localedata/locales/id_ID (LC_MESSAGES): Likewise.
22970 * localedata/locales/ig_NG (LC_MESSAGES): Likewise.
22971 * localedata/locales/ik_CA (LC_MESSAGES): Likewise.
22972 * localedata/locales/is_IS (LC_MESSAGES): Likewise.
22973 * localedata/locales/it_CH (LC_MESSAGES): Likewise.
22974 * localedata/locales/it_IT (LC_MESSAGES): Likewise.
22975 * localedata/locales/iu_CA (LC_MESSAGES): Likewise.
22976 * localedata/locales/ja_JP (LC_MESSAGES): Likewise.
22977 * localedata/locales/kk_KZ (LC_MESSAGES): Likewise.
22978 * localedata/locales/kl_GL (LC_MESSAGES): Likewise.
22979 * localedata/locales/ko_KR (LC_MESSAGES): Likewise.
22980 * localedata/locales/ks_IN (LC_MESSAGES): Likewise.
22981 * localedata/locales/ku_TR (LC_MESSAGES): Likewise.
22982 * localedata/locales/kw_GB (LC_MESSAGES): Likewise.
22983 * localedata/locales/ky_KG (LC_MESSAGES): Likewise.
22984 * localedata/locales/lb_LU (LC_MESSAGES): Likewise.
22985 * localedata/locales/lg_UG (LC_MESSAGES): Likewise.
22986 * localedata/locales/li_NL (LC_MESSAGES): Likewise.
22987 * localedata/locales/lij_IT (LC_MESSAGES): Likewise.
22988 * localedata/locales/ln_CD (LC_MESSAGES): Likewise.
22989 * localedata/locales/lo_LA (LC_MESSAGES): Likewise.
22990 * localedata/locales/lt_LT (LC_MESSAGES): Likewise.
22991 * localedata/locales/lv_LV (LC_MESSAGES): Likewise.
22992 * localedata/locales/lzh_TW (LC_MESSAGES): Likewise.
22993 * localedata/locales/mg_MG (LC_MESSAGES): Likewise.
22994 * localedata/locales/mhr_RU (LC_MESSAGES): Likewise.
22995 * localedata/locales/mi_NZ (LC_MESSAGES): Likewise.
22996 * localedata/locales/mk_MK (LC_MESSAGES): Likewise.
22997 * localedata/locales/ml_IN (LC_MESSAGES): Likewise.
22998 * localedata/locales/mn_MN (LC_MESSAGES): Likewise.
22999 * localedata/locales/ms_MY (LC_MESSAGES): Likewise.
23000 * localedata/locales/mt_MT (LC_MESSAGES): Likewise.
23001 * localedata/locales/my_MM (LC_MESSAGES): Likewise.
23002 * localedata/locales/nan_TW (LC_MESSAGES): Likewise.
23003 * localedata/locales/nan_TW@latin (LC_MESSAGES): Likewise.
23004 * localedata/locales/nb_NO (LC_MESSAGES): Likewise.
23005 * localedata/locales/nds_DE (LC_MESSAGES): Likewise.
23006 * localedata/locales/nds_NL (LC_MESSAGES): Likewise.
23007 * localedata/locales/ne_NP (LC_MESSAGES): Likewise.
23008 * localedata/locales/nhn_MX (LC_MESSAGES): Likewise.
23009 * localedata/locales/niu_NU (LC_MESSAGES): Likewise.
23010 * localedata/locales/nl_NL (LC_MESSAGES): Likewise.
23011 * localedata/locales/nn_NO (LC_MESSAGES): Likewise.
23012 * localedata/locales/nr_ZA (LC_MESSAGES): Likewise.
23013 * localedata/locales/nso_ZA (LC_MESSAGES): Likewise.
23014 * localedata/locales/oc_FR (LC_MESSAGES): Likewise.
23015 * localedata/locales/om_ET (LC_MESSAGES): Likewise.
23016 * localedata/locales/or_IN (LC_MESSAGES): Likewise.
23017 * localedata/locales/os_RU (LC_MESSAGES): Likewise.
23018 * localedata/locales/pa_IN (LC_MESSAGES): Likewise.
23019 * localedata/locales/pa_PK (LC_MESSAGES): Likewise.
23020 * localedata/locales/pap_AW (LC_MESSAGES): Likewise.
23021 * localedata/locales/pap_CW (LC_MESSAGES): Likewise.
23022 * localedata/locales/pl_PL (LC_MESSAGES): Likewise.
23023 * localedata/locales/ps_AF (LC_MESSAGES): Likewise.
23024 * localedata/locales/pt_BR (LC_MESSAGES): Likewise.
23025 * localedata/locales/quz_PE (LC_MESSAGES): Likewise.
23026 * localedata/locales/raj_IN (LC_MESSAGES): Likewise.
23027 * localedata/locales/ro_RO (LC_MESSAGES): Likewise.
23028 * localedata/locales/ru_RU (LC_MESSAGES): Likewise.
23029 * localedata/locales/ru_UA (LC_MESSAGES): Likewise.
23030 * localedata/locales/rw_RW (LC_MESSAGES): Likewise.
23031 * localedata/locales/sa_IN (LC_MESSAGES): Likewise.
23032 * localedata/locales/sc_IT (LC_MESSAGES): Likewise.
23033 * localedata/locales/sd_IN@devanagari (LC_MESSAGES): Likewise.
23034 * localedata/locales/se_NO (LC_MESSAGES): Likewise.
23035 * localedata/locales/sgs_LT (LC_MESSAGES): Likewise.
23036 * localedata/locales/si_LK (LC_MESSAGES): Likewise.
23037 * localedata/locales/sk_SK (LC_MESSAGES): Likewise.
23038 * localedata/locales/sl_SI (LC_MESSAGES): Likewise.
23039 * localedata/locales/sm_WS (LC_MESSAGES): Likewise.
23040 * localedata/locales/so_DJ (LC_MESSAGES): Likewise.
23041 * localedata/locales/sq_AL (LC_MESSAGES): Likewise.
23042 * localedata/locales/sr_RS (LC_MESSAGES): Likewise.
23043 * localedata/locales/sr_RS@latin (LC_MESSAGES): Likewise.
23044 * localedata/locales/ss_ZA (LC_MESSAGES): Likewise.
23045 * localedata/locales/st_ZA (LC_MESSAGES): Likewise.
23046 * localedata/locales/sv_SE (LC_MESSAGES): Likewise.
23047 * localedata/locales/sw_KE (LC_MESSAGES): Likewise.
23048 * localedata/locales/szl_PL (LC_MESSAGES): Likewise.
23049 * localedata/locales/tcy_IN (LC_MESSAGES): Likewise.
23050 * localedata/locales/tg_TJ (LC_MESSAGES): Likewise.
23051 * localedata/locales/th_TH (LC_MESSAGES): Likewise.
23052 * localedata/locales/the_NP (LC_MESSAGES): Likewise.
23053 * localedata/locales/ti_ER (LC_MESSAGES): Likewise.
23054 * localedata/locales/tk_TM (LC_MESSAGES): Likewise.
23055 * localedata/locales/tn_ZA (LC_MESSAGES): Likewise.
23056 * localedata/locales/to_TO (LC_MESSAGES): Likewise.
23057 * localedata/locales/tr_TR (LC_MESSAGES): Likewise.
23058 * localedata/locales/ts_ZA (LC_MESSAGES): Likewise.
23059 * localedata/locales/tt_RU (LC_MESSAGES): Likewise.
23060 * localedata/locales/tt_RU@iqtelif (LC_MESSAGES): Likewise.
23061 * localedata/locales/uk_UA (LC_MESSAGES): Likewise.
23062 * localedata/locales/unm_US (LC_MESSAGES): Likewise.
23063 * localedata/locales/ur_IN (LC_MESSAGES): Likewise.
23064 * localedata/locales/ur_PK (LC_MESSAGES): Likewise.
23065 * localedata/locales/uz_UZ (LC_MESSAGES): Likewise.
23066 * localedata/locales/uz_UZ@cyrillic (LC_MESSAGES): Likewise.
23067 * localedata/locales/ve_ZA (LC_MESSAGES): Likewise.
23068 * localedata/locales/vi_VN (LC_MESSAGES): Likewise.
23069 * localedata/locales/wa_BE (LC_MESSAGES): Likewise.
23070 * localedata/locales/wo_SN (LC_MESSAGES): Likewise.
23071 * localedata/locales/xh_ZA (LC_MESSAGES): Likewise.
23072 * localedata/locales/yi_US (LC_MESSAGES): Likewise.
23073 * localedata/locales/yo_NG (LC_MESSAGES): Likewise.
23074 * localedata/locales/yue_HK (LC_MESSAGES): Likewise.
23075 * localedata/locales/zh_CN (LC_MESSAGES): Likewise.
23076 * localedata/locales/zh_HK (LC_MESSAGES): Likewise.
23077 * localedata/locales/zh_TW (LC_MESSAGES): Likewise.
23078 * localedata/locales/zu_ZA (LC_MESSAGES): Likewise.
23080 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23082 * localedata/locales/brx_IN (LC_MESSAGES): Fix yesexpr and noexpr
23083 (Use first letters of yesstr and nostr correctly instead of using
23086 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23088 * localedata/locales/ta_IN (LC_MESSAGES): Fix yesexpr and noexpr
23089 (Use first letters of yesstr and nostr correctly).
23091 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23093 * localedata/locales/hi_IN (LC_MESSAGES): In yesexpr and noexpr,
23094 also check for the first characters of yesstr and nostr.
23095 * localedata/locales/kn_IN (LC_MESSAGES): Likewise.
23096 * localedata/locales/ks_IN@devanagari (LC_MESSAGES): Likewise.
23098 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23100 * localedata/locales/cmn_TW (LC_MESSAGES): In yesexpr and noexpr,
23101 also check for Chinese characters.
23103 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23105 * localedata/locales/chr_US (LC_MESSAGES): In yesexpr and noexpr,
23106 match also for the contents of yesstr and nostr. As the first letter
23107 of yesstr and nostr is equal, checking only for the first letter
23110 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23112 * localedata/locales/ber_DZ (LC_MESSAGES): Use copy "kab_DZ",
23113 it is the same according to Belkacem Mohammed <belkacem77@gmail.com>.
23115 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23117 * localedata/locales/kab_DZ (LC_IDENTIFICATION): Add e-mail
23118 of main contributor.
23120 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23122 * localedata/locales/zh_SG (LC_MESSAGES): Use copy "zh_CN"
23123 instead of using English.
23125 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23127 * localedata/locales/ug_CN (LC_MESSAGES): Fix noexpr and yesexpr
23128 by including the first letters of nostr and yesexpr in the regexp.
23129 Also make it more readable by using ASCII where possible.
23131 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23133 * localedata/locales/te_IN (LC_MESSAGES): Fix noexpr by including
23134 the first letter of nostr in the regexp. It agrees with CLDR now.
23135 Also make it more readable by using ASCII where possible.
23137 2017-10-24 Mike FABIAN <mfabian@redhat.com>
23139 * localedata/locales/km_KH (LC_MESSAGES): Fix yestr and nostr.
23140 The yesstr and nostr apparently came from CLDR. And CLDR has a bug there:
23141 these strings contain a U+17D6 (which somewhat looks like a colon)
23142 instead of a real colon to separate the full words for “yes”
23143 and “no” from the single letter responses.
23145 2017-10-24 Mike FABIAN <mfabian@redhat.com>
23147 * localedata/locales/ka_GE (LC_MESSAGES): Fix yesexp to make
23148 it agree with CLDR (include the first letter of yesstr).
23149 Also make it more readable by using ASCII where possible.
23151 2017-10-24 Mike FABIAN <mfabian@redhat.com>
23153 * localedata/locales/mr_IN (LC_MESSAGES): Fix yesstr and nostr
23154 and improve yesexpr and noexpr. The yesstr and nostr apparently
23155 came from CLDR. And CLDR has a bug there: these strings contain
23156 a U+0903 (which looks like a colon) instead of a real colon
23157 to separate the full words for “yes” and “no” from the single
23160 2017-10-24 Mike FABIAN <mfabian@redhat.com>
23162 * localedata/locales/bn_BD (LC_MESSAGES): Use only the first
23163 letters of the full yesstr and nostr in yesexpr and noexpr.
23165 2017-10-24 Mike FABIAN <mfabian@redhat.com>
23167 * localedata/locales/an_ES (LC_MESSAGES): Add yesstr and nostr.
23168 * localedata/locales/an_ES (LC_ADDRESS): Add lang_term and lang_lib.
23169 * localedata/locales/an_ES: Make source more readable by using ASCII
23172 2017-10-24 Mike FABIAN <mfabian@redhat.com>
23175 * localedata/locales/yuw_PG: New file.
23176 * localedata/SUPPORTED: Add yuw_PG/UTF-8.
23177 * locale/iso-639.def: Add Yau (Uruwa).
23179 2017-10-23 Wilco Dijkstra <wdijkstr@arm.com>
23181 * malloc/malloc.c (_int_malloc): Add SINGLE_THREAD_P path.
23183 2017-10-23 Wilco Dijkstra <wdijkstr@arm.com>
23185 * malloc/malloc.c (__libc_malloc): Add SINGLE_THREAD_P path.
23186 (__libc_realloc): Likewise.
23187 (_mid_memalign): Likewise.
23188 (__libc_calloc): Likewise.
23190 2017-10-23 Mike FABIAN <mfabian@redhat.com>
23192 * localedata/locales/tpi_PG (LC_MESSAGES): Fix yesexpr and noexpr
23193 by adding the generic +1 and -0 as in all other locales.
23194 * localedata/locales/tpi_PG (LC_TIME): Fix some typos in the month and
23195 day names and make it more readable by using ASCII where possible.
23197 2017-10-24 Joseph Myers <joseph@codesourcery.com>
23199 * sysdeps/x86/fpu/fix-fp-int-compare-invalid.h
23200 (FIX_COMPARE_INVALID): Define to 0 if [__GNUC_PREREQ (8, 0)].
23202 2017-10-23 Adhemerval Zanella <adhemerval.zanella@linaro.org>
23204 * sysdeps/unix/sysv/linux/spawni.c (__spawnix): Use 0 instead of
23205 WNOHANG in waitpid call.
23207 2017-10-23 Siddhesh Poyarekar <siddhesh@sourceware.org>
23209 * manual/conf.texi (_SC_LEVEL1_DCACHE_LINESIZE,
23210 _SC_LEVEL1_ICACHE_LINESIZE): Document aarch64 caveat.
23212 * manual/conf.texi (_SC_LEVEL1_ICACHE_SIZE,
23213 _SC_LEVEL1_ICACHE_ASSOC, _SC_LEVEL1_ICACHE_LINESIZE,
23214 _SC_LEVEL1_DCACHE_SIZE, _SC_LEVEL1_DCACHE_ASSOC,
23215 _SC_LEVEL1_DCACHE_LINESIZE, _SC_LEVEL2_CACHE_SIZE,
23216 _SC_LEVEL2_CACHE_ASSOC, _SC_LEVEL2_CACHE_LINESIZE,
23217 _SC_LEVEL3_CACHE_SIZE, _SC_LEVEL3_CACHE_ASSOC,
23218 _SC_LEVEL3_CACHE_LINESIZE, _SC_LEVEL4_CACHE_SIZE,
23219 _SC_LEVEL4_CACHE_ASSOC, _SC_LEVEL4_CACHE_LINESIZE): New
23222 2017-10-23 Michael Collison <michael.collison@arm.com>
23224 * sysdeps/aarch64/fpu/e_sqrt.c (ieee754_sqrt): Replace asm statements
23225 with __builtin_sqrt.
23226 * sysdeps/aarch64/fpu/e_sqrtf.c (ieee754_sqrtf): Replace asm statements
23227 with __builtin_sqrtf.
23228 * sysdeps/aarch64/fpu/s_ceil.c (__ceil): Replace asm statements
23229 with __builtin_ceil.
23230 * sysdeps/aarch64/fpu/s_ceilf.c (__ceilf): Replace asm statements
23231 with __builtin_ceilf.
23232 * sysdeps/aarch64/fpu/s_floor.c (__floor): Replace asm statements
23233 with __builtin_floor.
23234 * sysdeps/aarch64/fpu/s_floorf.c (__floorf): Replace asm statements
23235 with __builtin_floorf.
23236 * sysdeps/aarch64/fpu/s_fma.c (__fma): Replace asm statements
23237 with __builtin_fma.
23238 * sysdeps/aarch64/fpu/s_fmaf.c (__fmaf): Replace asm statements
23239 with __builtin_fmaf.
23240 * sysdeps/aarch64/fpu/s_fmax.c (__fmax): Replace asm statements
23241 with __builtin_fmax.
23242 * sysdeps/aarch64/fpu/s_fmaxf.c (__fmaxf): Replace asm statements
23243 with __builtin_fmaxf.
23244 * sysdeps/aarch64/fpu/s_fmin.c (__fmin): Replace asm statements
23245 with __builtin_fmin.
23246 * sysdeps/aarch64/fpu/s_fminf.c (__fminf): Replace asm statements
23247 with __builtin_fminf.
23248 * sysdeps/aarch64/fpu/s_frint.c: Delete file.
23249 * sysdeps/aarch64/fpu/s_frintf.c: Delete file.
23250 * sysdeps/aarch64/fpu/s_llrint.c (__llrint): Replace asm statements
23251 with builtin_rint and conversion to int.
23252 * sysdeps/aarch64/fpu/s_llrintf.c (__llrintf): Likewise.
23253 * sysdeps/aarch64/fpu/s_llround.c (__llround): Replace asm statements
23254 with builtin_llround.
23255 * sysdeps/aarch64/fpu/s_llroundf.c (__llroundf): Likewise.
23256 * sysdeps/aarch64/fpu/s_lrint.c (__lrint): Replace asm statements
23257 with builtin_rint and conversion to long int.
23258 * sysdeps/aarch64/fpu/s_lrintf.c (__lrintf): Likewise.
23259 * sysdeps/aarch64/fpu/s_lround.c (__lround): Replace asm statements
23260 with builtin_lround.
23261 * sysdeps/aarch64/fpu/s_lroundf.c (__lroundf): Replace asm statements
23262 with builtin_lroundf.
23263 * sysdeps/aarch64/fpu/s_nearbyint.c (__nearbyint): Replace asm
23264 statements with __builtin_nearbyint.
23265 * sysdeps/aarch64/fpu/s_nearbyintf.c (__nearbyintf): Replace asm
23266 statements with __builtin_nearbyintf.
23267 * sysdeps/aarch64/fpu/s_rint.c (__rint): Replace asm statements
23268 with __builtin_rint.
23269 * sysdeps/aarch64/fpu/s_rintf.c (__rintf): Replace asm statements
23270 with __builtin_rintf.
23271 * sysdeps/aarch64/fpu/s_round.c (__round): Replace asm statements
23272 with __builtin_round.
23273 * sysdeps/aarch64/fpu/s_roundf.c (__roundf): Replace asm statements
23274 with __builtin_roundf.
23275 * sysdeps/aarch64/fpu/s_trunc.c (__trunc): Replace asm statements
23276 with __builtin_trunc.
23277 * sysdeps/aarch64/fpu/s_truncf.c (__truncf): Replace asm statements
23278 with __builtin_truncf.
23279 * sysdeps/aarch64/fpu/Makefile: Build e_sqrt[f].c with -fno-math-errno,
23280 and s_l[l]round[f].c too.
23282 2017-10-23 Alan Modra <amodra@gmail.com>
23284 * sysdeps/powerpc/powerpc64/power8/strncpy.S: Move LR cfi.
23285 Adjust stack after restoring regs. Add missing LR cfi_restore.
23287 2017-10-23 Alan Modra <amodra@gmail.com>
23289 * sysdeps/powerpc/powerpc64/power7/strncpy.S: Decrease FRAMESIZE.
23290 Move LR save and frame setup/teardown and LR restore to
23291 immediately around memset call. Provide cfi.
23293 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
23295 * sysdeps/i386/fpu/e_powf.S: Removed.
23296 * sysdeps/i386/fpu/e_powf_log2_data.c: Likewise.
23297 * sysdeps/i386/fpu/w_powf.c: Likewise.
23298 * sysdeps/i386/fpu/libm-test-ulps: Updated for generic e_powf.c.
23299 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
23300 * sysdeps/i386/i686/fpu/multiarch/Makefile (libm-sysdep_routines):
23302 (CFLAGS-e_powf-sse2.c): New.
23303 * sysdeps/i386/i686/fpu/multiarch/e_powf-sse2.c: New file.
23304 * sysdeps/i386/i686/fpu/multiarch/e_powf.c: Likewise.
23306 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
23308 * sysdeps/i386/fpu/e_log2f.S: Removed.
23309 * sysdeps/i386/fpu/e_log2f_data.c: Likewise.
23310 * sysdeps/i386/fpu/w_log2f.c: Likewise.
23311 * sysdeps/i386/fpu/libm-test-ulps: Updated for generic e_log2f.c.
23312 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
23313 * sysdeps/i386/i686/fpu/multiarch/Makefile (libm-sysdep_routines):
23315 (CFLAGS-e_log2f-sse2.c): New.
23316 * sysdeps/i386/i686/fpu/multiarch/e_log2f-sse2.c: New file.
23317 * sysdeps/i386/i686/fpu/multiarch/e_log2f.c: Likewise.
23319 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
23321 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
23323 (CFLAGS-e_powf-fma.c): New.
23324 * sysdeps/x86_64/fpu/multiarch/e_powf-fma.c: New file.
23325 * sysdeps/x86_64/fpu/multiarch/e_powf.c: Likewise.
23327 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
23329 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
23331 (CFLAGS-e_log2f-fma.c): New.
23332 * sysdeps/x86_64/fpu/multiarch/e_log2f-fma.c: New file.
23333 * sysdeps/x86_64/fpu/multiarch/e_log2f.c: Likewise.
23335 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
23337 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
23339 (CFLAGS-e_logf-fma.c): New.
23340 * sysdeps/x86_64/fpu/multiarch/e_logf-fma.c: New file.
23341 * sysdeps/x86_64/fpu/multiarch/e_logf.c: Likewise.
23343 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
23345 * sysdeps/i386/fpu/e_logf.S: Removed.
23346 * sysdeps/i386/fpu/e_logf_data.c: Likewise.
23347 * sysdeps/i386/fpu/w_logf.c: Likewise.
23348 * sysdeps/i386/i686/fpu/e_logf.S: Likewise.
23349 * sysdeps/i386/fpu/libm-test-ulps: Updated for generic e_logf.c.
23350 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
23351 * sysdeps/i386/i686/fpu/multiarch/Makefile (libm-sysdep_routines):
23353 (CFLAGS-e_logf-sse2.c): New.
23354 * sysdeps/i386/i686/fpu/multiarch/e_logf-sse2.c: New file.
23355 * sysdeps/i386/i686/fpu/multiarch/e_logf.c: Likewise.
23357 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
23359 * sysdeps/i386/fpu/e_exp2f.S: Removed.
23360 * sysdeps/i386/fpu/w_exp2f.c: Likewise.
23361 * sysdeps/i386/fpu/libm-test-ulps: Updated for generic e_exp2f.c.
23362 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
23363 * sysdeps/i386/i686/fpu/multiarch/Makefile (libm-sysdep_routines):
23365 (CFLAGS-e_exp2f-sse2.c): New.
23366 * sysdeps/i386/i686/fpu/multiarch/e_exp2f-sse2.c: New file.
23367 * sysdeps/i386/i686/fpu/multiarch/e_exp2f.c: Likewise.
23369 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
23371 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
23373 (CFLAGS-e_exp2f-fma.c): New.
23374 * sysdeps/x86_64/fpu/multiarch/e_exp2f-fma.c: New file.
23375 * sysdeps/x86_64/fpu/multiarch/e_exp2f.c: Likewise.
23377 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
23379 * sysdeps/i386/fpu/e_exp2f_data.c: Removed.
23380 * sysdeps/i386/fpu/e_expf.S: Likewise.
23381 * sysdeps/i386/fpu/math_errf.c: Likewise.
23382 * sysdeps/i386/fpu/w_expf.c: Likewise.
23383 * sysdeps/i386/i686/fpu/multiarch/e_expf-ia32.S: Likewise.
23384 * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Likewise.
23385 * sysdeps/i386/i686/fpu/multiarch/w_expf.c: Likewise.
23386 * sysdeps/i386/fpu/libm-test-ulps: Updated for generic e_expf.c.
23387 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
23388 * sysdeps/i386/i686/fpu/multiarch/Makefile (libm-sysdep_routines):
23389 Remove e_expf-ia32.
23390 (CFLAGS-e_expf-sse2.c): New.
23391 * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.c: New file.
23392 * sysdeps/i386/i686/fpu/multiarch/e_expf.c: Rewritten.
23394 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
23396 * sysdeps/x86_64/fpu/e_expf.S: Removed.
23397 * sysdeps/x86_64/fpu/multiarch/e_expf-fma.S: Likewise.
23398 * sysdeps/x86_64/fpu/w_expf.c: Likewise.
23399 * sysdeps/x86_64/fpu/libm-test-ulps: Updated for generic
23401 * sysdeps/x86_64/fpu/multiarch/Makefile (CFLAGS-e_expf-fma.c):
23403 * sysdeps/x86_64/fpu/multiarch/e_expf-fma.c: New file.
23404 * sysdeps/x86_64/fpu/multiarch/e_expf.c (__redirect_ieee754_expf):
23406 (__redirect_expf): This.
23407 (SYMBOL_NAME): Changed to expf.
23408 (__ieee754_expf): Renamed to ...
23410 (__GI___expf): This.
23411 (__ieee754_expf): Add strong_alias.
23412 (__expf_finite): Likewise.
23414 Include <sysdeps/ieee754/flt-32/e_expf.c>.
23416 2017-10-22 Paul Eggert <eggert@cs.ucla.edu>
23419 * posix/glob.c (__glob): Fix buffer overflow during GLOB_TILDE
23422 2017-10-21 Florian Weimer <fweimer@redhat.com>
23424 * posix/Makefile (tests): Add tst-glob-tilde.
23425 (tests-special): Add tst-glob-tilde-mem.out
23426 (tst-glob-tilde-ENV): Set MALLOC_TRACE.
23427 (tst-glob-tilde-mem.out): Add mtrace check.
23428 * posix/tst-glob-tilde.c: New file.
23430 2017-10-20 Joseph Myers <joseph@codesourcery.com>
23432 * bits/floatn-common.h: New file.
23433 * math/Makefile (headers): Add bits/floatn-common.h.
23434 * bits/floatn.h: Include <bits/floatn-common.h>.
23435 * sysdeps/ia64/bits/floatn.h: Likewise.
23436 * sysdeps/ieee754/ldbl-128/bits/floatn.h: Likewise.
23437 * sysdeps/mips/ieee754/bits/floatn.h: Likewise.
23438 * sysdeps/powerpc/bits/floatn.h: Likewise.
23439 * sysdeps/x86/bits/floatn.h: Likewise.
23441 2017-10-20 Adhemerval Zanella <adhemerval.zanella@linaro.org>
23443 * configure.ac (libc_cv_gcc_incompatbile_alias): New define:
23444 indicates whether compiler emits an warning for alias for
23445 functions with incompatible types.
23448 * sysdeps/unix/sysv/linux/spawni.c (__spawnix): Handle the case where
23449 the auxiliary process is terminated by a signal before calling _exit
23452 2017-10-20 H.J. Lu <hongjiu.lu@intel.com>
23455 * sysdeps/x86/cpu-features-offsets.sym (XSAVE_STATE_SIZE_OFFSET):
23457 * sysdeps/x86/cpu-features.c: Include <libc-pointer-arith.h>.
23458 (get_common_indeces): Set xsave_state_size, xsave_state_full_size
23459 and bit_arch_XSAVEC_Usable if needed.
23460 (init_cpu_features): Remove bit_arch_Use_dl_runtime_resolve_slow
23461 and bit_arch_Use_dl_runtime_resolve_opt.
23462 * sysdeps/x86/cpu-features.h (bit_arch_Use_dl_runtime_resolve_opt):
23464 (bit_arch_Use_dl_runtime_resolve_slow): Likewise.
23465 (bit_arch_Prefer_No_AVX512): Updated.
23466 (bit_arch_MathVec_Prefer_No_AVX512): Likewise.
23467 (bit_arch_XSAVEC_Usable): New.
23468 (STATE_SAVE_OFFSET): Likewise.
23469 (STATE_SAVE_MASK): Likewise.
23470 [__ASSEMBLER__]: Include <cpu-features-offsets.h>.
23471 (cpu_features): Add xsave_state_size and xsave_state_full_size.
23472 (index_arch_Use_dl_runtime_resolve_opt): Removed.
23473 (index_arch_Use_dl_runtime_resolve_slow): Likewise.
23474 (index_arch_XSAVEC_Usable): New.
23475 * sysdeps/x86/cpu-tunables.c (TUNABLE_CALLBACK (set_hwcaps)):
23476 Support XSAVEC_Usable. Remove Use_dl_runtime_resolve_slow.
23477 * sysdeps/x86_64/Makefile (tst-x86_64-1-ENV): New if tunables
23479 * sysdeps/x86_64/dl-machine.h (elf_machine_runtime_setup):
23480 Replace _dl_runtime_resolve_sse, _dl_runtime_resolve_avx,
23481 _dl_runtime_resolve_avx_slow, _dl_runtime_resolve_avx_opt,
23482 _dl_runtime_resolve_avx512 and _dl_runtime_resolve_avx512_opt
23483 with _dl_runtime_resolve_fxsave, _dl_runtime_resolve_xsave and
23484 _dl_runtime_resolve_xsavec.
23485 * sysdeps/x86_64/dl-trampoline.S (DL_RUNTIME_UNALIGNED_VEC_SIZE):
23487 (DL_RUNTIME_RESOLVE_REALIGN_STACK): Check STATE_SAVE_ALIGNMENT
23488 instead of VEC_SIZE.
23489 (REGISTER_SAVE_BND0): Removed.
23490 (REGISTER_SAVE_BND1): Likewise.
23491 (REGISTER_SAVE_BND3): Likewise.
23492 (REGISTER_SAVE_RAX): Always defined to 0.
23494 (_dl_runtime_resolve_avx): Likewise.
23495 (_dl_runtime_resolve_avx_slow): Likewise.
23496 (_dl_runtime_resolve_avx_opt): Likewise.
23497 (_dl_runtime_resolve_avx512): Likewise.
23498 (_dl_runtime_resolve_avx512_opt): Likewise.
23499 (_dl_runtime_resolve_sse): Likewise.
23500 (_dl_runtime_resolve_sse_vex): Likewise.
23502 (_dl_runtime_resolve_fxsave): Likewise.
23503 (USE_XSAVE): Likewise.
23504 (_dl_runtime_resolve_xsave): Likewise.
23505 (USE_XSAVEC): Likewise.
23506 (_dl_runtime_resolve_xsavec): Likewise.
23507 * sysdeps/x86_64/dl-trampoline.h (_dl_runtime_resolve_avx512):
23509 (_dl_runtime_resolve_avx512_opt): Likewise.
23510 (_dl_runtime_resolve_avx): Likewise.
23511 (_dl_runtime_resolve_avx_opt): Likewise.
23512 (_dl_runtime_resolve_sse): Likewise.
23513 (_dl_runtime_resolve_sse_vex): Likewise.
23514 (_dl_runtime_resolve_fxsave): New.
23515 (_dl_runtime_resolve_xsave): Likewise.
23516 (_dl_runtime_resolve_xsavec): Likewise.
23518 2017-10-20 Paul Eggert <eggert@cs.ucla.edu>
23522 * posix/glob.c (__glob): Fix one-byte overflow.
23524 2017-10-20 Wilco Dijkstra <wdijkstr@arm.com>
23526 * malloc/malloc.c (sysdep-cancel.h): Add include.
23528 2017-10-20 Wilco Dijkstra <wdijkstr@arm.com>
23530 * malloc/malloc.c (_int_free): Add SINGLE_THREAD_P fast paths.
23532 2017-10-20 Will Hawkins <hawkinsw@borlaugic.com>
23534 * resolv/Makefile [$(build-shared)$(have-thread-library) == yesyes]
23535 (tests): Remove $(objpfx)ga_test depdendency.
23536 * resolv/ga_test.c: Remove file.
23538 2017-10-20 Mike FABIAN <mfabian@redhat.com>
23541 * localedata/SUPPORTED: Add kab_DZ/UTF-8.
23542 * localedata/locales/kab_DZ: New file.
23544 2017-10-20 H.J. Lu <hongjiu.lu@intel.com>
23546 * sysdeps/m68k/dl-machine.h (elf_machine_load_address): Use
23547 _dl_relocate_static_pie instead of _dl_start to compute load
23548 address in static PIE.
23550 2017-10-20 H.J. Lu <hongjiu.lu@intel.com>
23552 * sysdeps/m68k/start.S (_start): Check PIC instead of SHARED.
23554 2017-10-20 Mike FABIAN <mfabian@redhat.com>
23557 * localedata/SUPPORTED: Add shn_MM/UTF-8.
23558 * localedata/locales/shn_MM: New file.
23560 2017-10-20 Florian Weimer <fweimer@redhat.com>
23563 sysconf: Fix missing definition of UIO_MAXIOV on Linux.
23564 * sysdeps/posix/sysconf.c: Include <sys/uio.h>.
23565 * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-sysconf-iov_max.
23566 (tst-sysconf-iov_max): Link with tst-sysconf-iov_max-uapi.o.
23567 * sysdeps/unix/sysv/linux/tst-sysconf-iov_max.c: New file.
23568 * sysdeps/unix/sysv/linux/tst-sysconf-iov_max-uapi.c: Likewise.
23570 2017-10-19 H.J. Lu <hongjiu.lu@intel.com>
23572 * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
23574 2017-10-19 Joseph Myers <joseph@codesourcery.com>
23576 * sysdeps/mips/ieee754/bits/floatn.h: New file.
23579 * sysdeps/mips/bits/long-double.h: Move to ....
23580 * sysdeps/mips/ieee754/bits/long-double.h: ... here.
23582 2017-10-19 Wilco Dijkstra <wdijkstr@arm.com>
23584 * malloc/malloc.c (_int_free): Fix deadlock bug in consistency check.
23586 2017-10-19 Valery Reznic <valery_reznic@yahoo.com>
23587 H.J. Lu <hongjiu.lu@intel.com>
23590 * sysdeps/x86/cpu-features.c (init_cpu_features): Don't set
23591 GLRO(dl_platform) to NULL.
23592 * sysdeps/x86_64/Makefile (tests): Add tst-platform-1.
23593 (modules-names): Add tst-platformmod-1 and
23594 x86_64/tst-platformmod-2.
23595 (CFLAGS-tst-platform-1.c): New.
23596 (CFLAGS-tst-platformmod-1.c): Likewise.
23597 (CFLAGS-tst-platformmod-2.c): Likewise.
23598 (LDFLAGS-tst-platformmod-2.so): Likewise.
23599 ($(objpfx)tst-platform-1): Likewise.
23600 ($(objpfx)tst-platform-1.out): Likewise.
23601 (tst-platform-1-ENV): Likewise.
23602 ($(objpfx)x86_64/tst-platformmod-2.os): Likewise.
23603 * sysdeps/x86_64/tst-platform-1.c: New file.
23604 * sysdeps/x86_64/tst-platformmod-1.c: Likewise.
23605 * sysdeps/x86_64/tst-platformmod-2.c: Likewise.
23607 2017-10-19 Mike FABIAN <mfabian@redhat.com>
23610 * locale/iso-639.def: Add Karbi.
23611 * localedata/SUPPORTED: Add mjw_IN/UTF-8.
23612 * localedata/locales/mjw_IN: New file.
23614 2017-10-18 Joseph Myers <joseph@codesourcery.com>
23616 * sysdeps/ieee754/ldbl-128/Makeconfig: New file.
23617 * sysdeps/ieee754/ldbl-128/bits/floatn.h: Likewise.
23618 * sysdeps/ieee754/ldbl-128/float128-abi.h: Likewise.
23619 * sysdeps/generic/libm-alias-ldouble.h: Include <bits/floatn.h>.
23620 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128]
23621 (libm_alias_ldouble_other_r): Also create _Float128 alias.
23622 * sysdeps/ieee754/ldbl-opt/libm-alias-ldouble.h: Include
23624 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128]
23625 (libm_alias_ldouble_other_r): Also create _Float128 alias.
23626 * manual/math.texi (Mathematics): Document additional architecture
23627 support for _Float128.
23628 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Update.
23629 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
23630 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
23631 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
23632 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
23633 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
23634 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
23635 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
23636 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
23637 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
23638 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
23639 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
23640 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
23641 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
23642 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
23644 2017-10-18 Renlin Li <renlin.li@arm.com>
23646 * sysdeps/aarch64/dl-machine.h (elf_machine_load_address): Use
23647 _DYNAMIC symbol to calculate load address.
23649 2017-10-18 Paul A. Clarke <pc@us.ibm.com>
23651 * sysdeps/powerpc/fpu/fenv_private.h (_FPU_MASK_TRAPS_RN):
23652 (_FPU_MASK_FRAC_INEX_RET_CC): Fix masks to more properly handle
23654 (_FPU_MASK_RN): Expand _FPU_MASK_RN to 64bit hex.
23655 (_FPU_MASK_NOT_RN_NI): Treat bit 52 (left-to-right) as reserved.
23657 2017-10-18 Mike FABIAN <mfabian@redhat.com>
23660 * localedata/locales/pl_PL (LC_MONETARY): Use U+202F as mon_thousands_sep
23661 and improve readability by using more ASCII.
23662 * localedata/locales/pl_PL (LC_NUMERIC): Use U+202F as thousands_sep
23663 and improve readability by using more ASCII.
23665 2017-10-18 Wilco Dijkstra <wdijkstr@arm.com>
23667 * malloc/malloc.c (malloc_state): Use int for have_fastchunks since
23668 not all targets support atomics on bool.
23670 2017-10-17 Joseph Myers <joseph@codesourcery.com>
23672 * include/float.h [!__GNUC_PREREQ (7, 0) && __HAVE_FLOAT128 &&
23673 __GLIBC_USE (IEC_60559_TYPES_EXT)] (FLT128_MAX): Define using
23675 [!__GNUC_PREREQ (7, 0) && __HAVE_FLOAT128 && __GLIBC_USE
23676 (IEC_60559_TYPES_EXT)] (FLT128_EPSILON): Likewise.
23677 [!__GNUC_PREREQ (7, 0) && __HAVE_FLOAT128 && __GLIBC_USE
23678 (IEC_60559_TYPES_EXT)] (FLT128_MIN): Likewise.
23679 [!__GNUC_PREREQ (7, 0) && __HAVE_FLOAT128 && __GLIBC_USE
23680 (IEC_60559_TYPES_EXT)] (FLT128_TRUE_MIN): Likewise.
23682 2017-10-17 Adhemerval Zanella <adhemerval.zanella@linaro.org>
23684 * bits/uio-ext.h (RWF_HIPRI, RWF_DSYNC, RWF_SYNC, RWF_NOWAIT): New
23687 2017-10-17 Wilco Dijkstra <wdijkstr@arm.com>
23690 * malloc/arena.c (ptmalloc_init): Call malloc_init_state.
23691 * malloc/malloc.c (do_check_free_chunk): Fix build bug.
23692 (do_check_remalloced_chunk): Fix build bug.
23693 (do_check_malloc_state): Add assert that checks arena->top.
23694 (malloc_consolidate): Remove initialization.
23695 (int_mallinfo): Remove call to malloc_consolidate.
23696 (__libc_mallopt): Clarify why malloc_consolidate is needed.
23698 2017-10-17 Wilco Dijkstra <wdijkstr@arm.com>
23700 * malloc/malloc.c (FASTCHUNKS_BIT): Remove.
23701 (have_fastchunks): Remove.
23702 (clear_fastchunks): Remove.
23703 (set_fastchunks): Remove.
23704 (malloc_state): Add have_fastchunks.
23705 (malloc_init_state): Use have_fastchunks.
23706 (do_check_malloc_state): Remove incorrect invariant checks.
23707 (_int_malloc): Use have_fastchunks.
23708 (_int_free): Likewise.
23709 (malloc_consolidate): Likewise.
23711 2017-10-17 Wilco Dijkstra <wdijkstr@arm.com>
23713 * malloc/malloc.c (tcache_put): Inline.
23714 (tcache_get): Inline.
23716 2017-10-17 Jordi Mallach <jordi@gnu.org>
23718 Aurelien Jarno <aurelien@aurel32.net>
23720 * localedata/locales/ca_ES@valencia: New file.
23721 * localedata/SUPPORTED: Add ca_ES@valencia/UTF-8.
23723 2017-10-17 Romain Naour <romain.naour@gmail.com> (tiny change)
23726 * math/math.h: Let signbit use the builtin in C++ mode with gcc
23729 2017-10-17 Adhemerval Zanella <adhemerval.zanella@linaro.org>
23731 * scripts/build-many-glibcs.py (Context.add_all_configs):
23732 Add arm-linux-gnueabihf multiarch extra_glibcs.
23734 * sysdeps/generic/ifunc-init.h: New file.
23735 * sysdeps/x86/init-arch.h: Use generic ifunc-init.h.
23737 2017-10-17 Mike FABIAN <mfabian@redhat.com>
23740 * localedata/locales/el_GR: Set n_cs_precedes to 0.
23741 * localedata/locales/el_CY: copy "el_GR" because it is identical.
23742 * stdlib/tst-strfmon_l.c: adapt test case.
23744 2017-10-16 Joseph Myers <joseph@codesourcery.com>
23746 * sysdeps/generic/float128-abi.h: New file.
23747 * sysdeps/ieee754/float128/Versions (FLOAT128_VERSION): Move
23748 non-__prefixed symbols to ....
23749 * math/Versions: ... here. Include <float128-abi.h>.
23750 * stdlib/Versions ... and here. Include <float128-abi.h>
23752 2017-10-16 Florian Weimer <fweimer@redhat.com>
23754 * version.h (VERSION): Switch to ".9000" as the development
23757 2017-10-16 Florian Weimer <fweimer@redhat.com>
23760 * malloc/mcheck-init.c (__malloc_initialize_hook): Use
23761 compat_symbol_reference to access non-default version.
23763 2017-10-16 Florian Weimer <fweimer@redhat.com>
23765 * malloc/Makefile (others-extras): Set to mcheck-init.o.
23767 2017-10-16 Carlos O'Donell <carlos@redhat.com>
23769 * include/shlib-compat.h (compat_symbol_reference): Update
23772 2017-10-16 Joseph Myers <joseph@codesourcery.com>
23774 * math/Makefile (test-types): Add
23775 $(type-float128-$(float128-alias-fcts)).
23776 * math/test-float128.h (TYPE_STR): Define conditional on
23777 [FLT128_MANT_DIG == LDBL_MANT_DIG].
23778 (ULP_IDX): Likewise.
23779 (ULP_I_IDX): Likewise.
23781 * stdlib/strtold.c: Include <bits/floatn.h>
23782 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (strtof128): Define
23783 and later undefine as macro. Define as weak alias if
23785 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (wcstof128): Define
23786 and later undefine as macro. Define as weak alias if
23788 * sysdeps/ieee754/ldbl-128/strtold_l.c [__HAVE_FLOAT128 &&
23789 !__HAVE_DISTINCT_FLOAT128] (strtof128_l): Define and later
23790 undefine as macro. Define as weak alias if [!USE_WIDE_CHAR].
23791 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (wcstof128_l):
23792 Define and later undefine as macro. Define as weak alias if
23794 * sysdeps/ieee754/ldbl-64-128/strtold_l.c: Include
23796 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (strtof128_l):
23797 Define and later undefine as macro. Define as weak alias if
23799 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (wcstof128_l):
23800 Define and later undefine as macro. Define as weak alias if
23803 2017-10-15 Carlos O'Donell <carlos@redhat.com>
23805 * localedata/collate-test.c (allocate_arrays): Don't use \n in
23806 record_verbose messages.
23808 2017-10-15 H.J. Lu <hongjiu.lu@intel.com>
23811 * malloc/hooks.c (realloc_check): Use DIAG_IGNORE_NEEDS_COMMENT
23812 to silence -O3 -Wall warning with GCC 7.
23814 2017-10-14 H.J. Lu <hongjiu.lu@intel.com>
23816 * Makeconfig (+link-static-before-libc): Use the first of
23817 $(CRT-$(@F)) and $(csu-objpfx)$(static-start-installed-name).
23818 * gmon/Makefile (tests): Add tst-gmon-static.
23819 (tests-static): Likewise.
23820 (CFLAGS-tst-gmon-static.c): New.
23821 (CRT-tst-gmon-static): Likewise.
23822 (DEFAULT-LDFLAGS-tst-gmon-static): Likewise.
23823 (tst-gmon-static-ENV): Likewise.
23824 (tests-special): Likewise.
23825 ($(objpfx)tst-gmon-static.out): Likewise.
23826 (clean-tst-gmon-static-data): Likewise.
23827 ($(objpfx)tst-gmon-static-gprof.out): Likewise.
23828 * gmon/tst-gmon-static-gprof.sh: New file.
23829 * gmon/tst-gmon-static.c: Likewise.
23831 2017-10-13 Carlos O'Donell <carlos@redhat.com>
23834 * locale/programs/linereader.c (get_string): Don't warn on
23835 non-symbolic character.
23838 * locale/programs/ld-monetary.c (monetary_finish): Allow ""
23842 * locale/programs/record-status.h: New file
23843 * locale/programs/locale.c: Add comment.
23844 * locale/programs/charmap-dir.c: Don't include error.h.
23845 (charmap_opendir): Use record_error.
23846 * locale/programs/charmap.c: Don't include error.h.
23847 (charmap_read): Use record_error, and record_warning.
23848 (parse_charmap): Likewise.
23849 * locale/programs/ld-address.c: Don't include error.h.
23850 (address_finish): Use record_error, and record_warning.
23851 * locale/programs/ld-collate.c: Don't include error.h.
23852 (collate_finish): Use record_error, and record_error_at_line.
23853 * locale/programs/ld-ctype.c (ctype_finish): Use record_error.
23854 (ctype_class_new): Likewise.
23855 (ctype_map_new): Likewise.
23856 (set_one_default): Likewise.
23857 (set_class_defaults): Likewise.
23858 (translit_flatten): Likewise.
23859 (allocate_arrays): Use record_error, and record_verbose.
23860 * locale/programs/ld-identification.c: Don't include error.h.
23861 (indentation_finish): Use record_error and record_warning.
23862 * locale/programs/ld-measurement.c: Don't include error.h.
23863 (measurement_finish): Use record_error.
23864 * locale/programs/ld-messages.c
23865 (message_finish): Likewise.
23866 * locale/programs/ld-monetary.c
23867 (monetary_finish): Likewise.
23868 * locale/programs/ld-name.c (name_finish): Use record_error
23869 and record_warning.
23870 * locale/programs/ld-numeric.c
23871 (numeric_finish): Use record_error.
23872 * locale/programs/ld-paper.c: Don't include error.h.
23873 (paper_finish): Use record_error.
23874 * locale/programs/ld-telephone.c: Don't include error.h.
23875 (telephone_finish): Use record_error.
23876 * locale/programs/ld-time.c (time_finish): Likewise.
23877 * locale/programs/linereader.h (lr_error): Make inline func.
23878 * locale/programs/localedef.c: Define recorded_warning_count,
23879 and recorded_error_count.
23880 (main): Use record_error. Use recorded_error_count and
23881 recorded_warning_count to issue correct error returns.
23882 (add_to_readlist): Use record_error.
23883 (find_locale): Likewise.
23884 (load_locale): Likewise.
23885 * locale/programs/localedef.h: Remove be_quiet
23886 and WITH_CUR_LOCALE.
23887 * locale/programs/locarchive.c (compare_from_file): Use
23889 * locale/programs/locfile.c (write_locale_data): Use
23891 * locale/programs/repertoire.c: Dont include error.h.
23892 (repertoire_complain): Use record_error.
23893 * localedata/tst-fmon.sh: Expect failures from localedef.
23894 * localedata/tst-locale.sh: Likewise.
23895 * localedata/gen-locale.sh: Expect failures from SHIFT_JIS.
23897 * localedata/unicode-gen/Makefile (GENERATED): Use i18n_ctype.
23898 (REPORTS): Likewise.
23900 (i18n): Rename to...
23901 (i18n_ctype): ...this.
23902 (i18n-report): Rename to...
23903 (i18n_ctype-report): ...this.
23904 * localedata/locales/i18n_ctype: Regenerate.
23905 * localedata/locales/i18n: copy i18n_ctype.
23907 2017-10-13 Joseph Myers <joseph@codesourcery.com>
23909 * stdlib/strfroml.c: Include <bits/floatn.h>.
23910 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (strfromf128):
23911 Define before include of <stdlib.h> and undefine afterwards, then
23912 define as weak alias.
23914 * sysdeps/ieee754/ldbl-64-128/s_nextafterl.c (weak_alias):
23915 Undefine and restore default definition. Use
23916 libm_alias_ldouble_other.
23918 2017-10-13 Peter Zelezny <peter.zelezny@dektech.com.au>
23921 * nptl/allocatestack.c (__nptl_setxid_error): Preserve error code
23924 2017-10-13 James Clarke <jrtc27@jrtc27.com>
23926 * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela):
23927 Assign sym_map to be map for local symbols, as TLS relocations
23928 use sym_map to determine whether the symbol is defined and to
23929 extract the TLS information.
23930 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Likewise.
23931 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
23933 2017-10-13 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
23936 * sysdeps/powerpc/fpu/math_private.h (math_opt_barrier):
23937 (math_force_eval): Add powerpc version.
23940 * stdio-common/tst-printf.c (fp_test): Add tests for DBL_MAX and
23942 (do_test): Likewise.
23943 * stdio-common/tst-printf.sh: Likewise.
23944 * sysdeps/powerpc/powerpc64/power7/add_n.S: Invert the initial
23945 ifdef clause in order to set the carry bit right. Replace r0 by
23946 0 without changing the behavior.
23948 2017-10-13 Joseph Myers <joseph@codesourcery.com>
23950 * sysdeps/sparc/sparc32/fpu/s_fabsl.c: Include
23951 <libm-alias-ldouble.h>.
23952 (fabsl): Define using libm_alias_ldouble.
23953 * sysdeps/sparc/sparc64/fpu/s_fabsl.c: Include
23954 <libm-alias-ldouble.h>.
23955 (fabsl): Define using libm_alias_ldouble.
23957 * sysdeps/ieee754/ldbl-opt/w_lgamma_compatl.c [BUILD_LGAMMA]:
23958 Remove conditional code.
23960 * sysdeps/ieee754/ldbl-opt/s_clog10l.c (__clog10l__internal):
23961 Rename to __clog10_internal_l.
23962 (__clog10_internal_l): Define aliases using
23963 libm_alias_ldouble_other instead of using libm_alias_ldouble_other
23966 2017-10-13 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
23968 * benchtests/Makefile (bench-math): Add sinf, cosf and sincosf.
23969 * benchtests/sincosf-inputs: New file.
23970 * benchtests/cosf-inputs: New file.
23971 * benchtests/sinf-inputs: New file.
23973 2017-10-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
23975 * posix/tst-spawn.c (do_test): Wait for both children.
23977 2017-10-12 H.J. Lu <hongjiu.lu@intel.com>
23980 * gmon/Makefile [$(have-fpie)$(build-shared) == yesyes] (tests,
23981 tests-pie): Add tst-gmon-pie.
23982 (CFLAGS-tst-gmon-pie.c): New.
23983 (CRT-tst-gmon-pie): Likewise.
23984 (tst-gmon-pie-ENV): Likewise.
23985 [$(have-fpie)$(build-shared) == yesyes] (tests-special): Likewise.
23986 ($(objpfx)tst-gmon-pie.out): Likewise.
23987 (clean-tst-gmon-pie-data): Likewise.
23988 ($(objpfx)tst-gmon-pie-gprof.out): Likewise.
23989 * gmon/gmon.c [PIC]: Include <link.h>.
23990 [PIC] (callback): New function.
23991 (write_hist): Add an argument for load address. Subtract load
23993 (write_call_graph): Likewise.
23994 (write_gmon): Call __dl_iterate_phdr to get load address, pass
23995 it to write_hist and write_call_graph.
23996 * gmon/tst-gmon-pie.c: New file.
23998 2017-10-11 Joseph Myers <joseph@codesourcery.com>
24000 * math/Makefile (test-types-basic): New variable.
24001 (test-types): Likewise.
24002 (libm-test-support): Use $(test-types) instead of $(types).
24003 (libm-tests-base-normal): Likewise.
24004 (libm-tests-base-finite): Likewise.
24005 (libm-tests-base-inline): Likewise.
24006 (generated): Likewise.
24007 ($(objpfx)libm-test-support-$(t).c): Likewise.
24008 (libm-tests-for-type iterator): Likewise.
24009 (libm-test-support iterator): Likewise.
24010 * math/libm-test-support.c (ulp_i_idx): Use ULP_I_IDX.
24011 (ulp_idx): Use ULP_IDX.
24012 * math/test-ldouble.h: Include <float.h>.
24013 (TYPE_STR): Define conditional on [LDBL_MANT_DIG == DBL_MANT_DIG].
24014 (ULP_IDX): New macro.
24015 (ULP_I_IDX): Likewise.
24016 * math/test-double.h (ULP_IDX): Likewise.
24017 (ULP_I_IDX): Likewise.
24018 * math/test-float.h (ULP_IDX): Likewise.
24019 (ULP_I_IDX): Likewise.
24020 * math/test-float128.h (ULP_IDX): Likewise.
24021 (ULP_I_IDX): Likewise.
24023 2017-10-11 Adhemerval Zanella <adhemerval.zanella@linaro.org>
24025 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Remove file.
24026 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
24027 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
24028 * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h: Likewise.
24029 * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
24030 * sysdeps/unix/sysv/linux/nios2/sysdep-cancel.h: Likewise.
24031 * sysdeps/unix/sysv/linux/powerpc/sysdep-cancel.h: Likewise.
24032 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
24033 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
24034 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
24035 * sysdeps/unix/sysv/linux/sparc/sysdep-cancel.h: Likewise.
24036 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
24037 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
24038 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
24039 (SINGLE_THREAD_BY_GLOBAL): Define.
24040 * sysdeps/unix/sysv/linux/aarch64/sysdep.h (SINGLE_THREAD_BY_GLOBAL):
24042 * sysdeps/unix/sysv/linux/alpha/sysdep.h (SINGLE_THREAD_BY_GLOBAL):
24044 * sysdeps/unix/sysv/linux/arm/sysdep.h (SINGLE_THREAD_BY_GLOBAL):
24046 * sysdeps/unix/sysv/linux/hppa/sysdep.h (SINGLE_THREAD_BY_GLOBAL):
24048 * sysdeps/unix/sysv/linux/microblaze/sysdep.h
24049 (SINGLE_THREAD_BY_GLOBAL): Likewise.
24050 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SINGLE_THREAD_BY_GLOBAL):
24053 2017-10-11 Andreas Schwab <schwab@suse.de>
24055 * nis/Makefile (aux): Remove.
24056 * nscd/Makefile (aux): Add nscd_hash.
24057 (nscd-modules): Likewise.
24058 ($(objpfx)nscd): Don't depend on libnsl.
24059 * nscd/nscd_hash.c: New file.
24060 * nscd/nscd_hash.h: Likewise.
24061 * nscd/cache.c: Include "nscd_hash.h" instead of <rpcsvc/nis.h>.
24062 (cache_search, cache_add): Use __nscd_hash instead of __nis_hash.
24063 * nscd/nscd_helper.c: Include <sys/param.h> and "nscd_hash.h"
24064 instead of <nis/rpcsvc/nis.h>.
24065 (__nscd_cache_search): Use __nscd_hash instead of __nis_hash.
24067 2017-10-11 Florian Weimer <fweimer@redhat.com>
24070 Avoid large NSS buffers with many addresses, aliases.
24071 * nss/nss_files/files-hosts.c (gethostbyname3_multi): Rewrite
24072 using dynarrays and struct alloc_buffer.
24073 * nss/Makefile (tests): Add tst-nss-files-hosts-multi.
24074 (tst-nss-files-hosts-multi): Link with -ldl.
24075 * nss/tst-nss-files-hosts-multi.c: New file.
24077 2017-10-11 Florian Weimer <fweimer@redhat.com>
24080 * nss/nss_files/files-hosts.c (gethostbyname3_multi): Use struct
24081 scratch_buffer. Eliminate gotos.
24083 2017-10-11 Joseph Myers <joseph@codesourcery.com>
24085 * sysdeps/ieee754/ldbl-opt/s_clog10l.c: Use
24086 libm_alias_ldouble_other.
24087 * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c (weak_alias): Do not
24088 undefine and redefine.
24089 [LIBM_SVID_COMPAT && !LONG_DOUBLE_COMPAT (libm, GLIBC_2_1)]
24090 (exp10l): Do not define here.
24091 * sysdeps/ieee754/ldbl-opt/w_lgamma_compatl.c [BUILD_LGAMMA]
24092 (weak_alias): Undefine and redefine.
24093 [BUILD_LGAMMA]: Use libm_alias_ldouble_other.
24094 * sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c
24095 [LIBM_SVID_COMPAT] (weak_alias): Undefine and redefine here.
24096 [LIBM_SVID_COMPAT]: Use libm_alias_ldouble_other.
24098 * soft-fp/fmadf4.c: Include <libm-alias-double.h>.
24099 [!__fma] (fma): Define using libm_alias_double.
24100 * soft-fp/fmasf4.c: Include <libm-alias-float.h>.
24101 [!__fmaf] (fmaf): Define using libm_alias_float.
24102 * soft-fp/fmatf4.c: Include <libm-alias-ldouble.h>.
24103 (fmal): Define using libm_alias_ldouble.
24105 2017-10-10 Joseph Myers <joseph@codesourcery.com>
24107 * sysdeps/generic/libm-alias-double.h (libm_alias_double_other_r):
24109 (libm_alias_double_other): Likewise.
24110 (libm_alias_double_r): Use libm_alias_double_other_r.
24111 * sysdeps/generic/libm-alias-float.h (libm_alias_float_other_r):
24113 (libm_alias_float_other): Likewise.
24114 (libm_alias_float_r): Use libm_alias_float_other_r.
24115 * sysdeps/generic/libm-alias-float128.h
24116 (libm_alias_float128_other_r): New macro.
24117 (libm_alias_float128_other): Likewise.
24118 (libm_alias_float128_r): Use libm_alias_float128_other_r.
24119 * sysdeps/generic/libm-alias-ldouble.h
24120 (libm_alias_ldouble_other_r): New macro.
24121 (libm_alias_ldouble_other): Likewise.
24122 (libm_alias_ldouble_r): Use libm_alias_ldouble_other_r.
24123 * sysdeps/ieee754/ldbl-opt/libm-alias-double.h
24124 (libm_alias_double_other_r): New macro.
24125 (libm_alias_double_other): Likewise.
24126 (libm_alias_double_r): Use libm_alias_double_other_r.
24127 * sysdeps/ieee754/ldbl-opt/libm-alias-ldouble.h
24128 (libm_alias_ldouble_other_r): New macro.
24129 (libm_alias_ldouble_other): Likewise.
24130 (libm_alias_ldouble_r): Use libm_alias_ldouble_other_r.
24131 * math/w_lgamma_main.c: Include <libm-alias-double.h>.
24132 [!USE_AS_COMPAT]: Use libm_alias_double_other.
24133 * math/w_lgammaf_main.c: Include <libm-alias-float.h>.
24134 [!USE_AS_COMPAT]: Use libm_alias_float_other.
24135 * math/w_lgammal_main.c: Include <libm-alias-ldouble.h>.
24136 [!USE_AS_COMPAT]: Use libm_alias_ldouble_other.
24137 * math/w_exp2f.c: Use libm_alias_float_other.
24138 * math/w_expf.c: Likewise.
24139 * math/w_log2f.c: Likewise.
24140 * math/w_logf.c: Likewise.
24141 * math/w_powf.c: Likewise.
24142 * sysdeps/ieee754/flt-32/e_exp2f.c: Include <libm-alias-float.h>.
24143 [!__exp2f]: Use libm_alias_float_other.
24144 * sysdeps/ieee754/flt-32/e_expf.c: Include <libm-alias-float.h>.
24145 [!__expf]: Use libm_alias_float_other.
24146 * sysdeps/ieee754/flt-32/e_log2f.c: Include <libm-alias-float.h>.
24147 [!__log2f]: Use libm_alias_float_other.
24148 * sysdeps/ieee754/flt-32/e_logf.c: Include <libm-alias-float.h>.
24149 [!__logf]: Use libm_alias_float_other.
24150 * sysdeps/ieee754/flt-32/e_powf.c: Include <libm-alias-float.h>.
24151 [!__powf]: Use libm_alias_float_other.
24153 2017-10-10 Florian Weimer <fweimer@redhat.com>
24155 * nss/nss_files/files-hosts.c (gethostbyname3_multi): New
24157 (_nss_files_gethostbyname3_r): Call it.
24159 2017-10-09 Joseph Myers <joseph@codesourcery.com>
24161 * sysdeps/generic/math-type-macros.h [!declare_mgen_alias]: Give
24162 error. Remove default definition of declare_mgen_alias.
24163 [!declare_mgen_alias_r]: Likewise.
24164 * sysdeps/generic/math-type-macros-double.h
24165 [!declare_mgen_alias_r] (declare_mgen_alias_r): New macro.
24166 * sysdeps/generic/math-type-macros-float.h [!declare_mgen_alias_r]
24167 (declare_mgen_alias_r): Likewise.
24168 * sysdeps/generic/math-type-macros-float128.h
24169 [!declare_mgen_alias_r] (declare_mgen_alias_r): Likewise.
24170 * sysdeps/generic/math-type-macros-ldouble.h
24171 [!declare_mgen_alias_r] (declare_mgen_alias_r): Likewise.
24172 * math/w_lgamma_r_template.c (declare_mgen_alias_r_x): Remove
24174 (declare_mgen_alias_r_s): Likewise.
24175 (declare_mgen_alias_r): Likewise.
24176 * math/w_lgamma_r_compat.c: Include <libm-alias-double.h>.
24177 (lgamma_r): Define using libm_alias_double_r.
24178 * math/w_lgammaf_r_compat.c: Include <libm-alias-float.h>.
24179 (lgammaf_r): Define using libm_alias_float_r.
24180 * math/w_lgammal_r_compat.c: Include <libm-alias-ldouble.h>.
24181 (lgammal_r): Define using libm_alias_ldouble_r.
24182 * sysdeps/ieee754/ldbl-opt/w_lgamma_r_compat.c: Remove file.
24183 * sysdeps/ieee754/ldbl-opt/w_lgammal_r_compat.c: Likewise.
24185 2017-10-09 Adhemerval Zanella <adhemerval.zanella@linaro.org>
24187 * lib/glob.c (__glob_pattern_type): Remove now-spurious
24188 extern declaration.
24190 2017-10-09 Joseph Myers <joseph@codesourcery.com>
24192 * sysdeps/ieee754/ldbl-opt/w_scalbln.c: Remove file.
24194 2017-10-09 Jonathan Wakely <jwakely@redhat.com>
24197 * include/features.h [__cplusplus >= 201703] (__USE_ISOC11): Define.
24198 [__cplusplus >= 201103] (__USE_ISOC99): Define.
24199 * math/Makefile (test-math-cxx11): New test.
24200 * math/test-math-cxx11.cc: New file.
24202 2017-10-08 Christian Brauner <christian.brauner@ubuntu.com>
24204 * login/openpty.c (openpty): Close slave pty file descriptor on error.
24206 * login/openpty.c (openpty): If defined, use the TIOCGPTPEER ioctl()
24207 call to allocate the slave pty file descriptor.
24209 2017-10-06 Joseph Myers <joseph@codesourcery.com>
24211 * sysdeps/ieee754/ldbl-128/s_fma.c: Include <libm-alias-double.h>.
24212 [!__fma] (fma): Define using libm_alias_double.
24213 * sysdeps/ieee754/ldbl-96/s_fma.c: Include <libm-alias-double.h>.
24214 [!__fma] (fma): Define using libm_alias_double.
24216 * sysdeps/ieee754/float128/float128_private.h: Include
24217 <libm-alias-ldouble.h> and <libm-alias-float128.h>.
24218 (libm_alias_ldouble_r): Undefine and redefine.
24219 * sysdeps/ieee754/ldbl-128/s_asinhl.c: Include
24220 <libm-alias-ldouble.h>.
24221 (asinhl): Define using libm_alias_ldouble.
24222 * sysdeps/ieee754/ldbl-128/s_atanl.c: Include
24223 <libm-alias-ldouble.h>.
24224 (atanl): Define using libm_alias_ldouble.
24225 * sysdeps/ieee754/ldbl-128/s_cbrtl.c: Include
24226 <libm-alias-ldouble.h>.
24227 (cbrtl): Define using libm_alias_ldouble.
24228 * sysdeps/ieee754/ldbl-128/s_ceill.c: Include
24229 <libm-alias-ldouble.h>.
24230 (ceill): Define using libm_alias_ldouble.
24231 * sysdeps/ieee754/ldbl-128/s_copysignl.c: Include
24232 <libm-alias-ldouble.h>.
24233 (copysignl): Define using libm_alias_ldouble.
24234 * sysdeps/ieee754/ldbl-128/s_cosl.c: Include
24235 <libm-alias-ldouble.h>.
24236 (cosl): Define using libm_alias_ldouble.
24237 * sysdeps/ieee754/ldbl-128/s_erfl.c: Include
24238 <libm-alias-ldouble.h>.
24239 (erfl): Define using libm_alias_ldouble.
24241 * sysdeps/ieee754/ldbl-128/s_expm1l.c: Include
24242 <libm-alias-ldouble.h>.
24243 (expm1l): Define using libm_alias_ldouble.
24244 * sysdeps/ieee754/ldbl-128/s_fabsl.c: Include
24245 <libm-alias-ldouble.h>.
24246 (fabsl): Define using libm_alias_ldouble.
24247 * sysdeps/ieee754/ldbl-128/s_floorl.c: Include
24248 <libm-alias-ldouble.h>.
24249 (floorl): Define using libm_alias_ldouble.
24250 * sysdeps/ieee754/ldbl-128/s_fmal.c: Include
24251 <libm-alias-ldouble.h>.
24252 (fmal): Define using libm_alias_ldouble.
24253 * sysdeps/ieee754/ldbl-128/s_frexpl.c: Include
24254 <libm-alias-ldouble.h>.
24255 (frexpl): Define using libm_alias_ldouble.
24256 * sysdeps/ieee754/ldbl-128/s_fromfpl.c (fromfpl): Define using
24257 libm_alias_ldouble.
24258 * sysdeps/ieee754/ldbl-128/s_fromfpl_main.c: Include
24259 <libm-alias-ldouble.h>.
24260 * sysdeps/ieee754/ldbl-128/s_fromfpxl.c (fromfpxl): Define using
24261 libm_alias_ldouble.
24262 * sysdeps/ieee754/ldbl-128/s_getpayloadl.c: Include
24263 <libm-alias-ldouble.h>.
24264 (getpayloadl): Define using libm_alias_ldouble.
24265 * sysdeps/ieee754/ldbl-128/s_llrintl.c: Include
24266 <libm-alias-ldouble.h>.
24267 (llrintl): Define using libm_alias_ldouble.
24268 * sysdeps/ieee754/ldbl-128/s_llroundl.c: Include
24269 <libm-alias-ldouble.h>.
24270 (llroundl): Define using libm_alias_ldouble.
24271 * sysdeps/ieee754/ldbl-128/s_logbl.c: Include
24272 <libm-alias-ldouble.h>.
24273 (logbl): Define using libm_alias_ldouble.
24274 * sysdeps/ieee754/ldbl-128/s_lrintl.c: Include
24275 <libm-alias-ldouble.h>.
24276 (lrintl): Define using libm_alias_ldouble.
24277 * sysdeps/ieee754/ldbl-128/s_lroundl.c: Include
24278 <libm-alias-ldouble.h>.
24279 (lroundl): Define using libm_alias_ldouble.
24280 * sysdeps/ieee754/ldbl-128/s_modfl.c: Include
24281 <libm-alias-ldouble.h>.
24282 (modfl): Define using libm_alias_ldouble.
24283 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Include
24284 <libm-alias-ldouble.h>.
24285 (nearbyintl): Define using libm_alias_ldouble.
24286 * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Include
24287 <libm-alias-ldouble.h>.
24288 (nextafterl): Define using libm_alias_ldouble.
24289 * sysdeps/ieee754/ldbl-128/s_nextupl.c: Include
24290 <libm-alias-ldouble.h>.
24291 (nextupl): Define using libm_alias_ldouble.
24292 * sysdeps/ieee754/ldbl-128/s_remquol.c: Include
24293 <libm-alias-ldouble.h>.
24294 (remquol): Define using libm_alias_ldouble.
24295 * sysdeps/ieee754/ldbl-128/s_rintl.c: Include
24296 <libm-alias-ldouble.h>.
24297 (rintl): Define using libm_alias_ldouble.
24298 * sysdeps/ieee754/ldbl-128/s_roundevenl.c: Include
24299 <libm-alias-ldouble.h>.
24300 (roundevenl): Define using libm_alias_ldouble.
24301 * sysdeps/ieee754/ldbl-128/s_roundl.c: Include
24302 <libm-alias-ldouble.h>.
24303 (roundl): Define using libm_alias_ldouble.
24304 * sysdeps/ieee754/ldbl-128/s_setpayloadl.c (setpayloadl): Define
24305 using libm_alias_ldouble.
24306 * sysdeps/ieee754/ldbl-128/s_setpayloadl_main.c: Include
24307 <libm-alias-ldouble.h>.
24308 * sysdeps/ieee754/ldbl-128/s_setpayloadsigl.c (setpayloadsigl):
24309 Define using libm_alias_ldouble.
24310 * sysdeps/ieee754/ldbl-128/s_sincosl.c: Include
24311 <libm-alias-ldouble.h>.
24312 (sincosl): Define using libm_alias_ldouble.
24313 * sysdeps/ieee754/ldbl-128/s_sinl.c: Include
24314 <libm-alias-ldouble.h>.
24315 (sinl): Define using libm_alias_ldouble.
24316 * sysdeps/ieee754/ldbl-128/s_tanhl.c: Include
24317 <libm-alias-ldouble.h>.
24318 (tanhl): Define using libm_alias_ldouble.
24319 * sysdeps/ieee754/ldbl-128/s_tanl.c: Include
24320 <libm-alias-ldouble.h>.
24321 (tanl): Define using libm_alias_ldouble.
24322 * sysdeps/ieee754/ldbl-128/s_totalorderl.c: Include
24323 <libm-alias-ldouble.h>.
24324 (totalorderl): Define using libm_alias_ldouble.
24325 * sysdeps/ieee754/ldbl-128/s_totalordermagl.c: Include
24326 <libm-alias-ldouble.h>.
24327 (totalordermagl): Define using libm_alias_ldouble.
24328 * sysdeps/ieee754/ldbl-128/s_truncl.c: Include
24329 <libm-alias-ldouble.h>.
24330 (truncl): Define using libm_alias_ldouble.
24331 * sysdeps/ieee754/ldbl-128/s_ufromfpl.c (ufromfpl): Define using
24332 libm_alias_ldouble.
24333 * sysdeps/ieee754/ldbl-128/s_ufromfpxl.c (ufromfpxl): Define using
24334 libm_alias_ldouble.
24335 * sysdeps/ieee754/ldbl-64-128/s_copysignl.c: Include
24336 <libm-alias-ldouble.h>.
24337 (weak_alias): Do not undefine and redefine.
24338 [IS_IN (libc)] (libm_alias_ldouble): Undefine and redefine.
24339 (copysignl): Define with long_double_symbol only if [IS_IN
24341 * sysdeps/ieee754/ldbl-64-128/s_frexpl.c: Include
24342 <libm-alias-ldouble.h>.
24343 (weak_alias): Do not undefine and redefine.
24344 [IS_IN (libc)] (libm_alias_ldouble): Undefine and redefine.
24345 (frexpl): Define with long_double_symbol only if [IS_IN (libc)].
24346 * sysdeps/ieee754/ldbl-64-128/s_modfl.c: Include
24347 <libm-alias-ldouble.h>.
24348 (weak_alias): Do not undefine and redefine.
24349 [IS_IN (libc)] (libm_alias_ldouble): Undefine and redefine.
24350 (modfl): Define with long_double_symbol only if [IS_IN (libc)].
24351 * sysdeps/ieee754/ldbl-64-128/s_asinhl.c: Remove file.
24352 * sysdeps/ieee754/ldbl-64-128/s_atanl.c: Likewise.
24353 * sysdeps/ieee754/ldbl-64-128/s_cbrtl.c: Likewise.
24354 * sysdeps/ieee754/ldbl-64-128/s_ceill.c: Likewise.
24355 * sysdeps/ieee754/ldbl-64-128/s_cosl.c: Likewise.
24356 * sysdeps/ieee754/ldbl-64-128/s_erfl.c: Likewise.
24357 * sysdeps/ieee754/ldbl-64-128/s_expm1l.c: Likewise.
24358 * sysdeps/ieee754/ldbl-64-128/s_fabsl.c: Likewise.
24359 * sysdeps/ieee754/ldbl-64-128/s_floorl.c: Likewise.
24360 * sysdeps/ieee754/ldbl-64-128/s_fmal.c: Likewise.
24361 * sysdeps/ieee754/ldbl-64-128/s_llrintl.c: Likewise.
24362 * sysdeps/ieee754/ldbl-64-128/s_llroundl.c: Likewise.
24363 * sysdeps/ieee754/ldbl-64-128/s_logbl.c: Likewise.
24364 * sysdeps/ieee754/ldbl-64-128/s_lrintl.c: Likewise.
24365 * sysdeps/ieee754/ldbl-64-128/s_lroundl.c: Likewise.
24366 * sysdeps/ieee754/ldbl-64-128/s_nearbyintl.c: Likewise.
24367 * sysdeps/ieee754/ldbl-64-128/s_remquol.c: Likewise.
24368 * sysdeps/ieee754/ldbl-64-128/s_rintl.c: Likewise.
24369 * sysdeps/ieee754/ldbl-64-128/s_roundl.c: Likewise.
24370 * sysdeps/ieee754/ldbl-64-128/s_sincosl.c: Likewise.
24371 * sysdeps/ieee754/ldbl-64-128/s_sinl.c: Likewise.
24372 * sysdeps/ieee754/ldbl-64-128/s_tanhl.c: Likewise.
24373 * sysdeps/ieee754/ldbl-64-128/s_tanl.c: Likewise.
24374 * sysdeps/ieee754/ldbl-64-128/s_truncl.c: Likewise.
24376 2017-10-06 Carlos O'Donell <carlos@redhat.com>
24379 * malloc/malloc.c (tcache_shutting_down): Use bool type.
24380 (tcache_thread_freeres): Set tcache_shutting_down before
24381 freeing the tcache.
24382 * malloc/Makefile (tests): Add tst-malloc-tcache-leak.
24383 * malloc/tst-malloc-tcache-leak.c: New file.
24385 2017-10-06 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
24387 * sysdeps/powerpc/powerpc64/multiarch/memrchr-ppc64.c: Revert
24388 back to powerpc32 file.
24389 * sysdeps/powerpc/powerpc64/multiarch/memrchr.c
24390 (memrchr): Add __memrchr_power8 to ifunc list.
24391 * sysdeps/powerpc/powerpc64/power8/memrchr.S: Mask
24392 extra bytes for unaligned inputs.
24394 2017-10-06 Joseph Myers <joseph@codesourcery.com>
24396 * sysdeps/ieee754/ldbl-64-128/e_ilogbl.c: Remove file.
24397 * sysdeps/ieee754/ldbl-64-128/s_log1pl.c: Likewise.
24398 * sysdeps/ieee754/ldbl-64-128/s_scalblnl.c: Likewise.
24399 * sysdeps/ieee754/ldbl-64-128/s_scalbnl.c: Likewise.
24400 * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: Likewise.
24402 2017-10-05 Joseph Myers <joseph@codesourcery.com>
24404 * sysdeps/arm/libm-test-ulps: Update.
24406 * sysdeps/ieee754/ldbl-96/s_asinhl.c: Include
24407 <libm-alias-ldouble.h>.
24408 (asinhl): Define using libm_alias_ldouble.
24409 * sysdeps/ieee754/ldbl-96/s_cbrtl.c: Include
24410 <libm-alias-ldouble.h>.
24411 (cbrtl): Define using libm_alias_ldouble.
24412 * sysdeps/ieee754/ldbl-96/s_copysignl.c: Include
24413 <libm-alias-ldouble.h>.
24414 (copysignl): Define using libm_alias_ldouble.
24415 * sysdeps/ieee754/ldbl-96/s_cosl.c: Include
24416 <libm-alias-ldouble.h>.
24417 (cosl): Define using libm_alias_ldouble.
24418 * sysdeps/ieee754/ldbl-96/s_erfl.c: Include
24419 <libm-alias-ldouble.h>.
24420 (erfl): Define using libm_alias_ldouble.
24422 * sysdeps/ieee754/ldbl-96/s_fmal.c: Include
24423 <libm-alias-ldouble.h>.
24424 (fmal): Define using libm_alias_ldouble.
24425 * sysdeps/ieee754/ldbl-96/s_frexpl.c: Include
24426 <libm-alias-ldouble.h>.
24427 (frexpl): Define using libm_alias_ldouble.
24428 * sysdeps/ieee754/ldbl-96/s_fromfpl.c (fromfpl): Define using
24429 libm_alias_ldouble.
24430 * sysdeps/ieee754/ldbl-96/s_fromfpl_main.c: Include
24431 <libm-alias-ldouble.h>.
24432 * sysdeps/ieee754/ldbl-96/s_fromfpxl.c (fromfpxl): Define using
24433 libm_alias_ldouble.
24434 * sysdeps/ieee754/ldbl-96/s_getpayloadl.c: Include
24435 <libm-alias-ldouble.h>.
24436 (getpayloadl): Define using libm_alias_ldouble.
24437 * sysdeps/ieee754/ldbl-96/s_llrintl.c: Include
24438 <libm-alias-ldouble.h>.
24439 (llrintl): Define using libm_alias_ldouble.
24440 * sysdeps/ieee754/ldbl-96/s_llroundl.c: Include
24441 <libm-alias-ldouble.h>.
24442 (llroundl): Define using libm_alias_ldouble.
24443 * sysdeps/ieee754/ldbl-96/s_lrintl.c: Include
24444 <libm-alias-ldouble.h>.
24445 (lrintl): Define using libm_alias_ldouble.
24446 * sysdeps/ieee754/ldbl-96/s_lroundl.c: Include
24447 <libm-alias-ldouble.h>.
24448 (lroundl): Define using libm_alias_ldouble.
24449 * sysdeps/ieee754/ldbl-96/s_modfl.c: Include
24450 <libm-alias-ldouble.h>.
24451 (modfl): Define using libm_alias_ldouble.
24452 * sysdeps/ieee754/ldbl-96/s_nextupl.c: Include
24453 <libm-alias-ldouble.h>.
24454 (nextupl): Define using libm_alias_ldouble.
24455 * sysdeps/ieee754/ldbl-96/s_remquol.c: Include
24456 <libm-alias-ldouble.h>.
24457 (remquol): Define using libm_alias_ldouble.
24458 * sysdeps/ieee754/ldbl-96/s_roundevenl.c: Include
24459 <libm-alias-ldouble.h>.
24460 (roundevenl): Define using libm_alias_ldouble.
24461 * sysdeps/ieee754/ldbl-96/s_roundl.c: Include
24462 <libm-alias-ldouble.h>.
24463 (roundl): Define using libm_alias_ldouble.
24464 * sysdeps/ieee754/ldbl-96/s_setpayloadl.c (setpayloadl): Define
24465 using libm_alias_ldouble.
24466 * sysdeps/ieee754/ldbl-96/s_setpayloadl_main.c: Include
24467 <libm-alias-ldouble.h>.
24468 * sysdeps/ieee754/ldbl-96/s_setpayloadsigl.c: Include
24469 <libm-alias-ldouble.h>.
24470 (setpayloadsigl): Define using libm_alias_ldouble.
24471 * sysdeps/ieee754/ldbl-96/s_sincosl.c: Include
24472 <libm-alias-ldouble.h>.
24473 (sincosl): Define using libm_alias_ldouble.
24474 * sysdeps/ieee754/ldbl-96/s_sinl.c: Include
24475 <libm-alias-ldouble.h>.
24476 (sinl): Define using libm_alias_ldouble.
24477 * sysdeps/ieee754/ldbl-96/s_tanhl.c: Include
24478 <libm-alias-ldouble.h>.
24479 (tanhl): Define using libm_alias_ldouble.
24480 * sysdeps/ieee754/ldbl-96/s_tanl.c: Include
24481 <libm-alias-ldouble.h>.
24482 (tanl): Define using libm_alias_ldouble.
24483 * sysdeps/ieee754/ldbl-96/s_totalorderl.c: Include
24484 <libm-alias-ldouble.h>.
24485 (totalorderl): Define using libm_alias_ldouble.
24486 * sysdeps/ieee754/ldbl-96/s_totalordermagl.c: Include
24487 <libm-alias-ldouble.h>.
24488 (totalordermagl): Define using libm_alias_ldouble.
24489 * sysdeps/ieee754/ldbl-96/s_ufromfpl.c (ufromfpl): Define using
24490 libm_alias_ldouble.
24491 * sysdeps/ieee754/ldbl-96/s_ufromfpxl.c (ufromfpxl): Define using
24492 libm_alias_ldouble.
24494 2017-10-05 Siddhesh Poyarekar <siddhesh@sourceware.org>
24496 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines): Add
24498 * sysdeps/aarch64/multiarch/ifunc-impl-list.c
24499 (__libc_ifunc_impl_list): Likewise.
24500 * sysdeps/aarch64/multiarch/memmove.c: Likewise.
24501 * sysdeps/aarch64/multiarch/memmove_falkor.S: New file.
24503 * benchtests/bench-memmove-walk.c: New file.
24504 * benchtests/Makefile (string-benchset): Add it.
24506 * benchtests/bench-memset-walk.c: New file.
24507 * benchtests/Makefile (string-benchset): Add it.
24509 * benchtests/bench-memcpy-walk.c: New file.
24510 * benchtests/Makefile (string-benchset): Add it.
24512 2017-10-05 Florian Weimer <fweimer@redhat.com>
24514 nscd: Eliminate compilation time dependency in the build output.
24515 * nscd/nscd_stat.c (STATDATA_VERSION)
24516 (STATDATA_VERSION_SELINUX_FLAG, STATDATA_VERSION_FLAGS)
24517 (STATDATA_VERSION_FULL): New macro definitions.
24518 (compilation): Remove.
24519 (struct statdata): Adjust version member.
24520 (send_stats): Set version from STATDATA_VERSION_FULL.
24521 (receive_print_stats): Verify version against STATDATA_VERSION_FULL.
24523 2017-10-05 Joseph Myers <joseph@codesourcery.com>
24525 * configure.ac (--enable-add-ons): Remove option.
24526 (machine): Do not mention add-ons in comment.
24527 (LIBC_PRECONFIGURE): Likewise.
24528 (add_ons): Remove variable and sanity checks and logic to locate
24530 (add_ons_automatic): Remove variable.
24531 (configured_add_ons): Likewise.
24532 (add_ons_sfx): Likewise.
24533 (add_ons_pfx): Likewise.
24534 (add_on_subdirs): Likewise.
24535 (sysnames_add_ons): Likewise. Remove loop over add-ons and
24536 consideration of add-ons in Implies handling.
24537 (sysdeps_add_ons): Likewise.
24538 * configure: Regenerated.
24539 * libidn/configure.ac: Remove.
24540 * libidn/configure: Likewise.
24541 * sysdeps/unix/inet/configure.ac: New file.
24542 * sysdeps/unix/inet/configure: New generated file.
24543 * sysdeps/unix/inet/Subdirs: Add libidn.
24544 * Makeconfig (sysdeps-srcdirs): Remove variable.
24545 (+sysdep_dirs): Do not include $(sysdeps-srcdirs).
24546 ($(common-objpfx)config.status): Do not depend on add-on files.
24547 ($(common-objpfx)shlib-versions.v.i): Do not mention add-ons in
24549 (all-subdirs): Do not include $(add-on-subdirs).
24550 * Makefile (dist-prepare): Do not use $(sysdeps-add-ons).
24551 * config.make.in (add-ons): Remove variable.
24552 (add-on-subdirs): Likewise.
24553 (sysdeps-add-ons): Likewise.
24554 * manual/Makefile (add-chapters): Remove.
24555 ($(objpfx)texis): Do not depend on $(add-chapters).
24556 (nonexamples): Do not handle $(add-chapters).
24557 (examples): Do not handle $(add-ons).
24558 (chapters.% top-menu.%): Do not pass '$(add-chapters)' to
24560 * manual/install.texi (Installation): Do not mention add-ons.
24561 (--enable-add-ons): Do not document configure option.
24562 * INSTALL: Regenerated.
24563 * manual/libc-texinfo.sh: Do not handle $2 add-ons argument.
24564 * manual/maint.texi (Hierarchy Conventions): Do not mention
24566 * scripts/build-many-glibcs.py (Glibc.build_glibc): Do not use
24568 * scripts/gen-sorted.awk: Do not handle Subdirs files from
24570 * scripts/test-installation.pl: Do not handle glibc-compat add-on.
24571 * sysdeps/nptl/Makeconfig: Do not mention add-ons in comment.
24573 2017-10-05 Andreas Schwab <schwab@suse.de>
24576 * libio/genops.c (_IO_list_all_stamp): Delete. All uses removed.
24577 (_IO_flush_all_lockp): Always lock list_all_lock.
24578 (_IO_flush_all_linebuffered): Likewise.
24579 (_IO_unbuffer_all): Likewise.
24581 2017-10-05 Florian Weimer <fweimer@redhat.com>
24584 Do not flush stdio streams on abort.
24585 * stdlib/abort.c (fflush): Remove macro definition.
24586 (abort): Remove stages related to stdio flushing.
24588 2017-10-05 Florian Weimer <fweimer@redhat.com>
24590 * gmon/Makefile (CFLAGS-tst-gmon.c): Add -fno-omit-frame-pointer.
24592 2017-10-05 Stefan Liebler <stli@linux.vnet.ibm.com>
24594 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
24596 2017-10-05 Florian Weimer <fweimer@redhat.com>
24598 * support/support_format_hostent.c (support_format_hostent): Add
24599 more error information for NETDB_INTERNAL.
24601 2017-10-04 H.J. Lu <hongjiu.lu@intel.com>
24603 * config.h.in (NO_HIDDEN_EXTERN_FUNC_IN_PIE): New.
24604 * include/libc-symbols.h (__hidden_proto_hiddenattr): Add check
24605 for PIC and NO_HIDDEN_EXTERN_FUNC_IN_PIE.
24606 * sysdeps/i386/configure.ac (NO_HIDDEN_EXTERN_FUNC_IN_PIE): New
24607 AC_DEFINE if multi-arch is enabled.
24608 * sysdeps/i386/configure: Regenerated.
24610 2017-10-04 H.J. Lu <hongjiu.lu@intel.com>
24612 * Makeconfig (+link-static-before-libc): Use
24613 $(DEFAULT-LDFLAGS-$(@F)).
24614 * elf/Makefile (CRT-tst-tls1-static-non-pie): New.
24615 (LDFLAGS-tst-tls1-static-non-pie): Renamed to ...
24616 (DEFAULT-LDFLAGS-tst-tls1-static-non-pie): This.
24618 2017-10-04 H.J. Lu <hongjiu.lu@intel.com>
24620 * elf/Makefile (tests): Add tst-main1.
24621 (modules-names): Add tst-main1mod.
24622 ($(objpfx)tst-main1): New.
24623 (CRT-tst-main1): Likewise.
24624 (LDFLAGS-tst-main1): Likewise.
24625 (LDLIBS-tst-main1): Likewise.
24626 (tst-main1mod.so-no-z-defs): Likewise.
24627 * elf/tst-main1.c: New file.
24628 * elf/tst-main1mod.c: Likewise.
24630 2017-10-04 H.J. Lu <hongjiu.lu@intel.com>
24632 * math/test-math-iscanonical.cc (do_test): Return errors != 0.
24634 2017-10-04 Joseph Myers <joseph@codesourcery.com>
24636 * sysdeps/ieee754/dbl-64/s_fma.c: Include <libm-alias-double.h>.
24637 (fma): Define using libm_alias_double.
24638 * sysdeps/ieee754/ldbl-opt/s_fma.c: Remove file.
24639 * sysdeps/sparc/sparc32/fpu/s_fma.c: Do not include
24641 (fmal): Do not define as compat symbol here.
24642 * sysdeps/alpha/fpu/s_fma.c: New file.
24644 2017-10-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
24646 * sysdeps/aarch64/dl-machine.h (elf_machine_rela): Expand MIN.
24648 2017-10-04 Joseph Myers <joseph@codesourcery.com>
24651 * sysdeps/sparc/sparc32/fpu/s_copysign.S: Include
24653 (copysignl): Define as compat symbol at version GLIBC_2_0 for libm
24655 * sysdeps/sparc/sparc32/fpu/s_fabs.S: Include <math_ldbl_opt.h>.
24656 (fabsl): Define as compat symbol at version GLIBC_2_0 for libm.
24657 * sysdeps/sparc/sparc32/fpu/s_fma.c: Include <math_ldbl_opt.h>.
24658 (fmal): Define as compat symbol at version GLIBC_2_1 for libm.
24659 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S:
24660 Include <math_ldbl_opt.h>
24661 (copysignl): Define as compat symbol at version GLIBC_2_0 for libm
24663 (compat_symbol): Undefine and redefine.
24664 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Include
24666 (fabsl): Define as compat symbol at version GLIBC_2_0 for libm.
24667 (compat_symbol): Undefine and redefine.
24668 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c
24669 [HAVE_AS_VIS3_SUPPORT]: Include <math_ldbl_opt.h>.
24670 [HAVE_AS_VIS3_SUPPORT] (fmal): Define as compat symbol at version
24671 GLIBC_2_1 for libm.
24672 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Add
24673 GLIBC_2.0 copysignl symbol.
24674 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Add
24675 GLIBC_2.0 copysignl and fabsl and GLIBC_2.1 fmal symbols.
24677 * sysdeps/alpha/fpu/s_nearbyint.c: Remove file.
24679 2017-10-04 Florian Weimer <fweimer@redhat.com>
24681 * scripts/check-local-headers.sh: Ignore nspr4 header file
24682 directory in addition to nspr.
24684 2017-10-04 Guido Trentalancia <guido@trentalancia.net>
24687 * configure.ac (--enable-nss-crypt): Use NSPR include directory.
24688 * configure: Regenerate.
24689 * crypt/Makefile (nss-cpp-flags): New variable.
24690 (CPPFLAGS-sha256-crypt.c, CPPFLAGS-sha512-crypt.c)
24691 (CPPFLAGS-md5-crypt.c): Use it.
24692 * scripts/check-local-headers.sh: Ignore nspr header file
24695 2017-10-04 Andreas Schwab <schwab@suse.de>
24697 * nis/Makefile (services): Remove compat.
24698 (libnss_compat-routines, libnss_compat-inhibit-o): Don't define.
24699 ($(objpfx)libnss_compat.so): Remove rule.
24700 * nis/Versions (libnss_compat): Remove.
24701 * nss/Makefile (services): Add compat.
24702 (libnss_compat-routines, libnss_compat-inhibit-o): Define.
24703 * nss/Versions (libnss_compat): Define.
24704 * nss/nss_compat/compat-grp.c: Moved here from nis/nss_compat.
24705 Don't include <rpc/types.h>. Replace bool_t by bool.
24706 * nss/nss_compat/compat-initgroups.c: Likewise.
24707 * nss/nss_compat/compat-pwd.c: Likewise. Include "nisdomain.h"
24708 instead of <rpcsrv/ypclnt.h>.
24709 (getpwent_next_nss_netgr): Use __nss_get_default_domain instead of
24710 yp_get_default_domain.
24711 * nss/nss_compat/compat-pwd.c: Likewise.
24712 (getspent_next_nss_netgr): Use __nss_get_default_domain instead of
24713 yp_get_default_domain.
24714 * nss/nss_compat/nisdomain.c: New file.
24715 * nss/nss_compat/nisdomain.h: Likewise.
24717 2017-10-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
24720 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_yn): Fix x == 0 case.
24721 * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_ynf): Likewise.
24723 2017-10-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
24726 * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c (__ieee754_log10): Use fabs.
24727 * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c (__ieee754_log2): Likewise.
24729 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
24731 * sysdeps/i386/start.S: Replace "leal main@GOT(%ebx), %eax" with
24732 "movl main@GOTOFF(%ebx), %eax".
24734 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
24736 * sysdeps/i386/dl-machine.h (elf_machine_load_address): Don't
24737 allow undefined _DYNAMIC in PIE libc.a.
24738 * sysdeps/x86_64/dl-machine.h (elf_machine_load_address):
24741 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
24743 * sysdeps/mips/dl-machine.h (elf_machine_load_address): Don't
24746 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
24748 * sysdeps/arm/dl-machine.h (elf_machine_load_address): Don't
24751 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
24753 * math/test-math-iscanonical.cc (error): Replace bool with int.
24755 2017-10-03 Joseph Myers <joseph@codesourcery.com>
24757 * sysdeps/ieee754/dbl-64/s_modf.c: Include <libm-alias-double.h>.
24758 (modf): Define using libm_alias_double, only if [!__modf].
24759 * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Include
24760 <libm-alias-double.h>.
24761 (modf): Define using libm_alias_double, only if [!__modf].
24762 * sysdeps/ieee754/ldbl-opt/s_modf.c (modfl): Only define libc
24763 compat symbol here.
24764 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-ppc32.c
24765 (weak_alias): Do not undefine and redefine.
24766 (strong_alias): Likewise.
24767 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c
24768 (weak_alias): Likewise.
24769 (strong_alias): Likewise.
24771 * sysdeps/ieee754/dbl-64/s_logb.c: Include <libm-alias-double.h>.
24772 (logb): Define using libm_alias_double, only if [!__logb].
24773 * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: Include
24774 <libm-alias-double.h>.
24775 (logb): Define using libm_alias_double, only if [!__logb].
24776 * sysdeps/ieee754/ldbl-opt/s_logb.c: Remove file.
24777 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-ppc32.c
24778 (weak_alias): Do not undefine and redefine.
24779 (strong_alias): Likewise.
24780 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-ppc64.c
24781 (weak_alias): Likewise.
24782 (strong_alias): Likewise.
24784 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
24786 * sysdeps/unix/sysv/linux/tile/sysdep.h (SYSCALL_ERROR_NAME):
24787 Check SHARED instead PIC.
24789 2017-10-03 Joseph Myers <joseph@codesourcery.com>
24791 * sysdeps/ieee754/dbl-64/s_fmaf.c: Include <libm-alias-float.h>.
24792 [!__fmaf] (fmaf): Define using libm_alias_float.
24794 * sysdeps/ieee754/dbl-64/s_frexp.c: Include <libm-alias-double.h>.
24795 (frexp): Define using libm_alias_double.
24796 * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: Include
24797 <libm-alias-double.h>.
24798 (frexp): Define using libm_alias_double.
24799 * sysdeps/ieee754/ldbl-opt/s_frexp.c (frexpl): Only define libc
24800 compat symbol here.
24802 2017-10-03 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
24805 * math/math.h: Trivial fix for unbalanced parentheses in comment.
24806 * math/Makefile [CXX] (tests): Add test-math-iscanonical.cc.
24807 (CFLAGS-test-math-iscanonical.cc): New variable.
24808 * math/test-math-iscanonical.cc: New file.
24809 * sysdeps/ieee754/ldbl-96/bits/iscanonical.h (iscanonical):
24810 Provide a C++ implementation based on function overloading,
24811 rather than using __MATH_TG, which uses C-only builtins.
24812 * sysdeps/ieee754/ldbl-128ibm/bits/iscanonical.h (iscanonical):
24814 * sysdeps/powerpc/powerpc64le/Makefile
24815 (CFLAGS-test-math-iscanonical.cc): New variable.
24817 2017-10-03 Joseph Myers <joseph@codesourcery.com>
24819 * sysdeps/ieee754/dbl-64/s_ceil.c: Include <libm-alias-double.h>.
24820 (ceil): Define using libm_alias_double.
24821 * sysdeps/ieee754/dbl-64/s_floor.c: Include <libm-alias-double.h>.
24822 (floor): Define using libm_alias_double.
24823 * sysdeps/ieee754/dbl-64/s_llround.c: Include
24824 <libm-alias-double.h>.
24825 (llround): Define using libm_alias_double.
24826 * sysdeps/ieee754/dbl-64/s_lround.c: Include
24827 <libm-alias-double.h>.
24828 (lround): Define using libm_alias_double.
24829 * sysdeps/ieee754/dbl-64/s_nearbyint.c: Include
24830 <libm-alias-double.h>.
24831 (nearbyint): Define using libm_alias_double.
24832 * sysdeps/ieee754/dbl-64/s_remquo.c: Include
24833 <libm-alias-double.h>.
24834 (remquo): Define using libm_alias_double.
24835 * sysdeps/ieee754/dbl-64/s_rint.c: Include <libm-alias-double.h>.
24836 (rint): Define using libm_alias_double.
24837 * sysdeps/ieee754/dbl-64/s_round.c: Include <libm-alias-double.h>.
24838 (round): Define using libm_alias_double.
24839 * sysdeps/ieee754/dbl-64/s_trunc.c: Include <libm-alias-double.h>.
24840 (trunc): Define using libm_alias_double.
24841 * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Include
24842 <libm-alias-double.h>.
24843 (ceil): Define using libm_alias_double.
24844 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Include
24845 <libm-alias-double.h>.
24846 (floor): Define using libm_alias_double.
24847 * sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c: Include
24848 <libm-alias-double.h>.
24849 (llround): Define using libm_alias_double.
24850 [_LP64] (lround): Likewise.
24851 * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Include
24852 <libm-alias-double.h>.
24853 [!_LP64] (lround): Define using libm_alias_double.
24854 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Include
24855 <libm-alias-double.h>.
24856 (nearbyint): Define using libm_alias_double.
24857 * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Include
24858 <libm-alias-double.h>.
24859 (remquo): Define using libm_alias_double.
24860 * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Include
24861 <libm-alias-double.h>.
24862 (rint): Define using libm_alias_double.
24863 * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Include
24864 <libm-alias-double.h>.
24865 (round): Define using libm_alias_double.
24866 * sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c: Include
24867 <libm-alias-double.h>.
24868 (trunc): Define using libm_alias_double.
24869 * sysdeps/ieee754/ldbl-opt/s_ceil.c: Remove file.
24870 * sysdeps/ieee754/ldbl-opt/s_floor.c: Likewise.
24871 * sysdeps/ieee754/ldbl-opt/s_llround.c: Likewise.
24872 * sysdeps/ieee754/ldbl-opt/s_lround.c: Likewise.
24873 * sysdeps/ieee754/ldbl-opt/s_nearbyint.c: Likewise.
24874 * sysdeps/ieee754/ldbl-opt/s_remquo.c: Likewise.
24875 * sysdeps/ieee754/ldbl-opt/s_rint.c: Likewise.
24876 * sysdeps/ieee754/ldbl-opt/s_round.c: Likewise.
24877 * sysdeps/ieee754/ldbl-opt/s_trunc.c: Likewise.
24879 2017-10-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
24881 * math/w_remainder.c: New file.
24882 * math/w_remainderf.c: New file.
24883 * math/w_remainderl.c: New file.
24885 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
24887 * elf/rtld.c (BOOTSTRAP_MAP): New.
24888 (RESOLVE_MAP): Replace (&bootstrap_map) with BOOTSTRAP_MAP.
24889 * sysdeps/hppa/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
24891 * sysdeps/ia64/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
24893 * sysdeps/mips/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
24896 2017-10-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
24898 * include/libc-symbols.h [NO_RTLD_HIDDEN] (rtld_hidden_proto,
24899 rtld_hidden_tls_proto, rtld_hidden_def, rtld_hidden_weak,
24900 rtld_hidden_rtld_hidden_ver, data_def, rtld_hidden_data_weak,
24901 rtld_hidden_data_ver): Define to empty.
24902 * include/assert.h [IS_IN(rtld) && NO_RTLD_HIDDEN] (__assert_fail,
24903 __assert_perror_fail): Likewise.
24904 * include/dirent.h [IS_IN(rtld) && NO_RTLD_HIDDEN]
24905 (__rewinddir): Likewise.
24906 * include/libc-internal.h [IS_IN(rtld) && NO_RTLD_HIDDEN]
24907 (__profile_frequency): Likewise.
24908 * include/setjmp.h (__sigsetjmp): Likewise.
24909 * include/signal.h [IS_IN(rtld) && NO_RTLD_HIDDEN] (__sigaction,
24910 __libc_sigaction): Likewise.
24911 * include/stdlib.h [NO_RTLD_HIDDEN] (unsetenv, __strtoul_internal): Do
24912 not set hidden attribute.
24913 * include/string.h [IS_IN(rtld) && NO_RTLD_HIDDEN] (__stpcpy, __strdup,
24914 __strerror_t, __strsep_g, memchr, memcmp, memcpy, memmove, memset,
24915 rawmemchr, stpcpy, strchr, strcmp, strlen, strnlen, strsep): Likewise.
24916 * include/sys/stat.h [IS_IN(rtld) && NO_RTLD_HIDDEN] (__fxstat,
24917 __fxstat64, __lxstat, __lxstat64, __xstat, __xstat64,
24918 __fxstatat64): Likewise.
24919 * include/sys/utsname.h [IS_IN(rtld) && NO_RTLD_HIDDEN]
24920 (__uname): Likewise.
24921 * include/sysdeps/generic/_itoa.h [IS_IN(rtld) && NO_RTLD_HIDDEN]
24922 (_itoa_upper_digits, _itoa_lower_digits): Likewise.
24923 * sysdeps/mach/hurd/configure.ac (NO_HIDDEN): Do not set.
24924 (NO_RTLD_HIDDEN): Set.
24925 * sysdeps/mach/hurd/configure: Refresh.
24926 * config.h.in: Refresh.
24928 2017-10-02 Joseph Myers <joseph@codesourcery.com>
24930 * sysdeps/ieee754/dbl-64/s_atan.c: Include <libm-alias-double.h>.
24931 (atan): Define using libm_alias_double.
24932 * sysdeps/ieee754/dbl-64/s_tan.c: Include <libm-alias-double.h>.
24933 (tan): Define using libm_alias_double.
24934 * sysdeps/ieee754/ldbl-opt/s_atan.c: Remove file.
24935 * sysdeps/ieee754/ldbl-opt/s_tan.c: Likewise.
24937 * sysdeps/ieee754/dbl-64/s_atan.c (atan): Rename to __atan and
24938 define as weak alias of __atan. Do not define any aliases if
24940 [NO_LONG_DOUBLE] (__atanl): Define as strong alias of __atan.
24941 [NO_LONG_DOUBLE] (atanl): Define as weak alias of __atanl.
24942 * sysdeps/ieee754/dbl-64/s_tan.c (tan): Rename to __tan and define
24943 as weak alias of __tan. Do not define any aliases if [__tan].
24944 [NO_LONG_DOUBLE] (__tanl): Define as strong alias of __tan.
24945 [NO_LONG_DOUBLE] (tanl): Define as weak alias of __tanl.
24946 * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c (atan): Rename to
24948 * sysdeps/x86_64/fpu/multiarch/s_atan-fma.c (atan): Likewise.
24949 * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c (atan): Likewise.
24950 * sysdeps/x86_64/fpu/multiarch/s_atan.c (atan): Rename to __atan
24951 and define as weak alias of __atan.
24952 * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c (tan): Rename to
24954 * sysdeps/x86_64/fpu/multiarch/s_tan-fma.c (tan): Likewise.
24955 * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c (tan): Likewise.
24956 * sysdeps/x86_64/fpu/multiarch/s_tan.c (tan): Rename to __tan and
24957 define as weak alias of __tan.
24959 2017-10-02 Szabolcs Nagy <szabolcs.nagy@arm.com>
24961 * math/w_lgamma.c: New file.
24962 * math/w_lgammaf.c: New file.
24963 * math/w_lgammal.c: New file.
24965 2017-10-02 Szabolcs Nagy <szabolcs.nagy@arm.com>
24967 * sysdeps/ieee754/flt-32/e_log2f.c (__log2f): Define without wrapper.
24968 * sysdeps/ieee754/flt-32/e_logf.c (__logf): Likewise
24969 * sysdeps/ieee754/flt-32/e_powf.c (__powf): Likewise
24970 * sysdeps/ieee754/flt-32/w_log2f.c: New file.
24971 * sysdeps/ieee754/flt-32/w_logf.c: New file.
24972 * sysdeps/ieee754/flt-32/w_powf.c: New file.
24973 * sysdeps/i386/fpu/w_log2f.c: New file.
24974 * sysdeps/i386/fpu/w_logf.c: New file.
24975 * sysdeps/i386/fpu/w_powf.c: New file.
24976 * sysdeps/m68k/m680x0/fpu/w_log2f.c: New file.
24977 * sysdeps/m68k/m680x0/fpu/w_logf.c: New file.
24978 * sysdeps/m68k/m680x0/fpu/w_powf.c: New file.
24980 2017-10-02 Szabolcs Nagy <szabolcs.nagy@arm.com>
24981 H.J. Lu <hongjiu.lu@intel.com>
24983 * sysdeps/ieee754/flt-32/e_exp2f.c (__exp2f): Define without wrapper.
24984 * sysdeps/ieee754/flt-32/e_expf.c (__expf): Likewise
24985 * sysdeps/ieee754/flt-32/w_exp2f.c: New file.
24986 * sysdeps/ieee754/flt-32/w_expf.c: New file.
24987 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_expf-ppc64.c: Update for
24989 * sysdeps/powerpc/powerpc64/fpu/multiarch/w_expf.c: New file.
24990 * sysdeps/powerpc/powerpc64/power8/fpu/w_expf.c: New file.
24991 * sysdeps/m68k/m680x0/fpu/w_exp2f.c: New file.
24992 * sysdeps/m68k/m680x0/fpu/w_expf.c: New file.
24993 * sysdeps/i386/fpu/w_exp2f.c: New file.
24994 * sysdeps/i386/fpu/w_expf.c: New file.
24995 * sysdeps/i386/i686/fpu/multiarch/w_expf.c: New file.
24996 * sysdeps/x86_64/fpu/w_expf.c: New file.
24998 2017-10-02 Szabolcs Nagy <szabolcs.nagy@arm.com>
25000 * math/Versions (logf): New libm symbol at GLIBC_2.27.
25003 * math/w_log2f.c: New file.
25004 * math/w_logf.c: New file.
25005 * math/w_powf.c: New file.
25006 * math/w_log2f_compat.c (__log2f_compat): For compat symbol only.
25007 * math/w_logf_compat.c (__logf_compat): Likewise.
25008 * math/w_powf_compat.c (__powf_compat): Likewise.
25009 * sysdeps/ia64/fpu/e_log2f.S: Add versioned symbols.
25010 * sysdeps/ia64/fpu/e_logf.S: Likewise.
25011 * sysdeps/ia64/fpu/e_powf.S: Likewise.
25012 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
25013 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
25014 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
25015 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
25016 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
25017 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
25018 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
25019 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
25020 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
25021 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
25022 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
25023 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
25024 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist:
25026 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
25028 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
25030 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist:
25032 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
25033 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
25034 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
25035 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
25036 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
25037 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist:
25039 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist:
25041 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
25042 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
25043 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
25045 2017-10-02 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
25047 * sysdeps/powerpc/powerpc64/multiarch/Makefile
25048 (sysdep_routines): Add memrchr_power8.
25049 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
25050 (memrchr): Add __memrchr_power8 to list of memrchr functions.
25051 * sysdeps/powerpc/powerpc64/multiarch/memrchr-power8.S:
25053 * sysdeps/powerpc/powerpc64/multiarch/memrchr.c
25054 (memrchr): Add __memrchr_power8 to ifunc list.
25055 * sysdeps/powerpc/powerpc64/power8/memrchr.S: New file.
25057 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25060 * sysdeps/unix/sysv/linux/posix_fadvise64.c
25061 (__posix_fadvise64_l64): Add Add libc_hidden_proto and
25063 * sysdeps/unix/sysv/linux/posix_fallocate64.c
25064 (__posix_fallocate64_l64): Likewise.
25066 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25069 * sysdeps/unix/sysv/linux/sched_setaffinity.c
25070 (__sched_setaffinity_new): Add libc_hidden_proto and
25073 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25076 * include/glob.h (__glob64): Add libc_hidden_proto.
25077 * sysdeps/unix/sysv/linux/glob64.c (__glob64): Add
25080 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25083 * sysdeps/unix/sysv/linux/getrlimit64.c (__new_getrlimit): Add
25086 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25089 * stdlib/exit.h (__new_exitfn): Add attribute_hidden.
25091 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25094 * mon/gmon.c (__moncontrol): Add libc_hidden_proto and
25097 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25100 * csu/version.c (__libc_print_version): Add attribute_hidden.
25102 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25105 * include/libc-internal.h (__init_misc): Add attribute_hidden.
25107 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25110 * include/fpu_control.h (__setfpucw): Add attribute_hidden.
25112 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25115 * nscd/nscd_helper.c (__nis_hash): New prototype.
25117 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25120 * include/termios.h (__tcgetattr): Add libc_hidden_proto.
25121 * sysdeps/unix/bsd/tcgetattr.c (__tcgetattr): Add
25123 * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Likewise.
25124 * termios/tcgetattr.c (__tcgetattr): Likewise.
25126 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25129 * include/sys/resource.h (__setrlimit): Add libc_hidden_proto.
25130 * resource/setrlimit.c (__setrlimit): Add libc_hidden_def.
25131 * sysdeps/mach/hurd/setrlimit.c (__setrlimit): Likewise.
25132 * sysdeps/unix/sysv/linux/setrlimit.c (__setrlimit): Likewise.
25133 * sysdeps/unix/sysv/linux/setrlimit64.c (__GI___setrlimit): New.
25135 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25138 * include/monetary.h (__vstrfmon_l): Add attribute_hidden.
25140 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25143 * include/sched.h (__sched_setparam): Add libc_hidden_proto.
25144 * posix/sched_setp.c (__sched_setparam): Add libc_hidden_def.
25146 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25149 * intl/hash-string.h (__hash_string): Add attribute_hidden.
25151 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25154 * include/mntent.h (__hasmntopt): Add libc_hidden_proto.
25155 * misc/mntent_r.c (__hasmntopt): Add libc_hidden_def.
25157 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25160 * include/ifreq.h: New file.
25161 * sysdeps/generic/ifreq.h (__if_nextreq): Removed.
25162 (__ifreq): Likewise.
25163 * sysdeps/mach/hurd/ifreq.h (__if_nextreq): Removed.
25164 (__ifreq): Likewise.
25166 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25169 * include/idna.h: New file.
25170 * inet/getnameinfo.c: Include <idna.h> instead of
25172 (__idna_to_unicode_lzlz): Removed.
25173 * sysdeps/posix/getaddrinfo.c: Include <idna.h> instead of
25175 (__idna_to_ascii_lz): Removed.
25176 (__idna_to_unicode_lzlz): Likewise.
25178 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25181 * include/plural-exp.h: New file.
25182 * intl/plural-exp.c: Include <plural-exp.h> instead of
25185 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25188 * sysdeps/unix/sysv/linux/getsourcefilter.c: Include
25189 "getsourcefilter.h".
25190 * sysdeps/unix/sysv/linux/getsourcefilter.h: New file.
25191 * sysdeps/unix/sysv/linux/setsourcefilter.c: Include
25192 "getsourcefilter.h".
25193 (__get_sol): Removed.
25195 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25198 * elf/dl-iteratephdr.c (hidden_proto (__dl_iterate_phdr)): Moved
25200 * include/link.h (hidden_proto (__dl_iterate_phdr)): Here.
25202 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25205 * sysdeps/unix/sysv/linux/getpt.c (__bsd_getpt): Add
25208 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25211 * libio/iolibio.h (__fopen_maybe_mmap): Add attribute_hidden.
25213 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25216 * include/search.h (__tdestroy): Add libc_hidden_proto.
25217 * misc/tsearch.c (__tdestroy): Add libc_hidden_def.
25219 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25222 * include/assert.h (__assert_fail_base): Add attribute_hidden.
25224 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25227 * sysdeps/unix/sysv/linux/include/sys/sysinfo.h (__sysinfo): Add
25230 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25233 * include/signal.h (__kill): Add libc_hidden_proto.
25234 (__sigblock): Likewise.
25235 (__sigprocmask): Likewise.
25236 (__sigaltstack): Likewise.
25237 * signal/kill.c (__kill): Add libc_hidden_def.
25238 * signal/sigblock.c (__sigblock): Likewise.
25239 * signal/sigprocmask.c (__sigprocmask): Likewise.
25240 * sysdeps/mach/hurd/kill.c (__kill): Likewise.
25241 * sysdeps/mach/hurd/sigaltstack.c (__sigaltstack): Likewise.
25242 * sysdeps/mach/hurd/sigprocmask.c (__sigprocmask): Likewise.
25243 * sysdeps/posix/sigblock.c (__sigblock): Likewise.
25244 * sysdeps/unix/sysv/linux/alpha/sigprocmask.c (__sigprocmask):
25246 * sysdeps/unix/sysv/linux/ia64/sigprocmask.c (__sigprocmask):
25248 * sysdeps/unix/sysv/linux/s390/s390-64/sigprocmask.c
25249 (__sigprocmask): Likewise.
25250 * sysdeps/unix/sysv/linux/sigprocmask.c (__sigprocmask):
25252 * /sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c
25253 (__sigprocmask): Likewise.
25254 * sysdeps/unix/sysv/linux/x86_64/sigprocmask.c (__sigprocmask):
25257 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25260 * include/string.h (__strsep): Add libc_hidden_proto.
25261 * string/strsep.c (__strsep): Add libc_hidden_def.
25263 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25266 * posix/spawn_int.h (__posix_spawn_file_actions_realloc): Add
25268 (__spawni): Likewise.
25270 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25273 * include/sys/mman.h (__mremap): Add libc_hidden_proto.
25274 * sysdeps/unix/sysv/linux/m68k/mremap.S (__mremap): Add
25277 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25280 * include/malloc.h (__malloc_check_init): Add attribute_hidden.
25282 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25285 * include/sys/ioctl.h (__ioctl): Add libc_hidden_proto.
25286 * misc/ioctl.c (__ioctl): Add libc_hidden_def.
25287 * sysdeps/mach/hurd/ioctl.c (__ioctl): Likewise.
25288 * sysdeps/unix/sysv/linux/aarch64/ioctl.S (__ioctl): Likewise.
25289 * sysdeps/unix/sysv/linux/mips/mips64/n64/ioctl.S (__ioctl):
25291 * sysdeps/unix/sysv/linux/powerpc/ioctl.c (__ioctl): Likewise.
25292 * sysdeps/unix/sysv/linux/tile/tilegx/ioctl.S (__ioctl): Likewise.
25294 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25297 * intl/gettextP.h (__dcngettext): Add attribute_hidden.
25298 (__dcigettext): Likewise.
25300 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25303 * include/sys/sysinfo.h (__get_nprocs_conf): Add
25305 (__get_nprocs): Likewise.
25306 (__get_phys_pages): Likewise.
25307 (__get_avphys_pages): Likewise.
25308 (__get_child_max): Add attribute_hidden.
25309 * misc/getsysstats.c (__get_nprocs_conf): Add libc_hidden_def.
25310 (__get_nprocs): Likewise.
25311 (__get_phys_pages): Likewise.
25312 (__get_avphys_pages): Likewise.
25313 * sysdeps/mach/getsysstats.c (__get_nprocs_conf): Add
25315 (__get_nprocs): Likewise.
25316 (__get_phys_pages): Likewise.
25317 (__get_avphys_pages): Likewise.
25318 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Add
25320 (__get_nprocs_conf): Likewise.
25321 (__get_phys_pages): Likewise.
25322 (__get_avphys_pages): Likewise.
25324 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25327 * sysdeps/unix/sysv/linux/netlinkaccess.h (__netlink_open): Add
25329 (__netlink_close): Likewise.
25330 (__netlink_free_handle): Likewise.
25331 (__netlink_request): Likewise.
25333 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25336 * include/rpc/rpc.h (__rpc_thread_variables): Add
25338 (__rpc_thread_svc_cleanup): Likewise.
25339 (__rpc_thread_clnt_cleanup): Likewise.
25340 (__rpc_thread_key_cleanup): Likewise.
25342 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25345 * include/sys/uio.h (__readv): Add libc_hidden_proto.
25346 (__writev): Likewise.
25347 * misc/readv.c (__readv): Add libc_hidden_def.
25348 * misc/writev.c (__writev): Likewise.
25349 * sysdeps/posix/readv.c (__readv): Likewise.
25350 * sysdeps/posix/writev.c (__writev): Likewise.
25351 * sysdeps/unix/sysv/linux/readv.c: Include <sys/uio.h>.
25352 (__readv): Likewise.
25353 * sysdeps/unix/sysv/linux/writev.c: Include <sys/uio.h>.
25354 (__writev): Likewise.
25356 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25359 * include/regex.h (__re_compile_fastmap): Add attribute_hidden.
25360 (__regcomp): Add libc_hidden_proto.
25361 (__regexec): Likewise.
25362 (__regfree): Likewise.
25363 * posix/regcomp.c (__regcomp): Add libc_hidden_def.
25364 (__regfree): Likewise.
25365 * posix/regexec.c (__regexec): Likewise.
25367 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25370 * include/utmp.h (__updwtmp): Add libc_hidden_proto.
25371 (__getutent): Likewise.
25372 (__getutid): Likewise.
25373 (__getutline): Likewise.
25374 (__pututline): Likewise.
25375 (__getutent_r): Likewise.
25376 (__getutid_r): Likewise.
25377 (__getutline_r): Likewise.
25378 (__utmpname): Add attribute_hidden.
25379 (__setutent): Likewise.
25380 (__endutent): Likewise.
25381 * login/getutent.c (__getutent): Add libc_hidden_def.
25382 * login/getutent_r.c (__getutent_r): Likewise.
25383 (__pututline): Likewise.
25384 * login/getutid.c (__getutid): Likewise.
25385 * login/getutid_r.c (__getutid_r): Likewise.
25386 * login/getutline.c (__getutline): Likewise.
25387 * login/getutline_r.c (__getutline_r): Likewise.
25388 * login/updwtmp.c (__updwtmp): Likewise.
25390 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25393 * include/dirent.h (__opendir): Always add attribute_hidden.
25394 (__fdopendir): Likewise.
25395 (__closedir): Likewise.
25396 (__readdir): Likewise.
25397 (__readdir64): Add libc_hidden_proto.
25398 * sysdeps/mach/hurd/readdir64.c (__readdir64): Add libc_hidden_def.
25399 * sysdeps/unix/sysv/linux/i386/readdir64.c (__readdir64): Likewise.
25400 * sysdeps/unix/sysv/linux/readdir64.c (__readdir64): Likewise.
25401 * sysdeps/unix/sysv/linux/wordsize-64/readdir.c (__GI___readdir64):
25404 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25407 * include/aliases.h (__getaliasbyname_r): Add attribute_hidden.
25408 * include/netdb.h (__gethostbyaddr_r): Likewise.
25409 (__gethostbyname_r): Likewise.
25410 (__gethostbyname2_r): Likewise.
25411 (__getnetbyaddr_r): Likewise.
25412 (__getnetbyname_r): Likewise.
25413 (__getservbyname_r): Likewise.
25414 (__getservbyport_r): Likewise.
25415 (__getprotobyname_r): Likewise.
25416 (__getprotobynumber_r): Likewise.
25417 (__getnetgrent_r): Likewise.
25418 * include/rpc/netdb.h (__getrpcbyname_r): Likewise.
25419 (__getrpcbynumber_r): Likewise.
25420 * nss/getXXbyYY.c (INTERNAL (REENTRANT_NAME)): Likewise.
25422 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25425 * include/stdio.h (__fcloseall): Add attribute_hidden.
25426 (__getline): Likewise.
25427 (__path_search): Likewise.
25428 (__gen_tempname): Likewise.
25429 (__libc_message): Likewise.
25430 (__flockfile): Likewise.
25431 (__funlockfile): Likewise.
25432 (__fxprintf): Likewise.
25433 (__fxprintf_nocancel): Likewise.
25435 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25438 * include/gshadow.h (__fgetsgent_r): Add attribute_hidden.
25439 (__sgetsgent_r): Likewise.
25441 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25444 * include/sys/statfs.h (__fstatfs): Add attribute_hidden.
25445 (__statfs64): Likewise.
25446 (__fstatfs64): Likewise.
25447 * include/sys/statvfs.h (__statvfs64): Likewise.
25448 (__fstatvfs64): Likewise.
25449 * sysdeps/unix/sysv/linux/pathconf.h (__statfs_link_max): Likewise.
25450 (__statfs_filesize_max): Likewise.
25451 (__statfs_symlinks): Likewise.
25452 (__statfs_chown_restricted): Likewise.
25454 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25457 * include/time.h (__tzstring): Add attribute_hidden.
25458 (__tzfile_read): Likewise.
25459 (__tzfile_compute): Likewise.
25460 (__tzfile_default): Likewise.
25461 (__tzset_parse_tz): Likewise.
25462 (__offtime): Likewise.
25463 (__asctime_r): Likewise.
25464 (__tzset): Likewise.
25465 (__tz_convert): Likewise.
25466 (__getdate_r): Likewise.
25467 (__getclktck): Likewise.
25469 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25472 * nscd/nscd-client.h (__nscd_get_map_ref): Add attribute_hidden.
25473 (__nscd_unmap): Likewise.
25474 (__nscd_cache_search): Likewise.
25475 (__nscd_get_nl_timestamp): Likewise.
25476 (__nscd_getpwnam_r): Likewise.
25477 (__nscd_getpwuid_r): Likewise.
25478 (__nscd_getgrnam_r): Likewise.
25479 (__nscd_getgrgid_r): Likewise.
25480 (__nscd_gethostbyname_r): Likewise.
25481 (__nscd_gethostbyname2_r): Likewise.
25482 (__nscd_gethostbyaddr_r): Likewise.
25483 (__nscd_getai): Likewise.
25484 (__nscd_getgrouplist): Likewise.
25485 (__nscd_getservbyname_r): Likewise.
25486 (__nscd_getservbyport_r): Likewise.
25487 (__nscd_innetgr): Likewise.
25488 (__nscd_setnetgrent): Likewise.
25490 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25493 * include/gmp.h: Declare internal functions only if _ISOMAC is
25495 (__mpn_extract_double): Add attribute_hidden.
25496 (__mpn_extract_long_double): Likewise.
25497 (__mpn_extract_float128): Likewise.
25498 (__mpn_construct_float): Likewise.
25499 (__mpn_construct_double): Likewise.
25500 (__mpn_construct_long_double): Likewise.
25501 (__mpn_construct_float128): Likewise.
25502 (mpn_add_1): Likewise.
25503 (mpn_addmul_1): Likewise.
25504 (mpn_add_n): Likewise.
25505 (mpn_cmp): Likewise.
25506 (mpn_divrem): Likewise.
25507 (mpn_lshift): Likewise.
25508 (mpn_mul): Likewise.
25509 (mpn_mul_1): Likewise.
25510 (mpn_rshift): Likewise.
25511 (mpn_sub_1): Likewise.
25512 (mpn_submul_1): Likewise.
25513 (mpn_sub_n): Likewise.
25515 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25518 * include/wchar.h (__wcsnlen): Add attribute_hidden.
25519 (__wcscat): Likewise.
25520 (__btowc): Likewise.
25521 (__wcrtomb): Likewise.
25522 (__mbsrtowcs): Likewise.
25523 (__wcsrtombs): Likewise.
25524 (__mbsnrtowcs): Likewise.
25525 (__wcsnrtombs): Likewise.
25526 (__wcsncpy): Likewise.
25527 (__wcpncpy): Likewise.
25528 (__wmemcpy): Likewise.
25529 (__wmempcpy): Likewise.
25530 (__wmemmove): Likewise.
25531 (__wcschrnul): Likewise.
25532 (__vfwscanf): Likewise.
25533 (__vswprintf): Likewise.
25534 (__fwprintf): Likewise.
25535 (__vfwprintf): Likewise.
25537 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25540 * include/grp.h (__fgetgrent_r): Add attribute_hidden.
25541 (__getgrgid_r): Likewise.
25542 (__getgrnam_r): Likewise.
25543 * include/pwd.h (__getpwuid_r): Likewise.
25544 (__getpwnam_r): Likewise.
25545 (__fgetpwent_r): Likewise.
25546 * include/shadow.h (__getspnam_r): Likewise.
25547 (__sgetspent_r): Likewise.
25548 (__fgetspent_r): Likewise.
25550 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25553 * include/unistd.h (__access): Add attribute_hidden.
25554 (__lseek64): Likewise.
25555 (__libc_pread64): Likewise.
25556 (__pipe2): Likewise.
25557 (__sleep): Likewise.
25558 (__chdir): Likewise.
25559 (__fchdir): Likewise.
25560 (__getcwd): Likewise.
25561 (__rmdir): Likewise.
25562 (__execvpe): Likewise.
25563 (__execve): Likewise.
25564 (__setsid): Likewise.
25565 (__getuid): Likewise.
25566 (__geteuid): Likewise.
25567 (__getgid): Likewise.
25568 (__getegid): Likewise.
25569 (__getgroups): Likewise.
25570 (__group_member): Likewise.
25571 (__ttyname_r): Likewise.
25572 (__isatty): Likewise.
25573 (__readlink): Likewise.
25574 (__unlink): Likewise.
25575 (__gethostname): Likewise.
25576 (__profil): Likewise.
25577 (__getdtablesize): Likewise.
25579 (__ftruncate): Likewise.
25580 (__ftruncate64): Likewise.
25582 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25585 * argp/argp-fmtstream.c: Include <argp-fmtstream.h>.
25586 * argp/argp-fs-xinl.c: Likewise.
25587 * argp/argp-help.c: Include <argp.h> and <argp-fmtstream.h>.
25588 * argp/argp-parse.c: Include <argp.h>.
25589 * argp/argp-xinl.c: Likewise.
25590 * include/argp-fmtstream.h: New file.
25591 * include/argp.h (__argp_error): Add attribute_hidden.
25592 (__argp_failure): Likewise.
25593 (__argp_input): Likewise.
25594 (__argp_state_help): Likewise.
25596 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25599 * include/wchar.h (____wcstof_l_internal): New prototype.
25600 (____wcstod_l_internal): Likewise.
25601 (____wcstold_l_internal): Likewise.
25602 (____wcstol_l_internal): Likewise.
25603 (____wcstoul_l_internal): Likewise.
25604 (____wcstoll_l_internal): Likewise.
25605 (____wcstoull_l_internal): Likewise.
25606 (____wcstof128_l_internal): Likewise.
25607 * sysdeps/ieee754/float128/wcstof128.c
25608 (____wcstof128_l_internal): Removed.
25609 * sysdeps/ieee754/float128/wcstof128_l.c
25610 (____wcstof128_l_internal): Likewise.
25611 * wcsmbs/wcstod.c (____wcstod_l_internal): Likewise.
25612 * wcsmbs/wcstod_l.c (____wcstod_l_internal): Likewise.
25613 * wcsmbs/wcstof.c (____wcstof_l_internal): Likewise.
25614 * wcsmbs/wcstof_l.c (____wcstof_l_internal): Likewise.
25615 * wcsmbs/wcstol_l.c (____wcstol_l_internal): Likewise.
25616 * wcsmbs/wcstold.c (____wcstold_l_internal): Likewise.
25617 * wcsmbs/wcstold_l.c (____wcstold_l_internal): Likewise.
25618 * wcsmbs/wcstoll_l.c (____wcstoll_l_internal): Likewise.
25619 * wcsmbs/wcstoul_l.c (____wcstoul_l_internal): Likewise.
25620 * wcsmbs/wcstoull_l.c (____wcstoull_l_internal): Likewise.
25622 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25625 * sysdeps/unix/sysv/linux/fstatvfs.c: Include "internal_statvfs.h"
25626 instead of <sys/statvfs.h>.
25627 (__internal_statvfs): Removed.
25628 * sysdeps/unix/sysv/linux/fstatvfs64.c Include "internal_statvfs.h"
25629 instead of <sys/statvfs.h>.
25630 (__internal_statvfs64): Removed.
25631 * sysdeps/unix/sysv/linux/internal_statvfs.c: Include
25632 "internal_statvfs.h" instead of <sys/statvfs.h>.
25633 * sysdeps/unix/sysv/linux/internal_statvfs.h: New file.
25634 * sysdeps/unix/sysv/linux/statvfs.c Include "internal_statvfs.h"
25635 instead of <sys/statvfs.h>.
25636 (__internal_statvfs): Removed.
25637 * sysdeps/unix/sysv/linux/statvfs64.c Include "internal_statvfs.h"
25638 instead of <sys/statvfs.h>.
25639 (__internal_statvfs64): Removed.
25641 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25644 * iconv/gconv_int.h (__gconv_open): Add attribute_hidden.
25645 (__gconv_close): Likewise.
25646 (__gconv): Likewise.
25647 (__gconv_find_transform): Likewise.
25648 (__gconv_lookup_cache): Likewise.
25649 (__gconv_compare_alias_cache): Likewise.
25650 (__gconv_load_cache): Likewise.
25651 (__gconv_get_path): Likewise.
25652 (__gconv_close_transform): Likewise.
25653 (__gconv_release_cache): Likewise.
25654 (__gconv_find_shlib): Likewise.
25655 (__gconv_release_shlib): Likewise.
25656 (__gconv_get_builtin_trans): Likewise.
25657 (__gconv_compare_alias): Likewise.
25658 * include/dlfcn.h (_dlerror_run): Likewise.
25659 * include/stdio.h (__fortify_fail_abort): Likewise.
25660 * include/time.h (__tz_compute): Likewise.
25661 (__strptime_internal): Likewise.
25662 * intl/gettextP.h (_nl_find_domain): Likewise.
25663 (_nl_load_domain): Likewise.
25664 (_nl_find_msg): Likewise.
25665 * intl/plural-exp.h (FREE_EXPRESSION): Likewise.
25666 (EXTRACT_PLURAL_EXPRESSION): Likewise.
25667 * locale/coll-lookup.h (__collidx_table_lookup): Likewise.
25668 * resolv/gai_misc.h (__gai_enqueue_request): Likewise.
25669 (__gai_find_request): Likewise.
25670 (__gai_remove_request): Likewise.
25671 (__gai_notify): Likewise.
25672 (__gai_notify_only): Likewise.
25673 * sysdeps/generic/aio_misc.h (__aio_sigqueue): Likewise.
25674 * sysdeps/generic/ldsodefs.h (_dl_fini): Likewise.
25675 (_dl_non_dynamic_init): Likewise.
25676 (_dl_aux_init): Likewise.
25677 * sysdeps/i386/machine-gmon.h (mcount_internal): Likewise.
25678 * sysdeps/unix/sysv/linux/i386/olddirent.h (__old_getdents64):
25680 * wcsmbs/wcsmbsload.h (__wcsmbs_load_conv): Likewise.
25681 (__wcsmbs_clone_conv): Likewise.
25682 (__wcsmbs_named_conv): Likewise.
25684 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25687 * include/stdlib.h (__random): Add attribute_hidden.
25688 (__random_r): Likewise.
25689 (__srandom_r): Likewise.
25690 (__initstate_r): Likewise.
25691 (__setstate_r): Likewise.
25692 (__erand48_r): Likewise.
25693 (__nrand48_r): Likewise.
25694 (__jrand48_r): Likewise.
25695 (__srand48_r): Likewise.
25696 (__seed48_r): Likewise.
25697 (__lcong48_r): Likewise.
25698 (__drand48_iterate): Likewise.
25699 (__setenv): Likewise.
25700 (__unsetenv): Likewise.
25701 (__clearenv): Likewise.
25702 (__ptsname_r): Likewise.
25703 (__posix_openpt): Likewise.
25704 (__add_to_environ): Likewise.
25705 (__realpath): Add libc_hidden_proto.
25706 (__ecvt_r): Likewise.
25707 (__fcvt_r): Likewise.
25708 (__qecvt_r): Likewise.
25709 (__qfcvt_r): Likewise.
25710 * misc/efgcvt_r.c (cvt_symbol_1): Add libc_hidden_def (local).
25711 * stdlib/canonicalize.c (__realpath): Add libc_hidden_def.
25713 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
25716 * include/stdlib.h (__ptsname_internal): Add attribute_hidden.
25717 * include/time.h (__mktime_internal): Likewise.
25718 * libio/iolibio.h (__fopen_internal): Likewise.
25720 2017-10-01 John David Anglin <danglin@gcc.gnu.org>
25722 * sysdeps/unix/sysv/linux/hppa/getcontext.S (__getcontext): Save return
25724 * sysdeps/unix/sysv/linux/hppa/setcontext.S (__setcontext): Likewise.
25725 Correct offset used to restore PIC register.
25727 2017-09-30 John David Anglin <danglin@gcc.gnu.org>
25730 * sysdeps/unix/sysv/linux/hppa/getcontext.S (__getcontext): Use PIC
25731 code to load address of __getcontext_ret when generating PIC code.
25733 2017-09-30 H.J. Lu <hongjiu.lu@intel.com>
25735 * elf/Makefile (tests-static-internal): Add
25736 tst-tls1-static-non-pie.
25737 (LDFLAGS-tst-tls1-static-non-pie): New.
25738 * elf/tst-tls1-static-non-pie.c: New file.
25740 2017-09-29 Joseph Myers <joseph@codesourcery.com>
25742 * sysdeps/ieee754/dbl-64/s_asinh.c: Include <libm-alias-double.h>.
25743 (asinh): Define using libm_alias_double.
25744 * sysdeps/ieee754/dbl-64/s_cbrt.c: Include <libm-alias-double.h>.
25745 (cbrt): Define using libm_alias_double.
25746 * sysdeps/ieee754/dbl-64/s_copysign.c: Include
25747 <libm-alias-double.h>.
25748 (copysign): Define using libm_alias_double.
25749 * sysdeps/ieee754/dbl-64/s_erf.c: Include <libm-alias-double.h>.
25750 (erf): Define using libm_alias_double.
25752 * sysdeps/ieee754/dbl-64/s_expm1.c: Include <libm-alias-double.h>.
25753 (expm1): Define using libm_alias_double.
25754 * sysdeps/ieee754/dbl-64/s_fabs.c: Include <libm-alias-double.h>.
25755 (fabs): Define using libm_alias_double.
25756 * sysdeps/ieee754/dbl-64/s_fromfp.c (fromfp): Define using
25758 * sysdeps/ieee754/dbl-64/s_fromfp_main.c: Include
25759 <libm-alias-double.h>.
25760 * sysdeps/ieee754/dbl-64/s_fromfpx.c (fromfpx): Define using
25762 * sysdeps/ieee754/dbl-64/s_getpayload.c: Include
25763 <libm-alias-double.h>.
25764 (getpayload): Define using libm_alias_double.
25765 * sysdeps/ieee754/dbl-64/s_llrint.c: Include
25766 <libm-alias-double.h>.
25767 (llrint): Define using libm_alias_double.
25768 * sysdeps/ieee754/dbl-64/s_lrint.c: Include <libm-alias-double.h>.
25769 (lrint): Define using libm_alias_double.
25770 * sysdeps/ieee754/dbl-64/s_nextup.c: Include
25771 <libm-alias-double.h>.
25772 (nextup): Define using libm_alias_double.
25773 * sysdeps/ieee754/dbl-64/s_roundeven.c: Include
25774 <libm-alias-double.h>.
25775 (roundeven): Define using libm_alias_double.
25776 * sysdeps/ieee754/dbl-64/s_setpayload.c (setpayload): Define using
25778 * sysdeps/ieee754/dbl-64/s_setpayload_main.c: Include
25779 <libm-alias-double.h>.
25780 * sysdeps/ieee754/dbl-64/s_setpayloadsig.c (setpayloadsig): Define
25781 using libm_alias_double.
25782 * sysdeps/ieee754/dbl-64/s_sin.c: Include <libm-alias-double.h>.
25783 (cos): Define using libm_alias_double.
25785 * sysdeps/ieee754/dbl-64/s_sincos.c: Include
25786 <libm-alias-double.h>.
25787 (sincos): Define using libm_alias_double.
25788 * sysdeps/ieee754/dbl-64/s_tanh.c: Include <libm-alias-double.h>.
25789 (tanh): Define using libm_alias_double.
25790 * sysdeps/ieee754/dbl-64/s_totalorder.c: Include
25791 <libm-alias-double.h>.
25792 (totalorder): Define using libm_alias_double.
25793 * sysdeps/ieee754/dbl-64/s_totalordermag.c: Include
25794 <libm-alias-double.h>.
25795 (totalordermag): Define using libm_alias_double.
25796 * sysdeps/ieee754/dbl-64/s_ufromfp.c (ufromfp): Define using
25798 * sysdeps/ieee754/dbl-64/s_ufromfpx.c (ufromfpx): Define using
25800 * sysdeps/ieee754/dbl-64/wordsize-64/s_getpayload.c: Include
25801 <libm-alias-double.h>.
25802 (getpayload): Define using libm_alias_double.
25803 * sysdeps/ieee754/dbl-64/wordsize-64/s_roundeven.c: Include
25804 <libm-alias-double.h>.
25805 (roundeven): Define using libm_alias_double.
25806 * sysdeps/ieee754/dbl-64/wordsize-64/s_setpayload_main.c: Include
25807 <libm-alias-double.h>.
25808 * sysdeps/ieee754/dbl-64/wordsize-64/s_totalorder.c: Include
25809 <libm-alias-double.h>.
25810 (totalorder): Define using libm_alias_double.
25811 * sysdeps/ieee754/dbl-64/wordsize-64/s_totalordermag.c: Include
25812 <libm-alias-double.h>.
25813 (totalordermag): Define using libm_alias_double.
25814 * sysdeps/ieee754/ldbl-opt/s_copysign.c (copysignl): Only define
25815 libc compat symbol here.
25816 * sysdeps/ieee754/ldbl-opt/s_asinh.c: Remove file.
25817 * sysdeps/ieee754/ldbl-opt/s_cbrt.c: Likewise.
25818 * sysdeps/ieee754/ldbl-opt/s_erf.c: Likewise.
25819 * sysdeps/ieee754/ldbl-opt/s_expm1.c: Likewise.
25820 * sysdeps/ieee754/ldbl-opt/s_fabs.c: Likewise.
25821 * sysdeps/ieee754/ldbl-opt/s_llrint.c: Likewise.
25822 * sysdeps/ieee754/ldbl-opt/s_lrint.c: Likewise.
25823 * sysdeps/ieee754/ldbl-opt/s_sin.c: Likewise.
25824 * sysdeps/ieee754/ldbl-opt/s_sincos.c: Likewise.
25825 * sysdeps/ieee754/ldbl-opt/s_tanh.c: Likewise.
25827 2017-09-29 H.J. Lu <hongjiu.lu@intel.com>
25829 * sysdeps/arm/dl-machine.h (elf_machine_load_address): Use
25830 _dl_relocate_static_pie instead of _dl_start to compute load
25831 address in static PIE. Return 0 if _DYNAMIC is undefined for
25834 2017-09-29 H.J. Lu <hongjiu.lu@intel.com>
25836 * sysdeps/mips/dl-machine.h (elf_machine_dynamic): Return 0 if
25837 _DYNAMIC is undefined for static executable.
25839 2017-09-29 H.J. Lu <hongjiu.lu@intel.com>
25841 * sysdeps/arm/start.S (_start): Check PIC instead of SHARED.
25843 2017-09-29 Joseph Myers <joseph@codesourcery.com>
25845 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
25847 2017-09-29 Wilco Dijkstra <wdijkstr@arm.com>
25849 * sysdeps/ieee754/dbl-64/e_lgamma_r.c
25850 (__ieee754_lgamma_r): Use fabs rather than __fabs.
25851 * sysdeps/ieee754/dbl-64/e_log10.c (__ieee754_log10): Likewise.
25852 * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Likewise.
25853 * sysdeps/ieee754/flt-32/e_lgammaf_r.c
25854 (__ieee754_lgammaf_r): Use fabsf rather than __fabsf.
25855 * sysdeps/ieee754/flt-32/e_log10f.c (__ieee754_log10f): Likewise.
25856 * sysdeps/ieee754/flt-32/e_log2f.c (__ieee754_log2f): Likewise.
25857 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c
25858 (__ieee754_lgammal_r): Use fabsl rather than __fabsl.
25859 * sysdeps/ieee754/ldbl-128/e_log10l.c (__ieee754_log10l): Likewise.
25860 * sysdeps/ieee754/ldbl-128/e_log2l.c (__ieee754_log2l): Likewise.
25861 * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c
25862 (__ieee754_lgammal_r): Use fabsl rather than __fabsl.
25863 * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l): Likewise.
25864 * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l): Likewise.
25865 * sysdeps/powerpc/nofpu/Makefile: Add -fno-builtin-fabsl for BZ #29253.
25867 2017-09-29 Wilco Dijkstra <wdijkstr@arm.com>
25869 * math/bits/cmathcalls.h (cimag): Remove inline.
25870 (creal): Remove inline.
25871 (conj): Remove inline.
25873 2017-09-29 Szabolcs Nagy <szabolcs.nagy@arm.com>
25875 * math/Makefile (type-float-routines): Add e_powf_log2_data.
25876 * sysdeps/ieee754/flt-32/e_powf.c: New implementation.
25877 * sysdeps/ieee754/flt-32/e_powf_log2_data.c: New file.
25878 * sysdeps/ieee754/flt-32/math_config.h (__powf_log2_data): Define.
25879 (issignalingf_inline): Likewise.
25880 (POWF_LOG2_TABLE_BITS): Likewise.
25881 (POWF_LOG2_POLY_ORDER): Likewise.
25882 (POWF_SCALE_BITS): Likewise.
25883 (POWF_SCALE): Likewise.
25884 * sysdeps/i386/fpu/e_powf_log2_data.c: New file.
25885 * sysdeps/ia64/fpu/e_powf_log2_data.c: New file.
25886 * sysdeps/m68k/m680x0/fpu/e_powf_log2_data.c: New file.
25888 2017-09-29 Szabolcs Nagy <szabolcs.nagy@arm.com>
25890 * math/Makefile (type-float-routines): Add e_log2f_data.
25891 * sysdeps/ieee754/flt-32/e_log2f.c: New implementation.
25892 * sysdeps/ieee754/flt-32/e_log2f_data.c: New file.
25893 * sysdeps/ieee754/flt-32/math_config.h (__log2f_data): Define.
25894 (LOG2F_TABLE_BITS, LOG2F_POLY_ORDER): Define.
25895 * sysdeps/i386/fpu/e_log2f_data.c: New file.
25896 * sysdeps/ia64/fpu/e_log2f_data.c: New file.
25897 * sysdeps/m68k/m680x0/fpu/e_log2f_data.c: New file.
25899 2017-09-29 Szabolcs Nagy <szabolcs.nagy@arm.com>
25901 * math/Makefile (type-float-routines): Add e_logf_data.
25902 * sysdeps/ieee754/flt-32/e_logf.c: New implementation.
25903 * sysdeps/ieee754/flt-32/e_logf_data.c: New file.
25904 * sysdeps/ieee754/flt-32/math_config.h (__logf_data): Define.
25905 (LOGF_TABLE_BITS, LOGF_POLY_ORDER): Define.
25906 * sysdeps/i386/fpu/e_logf_data.c: New file.
25907 * sysdeps/ia64/fpu/e_logf_data.c: New file.
25908 * sysdeps/m68k/m680x0/fpu/e_logf_data.c: New file.
25910 2017-09-28 H.J. Lu <hongjiu.lu@intel.com>
25912 * sysdeps/i386/dl-machine.h (elf_machine_load_address): Allow
25913 undefined _DYNAMIC in PIE libc.a.
25914 * sysdeps/x86_64/dl-machine.h (elf_machine_load_address):
25917 2017-09-28 Wilco Dijkstra <wdijkstr@arm.com>
25919 * sysdeps/alpha/fpu/bits/mathinline.h: Delete file.
25920 * sysdeps/ia64/fpu/bits/mathinline.h: Delete file.
25921 * sysdeps/m68k/coldfire/fpu/bits/mathinline.h: Delete file.
25922 * sysdeps/m68k/m680x0/fpu/bits/mathinline.h: (__signbitf): Remove.
25923 (__signbit): Remove.
25924 (__signbitl): Remove.
25925 * sysdeps/powerpc/bits/mathinline.h (__signbitf): Remove.
25926 (__signbit): Remove.
25927 (__signbitl): Remove.
25928 * sysdeps/s390/fpu/bits/mathinline.h: (__signbitf): Remove.
25929 (__signbit): Remove.
25930 (__signbitl): Remove.
25931 * sysdeps/sparc/fpu/bits/mathinline.h (__signbitf): Remove.
25932 (__signbit): Remove.
25933 (__signbitl): Remove.
25934 * sysdeps/tile/bits/mathinline.h: Delete file.
25935 * sysdeps/x86/fpu/bits/mathinline.h (__signbitf): Remove.
25936 (__signbit): Remove.
25937 (__signbitl): Remove.
25939 2017-09-28 Wilco Dijkstra <wdijkstr@arm.com>
25941 * math/math.h: Improve handling of C99 isgreater macros.
25942 * sysdeps/alpha/fpu/bits/mathinline.h: Remove isgreater macros.
25943 * sysdeps/m68k/m680x0/fpu/bits/mathinline.h: Likewise.
25944 * sysdeps/powerpc/bits/mathinline.h: Likewise.
25945 * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
25946 * sysdeps/x86/fpu/bits/mathinline.h: Likewise.
25948 2017-09-28 Szabolcs Nagy <szabolcs.nagy@arm.com>
25950 * sysdeps/aarch64/libm-test-ulps: Update.
25952 2017-09-28 Joseph Myers <joseph@codesourcery.com>
25955 * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
25956 math_opt_barrier on argument when doing arithmetic on it.
25957 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c (__nearbyint):
25958 Likewise. Use math_force_eval not math_opt_barrier after
25960 * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Use
25961 math_opt_barrier on argument when doing arithmetic on it.
25962 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl):
25965 2017-09-27 H.J. Lu <hongjiu.lu@intel.com>
25967 * sysdeps/unix/sysv/linux/ifaddrs.c (__getifaddrs): Add
25969 (__freeifaddrs): Likewise.
25971 2017-09-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
25973 * include/dirent.h (__dirfd): New declaration.
25974 * dirent/dirfd.c (dirfd): Rename to __dirfd, and redefine as weak
25976 * sysdeps/posix/dirfd/dirfd.c (dirfd): Likewise.
25977 * sysdeps/mach/hurd/dirfd.c (dirfd): Likewise.
25978 * io/ftw.c (open_dir_stream, ftw_dir): Use __dirfd instead of dirfd.
25979 * include/unistd.h (__revoke): New declaration.
25980 * misc/revoke.c (revoke): Rename to __revoke, and redefine as weak
25982 * sysdeps/mach/hurd/revoke.c (revoke): Likewise.
25983 * sysdeps/unix/bsd/unlockpt.c (unlockpt): Use __revoke instead of
25985 * include/dirent.h (__seekdir): New declaration.
25986 * sysdeps/mach/hurd/seekdir.c (seekdir): Rename to __seekdir and
25987 redefine as weak alias.
25988 * sysdeps/mach/hurd/rewinddir.c (__rewinddir): Use __seekdir instead
25990 * include/ifaddrs.h (__getifaddrs, __freeifaddrs): New declarations,
25991 and use libc_hidden_def on them.
25992 * inet/ifaddrs.c (__getifaddrs, __freeifaddrs): Use libc_hidden_def on
25994 * sysdeps/gnu/ifaddrs.c (__getifaddrs, __freeifaddrs): Likewise.
25995 * inet/check_pf.c (__check_pf): Use __getifaddrs and __freeifaddrs
25996 instead of getifaddrs and freeifaddrs.
25998 2017-09-26 H.J. Lu <hongjiu.lu@intel.com>
26001 * dlfcn/modatexit.c (foo): Remove __dso_handle check.
26002 * dlfcn/modcxaatexit.c: Include <dso_handle.h>.
26003 (__dso_handle): Remove declaration.
26004 * dlfcn/tstatexit.c (__dso_handle): Removed.
26005 (main): Don't check __dso_handle.
26006 * dlfcn/tstcxaatexit.c (__dso_handle): Removed.
26007 (main): Don't check __dso_handle.
26008 * include/dso_handle.h: New file.
26009 * malloc/mtrace.c: Include <dso_handle.h>.
26010 (mtrace): Pass __dso_handle directly.
26011 * nptl/pthread_atfork.c: Include <dso_handle.h>.
26012 (__dso_handle): Remove declaration.
26013 (__pthread_atfork): Pass __dso_handle directly.
26014 * nptl/tst-atfork2mod.c: Include <dso_handle.h>.
26015 (__dso_handle): Removed.
26016 * posix/wordexp-test.c: Include <dso_handle.h>.
26017 (__dso_handle): Remove declaration.
26018 (__app_register_atfork): Pass __dso_handle directly.
26019 * stdlib/at_quick_exit.c: Include <dso_handle.h>.
26020 (__dso_handle): Remove declaration.
26021 (at_quick_exit): Pass __dso_handle directly.
26022 * stdlib/atexit.c: Include <dso_handle.h>.
26023 (__dso_handle): Remove declaration.
26024 (atexit): Pass __dso_handle directly.
26025 * stdlib/tst-tls-atexit-lib.c: Include <dso_handle.h>.
26026 (__dso_handle): Removed.
26028 2017-09-26 Joseph Myers <joseph@codesourcery.com>
26030 * sysdeps/unix/make-syscalls.sh: Use __ifunc to define symbols
26033 2017-09-26 Alexey Makhalov <amakhalov@vmware.com>
26035 * elf/dl-tunables.c (do_tunable_update_val): Range checking fix.
26036 * scripts/gen-tunables.awk: Set unspecified minval and/or maxval
26037 values to correct default value for given type.
26039 2017-09-26 H.J. Lu <hongjiu.lu@intel.com>
26042 * elf/Makefile (tests): Add tst-debug1.
26043 ($(objpfx)tst-debug1): New.
26044 ($(objpfx)tst-debug1.out): Likewise.
26045 ($(objpfx)tst-debug1mod1.so): Likewise.
26046 * elf/dl-load.c (_dl_map_object_from_fd): Skip PT_DYNAMIC segment
26047 with p_filesz == 0.
26048 * elf/tst-debug1.c: New file.
26050 2017-09-26 Joseph Myers <joseph@codesourcery.com>
26052 * sysdeps/sparc/sparc-ifunc.h [!__ASSEMBLER__] (sparc_libm_ifunc):
26053 Define using __ifunc.
26055 2017-09-26 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
26057 * sysdeps/powerpc/fpu/libm-test-ulps: Regenerate expf() and
26060 2017-09-26 Joseph Myers <joseph@codesourcery.com>
26063 * sysdeps/ia64/stackinfo.h (DEFAULT_STACK_PERMS): Likewise.
26065 2017-09-26 Florian Weimer <fweimer@redhat.com>
26067 * resolv/Makefile (tests-internal): Fix typo in comment.
26069 2017-09-26 Florian Weimer <fweimer@redhat.com>
26071 * resolv/nss_dns/dns-host.c: Fix typo in comment.
26073 2017-09-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
26075 * lib/malloc/scratch_buffer.h (struct scratch_buffer):
26076 Use an union instead of a max_align_t array for __space,
26077 so that __space is the same size on all platforms.
26078 * malloc/scratch_buffer_grow_preserve.c
26079 (__libc_scratch_buffer_grow_preserve): Likewise.
26082 * include/gnu-versions.h (_GNU_GLOB_INTERFACE_VERSION): Increase
26084 * posix/Makefile (routines): Add glob-lstat-compat and
26085 glob64-lstat-compat.
26086 * posix/Versions (GLIBC_2.27, glob, glob64): Add symbol version.
26087 * posix/glob-lstat-compat.c: New file.
26088 * posix/glob64-lstat-compat.c: Likewise.
26089 * posix/tst-glob_lstat_compat.c: Likewise.
26090 * sysdeps/unix/sysv/linux/glob-lstat-compat.c: Likewise.
26091 * sysdeps/unix/sysv/linux/alpha/glob-lstat-compat.c: Likewise.
26092 * sysdeps/unix/sysv/linux/glob64-lstat-compat.c: Likewise.
26093 * sysdeps/unix/sysv/linux/s390/s390-32/glob64-lstat-compat.c:
26095 * sysdeps/unix/sysv/linux/alpha/glob.c: Remove file.
26096 * sysdeps/unix/sysv/linux/s390/s390-32/glob64.c: Likewise.
26097 * posix/glob.c (glob_lstat): New function.
26098 (glob): Rename to __glob and add versioned symbol to 2.27.
26099 (glob_in_dir): Use glob_lstat.
26100 * posix/glob64.c (glob64): Add GLOB_ATTRIBUTE.
26101 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
26102 * sysdeps/unix/sysv/linux/glob.c (glob): Add versioned symbol for
26104 * sysdeps/unix/sysv/linux/glob64.c (glob64): Likewise.
26105 * sysdeps/unix/sysv/linux/oldglob.c (GLOB_NO_LSTAT): Define.
26106 * sysdeps/unix/sysv/linux/alpha/oldglob.c (__old_glob): Do not use
26107 gl_lstat on glob call.
26108 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Add GLIBC_2.27 glob
26109 and glob64 symbols.
26110 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
26111 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
26112 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
26113 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
26114 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
26115 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
26116 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
26117 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
26118 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: Likewise.
26119 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
26120 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
26121 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
26122 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
26124 * sysdeps/unix/linux/powerpc/powerpc32/nofpu/libc.abilist: Likewise.
26125 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: Likewise.
26126 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
26127 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
26128 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
26129 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
26130 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
26131 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist: Likewise.
26132 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist: Likewise.
26133 * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: Likewise.
26134 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
26135 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
26137 2017-09-25 H.J. Lu <hongjiu.lu@intel.com>
26139 * configure.ac (AS): Require binutils 2.25 or later.
26140 * configure: Regenerated.
26142 2017-09-25 Paul Pluzhnikov <ppluzhnikov@google.com>
26145 * stdlib/test-atexit-race-common.c (do_test): Minimize required
26148 2017-09-25 DJ Delorie <dj@redhat.com>
26151 * nscd/netgroupcache.c (addinnetgrX): Release read lock after
26154 2017-09-25 Stefan Liebler <stli@linux.vnet.ibm.com>
26156 * sysdeps/ieee754/dbl-64/sincos32.h
26157 [SINCCOS32_H]: Remove define.
26158 [SINCOS32_H]: Define.
26160 2017-09-25 Szabolcs Nagy <szabolcs.nagy@arm.com>
26162 * math/Versions (expf): New libm symbol at GLIBC_2.27.
26164 * math/w_exp2f.c: New file.
26165 * math/w_expf.c: New file.
26166 * math/w_exp2f_compat.c (__exp2f_compat): For compat symbol only.
26167 * math/w_expf_compat.c (__expf_compat): Likewise.
26168 * sysdeps/ia64/fpu/e_exp2f.S: Add versioned symbols.
26169 * sysdeps/ia64/fpu/e_expf.S: Likewise.
26170 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
26171 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
26172 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
26173 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
26174 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
26175 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
26176 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
26177 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
26178 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
26179 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
26180 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
26181 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
26182 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist:
26184 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
26186 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
26188 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist:
26190 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
26191 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
26192 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
26193 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
26194 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
26195 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist:
26197 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist:
26199 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
26200 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
26201 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
26203 2017-09-25 Szabolcs Nagy <szabolcs.nagy@arm.com>
26205 * math/Makefile (type-float-routines): Add math_errf and e_exp2f_data.
26206 * sysdeps/aarch64/fpu/math_private.h (TOINT_INTRINSICS): Define.
26207 (roundtoint, converttoint): Likewise.
26208 * sysdeps/ieee754/flt-32/e_expf.c: New implementation.
26209 * sysdeps/ieee754/flt-32/e_exp2f.c: New implementation.
26210 * sysdeps/ieee754/flt-32/e_exp2f_data.c: New file.
26211 * sysdeps/ieee754/flt-32/math_config.h: New file.
26212 * sysdeps/ieee754/flt-32/math_errf.c: New file.
26213 * sysdeps/ieee754/flt-32/t_exp2f.h: Remove.
26214 * sysdeps/i386/fpu/e_exp2f_data.c: New file.
26215 * sysdeps/i386/fpu/math_errf.c: New file.
26216 * sysdeps/ia64/fpu/e_exp2f_data.c: New file.
26217 * sysdeps/ia64/fpu/math_errf.c: New file.
26218 * sysdeps/m68k/m680x0/fpu/e_exp2f_data.c: New file.
26219 * sysdeps/m68k/m680x0/fpu/math_errf.c: New file.
26221 2017-09-24 Samuel Thibault <samuel.thibault@ens-lyon.org>
26223 * sysdeps/mach/hurd/dl-sysdep.c (check_no_hidden): New macro.
26224 (__open, __close, __libc_read, __libc_write, __writev, __libc_lseek64,
26225 __mmap, __fxstat64, __xstat64, __access, __access_noerrno, __getpid,
26226 __getcwd, __sbrk, __strtoul_internal, _exit, abort): Use check_no_hidden
26227 to make sure that these symbols are defined.
26228 * sysdeps/mach/hurd/bits/socket.h: Include <bits/wordsize.h> instead
26230 (__need_NULL): Do not define.
26231 (__ss_aligntype): Use __WORDSIZE instead of ULONG_MAX to determine
26233 [!__USE_MISC] (pseudo_AF_XTP, pseudo_AF_RTIP, pseudo_AF_PIP,
26234 CMGROUP_MAX, cmsgcred): Do not define.
26235 (CMSG_FIRSTHDR, __cmsg_nxthdr): Use (struct cmsghdr *) 0 instead of
26237 * bits/socket.h: Likewise.
26238 * sysdeps/unix/clock_gettime.c (realtime_gettime, __clock_gettime): Use
26239 __gettimeofday instead of gettimeofday.
26240 * sysdeps/unix/clock_settime.c (__clock_settime): Use __settimeofday
26241 instead of settimeofday.
26243 2017-09-22 Joseph Myers <joseph@codesourcery.com>
26245 * sysdeps/ieee754/flt-32/s_asinhf.c: Include <libm-alias-float.h>.
26246 (asinhf): Define using libm_alias_float.
26247 * sysdeps/ieee754/flt-32/s_atanf.c: Include <libm-alias-float.h>.
26248 (atanf): Define using libm_alias_float.
26249 * sysdeps/ieee754/flt-32/s_cbrtf.c: Include <libm-alias-float.h>.
26250 (cbrtf): Define using libm_alias_float.
26251 * sysdeps/ieee754/flt-32/s_ceilf.c: Include <libm-alias-float.h>.
26252 (ceilf): Define using libm_alias_float.
26253 * sysdeps/ieee754/flt-32/s_copysignf.c: Include
26254 <libm-alias-float.h>.
26255 (copysignf): Define using libm_alias_float.
26256 * sysdeps/ieee754/flt-32/s_cosf.c: Include <libm-alias-float.h>.
26257 (cosf): Define using libm_alias_float.
26258 * sysdeps/ieee754/flt-32/s_erff.c: Include <libm-alias-float.h>.
26259 (erff): Define using libm_alias_float.
26261 * sysdeps/ieee754/flt-32/s_expm1f.c: Include <libm-alias-float.h>.
26262 (expm1f): Define using libm_alias_float.
26263 * sysdeps/ieee754/flt-32/s_fabsf.c: Include <libm-alias-float.h>.
26264 (fabsf): Define using libm_alias_float.
26265 * sysdeps/ieee754/flt-32/s_floorf.c: Include <libm-alias-float.h>.
26266 (floorf): Define using libm_alias_float.
26267 * sysdeps/ieee754/flt-32/s_frexpf.c: Include <libm-alias-float.h>.
26268 (frexpf): Define using libm_alias_float.
26269 * sysdeps/ieee754/flt-32/s_fromfpf.c (fromfpf): Define using
26271 * sysdeps/ieee754/flt-32/s_fromfpf_main.c: Include
26272 <libm-alias-float.h>.
26273 * sysdeps/ieee754/flt-32/s_fromfpxf.c (fromfpxf): Define using
26275 * sysdeps/ieee754/flt-32/s_getpayloadf.c: Include
26276 <libm-alias-float.h>.
26277 (getpayloadf): Define using libm_alias_float.
26278 * sysdeps/ieee754/flt-32/s_llrintf.c: Include
26279 <libm-alias-float.h>.
26280 (llrintf): Define using libm_alias_float.
26281 * sysdeps/ieee754/flt-32/s_llroundf.c: Include
26282 <libm-alias-float.h>.
26283 (llroundf): Define using libm_alias_float.
26284 * sysdeps/ieee754/flt-32/s_logbf.c: Include <libm-alias-float.h>.
26285 (logbf): Define using libm_alias_float.
26286 * sysdeps/ieee754/flt-32/s_lrintf.c: Include <libm-alias-float.h>.
26287 (lrintf): Define using libm_alias_float.
26288 * sysdeps/ieee754/flt-32/s_lroundf.c: Include <libm-alias-float.h>.
26289 (lroundf): Define using libm_alias_float.
26290 * sysdeps/ieee754/flt-32/s_modff.c: Include <libm-alias-float.h>.
26291 (modff): Define using libm_alias_float.
26292 * sysdeps/ieee754/flt-32/s_nearbyintf.c: Include
26293 <libm-alias-float.h>.
26294 (nearbyintf): Define using libm_alias_float.
26295 * sysdeps/ieee754/flt-32/s_nextafterf.c: Include
26296 <libm-alias-float.h>.
26297 (nextafterf): Define using libm_alias_float.
26298 * sysdeps/ieee754/flt-32/s_nextupf.c: Include
26299 <libm-alias-float.h>.
26300 (nextupf): Define using libm_alias_float.
26301 * sysdeps/ieee754/flt-32/s_remquof.c: Include
26302 <libm-alias-float.h>.
26303 (remquof): Define using libm_alias_float.
26304 * sysdeps/ieee754/flt-32/s_rintf.c: Include <libm-alias-float.h>.
26305 (rintf): Define using libm_alias_float.
26306 * sysdeps/ieee754/flt-32/s_roundevenf.c: Include
26307 <libm-alias-float.h>.
26308 (roundevenf): Define using libm_alias_float.
26309 * sysdeps/ieee754/flt-32/s_roundf.c: Include <libm-alias-float.h>.
26310 (roundf): Define using libm_alias_float.
26311 * sysdeps/ieee754/flt-32/s_setpayloadf.c (setpayloadf): Define
26312 using libm_alias_float.
26313 * sysdeps/ieee754/flt-32/s_setpayloadf_main.c: Include
26314 <libm-alias-float.h>.
26315 * sysdeps/ieee754/flt-32/s_setpayloadsigf.c (setpayloadsigf):
26316 Define using libm_alias_float.
26317 * sysdeps/ieee754/flt-32/s_sincosf.c: Include
26318 <libm-alias-float.h>.
26319 (sincosf): Define using libm_alias_float.
26320 * sysdeps/ieee754/flt-32/s_sinf.c: Include <libm-alias-float.h>.
26321 (sinf): Define using libm_alias_float.
26322 * sysdeps/ieee754/flt-32/s_tanf.c: Include <libm-alias-float.h>.
26323 (tanf): Define using libm_alias_float.
26324 * sysdeps/ieee754/flt-32/s_tanhf.c: Include <libm-alias-float.h>.
26325 (tanhf): Define using libm_alias_float.
26326 * sysdeps/ieee754/flt-32/s_totalorderf.c: Include
26327 <libm-alias-float.h>.
26328 (totalorderf): Define using libm_alias_float.
26329 * sysdeps/ieee754/flt-32/s_totalordermagf.c: Include
26330 <libm-alias-float.h>.
26331 (totalordermagf): Define using libm_alias_float.
26332 * sysdeps/ieee754/flt-32/s_truncf.c: Include <libm-alias-float.h>.
26333 (truncf): Define using libm_alias_float.
26334 * sysdeps/ieee754/flt-32/s_ufromfpf.c (ufromfpf): Define using
26336 * sysdeps/ieee754/flt-32/s_ufromfpxf.c (ufromfpxf): Define using
26339 2017-09-22 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
26342 math/math.h: Let fpclassify use the builtin in C++ mode, even
26343 when optimazing for size.
26345 2017-09-22 Joseph Myers <joseph@codesourcery.com>
26347 * csu/Makefile (generated): Do not add version-info.h.
26348 (before-compile): Likewise.
26349 (all-Banner-files): Remove variable.
26350 ($(objpfx)version-info.h): Remove rule.
26351 * csu/version.c (banner): Do not include "version-info.h".
26352 * libidn/Banner: Remove.
26353 * manual/contrib.texi (Simon Josefsson): New entry.
26355 2017-09-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
26357 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
26358 Remove conditionals on LDBL_MANT_DIG.
26359 * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c
26360 (__ieee754_lgammal_r): Likewise.
26362 2017-09-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
26364 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Remove definitions of
26366 * sysdeps/ieee754/ldbl-128ibm/e_j0l.c: Remove definitions of
26367 _Float128 and L(). Replace _Float128 with long double and L(x)
26368 with xL, throughout the file.
26369 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c: Likewise.
26370 * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c: Likewise.
26371 * sysdeps/ieee754/ldbl-128ibm/s_cbrtl.c: Likewise.
26372 * sysdeps/ieee754/ldbl-128ibm/t_expl.h: Likewise.
26374 2017-09-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
26376 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Include tables from
26377 sysdeps/ieee754/ldbl-128ibm.
26378 * sysdeps/ieee754/ldbl-128ibm/e_j0l.c: Copy contents from the
26379 equivalent implementation in sysdeps/ieee754/ldbl-128/ instead
26380 of including it. Keep _Float128 and L() intact. These will be
26381 reviewed by a separate patch.
26382 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c: Likewise.
26383 * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c: Likewise.
26384 * sysdeps/ieee754/ldbl-128ibm/s_cbrtl.c: Likewise.
26385 * sysdeps/ieee754/ldbl-128ibm/t_expl.h: Likewise.
26387 2017-09-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
26389 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c
26390 (__finitef128): Define to __redirect___finitef128.
26391 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c
26392 (__isinff128): Define to __redirect___isinff128.
26393 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c
26394 (__isnanf128): Define to __redirect___isnanf128.
26396 2017-09-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
26398 * sysdeps/powerpc/powerpc64le/Makefile
26399 (CFLAGS-tst-strtod-nan-locale.c): New variable.
26400 (CFLAGS-tst-wcstod-nan-locale.c): New variable.
26402 2017-09-21 Paul Pluzhnikov <ppluzhnikov@google.com>
26403 Carlos O'Donell <carlos@redhat.com>
26406 * stdlib/Makefile (tests): Add test-dlclose-exit-race.
26407 * stdlib/test-dlclose-exit-race.c: New file.
26408 * stdlib/test-dlclose-exit-race-helper.c: New file.
26409 * stdlib/exit.c (__run_exit_handlers): Mark slot as free.
26411 2017-09-21 Joseph Myers <joseph@codesourcery.com>
26413 * crypt/Banner: Remove file.
26414 * nptl/Banner: Likewise.
26415 * resolv/Banner: Likewise.
26416 * soft-fp/Banner: Likewise.
26417 * nptl/Makefile ($(objpfx)banner.h): Remove rule.
26418 ($(objpfx)version.d): Remove dependency on banner.h.
26419 ($(objpfx)version.os): Likewise.
26420 * nptl/version.c (banner): Do not include banner.h.
26421 * manual/contrib.texi: Update entries for Richard Henderson, Jakub
26422 Jelinek and BIND code.
26424 2017-09-20 Paul Pluzhnikov <ppluzhnikov@google.com>
26425 Carlos O'Donell <carlos@redhat.com>
26427 * support/xdlfcn.h: New file.
26428 * support/xdlfcn.c: New file.
26429 * support/Makefile (libsupport-routines): Add xdlfcn.
26430 * stdlib/tst-tls-atexit.c: Use xdlopen, xdlsym, xdlclose.
26432 2017-09-20 Joseph Myers <joseph@codesourcery.com>
26435 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
26436 Add s_trunc-c, s_truncf-c, s_trunc-sse4_1 and s_truncf-sse4_1.
26437 * sysdeps/x86_64/fpu/multiarch/s_trunc-c.c: New file.
26438 * sysdeps/x86_64/fpu/multiarch/s_trunc-sse4_1.S: Likewise.
26439 * sysdeps/x86_64/fpu/multiarch/s_trunc.c: Likewise.
26440 * sysdeps/x86_64/fpu/multiarch/s_truncf-c.c: Likewise.
26441 * sysdeps/x86_64/fpu/multiarch/s_truncf-sse4_1.S: Likewise.
26442 * sysdeps/x86_64/fpu/multiarch/s_truncf.c: Likewise.
26444 2017-09-20 Paul Pluzhnikov <ppluzhnikov@google.com>
26445 Ricky Zhou <rickyz@google.com>
26446 Anoop V Chakkalakkal <anoop.vijayan@in.ibm.com>
26449 * stdlib/cxa_atexit.c (__internal_atexit): Use __exit_funcs_lock.
26451 (__new_exitfn): Fail registration when we finished at_exit processing.
26452 * stdlib/cxa_finalize.c (__cxa_finalize): Likewise.
26453 * stdlib/on_exit.c (__on_exit): Likewise.
26454 * stdlib/exit.c (__exit_funcs_done): New variable.
26455 (__run_exit_handlers): Use __exit_funcs_lock.
26456 * stdlib/exit.h (__exit_funcs_lock, __exit_funcs_done): New
26458 * stdlib/Makefile (test-atexit-race, test-quick_at_exit-race)
26459 (test-cxa_atexit-race, test-on_exit-race): New tests.
26460 * stdlib/test-atexit-race-common.c: New file.
26461 * stdlib/test-atexit-race.c: New file.
26462 * stdlib/test-at_quick_exit-race.c: New file.
26463 * stdlib/test-cxa_atexit-race.c: New file.
26464 * stdlib/test-on_exit-race.c: New file.
26466 2017-09-20 Szabolcs Nagy <szabolcs.nagy@arm.com>
26468 * benchtests/Makefile: Add exp2f and log2f benchmarks.
26469 * benchtests/exp2f-inputs: Copy of expf-inputs.
26470 * benchtests/log2f-inputs: Copy of logf-inputs.
26472 2017-09-19 Joseph Myers <joseph@codesourcery.com>
26474 * sysdeps/unix/sysv/linux/fexecve.c (fexecve) [__NR_execveat]:
26475 Explicitly take address of first element of array arguments in
26476 call to INLINE_SYSCALL.
26478 2017-09-19 Andreas Schwab <schwab@suse.de>
26481 * sysdeps/unix/sysv/linux/fexecve.c (fexecve) [__NR_execveat]: Try
26483 [!__ASSUME_EXECVEAT]: Fall back to /proc if execveat is
26485 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_EXECVEAT)
26486 [__LINUX_KERNEL_VERSION >= 0x031300]: Define.
26487 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
26488 (__ASSUME_EXECVEAT) [__LINUX_KERNEL_VERSION < 0x040200]: Undef.
26489 * sysdeps/unix/sysv/linux/hppa/kernel-features.h
26490 (__ASSUME_EXECVEAT) [__LINUX_KERNEL_VERSION < 0x040000]: Undef.
26491 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
26492 (__ASSUME_EXECVEAT) [__LINUX_KERNEL_VERSION < 0x040000]: Undef.
26493 * posix/Makefile (tests): Add tst-fexecve.
26494 * posix/tst-fexecve.c: New file.
26496 2017-09-19 Wilco Dijkstra <wdijkstr@arm.com>
26498 * benchtests/Makefile: Add logf benchmark.
26499 * benchtests/logf-inputs: Add reduced trace from wrf_r.
26501 2017-09-19 Wilco Dijkstra <wdijkstr@arm.com>
26503 * benchtests/Makefile: Add expf benchmark.
26504 * benchtests/expf-inputs: Add reduced trace from wrf_r.
26506 2017-09-19 Wilco Dijkstra <wdijkstr@arm.com>
26508 * csu/Makefile: Add -funwind-tables to libc-start.c.
26509 * debug/Makefile: Add -funwind-tables to backtrace.c.
26510 * sysdeps/aarch64/Makefile: Remove CFLAGS-backtrace.c.
26511 * sysdeps/arm/Makefile: Likewise.
26512 * sysdeps/i386/Makefile: Likewise.
26513 * sysdeps/m68k/Makefile: Likewise.
26514 * sysdeps/mips/Makefile: Likewise.
26515 * sysdeps/nios2/Makefile: Likewise.
26516 * sysdeps/sh/Makefile: Likewise.
26517 * sysdeps/sparc/Makefile: Likewise.
26519 2017-09-19 Joseph Myers <joseph@codesourcery.com>
26521 * benchtests/Makefile (bench-math): Add trunc and truncf.
26522 (CFLAGS-bench-trunc.c): New variable.
26523 (CFLAGS-bench-truncf.c): Likewise.
26524 * benchtests/trunc-inputs: New file.
26525 * benchtests/truncf-inputs: Likewise.
26527 2017-09-19 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
26529 * sysdeps/powerpc/powerpc64/power8/memset.S: Avoid misaligned stores.
26531 2017-09-18 Joseph Myers <joseph@codesourcery.com>
26533 * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c [LIBM_SVID_COMPAT &&
26534 !LONG_DOUBLE_COMPAT (libm, GLIBC_2_1)] (weak_alias): Undefine and
26536 [LIBM_SVID_COMPAT && !LONG_DOUBLE_COMPAT (libm, GLIBC_2_1)]
26537 (exp10l): Define as weak alias.
26538 * sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c [LIBM_SVID_COMPAT
26539 && !LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)] (weak_alias): Undefine
26541 [LIBM_SVID_COMPAT && !LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)]
26542 (remainderl): Define as weak alias.
26544 * math/s_fmal.c: Include <libm-alias-ldouble.h>.
26545 (fmal): Define using libm_alias_ldouble.
26546 * math/w_acoshl_compat.c: Include <libm-alias-ldouble.h>.
26547 (acoshl): Define using libm_alias_ldouble.
26548 * math/w_acosl_compat.c: Include <libm-alias-ldouble.h>.
26549 (acosl): Define using libm_alias_ldouble.
26550 * math/w_asinl_compat.c: Include <libm-alias-ldouble.h>.
26551 (asinl): Define using libm_alias_ldouble.
26552 * math/w_atan2l_compat.c: Include <libm-alias-ldouble.h>.
26553 (atan2l): Define using libm_alias_ldouble.
26554 * math/w_atanhl_compat.c: Include <libm-alias-ldouble.h>.
26555 (atanhl): Define using libm_alias_ldouble.
26556 * math/w_coshl_compat.c: Include <libm-alias-ldouble.h>.
26557 (coshl): Define using libm_alias_ldouble.
26558 * math/w_exp10l_compat.c: Include <libm-alias-ldouble.h>.
26559 (exp10l): Define using libm_alias_ldouble.
26560 * math/w_exp2l_compat.c: Include <libm-alias-ldouble.h>.
26561 (exp2l): Define using libm_alias_ldouble.
26562 * math/w_expl_compat.c: Include <libm-alias-ldouble.h>.
26563 (expl): Define using libm_alias_ldouble.
26564 * math/w_fmodl_compat.c: Include <libm-alias-ldouble.h>.
26565 (fmodl): Define using libm_alias_ldouble.
26566 * math/w_hypotl_compat.c: Include <libm-alias-ldouble.h>.
26567 (hypotl): Define using libm_alias_ldouble.
26568 * math/w_j0l_compat.c: Include <libm-alias-ldouble.h>.
26569 (j0l): Define using libm_alias_ldouble.
26571 * math/w_j1l_compat.c: Include <libm-alias-ldouble.h>.
26572 (j1l): Define using libm_alias_ldouble.
26574 * math/w_jnl_compat.c: Include <libm-alias-ldouble.h>.
26575 (jnl): Define using libm_alias_ldouble.
26577 * math/w_log10l_compat.c: Include <libm-alias-ldouble.h>.
26578 (log10l): Define using libm_alias_ldouble.
26579 * math/w_log2l_compat.c: Include <libm-alias-ldouble.h>.
26580 (log2l): Define using libm_alias_ldouble.
26581 * math/w_logl_compat.c: Include <libm-alias-ldouble.h>.
26582 (logl): Define using libm_alias_ldouble.
26583 * math/w_powl_compat.c: Include <libm-alias-ldouble.h>.
26584 (powl): Define using libm_alias_ldouble.
26585 * math/w_remainderl_compat.c: Include <libm-alias-ldouble.h>.
26586 (remainderl): Define using libm_alias_ldouble.
26587 * math/w_sinhl_compat.c: Include <libm-alias-ldouble.h>.
26588 (sinhl): Define using libm_alias_ldouble.
26589 * math/w_sqrtl_compat.c: Include <libm-alias-ldouble.h>.
26590 (sqrtl): Define using libm_alias_ldouble.
26591 * math/w_tgammal_compat.c: Include <libm-alias-ldouble.h>.
26592 (tgammal): Define using libm_alias_ldouble.
26593 * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c [LIBM_SVID_COMPAT]
26594 (exp10l): Do not use long_double_symbol here.
26595 * sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c
26596 [LIBM_SVID_COMPAT] (remainderl): Likewise.
26597 * sysdeps/ieee754/ldbl-opt/s_fmal.c: Remove.
26598 * sysdeps/ieee754/ldbl-opt/w_acoshl_compat.c: Likewise.
26599 * sysdeps/ieee754/ldbl-opt/w_acosl_compat.c: Likewise.
26600 * sysdeps/ieee754/ldbl-opt/w_asinl_compat.c: Likewise.
26601 * sysdeps/ieee754/ldbl-opt/w_atan2l_compat.c: Likewise.
26602 * sysdeps/ieee754/ldbl-opt/w_atanhl_compat.c: Likewise.
26603 * sysdeps/ieee754/ldbl-opt/w_coshl_compat.c: Likewise.
26604 * sysdeps/ieee754/ldbl-opt/w_expl_compat.c: Likewise.
26605 * sysdeps/ieee754/ldbl-opt/w_fmodl_compat.c: Likewise.
26606 * sysdeps/ieee754/ldbl-opt/w_hypotl_compat.c: Likewise.
26607 * sysdeps/ieee754/ldbl-opt/w_j0l_compat.c: Likewise.
26608 * sysdeps/ieee754/ldbl-opt/w_j1l_compat.c: Likewise.
26609 * sysdeps/ieee754/ldbl-opt/w_jnl_compat.c: Likewise.
26610 * sysdeps/ieee754/ldbl-opt/w_log10l_compat.c: Likewise.
26611 * sysdeps/ieee754/ldbl-opt/w_log2l_compat.c: Likewise.
26612 * sysdeps/ieee754/ldbl-opt/w_logl_compat.c: Likewise.
26613 * sysdeps/ieee754/ldbl-opt/w_powl_compat.c: Likewise.
26614 * sysdeps/ieee754/ldbl-opt/w_sinhl_compat.c: Likewise.
26615 * sysdeps/ieee754/ldbl-opt/w_sqrtl_compat.c: Likewise.
26616 * sysdeps/ieee754/ldbl-opt/w_tgammal_compat.c: Likewise.
26618 2017-09-18 Wang Boshi <wangboshi@huawei.com> (tiny change)
26620 * sysdeps/aarch64/start.S: Use MOVL instead of literal pools.
26621 * sysdeps/aarch64/sysdep.h (MOVL): Add MOVL macro.
26623 2017-09-17 Samuel Thibault <samuel.thibault@ens-lyon.org>
26625 * io/read.c (read): Add libc_hidden_weak.
26626 * sysdeps/mach/hurd/read.c (read): Likewise.
26627 * io/write.c (write): Likewise.
26628 * sysdeps/mach/hurd/write.c (write): Likewise.
26629 * io/pread64.c (__pread64): Likewise.
26630 * sysdeps/mach/hurd/pread64.c (__pread64): Likewise.
26631 * posix/pread64.c (__pread64): Add libc_hidden_def.
26633 2017-09-16 Siddhesh Poyarekar <siddhesh@sourceware.org>
26635 * benchtests/scripts/compare_strings.py: New option -g.
26636 (draw_graph): Print a message that a graph is being generated.
26637 (process_results): Generate graph only if -g is passed.
26638 (main): Process option -g.
26640 * benchtests/scripts/compare_strings.py (process_results):
26641 Better spacing for output.
26643 * benchtests/scripts/compare_strings.py: Use argparse.
26644 * benchtests/README: Document existence of compare_strings.py.
26646 2017-09-15 Joseph Myers <joseph@codesourcery.com>
26648 * math/s_fma.c: Include <libm-alias-double.h>.
26649 (fma): Define using libm_alias_double.
26650 * math/s_nextafter.c: Include <libm-alias-double.h>.
26651 (nextafter): Define using libm_alias_double.
26652 * math/w_acos_compat.c: Include <libm-alias-double.h>.
26653 (acos): Define using libm_alias_double.
26654 * math/w_acosh_compat.c: Include <libm-alias-double.h>.
26655 (aocsh): Define using libm_alias_double.
26656 * math/w_asin_compat.c: Include <libm-alias-double.h>.
26657 (asin): Define using libm_alias_double.
26658 * math/w_atan2_compat.c: Include <libm-alias-double.h>.
26659 (atan2): Define using libm_alias_double.
26660 * math/w_atanh_compat.c: Include <libm-alias-double.h>.
26661 (atanh): Define using libm_alias_double.
26662 * math/w_cosh_compat.c: Include <libm-alias-double.h>.
26663 (cosh): Define using libm_alias_double.
26664 * math/w_exp10_compat.c: Include <libm-alias-double.h>.
26665 (exp10): Define using libm_alias_double.
26666 * math/w_exp2_compat.c: Include <libm-alias-double.h>.
26667 (exp2): Define using libm_alias_double.
26668 * math/w_exp_compat.c: Include <libm-alias-double.h>.
26669 (exp): Define using libm_alias_double.
26670 * math/w_fmod_compat.c: Include <libm-alias-double.h>.
26671 (fmod): Define using libm_alias_double.
26672 * math/w_hypot_compat.c: Include <libm-alias-double.h>.
26673 (hypot): Define using libm_alias_double.
26674 * math/w_j0_compat.c: Include <libm-alias-double.h>.
26675 (j0): Define using libm_alias_double.
26677 * math/w_j1_compat.c: Include <libm-alias-double.h>.
26678 (j1): Define using libm_alias_double.
26680 * math/w_jn_compat.c: Include <libm-alias-double.h>.
26681 (jn): Define using libm_alias_double.
26683 * math/w_log10_compat.c: Include <libm-alias-double.h>.
26684 (log10): Define using libm_alias_double.
26685 * math/w_log2_compat.c: Include <libm-alias-double.h>.
26686 (log2): Define using libm_alias_double.
26687 * math/w_log_compat.c: Include <libm-alias-double.h>.
26688 (log): Define using libm_alias_double.
26689 * math/w_pow_compat.c: Include <libm-alias-double.h>.
26690 (pow): Define using libm_alias_double.
26691 * math/w_remainder_compat.c: Include <libm-alias-double.h>.
26692 (remainder): Define using libm_alias_double.
26693 * math/w_sinh_compat.c: Include <libm-alias-double.h>.
26694 (sinh): Define using libm_alias_double.
26695 * math/w_sqrt_compat.c: Include <libm-alias-double.h>.
26696 (sqrt): Define using libm_alias_double.
26697 * math/w_tgamma_compat.c: Include <libm-alias-double.h>.
26698 (tgamma): Define using libm_alias_double.
26699 * sysdeps/ieee754/ldbl-opt/s_nextafter.c [LONG_DOUBLE_COMPAT(libm,
26700 GLIBC_2_0)] (nextafterl): Do not define compat symbol here.
26701 * sysdeps/ieee754/ldbl-opt/w_exp10_compat.c
26702 [LONG_DOUBLE_COMPAT(libm, GLIBC_2_1)] (exp10l): Likewise.
26703 * sysdeps/ieee754/ldbl-opt/w_remainder_compat.c
26704 [LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)] (remainderl): Likewise.
26705 * sysdeps/ieee754/ldbl-opt/w_acos_compat.c: Remove.
26706 * sysdeps/ieee754/ldbl-opt/w_acosh_compat.c: Likewise.
26707 * sysdeps/ieee754/ldbl-opt/w_asin_compat.c: Likewise.
26708 * sysdeps/ieee754/ldbl-opt/w_atan2_compat.c: Likewise.
26709 * sysdeps/ieee754/ldbl-opt/w_atanh_compat.c: Likewise.
26710 * sysdeps/ieee754/ldbl-opt/w_cosh_compat.c: Likewise.
26711 * sysdeps/ieee754/ldbl-opt/w_exp_compat.c: Likewise.
26712 * sysdeps/ieee754/ldbl-opt/w_fmod_compat.c: Likewise.
26713 * sysdeps/ieee754/ldbl-opt/w_hypot_compat.c: Likewise.
26714 * sysdeps/ieee754/ldbl-opt/w_j0_compat.c: Likewise.
26715 * sysdeps/ieee754/ldbl-opt/w_j1_compat.c: Likewise.
26716 * sysdeps/ieee754/ldbl-opt/w_jn_compat.c: Likewise.
26717 * sysdeps/ieee754/ldbl-opt/w_log10_compat.c: Likewise.
26718 * sysdeps/ieee754/ldbl-opt/w_log2_compat.c: Likewise.
26719 * sysdeps/ieee754/ldbl-opt/w_log_compat.c: Likewise.
26720 * sysdeps/ieee754/ldbl-opt/w_pow_compat.c: Likewise.
26721 * sysdeps/ieee754/ldbl-opt/w_sinh_compat.c: Likewise.
26722 * sysdeps/ieee754/ldbl-opt/w_sqrt_compat.c: Likewise.
26723 * sysdeps/ieee754/ldbl-opt/w_tgamma_compat.c: Likewise.
26725 * math/e_acoshl.c: Remove.
26726 * math/e_acosl.c: Likewise.
26727 * math/e_asinl.c: Likewise.
26728 * math/e_atan2l.c: Likewise.
26729 * math/e_atanhl.c: Likewise.
26730 * math/e_coshl.c: Likewise.
26731 * math/e_expl.c: Likewise.
26732 * math/e_fmodl.c: Likewise.
26733 * math/e_gammal_r.c: Likewise.
26734 * math/e_hypotl.c: Likewise.
26735 * math/e_j0l.c: Likewise.
26736 * math/e_j1l.c: Likewise.
26737 * math/e_jnl.c: Likewise.
26738 * math/e_lgammal_r.c: Likewise.
26739 * math/e_log10l.c: Likewise.
26740 * math/e_log2l.c: Likewise.
26741 * math/e_logl.c: Likewise.
26742 * math/e_powl.c: Likewise.
26743 * math/e_rem_pio2l.c: Likewise.
26744 * math/e_sinhl.c: Likewise.
26745 * math/e_sqrtf128.c: Likewise.
26746 * math/e_sqrtl.c: Likewise.
26747 * math/k_cosl.c: Likewise.
26748 * math/k_sinl.c: Likewise.
26749 * math/k_tanl.c: Likewise.
26750 * math/s_asinhl.c: Likewise.
26751 * math/s_atanl.c: Likewise.
26752 * math/s_cbrtl.c: Likewise.
26753 * math/s_erfl.c: Likewise.
26754 * math/s_expm1l.c: Likewise.
26755 * math/s_log1pl.c: Likewise.
26756 * math/s_tanhl.c: Likewise.
26758 2017-09-15 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
26761 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile:
26762 [$(subdir) = math] (sysdep_calls): New variable. Has the
26763 previous contents of sysdep_routines, but re-sorted..
26764 [$(subdir) = math] (sysdep_routines): Re-use the contents from
26766 [$(subdir) = math] (libm-sysdep_routines): Remove the functions
26767 defined in sysdep_calls and replace by the respective m_* names.
26768 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S:
26769 (compat_symbol): Undefine to avoid duplicated compat symbols in
26772 2017-09-15 Joseph Myers <joseph@codesourcery.com>
26774 * math/s_fmaf.c: Include <libm-alias-float.h>.
26775 (fmaf): Define using libm_alias_float.
26776 * math/w_acosf_compat.c: Include <libm-alias-float.h>.
26777 (acosf): Define using libm_alias_float.
26778 * math/w_acoshf_compat.c: Include <libm-alias-float.h>.
26779 (acoshf): Define using libm_alias_float.
26780 * math/w_asinf_compat.c: Include <libm-alias-float.h>.
26781 (asinf): Define using libm_alias_float.
26782 * math/w_atan2f_compat.c: Include <libm-alias-float.h>.
26783 (atan2f): Define using libm_alias_float.
26784 * math/w_atanhf_compat.c: Include <libm-alias-float.h>.
26785 (atanhf): Define using libm_alias_float.
26786 * math/w_coshf_compat.c: Include <libm-alias-float.h>.
26787 (coshf): Define using libm_alias_float.
26788 * math/w_exp10f_compat.c: Include <libm-alias-float.h>.
26789 (exp10f): Define using libm_alias_float.
26790 * math/w_fmodf_compat.c: Include <libm-alias-float.h>.
26791 (fmodf): Define using libm_alias_float.
26792 * math/w_hypotf_compat.c: Include <libm-alias-float.h>.
26793 (hypotf): Define using libm_alias_float.
26794 * math/w_j0f_compat.c: Include <libm-alias-float.h>.
26795 (j0f): Define using libm_alias_float.
26797 * math/w_j1f_compat.c: Include <libm-alias-float.h>.
26798 (j1f): Define using libm_alias_float.
26800 * math/w_jnf_compat.c: Include <libm-alias-float.h>.
26801 (jnf): Define using libm_alias_float.
26803 * math/w_log10f_compat.c: Include <libm-alias-float.h>.
26804 (log10f): Define using libm_alias_float.
26805 * math/w_log2f_compat.c: Include <libm-alias-float.h>.
26806 (log2f): Define using libm_alias_float.
26807 * math/w_logf_compat.c: Include <libm-alias-float.h>.
26808 (logf): Define using libm_alias_float.
26809 * math/w_powf_compat.c: Include <libm-alias-float.h>.
26810 (powf): Define using libm_alias_float.
26811 * math/w_remainderf_compat.c: Include <libm-alias-float.h>.
26812 (remainderf): Define using libm_alias_float.
26813 * math/w_sinhf_compat.c: Include <libm-alias-float.h>.
26814 (sinhf): Define using libm_alias_float.
26815 * math/w_sqrtf_compat.c: Include <libm-alias-float.h>.
26816 (sqrtf): Define using libm_alias_float.
26817 * math/w_tgammaf_compat.c: Include <libm-alias-float.h>.
26818 (tgammaf): Define using libm_alias_float.
26820 2017-09-14 Joseph Myers <joseph@codesourcery.com>
26822 * include/math.h (roundeven): Change hidden_proto call to
26824 * math/w_j0_compat.c (j0): Rename to __j0 and define as weak
26826 [NO_LONG_DOUBLE] (__j0l): New strong alias.
26827 (y0): Rename to __y0 and define as weak alias.
26828 [NO_LONG_DOUBLE] (__y0l): New strong alias.
26829 * math/w_j0f_compat.c (j0f): Rename to __j0f and define as weak
26831 (y0f): Rename to __y0f and define as weak alias.
26832 * math/w_j1_compat.c (j1): Rename to __j1 and define as weak
26834 [NO_LONG_DOUBLE] (__j1l): New strong alias.
26835 (y1): Rename to __y1 and define as weak alias.
26836 [NO_LONG_DOUBLE] (__y1l): New strong alias.
26837 * math/w_j1f_compat.c (j1f): Rename to __j1f and define as weak
26839 (y1f): Rename to __y1f and define as weak alias.
26840 * math/w_jn_compat.c (jn): Rename to __jn and define as weak
26842 [NO_LONG_DOUBLE] (__jnl): New strong alias.
26843 (yn): Rename to __yn and define as weak alias.
26844 [NO_LONG_DOUBLE] (__ynl): New strong alias.
26845 * math/w_jnf_compat.c (jnf): Rename to __jnf and define as weak
26847 (ynf): Rename to __ynf and define as weak alias.
26848 * sysdeps/ieee754/dbl-64/s_fromfp.c (FUNC): Define to __fromfp.
26849 (fromfp): Define as weak alias.
26850 [NO_LONG_DOUBLE] (__fromfpl): New strong alias.
26851 * sysdeps/ieee754/dbl-64/s_fromfpx.c (FUNC): Define to __fromfpx.
26852 (fromfpx): Define as weak alias.
26853 [NO_LONG_DOUBLE] (__fromfpxl): New strong alias.
26854 * sysdeps/ieee754/dbl-64/s_getpayload.c (getpayload): Rename to
26855 __getpayload and define as weak alias.
26856 [NO_LONG_DOUBLE] (__getpayloadl): New strong alias.
26857 * sysdeps/ieee754/dbl-64/s_roundeven.c (roundeven): Rename to
26858 __roundeven and define as weak alias.
26859 [NO_LONG_DOUBLE] (__roundevenl): New strong alias.
26860 * sysdeps/ieee754/dbl-64/s_setpayload.c (FUNC): Define to
26862 (setpayload): Define as weak alias.
26863 [NO_LONG_DOUBLE] (__setpayloadl): New strong alias.
26864 * sysdeps/ieee754/dbl-64/s_setpayloadsig.c (FUNC): Define to
26866 (setpayloadsig): Define as weak alias.
26867 [NO_LONG_DOUBLE] (__setpayloadsigl): New strong alias.
26868 * sysdeps/ieee754/dbl-64/s_totalorder.c (totalorder): Rename to
26869 __totalorder and define as weak alias.
26870 [NO_LONG_DOUBLE] (__totalorderl): New strong alias.
26871 * sysdeps/ieee754/dbl-64/s_totalordermag.c (totalordermag): Rename
26872 to __totalordermag and define as weak alias.
26873 [NO_LONG_DOUBLE] (__totalordermagl): New strong alias.
26874 * sysdeps/ieee754/dbl-64/s_ufromfp.c (FUNC): Define to __ufromfp.
26875 (ufromfp): Define as weak alias.
26876 [NO_LONG_DOUBLE] (__ufromfpl): New strong alias.
26877 * sysdeps/ieee754/dbl-64/s_ufromfpx.c (FUNC): Define to
26879 (ufromfpx): Define as weak alias.
26880 [NO_LONG_DOUBLE] (__ufromfpxl): New strong alias.
26881 * sysdeps/ieee754/dbl-64/wordsize-64/s_getpayload.c (getpayload):
26882 Rename to __getpayload and define as weak alias.
26883 [NO_LONG_DOUBLE] (__getpayloadl): New strong alias.
26884 * sysdeps/ieee754/dbl-64/wordsize-64/s_roundeven.c (roundeven):
26885 Rename to __roundeven and define as weak alias.
26886 [NO_LONG_DOUBLE] (__roundevenl): New strong alias.
26887 * sysdeps/ieee754/dbl-64/wordsize-64/s_totalorder.c (totalorder):
26888 Rename to __totalorder and define as weak alias.
26889 [NO_LONG_DOUBLE] (__totalorderl): New strong alias.
26890 * sysdeps/ieee754/dbl-64/wordsize-64/s_totalordermag.c
26891 (totalordermag): Rename to __totalordermag and define as weak
26893 [NO_LONG_DOUBLE] (__totalordermagl): New strong alias.
26894 * sysdeps/ieee754/float128/float128_private.h (__getpayloadl): New
26896 (__roundevenl): Likewise.
26897 (__totalorderl): Likewise.
26898 (__totalordermagl): Likewise
26899 * sysdeps/ieee754/float128/s_fromfpf128.c (FUNC): Define to
26901 (fromfpf128): Define as weak alias.
26902 * sysdeps/ieee754/float128/s_fromfpxf128.c (FUNC): Define to
26904 (fromfpxf128): Define as weak alias.
26905 * sysdeps/ieee754/float128/s_setpayloadf128.c (FUNC): Define to
26907 (setpayloadf128): Define as weak alias.
26908 * sysdeps/ieee754/float128/s_setpayloadsigf128.c (FUNC): Define to
26909 __setpayloadsigf128.
26910 (setpayloadsigf128): Define as weak alias.
26911 * sysdeps/ieee754/float128/s_ufromfpf128.c (FUNC): Define to
26913 (ufromfpf128): Define as weak alias.
26914 * sysdeps/ieee754/float128/s_ufromfpxf128.c (FUNC): Define to
26916 (ufromfpxf128): Define as weak alias.
26917 * sysdeps/ieee754/flt-32/s_fromfpf.c (FUNC): Define to __fromfpf.
26918 (fromfpf): Define as weak alias.
26919 * sysdeps/ieee754/flt-32/s_fromfpxf.c (FUNC): Define to
26921 (fromfpxf): Define as weak alias.
26922 * sysdeps/ieee754/flt-32/s_getpayloadf.c (getpayloadf): Rename to
26923 __getpayloadf and define as weak alias.
26924 * sysdeps/ieee754/flt-32/s_roundevenf.c (roundevenf): Rename to
26925 __roundevenf and define as weak alias.
26926 * sysdeps/ieee754/flt-32/s_setpayloadf.c (FUNC): Define to
26928 (setpayloadf): Define as weak alias.
26929 * sysdeps/ieee754/flt-32/s_setpayloadsigf.c (FUNC): Define to
26931 (setpayloadsigf): Define as weak alias.
26932 * sysdeps/ieee754/flt-32/s_totalorderf.c (totalorderf): Rename to
26933 __totalorderf and define as weak alias.
26934 * sysdeps/ieee754/flt-32/s_totalordermagf.c (totalordermagf):
26935 Rename to __totalordermagf and define as weak alias.
26936 * sysdeps/ieee754/flt-32/s_ufromfpf.c (FUNC): Define to
26938 (ufromfpf): Define as weak alias.
26939 * sysdeps/ieee754/flt-32/s_ufromfpxf.c (FUNC): Define to
26941 (ufromfpxf): Define as weak alias.
26942 * sysdeps/ieee754/ldbl-128/s_fromfpl.c (FUNC): Define to
26944 (fromfpl): Define as weak alias.
26945 * sysdeps/ieee754/ldbl-128/s_fromfpxl.c (FUNC): Define to
26947 (fromfpxl): Define as weak alias.
26948 * sysdeps/ieee754/ldbl-128/s_getpayloadl.c (getpayloadl): Rename
26949 to __getpayloadl and define as weak alias.
26950 * sysdeps/ieee754/ldbl-128/s_roundevenl.c (roundevenl): Rename to
26951 __roundevenl and define as weak alias.
26952 * sysdeps/ieee754/ldbl-128/s_setpayloadl.c (FUNC): Define to
26954 (setpayloadl): Define as weak alias.
26955 * sysdeps/ieee754/ldbl-128/s_setpayloadsigl.c (FUNC): Define to
26957 (setpayloadsigl): Define as weak alias.
26958 * sysdeps/ieee754/ldbl-128/s_totalorderl.c (totalorderl): Rename
26959 to __totalorderl and define as weak alias.
26960 * sysdeps/ieee754/ldbl-128/s_totalordermagl.c (totalordermagl):
26961 Rename to __totalordermagl and define as weak alias.
26962 * sysdeps/ieee754/ldbl-128/s_ufromfpl.c (FUNC): Define to
26964 (ufromfpl): Define as weak alias.
26965 * sysdeps/ieee754/ldbl-128/s_ufromfpxl.c (FUNC): Define to
26967 (ufromfpxl): Define as weak alias.
26968 * sysdeps/ieee754/ldbl-128ibm/s_fromfpl.c (FUNC): Define to
26970 (fromfpl): Define as weak alias.
26971 * sysdeps/ieee754/ldbl-128ibm/s_fromfpxl.c (FUNC): Define to
26973 (fromfpxl): Define as weak alias.
26974 * sysdeps/ieee754/ldbl-128ibm/s_getpayloadl.c (getpayloadl):
26975 Rename to __getpayloadl and define as weak alias.
26976 * sysdeps/ieee754/ldbl-128ibm/s_roundevenl.c (roundevenl): Rename
26977 to __roundevenl and define as weak alias. Call __roundeven
26978 instead of roundeven.
26979 * sysdeps/ieee754/ldbl-128ibm/s_setpayloadl.c (FUNC): Define to
26981 (setpayloadl): Define as weak alias.
26982 * sysdeps/ieee754/ldbl-128ibm/s_setpayloadsigl.c (FUNC): Define to
26984 (setpayloadsigl): Define as weak alias.
26985 * sysdeps/ieee754/ldbl-128ibm/s_totalorderl.c (totalorderl):
26986 Rename to __totalorderl and define as weak alias.
26987 * sysdeps/ieee754/ldbl-128ibm/s_totalordermagl.c (totalordermagl):
26988 Rename to __totalordermagl and define as weak alias.
26989 * sysdeps/ieee754/ldbl-128ibm/s_ufromfpl.c (FUNC): Define to
26991 (ufromfpl): Define as weak alias.
26992 * sysdeps/ieee754/ldbl-128ibm/s_ufromfpxl.c (FUNC): Define to
26994 (ufromfpxl): Define as weak alias.
26995 * sysdeps/ieee754/ldbl-96/s_fromfpl.c (FUNC): Define to
26997 (fromfpl): Define as weak alias.
26998 * sysdeps/ieee754/ldbl-96/s_fromfpxl.c (FUNC): Define to
27000 (fromfpxl): Define as weak alias.
27001 * sysdeps/ieee754/ldbl-96/s_getpayloadl.c (getpayloadl): Rename to
27002 __getpayloadl and define as weak alias.
27003 * sysdeps/ieee754/ldbl-96/s_roundevenl.c (roundevenl): Rename to
27004 __roundevenl and define as weak alias.
27005 * sysdeps/ieee754/ldbl-96/s_setpayloadl.c (FUNC): Define to
27007 (setpayloadl): Define as weak alias.
27008 * sysdeps/ieee754/ldbl-96/s_setpayloadsigl.c (FUNC): Define to
27010 (setpayloadsigl): Define as weak alias.
27011 * sysdeps/ieee754/ldbl-96/s_totalorderl.c (totalorderl): Rename to
27012 __totalorderl and define as weak alias.
27013 * sysdeps/ieee754/ldbl-96/s_totalordermagl.c (totalordermagl):
27014 Rename to __totalordermagl and define as weak alias.
27015 * sysdeps/ieee754/ldbl-96/s_ufromfpl.c (FUNC): Define to
27017 (ufromfpl): Define as weak alias.
27018 * sysdeps/ieee754/ldbl-96/s_ufromfpxl.c (FUNC): Define to
27020 (ufromfpxl): Define as weak alias.
27022 2017-09-14 Siddhesh Poyarekar <siddhesh@sourceware.org>
27024 * benchtests/bench-string.h (realloc_bufs): New function.
27025 (test_init): Call it.
27026 * benchtests/bench-memset-large.c (do_test): Likewise.
27027 * benchtests/bench-memset.c (do_test): Likewise.
27029 * benchtests/bench-memset-large.c: Print output in JSON
27031 * benchtests/bench-memset.c: Likewise.
27033 2017-09-14 Mike FABIAN <mfabian@redhat.com>
27036 * benchtests/strcoll-inputs/filelist#en_US.UTF-8: Add IBM858 and ibm858.c.
27037 * iconvdata/Makefile: Add IBM858.
27038 * iconvdata/gconv-modules: Likewise.
27039 * iconvdata/tst-tables.sh: Likewise.
27040 * iconvdata/ibm858.c: New file.
27041 * localedata/charmaps/IBM858: Likewise.
27043 2017-09-14 Akhilesh Kumar <akhilesh.k@samsung.com>
27046 * locales/niu_NZ (LC_TIME): copy "niu_NU".
27047 * locales/niu_NZ (LC_MESSAGES): copy "niu_NU".
27049 2017-09-14 Mike FABIAN <mfabian@redhat.com>
27052 * localedata/locales/az_AZ(LC_TELEPHONE): Fix int_select
27053 and add tel_int_fmt.
27055 2017-09-14 Joseph Myers <joseph@codesourcery.com>
27057 * sysdeps/generic/libm-alias-float128.h: New file.
27058 * sysdeps/generic/math-type-macros-float128.h: Include
27059 <libm-alias-float128.h>.
27060 [!declare_mgen_alias] (declare_mgen_alias): Define macro.
27062 2017-09-13 Joseph Myers <joseph@codesourcery.com>
27064 * sysdeps/generic/libm-alias-ldouble.h: New file.
27065 * sysdeps/ieee754/ldbl-opt/libm-alias-ldouble.h: Likewise.
27066 * sysdeps/ieee754/ldbl-opt/math-type-macros-ldouble.h: Remove.
27067 * sysdeps/generic/math-type-macros-ldouble.h: Include
27068 <libm-alias-ldouble.h>.
27069 [!declare_mgen_alias] (declare_mgen_alias): Define to use
27070 libm_alias_ldouble.
27072 2017-09-13 Szabolcs Nagy <szabolcs.nagy@arm.com>
27074 * sysdeps/ieee754/dbl-64/w_exp_compat.c: Move to...
27075 * math/w_exp_compat.c: ... here.
27076 * sysdeps/ieee754/flt-32/w_expf_compat.c: Move to...
27077 * math/w_expf_compat.c: ... here.
27078 * sysdeps/ieee754/ldbl-128/w_expl_compat.c: Move to...
27079 * math/w_expl_compat.c: ... here.
27080 * sysdeps/ieee754/ldbl-128ibm/w_expl_compat.c: Remove.
27081 * sysdeps/ieee754/ldbl-96/w_expl_compat.c: Remove.
27082 * sysdeps/ieee754/ldbl-opt/w_exp_compat.c: Use the new path.
27083 * sysdeps/ieee754/ldbl-opt/w_expl_compat.c: Likewise.
27085 2017-09-13 Joseph Myers <joseph@codesourcery.com>
27087 * math/w_scalbln_template.c (strong_alias): Do not undefine and
27089 * sysdeps/ieee754/ldbl-opt/s_ldexp.c (declare_mgen_alias): Remove
27091 (ldexpl): Only define as compat symbol for libc, not libm.
27092 (scalbnl): Define as compat symbol for libc here.
27093 * sysdeps/ieee754/ldbl-opt/s_ldexpl.c (declare_mgen_alias): Only
27094 define for [IS_IN (libc)].
27095 (__ldexpl_2): Remove alias.
27096 (ldexpl): Only define with long_double_symbol if [IS_IN (libc)].
27097 (scalbnl): Likewise. Use __wrap_scalbnl not __ldexpl_2 as base
27098 name in long_double_symbol call.
27099 * sysdeps/ieee754/ldbl-opt/s_log1p.c: Remove file.
27100 * sysdeps/ieee754/ldbl-opt/s_scalbln.c: Likewise.
27101 * sysdeps/ieee754/ldbl-opt/s_scalbn.c: Likewise.
27102 * sysdeps/ieee754/ldbl-opt/w_log1p.c: Likewise.
27103 * sysdeps/ieee754/ldbl-opt/w_scalbln.c (declare_mgen_alias):
27105 [IS_IN (libc) && LONG_DOUBLE_COMPAT (libc, GLIBC_2_1)] (scalblnl):
27106 Define as compat symbol.
27108 2017-09-13 Adhemerval Zanella <adhemerval.zanella@linaro.org>
27110 * sysdeps/unix/sysv/linux/s390/s390-32/oldglob.c: New file.
27111 * sysdeps/unix/sysv/linux/alpha/Makefile
27112 [$(subdir) = csu] (sysdep_routines): Remove rule.
27114 2017-09-13 Joseph Myers <joseph@codesourcery.com>
27116 * sysdeps/generic/libm-alias-double.h: New file.
27117 * sysdeps/ieee754/ldbl-opt/libm-alias-double.h: Likewise.
27118 * sysdeps/generic/math-type-macros-double.h: Include
27119 <libm-alias-double.h>.
27120 [declare_mgen_alias] (declare_mgen_alias): Define to use
27122 * sysdeps/generic/math-type-macros.h [!M_LIBM_NEED_COMPAT]
27123 (M_LIBM_NEED_COMPAT): Remove macro.
27124 [!M_LIBM_NEED_COMPAT] (declare_mgen_libm_compat): Likewise.
27125 * sysdeps/ieee754/ldbl-opt/math-type-macros-double.h: Remove.
27126 * math/cabs_template.c [M_LIBM_NEED_COMPAT]: Remove conditional
27128 * math/carg_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27129 * math/cimag_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27130 * math/conj_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27131 * math/creal_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27132 * math/s_cacos_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27133 * math/s_cacosh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27134 * math/s_casin_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27135 * math/s_casinh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27136 * math/s_catan_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27137 * math/s_catanh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27138 * math/s_ccos_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27139 * math/s_ccosh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27140 * math/s_cexp_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27141 * math/s_clog10_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27142 * math/s_clog_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27143 * math/s_cpow_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27144 * math/s_cproj_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27145 * math/s_csin_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27146 * math/s_csinh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27147 * math/s_csqrt_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27148 * math/s_ctan_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27149 * math/s_ctanh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27150 * math/s_fdim_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27151 * math/s_fmax_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27152 * math/s_fmin_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27153 * math/s_nan_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27154 * math/w_ilogb_template.c [M_LIBM_NEED_COMPAT]: Likewise.
27155 * sysdeps/ieee754/ldbl-opt/s_clog10.c: New file.
27156 * sysdeps/ieee754/ldbl-opt/s_ldexp.c (M_LIBM_NEED_COMPAT): Remove
27158 (declare_mgen_alias): New macro.
27159 * sysdeps/ieee754/ldbl-opt/w_log1p.c: New file.
27160 * sysdeps/ieee754/ldbl-opt/w_scalbln.c: Likewise.
27161 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-vis3.c
27162 (M_LIBM_NEED_COMPAT): Remove macro.
27163 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.c
27164 [HAVE_AS_VIS3_SUPPORT]: Include <math_ldbl_opt.h> and
27165 <first-versions.h>.
27166 [HAVE_AS_VIS3_SUPPORT && LONG_DOUBLE_COMPAT (libm,
27167 FIRST_VERSION_libm_fdiml)]: Define fdiml as compat symbol.
27169 2017-09-12 Joseph Myers <joseph@codesourcery.com>
27171 * sysdeps/generic/math-type-macros.h [!declare_mgen_alias_2]
27172 (declare_mgen_alias_2): Remove.
27173 * sysdeps/generic/math-type-macros-double.h
27174 [NO_LONG_DOUBLE && !declare_mgen_alias_2] (declare_mgen_alias_2):
27176 * math/s_ldexp_template.c (M_SUF (__wrap_scalbn)): Define strong
27178 (ldexp): Define with declare_mgen_alias.
27179 (scalbn): Likewise.
27181 2017-09-12 Steve Ellcey <sellcey@cavium.com>
27183 * grp/initgroups.c: Include config.h.
27184 (DEFAULT_CONFIG): New macro.
27185 (internal_getgrouplist): Use DEFAULT_CONFIG.
27186 * nscd/initgrcache.c (addinitgroupsX): Likewise.
27187 * nss/nsswitch.c (__nss_disable_nscd): Likewise.
27188 (DEFAULT_DEFCONFIG): New macro.
27189 (__nss_database_lookup): Use DEFAULT_DEFCONFIG.
27190 * nss/grp-lookup.c: Include config.h
27191 (DEFAULT_CONFIG): Set definition based on LINK_OBSOLETE_NSL.
27192 * nss/pwd-lookup.c (DEFAULT_CONFIG): Likewise.
27193 * nss/spwd-lookup.c (DEFAULT_CONFIG): Likewise.
27194 * manual/nss.texi: Update default values section.
27196 2017-09-12 H.J. Lu <hongjiu.lu@intel.com>
27199 * sysdeps/x86/cpu-features.h (bit_arch_MathVec_Prefer_No_AVX512):
27201 (index_arch_MathVec_Prefer_No_AVX512): Likewise.
27202 * sysdeps/x86/cpu-tunables.c (TUNABLE_CALLBACK (set_hwcaps)):
27203 Handle MathVec_Prefer_No_AVX512.
27204 * sysdeps/x86_64/fpu/multiarch/ifunc-mathvec-avx512.h
27205 (IFUNC_SELECTOR): Return AVX2 version if MathVec_Prefer_No_AVX512
27208 2017-09-12 Samuel Thibault <samuel.thibault@ens-lyon.org>
27210 * posix/sched_primax.c (__sched_get_priority_max): Add
27212 * posix/sched_primin.c (__sched_get_priority_min): Likewise.
27213 * sysdeps/mach/hurd/mmap.c (__mmap): Likewise.
27214 * sysdeps/mach/hurd/mmap64.c (__mmap64): Likewise.
27215 * sysdeps/mach/hurd/mprotect.c (__mprotect): Likewise.
27216 * sysdeps/mach/hurd/munmap.c (__munmap): Likewise.
27217 * sysdeps/mach/hurd/dl-sysdep.c (__GI___getpid,
27218 __GI___strtoul_internal, __GI_____strtoul_internal, __GI___chk_fail,
27219 __GI___fortify_fail, __GI___assert_fail, __GI___assert_perror_fail):
27222 2017-09-11 Joseph Myers <joseph@codesourcery.com>
27224 * sysdeps/generic/libm-alias-float.h: New file.
27225 * sysdeps/generic/math-type-macros-float.h: Include
27226 <libm-alias-float.h>.
27227 [!declare_mgen_alias] (declare_mgen_alias): Define macro.
27229 2017-09-11 H.J. Lu <hongjiu.lu@intel.com>
27232 * sysdeps/x86/cpu-features.c (init_cpu_features): Initialize
27233 GLRO(dl_hwcap) to HWCAP_X86_64 for x86-64.
27234 * sysdeps/x86/dl-hwcap.h (HWCAP_COUNT): Updated.
27235 (HWCAP_IMPORTANT): Likewise.
27236 (HWCAP_X86_64): New enum.
27237 (HWCAP_X86_AVX512_1): Updated.
27238 * sysdeps/x86/dl-procinfo.c (_dl_x86_hwcap_flags): Add "x86_64".
27239 * sysdeps/x86_64/Makefile (tests): Add tst-x86_64-1.
27240 (modules-names): Add x86_64/tst-x86_64mod-1.
27241 (LDFLAGS-tst-x86_64mod-1.so): New.
27242 ($(objpfx)tst-x86_64-1): Likewise.
27243 ($(objpfx)x86_64/tst-x86_64mod-1.os): Likewise.
27244 (tst-x86_64-1-clean): Likewise.
27245 * sysdeps/x86_64/tst-x86_64-1.c: New file.
27246 * sysdeps/x86_64/tst-x86_64mod-1.c: Likewise.
27248 2017-09-11 Siddhesh Poyarekar <siddhesh@sourceware.org>
27250 * po/sv.po: Update translations.
27251 * po/fr.po: Likewise.
27253 2017-09-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
27255 * sunrpc/tst-udp-timeout.c (test_udp_server): Increase timeout to 2.5
27257 * sunrpc/tst-udp-nonblocking.c (do_test): Increase timeout to 0.75
27259 * elf/rtld-Rules: Fix $(error) use.
27261 2017-09-09 Mike FABIAN <mfabian@redhat.com>
27264 * libio/tst-widetext.input: Change “Bengali” to “Bangla”.
27265 * locale/iso-639.def: Change “Bengali” to “Bangla”.
27266 * localedata/locales/bn_BD: “Bengali” was still used in some
27267 comments. Change it to “Bangla”.
27269 2017-09-08 Markus Trippelsdorf <markus@trippelsdorf.de>
27271 * sysdeps/x86_64/fpu/libm-test-ulps: Update for AMD Ryzen.
27273 2017-09-08 Steve Ellcey <sellcey@cavium.com>
27275 * manual/tunables.texi (glibc.tune.cpu): Add thunderx2t99 and
27276 thunderx2t99p1 to list of cpu names.
27277 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (cpu_list):
27278 Add thunderx2t99 and thunderx2t99p1 entries to cpu_list.
27280 2017-09-08 Steve Ellcey <sellcey@cavium.com>
27282 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (get_midr_from_mcpu):
27283 Use strcmp instead of tunable_is_name.
27285 2017-09-08 Joseph Myers <joseph@codesourcery.com>
27287 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_GNU]
27288 (F_GET_RW_HINT): New macro.
27289 [__USE_GNU] (F_SET_RW_HINT): Likewise.
27290 [__USE_GNU] (F_GET_FILE_RW_HINT): Likewise.
27291 [__USE_GNU] (F_SET_FILE_RW_HINT): Likewise.
27292 [__USE_GNU] (RWF_WRITE_LIFE_NOT_SET): Likewise.
27293 [__USE_GNU] (RWH_WRITE_LIFE_NONE): Likewise.
27294 [__USE_GNU] (RWH_WRITE_LIFE_SHORT): Likewise.
27295 [__USE_GNU] (RWH_WRITE_LIFE_MEDIUM): Likewise.
27296 [__USE_GNU] (RWH_WRITE_LIFE_LONG): Likewise.
27297 [__USE_GNU] (RWH_WRITE_LIFE_EXTREME): Likewise.
27299 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_GNU]
27300 (F_ADD_SEALS): New macro.
27301 [__USE_GNU] (F_GET_SEALS): Likewise.
27302 [__USE_GNU] (F_SEAL_SEAL): Likewise.
27303 [__USE_GNU] (F_SEAL_SHRINK): Likewise.
27304 [__USE_GNU] (F_SEAL_GROW): Likewise.
27305 [__USE_GNU] (F_SEAL_WRITE): Likewise.
27307 2017-09-08 Adhemerval Zanella <adhemerval.zanella@linaro.org>
27309 * posix/glob_internal.h (GLOBPAT_NONE, GLOBPAT_SPECIAL)
27310 (GLOBPAT_BACKSLASH, GLOBPAT_BRACKET): New constants.
27311 * posix/glob_internal.h (__glob_pattern_type):
27312 * posix/glob.c (glob):
27313 * posix/glob_pattern_p.c (__glob_pattern_p):
27316 * sysdeps/unix/sysv/linux/arm/glob64.c: Remove file.
27317 * sysdeps/unix/sysv/linux/i386/glob64.c: Likewise.
27318 * sysdeps/unix/sysv/linux/m68k/glob64.c: Likewise.
27319 * sysdeps/unix/sysv/linux/mips/mips64/n64/glob64.c: Likewise.
27320 * sysdeps/unix/sysv/linux/mips/mips64/n64/globfree64.c: Likewise.
27321 * sysdeps/unix/sysv/linux/powerpc/powerpc32/glob64.c: Likewise.
27322 * sysdeps/unix/sysv/linux/sparc/sparc32/glob64.c: Likewise.
27323 * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: Likewise.
27324 * sysdeps/unix/sysv/linux/wordsize-64/globfree64.c: Likewise.
27325 * sysdeps/unix/sysv/linux/x86_64/x32/glob.c: Likewise.
27326 * sysdeps/unix/sysv/linux/x86_64/x32/globfree.c: Likewise.
27327 * sysdeps/wordsize-64/glob.c: Likewise.
27328 * sysdeps/wordsize-64/glob64.c: Likewise.
27329 * sysdeps/wordsize-64/globfree.c: Likewise.
27330 * sysdeps/wordsize-64/globfree64.c: Likewise.
27331 * sysdeps/unix/sysv/linux/glob.c: New file.
27332 * sysdeps/unix/sysv/linux/glob64.c: Likewise.
27333 * sysdeps/unix/sysv/linux/globfree.c: Likewise.
27334 * sysdeps/unix/sysv/linux/globfree64.c: Likewise.
27335 * sysdeps/unix/sysv/linux/s390/s390-32/glob64.c: Likewise.
27336 * sysdeps/unix/sysv/linux/oldglob.c [SHLIB_COMPAT]: Also
27337 adds !GLOB_NO_OLD_VERSION as an extra condition.
27338 * sysdeps/unix/sysv/linux/i386/alphasort64.c: Include olddirent.h
27339 using relative path instead of absolute one.
27340 * sysdeps/unix/sysv/linux/i386/getdents64.c: Likewise.
27341 * sysdeps/unix/sysv/linux/i386/readdir64.c: Likewise.
27342 * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
27343 * sysdeps/unix/sysv/linux/i386/versionsort64.c: Likewise.
27344 * sysdeps/unix/sysv/linux/i386/olddirent.h: Move to ...
27345 * sysdeps/unix/sysv/linux//olddirent.h: ... here.
27348 * posix/glob.c (GET_LOGIN_NAME_MAX): Remove.
27349 (glob): Use the same scratch buffer for both getlogin_r and
27350 getpwnam_r. Don’t require preallocation of the login name. This
27351 simplifies storage allocation, and corrects the handling of
27355 * posix/glob.c (glob): Port recent patches to platforms
27356 lacking getpwnam_r.
27357 (glob): Fix longstanding misuse of errno after getpwnam_r, which
27358 returns an error number rather than setting errno.
27360 * include/scratch_buffer.h (scratch_buffer): Use a C99 align method
27361 instead of GCC extension.
27362 * malloc/scratch_buffer_grow.c [!_LIBC]: Include libc-config.h.
27363 * malloc/scratch_buffer_grow_preserve.c [!_LIBC]: Likewise.
27364 * malloc/scratch_buffer_set_array_size.c [!_LIBC]: Likewise.
27368 * posix/Makefile (tests): Remove bug-glob1 and tst-glob_symlinks.
27369 * posix/bug-glob1.c: Remove file.
27370 * posix/tst-glob_symlinks.c: New file.
27371 * posix/glob.c (__lstat64): New macro.
27372 (is_dir): New function.
27373 (glob, glob_in_dir): Match symlinks even if they are dangling.
27374 (link_stat, link_exists_p): Remove. All uses removed.
27378 * posix/glob.c (struct readdir_result): Remove skip_entry member.
27379 (readdir_result_skip_entry, D_INO_TO_RESULT): Remove.
27384 * posix/Makefile (routines): Add globfree, globfree64, and
27386 * posix/flexmember.h: New file.
27387 * posix/glob_internal.h: Likewise.
27388 * posix/glob_pattern_p.c: Likewise.
27389 * posix/globfree.c: Likewise.
27390 * posix/globfree64.c: Likewise.
27391 * sysdeps/gnu/globfree64.c: Likewise.
27392 * sysdeps/unix/sysv/linux/alpha/globfree.c: Likewise.
27393 * sysdeps/unix/sysv/linux/mips/mips64/n64/globfree64.c: Likewise.
27394 * sysdeps/unix/sysv/linux/oldglob.c: Likewise.
27395 * sysdeps/unix/sysv/linux/wordsize-64/globfree64.c: Likewise.
27396 * sysdeps/unix/sysv/linux/x86_64/x32/globfree.c: Likewise.
27397 * sysdeps/wordsize-64/globfree.c: Likewise.
27398 * sysdeps/wordsize-64/globfree64.c: Likewise.
27399 * posix/glob.c (HAVE_CONFIG_H): Use !_LIBC instead.
27400 [NDEBUG): Remove comments.
27401 (GLOB_ONLY_P, _AMIGA, VMS): Remove define.
27402 (dirent_type): New type. Use uint_fast8_t not
27403 uint8_t, as C99 does not require uint8_t.
27404 (DT_UNKNOWN, DT_DIR, DT_LNK): New macros.
27405 (struct readdir_result): Use dirent_type. Do not define skip_entry
27406 unless it is needed; this saves a byte on platforms lacking d_ino.
27407 (readdir_result_type, readdir_result_skip_entry):
27408 New functions, replacing ...
27409 (readdir_result_might_be_symlink, readdir_result_might_be_dir):
27410 these functions, which were removed. This makes the callers
27411 easier to read. All callers changed.
27412 (D_INO_TO_RESULT): Now empty if there is no d_ino.
27413 (size_add_wrapv, glob_use_alloca): New static functions.
27414 (glob, glob_in_dir): Check for size_t overflow in several places,
27415 and fix some size_t checks that were not quite right.
27416 Remove old code using SHELL since Bash no longer
27418 (glob, prefix_array): Separate MS code better.
27419 (glob_in_dir): Remove old Amiga and VMS code.
27420 (globfree, __glob_pattern_type, __glob_pattern_p): Move to
27422 (glob_in_dir): Do not rely on undefined behavior in accessing
27423 struct members beyond their bounds. Use a flexible array member
27425 (link_stat): Rename from link_exists2_p and return -1/0 instead of
27426 0/1. Caller changed.
27427 (glob): Fix memory leaks.
27428 * posix/glob64 (globfree64): Move to separate file.
27429 * sysdeps/gnu/glob64.c (NO_GLOB_PATTERN_P): Remove define.
27430 (globfree64): Remove hidden alias.
27431 * sysdeps/unix/sysv/linux/Makefile (sysdeps_routines): Add
27433 * sysdeps/unix/sysv/linux/alpha/glob.c (__new_globfree): Move to
27435 * sysdeps/unix/sysv/linux/i386/glob64.c (NO_GLOB_PATTERN_P): Remove
27437 Move compat code to separate file.
27438 * sysdeps/wordsize-64/glob.c (globfree): Move definitions to
27441 2017-09-07 H.J. Lu <hongjiu.lu@intel.com>
27443 * resolv/tst-resolv-qtypes.c (domain): Changed to
27444 "const char domain[] =".
27446 2017-09-07 Joseph Myers <joseph@codesourcery.com>
27448 * scripts/build-many-glibcs.py (Context.checkout): Default MPFR
27451 * sysdeps/gnu/netinet/tcp.h (TCP_ULP): New macro.
27452 (TCP_MD5SIG_EXT): Likewise.
27453 (TCP_MD5SIG_FLAG_PREFIX): Likewise.
27454 (struct tcp_md5sig): Replace __tcpm_pad1 by tcpm_flags and
27455 tcpm_prefixlen. Rename __tcpm_pad2 to __tcpm_pad.
27457 * sysdeps/unix/sysv/linux/bits/socket.h (SOL_TLS): New macro.
27459 2017-09-07 Mike FABIAN <mfabian@redhat.com>
27461 * localedata/locales/om_ET (LC_TIME): use ASCII for better readability.
27463 2017-09-07 Akhilesh Kumar <akhilesh.k@samsung.com>
27466 * localedata/locales/om_KE (LC_TIME): copy "om_ET".
27468 2017-09-07 Samuel Thibault <samuel.thibault@ens-lyon.org>
27470 * hurd/get-host.c (_hurd_get_host_config): Also check that more == 0
27471 before assuming that the file is empty. Avoid testing buffer content
27474 2017-09-06 Adhemerval Zanella <adhemerval.zanella@linaro.org>
27477 * sysdeps/i386/i686/multiarch/strncpy.c (_HAVE_STRING_ARCH_strncpy):
27479 * sysdeps/x86_64/multiarch/stpcpy.c (_HAVE_STRING_ARCH_stpcpy):
27481 * sysdeps/x86_64/multiarch/strcspn.c (_HAVE_STRING_ARCH_strcspn):
27483 * sysdeps/x86_64/multiarch/strncat.c (_HAVE_STRING_ARCH_strncat):
27485 * sysdeps/x86_64/multiarch/strncpy.c (_HAVE_STRING_ARCH_strncpy):
27487 * sysdeps/x86_64/multiarch/strpbrk.c (_HAVE_STRING_ARCH_strpbrk):
27489 * sysdeps/x86_64/multiarch/strspn.c (_HAVE_STRING_ARCH_strspn):
27492 2017-09-06 Florian Weimer <fweimer@redhat.com>
27494 * malloc/dynarray_emplace_enlarge.c
27495 (__libc_dynarray_emplace_enlarge): Add missing else.
27497 2017-09-06 Florian Weimer <fweimer@redhat.com>
27500 * resolv/resolv_conf.c (__resolv_conf_attach): Do not free conf in
27501 case of failure to obtain the global conf object.
27503 2017-09-06 Florian Weimer <fweimer@redhat.com>
27506 * resolv/res_init.c (res_vinit_1): Avoid memory leak in case of
27507 dynarray allocation failure.
27509 2017-09-06 Florian Weimer <fweimer@redhat.com>
27511 Remove dead PTR IPv4-to-IPv6 mapping code from nss_dns.
27512 * resolv/nss_dns/dns-host.c (getanswer_r): Remove dead code.
27513 * resolv/tst-res_use_inet6.c (response_ptr_v4, response_ptr_v6):
27515 (response): Call them. Add 'p', '6' flag processing.
27516 (test_reverse): New function.
27517 (test_get2_any): Call it.
27518 (test_no_inet6): Add 'p' test.
27519 (test_inet6): Likewise.
27521 2017-09-06 Florian Weimer <fweimer@redhat.com>
27523 Enhance tst-res_use_inet6 to test IPv4-to-IPv6 address mapping.
27524 * resolv/tst-res_use_inet6.c (response): Process flags embedded in
27526 (test_gai): Adjust query names. Add additional tests.
27527 (test_get2_any, test_get2_no_inet6, test_get2_inet6): Split from
27528 test_get2. Adjust query names. Add additional tests.
27529 (test_no_inet6): New function, extracted from threadfunc.
27530 (threadfunc): Call test_get2_any, test_get2_inet6, test_no_inet6.
27531 Add additional tests.
27533 2017-09-06 Mike FABIAN <mfabian@redhat.com>
27536 * localedata/unicode-gen/utf8_gen.py: Set the width for
27537 characters with Prepended_Concatenation_Mark property to 1
27538 * localedata/charmaps/UTF-8: Updated using the improved script.
27540 2017-09-06 Mike FABIAN <mfabian@redhat.com>
27543 * localedata/unicode-gen/utf8_gen.py: Improve the script to
27544 use the range notation for all ranges of neighbouring characters
27545 with the same width.
27547 2017-09-05 Joseph Myers <joseph@codesourcery.com>
27549 * sysdeps/generic/math-type-macros-double.h: Include
27550 <math-svid-compat.h>.
27551 (__USE_WRAPPER_TEMPLATE): Define to !LIBM_SVID_COMPAT.
27552 * sysdeps/generic/math-type-macros-float.h: Include
27553 <math-svid-compat.h>.
27554 (__USE_WRAPPER_TEMPLATE): Define to !LIBM_SVID_COMPAT.
27555 * sysdeps/generic/math-type-macros-ldouble.h: Include
27556 <math-svid-compat.h>.
27557 (__USE_WRAPPER_TEMPLATE): Define to !LIBM_SVID_COMPAT.
27558 * math/lgamma-compat.h (BUILD_LGAMMA): Include LIBM_SVID_COMPAT
27560 * math/w_acos_compat.c: Condition contents on [LIBM_SVID_COMPAT].
27561 * math/w_acosf_compat.c: Likewise.
27562 * math/w_acosh_compat.c: Likewise.
27563 * math/w_acoshf_compat.c: Likewise.
27564 * math/w_acoshl_compat.c: Likewise.
27565 * math/w_acosl_compat.c: Likewise.
27566 * math/w_asin_compat.c: Likewise.
27567 * math/w_asinf_compat.c: Likewise.
27568 * math/w_asinl_compat.c: Likewise.
27569 * math/w_atan2_compat.c: Likewise.
27570 * math/w_atan2f_compat.c: Likewise.
27571 * math/w_atan2l_compat.c: Likewise.
27572 * math/w_atanh_compat.c: Likewise.
27573 * math/w_atanhf_compat.c: Likewise.
27574 * math/w_atanhl_compat.c: Likewise.
27575 * math/w_cosh_compat.c: Likewise.
27576 * math/w_coshf_compat.c: Likewise.
27577 * math/w_coshl_compat.c: Likewise.
27578 * math/w_exp10_compat.c: Likewise.
27579 * math/w_exp10f_compat.c: Likewise.
27580 * math/w_exp10l_compat.c: Likewise.
27581 * math/w_exp2_compat.c: Likewise.
27582 * math/w_exp2f_compat.c: Likewise.
27583 * math/w_exp2l_compat.c: Likewise.
27584 * math/w_fmod_compat.c: Likewise.
27585 * math/w_fmodf_compat.c: Likewise.
27586 * math/w_fmodl_compat.c: Likewise.
27587 * math/w_hypot_compat.c: Likewise.
27588 * math/w_hypotf_compat.c: Likewise.
27589 * math/w_hypotl_compat.c: Likewise.
27590 * math/w_j0_compat.c: Likewise.
27591 * math/w_j0f_compat.c: Likewise.
27592 * math/w_j0l_compat.c: Likewise.
27593 * math/w_j1_compat.c: Likewise.
27594 * math/w_j1f_compat.c: Likewise.
27595 * math/w_j1l_compat.c: Likewise.
27596 * math/w_jn_compat.c: Likewise.
27597 * math/w_jnf_compat.c: Likewise.
27598 * math/w_jnl_compat.c: Likewise.
27599 * math/w_lgamma_r_compat.c: Likewise.
27600 * math/w_lgammaf_r_compat.c: Likewise.
27601 * math/w_lgammal_r_compat.c: Likewise.
27602 * math/w_log10_compat.c: Likewise.
27603 * math/w_log10f_compat.c: Likewise.
27604 * math/w_log10l_compat.c: Likewise.
27605 * math/w_log2_compat.c: Likewise.
27606 * math/w_log2f_compat.c: Likewise.
27607 * math/w_log2l_compat.c: Likewise.
27608 * math/w_log_compat.c: Likewise.
27609 * math/w_logf_compat.c: Likewise.
27610 * math/w_logl_compat.c: Likewise.
27611 * math/w_pow_compat.c: Likewise.
27612 * math/w_powf_compat.c: Likewise.
27613 * math/w_powl_compat.c: Likewise.
27614 * math/w_remainder_compat.c: Likewise.
27615 * math/w_remainderf_compat.c: Likewise.
27616 * math/w_remainderl_compat.c: Likewise.
27617 * math/w_sinh_compat.c: Likewise.
27618 * math/w_sinhf_compat.c: Likewise.
27619 * math/w_sinhl_compat.c: Likewise.
27620 * math/w_sqrt_compat.c: Likewise.
27621 * math/w_sqrtf_compat.c: Likewise.
27622 * math/w_sqrtl_compat.c: Likewise.
27623 * math/w_tgamma_compat.c: Likewise.
27624 * math/w_tgammaf_compat.c: Likewise.
27625 * math/w_tgammal_compat.c: Likewise.
27626 * math/w_scalb_compat.c (sysv_scalb): Condition definition on
27627 [LIBM_SVID_COMPAT].
27628 (__scalb): Condition call to sysv_scalb on [LIBM_SVID_COMPAT].
27629 * math/w_scalbf_compat.c (sysv_scalbf): Condition definition on
27630 [LIBM_SVID_COMPAT].
27631 (__scalbf): Condition call to sysv_scalbf on [LIBM_SVID_COMPAT].
27632 * math/w_scalbl_compat.c (sysv_scalbl): Condition definition on
27633 [LIBM_SVID_COMPAT].
27634 (__scalbl): Condition call to sysv_scalbl on [LIBM_SVID_COMPAT].
27635 * sysdeps/i386/fpu/w_sqrt.c: New file.
27636 * sysdeps/ia64/fpu/w_acos.c: Likewise.
27637 * sysdeps/ia64/fpu/w_acosf.c: Likewise.
27638 * sysdeps/ia64/fpu/w_acosh.c: Likewise.
27639 * sysdeps/ia64/fpu/w_acoshf.c: Likewise.
27640 * sysdeps/ia64/fpu/w_acoshl.c: Likewise.
27641 * sysdeps/ia64/fpu/w_acosl.c: Likewise.
27642 * sysdeps/ia64/fpu/w_asin.c: Likewise.
27643 * sysdeps/ia64/fpu/w_asinf.c: Likewise.
27644 * sysdeps/ia64/fpu/w_asinl.c: Likewise.
27645 * sysdeps/ia64/fpu/w_atan2.c: Likewise.
27646 * sysdeps/ia64/fpu/w_atan2f.c: Likewise.
27647 * sysdeps/ia64/fpu/w_atan2l.c: Likewise.
27648 * sysdeps/ia64/fpu/w_atanh.c: Likewise.
27649 * sysdeps/ia64/fpu/w_atanhf.c: Likewise.
27650 * sysdeps/ia64/fpu/w_atanhl.c: Likewise.
27651 * sysdeps/ia64/fpu/w_cosh.c: Likewise.
27652 * sysdeps/ia64/fpu/w_coshf.c: Likewise.
27653 * sysdeps/ia64/fpu/w_coshl.c: Likewise.
27654 * sysdeps/ia64/fpu/w_exp.c: Likewise.
27655 * sysdeps/ia64/fpu/w_exp10.c: Likewise.
27656 * sysdeps/ia64/fpu/w_exp10f.c: Likewise.
27657 * sysdeps/ia64/fpu/w_exp10l.c: Likewise.
27658 * sysdeps/ia64/fpu/w_exp2.c: Likewise.
27659 * sysdeps/ia64/fpu/w_exp2f.c: Likewise.
27660 * sysdeps/ia64/fpu/w_exp2l.c: Likewise.
27661 * sysdeps/ia64/fpu/w_expf.c: Likewise.
27662 * sysdeps/ia64/fpu/w_expl.c: Likewise.
27663 * sysdeps/ia64/fpu/w_fmod.c: Likewise.
27664 * sysdeps/ia64/fpu/w_fmodf.c: Likewise.
27665 * sysdeps/ia64/fpu/w_fmodl.c: Likewise.
27666 * sysdeps/ia64/fpu/w_hypot.c: Likewise.
27667 * sysdeps/ia64/fpu/w_hypotf.c: Likewise.
27668 * sysdeps/ia64/fpu/w_hypotl.c: Likewise.
27669 * sysdeps/ia64/fpu/w_lgamma_r.c: Likewise.
27670 * sysdeps/ia64/fpu/w_lgammaf_r.c: Likewise.
27671 * sysdeps/ia64/fpu/w_lgammal_r.c: Likewise.
27672 * sysdeps/ia64/fpu/w_log.c: Likewise.
27673 * sysdeps/ia64/fpu/w_log10.c: Likewise.
27674 * sysdeps/ia64/fpu/w_log10f.c: Likewise.
27675 * sysdeps/ia64/fpu/w_log10l.c: Likewise.
27676 * sysdeps/ia64/fpu/w_log2.c: Likewise.
27677 * sysdeps/ia64/fpu/w_log2f.c: Likewise.
27678 * sysdeps/ia64/fpu/w_log2l.c: Likewise.
27679 * sysdeps/ia64/fpu/w_logf.c: Likewise.
27680 * sysdeps/ia64/fpu/w_logl.c: Likewise.
27681 * sysdeps/ia64/fpu/w_pow.c: Likewise.
27682 * sysdeps/ia64/fpu/w_powf.c: Likewise.
27683 * sysdeps/ia64/fpu/w_powl.c: Likewise.
27684 * sysdeps/ia64/fpu/w_remainder.c: Likewise.
27685 * sysdeps/ia64/fpu/w_remainderf.c: Likewise.
27686 * sysdeps/ia64/fpu/w_remainderl.c: Likewise.
27687 * sysdeps/ia64/fpu/w_sinh.c: Likewise.
27688 * sysdeps/ia64/fpu/w_sinhf.c: Likewise.
27689 * sysdeps/ia64/fpu/w_sinhl.c: Likewise.
27690 * sysdeps/ia64/fpu/w_sqrt.c: Likewise.
27691 * sysdeps/ia64/fpu/w_sqrtf.c: Likewise.
27692 * sysdeps/ia64/fpu/w_sqrtl.c: Likewise.
27693 * sysdeps/ia64/fpu/w_tgamma.c: Likewise.
27694 * sysdeps/ia64/fpu/w_tgammaf.c: Likewise.
27695 * sysdeps/ia64/fpu/w_tgammal.c: Likewise.
27696 * sysdeps/ieee754/dbl-64/w_exp_compat.c: Condition contents on
27697 [LIBM_SVID_COMPAT].
27698 * sysdeps/ieee754/flt-32/w_expf_compat.c: Likewise.
27699 * sysdeps/ieee754/k_standard.c: Likewise.
27700 * sysdeps/ieee754/k_standardf.c: Likewise.
27701 * sysdeps/ieee754/k_standardl.c: Likewise.
27702 * sysdeps/ieee754/ldbl-128/w_expl_compat.c: Likewise.
27703 * sysdeps/ieee754/ldbl-128ibm/w_expl_compat.c: Likewise.
27704 * sysdeps/ieee754/ldbl-96/w_expl_compat.c: Likewise.
27705 * sysdeps/ieee754/ldbl-64-128/w_expl_compat.c: Condition
27706 long_double_symbol call on [LIBM_SVID_COMPAT].
27707 * sysdeps/ieee754/ldbl-opt/w_acoshl_compat.c: Likewise.
27708 * sysdeps/ieee754/ldbl-opt/w_acosl_compat.c: Likewise.
27709 * sysdeps/ieee754/ldbl-opt/w_asinl_compat.c: Likewise.
27710 * sysdeps/ieee754/ldbl-opt/w_atan2l_compat.c: Likewise.
27711 * sysdeps/ieee754/ldbl-opt/w_atanhl_compat.c: Likewise.
27712 * sysdeps/ieee754/ldbl-opt/w_coshl_compat.c: Likewise.
27713 * sysdeps/ieee754/ldbl-opt/w_fmodl_compat.c: Likewise.
27714 * sysdeps/ieee754/ldbl-opt/w_hypotl_compat.c: Likewise.
27715 * sysdeps/ieee754/ldbl-opt/w_j0l_compat.c: Likewise.
27716 * sysdeps/ieee754/ldbl-opt/w_j1l_compat.c: Likewise.
27717 * sysdeps/ieee754/ldbl-opt/w_jnl_compat.c: Likewise.
27718 * sysdeps/ieee754/ldbl-opt/w_lgammal_r_compat.c: Likewise.
27719 * sysdeps/ieee754/ldbl-opt/w_log10l_compat.c: Likewise.
27720 * sysdeps/ieee754/ldbl-opt/w_log2l_compat.c: Likewise.
27721 * sysdeps/ieee754/ldbl-opt/w_logl_compat.c: Likewise.
27722 * sysdeps/ieee754/ldbl-opt/w_powl_compat.c: Likewise.
27723 * sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c: Likewise.
27724 * sysdeps/ieee754/ldbl-opt/w_sinhl_compat.c: Likewise.
27725 * sysdeps/ieee754/ldbl-opt/w_sqrtl_compat.c: Likewise.
27726 * sysdeps/ieee754/ldbl-opt/w_tgammal_compat.c: Likewise.
27727 * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c: Condition
27728 long_double_symbol and compat_symbol calls on [LIBM_SVID_COMPAT].
27730 2017-09-05 Steve Ellcey <sellcey@cavium.com>
27732 * include/shlib-compat.h (TEST_COMPAT): New Macro.
27733 * malloc/tst-mallocstate.c: Convert from test-skeleton
27734 to test-driver. Ifdef code using TEST_COMPAT macro.
27735 * math/test-matherr-2.c: Ifdef test using TEST_COMPAT macro.
27736 * math/test-matherr.c: Likewise.
27738 2017-09-05 Joseph Myers <joseph@codesourcery.com>
27741 * debug/pcprofiledump.c (main): Use byte-swapped mask when
27742 comparing word with byte-swapped constant.
27744 2017-09-05 Chris Leonard <cjlhomeaddress@gmail.com>
27747 * locale/iso-639.def: add Miskito.
27748 * localedata/SUPPORTED: Add miq_NI/UTF-8.
27749 * localedata/locales/miq_NI: New file.
27751 2017-09-04 H.J. Lu <hongjiu.lu@intel.com>
27754 * include/sys/stat.h (__chmod): Add libc_hidden_proto.
27755 (__mkdir): Likewise.
27756 * io/chmod.c (__chmod): Add libc_hidden_def.
27757 * io/mkdir.c (__mkdir): Likewise.
27758 * sysdeps/mach/hurd/chmod.c (__chmod): Likewise.
27759 * sysdeps/mach/hurd/mkdir.c (__mkdir): Likewise.
27760 * sysdeps/unix/sysv/linux/generic/chmod.c (__chmod): Likewise.
27761 * sysdeps/unix/sysv/linux/generic/mkdir.c (__mkdir): Likewise.
27763 2017-09-04 Joseph Myers <joseph@codesourcery.com>
27765 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
27769 * math/bits/math-finite.h (exp10): Redirect if [__GLIBC_USE
27770 (IEC_60559_FUNCS_EXT)], not [__USE_GNU].
27772 2017-09-04 Florian Weimer <fweimer@redhat.com>
27774 * math/math.h: Issue warning if log is defined.
27776 2017-09-04 Joseph Myers <joseph@codesourcery.com>
27778 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
27779 kernel version to 4.13.
27781 2017-09-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
27783 * sysdeps/generic/sigsetops.h: Remove spurious #endif.
27784 (__sigismember, __sigaddset, __sigdelset): Fix referencing set
27786 * sysdeps/mach/hurd/bits/socket.h: Include <sys/types.h> instead of
27787 just <bits/types.h>.
27788 * sysdeps/posix/preadv2.c: Use off_t instead of OFF_T.
27789 * sysdeps/posix/preadv64v2.c: Use off64_t instead of OFF_T.
27790 * sysdeps/posix/pwritev2.c: Use off_t instead of OFF_T.
27791 * sysdeps/posix/pwritev64v2.c: Use off64_t instead of OFF_T.
27792 * misc/preadv2.c: Include <errno.h>.
27793 * misc/preadv64v2.c: Include <errno.h>.
27794 * misc/pwritev2.c: Include <errno.h>.
27795 * misc/pwritev64v2.c: Include <errno.h>.
27796 * sysdeps/posix/preadv2.c: Include <errno.h>.
27797 * sysdeps/posix/preadv64v2.c: Include <errno.h>.
27798 Fix <unistd.h> inclusion.
27799 * sysdeps/posix/pwritev2.c: Include <errno.h>.
27800 * sysdeps/posix/pwritev64v2.c: Include <errno.h>.
27801 * sysdeps/mach/hurd/dl-sysdep.c (__access_noerrno, __sbrk,
27802 __strtoul_internal): New functions.
27803 * sysdeps/posix/pause.c: Include <sigsetops.h>.
27804 * sysdeps/posix/system.c: Include <sigsetops.h>.
27805 * sysdeps/mach/hurd/i386/Makefile
27806 [$(subdir) = csu] (sysdep_routines): New rule: divdi3 object.
27807 [$(subdir) = csu] (sysdep-only-routines): Likewise.
27808 [$(subdir) = csu] (CFLAGS-divdi3.c): Likewise.
27809 * sysdeps/x86/fpu/include/bits/fenv.h [NO_HIDDEN]: Redirect
27810 __feraiseexcept_renamed to feraiseexcept instead of
27811 __GI_feraiseexcept.
27812 * sysdeps/mach/hurd/i386/Implies: Add mach/hurd/x86.
27813 * sysdeps/mach/hurd/x86/dl-sysdep.c: New file.
27814 * misc/tst-preadvwritev2-common.c (RWF_HIPRI, RWF_DSYNC, RWF_SYNC,
27815 RWF_NOWAIT): Define to 0 if undefined already.
27816 (do_test_with_invalid_flags): Set invalid_flag to 2 if RWF_SUPPORTED
27818 * resolv/tst-resolv-res_init-skeleton.c (run_res_init)
27819 [!CLONE_NEWUTS]: Fail as unsupported if hostname is not NULL.
27821 2017-09-01 Joseph Myers <joseph@codesourcery.com>
27823 * manual/math.texi (pow10): Do not document.
27824 (pow10f): Likewise.
27825 (pow10l): Likewise.
27826 * math/bits/mathcalls.h [__USE_GNU] (pow10): Do not declare.
27827 * math/bits/math-finite.h [__USE_GNU] (pow10): Likewise.
27828 * math/libm-test-exp10.inc (pow10_test): Remove.
27829 (do_test): Do not call pow10.
27830 * math/w_exp10_compat.c (pow10): Make into compat symbol.
27831 [NO_LONG_DOUBLE] (pow10l): Likewise.
27832 * math/w_exp10f_compat.c (pow10f): Likewise.
27833 * math/w_exp10l_compat.c (pow10l): Likewise.
27834 * sysdeps/ia64/fpu/e_exp10.S: Include <shlib-compat.h>.
27835 (pow10): Make into compat symbol.
27836 * sysdeps/ia64/fpu/e_exp10f.S: Include <shlib-compat.h>.
27837 (pow10f): Make into compat symbol.
27838 * sysdeps/ia64/fpu/e_exp10l.S: Include <shlib-compat.h>.
27839 (pow10l): Make into compat symbol.
27840 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Remove
27842 (CFLAGS-nldbl-pow10.c): Remove variable..
27843 * sysdeps/ieee754/ldbl-opt/nldbl-pow10.c: Remove file.
27844 * sysdeps/ieee754/ldbl-opt/w_exp10_compat.c (pow10l): Condition on
27845 [SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_27)].
27846 * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c (compat_symbol):
27847 Undefine and redefine.
27848 (pow10l): Make into compat symbol.
27849 * sysdeps/aarch64/libm-test-ulps: Remove pow10 ulps.
27850 * sysdeps/alpha/fpu/libm-test-ulps: Likewise.
27851 * sysdeps/arm/libm-test-ulps: Likewise.
27852 * sysdeps/hppa/fpu/libm-test-ulps: Likewise.
27853 * sysdeps/i386/fpu/libm-test-ulps: Likewise.
27854 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
27855 * sysdeps/microblaze/libm-test-ulps: Likewise.
27856 * sysdeps/mips/mips32/libm-test-ulps: Likewise.
27857 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
27858 * sysdeps/nios2/libm-test-ulps: Likewise.
27859 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
27860 * sysdeps/powerpc/nofpu/libm-test-ulps: Likewise.
27861 * sysdeps/s390/fpu/libm-test-ulps: Likewise.
27862 * sysdeps/sh/libm-test-ulps: Likewise.
27863 * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
27864 * sysdeps/tile/libm-test-ulps: Likewise.
27865 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
27867 2017-09-01 Paul Pluzhnikov <ppluzhnikov@google.com>
27869 * stdlib/tst-atexit-common.c (crumbs): Ensure correct size.
27871 2017-09-01 H.J. Lu <hongjiu.lu@intel.com>
27873 * posix/tst-regex.c (do_test): Replace "../ChangeLog.8" with
27874 "../ChangeLog.old/ChangeLog.8".
27875 * posix/tst-regex2.c (do_test): Replace "../ChangeLog.14" with
27876 "../ChangeLog.old/ChangeLog.14".
27878 2017-09-01 H.J. Lu <hongjiu.lu@intel.com>
27880 * manual/contrib.texi: Credit Ulrich Drepper for the POSIX
27883 2017-09-01 Joseph Myers <joseph@codesourcery.com>
27885 * sysdeps/unix/sysv/linux/gentempfd.c: Include <string.h>.
27887 2017-09-01 H.J. Lu <hongjiu.lu@intel.com>
27889 * csu/version.c (banner): Remove "by Roland McGrath et al.".
27890 * nptl/Banner: Remove "by Ulrich Drepper et al.".
27892 2017-09-01 Paul Pluzhnikov <ppluzhnikov@google.com>
27894 * stdlib/tst-atexit-common.c (do_test): Test support for at least
27895 32 atexit handlers.
27897 2017-09-01 Zack Weinberg <zackw@panix.com>
27899 * math/math.h (HUGE_VAL): Improve commentary.
27901 2017-09-01 Adhemerval Zanella <adhemerval.zanella@linaro.org>
27902 Andreas Schwab <schwab@suse.de>
27905 * include/stdio.h (__gen_tempfd): New function.
27906 * stdio-common/Makefile (routines): Add gentempfd.
27907 * stdio-common/gentempfd.c: New file.
27908 * sysdeps/unix/sysv/linux/gentempfd.c: Likewise.
27909 * stdio-common/tmpfile.c (tmpfile): First try to use a system specific
27910 unnamed file first.
27912 2017-09-01 Florian Weimer <fweimer@redhat.com>
27916 * sysdeps/posix/getaddrinfo.c (gethosts): Look at NSS function
27917 result to determine success or failure, not the errno value.
27918 * nss/Makefile (tests): Add tst-nss-files-hosts-erange.
27919 (tst-nss-files-hosts-erange): Link with -ldl.
27920 * nss/tst-nss-files-hosts-erange.c: New file.
27921 * nss/tst-resolv-basic.c (response): Handle nodata.example.
27922 (do_test): Add NO_DATA tests.
27923 * resolv/tst-resolv-basic.c (test_nodata_nxdomain): New function.
27924 (do_test): Call it.
27926 2017-09-01 Florian Weimer <fweimer@redhat.com>
27929 * sysdeps/posix/getaddrinfo.c (gaih_inet): Report EAI_NODATA error
27930 coming from gethostbyname2_r.
27932 2017-09-01 Florian Weimer <fweimer@redhat.com>
27934 * support/namespace.h (struct support_chroot_configuration): Add
27936 (struct support_chroot): Add path_hosts, path_host_conf.
27937 * support/support_chroot.c (write_file): New function.
27938 (support_chroot_create): Call it to process /etc/resolv.conf,
27939 /etc/hosts, /etc/host.conf.
27940 (support_chroot_free): Update.
27942 2017-09-01 Florian Weimer <fweimer@redhat.com>
27944 * sysdeps/posix/getaddrinfo.c (gaih_inet): Only use h_errno if
27945 status indicates it is set.
27947 2017-09-01 Florian Weimer <fweimer@redhat.com>
27950 * sysdeps/posix/getaddrinfo.c (gaih_inet): Make reporting of NSS
27951 function lookup failures more reliable.
27953 2017-09-01 Florian Weimer <fweimer@redhat.com>
27955 * sysdeps/posix/getaddrinfo.c (gethosts): Use h_errno directly.
27956 (getcanonname): Likewise.
27957 (gaih_inet): Likewise.
27959 2017-09-01 Florian Weimer <fweimer@redhat.com>
27961 * sysdeps/posix/getaddrinfo.c (gethosts): Use errno directly.
27962 (getcanonname): Likewise.
27963 (gaih_inet): Likewise.
27965 2017-08-31 Steve Ellcey <sellcey@cavium.com>
27966 Richard Henderson <rth@twiddle.net>
27968 * sysdeps/aarch64/fpu/s_llrint.c (OREG_SIZE): New macro.
27969 * sysdeps/aarch64/fpu/s_llround.c (OREG_SIZE): Likewise.
27970 * sysdeps/aarch64/fpu/s_llrintf.c (OREGS, IREGS): Remove.
27971 (IREG_SIZE, OREG_SIZE): New macros.
27972 * sysdeps/aarch64/fpu/s_llroundf.c: (OREGS, IREGS): Remove.
27973 (IREG_SIZE, OREG_SIZE): New macros.
27974 * sysdeps/aarch64/fpu/s_lrintf.c (IREGS): Remove.
27975 (IREG_SIZE): New macro.
27976 * sysdeps/aarch64/fpu/s_lroundf.c (IREGS): Remove.
27977 (IREG_SIZE): New macro.
27978 * sysdeps/aarch64/fpu/s_lrint.c (get-rounding-mode.h, stdint.h):
27980 (IREG_SIZE, OREG_SIZE): Initialize if not already set.
27981 (OREGS, IREGS): Set based on IREG_SIZE and OREG_SIZE.
27982 (__CONCATX): Handle exceptions correctly on large values that may
27984 * sysdeps/aarch64/fpu/s_lround.c (IREG_SIZE, OREG_SIZE):
27985 Initialize if not already set.
27986 (OREGS, IREGS): Set based on IREG_SIZE and OREG_SIZE.
27988 2017-08-31 Adhemerval Zanella <adhemerval.zanella@linaro.org>
27990 * sysdeps/generic/not-cancel.h (NO_CANCELLATION): Remove macro.
27991 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h (NO_CANCELLATION):
27993 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h (NO_CANCELLATION):
27995 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h (NO_CANCELLATION):
27997 * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h (NO_CANCELLATION):
27999 * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h (NO_CANCELLATION):
28001 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (NO_CANCELLATION):
28003 * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h (NO_CANCELLATION):
28005 * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h
28006 (NO_CANCELLATION): Likewise.
28007 * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h (NO_CANCELLATION):
28009 * sysdeps/unix/sysv/linux/nios2/sysdep-cancel.h (NO_CANCELLATION):
28011 * sysdeps/unix/sysv/linux/powerpc/sysdep-cancel.h (NO_CANCELLATION):
28013 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h
28014 (NO_CANCELLATION): Likewise.
28015 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h
28016 (NO_CANCELLATION): Likewise.
28017 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h (NO_CANCELLATION):
28019 * sysdeps/unix/sysv/linux/sparc/sysdep-cancel.h (NO_CANCELLATION):
28021 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h (NO_CANCELLATION):
28023 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h (NO_CANCELLATION):
28025 * sysdeps/unix/sysv/linux/not-cancel.h (__fcntl_nocancel): Add
28027 * sysdeps/unix/sysv/linux/fcntl.c (__fcntl_nocancel): Define only
28028 for !IS_IN (rtld) and remove NO_CANCELLATION usage.
28030 2017-08-31 Steve Ellcey <sellcey@cavium.com>
28032 * sysdeps/aarch64/dl-irel.h: (elf_ifunc_invoke): Change argument type
28035 2017-08-31 Florian Weimer <fweimer@redhat.com>
28037 * include/libc-symbols.h (internal_function): Remove.
28039 2017-08-31 Florian Weimer <fweimer@redhat.com>
28041 * stdlib/fmtmsg.c (internal_addseverity): Remove
28044 2017-08-31 Florian Weimer <fweimer@redhat.com>
28046 * stdio-common/printf_fp.c (group_number): Remove
28048 * stdio-common/vfprintf.c (buffered_vfprintf): Likewise.
28050 2017-08-31 Florian Weimer <fweimer@redhat.com>
28052 * posix/fnmatch.c (internal_function): Remove definition.
28053 * posix/fnmatch_loop.c (FCT, EXT, END): Remove internal_function.
28054 * posix/regcomp.c (peek_token, init_word_char)
28055 (duplicate_node_closure, fetch_token, peek_token)
28056 (peek_token_bracket, build_range_exp, build_collating_symbol):
28058 * posix/regex_internal.c (re_string_construct_common)
28059 (create_ci_newstate, create_cd_newstate, re_string_allocate)
28060 (re_string_construct, re_string_realloc_buffers, build_wcs_buffer)
28061 (build_wcs_upper_buffer, re_string_skip_chars, build_upper_buffer)
28062 (re_string_translate_buffer, re_string_reconstruct)
28063 (re_string_peek_byte_case, re_string_fetch_byte_case)
28064 (re_string_destruct, re_string_context_at, re_node_set_alloc)
28065 (re_node_set_init_1, re_node_set_init_2, re_node_set_init_copy)
28066 (re_node_set_add_intersect, re_node_set_init_union)
28067 (re_node_set_merge, re_node_set_insert, re_node_set_insert_last)
28068 (re_node_set_compare, re_node_set_contains, re_node_set_remove_at)
28069 (re_dfa_add_node, calc_state_hash, re_acquire_state)
28070 (re_acquire_state_context): Likewise.
28071 * posix/regex_internal.h (internal_function): Remove definition.
28072 (re_string_realloc_buffers, build_wcs_buffer)
28073 (build_wcs_upper_buffer, build_upper_buffer)
28074 (re_string_translate_buffer, re_string_context_at)
28075 (re_string_char_size_at, re_string_wchar_at)
28076 (re_string_elem_size_at): Likewise.
28077 * posix/regexec.c (match_ctx_init, match_ctx_clean)
28078 (match_ctx_free, match_ctx_add_entry, search_cur_bkref_entry)
28079 (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init)
28080 (re_search_internal, re_search_2_stub, re_search_stub)
28081 (re_copy_regs, prune_impossible_nodes, check_matching)
28082 (check_halt_state_context, update_regs, push_fail_stack, set_regs)
28083 (free_fail_stack_return, sift_states_iter_mb)
28084 (sift_states_backward, build_sifted_states)
28085 (update_cur_sifted_state, add_epsilon_src_nodes, check_dst_limits)
28086 (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos)
28087 (check_subexp_limits, sift_states_bkref, merge_state_array)
28088 (find_recover_state, transit_state, merge_state_with_log)
28089 (check_subexp_matching_top, transit_state_sb, transit_state_sb)
28090 (transit_state_mb, transit_state_bkref, get_subexp)
28091 (get_subexp_sub, find_subexp_node, check_arrival)
28092 (check_arrival_add_next_nodes, check_arrival_expand_ecl)
28093 (check_arrival_expand_ecl_sub, expand_bkref_cache, build_trtable)
28094 (check_node_accept_bytes, find_collation_sequence_value)
28095 (group_nodes_into_DFAstates, check_node_accept, extend_buffers)
28096 (acquire_init_state_context, check_halt_node_context)
28097 (proceed_next_node, pop_fail_stack, clean_state_log_if_needed)
28098 (sub_epsilon_src_nodes): Likewise.
28099 * posix/spawn_int.h (__spawn_valid_fd): Likewise.
28100 * posix/spawn_valid_fd (__spawn_valid_fd): Likewise.
28101 * posix/wordexp.c (parse_dollars, parse_backtick, parse_dquote)
28102 (eval_expr, w_addmem, w_addstr, w_addword, parse_backslash)
28103 (parse_qtd_backslash, parse_tilde, do_parse_glob, parse_glob)
28104 (parse_squote, eval_expr_val, eval_expr_multdiv, parse_arith)
28105 (exec_comm_child, exec_comm, parse_comm, parse_param): Likewise.
28106 * sysdeps/posix/ttyname.c (getttyname): Likewise.
28107 * sysdeps/posix/ttyname_r.c (getttyname_r): Likewise.
28108 * sysdeps/unix/sysv/linux/preadv.c (__atomic_preadv_replacement)
28109 (PREADV): Likewise.
28110 * sysdeps/unix/sysv/linux/preadv64.c (__atomic_preadv64_replacement)
28111 (PREADV): Likewise.
28112 * sysdeps/unix/sysv/linux/pwritev.c (__atomic_pwritev_replacement)
28113 (PWRITEV): Likewise.
28114 * sysdeps/unix/sysv/linux/pwritev64.c (__atomic_pwritev64_replacement)
28115 (PWRITEV): Likewise.
28116 * sysdeps/unix/sysv/linux/ttyname.c (getttyname): Likewise.
28117 * sysdeps/unix/sysv/linux/ttyname_r.c (getttyname_r): Likewise.
28119 2017-08-31 Florian Weimer <fweimer@redhat.com>
28121 * nptl/allocatestack.c (change_stack_perm, __deallocate_stack)
28122 (setxid_mark_thread, setxid_unmark_thread, setxid_signal_thread):
28123 Remove internal_function.
28124 * nptl/cancellation.c (__pthread_disable_asynccancel): Likewise.
28125 * nptl/libc_pthread_init.c (__libc_pthread_init): Likewise.
28126 * nptl/pthreadP.h (__find_in_stack_list, __free_tcb)
28127 (__deallocate_stack, __libc_pthread_init)
28128 (__pthread_mutex_cond_lock, __pthread_mutex_cond_lock_adjust)
28129 (__pthread_mutex_unlock_usercnt, __pthread_disable_asynccancel)
28130 (__libc_disable_asynccancel, __librt_disable_asynccancel):
28132 * nptl/pthread_create.c (__find_in_stack_list, __free_tcb): Likewise.
28133 * nptl/pthread_mutex_cond_lock.c (__pthread_mutex_lock): Likewise.
28134 * nptl/pthread_mutex_lock.c (__pthread_mutex_cond_lock_adjust):
28136 * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full)
28137 (__pthread_mutex_unlock_usercnt): Likewise.
28139 2017-08-31 Florian Weimer <fweimer@redhat.com>
28141 * io/fts.c (fts_alloc, fts_build, fts_lfree, fts_load)
28142 (fts_maxarglen, fts_padjust, fts_palloc, fts_sort, fts_stat)
28143 (fts_safe_changedir): Remove internal_function.
28144 * io/ftw.c (internal_function): Remove definition.
28145 (ftw_dir, process_entry, ftw_startup): Remove internal_function.
28147 2017-08-31 Florian Weimer <fweimer@redhat.com>
28149 * inet/deadline.c (__deadline_current_time)
28150 (__deadline_from_timeval, __deadline_to_ms): Remove
28152 * inet/getnameinfo.c (nrl_domainname): Likewise.
28153 * inet/getnetgrent_r.c (__internal_setnetgrent_reuse): Likewise.
28154 * inet/inet6_option.c (add_pad): Likewise.
28155 * inet/net-internal.h (__deadline_current_time)
28156 (__deadline_from_timeval, __deadline_to_ms): Likewise.
28157 * inet/rcmd.c (__checkhost_sa, __icheckuser): Likewise.
28158 * sysdeps/mach/hurd/if_index.c (__protocol_available): Likewise.
28159 * sysdeps/unix/sysv/linux/ifaddrs.c (map_newlink): Likewise.
28161 2017-08-31 Joseph Myers <joseph@codesourcery.com>
28163 * math/math.h [__USE_ISOC99] (NAN): Define directly here. Do not
28164 include <bits/nan.h>.
28165 * math/Makefile (headers): Remove bits/nan.h.
28166 * bits/nan.h: Remove.
28167 * sysdeps/ieee754/bits/nan.h: Likewise.
28168 * sysdeps/mips/bits/nan.h: Likewise.
28170 * math/math.h [__USE_ISOC99] (INFINITY): Define directly here. Do
28171 not include <bits/inf.h>.
28172 * math/Makefile (headers): Remove bits/inf.h.
28173 * bits/inf.h: Remove.
28174 * sysdeps/ieee754/bits/inf.h: Likewise.
28176 * math/math.h: Do not include bits/huge_val.h, bits/huge_valf.h,
28177 bits/huge_vall.h or bits/huge_val_flt128.h.
28178 (HUGE_VAL): Define directly here.
28179 [__USE_ISOC99] (HUGE_VALF): Likewise.
28180 [__USE_ISOC99] (HUGE_VALL): Likewise.
28181 [__HAVE_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
28182 (HUGE_VAL_F128): Likewise.
28183 * math/Makefile (headers): Remove bits/huge_val.h,
28184 bits/huge_valf.h, bits/huge_vall.h and bits/huge_val_flt128.h.
28185 * bits/huge_val.h: Remove.
28186 * bits/huge_val_flt128.h: Likewise.
28187 * bits/huge_valf.h: Likewise.
28188 * bits/huge_vall.h: Likewise.
28189 * sysdeps/ia64/bits/huge_vall.h: Likewise.
28190 * sysdeps/ieee754/bits/huge_val.h: Likewise.
28191 * sysdeps/ieee754/bits/huge_valf.h: Likewise.
28192 * sysdeps/m68k/m680x0/bits/huge_vall.h: Likewise.
28193 * sysdeps/sh/bits/huge_val.h: Likewise.
28194 * sysdeps/sparc/bits/huge_vall.h: Likewise.
28195 * sysdeps/x86/bits/huge_vall.h: Likewise.
28197 2017-08-31 Florian Weimer <fweimer@redhat.com>
28199 * elf/dl-addr-obj.c (_dl_addr_inside_object): Remove
28201 * elf/dl-cache.c (_dl_cache_libcmp, _dl_load_cache_lookup):
28203 * elf/dl-debug.c (_dl_debug_initialize): Likewise.
28204 * elf/dl-deps.c (_dl_build_local_scope, _dl_map_object_deps): Likewise.
28205 * elf/dl-environ.c (_dl_next_ld_env_entry): Likewise.
28206 * elf/dl-execstack.c (_dl_make_stack_executable): Likewise.
28207 * elf/dl-fini.c (_dl_sort_fini): Likewise.
28208 * elf/dl-hwcaps.c (_dl_important_hwcaps): Likewise.
28209 * elf/dl-libc.c (dlerror_run): Likewise.
28210 * elf/dl-load.c (add_name_to_object, decompose_rpath)
28211 (_dl_init_paths, _dl_map_object, _dl_rtld_di_serinfo): Likewise.
28212 * elf/dl-lookup.c (add_dependency, _dl_debug_bindings)
28213 (_dl_lookup_symbol_x, _dl_setup_hash, _dl_debug_bindings):
28215 * elf/dl-misc.c (_dl_sysdep_read_whole_file, _dl_name_match_p)
28216 (_dl_higher_prime_number, _dl_strtoul): Likewise.
28217 * elf/dl-object.c (_dl_add_to_namespace_list, _dl_new_object): Likewise.
28218 * elf/dl-profile.c (_dl_start_profile): Likewise.
28219 * elf/dl-reloc.c (_dl_try_allocate_static_tls)
28220 (_dl_allocate_static_tls, _dl_protect_relro, _dl_reloc_bad_type):
28222 * elf/dl-support.c (_dl_aux_init, _dl_non_dynamic_init): Likewise.
28223 * elf/dl-sym.c (_dl_tls_symaddr, do_sym): Likewise.
28224 * elf/dl-sysdep.c (_dl_sysdep_start_cleanup, _dl_show_auxv): Likewise.
28225 * elf/dl-tls.c (_dl_next_tls_modid, _dl_count_modids)
28226 (_dl_determine_tlsoffset, allocate_dtv, _dl_get_tls_static_info)
28227 (_dl_allocate_tls_storage): Likewise.
28228 * elf/dl-version.c (match_symbol, _dl_check_map_versions)
28229 (_dl_check_all_versions): Likewise.
28230 * elf/dynamic-link.h (_dl_try_allocate_static_tls): Likewise.
28231 * elf/tlsdeschtab.h (_dl_make_tlsdesc_dynamic): Likewise.
28232 * elf/tst-_dl_addr_inside_object.c (_dl_addr_inside_object): Likewise.
28233 * sysdeps/aarch64/dl-tlsdesc.h (_dl_make_tlsdesc_dynamic): Likewise.
28234 * sysdeps/aarch64/tlsdesc.c (_dl_unmap): Likewise.
28235 * sysdeps/arm/dl-lookupcfg.h (_dl_unmap): Likewise.
28236 * sysdeps/arm/dl-machine.h (elf_machine_load_address): Remove
28237 internal_function from __dl_start.
28238 * sysdeps/arm/dl-tlsdesc.h (_dl_unmap): Remove internal_function.
28239 * sysdeps/generic/dl-cache.h (_dl_cache_libcmp): Likewise.
28240 * sysdeps/generic/ldsodefs.h (_dl_name_match_p)
28241 (_dl_higher_prime_number, _dl_strtoul, _dl_map_object)
28242 (_dl_map_object_deps, _dl_setup_hash, _dl_rtld_di_serinfo)
28243 (_dl_lookup_symbol_x, _dl_add_to_namespace_list, _dl_new_object)
28244 (_dl_protect_relro, _dl_reloc_bad_type, _dl_check_all_versions)
28245 (_dl_check_map_versions, _dl_sort_fini, _dl_debug_initialize)
28246 (_dl_init_paths, _dl_start_profile, _dl_show_auxv)
28247 (_dl_next_ld_env_entry, _dl_important_hwcaps)
28248 (_dl_load_cache_lookup, _dl_sysdep_read_whole_file)
28249 (_dl_sysdep_start_cleanup, _dl_next_tls_modid, _dl_count_modids)
28250 (_dl_determine_tlsoffset, _dl_get_tls_static_info)
28251 (_dl_allocate_static_tls, _dl_allocate_tls_storage)
28252 (_dl_addr_inside_object, _dl_non_dynamic_init, _dl_aux_init):
28254 (struct rtld_global_ro): Remove internal_function from the
28255 _dl_lookup_symbol_x member.
28256 (_dl_symbol_value): Remove. No longer defined anywhere.
28257 * sysdeps/i386/dl-lookupcfg.h (_dl_unmap): Remove
28259 * sysdeps/i386/dl-tlsdesc.h (_dl_make_tlsdesc_dynamic): Likewise.
28260 * sysdeps/i386/tlsdesc.c (_dl_unmap): Likewise.
28261 * sysdeps/mach/hurd/dl-sysdep.c (_dl_show_auxv): Likewise.
28262 * sysdeps/nios2/dl-init.c (_dl_nios2_get_gp_value): Likewise.
28263 * sysdeps/tile/dl-lookupcfg.h (_dl_unmap): Likewise.
28264 * sysdeps/tile/dl-machine.h (_dl_after_load): Likewise.
28265 * sysdeps/tile/dl-runtime.c (_dl_after_load, _dl_unmap): Likewise.
28266 * sysdeps/unix/sysv/linux/dl-vdso.c (_dl_vdso_vsym): Likewise.
28267 * sysdeps/unix/sysv/linux/dl-vdso.h (_dl_vdso_vsym): Likewise.
28268 * sysdeps/x86_64/dl-lookupcfg.h (_dl_unmap): Likewise.
28269 * sysdeps/x86_64/dl-tlsdesc.h (_dl_make_tlsdesc_dynamic): Likewise.
28270 * sysdeps/x86_64/tlsdesc.c (_dl_unmap): Likewise.
28272 2017-08-31 Florian Weimer <fweimer@redhat.com>
28274 * gmon/gmon.c (write_hist, write_call_graph, write_bb_counts):
28275 Remove internal_function.
28276 * sysdeps/arm/machine-gmon.h (mcount_internal, _MCOUNT_DECL):
28278 * sysdeps/sparc/machine-gmon.h (mcount_internal, _MCOUNT_DECL):
28281 2017-08-31 Florian Weimer <fweimer@redhat.com>
28283 * dlfcn/dlerror.c (_dlerror_run): Remove internal_function.
28284 * elf/dl-sym.c (_dl_vsym, _dl_sym): Likewise.
28285 * include/dlfcn.h (_dl_sym, _dl_vsym, _dlerror_run): Likewise.
28287 2017-08-31 Florian Weimer <fweimer@redhat.com>
28289 * resolv/gai_misc.c (__gai_find_request, __gai_remove_request)
28290 (__gai_enqueue_request): Remove internal_function.
28291 * resolv/gai_misc.h (__gai_enqueue_request, __gai_find_request)
28292 (__gai_remove_request, __gai_notify, __gai_notify_only)
28293 (__gai_sigqueue): Likewise.
28294 * resolv/gai_notify.c (__gai_notify_only, __gai_notify): Likewise.
28295 * resolv/gai_sigqueue.c (__gai_sigqueue): Likewise.
28296 * resolv/inet_ntop.c (inet_ntop4, inet_ntop6): Likewise.
28297 * sysdeps/unix/sysv/linux/gai_sigqueue.c (__gai_sigqueue):
28300 2017-08-31 Florian Weimer <fweimer@redhat.com>
28302 * dirent/scandir-tail.c (SCANDIR_TAIL): Remove internal_function.
28303 * include/dirent.h (__opendirat, __getdents, __getdents64)
28304 (__alloc_dir, __scandir_tail, __scandir64_tail): Likewise.
28305 * sysdeps/posix/opendir.c (__opendirat, __alloc_dir): Likewise.
28306 * sysdeps/mach/hurd/opendir.c (__opendirat): Likewise.
28307 * sysdeps/unix/sysv/linux/i386/olddirent.h (__old_getdents64):
28309 * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): Likewise.
28311 2017-08-31 Florian Weimer <fweimer@redhat.com>
28313 * sysdeps/unix/sysv/linux/getcwd.c (generic_getcwd): Remove
28315 (GETCWD_RETURN_TYPE): Likewise.
28317 2017-08-31 Florian Weimer <fweimer@redhat.com>
28319 * include/time.h (__tz_compute, __strptime_internal): Remove
28321 * time/strptime_l.c (__strptime_internal): Likewise.
28322 * time/tzset.c (compute_change, update_vars, __tz_compute): Likewise.
28324 2017-08-31 Florian Weimer <fweimer@redhat.com>
28326 * iconv/gconv.c (__gconv): Remove internal_function.
28327 * iconv/gconv_builtin.c (__gconv_get_builtin_trans): Likewise.
28328 * iconv/gconv_cache.c (__gconv_load_cache, find_module_idx)
28329 (find_module, __gconv_compare_alias_cache, __gconv_lookup_cache)
28330 (__gconv_release_cache): Likewise.
28331 * iconv/gconv_close.c (__gconv_close): Likewise.
28332 * iconv/gconv_conf.c (detect_conflict, insert_module, add_module)
28333 (read_conf_file, __gconv_get_path): Likewise.
28334 * iconv/gconv_db.c (derivation_lookup, add_derivation)
28335 (__gconv_release_step, gen_steps, increment_counter)
28336 (find_derivation, __gconv_compare_alias, __gconv_find_transform)
28337 (__gconv_close_transform, free_modules_db): Likewise.
28338 * iconv/gconv_dl.c (__gconv_find_shlib, __gconv_release_shlib):
28340 * iconv/gconv_int.h (__gconv_open, __gconv_close, __gconv)
28341 (__gconv_find_transform, __gconv_lookup_cache)
28342 (__gconv_release_step, __gconv_load_cache, __gconv_get_path)
28343 (__gconv_close_transform, __gconv_release_cache)
28344 (__gconv_loaded_object, __gconv_release_shlib)
28345 (__gconv_compare_alias): Likewise.
28346 * iconv/gconv_open.c (__gconv_open): Likewise.
28347 * iconv/iconv_prog.c (print_known_names, add_known_names): Likewise.
28348 * iconv/iconvconfig.c (add_module): Likewise.
28349 * intl/dcigettext.c (plural_lookup, guess_category_value)
28350 (category_to_name, get_output_charset, _nl_find_msg): Likewise.
28351 * intl/eval-plural.h (plural_eval): Likewise.
28352 * intl/finddomain.c (_nl_find_domain): Likewise.
28353 * intl/gettextP.h (_nl_unload_domain, _nl_find_domain)
28354 (_nl_load_domain, _nl_find_msg): Likewise.
28355 (internal_function): Remove definition.
28356 * intl/loadinfo.h (internal_function): Likewise.
28357 * intl/loadmsgcat.c (_nl_load_domain, _nl_unload_domain): Remove
28359 * intl/localealias.c (internal_function): Remove definition.
28360 (read_alias_file): Remove internal_function.
28361 * intl/plural-exp.c (EXTRACT_PLURAL_EXPRESSION): Likewise.
28362 * intl/plural-exp.h (internal_function): Remove definition.
28363 (FREE_EXPRESSION, EXTRACT_PLURAL_EXPRESSION): Remove
28365 * intl/plural.c: Regenerate.
28366 * intl/plural.y (FREE_EXPRESSION): Remove internal_function.
28367 * locale/coll-lookup.c (__collidx_table_lookup)
28368 (__collseq_table_lookup): Likewise.
28369 * locale/coll-lookup.h (__collidx_table_lookup)
28370 (__collseq_table_lookup): Likewise.
28371 * locale/findlocale.c (_nl_find_locale, _nl_remove_locale): Likewise.
28372 * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
28373 * locale/loadlocale.c (_nl_intern_locale_data, _nl_load_locale)
28374 (_nl_unload_locale): Likewise.
28375 * locale/localeinfo.h (struct __locale_data): Remove
28376 internal_function from cleanup member.
28377 (_nl_find_locale, _nl_load_locale, _nl_unload_locale)
28378 (_nl_remove_locale, _nl_load_locale_from_archive)
28379 (_nl_intern_locale_data, _nl_get_era_entry, _nl_select_era_entry)
28380 (_nl_get_alt_digit, _nl_get_walt_digit, _nl_parse_alt_digit)
28381 (_nl_cleanup_time): Remove internal_function.
28382 * time/alt_digit.c (_nl_get_alt_digit, _nl_get_walt_digit)
28383 (_nl_parse_alt_digit): Likewise.
28384 * time/era.c (_nl_init_era_entries, _nl_get_era_entry)
28385 (_nl_select_era_entry): Likewise.
28386 * time/lc-time-cleanup.c (_nl_cleanup_time): Likewise.
28387 * wcsmbs/wcsmbsload.c (__wcsmbs_load_conv, __wcsmbs_clone_conv)
28388 (__wcsmbs_named_conv, _nl_cleanup_ctype): Likewise.
28389 * wcsmbs/wcsmbsload.h (__wcsmbs_load_conv, __wcsmbs_clone_conv)
28390 (__wcsmbs_named_conv, _nl_cleanup_ctype): Likewise.
28392 2017-08-31 Florian Weimer <fweimer@redhat.com>
28394 * rt/aio_sigqueue.c (__aio_sigqueue): Remove internal_function.
28395 * sysdeps/generic/aio_misc.h (__aio_sigqueue): Likewise.
28396 * sysdeps/pthread/aio_misc.c (__aio_free_request, __aio_find_req)
28397 (__aio_find_req_fd, __aio_remove_request, __aio_enqueue_request):
28399 * sysdeps/pthread/aio_misc.h (__aio_enqueue_request)
28400 (__aio_find_req, __aio_find_req_fd, __aio_free_request)
28401 (__aio_notify, __aio_notify_only, __aio_sigqueue): Likewise.
28402 * sysdeps/pthread/aio_notify.c (__aio_notify_only, __aio_notify):
28404 * sysdeps/unix/sysv/linux/aio_sigqueue.c (__aio_sigqueue): Likewise.
28406 2017-08-31 Florian Weimer <fweimer@redhat.com>
28408 * misc/getttyent.c (skip, value): Remove internal_function.
28409 * misc/syslog.c (openlog_internal): Likewise.
28410 * misc/tsearch.c (trecurse, tdestroy_recurse): Likewise.
28412 2017-08-31 Florian Weimer <fweimer@redhat.com>
28414 * include/nss.h (__nss_valid_field, __nss_valid_list_field)
28415 (__nss_rewrite_field): Remove internal_function.
28416 * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
28417 * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
28418 * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
28419 * nss/nsswitch.c (nss_parse_file, nss_getline)
28420 (nss_parse_service_list, nss_new_service): Likewise.
28421 * nss/rewrite_field.c (__nss_rewrite_field): Likewise.
28422 * nss/valid_field.c (__nss_valid_field): Likewise.
28423 * nss/valid_list_field.c (__nss_valid_list_field): Likewise.
28425 2017-08-31 Florian Weimer <fweimer@redhat.com>
28427 * malloc/arena.c (__malloc_fork_lock_parent)
28428 (__malloc_fork_unlock_parent, __malloc_fork_unlock_child)
28429 (next_env_entry, new_heap, heap_trim, arena_get2): Remove
28430 internal_function from defintions.
28431 * malloc/hooks.c (mem2mem_check, mem2chunk_check): Likewise.
28432 * malloc/malloc-internal.h (__malloc_fork_lock_parent)
28433 (__malloc_fork_unlock_parent, __malloc_fork_unlock_child): Remove
28434 internal_function from declarations.
28435 * malloc/malloc.c (internal_function): Do not define.
28436 (mem2mem_check): Remove internal_function from declaration.
28437 (munmap_chunk, mremap_chunk): Remove internal_function.
28438 * malloc/mtrace.c (tr_where): Likewise.
28440 2017-08-31 Florian Weimer <fweimer@redhat.com>
28442 * include/rpc/pmap_clnt.h (__get_socket): Remove
28444 * sunrpc/auth_des.c (synchronize): Likewise.
28445 * sunrpc/auth_unix.c (marshal_new_auth): Likewise.
28446 * sunrpc/clnt_perr.c (auth_errmsg): Likewise.
28447 * sunrpc/des_impl.c (des_encrypt, des_set_key): Likewise.
28448 * sunrpc/key_call.c (key_call_keyenvoy, key_call_socket)
28449 (key_call): Likewise.
28450 * sunrpc/pm_getport.c (__get_socket): Likewise.
28451 * sunrpc/pmap_rmt.c (getbroadcastnets): Likewise.
28452 * sunrpc/svc_unix.c (makefd_xprt): Likewise.
28453 * sunrpc/svc_tcp.c (makefd_xprt): Likewise.
28454 * sunrpc/svcauth_des.c (cache_init, cache_spot, cache_ref)
28455 (invalidate): Likewise.
28456 * sunrpc/xcrypt.c (hexval, hex2bin, bin2hex): Likewise.
28457 * sunrpc/xdr_rec.c (fix_buf_size, skip_input_bytes, flush_out)
28458 (set_input_fragment, get_input_bytes): Likewise.
28460 2017-08-31 Florian Weimer <fweimer@redhat.com>
28462 * malloc/malloc.c (_int_free): Remove locked variable and related
28465 2017-08-31 H.J. Lu <hongjiu.lu@intel.com>
28468 * Makerules (build-module-helper-objlist): Filter out
28469 $(elf-objpfx)sofini.os.
28470 (build-shlib-objlist): Append $(elf-objpfx)sofini.os if it is
28473 2017-08-31 Florian Weimer <fweimer@redhat.com>
28475 * libio/fcloseall.c: Assume weak_alias is defined.
28476 * libio/feof.c: Likewise.
28477 * libio/fileno.c: Likewise.
28478 * libio/fileops.c: Assume _LIBC, errno, __set_errno are defined.
28479 (_POSIX_SOURCE, open, lseek, read, write): Remove macro
28481 (_IO_file_open): Call __open directly.
28482 (_IO_new_file_sync): Assume ESPIPE is defined.
28483 (_IO_file_seekoff_maybe_mmap): Call __read directly.
28484 (_IO_new_file_write): Call __write directly.
28485 * libio/ftello.c (__ftello): Assume EIO, EOVERFLOW are defined.
28486 * libio/ftello64.c (__ftello64): Assume EIO is defined.
28487 * libio/genops.c: Assume _LIBC is defined.
28488 (save_for_backup): Remove internal_function.
28489 * libio/getc.c: Assume weak_alias is defined.
28490 * libio/getwc.c: Likewise.
28491 * libio/iofclose.c: Assume _LIBC is defined.
28492 * libio/iofdopen.c: Likewise.
28493 (_IO_fcntl): Remove macro definition.
28494 (_IO_new_fdopen): Assume F_GETFL, F_SETFL, O_ACCMODE are defined.
28495 Call __fcntl directly.
28496 * libio/iofflush.c: Assume weak_alias is defined.
28497 * libio/iofgetpos.c (_IO_new_fgetpos): Assume EIO, EOVERFLOW are
28499 * libio/iofgetpos64.c (_IO_new_fgetpos64): Assume EIO is defined.
28500 * libio/iofgets.c: Likewise.
28501 * libio/iofopen.c: Assume _LIBC is defined.
28502 * libio/iofopen64.c: Assume _LIBC, weak_alias are defined.
28503 * libio/iofputs.c: Assume weak_alias is defined.
28504 * libio/iofread.c: Likewise.
28505 * libio/iofsetpos.c (_IO_new_fsetpos): Assume EIO is defined.
28506 * libio/iofsetpos64.c (_IO_new_fsetpos64): Likewise.
28507 * libio/ioftell.c: Assume weak_alias is defined.
28508 (_IO_ftell): Assume EIO, EOVERFLOW are defined.
28509 * libio/iofwide.c: Assume _LIBC is defined.
28510 (_IO_fwide): Drop SHARED conditional because it is implied by
28512 * libio/iofwrite.c: Assume weak_alias is defined.
28513 * libio/iogetdelim.c: Likewise.
28514 * libio/iogets.c: Assume _LIBC, weak_alias are defined.
28515 * libio/iogetwline.c (wmemcpy): Remove macro definition.
28516 (_IO_getwline): Call __wmemcpy directly.
28517 * libio/iopopen.c: Assume _LIBC is defined.
28518 (_POSIX_SOURCE, _IO_fork, _IO_dup2, _IO_waitpid, _IO_execl)
28519 (_IO_close): Remove macro definitions.
28520 (_IO_new_proc_open): Call __fork, __dup2, __close_nocancel, execl,
28522 (_IO_new_proc_close): Call __close_nocancel, __waitpid_nocancel
28524 * libio/ioputs.c: Assume weak_alias is defined.
28525 * libio/ioseekoff.c: Assume errno, __set_errno are defined.
28526 * libio/iosetbuffer.c: Assume weak_alias is defined.
28527 * libio/iosetvbuf.c: Likewise.
28528 * libio/ioungetc.c: Likewise.
28529 * libio/libioP.h: Assume _LIBC, __GLIBC__, libc_hidden_proto,
28530 libc_hidden_def, libc_hidden_weak, NULL are defined.
28531 (mmap, munmap, ftruncate, OS_FSTAT): Remove macro definitions.
28532 * libio/oldfilepos.c: Assume _LIBC, errno, __set_errno are
28534 (_POSIX_SOURCE, open, lseek, read, write): Remove macro
28536 (_IO_old_file_init_internal): Drop SHARED conditional because it
28537 is implied by SHLIB_COMPAT.
28538 (_IO_old_file_fopen): Call __open directly.
28539 (_IO_old_file_sync): Assume ESPIPE is defined.
28540 (_IO_old_file_write): Call __write directly.
28541 * libio/oldfdopen.c (_IO_fcntl): Remove macro definition.
28542 (_IO_old_fdopen): Assume F_GETFL, O_ACCMODE, F_SETFL are defined.
28543 Call __fcntl directly.
28544 * libio/oldiofgetpos.c: Assume weak_alias is defined.
28545 (_IO_old_fgetpos): Assume EIO is defined.
28546 * libio/oldiofgetpos64.c: Assume weak_alias is defined.
28547 (_IO_old_fgetpos64): Assume EIO is defined.
28548 * libio/oldiofsetpos.c: Assume weak_alias is defined.
28549 (_IO_old_fsetpos): Assume EIO is defined.
28550 * libio/oldiofsetpos64.c: Assume weak_alias is defined.
28551 (_IO_old_fsetpos64): Assume EIO is defined.
28552 * libio/oldiopopen.c: Assume _LIBC is defined.
28553 (_POSIX_SOURCE, _IO_fork, _IO_dup2, _IO_waitpid, _IO_execl)
28554 (_IO_close): Remove macro definitions.
28555 (_IO_old_proc_open): Call __pipe, __close, __dup2, execl, _exit
28557 (_IO_old_proc_close): Call __close, __waitpid directly.
28558 * libio/put.c: Assume weak_alias is defined.
28559 * libio/stdfiles.c: Assume _LIBC is defined.
28560 * libio/stdio.c: Likewise.
28561 * libio/wfileops.c: Likewise.
28562 (_IO_wfile_sync): Assume ESPIPE is defined.
28563 * libio/wgenops.c: Assume _LIBC is defined.
28564 (save_for_wbackup): Remove internal_function.
28566 2017-08-31 Florian Weimer <fweimer@redhat.com>
28568 * malloc/malloc.c (top_check): Change return type to void. Remove
28570 * malloc/hooks.c (top_check): Likewise.
28571 (malloc_check, realloc_check, memalign_check): Adjust.
28573 2017-08-30 Joseph Myers <joseph@codesourcery.com>
28576 * sysdeps/arm/sys/ucontext.h: Do not include <bits/sigcontext.h>.
28577 * sysdeps/generic/sys/ucontext.h: Add comment about use of struct
28578 sigcontext and namespace requirements.
28579 * sysdeps/i386/sys/ucontext.h: Do not include <bits/sigcontext.h>.
28580 * sysdeps/m68k/sys/ucontext.h: Likewise.
28581 * sysdeps/mips/sys/ucontext.h: Likewise. Include <bits/types.h>.
28582 * sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h: Do not include
28583 <bits/sigcontext.h>.
28584 (__ctx): Define earlier.
28585 (mcontext_t): Define structure contents rather than using struct
28587 * sysdeps/unix/sysv/linux/aarch64/ucontext_i.sym (oEXTENSION): Use
28588 __glibc_reserved1 instead of __reserved.
28589 * sysdeps/unix/sysv/linux/alpha/sys/ucontext.h: Do not include
28590 <bits/sigcontext.h>.
28591 (__ctx): Define earlier.
28592 (mcontext_t): Define structure contents rather than using struct
28594 * sysdeps/unix/sysv/linux/alpha/ucontext-offsets.sym: Use
28595 mcontext_t instead of struct sigcontext.
28596 * sysdeps/unix/sysv/linux/arm/sys/ucontext.h: Do not include
28597 <bits/sigcontext.h>.
28598 (__ctx): Define earlier.
28599 (mcontext_t): Define structure contents rather than using struct
28601 * sysdeps/unix/sysv/linux/hppa/sys/ucontext.h: Do not include
28602 <bits/sigcontext.h>.
28603 (__ctx): Define earlier.
28604 (mcontext_t): Define structure contents rather than using struct
28606 * sysdeps/unix/sysv/linux/ia64/makecontext.c (__makecontext): Use
28607 mcontext_t instead of struct sigcontext.
28608 * sysdeps/unix/sysv/linux/ia64/sigcontext-offsets.sym: Use
28609 mcontext_t instead of struct sigcontext.
28610 * sysdeps/unix/sysv/linux/ia64/sys/ucontext.h: Do not include
28611 <bits/sigcontext.h>.
28612 (__ctx): New macro.
28613 (struct __ia64_fpreg_mcontext): New type.
28614 (mcontext_t): Define structure contents rather than using struct
28616 (_SC_GR0_OFFSET): Use mcontext_t instead of struct sigcontext.
28617 (uc_sigmask): Define using __ctx.
28618 (uc_stack): Likewise.
28619 * sysdeps/unix/sysv/linux/ia64/sys/procfs.h: Include
28620 <bits/sigcontext.h>.
28621 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
28622 * sysdeps/unix/sysv/linux/m68k/sys/ucontext.h: Do not include
28623 <bits/sigcontext.h>.
28624 * sysdeps/unix/sysv/linux/microblaze/sys/ucontext.h: New file.
28625 * sysdeps/unix/sysv/linux/mips/sys/ucontext.h: Do not include
28626 <bits/sigcontext.h>.
28627 * sysdeps/unix/sysv/linux/nios2/sys/ucontext.h: Do not include
28628 <bits/sigcontext.h>.
28629 * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Do not include
28630 <bits/sigcontext.h>.
28631 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Do not include
28632 <bits/sigcontext.h>.
28633 * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: Do not include
28634 <bits/sigcontext.h>.
28635 * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h: Do not include
28636 <bits/sigcontext.h>.
28637 * sysdeps/unix/sysv/linux/tile/sys/ucontext.h: Do not include
28638 <bits/sigcontext.h>.
28639 (__ctx): Define earlier.
28640 (mcontext_t): Define structure contents rather than using struct
28642 * sysdeps/unix/sysv/linux/x86/sys/ucontext.h: Do not include
28643 <bits/sigcontext.h>. Include <bits/types.h>.
28644 * conform/Makefile (test-xfail-XPG42/signal.h/conform): Remove.
28645 (test-xfail-XPG42/sys/wait.h/conform): Likewise.
28646 (test-xfail-XPG42/ucontext.h/conform): Likewise.
28647 (test-xfail-UNIX98/signal.h/conform): Likewise.
28648 (test-xfail-UNIX98/sys/wait.h/conform): Likewise.
28649 (test-xfail-UNIX98/ucontext.h/conform): Likewise.
28650 (test-xfail-XOPEN2K/signal.h/conform): Likewise.
28651 (test-xfail-XOPEN2K/sys/wait.h/conform): Likewise.
28652 (test-xfail-XOPEN2K/ucontext.h/conform): Likewise.
28653 (test-xfail-POSIX2008/signal.h/conform): Likewise.
28654 (test-xfail-POSIX2008/sys/wait.h/conform): Likewise.
28655 (test-xfail-XOPEN2K8/signal.h/conform): Likewise.
28656 (test-xfail-XOPEN2K8/sys/wait.h/conform): Likewise.
28658 2017-08-30 Florian Weimer <fweimer@redhat.com>
28660 * malloc/dynarray_emplace_enlarge.c
28661 (__libc_dynarray_emplace_enlarge): Set errno on overflow.
28662 * malloc/dynarray_resize.c (__libc_dynarray_resize): Likewise.
28663 * malloc/tst-dynarray.c (test_long_overflow): New function.
28664 (do_test): Call it.
28666 2017-08-30 Florian Weimer <fweimer@redhat.com>
28668 * malloc/malloc.c (ARENA_CORRUPTION_BIT, arena_is_corrupt)
28669 (set_arena_corrupt): Remove definitions.
28670 (mtrim): Do not check for corrupt arena.
28671 * malloc/arena.c (arena_lock, reused_arena, arena_get_retry):
28674 2017-08-30 Florian Weimer <fweimer@redhat.com>
28677 * malloc/arena.c (TUNABLE_CALLBACK set_mallopt_check): Do not set
28679 (ptmalloc_init): Do not set or use check_action.
28680 * malloc/hooks.c (malloc_check_get_size, realloc_check): Adjust
28681 call to malloc_printerr. Remove return statement.
28682 (free_check): Likewise. Remove arena unlock.
28683 (top_check): Update comment. Adjust call to malloc_printerr.
28684 Remove heap repair code.
28685 * malloc/malloc.c (unlink): Adjust calls to malloc_printerr.
28686 (DEFAULT_CHECK_ACTION, check_action): Remove definitions.
28687 (sysmalloc): Adjust call to malloc_printerr.
28688 (munmap_chunk, __libc_realloc): Likewise. Remove return
28690 (_int_malloc, int_realloc): Likewise. Remove errstr variable.
28691 Remove errout label and corresponding gotos.
28692 (_int_free): Likewise. Remove arena unlock.
28693 (do_set_mallopt_check): Do not set check_action.
28694 (malloc_printerr): Adjust parameter list. Do not mark arena as
28696 * manual/memory.texi (Malloc Tunable Parameters): Remove TODO
28698 * manual/probes.texi (Memory Allocation Probes): Remove
28699 memory_mallopt_check_action.
28701 2017-08-30 Steve Ellcey <sellcey@cavium.com>
28703 * sysdeps/unix/sysv/linux/aarch64/makecontext.c (__makecontext):
28704 Use pointer to uint64_t instead of long int for sp.
28706 2017-08-30 Florian Weimer <fweimer@redhat.com>
28709 * malloc/malloc.c (malloc_printerr): Always terminate the process,
28710 without printing a backtrace. Do not leak any information in the
28712 * manual/memory.texi (Heap Consistency Checking): Update.
28713 * manual/tunables.texi (Memory Allocation Tunables): Likewise.
28715 2017-08-30 Florian Weimer <fweimer@redhat.com>
28717 Do not scale NPTL tests with available number of CPUs.
28718 * nptl/tst-cond16.c (count): Set to constant value of 8.
28719 * nptl/tst-cond18.c (count): Likewise.
28721 2017-08-29 Joseph Myers <joseph@codesourcery.com>
28724 * sysdeps/m68k/m680x0/fpu/bits/mathinline.h (__inline_functions):
28725 Define to take a second argument that is a macro that
28726 concatentates a suffix, not the suffix itself.
28727 (__CONCAT_d): New macro.
28728 (__CONCAT_f): Likewise.
28729 (__CONCAT_l): Likewise.
28731 2017-08-29 Paul Pluzhnikov <ppluzhnikov@google.com>
28733 * stdlib/tst-atexit-common.c (do_test): Test handler inheritance
28736 2017-08-29 Adhemerval Zanella <adhemerval.zanella@linaro.org>
28737 Aurelien Jarno <aurelien@aurel32.net>
28738 Maciej W. Rozycki <macro@imgtec.com>
28741 * sysdeps/unix/sysv/linux/mips/mips32/mips16/Makefile
28742 [subdir = misc] (sysdep_routines): Remove `mips16-syscall5',
28743 `mips16-syscall6' and `mips16-syscall7'.
28744 (CFLAGS-mips16-syscall5.c, CFLAGS-mips16-syscall6.c)
28745 (CFLAGS-mips16-syscall7.c): Remove.
28746 * sysdeps/unix/sysv/linux/mips/mips32/mips16/Versions (libc):
28747 Remove `__mips16_syscall5', `__mips16_syscall6' and
28748 `__mips16_syscall7'.
28749 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall0.c
28750 (__mips16_syscall0): Rename `__mips16_syscall_return' to
28751 `__mips_syscall_return'.
28752 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall1.c
28753 (__mips16_syscall1): Likewise.
28754 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall2.c
28755 (__mips16_syscall2): Likewise.
28756 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall3.c
28757 (__mips16_syscall3): Likewise.
28758 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall4.c
28759 (__mips16_syscall4): Likewise.
28760 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall5.c:
28762 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall6.c:
28764 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall7.c:
28766 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall.h
28767 (__mips16_syscall5): Expand to `__mips_syscall5' rather than
28768 `__mips16_syscall5'. Remove prototype.
28769 (__mips16_syscall6): Expand to `__mips_syscall6' rather than
28770 `__mips16_syscall6'. Remove prototype.
28771 (__mips16_syscall7): Expand to `__mips_syscall7' rather than
28772 `__mips16_syscall7'. Remove prototype.
28773 (__nomips16, __mips16_syscall_return): Move to...
28774 * sysdeps/unix/sysv/linux/mips/mips32/sysdep.h
28775 (__nomips16, __mips_syscall_return): ... here.
28776 [__mips16] (INTERNAL_SYSCALL_NCS): Rename
28777 `__mips16_syscall_return' to `__mips_syscall_return'.
28778 [__mips16] (INTERNAL_SYSCALL_MIPS16): Pass `number' to
28779 `internal_syscall##nr'.
28780 [!__mips16] (INTERNAL_SYSCALL): Pass `SYS_ify (name)' to
28781 `internal_syscall##nr'.
28782 (FORCE_FRAME_POINTER): Remove.
28783 (__mips_syscall5): New prototype.
28784 (internal_syscall5): Rewrite to call `__mips_syscall5'.
28785 (__mips_syscall6): New prototype.
28786 (internal_syscall6): Rewrite to call `__mips_syscall6'.
28787 (__mips_syscall7): New prototype.
28788 (internal_syscall7): Rewrite to call `__mips_syscall7'.
28789 * sysdeps/unix/sysv/linux/mips/mips32/mips-syscall5.S: New file.
28790 * sysdeps/unix/sysv/linux/mips/mips32/mips-syscall6.S: New file.
28791 * sysdeps/unix/sysv/linux/mips/mips32/mips-syscall7.S: New file.
28792 * sysdeps/unix/sysv/linux/mips/mips32/Makefile [subdir = misc]
28793 (sysdep_routines): Add libc-do-syscall.
28794 * sysdeps/unix/sysv/linux/mips/mips32/Versions (libc): Add
28795 `__mips_syscall5', `__mips_syscall6' and `__mips_syscall7'.
28797 2017-08-29 Adhemerval Zanella <adhemerval.zanella@linaro.org>
28800 * nptl/allocatestack.c [_STACK_GROWS_DOWN] (setup_stack_prot):
28801 Set to use !NEED_SEPARATE_REGISTER_STACK as well.
28802 (advise_stack_range): New function.
28803 * nptl/pthread_create.c (START_THREAD_DEFN): Move logic to mark
28804 stack non required to advise_stack_range at allocatestack.c
28806 2017-08-29 Szabolcs Nagy <szabolcs.nagy@arm.com>
28808 * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h: Use __uint64_t.
28810 2017-08-29 Florian Weimer <fweimer@redhat.com>
28813 * iconv/gconv_db.c (gen_steps): Decrement step_cnt after resetting
28814 __end_fct. Mangle __end_fct after setting it to NULL.
28815 * iconv/Makefile (tests): Add tst-gconv-init-failure.
28816 (modules-names, modules-names-tests): Add
28817 tst-gconv-init-failure-mod.
28818 (gconv-modules): New target.
28819 (tst-gconv-init-failure-mod.so): Link against libsupport.
28820 (tst-gconv-init-failure): Depend on gconv-modules,
28821 tst-gconv-init-failure-mod.so.
28822 * iconv/tst-gconv-init-failure-mod.c: New file.
28823 * iconv/tst-gconv-init-failure.c: Likewise.
28824 * iconv/test-gconv-modules: Likewise.
28826 2017-08-29 Florian Weimer <fweimer@redhat.com>
28829 * iconv/gconv_db.c (free_derivation): Remove redundant
28831 (gen_steps): Unconditionally mangle __btowc_fct after
28833 (increment_counter): Likewise. Do not call init_fct for internal
28836 2017-08-29 Joseph Myers <joseph@codesourcery.com>
28839 * math/math.h [__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0]
28840 (_MSUF_): Remove macro.
28841 [__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0] (_MSUFTO_):
28843 [__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0]
28844 (__REDIRFROM_X): New macro.
28845 [__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0] (__REDIRTO_X):
28847 * math/bits/math-finite.h (__REDIRFROM_X): Remove macro.
28848 (__REDIRTO_X): Likewise.
28849 (__MATH_REDIRCALL): Do not pass _MSUF_ or _MSUFTO_ macro
28851 (__MATH_REDIRCALL_2): Likewise.
28852 (__MATH_REDIRCALL_INTERNAL): Likewise.
28853 (__REDIRFROM (lgamma, , _MSUF_)): Likewise.
28854 (__REDIRFROM (gamma, , _MSUF_)): Likweise.
28855 (__REDIRFROM (__gamma, _r_finite, _MSUF_)): Likewise.
28856 (__REDIRFROM (tgamma, , _MSUF_)): Likewise.
28857 * math/test-finite-macros.c: New file.
28858 * math/Makefile (tests): Add test-finite-macros.
28859 (CFLAGS-test-finite-macros.c): New variable.
28861 2017-08-29 Patsy Franklin <pfrankli@redhat.com>
28862 Jeff Law <law@redhat.com>
28865 Mangle NULL pointers in iconv/gconv.
28866 * iconv/gconv_cache.c (find_module): Demangle init_fct before
28867 checking for NULL. Mangle __btowc_fct if init_fct is non-NULL.
28868 * iconv/gconv_db.c (free_derivation): Check that __shlib_handle
28869 is non-NULL before demangling the end_fct. Check for NULL
28870 end_fct after demangling.
28871 (__gconv_release_step): Demangle the end_fct before checking
28872 it for NULL. Remove assert on __shlibc_handle != NULL.
28873 (gen_steps): Don't check btowc_fct for NULL before mangling.
28874 Demangle init_fct before checking for NULL.
28875 (increment_counter): Likewise.
28876 * gconv_dl.c (__gconv_find_shlib): Don't check init_fct or
28877 end_fct for NULL before mangling.
28878 * wcsmbs/btowc.c (__btowc): Demangle btowc_fct before checking
28881 2017-08-29 Akhilesh Kumar <akhilesh.k@samsung.com>
28884 * locale/iso-639.def: add Morisyen.
28886 2017-08-28 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
28889 * math/math.h [defined __cplusplus && defined __SUPPORT_SNAN__]
28890 (iszero): New C++ implementation that does not use
28891 fpclassify/__MATH_TG/__builtin_types_compatible_p, when
28892 signaling nans are enabled, since __builtin_types_compatible_p
28893 is a C-only feature.
28894 * math/test-math-iszero.cc: When __HAVE_DISTINCT_FLOAT128 is
28895 defined, include ieee754_float128.h for access to the union and
28896 member ieee854_float128.ieee.
28897 [__HAVE_DISTINCT_FLOAT128] (do_test): Call check_float128.
28898 [__HAVE_DISTINCT_FLOAT128] (check_float128): New function.
28899 * sysdeps/powerpc/powerpc64le/Makefile [subdir == math]
28900 (CXXFLAGS-test-math-iszero.cc): Add -mfloat128 to the build
28901 options of test-math-zero on powerpc64le.
28903 2017-08-28 H.J. Lu <hongjiu.lu@intel.com>
28905 * sysdeps/x86_64/fpu/multiarch/e_expf.c (__redirect_ieee754_expf):
28906 Change double to float.
28908 2017-08-28 Joseph Myers <joseph@codesourcery.com>
28910 * math/math-svid-compat.h [!__ASSEMBLER__]: Make code
28912 * sysdeps/ieee754/s_lib_version.c [!defined SHARED]: Remove
28913 conditional code; define contents only for [LIBM_SVID_COMPAT].
28915 2017-08-28 Florian Weimer <fweimer@redhat.com>
28917 * sysdeps/unix/sysv/linux/aarch64/Makefile (abi-lp64-options)
28918 (abi-lp64_be-options): Remove.
28919 * sysdeps/unix/sysv/linux/arm/Makefile (abi-soft-options)
28920 (abi-hard-options): Likewise.
28921 * sysdeps/unix/sysv/linux/mips/Makefile(abi-o32_soft-options)
28922 (abi-o32_hard-options, abi-o32_soft_2008-options)
28923 (abi-o32_hard_2008-options, abi-n32_soft-options)
28924 (abi-n32_hard-options, abi-n32_soft_2008-options)
28925 (abi-n32_hard_2008-options, abi-n64_soft-options)
28926 (abi-n64_hard-options, abi-n64_soft_2008-options)
28927 (abi-n64_hard_2008-options): Likewise.
28928 * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-32-options)
28929 (abi-64-v1-options, abi-64-v2-options): Likewise.
28930 * sysdeps/unix/sysv/linux/s390/Makefile (abi-32-options)
28931 (abi-64-options): Likewise.
28932 * sysdeps/unix/sysv/linux/sparc/Makefile (abi-32-options)
28933 (abi-64-options): Likewise.
28934 * sysdeps/unix/sysv/linux/tile/tilegx/Makefile (abi-32-options)
28935 (abi-64-options): Likewise.
28936 * sysdeps/unix/sysv/linux/x86/Makefile (abi-32-options)
28937 (abi-64-options, abi-x32-options): Likewise.
28939 2017-08-28 Florian Weimer <fweimer@redhat.com>
28941 Store supported list of SYS_* system calls in the source tree.
28942 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
28943 (bits/syscall.h): Generate from list file.
28944 [$(subdir) = misc] (before-compile): Add bits/syscall.h.
28945 [$(subdir) = misc] (tests): Add tst-syscall-list.
28946 [$(subdir) = misc] (tests-special): Add tst-syscall-list.out
28947 [$(subdir) = misc] (tst-syscall-list-macros.list)
28948 [$(subdir) = misc] (tst-syscall-list-nr.list)
28949 (tst-syscall-list-sys.list): Helper targets for new
28950 tst-syscall-list test.
28951 [$(subdir) = misc] (tst-syscall-list.out): Run test script
28952 tst-syscall-list.sh.
28953 [$(subdir) = misc] (bits/syscall%h, bits/syscall%d): Remove
28954 target. Do not include bits/syscall.d.
28955 [$(subdir) = misc] (generated): Do not update.
28956 * sysdeps/unix/sysv/linux/syscall-names.list: New file.
28957 * sysdeps/unix/sysv/linux/gen-syscall-h.awk: Likewise.
28958 * sysdeps/unix/sysv/linux/filter-nr-syscalls.awk: Likewise.
28959 * sysdeps/unix/sysv/linux/tst-syscall-list.sh: Likewise.
28961 2017-08-27 Paul Pluzhnikov <ppluzhnikov@google.com>
28963 * stdlib/Makefile (tst-atexit, tst-at_quick_exit): New tests.
28964 (tst-cxa_atexit, tst-on_exit): Likewise.
28965 * stdlib/Makefile (tests): Add tst-atexit, tst-at_quick_exit,
28966 tst-cxa_atexit, and tst-on_exit.
28967 * stdlib/tst-atexit-common.c: New file.
28968 * stdlib/tst-atexit.c: New file.
28969 * stdlib/tst-at_quick_exit.c: New file.
28970 * stdlib/tst-cxa_atexit.c: New file.
28971 * stdlib/tst-on_exit.c: New file.
28973 2017-08-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
28975 * sysdeps/mach/hurd/bits/sysmacros.h: New file.
28976 * mach/stack_chk_fail_local.c: New file.
28977 * hurd/stack_chk_fail_local.c: New file.
28978 * mach/Machrules ($(interface-library)-routines): Add
28979 stack_chk_fail_local.
28980 * mach/Makefile (CFLAGS-mach_init.o, CFLAGS-RPC_vm_statistics.o,
28981 CFLAGS-RPC_vm_map.o, CFLAGS-RPC_vm_protect.o,
28982 CFLAGS-RPC_i386_set_gdt.o, CFLAGS-RPC_i386_set_ldt.o,
28983 CFLAGS-RPC_task_get_special_port.o): Add $(no-stack-protector).
28984 * hurd/Makefile (CFLAGS-hurdstartup.o,
28985 CFLAGS-RPC_exec_startup_get_info.o): Add $(no-stack-protector).
28987 2017-08-25 H.J. Lu <hongjiu.lu@intel.com>
28989 * sysdeps/x86/cpu-features.h [__ASSEMBLER__]
28990 (index_cpu_*, index_arch_*): Removed.
28992 2017-08-25 Szabolcs Nagy <szabolcs.nagy@arm.com>
28994 * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h (elf_greg_t):
28995 Use uint64_t instead of unsigned long.
28997 2017-08-25 Joseph Myers <joseph@codesourcery.com>
28999 * math/tgmath.h [__HAVE_FLOAT128]: Change conditional to
29000 [__HAVE_DISTINCT_FLOAT128].
29002 * math/math.h (_MSUFTO_): Define and undefine for each inclusion
29003 of <bits/math-finite.h>.
29004 (__MATH_DECLARING_LDOUBLE): Do not define and undefine for each
29005 inclusion of <bits/math-finite.h>.
29006 * math/bits/math-finite.h (__REDIRTO_X): Do not define
29007 conditionally on [__MATH_DECLARING_LDOUBLE && defined
29008 __NO_LONG_DOUBLE_MATH].
29009 (__MATH_REDIRCALL): Use _MSUFTO_ in __REDIRTO call.
29010 (__MATH_REDIRCALL_2): Likewise.
29011 (__MATH_REDIRCALL_INTERNAL): Likewise.
29012 (__REDIRFROM (lgamma, , _MSUF_)): Likewise.
29013 (__REDIRFROM (gamma, , _MSUF_)): Likewise.
29014 (__REDIRFROM (tgamma, , _MSUF_)): Likewise.
29016 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt_compat-power5.S:
29018 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt_compat-ppc32.S:
29020 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt_compat.c:
29022 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf_compat-power5.S:
29024 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf_compat-ppc32.S:
29026 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf_compat.c:
29028 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt_compat.S: Likewise.
29029 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf_compat.S: Likewise.
29030 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt_compat.S: Likewise.
29031 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf_compat.S: Likewise.
29032 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile
29033 (libm-sysdep-routines): Remove w_sqrt_compat-power5,
29034 w_sqrt_compat-ppc32, w_sqrtf_compat-power5 and
29035 w_sqrtf_compat-ppc32.
29037 2017-08-24 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
29039 * math/math.h [defined __cplusplus] (issignaling): In the long
29040 double case, call __issignalingl only if __NO_LONG_DOUBLE_MATH
29041 is not defined. Call __issignaling, otherwise.
29043 2017-08-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
29045 * sysdeps/unix/make-syscalls.sh: Remove cancellable tagging for
29046 syscall definitions and replace __builtin_expect with __glibc_likely.
29047 * sysdeps/unix/syscall-template.S: Update comment about cancellable
29049 (SYSCALL_CANCELLABLE): Removedefinition
29050 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h (PSEUDO): Remove
29052 (PSEUDO_END): Likewise.
29053 [IS_IN (libpthread)] (CENABLE): Likewise.
29054 [IS_IN (libpthread)] (CDISABLE): Likewise.
29055 [IS_IN (libc)] (CENABLE): Likewise.
29056 [IS_IN (libc)] (CENABLE): Likewise.
29057 [IS_IN (librt)] (CDISABLE): Likewise.
29058 [IS_IN (librt)] (CDISABLE): Likewise.
29059 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
29060 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h (PSEUDO): Remove
29062 (PSEUDO_END): Likewise.
29063 [IS_IN (libpthread)] (__local_enable_asynccancel): Likewise.
29064 [IS_IN (libpthread)] (__local_disable_asynccancel): Likewise.
29065 [IS_IN (libc)] (__local_enable_asynccancel): Likewise.
29066 [IS_IN (libc)] (__local_enable_asynccancel): Likewise.
29067 [IS_IN (librt)] (__local_disable_asynccancel): Likewise.
29068 [IS_IN (librt)] (__local_disable_asynccancel): Likewise.
29069 (CENABLE): Likewise.
29070 (CDISABLE): Likewise.
29071 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
29072 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h (PSEUDO): Remove
29074 (PSEUDO_END): Likewise.
29075 [IS_IN (libpthread)] (CENABLE): Likewise.
29076 [IS_IN (libpthread)] (CDISABLE): Likewise.
29077 [IS_IN (libc)] (CENABLE): Likewise.
29078 [IS_IN (libc)] (CENABLE): Likewise.
29079 [IS_IN (librt)] (CDISABLE): Likewise.
29080 [IS_IN (librt)] (CDISABLE): Likewise.
29081 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
29082 * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h (PSEUDO): Remove
29084 (PSEUDO_END): Likewise.
29085 [IS_IN (libpthread)] (CENABLE): Likewise.
29086 [IS_IN (libpthread)] (CDISABLE): Likewise.
29087 [IS_IN (libc)] (CENABLE): Likewise.
29088 [IS_IN (libc)] (CENABLE): Likewise.
29089 [IS_IN (librt)] (CDISABLE): Likewise.
29090 [IS_IN (librt)] (CDISABLE): Likewise.
29091 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
29092 * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h (PSEUDO): Remove
29094 (PSEUDO_END): Likewise.
29095 [IS_IN (libpthread)] (CENABLE): Likewise.
29096 [IS_IN (libpthread)] (CDISABLE): Likewise.
29097 [IS_IN (libc)] (CENABLE): Likewise.
29098 [IS_IN (libc)] (CENABLE): Likewise.
29099 [IS_IN (librt)] (CDISABLE): Likewise.
29100 [IS_IN (librt)] (CDISABLE): Likewise.
29101 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
29102 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (PSEUDO): Remove
29104 (PSEUDO_END): Likewise.
29105 [IS_IN (libpthread)] (CENABLE): Likewise.
29106 [IS_IN (libpthread)] (CDISABLE): Likewise.
29107 [IS_IN (libc)] (CENABLE): Likewise.
29108 [IS_IN (libc)] (CENABLE): Likewise.
29109 [IS_IN (librt)] (CDISABLE): Likewise.
29110 [IS_IN (librt)] (CDISABLE): Likewise.
29111 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
29112 * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h (PSEUDO): Remove
29114 (PSEUDO_END): Likewise.
29115 [IS_IN (libpthread)] (CENABLE): Likewise.
29116 [IS_IN (libpthread)] (CDISABLE): Likewise.
29117 [IS_IN (libc)] (CENABLE): Likewise.
29118 [IS_IN (libc)] (CENABLE): Likewise.
29119 [IS_IN (librt)] (CDISABLE): Likewise.
29120 [IS_IN (librt)] (CDISABLE): Likewise.
29121 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
29122 * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h (PSEUDO): Remove
29124 (PSEUDO_END): Likewise.
29125 [IS_IN (libpthread)] (CENABLE): Likewise.
29126 [IS_IN (libpthread)] (CDISABLE): Likewise.
29127 [IS_IN (libc)] (CENABLE): Likewise.
29128 [IS_IN (libc)] (CENABLE): Likewise.
29129 [IS_IN (librt)] (CDISABLE): Likewise.
29130 [IS_IN (librt)] (CDISABLE): Likewise.
29131 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
29132 * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h (PSEUDO):
29134 (PSEUDO_END): Likewise.
29135 [IS_IN (libpthread)] (CENABLE): Likewise.
29136 [IS_IN (libpthread)] (CDISABLE): Likewise.
29137 [IS_IN (libc)] (CENABLE): Likewise.
29138 [IS_IN (libc)] (CENABLE): Likewise.
29139 [IS_IN (librt)] (CDISABLE): Likewise.
29140 [IS_IN (librt)] (CDISABLE): Likewise.
29141 (SINGLE_THREAD_P): Likewise.
29142 * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h (PSEUDO): Remove
29144 (PSEUDO_END): Likewise.
29145 [IS_IN (libpthread)] (CENABLE): Likewise.
29146 [IS_IN (libpthread)] (CDISABLE): Likewise.
29147 [IS_IN (libc)] (CENABLE): Likewise.
29148 [IS_IN (libc)] (CENABLE): Likewise.
29149 [IS_IN (librt)] (CDISABLE): Likewise.
29150 [IS_IN (librt)] (CDISABLE): Likewise.
29151 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
29152 * sysdeps/unix/sysv/linux/nios2/sysdep-cancel.h (PSEUDO): Remove
29154 (PSEUDO_END): Likewise.
29155 [IS_IN (libpthread)] (CENABLE): Likewise.
29156 [IS_IN (libpthread)] (CDISABLE): Likewise.
29157 [IS_IN (libc)] (CENABLE): Likewise.
29158 [IS_IN (libc)] (CENABLE): Likewise.
29159 [IS_IN (librt)] (CDISABLE): Likewise.
29160 [IS_IN (librt)] (CDISABLE): Likewise.
29161 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
29162 * sysdeps/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Remove file.
29163 * sysdeps/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
29164 * sysdeps/unix/sysv/linux/powerpc/sysdep-cancel.h: New file.
29165 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h (PSEUDO): Remove
29167 (PSEUDO_END): Likewise.
29168 [IS_IN (libpthread)] (CENABLE): Likewise.
29169 [IS_IN (libpthread)] (CDISABLE): Likewise.
29170 [IS_IN (libc)] (CENABLE): Likewise.
29171 [IS_IN (libc)] (CENABLE): Likewise.
29172 [IS_IN (librt)] (CDISABLE): Likewise.
29173 [IS_IN (librt)] (CDISABLE): Likewise.
29174 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
29175 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h (PSEUDO): Remove
29177 (PSEUDO_END): Likewise.
29178 [IS_IN (libpthread)] (CENABLE): Likewise.
29179 [IS_IN (libpthread)] (CDISABLE): Likewise.
29180 [IS_IN (libc)] (CENABLE): Likewise.
29181 [IS_IN (libc)] (CENABLE): Likewise.
29182 [IS_IN (librt)] (CDISABLE): Likewise.
29183 [IS_IN (librt)] (CDISABLE): Likewise.
29184 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
29185 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h (PSEUDO): Remove
29187 (PSEUDO_END): Likewise.
29188 [IS_IN (libpthread)] (CENABLE): Likewise.
29189 [IS_IN (libpthread)] (CDISABLE): Likewise.
29190 [IS_IN (libc)] (CENABLE): Likewise.
29191 [IS_IN (libc)] (CENABLE): Likewise.
29192 [IS_IN (librt)] (CDISABLE): Likewise.
29193 [IS_IN (librt)] (CDISABLE): Likewise.
29194 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
29195 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Remove file.
29196 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
29197 * sysdeps/unix/sysv/linux/sparc/sysdep-cancel.h: New file.
29198 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h (PSEUDO): Remove
29200 (PSEUDO_END): Likewise.
29201 [IS_IN (libpthread)] (CENABLE): Likewise.
29202 [IS_IN (libpthread)] (CDISABLE): Likewise.
29203 [IS_IN (libc)] (CENABLE): Likewise.
29204 [IS_IN (libc)] (CENABLE): Likewise.
29205 [IS_IN (librt)] (CDISABLE): Likewise.
29206 [IS_IN (librt)] (CDISABLE): Likewise.
29207 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
29208 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h (PSEUDO): Remove
29210 (PSEUDO_END): Likewise.
29211 [IS_IN (libpthread)] (CENABLE): Likewise.
29212 [IS_IN (libpthread)] (CDISABLE): Likewise.
29213 [IS_IN (libc)] (CENABLE): Likewise.
29214 [IS_IN (libc)] (CENABLE): Likewise.
29215 [IS_IN (librt)] (CDISABLE): Likewise.
29216 [IS_IN (librt)] (CDISABLE): Likewise.
29217 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
29219 2017-08-24 Szabolcs Nagy <szabolcs.nagy@arm.com>
29221 * sysdeps/ieee754/dbl-64/Makefile: Don't override CFLAGS.
29223 2017-08-23 H.J. Lu <hongjiu.lu@intel.com>
29225 * sysdeps/x86_64/fpu/libm-test-ulps: Regenerated.
29227 2017-08-23 H.J. Lu <hongjiu.lu@intel.com>
29230 * string/stratcliff.c (do_test): Declare size, nchars, inner,
29231 middle and outer with size_t instead of int. Repleace %d and
29232 %Zd with %zu in printf. Update "MAX (0, nchars - 128)" and
29233 "MAX (outer, nchars - 64)" to support unsigned outer and
29234 nchars. Also exit loop when outer == 0.
29236 2017-08-23 Adhemerval Zanella <adhemerval.zanella@linaro.org>
29238 * include/fcntl.h (__fcntl_nocancel): Remove definition.
29239 * include/signal.h (__sigsuspend_nocancel): Likewise.
29240 * include/time.h (__nanosleep_nocancel): Likewise.
29241 * sysdeps/generic/not-cancel.h (__fcntl_nocancel): New macro.
29242 * login/utmp_file.c: Include non cancellable syscall header.
29243 * sysdeps/unix/sysv/linux/not-cancel.h (__fcntl_nocancel): New
29246 2017-08-23 H.J. Lu <hongjiu.lu@intel.com>
29248 * sysdeps/x86_64/fpu/svml_d_sincos8_core.S: Replace AVX512F
29249 .byte sequences with AVX512F instructions.
29250 * sysdeps/x86_64/fpu/svml_d_wrapper_impl.h: Likewise.
29251 * sysdeps/x86_64/fpu/svml_s_sincosf16_core.S: Likewise.
29252 * sysdeps/x86_64/fpu/svml_s_wrapper_impl.h: Likewise.
29253 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos8_core_avx512.S:
29255 * sysdeps/x86_64/fpu/multiarch/svml_s_sincosf16_core_avx512.S:
29258 2017-08-22 Szabolcs Nagy <szabolcs.nagy@arm.com>
29259 Steve Ellcey <sellcey@cavium.com>
29261 * sysdeps/aarch64/dl-tlsdesc.S (_dl_tlsdesc_dynamic):
29262 Use PTR_REG macro in cmp instruction.
29264 2017-08-22 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
29266 * include/libc-symbols.h: [!defined HAVE_GCC_IFUNC] (__ifunc):
29267 Change the return type of the ifunc resolver to match the return
29268 type of the target function.
29270 2017-08-22 Adhemerval Zanella <adhemerval.zanella@linaro.org>
29272 * sysdeps/unix/sysv/linux/x86_64/syscalls.list (pread64): Remove.
29273 (preadv64): Likewise.
29274 (pwrite64(: Likewise.
29275 (pwritev64): Likewise.
29277 * sysdeps/unix/sysv/linux/x86_64/sysdep.h
29278 (INTERNAL_SYSCALL_NCS_TYPES): Remove define.
29279 (LOAD_ARGS_0): Likewise.
29280 (LOAD_ARGS_1): Likewise.
29281 (LOAD_ARGS_2): Likewise.
29282 (LOAD_ARGS_3): Likewise.
29283 (LOAD_ARGS_4): Likewise.
29284 (LOAD_ARGS_5): Likewise.
29285 (LOAD_ARGS_6): Likewise.
29286 (LOAD_REGS_0): Likewise.
29287 (LOAD_REGS_1): Likewise.
29288 (LOAD_REGS_2): Likewise.
29289 (LOAD_REGS_3): Likewise.
29290 (LOAD_REGS_4): Likewise.
29291 (LOAD_REGS_5): Likewise.
29292 (LOAD_REGS_6): Likewise.
29293 (ASM_ARGS_0): Likewise.
29294 (ASM_ARGS_1): Likewise.
29295 (ASM_ARGS_2): Likewise.
29296 (ASM_ARGS_3): Likewise.
29297 (ASM_ARGS_4): Likewise.
29298 (ASM_ARGS_5): Likewise.
29299 (ASM_ARGS_6): Likewise.
29300 (LOAD_ARGS_TYPES_1): Likewise.
29301 (LOAD_ARGS_TYPES_2): Likewise.
29302 (LOAD_ARGS_TYPES_3): Likewise.
29303 (LOAD_ARGS_TYPES_4): Likewise.
29304 (LOAD_ARGS_TYPES_5): Likewise.
29305 (LOAD_ARGS_TYPES_6): Likewise.
29306 (LOAD_REGS_TYPES_1): Likewise.
29307 (LOAD_REGS_TYPES_2): Likewise.
29308 (LOAD_REGS_TYPES_3): Likewise.
29309 (LOAD_REGS_TYPES_4): Likewise.
29310 (LOAD_REGS_TYPES_5): Likewise.
29311 (LOAD_REGS_TYPES_6): Likewise.
29312 (TYPEFY): New define.
29313 (ARGIFY): Likewise.
29314 (internal_syscall0): Likewise.
29315 (internal_syscall1): Likewise.
29316 (internal_syscall2): Likewise.
29317 (internal_syscall3): Likewise.
29318 (internal_syscall4): Likewise.
29319 (internal_syscall5): Likewise.
29320 (internal_syscall6): Likewise.
29321 * sysdeps/unix/sysv/linux/x86_64/x32/times.c
29322 (INTERNAL_SYSCALL_NCS): Remove define.
29323 (internal_syscall1): Add define.
29325 2017-08-22 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
29327 * math/w_remainder_compat.c: Remove duplicate inclusion of
29328 math-svid-compat.h.
29329 * math/w_remainderf_compat.c: Likewise.
29330 * math/w_remainderl_compat.c: Likewise.
29332 2017-08-22 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
29334 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
29336 2017-08-22 Joseph Myers <joseph@codesourcery.com>
29339 * math/tgmath.h (__floating_type): Simplify definitions.
29340 (__real_integer_type): New macro.
29341 (__complex_integer_type): Likewise.
29342 (__expr_is_real): Likewise.
29343 (__tgmath_real_type_sub): Update comment to describe handling of
29345 (__tgmath_complex_type_sub): New macro.
29346 (__tgmath_complex_type): Likewise.
29347 [__HAVE_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
29348 (__TGMATH_CF128): Use __expr_is_real.
29349 (__TGMATH_UNARY_REAL_IMAG): Use __tgmath_complex_type and
29351 (__TGMATH_BINARY_REAL_IMAG): Likewise.
29352 (__TGMATH_UNARY_REAL_IMAG_RET_REAL): Use __expr_is_real.
29353 * math/gen-tgmath-tests.py (Type.create_type): Create complex
29356 2017-08-22 Adhemerval Zanella <adhemerval.zanella@linaro.org>
29358 * sysdeps/generic/not-cancel.h (sigsuspend_not_cancel): Remove
29360 * sysdeps/mach/hurd/sigsuspend.c (sigsuspend_not_cancel): Remove
29362 * sysdeps/unix/sysv/linux/not-cancel.h (sigsuspend_not_cancel):
29365 * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock): Replace
29366 nanosleep_not_cancel with __nanosleep_nocancel.
29367 * sysdeps/generic/not-cancel.h (nanosleep_not_cancel): Remove macro.
29368 (__nanosleep_nocancel): New macro.
29369 * sysdeps/unix/sysv/linux/nanosleep.c (__nanosleep_nocancel): New
29371 * sysdeps/unix/sysv/linux/not-cancel.h (nanosleep_not_cancel): Remove
29373 (__nanosleep_nocancel): New prototype.
29375 * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full): Replace
29376 pause_not_cancel with __pause_nocancel.
29377 * sysdeps/generic/not-cancel.h (pause_not_cancel): Remove macro.
29378 (__pause_nocancel): New macro.
29379 * sysdeps/unix/sysv/linux/not-cancel.h (pause_not_cancel): Remove
29381 (__pause_nocancel): New prototype.
29382 * sysdeps/unix/sysv/linux/pause.c (__pause_nocancel): New function.
29384 2017-08-22 Martin Sebor <msebor@redhat.com>
29386 * include/libc-symbols.h (__ifunc_resolver): Declare resolver
29387 to return a pointer to the same type as the target function.
29389 2017-08-22 H.J. Lu <hongjiu.lu@intel.com>
29393 * include/printf.h (__printf_fphex): Add attribute_hidden.
29394 (__guess_grouping): New prototype.
29395 * stdio-common/printf_fp.c (__guess_grouping): Removed.
29396 * stdio-common/reg-printf.c (__register_printf_specifier): Add
29397 libc_hidden_proto and libc_hidden_def.
29398 * stdlib/strfmon_l.c (__guess_grouping): Removed.
29399 (__vstrfmon_l): Remove the third argument passed to
29402 2017-08-22 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
29404 * math/math.h [defined __cplusplus] (issignaling): Provide a C++
29405 definition for issignaling that does not rely on __MATH_TG,
29406 since __MATH_TG uses __builtin_types_compatible_p, which is only
29407 available in C mode.
29408 (CFLAGS-test-math-issignaling.cc): New variable.
29409 * math/Makefile [CXX] (tests): Add test-math-issignaling.
29410 * math/test-math-issignaling.cc: New test for C++ implementation
29411 of type-generic issignaling.
29412 * sysdeps/powerpc/powerpc64le/Makefile [subdir == math]
29413 (CXXFLAGS-test-math-issignaling.cc): Add -mfloat128 to the build
29414 options of test-math-issignaling on powerpc64le.
29416 2017-08-22 H.J. Lu <hongjiu.lu@intel.com>
29418 * include/libc-symbols.h (__hidden_proto_hiddenattr): New for
29420 (hidden_proto): Likewise.
29421 (hidden_tls_proto): Likewise.
29422 (__hidden_proto): Likewise.
29424 2017-08-22 Florian Weimer <fweimer@redhat.com>
29426 math: Statically link tests of internal functionality.
29427 * math/Makefile (tests): Remove atest-exp, atest-sincos,
29429 (tests-static): Add atest-exp, atest-sincos, atest-exp2.
29430 (gmp-objs): Remove assignment.
29431 (atest-exp, atest-sincos, atest-exp2): Remove targets.
29433 2017-08-22 Joseph Myers <joseph@codesourcery.com>
29436 * sysdeps/unix/sysv/linux/sparc/bits/long-double.h: Remove file
29438 * sysdeps/unix/sysv/linux/sparc/sparc32/bits/long-double.h:
29440 * sysdeps/unix/sysv/linux/sparc/sparc64/bits/long-double.h:
29443 * assert/Makefile [$(have-cxx-thread_local)]: Move conditional
29444 variable definitions above inclusion of ../Rules.
29446 2017-08-21 Joseph Myers <joseph@codesourcery.com>
29448 * sysdeps/ieee754/k_standard.c (__kernel_standard): Add default
29449 case calling __builtin_unreachable.
29451 2017-08-21 Adhemerval Zanella <adhemerval.zanella@linaro.org>
29453 * libio/ioopen.c (_IO_waitpid): Replace waitpid_not_cancel with
29454 __waitpid_nocancel.
29455 * sysdeps/generic/not-cancel.h (waitpid_not_cancel): Remove macro.
29456 (__waitpid_nocancel): New macro.
29457 * sysdeps/unix/sysv/linux/not-cancel.h (waitpid_not_cancel): Remove
29459 (__waitpid_nocancel): Replace macro with a function.
29460 * sysdeps/unix/sysv/linux/waitpid.c (__waitpid_nocancel): New
29463 * login/utmp_file.c (timeout_handler): Replace fcntl_not_cancel with
29465 * sysdeps/generic/not-cancel.h (fcntl_not_cancel): Remove macro.
29466 * sysdeps/unix/sysv/linux/not-cancel.h (fcntl_not_cancel): Likewise.
29468 * gmon/gmon.c (write_hist): Replace writev_not_cancel_no_status with
29469 __writev_nocancel_nostatus.
29470 (write_call_graph): Likewise.
29471 (write_bb_counts): Likewise.
29472 * resolv/herror.c (herror): Likewise.
29473 * sysdeps/generic/not-cancel.h (writev_not_cancel_no_status): Remove
29475 (__writev_nocancel_nostatus): New macro.
29476 * sysdeps/unix/sysv/linux/not-cancel.h (writev_not_cancel_no_status):
29478 (__writev_nocancel_nostatus): New function.
29480 2017-08-21 Joseph Myers <joseph@codesourcery.com>
29483 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
29485 * include/libc-symbols.h (__hidden_proto_hiddenattr): New for
29487 (hidden_proto): Likewise.
29488 (hidden_tls_proto): Likewise.
29489 (__hidden_proto): Likewise.
29492 * sysdeps/sparc/sparc32/fpu/w_sqrt_compat.S: Remove file.
29493 * sysdeps/sparc/sparc32/fpu/w_sqrtf_compat.S: Likewise.
29494 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt_compat-vis3.S:
29496 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt_compat.S:
29498 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf_compat-vis3.S:
29500 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf_compat.S:
29502 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt_compat.S : Likewise.
29503 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf_compat.S: Likewise.
29504 * sysdeps/sparc/sparc64/fpu/w_sqrt_compat.S: Likewise.
29505 * sysdeps/sparc/sparc64/fpu/w_sqrtf_compat.S: Likewise.
29506 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Add
29507 GLIBC_2.0 sqrtl symbol.
29509 * math/math.h [__USE_MISC] (_LIB_VERSION_TYPE): Remove.
29510 [__USE_MISC] (_LIB_VERSION): Likewise.
29511 [__USE_MISC] (struct exception): Likewise.
29512 [__USE_MISC] (matherr): Likewise.
29513 [__USE_MISC] (DOMAIN): Likewise.
29514 [__USE_MISC] (SING): Likewise.
29515 [__USE_MISC] (OVERFLOW): Likewise.
29516 [__USE_MISC] (UNDERFLOW): Likewise.
29517 [__USE_MISC] (TLOSS): Likewise.
29518 [__USE_MISC] (PLOSS): Likewise.
29519 [__USE_MISC] (HUGE): Likewise.
29520 [__USE_XOPEN] (MAXFLOAT): Define even if [__USE_MISC].
29521 * math/math-svid-compat.h: New file.
29522 * conform/linknamespace.pl (@whitelist): Remove matherr, matherrf
29524 * include/math.h [!_ISOMAC] (__matherr): Remove.
29525 * manual/arith.texi (FP Exceptions): Do not document matherr.
29526 * math/Makefile (tests): Change test-matherr to test-matherr-3.
29527 (tests-internal): New variable.
29528 (install-lib): Do not add libieee.a.
29529 (non-lib.a): Likewise.
29530 (extra-objs): Do not add libieee.a and ieee-math.o.
29531 (CPPFLAGS-s_lib_version.c): Remove variable.
29532 ($(objpfx)libieee.a): Remove rule.
29533 ($(addprefix $(objpfx), $(tests-internal)): Depend on $(libm).
29534 * math/ieee-math.c: Remove.
29535 * math/libm-test-support.c (matherr): Remove.
29536 * math/test-matherr.c: Use <support/test-driver.c>. Add copyright
29537 and license notices. Include <math-svid-compat.h> and
29539 (matherr): Undefine as macro. Use compat_symbol_reference.
29540 (_LIB_VERSION): Likewise.
29541 * math/test-matherr-2.c: New file.
29542 * math/test-matherr-3.c: Likewise.
29543 * sysdeps/generic/math_private.h (__kernel_standard): Remove
29545 (__kernel_standard_f): Likewise.
29546 (__kernel_standard_l): Likewise.
29547 * sysdeps/ieee754/s_lib_version.c: Do not include <math.h> or
29548 <math_private.h>. Include <math-svid-compat.h>.
29549 (_LIB_VERSION): Undefine as macro.
29550 (_LIB_VERSION_INTERNAL): Always initialize to _POSIX_. Define
29551 only if [LIBM_SVID_COMPAT || !defined SHARED]. If
29552 [LIBM_SVID_COMPAT], use compat_symbol.
29553 * sysdeps/ieee754/s_matherr.c: Do not include <math.h> or
29554 <math_private.h>. Include <math-svid-compat.h>.
29555 (matherr): Undefine as macro.
29556 (__matherr): Define only if [LIBM_SVID_COMPAT]. Use
29558 * sysdeps/ia64/fpu/libm_error.c: Include <math-svid-compat.h>.
29559 [_LIBC && LIBM_SVID_COMPAT] (matherrf): Use
29560 compat_symbol_reference.
29561 [_LIBC && LIBM_SVID_COMPAT] (matherrl): Likewise.
29562 [_LIBC && !LIBM_SVID_COMPAT] (matherrf): Define as macro.
29563 [_LIBC && !LIBM_SVID_COMPAT] (matherrl): Likewise.
29564 * sysdeps/ia64/fpu/libm_support.h: Include <math-svid-compat.h>.
29565 (MATHERR_D): Remove declaration.
29566 [!_LIBC] (_LIB_VERSION_TYPE): Likewise
29567 [!LIBM_BUILD] (_LIB_VERSIONIMF): Likewise.
29568 [LIBM_BUILD] (pmatherrf): Likewise.
29569 [LIBM_BUILD] (pmatherr): Likewise.
29570 [LIBM_BUILD] (pmatherrl): Likewise.
29571 (DOMAIN): Likewise.
29573 (OVERFLOW): Likewise.
29574 (UNDERFLOW): Likewise.
29577 * sysdeps/ia64/fpu/s_matherrf.c: Include <math-svid-compat.h>.
29578 (__matherrf): Define only if [LIBM_SVID_COMPAT]. Use
29580 * sysdeps/ia64/fpu/s_matherrl.c: Include <math-svid-compat.h>.
29581 (__matherrl): Define only if [LIBM_SVID_COMPAT]. Use
29583 * math/lgamma-compat.h: Include <math-svid-compat.h>.
29584 * math/w_acos_compat.c: Likewise.
29585 * math/w_acosf_compat.c: Likewise.
29586 * math/w_acosh_compat.c: Likewise.
29587 * math/w_acoshf_compat.c: Likewise.
29588 * math/w_acoshl_compat.c: Likewise.
29589 * math/w_acosl_compat.c: Likewise.
29590 * math/w_asin_compat.c: Likewise.
29591 * math/w_asinf_compat.c: Likewise.
29592 * math/w_asinl_compat.c: Likewise.
29593 * math/w_atan2_compat.c: Likewise.
29594 * math/w_atan2f_compat.c: Likewise.
29595 * math/w_atan2l_compat.c: Likewise.
29596 * math/w_atanh_compat.c: Likewise.
29597 * math/w_atanhf_compat.c: Likewise.
29598 * math/w_atanhl_compat.c: Likewise.
29599 * math/w_cosh_compat.c: Likewise.
29600 * math/w_coshf_compat.c: Likewise.
29601 * math/w_coshl_compat.c: Likewise.
29602 * math/w_exp10_compat.c: Likewise.
29603 * math/w_exp10f_compat.c: Likewise.
29604 * math/w_exp10l_compat.c: Likewise.
29605 * math/w_exp2_compat.c: Likewise.
29606 * math/w_exp2f_compat.c: Likewise.
29607 * math/w_exp2l_compat.c: Likewise.
29608 * math/w_fmod_compat.c: Likewise.
29609 * math/w_fmodf_compat.c: Likewise.
29610 * math/w_fmodl_compat.c: Likewise.
29611 * math/w_hypot_compat.c: Likewise.
29612 * math/w_hypotf_compat.c: Likewise.
29613 * math/w_hypotl_compat.c: Likewise.
29614 * math/w_j0_compat.c: Likewise.
29615 * math/w_j0f_compat.c: Likewise.
29616 * math/w_j0l_compat.c: Likewise.
29617 * math/w_j1_compat.c: Likewise.
29618 * math/w_j1f_compat.c: Likewise.
29619 * math/w_j1l_compat.c: Likewise.
29620 * math/w_jn_compat.c: Likewise.
29621 * math/w_jnf_compat.c: Likewise.
29622 * math/w_jnl_compat.c: Likewise.
29623 * math/w_lgamma_main.c: Likewise.
29624 * math/w_lgamma_r_compat.c: Likewise.
29625 * math/w_lgammaf_main.c: Likewise.
29626 * math/w_lgammaf_r_compat.c: Likewise.
29627 * math/w_lgammal_main.c: Likewise.
29628 * math/w_lgammal_r_compat.c: Likewise.
29629 * math/w_log10_compat.c: Likewise.
29630 * math/w_log10f_compat.c: Likewise.
29631 * math/w_log10l_compat.c: Likewise.
29632 * math/w_log2_compat.c: Likewise.
29633 * math/w_log2f_compat.c: Likewise.
29634 * math/w_log2l_compat.c: Likewise.
29635 * math/w_log_compat.c: Likewise.
29636 * math/w_logf_compat.c: Likewise.
29637 * math/w_logl_compat.c: Likewise.
29638 * math/w_pow_compat.c: Likewise.
29639 * math/w_powf_compat.c: Likewise.
29640 * math/w_powl_compat.c: Likewise.
29641 * math/w_remainder_compat.c: Likewise.
29642 * math/w_remainderf_compat.c: Likewise.
29643 * math/w_remainderl_compat.c: Likewise.
29644 * math/w_scalb_compat.c: Likewise.
29645 * math/w_scalbf_compat.c: Likewise.
29646 * math/w_scalbl_compat.c: Likewise.
29647 * math/w_sinh_compat.c: Likewise.
29648 * math/w_sinhf_compat.c: Likewise.
29649 * math/w_sinhl_compat.c: Likewise.
29650 * math/w_sqrt_compat.c: Likewise.
29651 * math/w_sqrtf_compat.c: Likewise.
29652 * math/w_sqrtl_compat.c: Likewise.
29653 * math/w_tgamma_compat.c: Likewise.
29654 * math/w_tgammaf_compat.c: Likewise.
29655 * math/w_tgammal_compat.c: Likewise.
29656 * sysdeps/ieee754/dbl-64/w_exp_compat.c: Likewise.
29657 * sysdeps/ieee754/flt-32/w_expf_compat.c: Likewise.
29658 * sysdeps/ieee754/k_standard.c: Likewise.
29659 * sysdeps/ieee754/k_standardf.c: Likewise.
29660 * sysdeps/ieee754/k_standardl.c: Likewise.
29661 * sysdeps/ieee754/ldbl-128/w_expl_compat.c: Likewise.
29662 * sysdeps/ieee754/ldbl-128ibm/w_expl_compat.c: Likewise.
29663 * sysdeps/ieee754/ldbl-96/w_expl_compat.c: Likewise.
29664 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt_compat.S: Likewise.
29665 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf_compat.S: Likewise.
29666 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt_compat.S: Likewise.
29667 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf_compat.S: Likewise.
29668 * sysdeps/sparc/sparc32/fpu/w_sqrt_compat.S: Likewise.
29669 * sysdeps/sparc/sparc32/fpu/w_sqrtf_compat.S: Likewise.
29670 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt_compat-vis3.S:
29672 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf_compat-vis3.S:
29674 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt_compat.S: Likewise.
29675 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf_compat.S: Likewise.
29676 * sysdeps/sparc/sparc64/fpu/w_sqrt_compat.S: Likewise.
29677 * sysdeps/sparc/sparc64/fpu/w_sqrtf_compat.S: Likewise.
29679 2017-08-21 Florian Weimer <fweimer@redhat.com>
29682 Do not compile benchmark helper objects with -DMODULE_NAME=libc.
29683 * benchtests/Makefile (others-extras): Set to $(bench-extra-objs).
29684 Move before inclusion of ../Rules.
29686 2017-08-21 Florian Weimer <fweimer@redhat.com>
29689 * assert/assert.h (assert): Use static_cast (bool) for C++.
29690 Use the ternary operator in the warning branch for GNU C.
29691 * assert/Makefile (tests): Add tst-assert-c++, tst-assert-g++.
29692 (CFLAGS-tst-assert-c++.o): Compile in C++11 mode.
29693 (CFLAGS-tst-assert-g++.o): Compile in GnU C++11 mode.
29694 (LDLIBS-tst-assert-c++, LDLIBS-tst-assert-g++): Link with libstdc++.
29695 * assert/tst-assert-c++.cc, assert/tst-assert-g++.cc: New files.
29697 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
29700 * sysdeps/unix/sysv/linux/x86_64/init-first.c
29701 (__syscall_clock_gettime): Add attribute_hidden.
29702 * sysdeps/unix/sysv/linux/x86_64/makecontext.c
29703 (__start_context): Likewise.
29705 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
29707 * include/libc-symbols.h (__hidden_proto_hiddenattr): New for
29709 (hidden_proto): Likewise.
29710 (hidden_tls_proto): Likewise.
29711 (__hidden_proto): Likewise.
29713 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
29715 * include/libc-symbols.h (attribute_hidden): Enable hidden
29716 visibility in libc.a compiled with PIE.
29718 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
29721 * sysdeps/unix/sysv/linux/x86/libc-vdso.h (VDSO_SYMBOL(getcpu)):
29722 Add attribute_hidden.
29724 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
29727 * Makerules (all-nonlib): Add $(others-extras).
29728 * catgets/Makefile (others-extras): New.
29729 * elf/Makefile (others-extras): Likewise.
29730 * nss/Makefile (others-extras): Likewise.
29732 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
29735 * csu/libc-start.c (__libc_multiple_libcs): Removed.
29736 * elf/dl-open.c: Include <libc-internal.h>.
29737 (__libc_multiple_libcs): Removed.
29738 * elf/dl-sysdep.c: Include <libc-internal.h> instead of
29740 * include/libc-internal.h (__libc_multiple_libcs): New.
29741 * misc/sbrk.c: Include <libc-internal.h>.
29742 (__libc_multiple_libcs): Removed.
29744 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
29747 * grp/initgroups.c (__nss_group_database): Removed.
29748 (__nss_initgroups_database): Likewise.
29749 * nscd/gai.c (__nss_hosts_database): Likewise.
29750 * nss/XXX-lookup.c (DATABASE_NAME_SYMBOL): Likewise.
29751 * posix/tst-rfc3484-2.c (__nss_hosts_database): Likewise.
29752 * posix/tst-rfc3484-3.c (__nss_hosts_database): Likewise.
29753 * posix/tst-rfc3484.c (__nss_hosts_database): Likewise.
29754 * sysdeps/posix/getaddrinfo.c (__nss_hosts_database): Likewise.
29755 * nss/getXXent.c (INTERNAL (REENTRANT_GETNAME)): Add
29757 * nss/nsswitch.c (__nss_database_custom): Define only if
29758 USE_NSCD is defined.
29759 (__nss_configure_lookup): Use __nss_database_custom only if
29760 USE_NSCD is defined.
29761 * nss/nsswitch.h (__nss_database_custom): Declare only if
29762 USE_NSCD is defined. Add attribute_hidden.
29763 (__nss_setent): Add attribute_hidden.
29764 (__nss_endent): Likewise.
29765 (__nss_getent_r): Likewise.
29766 (__nss_getent): Likewise.
29767 (DEFINE_DATABASE): Declare __nss_##arg##_database.
29769 2017-08-20 H.J. Lu <hongjiu.lu@intel.com>
29772 * sysdeps/unix/sysv/linux/i386/glob64.c (__old_glob64): Add
29773 libc_hidden_proto and libc_hidden_def.
29775 2017-08-20 H.J. Lu <hongjiu.lu@intel.com>
29778 * sysdeps/unix/sysv/linux/i386/olddirent.h (__old_readdir64):
29779 Add libc_hidden_proto.
29780 * sysdeps/unix/sysv/linux/i386/readdir64.c (__old_readdir64):
29781 Add libc_hidden_def.
29783 2017-08-20 H.J. Lu <hongjiu.lu@intel.com>
29786 * gmon/Makefile (routines): Remove bb_init_func and
29788 (elide-routines.os): Removed.
29789 * gmon/bb_exit_func.c: Likewise.
29790 * gmon/bb_init_func.c: Likewise.
29791 * include/sys/gmon.h (__bb): Likewise.
29792 (__bb_init_func): Likewise.
29793 (__bb_exit_func): Likewise.
29794 * sysdeps/alpha/bb_init_func.S: Likewise.
29796 2017-08-20 H.J. Lu <hongjiu.lu@intel.com>
29798 * debug/longjmp_chk.c (____longjmp_chk): Moved to ...
29799 * include/setjmp.h (____longjmp_chk): Here. Add
29802 2017-08-19 H.J. Lu <hongjiu.lu@intel.com>
29805 * sysdeps/x86_64/multiarch/strcspn-c.c (STRCSPN_SSE2): Add
29807 (__strspn_sse2): Likewise.
29809 2017-08-18 Adhemerval Zanella <adhemerval.zanella@linaro.org>
29811 * sysdeps/generic/not-cancel.h (close_not_cancel): Remove macro.
29812 (close_not_cancel_no_status): Likewise.
29813 (__close_nocancel): New macro.
29814 (__close_nocancel_nostatus): Likewise.
29815 * sysdeps/unix/sysv/linux/not-cancel.h (__close_nocancel): Remove
29817 (close_not_cancel): Likewise.
29818 (close_not_cancel_no_status): Likewise.
29819 (__close_nocancel): New prototype.
29820 (__close_nocancel_nostatus): New function.
29821 * sysdeps/unix/sysv/linux/close.c (__close_nocancel): New function.
29822 * catgets/open_catalog.c (__open_catalog): Replace
29823 close_not_cancel{_no_status) with __close_nocancel{_nostatus}.
29824 * gmon/gmon.c (write_gmon): Likewise.
29825 * iconv/gconv_cache.c (__gconv_load_cache): Likewise.
29826 * intl/loadmsgcat.c (close): Likewise.
29827 * io/ftw.c (open_dir_stream): Likewise.
29828 (ftw_startup): Likewise.
29829 * libio/fileops.c (_IO_file_open): Likewise.
29830 (_IO_file_close_mmap): Likewise.
29831 (_IO_file_close): Likewise.
29832 * libio/iopopen.c (_IO_dup2): Likewise.
29833 * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
29834 * locale/loadlocale.c (_nl_load_locale): Likewise.
29835 * login/utmp_file.c (pututline_file): Likewise.
29836 (endutent_file): Likewise.
29837 * misc/daemon.c (daemon): Likewise.
29838 * nscd/nscd_getai.c (__nscd_getai): Likewise.
29839 * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
29840 * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
29841 * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
29842 * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
29843 * nscd/nscd_helper.c (open_socket): Likewise.
29844 (__nscd_open_socket): Likewise.
29845 * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
29846 * nscd/nscd_netgroup.c (__nscd_setnetgrent): Likewise.
29847 (__nscd_innetgr): Likewise.
29848 * nss/nss_db/db-open.c (internal_setent): Likewise.
29849 * resolv/res-close.c (__res_iclose): Likewise.
29850 * sunrpc/pm_getmaps.c (pmap_getmaps): Likewise.
29851 * sysdeps/posix/closedir.c (__closedir): Likewise.
29852 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Likewise.
29853 * sysdeps/posix/getcwd.c (__getcwd): Likewise.
29854 * sysdeps/posix/opendir.c (tryopen_o_directory): Likewise.
29855 (opendir_tail): Likewise.
29856 * sysdeps/posix/spawni.c (__spawni_child): Likewise.
29857 * sysdeps/unix/sysv/linux/check_native.c (__check_native): Likewise.
29858 * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): Likewise.
29859 * sysdeps/unix/sysv/linux/fips-private.h (fips_enabled_p): Likewise.
29860 * sysdeps/unix/sysv/linux/gethostid.c (sethostid): Likewise.
29861 (gethostid): Likewise.
29862 * sysdeps/unix/sysv/linux/getloadavg.c (getloadavg): Likewise.
29863 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
29865 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Likewise.
29866 * sysdeps/unix/sysv/linux/grantpt.c (close_all_fds): Likewise.
29867 * sysdeps/unix/sysv/linux/i386/smp.h (is_smp_system): Likewise.
29868 * sysdeps/unix/sysv/linux/ia64/has_cpuclock.c (has_cpuclock):
29870 * sysdeps/unix/sysv/linux/if_index.c (__if_nametoindex): Likewise.
29871 * sysdeps/unix/sysv/linux/libc_fatal.c (backtrace_and_maps): Likewise.
29872 * sysdeps/unix/sysv/linux/malloc-sysdep.h (check_may_shrink_heap):
29874 * sysdeps/unix/sysv/linux/mq_notify.c (init_mq_netlink): Likewise.
29875 * sysdeps/unix/sysv/linux/pthread_getname.c (pthread_getname_np):
29877 * sysdeps/unix/sysv/linux/pthread_setname.c (pthread_setname_np):
29879 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Likewise.
29880 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Likewise.
29881 * sysdeps/unix/sysv/linux/Versions (libc) [GLIBC_PRIVATE]: Add
29884 * sysdeps/generic/not-cancel.h (openat_not_cancel): Remove macro.
29885 (openat_not_cancel_3): Likewise.
29886 (openat64_not_cancel_3): Likewise).
29887 (openat_not_cancel_3): Likewise).
29888 * sysdeps/unix/sysv/linux/not-cancel.h (openat_not_cancel): Remove
29890 (openat_not_cancel_3): Likewise.
29891 (openat64_not_cancel): Likewise.
29892 (openat64_not_cancel_3): Likewise.
29893 * sysdeps/unix/sysv/linux/openat.c (__openat_nocancel): New function.
29894 * sysdeps/unix/sysv/linux/openat64.c (__openat64_nocancel): Likewise.
29895 * io/ftw.c (open_dir_stream): Replace openat{64}_not_cancel{_3} with
29896 __open{64}_nocancel.
29897 * sysdeps/mach/hurd/opendir.c (__opendirat): Likewise.
29898 * sysdeps/posix/getcwd.c (__getcwd): Likewise.
29899 * sysdeps/posix/opendir.c (__opendirat): Likewise.
29901 2017-08-18 H.J. Lu <hongjiu.lu@intel.com>
29904 * include/argz.h (__argz_create_sep): New function prototype.
29905 (__argz_append): Likewise.
29906 (__argz_add): Likewise.
29907 (__argz_add_sep): Likewise.
29908 (__argz_delete): Likewise.
29909 (__argz_insert): Likewise.
29910 (__argz_replace): Likewise.
29911 * string/argz.h (__argz_create_sep): Removed.
29912 (__argz_append): Likewise.
29913 (__argz_add): Likewise.
29914 (__argz_add_sep): Likewise.
29915 (__argz_delete): Likewise.
29916 (__argz_insert): Likewise.
29917 (__argz_replace): Likewise.
29919 2017-08-18 H.J. Lu <hongjiu.lu@intel.com>
29921 * elf/elf.h (NT_GNU_PROPERTY_TYPE_0): New.
29922 (NOTE_GNU_PROPERTY_SECTION_NAME): Likewise.
29923 (GNU_PROPERTY_STACK_SIZE): Likewie.
29924 (GNU_PROPERTY_NO_COPY_ON_PROTECTED): Likewie.
29925 (GNU_PROPERTY_LOPROC): Likewise.
29926 (GNU_PROPERTY_HIPROC): Likewise.
29927 (GNU_PROPERTY_LOUSER): Likewise.
29928 (GNU_PROPERTY_HIUSER): Likewise.
29929 (GNU_PROPERTY_X86_ISA_1_USED): Likwise.
29930 (GNU_PROPERTY_X86_ISA_1_NEEDED): Likwise.
29931 (GNU_PROPERTY_X86_FEATURE_1_AND): Likwise.
29932 (GNU_PROPERTY_X86_ISA_1_486): Likwise.
29933 (GNU_PROPERTY_X86_ISA_1_586): Likwise.
29934 (GNU_PROPERTY_X86_ISA_1_686): Likwise.
29935 (GNU_PROPERTY_X86_ISA_1_SSE): Likwise.
29936 (GNU_PROPERTY_X86_ISA_1_SSE2): Likwise.
29937 (GNU_PROPERTY_X86_ISA_1_SSE3): Likwise.
29938 (GNU_PROPERTY_X86_ISA_1_SSSE3): Likwise.
29939 (GNU_PROPERTY_X86_ISA_1_SSE4_1): Likwise.
29940 (GNU_PROPERTY_X86_ISA_1_SSE4_2): Likwise.
29941 (GNU_PROPERTY_X86_ISA_1_AVX): Likwise.
29942 (GNU_PROPERTY_X86_ISA_1_AVX2): Likwise.
29943 (GNU_PROPERTY_X86_ISA_1_AVX512F): Likwise.
29944 (GNU_PROPERTY_X86_ISA_1_AVX512CD): Likwise.
29945 (GNU_PROPERTY_X86_ISA_1_AVX512ER): Likwise.
29946 (GNU_PROPERTY_X86_ISA_1_AVX512PF): Likwise.
29947 (GNU_PROPERTY_X86_ISA_1_AVX512VL): Likwise.
29948 (GNU_PROPERTY_X86_ISA_1_AVX512DQ): Likwise.
29949 (GNU_PROPERTY_X86_ISA_1_AVX512BW): Likwise.
29950 (GNU_PROPERTY_X86_FEATURE_1_IBT): Likwise.
29951 (GNU_PROPERTY_X86_FEATURE_1_SHSTK): Likwise.
29953 2017-08-18 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
29955 * misc/sys/cdefs.h (__HAVE_GENERIC_SELECTION): Define to 0, if
29958 2017-08-18 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
29961 * math/math.h (isinf): Check if in C or C++ mode before using
29962 __builtin_types_compatible_p, since this is a C mode feature.
29964 2017-08-18 Adhemerval Zanella <adhemerval.zanella@linaro.org>
29966 * sysdeps/generic/not-cancel.h (write_not_cancel): Remove macro.
29967 (__write_nocancel): New macro.
29968 * sysdeps/unix/sysv/linux/not-cancel.h (__write_nocancel):
29969 Rewrite as a function prototype.
29970 (write_not_cancel): Remove macro.
29971 * sysdeps/unix/sysv/linux/write.c (__write_nocancel): New function.
29972 * gmon/gmon.c (ERR): Replace write_not_cancel with __write_nocancel.
29973 (write_gmon): Likewise.
29974 * libio/fileops.c (_IO_new_file_write): Likewise.
29975 * login/utmp_file.c (pututline_file): Likewise.
29976 (updwtmp_file): Likewise.
29977 * stdio-common/psiginfo.c (psiginfo): Likewise.
29978 * sysdeps/posix/spawni.c (__spawni_child): Likewise.
29979 * sysdeps/unix/sysv/linux/gethostid.c (sethostid): Likewise.
29980 * sysdeps/unix/sysv/linux/libc_fatal.c (backtrace_and_maps):
29982 * sysdeps/unix/sysv/linux/pthread_setname.c (pthread_setname_np):
29985 * sysdeps/generic/not-cancel.h (read_not_cancel): Remove macro.
29986 (__read_nocancel): New macro.
29987 * sysdeps/unix/sysv/linux/Versions (libc) [GLIBC_PRIVATE]: Add
29989 * sysdeps/unix/sysv/linux/not-cancel.h (__read_nocancel): Remove
29991 (__read_nocancel): New prototype.
29992 * sysdeps/unix/sysv/linux/read.c (__read_nocancel): New function.
29993 * catgets/open_catalog.c (__open_catalog): Replace read_not_cancel
29994 with __read_nocancel.
29995 * intl/loadmsgcat.c (read): Likewise.
29996 * libio/fileops.c (_IO_file_read): Likewise.
29997 * locale/loadlocale.c (_nl_load_locale): Likewise.
29998 * login/utmp_file.c (getutent_r_file): Likewise.
29999 (internal_getut_r): Likewise.
30000 (getutline_r_file): Likewise.
30001 * sysdeps/unix/sysv/linux/fips-private.h (fips_enable_p): Likewise.
30002 * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Likewise.
30003 * sysdeps/unix/sysv/linux/getloadavg.c (getloadavg): Likewise.
30004 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
30006 * sysdeps/unix/sysv/linux/getsysstats.c (next_line): Likewise.
30007 * sysdeps/unix/sysv/linux/i386/smp.h (is_smp_system): Likewise.
30008 * sysdeps/unix/sysv/linux/ia64/has_cpuclock.c (has_cpuclock):
30010 * sysdeps/unix/sysv/linux/libc_fatal.c (backtrace_and_maps):
30012 * sysdeps/unix/sysv/linux/malloc-sysdep.h (check_may_shrink_heap):
30014 * sysdeps/unix/sysv/linux/pthread_getname.c (pthread_getname_np):
30016 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Likewise.
30018 2017-08-18 H.J. Lu <hongjiu.lu@intel.com>
30021 * sysdeps/x86_64/fpu/multiarch/ifunc-mathvec-avx2.h
30022 (IFUNC_SELECTOR): Don't use the AVX2 version if FMA isn't
30025 2017-08-17 DJ Delorie <dj@redhat.com>
30027 * bug17079.c: Update to new test harness.
30028 * test-digits-dots.c: Likewise.
30029 * test-netdb.c: Likewise.
30030 * tst-field.c: Likewise.
30031 * tst-nss-getpwent.c: Likewise.
30032 * tst-nss-static.c: Likewise.
30033 * tst-nss-test1.c: Likewise.
30034 * tst-nss-test2.c: Likewise.
30035 * tst-nss-test3.c: Likewise.
30036 * tst-nss-test4.c: Likewise.
30037 * tst-nss-test5.c: Likewise.
30039 2017-08-17 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30041 * sysdeps/generic/not-cancel.h (open_not_cancel): Remove macro.
30042 (open_not_cancel_2): Likewise.
30043 (open_nocancel): New macro.
30044 (open64_nocancel): Likewise.
30045 * sysdeps/unix/sysv/linux/not-cancel.h (open_not_cancel): Remove macro.
30046 (open_not_cancel_2): Likewise.
30047 (__open_nocancel): New prototype.
30048 (__open64_nocancel): Likewise.
30049 * sysdeps/unix/sysv/linux/Versions (libc) [GLIBC_PRIVATE]: Add
30051 * sysdeps/unix/sysv/linux/open.c (__open_nocancel): New function.
30052 * sysdeps/unix/sysv/linux/open64.c (__open64_nocancel): Likewise.
30053 * catgets/open_catalog.c (__open_catalog): Replace open_not_cancel{_2}
30054 with __open_nocancel.
30055 * csu/check_fds.c (check_one_fd): Likewise.
30056 * gmon/gmon.c (write_gmon): Likewise.
30057 * iconv/gconv_cache.c (__gconv_load_cached): Likewise.
30058 * intl/loadmsgcat.c (open): Likewise.
30059 * libio/fileops.c (_IO_file_open): Likewise.
30060 * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
30061 * locale/loadlocale.c (_nl_load_locale): Likewise.
30062 * login/utmp_file.c (setutent_file): Likewise.
30063 * misc/daemon.c (daemon): Likewise.
30064 * nss/nss_db/db-open.c (internal_setent): Likewise.
30065 * sysdeps/mach/hurd/opendir.c (__opendirat): Likewise.
30066 * sysdeps/posix/libc_fatal.c (__libc_message): Likewise.
30067 * sysdeps/posix/opendir.c (tryopen_o_directory): Likewise.
30068 (__opendir): Likewise.
30069 * sysdeps/posix/spawni.c (__spawni_child): Likewise.
30070 * sysdeps/unix/sysv/linux/fips-private.h (fips_enable_p): Likewise.
30071 * sysdeps/unix/sysv/linux/gethostid.c (sethostid): Likewise.
30072 (gethostid): Likewise.
30073 * sysdeps/unix/sysv/linux/getloadavg.c (getloadavg): Likewise.
30074 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
30076 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Likewise.
30077 * sysdeps/unix/sysv/linux/grantpt.c (__close_all_fds): Likewise.
30078 * sysdeps/unix/sysv/linux/i386/smp.h (is_smp_system): Likewise.
30079 * sysdeps/unix/sysv/linux/ia64/has_cpuclock.c (has_cpuclock):
30081 * sysdeps/unix/sysv/linux/libc_fatal.c (backtrace_and_maps):
30083 * sysdeps/unix/sysv/linux/malloc-sysdep.h (check_may_shrink_heap):
30085 * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c (__get_clockfreq):
30087 * sysdeps/unix/sysv/linux/pthread_getname.c (pthread_getname_np):
30089 * sysdeps/unix/sysv/linux/pthread_setname.c (pthread_setname_np):
30091 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Likewise.
30092 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Likewise.
30094 2017-08-17 Wilco Dijkstra <wdijkstr@arm.com>
30096 * benchtests/bench-skeleton.c (main): Add support for
30097 latency benchmarking.
30098 * benchtests/scripts/bench.py: Add support for latency benchmarking.
30100 2017-08-17 H.J. Lu <hongjiu.lu@intel.com>
30102 * Makeconfig (+link-pie-before-libc): Add CRT-* hook to override
30103 the startup object.
30105 2017-08-17 Florian Weimer <fweimer@redhat.com>
30107 * include/sys/socket.h (__opensock): Remove internal_function.
30108 * socket/opensock.c (__opensock): Likewise.
30109 * sysdeps/unix/sysv/linux/opensock.c (__opensock): Likewise.
30111 2017-08-16 Joseph Myers <joseph@codesourcery.com>
30114 * signal/bits/types/__sigval_t.h: New file.
30115 * signal/Makefile (headers): Add bits/types/__sigval_t.h.
30116 * signal/bits/types/sigval_t.h: Include <bits/types/__sigval_t.h>
30117 and define sigval_t using __sigval_t.
30118 * include/bits/types/__sigval_t.h: New file.
30119 * bits/types/sigevent_t.h: Include <bits/types/__sigval_t.h>
30120 instead of <bits/types/__sigval_t.h>.
30121 (struct sigevent): Use __sigval_t instead of sigval_t.
30122 * bits/types/siginfo_t.h: Include <bits/types/__sigval_t.h>
30123 instead of <bits/types/__sigval_t.h>.
30124 (siginfo_t): Use __sigval_t instead of sigval_t.
30125 * sysdeps/unix/sysv/linux/bits/types/sigevent_t.h: Include
30126 <bits/types/__sigval_t.h> instead of <bits/types/__sigval_t.h>.
30127 (struct sigevent): Use __sigval_t instead of sigval_t.
30128 * sysdeps/unix/sysv/linux/bits/types/siginfo_t.h: Include
30129 <bits/types/__sigval_t.h> instead of <bits/types/__sigval_t.h>.
30130 (siginfo_t): Use __sigval_t instead of sigval_t.
30131 * signal/signal.h [__USE_MISC]: Include <bits/types/sigval_t.h>.
30133 2017-08-16 H.J. Lu <hongjiu.lu@intel.com>
30135 * NEWS: Remove "[Add new features here]" for 2.27.
30137 2017-08-16 Joseph Myers <joseph@codesourcery.com>
30139 * sysdeps/unix/sysv/linux/sh/localplt.data: Allow abort in
30142 2017-08-16 H.J. Lu <hongjiu.lu@intel.com>
30144 * NEWS: Mention x86-64 FMA optimization.
30146 2017-08-16 H.J. Lu <hongjiu.lu@intel.com>
30149 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
30151 * sysdeps/x86_64/fpu/multiarch/e_expf-fma.S: New file.
30152 * sysdeps/x86_64/fpu/multiarch/e_expf.c: Likewise.
30153 * sysdeps/x86_64/fpu/multiarch/ifunc-fma.h: Likewise.
30155 2017-08-16 Andreas Schwab <schwab@suse.de>
30159 * elf/ldd.bash.in: Never run file directly.
30161 2017-08-15 H.J. Lu <hongjiu.lu@intel.com>
30164 * sysdeps/x86_64/fpu/e_expf.S (L(SP_RANGE)): Aligned to 8 bytes.
30165 (L(SP_INF_0)): Likewise.
30167 2017-08-15 Florian Weimer <fweimer@redhat.com>
30169 * gmon/Makefile (tests-special): Add tst-gmon-prof only if
30172 2017-08-15 Florian Weimer <fweimer@redhat.com>
30174 Remove BROKEN_THREAD_SIGNALS support for LinuxThreads.
30175 * sysdeps/pthread/aio_misc.c (__aio_enqueue_request): Remove
30176 BROKEN_THREAD_SIGNALS code.
30177 * sysdeps/ppthread/aio_misc.h (struct waitlist, struct
30178 request_list): Remove caller_pid member used for
30179 BROKEN_THREAD_SIGNALS.
30180 [BROKEN_THREAD_SIGNALS] (__aio_notify_only): Remove declaration.
30181 * sysdeps/pthread/aio_notify.c (__aio_notify_only, __aio_notify):
30182 Remove BROKEN_THREAD_SIGNALS support.
30183 * sysdeps/pthread/aio_suspend.c (aio_suspend): Likewise.
30184 * sysdeps/pthread/lio_listio.c (lio_listio_internal): Likewise.
30186 2017-08-15 Florian Weimer <fweimer@redhat.com>
30188 * gmon/Makefile (tests): Add tst-gmon.
30189 (CFLAGS-tst-gmon.c, LDFLAGS-tst-gmon, CRT-tst-gmon, tst-gmon-ENV):
30191 (tests-special): Add tst-gmon-prof.out.
30192 (tst-gmon.out): Depend on clean-tst-gmon-data.
30193 (clean-tst-gmon-data, tst-gmon-gprof.out): New targets.
30194 * gmon/tst-gmon.c, gmon/tst-gmon-gprof.sh: New files.
30195 * Makeconfig (+link-before-libc): Add CRT-* hook to override the
30197 * aclocal.m4 (GPROF): Set and substitute.
30198 * config.amke.in (GPROF): Set.
30199 * configure: Regenerate.
30201 2017-08-15 Gustavo Romero <gromero@linux.vnet.ibm.com>
30203 * elf/elf.h A (NT_PPC_TAR): New macro.
30204 (NT_PPC_PPR): Likewise.
30205 (NT_PPC_DSCR): Likewise.
30206 (NT_PPC_EBB): Likewise.
30207 (NT_PPC_PMU): Likewise.
30208 (NT_PPC_TM_CGPR): Likewise.
30209 (NT_PPC_TM_CFPR): Likewise.
30210 (NT_PPC_TM_CVMX): Likewise.
30211 (NT_PPC_TM_CVSX): Likewise.
30212 (NT_PPC_TM_SPR): Likewise.
30213 (NT_PPC_TM_CTAR): Likewise.
30214 (NT_PPC_TM_CPPR): Likewise.
30215 (NT_PPC_TM_CDSCR): Likewise.
30217 2017-08-15 Florian Weimer <fweimer@redhat.com>
30219 * sysdeps/i386/machine-gmon.h (mcount_internal): Declare with
30220 regparm (2) instead of internal_function.
30221 (_MCOUNT_DECL): Adjust.
30223 2017-08-15 Stefan Liebler <stli@linux.vnet.ibm.com>
30225 * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Add z14.
30226 * sysdeps/s390/dl-procinfo.h (_DL_PLATFORMS_COUNT): Increased.
30228 2017-08-14 Joseph Myers <joseph@codesourcery.com>
30230 * conform/data/sys/wait.h-data (si_value): Do not expect for
30233 2017-08-14 Florian Weimer <fweimer@redhat.com>
30236 NSS: Create stubs for accidentally exported lookup functions.
30237 * grp/initgroups.c (__nss_group_lookup, __nss_lookup_function):
30238 Remove declaration.
30239 * inet/ether_hton.c (__nss_ethers_lookup): Likewise.
30240 (ether_hostton): Call __nss_ethers_lookup2 instead.
30241 * inet/ether_ntoh.c (__nss_ethers_lookup): Remove declaration.
30242 (ether_ntohost): Call __nss_ethers_lookup2 instead.
30243 * inet/getnetgrent_r.c (__nss_netgroup_lookup): Remove declaration.
30244 (setup): Call __nss_netgroup_lookup2 instead.
30245 * nss/Makefile (routines): Add compat-lookup.
30246 * nss/Versions (GLIBC_2.27): Add symbol version.
30247 * nss/XXX-lookup (DB_LOOKUP_FCT): Remove declaration. Now provided by <nsswitch.h>.
30248 (DB_COMPAT_FCT): Remove.
30249 * nss/compat-lookup.c: New file.
30250 * nss/nsswitch.h: Generate __nss_*_lookup2 function prototypes
30251 from databases.def.
30252 * nss/service-lookup.c (NO_COMPAT): Remove definition.
30253 * sunrpc/netname.c (__nss_publickey_lookup): Remove declaration.
30254 (netname2user): Call __nss_publickey_lookup2 instead.
30255 * sunrpc/publickey.c (__nss_publickey_lookup): Remove declaration.
30256 (getpublickey, getsecretkey): Call __nss_publickey_lookup2
30259 2017-08-14 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30260 Sergei Trofimovich <slyfox@inbox.ru>
30263 * sysdeps/unix/sysv/linux/m68k/mmap_internal.h (MMAP2_PAGE_SHIFT):
30264 Rename to MMAP2_PAGE_UNIT.
30265 * sysdeps/unix/sysv/linux/mmap.c: Include mmap_internal iff
30266 __OFF_T_MATCHES_OFF64_T is not defined.
30267 * sysdeps/unix/sysv/linux/mmap_internal.h (page_unit): Declare as
30269 (MMAP2_PAGE_UNIT) [MMAP2_PAGE_UNIT == -1]: Redefine to page_unit.
30270 (page_unit) [MMAP2_PAGE_UNIT != -1]: Remove definition.
30272 2017-08-14 Florian Weimer <fweimer@redhat.com>
30274 i386: Do not set internal_function.
30275 * config.h.in (USE_REGPARMS, internal_function): Remove.
30276 * sysdeps/i386/configure.ac (USE_REGPARMS): Likewise.
30277 * sysdeps/i386/configure (USE_REGPARMS): Likewise.
30279 2017-08-14 Florian Weimer <fweimer@redhat.com>
30281 * elf/dl-init.c (_dl_init): Remove internal_function.
30282 * sysdeps/generic/ldsodefs.h (_dl_init): Likewise.
30283 * sysdeps/i386/dl-machine.h (RTLD_START): Adjust call to _dl_init.
30285 2017-08-14 Florian Weimer <fweimer@redhat.com>
30287 * elf/rtld.c (_dl_start): Remove internal_function.
30288 * sysdeps/i386/dl-machine.h (RTLD_START): Adjust call to
30291 2017-08-14 Florian Weimer <fweimer@redhat.com>
30293 * elf/dl-fini.c (_dl_fini): Remove internal_function
30294 * sysdeps/generic/ldsodefs.h (_dl_fini): Likewise.
30296 2017-08-14 H.J. Lu <hongjiu.lu@intel.com>
30298 * sysdeps/x86/cpu-features.h (bit_cpu_IBT): New.
30299 (bit_cpu_SHSTK): Likewise.
30300 (index_cpu_IBT): Likewise.
30301 (index_cpu_SHSTK): Likewise.
30302 (reg_IBT): Likewise.
30303 (reg_SHSTK): Likewise.
30304 * sysdeps/x86/cpu-tunables.c (TUNABLE_CALLBACK (set_hwcaps)):
30305 Handle index_cpu_IBT and index_cpu_SHSTK.
30307 2017-08-14 Mike FABIAN <mfabian@redhat.com>
30310 * po/fr.po: Fix spelling mistake.
30312 2017-08-13 Florian Weimer <fweimer@redhat.com>
30314 * elf/dl-addr.c (_dl_addr): Remove internal_function.
30315 * elf/dl-error-skeleton.c (_dl_signal_error, _dl_signal_cerror)
30316 (_dl_catch_error, _dl_receive_error): Likewise.
30317 * elf/dl-open.c (_dl_find_dso_for_object): Likewise.
30318 * elf/dl-tls.c (_dl_allocate_tls_init, _dl_allocate_tls)
30319 (_dl_deallocate_tls): Likewise.
30320 * include/dlfcn.h (_dl_addr): Likewise.
30321 * sysdeps/generic/ldsodefs.h (_dl_signal_error, _dl_signal_cerror)
30322 (_dl_catch_error, _dl_receive_error, _dl_find_dso_for_object)
30323 (_dl_allocate_tls_init, _dl_allocate_tls, _dl_deallocate_tls):
30326 2017-08-13 Florian Weimer <fweimer@redhat.com>
30328 * include/stdlib.h: (__strtof_nan, __strtod_nan, __strtold_nan)
30329 (__wcstof_nan, __wcstod_nan, __wcstold_nan): Remove
30331 * stdlib/sttod_nan_main.c (STRTOD_NAN): Likewise.
30333 2017-08-13 Florian Weimer <fweimer@redhat.com>
30335 * elf/dl-support.c (_dl_make_stack_executable_hook): Remove
30337 * nptl/allocatestack.c (__make_stacks_executable): Likewise.
30338 * nptl/pthreadP.h (__make_stacks_executable): Likewise.
30339 * sysdeps/generic/ldsodefs.h (_rtld_global): Remove
30340 internal_function from _dl_make_stack_executable_hook member.
30341 (_dl_make_stack_executable): Remove internal_function.
30342 * sysdeps/mach/hurd/dl-execstack.c (_dl_make_stack_executable):
30344 * sysdeps/unix/sysv/linux/dl-execstack.c
30345 (_dl_make_stack_executable): Likewise.
30347 2017-08-13 Florian Weimer <fweimer@redhat.com>
30349 * sysdeps/unix/sysv/linux/netlinkaccess.h
30350 (__netlink_assert_response): Remove internal_function.
30351 * sysdeps/unix/sysv/linux/netlink_assert_response.c
30352 (__netlink_assert_response): Likewise.
30354 2017-08-13 Florian Weimer <fweimer@redhat.com>
30356 * include/rpc/pmap_clnt.h (__libc_rpc_getport): Remove
30358 * sunrpoc/pm_getport.c (__libc_rpc_getport): Likewise.
30360 2017-08-13 Florian Weimer <fweimer@redhat.com>
30362 * grp/grp-merge.h (__copy_grp, __merge_grp): Remove
30364 * grp/grp-merge.c (__copy_grp, __merge_grp): Likewise.
30365 * inet/netgroup.h (__internal_setnetgrent)
30366 (__internal_endnetgrent,__internal_getnetgrent_r): Likewise.
30367 * inet/getnetgrent_r.c (__internal_setnetgrent)
30368 (__internal_endnetgrent,__internal_getnetgrent_r): Likewise.
30369 * nss/XXX-lookup.c (DB_LOOKUP_FCT, DB_COMPAT_FCT): Likewise.
30370 * nss/getXXbyYY_r.c (DB_LOOKUP_FCT): Likewise.
30371 * nss/getXXent_r.c (DB_LOOKUP_FCT): Likewise.
30372 * nss/nsswitch.h (db_lookup_function): Likewise.
30374 2017-08-13 Florian Weimer <fweimer@redhat.com>
30376 * debug/fortify_fail.c (__fortify_fail, __fortify_fail_abort):
30377 Remove internal_function.
30378 * include/stdio.h (__fortify_fail, __fortify_fail_abort): Likewise.
30379 * sysdeps/mach/hurd/i386/____longjmp_chk.S (CALL_FAIL): Pass
30380 message argument on the stack.
30381 * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S (CALL_FAIL):
30384 2017-08-12 Mike FABIAN <mfabian@redhat.com>
30386 Adapt test case data to the changes in the thousands
30390 * localedata/tst-langinfo.sh: Adapt test case data.
30391 * stdlib/tst-strfmon_l.c: Likewise.
30392 * stdlib/tst-strtod4.c: Likewise.
30393 * stdlib/tst-strtod5i.c: Likewise.
30395 2017-08-11 Florian Weimer <fweimer@redhat.com>
30398 * assert/assert.h [__GNUC__ && !__STRICT_ANSI__] (assert):
30399 Suppress pedantic warning resulting from statement expression.
30400 (__ASSERT_FUNCTION): Add missing __extension__.
30402 2017-08-11 Siddhesh Poyarekar <siddhesh@sourceware.org>
30404 * benchtests/bench-memmove-large.c: Print output in JSON
30406 * benchtests/bench-memmove.c: Likewise.
30408 * benchtests/bench-memccpy.c (do_one_test): Remove checks.
30409 * benchtests/bench-memchr.c (do_one_test): Likewise.
30410 * benchtests/bench-memcpy-large.c (do_one_test): Likewise.
30411 * benchtests/bench-memcpy.c (do_one_test): Likewise.
30412 * benchtests/bench-memmove-large.c (do_one_test): Likewise.
30413 * benchtests/bench-memmove.c (do_one_test): Likewise.
30414 * benchtests/bench-memset-large.c (do_one_test): Likewise.
30415 * benchtests/bench-memset.c (do_one_test): Likewise.
30416 * benchtests/bench-string.h (test_init): Remove memsets.
30418 2017-08-10 Rical Jasan <ricaljasan@pacific.net>
30421 (Computing the Width of an Integer Data Type): Rename section to
30422 "Width of an Integer Type". Remove inaccurate statement regarding
30423 lack of C language facilities for determining width of integer
30424 types, and reorder content to improve flow and context of
30427 2017-08-10 Rical Jasan <ricaljasan@pacific.net>
30429 * lang.texi (va_copy): Change standard from ISO to C99.
30430 (__va_copy): Add standard and header annotation.
30431 Update description for clarity of origins and current use.
30433 2017-08-10 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
30436 * sysdeps/powerpc/fpu/math_private.h (__ieee754_sqrtf128): Since
30437 xssqrtqp requires operands to be in Vector Registers
30438 (Altivec/VMX), replace the register constraint 'wq' with 'v'.
30439 * sysdeps/powerpc/powerpc64le/power9/fpu/e_sqrtf128.c
30440 (__ieee754_sqrtf128): Likewise.
30442 2017-08-10 Wilco Dijkstra <wdijkstr@arm.com>
30444 * sysdeps/aarch64/memcmp.S (memcmp):
30445 Rewrite of optimized memcmp.
30447 2017-08-10 Florian Weimer <fweimer@redhat.com>
30449 Introduce ld.so exceptions.
30450 * sysdeps/generic/ldsodefs.h (struct dl_exception): Define.
30451 (_dl_exception_create, _dl_exception_create_format)
30452 (_dl_exception_free, _dl_signal_exception, _dl_signal_cexception)
30453 (_dl_catch_exception): Declare.
30454 (_dl_catch_error): Update comment.
30455 * elf/dl-error-skeleton.c (struct catch): Replace objname,
30456 errstring, malloced members with exception member.
30457 (_dl_out_of_memory): Remove.
30458 (fatal_error): New function, extracted from _dl_signal_error.
30459 (_dl_signal_exception, _dl_signal_cexception): New functions.
30460 (_dl_signal_error): Call _dl_exception_create to allocate an
30462 (_dl_catch_exception): New function, based on _dl_catch_error.
30463 (_dl_catch_error): Implement using _dl_catch_exception.
30464 * elf/dl-exception.c: New file.
30465 * elf/Makefile (dl-routines): Add dl-exception.
30466 (elide-routines.os): Likewise.
30467 * elf/Version (ld/GLIBC_PRIVATE): Add _dl_exception_create,
30468 _dl_exception_create_format, _dl_exception_free.
30469 * elf/dl-deps.c (_dl_map_object_deps): Use _dl_catch_exception and
30470 _dl_signal_exception.
30471 * elf/dl-lookup.c (make_string): Remove.
30472 (_dl_lookup_symbol_x): Use _dl_exception_create_format,
30473 _dl_signal_cexception, _dl_exception_free.
30474 * elf/dl-open.c (_dl_open): Use _dl_catch_exception and
30475 _dl_signal_exception.
30476 * elf/dl-sym.c (do_sym): Likewise.
30477 * elf/dl-version.c (make_string): Remove.
30478 (match_symbol): Use _dl_exception_create_format,
30479 _dl_signal_cexception, _dl_exception_free.
30480 (_dl_check_map_versions): Likewise.
30481 * sysdeps/generic/localplt.data (ld.so): Add _dl_signal_exception,
30482 _dl_catch_exception.
30483 * sysdeps/unix/sysv/linux/aarch64/localplt.data (ld.so): Likewise.
30484 * sysdeps/unix/sysv/linux/alpha/localplt.data (ld.so): Likewise.
30485 * sysdeps/unix/sysv/linux/arm/localplt.data (ld.so): Likewise.
30486 * sysdeps/unix/sysv/linux/hppa/localplt.data (ld.so): Likewise.
30487 * sysdeps/unix/sysv/linux/i386/localplt.data (ld.so): Likewise.
30488 * sysdeps/unix/sysv/linux/ia64/localplt.data (ld.so): Likewise.
30489 * sysdeps/unix/sysv/linux/m68k/localplt.data (ld.so): Likewise.
30490 * sysdeps/unix/sysv/linux/microblaze/localplt.data (ld.so):
30492 * sysdeps/unix/sysv/linux/nios2/localplt.data (ld.so): Likewise.
30493 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data
30495 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data
30497 * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data (ld.so):
30499 * sysdeps/unix/sysv/linux/s390/localplt.data (ld.so): Likewise.
30500 * sysdeps/unix/sysv/linux/sh/localplt.data (ld.so): Likewise.
30501 * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data (ld.so):
30503 * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data (ld.so):
30505 * sysdeps/x86_64/localplt.data (ld.so): Likewise.
30507 2017-08-10 Florian Weimer <fweimer@redhat.com>
30509 * inet/net-internal.h (__inet6_scopeid_pton): Remove
30510 attribute_hidden, internal_function.
30511 * inet/inet6_scopeid_pton.c (__inet6_scopeid_pton): Remove
30514 2017-08-10 Florian Weimer <fweimer@redhat.com>
30516 * malloc/malloc.c (get_max_fast): Reimplement as an inline
30517 function which calls __builtin_unreachable.
30519 2017-08-10 Mike FABIAN <mfabian@redhat.com>
30521 * stdlib/tst-strfmon_l.c: Fix test cases to agree with the changes in
30522 Indian monetary formatting
30523 * stdlib/Makefile: Adapt list of locales needed for the tst-strfmon_l.c
30526 2017-08-09 Dmitry V. Levin <ldv@altlinux.org>
30528 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h (enum __ptrace_request):
30529 Fix typo in comment.
30532 * sysdeps/unix/sysv/linux/sys/ptrace.h (enum __ptrace_flags,
30533 PTRACE_SEIZE_DEVEL): Remove.
30534 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h: Likewise.
30535 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
30536 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
30537 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
30538 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
30540 2017-08-09 Joseph Myers <joseph@codesourcery.com>
30542 * posix/bits/types.h (__qaddr_t): Remove.
30545 * sysdeps/arm/sys/ucontext.h (__ctx): Move undefine further down.
30546 (ucontext_t): Use __ctx with uc_flags. Rename uc_filler to
30548 * sysdeps/generic/sys/ucontext.h (__ctx): New macro.
30549 (ucontext_t): Use __ctx with uc_flags.
30550 * sysdeps/i386/sys/ucontext.h (__ctx): Move undefine further down.
30551 (__ctxt): Likewise.
30552 (ucontext_t): Use __ctx with uc_flags. Rename uc_filler to
30554 * sysdeps/m68k/sys/ucontext.h (__ctx): Move undefine further down.
30555 (ucontext_t): Use __ctx with uc_flags. Rename uc_filler to
30557 * sysdeps/mips/sys/ucontext.h (__ctx): Move undefine further down.
30558 (ucontext_t): Use __ctx with uc_flags. Rename uc_filler to
30560 * sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h (__ctx): New
30562 (ucontext_t): Use __ctx with uc_flags.
30563 * sysdeps/unix/sysv/linux/alpha/sys/ucontext.h (__ctx): New macro.
30564 (ucontext_t): Use __ctx with uc_flags.
30565 * sysdeps/unix/sysv/linux/arm/sys/ucontext.h (__ctx): New macro.
30566 (ucontext_t): Use __ctx with uc_flags and uc_regspace.
30567 * sysdeps/unix/sysv/linux/hppa/sys/ucontext.h (__ctx): New macro.
30568 (ucontext_t): Use __ctx with uc_flags.
30569 * sysdeps/unix/sysv/linux/m68k/sys/ucontext.h (__ctx): Move
30570 undefine further down.
30571 (ucontext_t): Use __ctx with uc_flags. Rename uc_filler to
30573 * sysdeps/unix/sysv/linux/mips/sys/ucontext.h (__ctx): Move
30574 undefine further down.
30575 (ucontext_t): Use __ctx with uc_flags.
30576 * sysdeps/unix/sysv/linux/nios2/sys/ucontext.h (__ctx): Move
30577 undefine further down.
30578 (ucontext_t): Use __ctx with uc_flags.
30579 * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h (ucontext_t): Use
30580 __ctx with uc_flags, uc_regs_ptr, uc_regs and uc_reg_space.
30581 Rename uc_pad to __glibc_reserved1.
30582 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (__ctx): Move
30583 undefine further down.
30584 (ucontext_t): Use __ctx with uc_flags.
30585 * sysdeps/unix/sysv/linux/sh/sys/ucontext.h (__ctx): Move undefine
30587 (ucontext_t): Use __ctx with uc_flags.
30588 * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (ucontext_t): Use
30589 __ctx with uc_flags.
30590 * sysdeps/unix/sysv/linux/tile/sys/ucontext.h (__ctx): New macro.
30591 (ucontext_t): Use __ctx with uc_flags.
30592 * sysdeps/unix/sysv/linux/x86/sys/ucontext.h (ucontext_t): Use
30593 __ctx with uc_flags.
30595 2017-08-09 Florian Weimer <fweimer@redhat.com>
30598 * nss/getXXbyYY_r.c (REENTRANT_NAME): Call __resolv_context_put
30599 before early return.
30601 2017-08-09 Andreas Schwab <schwab@suse.de>
30604 * sysdeps/unix/sysv/linux/s390/pt-longjmp.c: Update reference to
30608 * nptl/Makefile (tests) [$(build-shared) = yes]: Add
30609 tst-compat-forwarder.
30610 (modules-names): Add tst-compat-forwarder-mod.
30611 ($(objpfx)tst-compat-forwarder): Depend on
30612 $(objpfx)tst-compat-forwarder-mod.so.
30613 * nptl/tst-compat-forwarder.c: New file.
30614 * nptl/tst-compat-forwarder-mod.c: New file.
30616 2017-08-09 Siddhesh Poyarekar <siddhesh@sourceware.org>
30618 * sysdeps/aarch64/multiarch/memcpy_falkor.S: Fix code style in
30621 * manual/tunables.texi (Tunable glibc.tune.cpu): Add falkor.
30622 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines): Add
30624 * sysdeps/aarch64/multiarch/ifunc-impl-list.c (MAX_IFUNC):
30626 (__libc_ifunc_impl_list): Add __memcpy_falkor.
30627 * sysdeps/aarch64/multiarch/memcpy.c: Likewise.
30628 * sysdeps/aarch64/multiarch/memcpy_falkor.S: New file.
30629 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (cpu_list):
30631 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h (IS_FALKOR):
30634 2017-08-08 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30637 * manual/setjmp.texi (getcontex): Document uc_stack value
30638 compatibility differences.
30640 2017-08-08 Joseph Myers <joseph@codesourcery.com>
30642 * malloc/mcheck.c (old_free_hook): Use void * instead of __ptr_t.
30643 (old_malloc_hook): Likewise.
30644 (old_memalign_hook): Likewise.
30645 (old_realloc_hook): Likewise.
30646 (struct hdr): Likewise.
30648 (freehook): Likewise.
30649 (mallochook): Likewise.
30650 (memalignhook): Likewise.
30651 (reallochook): Likewise.
30652 (mprobe): Likewise.
30653 * malloc/mtrace.c (mallwatch): Likewise.
30654 (tr_old_free_hook): Likewise.
30655 (tr_old_malloc_hook): Likewise.
30656 (tr_old_realloc_hook): Likewise.
30657 (tr_old_memalign_hook): Likewise.
30658 (tr_where): Likewise.
30659 (lock_and_info): Likewise.
30660 (tr_freehook): Likewise.
30661 (tr_mallochook): Likewise.
30662 (tr_reallochook): Likewise.
30663 (tr_memalignhook): Likewise.
30664 * misc/err.h [!__GNUC_VA_LIST] (__gnuc_va_list): Likewise.
30665 * misc/mmap.c (__mmap): Likewise.
30666 * misc/mmap64.c (__mmap64): Likewise.
30667 * misc/mprotect.c (__mprotect): Likewise.
30668 * misc/msync.c (msync): Likewise.
30669 * misc/munmap.c (__munmap): Likewise.
30670 * posix/posix_madvise.c (posix_madvise): Likewise.
30671 * socket/send.c (__send): Likewise.
30672 * socket/sendto.c (__sendto): Likewise.
30673 * socket/setsockopt.c (__setsockopt): Likewise.
30674 * string/memcmp.c (__ptr_t): Remove macro.
30675 (MEMCMP): Use void * instead of ptr_t.
30676 * string/memrchr.c (__ptr_t): Remove macro.
30677 (__memrchr): Use void * instead of ptr_t.
30678 * sysdeps/mach/hurd/dl-sysdep.c (__mmap): Likewise.
30679 * sysdeps/mach/hurd/mmap.c (__mmap): Likewise.
30680 * sysdeps/mach/hurd/mmap64.c (__mmap64): Likewise.
30681 * sysdeps/mach/mprotect.c (__mprotect): Likewise.
30682 * sysdeps/mach/msync.c (msync): Likewise.
30683 * sysdeps/mach/munmap.c (__munmap): Likewise.
30684 * sysdeps/mips/bits/setjmp.h (struct __jmp_buf_internal_tag):
30686 * sysdeps/posix/getcwd.c (__getcwd): Likewise.
30687 * sysdeps/powerpc/powerpc32/memset.S (memset): Likewise.
30688 * sysdeps/powerpc/powerpc32/power4/memcpy.S (memcpy): Likewise.
30689 * sysdeps/powerpc/powerpc32/power4/memset.S (memset): Likewise.
30690 * sysdeps/powerpc/powerpc32/power6/memcpy.S (memcpy): Likewise.
30691 * sysdeps/powerpc/powerpc32/power6/memset.S (memset): Likewise.
30692 * sysdeps/powerpc/powerpc32/power7/memcpy.S (memcpy): Likewise.
30693 * sysdeps/powerpc/powerpc32/power7/mempcpy.S (__mempcpy):
30695 * sysdeps/powerpc/powerpc32/power7/memset.S (memset): Likewise.
30696 * sysdeps/powerpc/powerpc64/memcpy.S (memcpy): Likewise.
30697 * sysdeps/powerpc/powerpc64/memset.S (memset): Likewise.
30698 * sysdeps/powerpc/powerpc64/power4/memcpy.S (memcpy): Likewise.
30699 * sysdeps/powerpc/powerpc64/power4/memset.S (memset): Likewise.
30700 * sysdeps/powerpc/powerpc64/power6/memcpy.S (memcpy): Likewise.
30701 * sysdeps/powerpc/powerpc64/power6/memset.S (memset): Likewise.
30702 * sysdeps/powerpc/powerpc64/power7/memcpy.S (memcpy): Likewise.
30703 * sysdeps/powerpc/powerpc64/power7/mempcpy.S (__mempcpy):
30705 * sysdeps/powerpc/powerpc64/power7/memset.S (memset): Likewise.
30706 * sysdeps/powerpc/powerpc64/power8/memset.S (memset): Likewise.
30707 * sysdeps/tile/memcmp.c (__ptr_t): Remove macro.
30708 (MEMCMP): Use void * instead of ptr_t.
30709 * sysdeps/unix/sysv/linux/alpha/oldglob.c (old_glob_t): Likewise.
30710 * sysdeps/unix/sysv/linux/mmap.c (__mmap): Likewise.
30712 2017-08-08 Florian Weimer <fweimer@redhat.com>
30714 * sysdeps/posix/getaddrinfo.c (gaih_inet): Remove unreachable
30717 2017-08-08 H.J. Lu <hongjiu.lu@intel.com>
30720 * csu/libc-tls.c: Include <startup.h> first.
30721 (__libc_setup_tls): Call _startup_fatal instead of __libc_fatal.
30722 * elf/dl-tunables.c: Include <startup.h> first.
30723 * include/libc-symbols.h (BUILD_PIE_DEFAULT): New.
30724 * sysdeps/generic/startup.h: New file.
30725 * sysdeps/unix/sysv/linux/i386/startup.h: Likewise.
30726 * sysdeps/unix/sysv/linux/i386/brk.c [BUILD_PIE_DEFAULT != 0]
30727 (I386_USE_SYSENTER): New. Defined to 0.
30729 2017-08-08 Andreas Schwab <schwab@suse.de>
30732 * nptl/pt-longjmp.c (longjmp, siglongjmp): Don't use IFUNC resolver.
30733 * nptl/pt-system.c (system): Likewise.
30735 2017-08-07 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30738 * sysdeps/posix/preadv2.c (preadv2): Use ENOTSUP instead of
30740 * sysdeps/posix/preadv64v2.c (preadv64v2): Likewise.
30741 * sysdeps/posix/pwritev2.c (pwritev2): Likewise.
30742 * sysdeps/posix/pwritev64v2.c (pwritev64v2): Likewise.
30743 * sysdeps/unix/sysv/linux/preadv2.c (preadv2): Likewise.
30744 * sysdeps/unix/sysv/linux/preadv64v2.c (preadv64v2): Likewise.
30745 * sysdeps/unix/sysv/linux/pwritev2.c (pwritev2): Likewise.
30746 * sysdeps/unix/sysv/linux/pwritev64v2.c (pwritev64v2): Likewise.
30748 2017-08-07 Joseph Myers <joseph@codesourcery.com>
30751 * bits/sigaction.h (struct sigaction): Define sa_handler and
30752 sa_sigaction using union also for [__USE_XOPEN_EXTENDED].
30753 (SA_ONSTACK): Change [__USE_UNIX98] condition to
30754 [__USE_XOPEN_EXTENDED].
30755 (SA_RESTART): Likewise.
30756 (SA_NODEFER): Likewise.
30757 (SA_RESETHAND): Likewise.
30758 * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h
30759 (struct sigaction): Define sa_handler and sa_sigaction using union
30760 also for [__USE_XOPEN_EXTENDED].
30761 (SA_ONSTACK): Change [__USE_UNIX98] condition to
30762 [__USE_XOPEN_EXTENDED].
30763 (SA_RESTART): Likewise.
30764 (SA_NODEFER): Likewise.
30765 (SA_RESETHAND): Likewise.
30766 * sysdeps/unix/sysv/linux/bits/sigaction.h
30767 (struct sigaction): Define sa_handler and sa_sigaction using union
30768 also for [__USE_XOPEN_EXTENDED].
30769 (SA_ONSTACK): Change [__USE_UNIX98] condition to
30770 [__USE_XOPEN_EXTENDED].
30771 (SA_RESTART): Likewise.
30772 (SA_NODEFER): Likewise.
30773 (SA_RESETHAND): Likewise.
30774 * sysdeps/unix/sysv/linux/hppa/bits/sigaction.h
30775 (struct sigaction): Define sa_handler and sa_sigaction using union
30776 also for [__USE_XOPEN_EXTENDED].
30777 (SA_ONSTACK): Change [__USE_UNIX98] condition to
30778 [__USE_XOPEN_EXTENDED].
30779 (SA_RESTART): Likewise.
30780 (SA_NODEFER): Likewise.
30781 (SA_RESETHAND): Likewise.
30782 * sysdeps/unix/sysv/linux/ia64/bits/sigaction.h
30783 (struct sigaction): Define sa_handler and sa_sigaction using union
30784 also for [__USE_XOPEN_EXTENDED].
30785 (SA_ONSTACK): Change [__USE_UNIX98] condition to
30786 [__USE_XOPEN_EXTENDED].
30787 (SA_RESTART): Likewise.
30788 (SA_NODEFER): Likewise.
30789 (SA_RESETHAND): Likewise.
30790 * sysdeps/unix/sysv/linux/mips/bits/sigaction.h
30791 (struct sigaction): Define sa_handler and sa_sigaction using union
30792 also for [__USE_XOPEN_EXTENDED].
30793 (SA_ONSTACK): Change [__USE_UNIX98] condition to
30794 [__USE_XOPEN_EXTENDED].
30795 (SA_RESTART): Likewise.
30796 (SA_NODEFER): Likewise.
30797 (SA_RESETHAND): Likewise.
30798 * sysdeps/unix/sysv/linux/s390/bits/sigaction.h
30799 (struct sigaction): Define sa_handler and sa_sigaction using union
30800 also for [__USE_XOPEN_EXTENDED].
30801 (SA_ONSTACK): Change [__USE_UNIX98] condition to
30802 [__USE_XOPEN_EXTENDED].
30803 (SA_RESTART): Likewise.
30804 (SA_NODEFER): Likewise.
30805 (SA_RESETHAND): Likewise.
30806 * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h
30807 (struct sigaction): Define sa_handler and sa_sigaction using union
30808 also for [__USE_XOPEN_EXTENDED].
30809 (SA_ONSTACK): Change [__USE_UNIX98] condition to
30810 [__USE_XOPEN_EXTENDED].
30811 (SA_RESTART): Likewise.
30812 (SA_NODEFER): Likewise. Define directly rather than as alias.
30813 (SA_RESETHAND): Likewise.
30814 (SA_INTERRUPT): Define only for [__USE_MISC].
30815 (SA_NOMASK): Define as alias of SA_NODEFER, only for [__USE_MISC].
30816 (SA_ONESHOT): Define as alias of SA_RESETHAND, only for
30818 (SA_STACK): Define only for [__USE_MISC].
30819 * sysdeps/unix/sysv/linux/tile/bits/sigaction.h
30820 (struct sigaction): Define sa_handler and sa_sigaction using union
30821 also for [__USE_XOPEN_EXTENDED].
30822 (SA_ONSTACK): Change [__USE_UNIX98] condition to
30823 [__USE_XOPEN_EXTENDED].
30824 (SA_RESTART): Likewise.
30825 (SA_NODEFER): Likewise.
30826 (SA_RESETHAND): Likewise.
30827 (SA_NOPTRACE): Define only for [__USE_MISC].
30829 * catgets/catgets.c (catgets): Use uintN_t instead of u_intN_t.
30830 * catgets/catgetsinfo.h (struct catalog_obj): Likewise.
30831 (struct catalog_info): Likewise.
30832 * inet/htontest.c (lo): Likewise.
30834 * inet/inet_lnaof.c (inet_lnaof): Likewise.
30835 * inet/inet_net.c (inet_network): Likewise.
30836 * inet/inet_netof.c (inet_netof): Likewise.
30837 * inet/rcmd.c (__ivaliduser): Likewise.
30838 (iruserok): Likewise.
30839 * locale/loadlocale.c (_nl_intern_locale_data): Likewise.
30840 * locale/programs/locale-spec.c (locale_special): Likewise.
30841 * nis/nis_findserv.c (struct findserv_req): Likewise.
30842 (__nis_findfastest_with_timeout): Likewise.
30843 * nss/test-netdb.c (test_network): Likewise.
30844 * resolv/inet_neta.c (inet_neta): Likewise.
30845 * resolv/ns_date.c (ns_datetosecs): Likewise.
30846 (SECS_PER_DAY): Likewise.
30847 * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyaddr_r):
30849 * resolv/res_comp.c (__putlong): Likewise.
30850 (__putshort): Likewise.
30851 (_getlong): Likewise.
30852 (_getshort): Likewise.
30853 * resolv/res_debug.c (p_time): Likewise.
30854 (precsize_ntoa): Likewise.
30855 (precsize_aton): Likewise.
30856 (latlon2ul): Likewise.
30857 (loc_aton): Likewise.
30858 (loc_ntoa): Likewise.
30859 * resolv/res_hconf.c (struct netaddr): Likewise.
30860 (_res_hconf_reorder_addrs): Likewise.
30861 * sunrpc/clnt_tcp.c (clnttcp_call): Likewise.
30862 (clnttcp_control): Likewise.
30863 * sunrpc/clnt_udp.c (clntudp_call): Likewise.
30864 (clntudp_control): Likewise.
30865 * sunrpc/clnt_unix.c (clntunix_call): Likewise.
30866 (clntunix_control): Likewise.
30867 * sunrpc/pmap_rmt.c (clnt_broadcast): Likewise.
30868 * sunrpc/rpc/auth.h (union des_block): Likewise.
30869 * sunrpc/tst-udp-nonblocking.c (do_test): Likewise.
30870 * sunrpc/xdr_rec.c (struct rec_strm): Likewise.
30871 (xdrrec_create): Likewise.
30872 (xdrrec_endofrecord): Likewise.
30873 (flush_out): Likewise.
30874 * sunrpc/xdr_stdio.c (xdrstdio_getlong): Likewise.
30875 (xdrstdio_putlong): Likewise.
30876 * sysdeps/unix/sysv/linux/errqueue.h (struct sock_extended_err):
30879 * misc/sys/cdefs.h (__long_double_t): Remove.
30880 * stdio-common/printf_fp.c (__printf_fp_l): Use long double
30881 instead of __long_double_t,
30882 * stdlib/strfmon_l.c (__vstrfmon_l): Likewise.
30884 2017-08-07 Siddhesh Poyarekar <siddhesh@sourceware.org>
30886 * benchtests/scripts/compare_strings.py: Avoid display error when
30887 running on a text terminal.
30889 * benchtests/scripts/compare_strings.py (main): Add an
30890 optional -base option.
30891 (process_results): New argument base_func.
30893 * benchtests/bench-memcpy.c (test_main): Use TEST_NAME instead of
30895 * benchtests/bench-memcpy-large.c (test_name): Likewise.
30896 * benchtests/bench-memcpy-random.c (test_name): Likewise.
30898 2017-08-07 Andreas Schwab <schwab@suse.de>
30900 * elf/Makefile ($(objpfx)tst-pathopt.out): Redirect output to target.
30901 * grp/Makefile ($(objpfx)tst_fgetgrent.out): Likewise.
30902 * intl/Makefile ($(objpfx)tst-gettext.out)
30903 ($(objpfx)tst-translit.out, $(objpfx)tst-gettext2.out)
30904 ($(objpfx)tst-gettext4.out, $(objpfx)tst-gettext6.out): Likewise.
30905 * libio/Makefile ($(objpfx)test-freopen.out): Likewise.
30906 * malloc/Makefile ($(objpfx)tst-mtrace.out): Likewise.
30907 * nptl/Makefile ($(objpfx)tst-tls6.out): Likewise.
30908 * posix/Makefile ($(objpfx)globtest.out)
30909 ($(objpfx)wordexp-tst.out, $(objpfx)tst-getconf.out): Likewise.
30910 * stdio-common/Makefile ($(objpfx)tst-unbputc.out)
30911 ($(objpfx)tst-printf.out): Likewise.
30912 * stdlib/Makefile ($(objpfx)tst-fmtmsg.out)
30913 ($(objpfx)tst-setcontext3.out): Likewise.
30915 2017-08-07 H.J. Lu <hongjiu.lu@intel.com>
30917 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
30918 Add e_exp-fma, e_log-fma, e_pow-fma, s_atan-fma, e_asin-fma,
30919 e_atan2-fma, s_sin-fma, s_tan-fma, mplog-fma, mpa-fma,
30920 slowexp-fma, slowpow-fma, sincos32-fma, doasin-fma, dosincos-fma,
30921 halfulp-fma, mpexp-fma, mpatan2-fma, mpatan-fma, mpsqrt-fma,
30923 (CFLAGS-doasin-fma.c): New.
30924 (CFLAGS-dosincos-fma.c): Likewise.
30925 (CFLAGS-e_asin-fma.c): Likewise.
30926 (CFLAGS-e_atan2-fma.c): Likewise.
30927 (CFLAGS-e_exp-fma.c): Likewise.
30928 (CFLAGS-e_log-fma.c): Likewise.
30929 (CFLAGS-e_pow-fma.c): Likewise.
30930 (CFLAGS-halfulp-fma.c): Likewise.
30931 (CFLAGS-mpa-fma.c): Likewise.
30932 (CFLAGS-mpatan-fma.c): Likewise.
30933 (CFLAGS-mpatan2-fma.c): Likewise.
30934 (CFLAGS-mpexp-fma.c): Likewise.
30935 (CFLAGS-mplog-fma.c): Likewise.
30936 (CFLAGS-mpsqrt-fma.c): Likewise.
30937 (CFLAGS-mptan-fma.c): Likewise.
30938 (CFLAGS-s_atan-fma.c): Likewise.
30939 (CFLAGS-sincos32-fma.c): Likewise.
30940 (CFLAGS-slowexp-fma.c): Likewise.
30941 (CFLAGS-slowpow-fma.c): Likewise.
30942 (CFLAGS-s_sin-fma.c): Likewise.
30943 (CFLAGS-s_tan-fma.c): Likewise.
30944 * sysdeps/x86_64/fpu/multiarch/doasin-fma.c: New file.
30945 * sysdeps/x86_64/fpu/multiarch/dosincos-fma.c: Likewise.
30946 * sysdeps/x86_64/fpu/multiarch/e_asin-fma.c: Likewise.
30947 * sysdeps/x86_64/fpu/multiarch/e_atan2-fma.c: Likewise.
30948 * sysdeps/x86_64/fpu/multiarch/e_exp-fma.c: Likewise.
30949 * sysdeps/x86_64/fpu/multiarch/e_log-fma.c: Likewise.
30950 * sysdeps/x86_64/fpu/multiarch/e_pow-fma.c: Likewise.
30951 * sysdeps/x86_64/fpu/multiarch/halfulp-fma.c: Likewise.
30952 * sysdeps/x86_64/fpu/multiarch/ifunc-avx-fma4.h: Likewise.
30953 * sysdeps/x86_64/fpu/multiarch/ifunc-fma4.h: Likewise.
30954 * sysdeps/x86_64/fpu/multiarch/mpa-fma.c: Likewise.
30955 * sysdeps/x86_64/fpu/multiarch/mpatan-fma.c: Likewise.
30956 * sysdeps/x86_64/fpu/multiarch/mpatan2-fma.c: Likewise.
30957 * sysdeps/x86_64/fpu/multiarch/mpexp-fma.c: Likewise.
30958 * sysdeps/x86_64/fpu/multiarch/mplog-fma.c: Likewise.
30959 * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma.c: Likewise.
30960 * sysdeps/x86_64/fpu/multiarch/mptan-fma.c: Likewise.
30961 * sysdeps/x86_64/fpu/multiarch/s_atan-fma.c: Likewise.
30962 * sysdeps/x86_64/fpu/multiarch/s_sin-fma.c: Likewise.
30963 * sysdeps/x86_64/fpu/multiarch/s_tan-fma.c: Likewise.
30964 * sysdeps/x86_64/fpu/multiarch/sincos32-fma.c: Likewise.
30965 * sysdeps/x86_64/fpu/multiarch/slowexp-fma.c: Likewise.
30966 * sysdeps/x86_64/fpu/multiarch/slowpow-fma.c: Likewise.
30967 * sysdeps/x86_64/fpu/multiarch/e_asin.c: Rewrite.
30968 * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Likewise.
30969 * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
30970 * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
30971 * sysdeps/x86_64/fpu/multiarch/e_pow.c: Likewise.
30972 * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
30973 * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
30974 * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
30976 2017-08-04 Joseph Myers <joseph@codesourcery.com>
30978 * sysdeps/generic/math_private.h (__EXPR_FLT128): Remove macro.
30979 (min_of_type_f): New macro.
30980 (min_of_type_): Likewise.
30981 (min_of_type_l): Likewise.
30982 (min_of_type_f128): Likewise.
30983 (min_of_type): Define using __MATH_TG and taking an expression
30985 (math_check_force_underflow): Pass expression instead of type to
30987 (math_check_force_underflow_nonneg): Likewise.
30989 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
30991 * sysdeps/x86/cpu-features.h [__ASSEMBLER__]
30992 (LOAD_RTLD_GLOBAL_RO_RDX, HAS_FEATURE, LOAD_FUNC_GOT_EAX,
30993 HAS_CPU_FEATURE, HAS_ARCH_FEATURE): Removed.
30995 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
30997 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
30998 bcopy-ia32, bzero-ia32, rawmemchr-ia32 memchr-ia32,
30999 memcmp-ia32, memcpy-ia32, memmove-ia32, mempcpy-ia32,
31000 memset-ia32, strcat-ia32, strchr-ia32, strrchr-ia32,
31001 strcpy-ia32, strcmp-ia32, strcspn-ia32, strpbrk-ia32,
31002 strspn-ia32, strlen-ia32, stpcpy-ia32, stpncpy-ia32,
31003 memcpy_chk-nonshared, mempcpy_chk-nonshared,
31004 memmove_chk-nonshared and memset_chk-nonshared
31005 * sysdeps/i386/i686/multiarch/bcopy-ia32.S: New file.
31006 * sysdeps/i386/i686/multiarch/bcopy.c: Likewise.
31007 * sysdeps/i386/i686/multiarch/bzero-ia32.S: Likewise.
31008 * sysdeps/i386/i686/multiarch/bzero.c: Likewise.
31009 * sysdeps/i386/i686/multiarch/ifunc-memmove.h: Likewise.
31010 * sysdeps/i386/i686/multiarch/ifunc-memset.h: Likewise.
31011 * sysdeps/i386/i686/multiarch/ifunc-sse2-bsf.h: Likewise.
31012 * sysdeps/i386/i686/multiarch/ifunc-sse2-ssse3.h: Likewise.
31013 * sysdeps/i386/i686/multiarch/ifunc-sse2.h: Likewise.
31014 * sysdeps/i386/i686/multiarch/ifunc-sse4_2.h: Likewise.
31015 * sysdeps/i386/i686/multiarch/ifunc-ssse3-sse4_2.h: Likewise.
31016 * sysdeps/i386/i686/multiarch/memchr-ia32.S: Likewise.
31017 * sysdeps/i386/i686/multiarch/memchr.c: Likewise.
31018 * sysdeps/i386/i686/multiarch/memcmp-ia32.S: Likewise.
31019 * sysdeps/i386/i686/multiarch/memcmp.c: Likewise.
31020 * sysdeps/i386/i686/multiarch/memcpy-ia32.S: Likewise.
31021 * sysdeps/i386/i686/multiarch/memcpy.c: Likewise.
31022 * sysdeps/i386/i686/multiarch/memcpy_chk-nonshared.S: Likewise.
31023 * sysdeps/i386/i686/multiarch/memcpy_chk.c: Likewise.
31024 * sysdeps/i386/i686/multiarch/memmove-ia32.S: Likewise.
31025 * sysdeps/i386/i686/multiarch/memmove.c: Likewise.
31026 * sysdeps/i386/i686/multiarch/memmove_chk-nonshared.S: Likewise.
31027 * sysdeps/i386/i686/multiarch/memmove_chk.c: Likewise.
31028 * sysdeps/i386/i686/multiarch/mempcpy-ia32.S: Likewise.
31029 * sysdeps/i386/i686/multiarch/mempcpy.c: Likewise.
31030 * sysdeps/i386/i686/multiarch/mempcpy_chk-nonshared.S: Likewise.
31031 * sysdeps/i386/i686/multiarch/mempcpy_chk.c: Likewise.
31032 * sysdeps/i386/i686/multiarch/memrchr.c: Likewise.
31033 * sysdeps/i386/i686/multiarch/memset-ia32.S: Likewise.
31034 * sysdeps/i386/i686/multiarch/memset.c: Likewise.
31035 * sysdeps/i386/i686/multiarch/memset_chk-nonshared.S: Likewise.
31036 * sysdeps/i386/i686/multiarch/rawmemchr-ia32.S: Likewise.
31037 * sysdeps/i386/i686/multiarch/rawmemchr.c: Likewise.
31038 * sysdeps/i386/i686/multiarch/stpcpy-ia32.S: Likewise.
31039 * sysdeps/i386/i686/multiarch/stpcpy-ia32.S: Likewise.
31040 * sysdeps/i386/i686/multiarch/stpcpy.c: Likewise.
31041 * sysdeps/i386/i686/multiarch/stpncpy-ia32.S: Likewise.
31042 * sysdeps/i386/i686/multiarch/stpncpy.c: Likewise.
31043 * sysdeps/i386/i686/multiarch/strcasecmp.c: Likewise.
31044 * sysdeps/i386/i686/multiarch/strcasecmp_l.c: Likewise.
31045 * sysdeps/i386/i686/multiarch/strcat-ia32.S: Likewise.
31046 * sysdeps/i386/i686/multiarch/strcat.c: Likewise.
31047 * sysdeps/i386/i686/multiarch/strchr-ia32.S: Likewise.
31048 * sysdeps/i386/i686/multiarch/strchr.c: Likewise.
31049 * sysdeps/i386/i686/multiarch/strcmp-ia32.S: Likewise.
31050 * sysdeps/i386/i686/multiarch/strcmp.c: Likewise.
31051 * sysdeps/i386/i686/multiarch/strcpy-ia32.S: Likewise.
31052 * sysdeps/i386/i686/multiarch/strcpy.c: Likewise.
31053 * sysdeps/i386/i686/multiarch/strcspn-ia32.S: Likewise.
31054 * sysdeps/i386/i686/multiarch/strcspn.c: Likewise.
31055 * sysdeps/i386/i686/multiarch/strlen-ia32.S: Likewise.
31056 * sysdeps/i386/i686/multiarch/strlen.c: Likewise.
31057 * sysdeps/i386/i686/multiarch/strncase.c: Likewise.
31058 * sysdeps/i386/i686/multiarch/strncase_l.c: Likewise.
31059 * sysdeps/i386/i686/multiarch/strncat.c: Likewise.
31060 * sysdeps/i386/i686/multiarch/strncmp.c: Likewise.
31061 * sysdeps/i386/i686/multiarch/strncpy.c: Likewise.
31062 * sysdeps/i386/i686/multiarch/strnlen.c: Likewise.
31063 * sysdeps/i386/i686/multiarch/strpbrk-ia32.S: Likewise.
31064 * sysdeps/i386/i686/multiarch/strpbrk.c: Likewise.
31065 * sysdeps/i386/i686/multiarch/strrchr-ia32.S: Likewise.
31066 * sysdeps/i386/i686/multiarch/strrchr.c: Likewise.
31067 * sysdeps/i386/i686/multiarch/strspn-ia32.S: Likewise.
31068 * sysdeps/i386/i686/multiarch/strspn.c: Likewise.
31069 * sysdeps/i386/i686/multiarch/wcschr.c: Likewise.
31070 * sysdeps/i386/i686/multiarch/wcscmp.c: Likewise.
31071 * sysdeps/i386/i686/multiarch/wcscpy.c: Likewise.
31072 * sysdeps/i386/i686/multiarch/wcslen.c: Likewise.
31073 * sysdeps/i386/i686/multiarch/wcsrchr.c: Likewise.
31074 * sysdeps/i386/i686/multiarch/wmemcmp.c: Likewise.
31075 * sysdeps/i386/i686/multiarch/bcopy.S: Removed.
31076 * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
31077 * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
31078 * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
31079 * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
31080 * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
31081 * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
31082 * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
31083 * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
31084 * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
31085 * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
31086 * sysdeps/i386/i686/multiarch/memset.S: Likewise.
31087 * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
31088 * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
31089 * sysdeps/i386/i686/multiarch/stpcpy.S: Likewise.
31090 * sysdeps/i386/i686/multiarch/stpncpy.S: Likewise.
31091 * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
31092 * sysdeps/i386/i686/multiarch/strcasecmp_l.S: Likewise.
31093 * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
31094 * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
31095 * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
31096 * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
31097 * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
31098 * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
31099 * sysdeps/i386/i686/multiarch/strncase_l.S: Likewise.
31100 * sysdeps/i386/i686/multiarch/strncat.S: Likewise.
31101 * sysdeps/i386/i686/multiarch/strncmp.S: Likewise.
31102 * sysdeps/i386/i686/multiarch/strncpy.S: Likewise.
31103 * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
31104 * sysdeps/i386/i686/multiarch/strpbrk.S: Likewise.
31105 * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
31106 * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
31107 * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
31108 * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
31109 * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
31110 * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
31111 * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
31112 * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
31114 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
31116 * sysdeps/x86_64/fpu/multiarch/Makefile (libmvec-sysdep_routines)
31117 Add svml_d_cos2_core-sse2, svml_d_cos4_core-sse,
31118 svml_d_cos8_core-avx2, svml_d_exp2_core-sse2,
31119 svml_d_exp4_core-sse, svml_d_exp8_core-avx2,
31120 svml_d_log2_core-sse2, svml_d_log4_core-sse,
31121 svml_d_log8_core-avx2, svml_d_pow2_core-sse2,
31122 svml_d_pow4_core-sse, svml_d_pow8_core-avx2
31123 svml_d_sin2_core-sse2, svml_d_sin4_core-sse,
31124 svml_d_sin8_core-avx2, svml_d_sincos2_core-sse2,
31125 svml_d_sincos4_core-sse, svml_d_sincos8_core-avx2,
31126 svml_s_cosf16_core-avx2, svml_s_cosf4_core-sse2,
31127 svml_s_cosf8_core-sse, svml_s_expf16_core-avx2,
31128 svml_s_expf4_core-sse2, svml_s_expf8_core-sse,
31129 svml_s_logf16_core-avx2, svml_s_logf4_core-sse2,
31130 svml_s_logf8_core-sse, svml_s_powf16_core-avx2,
31131 svml_s_powf4_core-sse2, svml_s_powf8_core-sse,
31132 svml_s_sincosf16_core-avx2, svml_s_sincosf4_core-sse2,
31133 svml_s_sincosf8_core-sse, svml_s_sinf16_core-avx2,
31134 svml_s_sinf4_core-sse2 and svml_s_sinf8_core-sse.
31135 * sysdeps/x86_64/fpu/multiarch/ifunc-mathvec-avx2.h: New file.
31136 * sysdeps/x86_64/fpu/multiarch/ifunc-mathvec-avx512.h: Likewise.
31137 * sysdeps/x86_64/fpu/multiarch/ifunc-mathvec-sse4_1.h: Likewise.
31138 * sysdeps/x86_64/fpu/multiarch/svml_d_cos2_core.c: Likewise.
31139 * sysdeps/x86_64/fpu/multiarch/svml_d_cos4_core.c: Likewise.
31140 * sysdeps/x86_64/fpu/multiarch/svml_d_cos8_core.c: Likewise.
31141 * sysdeps/x86_64/fpu/multiarch/svml_d_exp2_core.c: Likewise.
31142 * sysdeps/x86_64/fpu/multiarch/svml_d_exp4_core.c: Likewise.
31143 * sysdeps/x86_64/fpu/multiarch/svml_d_exp8_core.c: Likewise.
31144 * sysdeps/x86_64/fpu/multiarch/svml_d_log2_core.c: Likewise.
31145 * sysdeps/x86_64/fpu/multiarch/svml_d_log4_core.c: Likewise.
31146 * sysdeps/x86_64/fpu/multiarch/svml_d_log8_core.c: Likewise.
31147 * sysdeps/x86_64/fpu/multiarch/svml_d_pow2_core.c: Likewise.
31148 * sysdeps/x86_64/fpu/multiarch/svml_d_pow4_core.c: Likewise.
31149 * sysdeps/x86_64/fpu/multiarch/svml_d_pow8_core.c: Likewise.
31150 * sysdeps/x86_64/fpu/multiarch/svml_d_sin2_core.c: Likewise.
31151 * sysdeps/x86_64/fpu/multiarch/svml_d_sin4_core.c: Likewise.
31152 * sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core.c: Likewise.
31153 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos2_core.c: Likewise.
31154 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos4_core.c: Likewise.
31155 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos8_core.c: Likewise.
31156 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf16_core.c: Likewise.
31157 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf4_core.c: Likewise.
31158 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf8_core.c: Likewise.
31159 * sysdeps/x86_64/fpu/multiarch/svml_d_expf16_core.c: Likewise.
31160 * sysdeps/x86_64/fpu/multiarch/svml_d_expf4_core.c: Likewise.
31161 * sysdeps/x86_64/fpu/multiarch/svml_d_expf8_core.c: Likewise.
31162 * sysdeps/x86_64/fpu/multiarch/svml_d_logf16_core.c: Likewise.
31163 * sysdeps/x86_64/fpu/multiarch/svml_d_logf4_core.c: Likewise.
31164 * sysdeps/x86_64/fpu/multiarch/svml_d_logf8_core.c: Likewise.
31165 * sysdeps/x86_64/fpu/multiarch/svml_d_powf16_core.c: Likewise.
31166 * sysdeps/x86_64/fpu/multiarch/svml_d_powf4_core.c: Likewise.
31167 * sysdeps/x86_64/fpu/multiarch/svml_d_powf8_core.c: Likewise.
31168 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf16_core.c: Likewise.
31169 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf4_core.c: Likewise.
31170 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf8_core.c: Likewise.
31171 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf16_core.c: Likewise.
31172 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf4_core.c: Likewise.
31173 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf8_core.c: Likewise.
31174 * sysdeps/x86_64/fpu/multiarch/svml_d_cos2_core.S: Renamed to
31176 * sysdeps/x86_64/fpu/multiarch/svml_d_cos2_core-sse2.S: This.
31177 Don't include <sysdep.h> nor <init-arch.h>.
31178 (_ZGVbN2v_cos): Removed.
31179 * sysdeps/x86_64/fpu/multiarch/svml_d_cos4_core.S: Renamed to
31181 * sysdeps/x86_64/fpu/multiarch/svml_d_cos4_core-sse.S: This.
31182 Don't include <sysdep.h> nor <init-arch.h>.
31183 (_ZGVdN4v_cos): Removed.
31184 * sysdeps/x86_64/fpu/multiarch/svml_d_cos8_core.S: Renamed to
31186 * sysdeps/x86_64/fpu/multiarch/svml_d_cos8_core-avx2.S: This.
31187 Don't include <sysdep.h> nor <init-arch.h>.
31188 (_ZGVeN8v_cos): Removed.
31189 * sysdeps/x86_64/fpu/multiarch/svml_d_exp2_core.S: Renamed to
31191 * sysdeps/x86_64/fpu/multiarch/svml_d_exp2_core-sse2.S: This.
31192 Don't include <sysdep.h> nor <init-arch.h>.
31193 (_ZGVbN2v_exp): Removed.
31194 * sysdeps/x86_64/fpu/multiarch/svml_d_exp4_core.S: Renamed to
31196 * sysdeps/x86_64/fpu/multiarch/svml_d_exp4_core-sse.S: This.
31197 Don't include <sysdep.h> nor <init-arch.h>.
31198 (_ZGVdN4v_exp): Removed.
31199 * sysdeps/x86_64/fpu/multiarch/svml_d_exp8_core.S: Renamed to
31201 * sysdeps/x86_64/fpu/multiarch/svml_d_exp8_core-avx2.S: This.
31202 Don't include <sysdep.h> nor <init-arch.h>.
31203 (_ZGVeN8v_exp): Removed.
31204 * sysdeps/x86_64/fpu/multiarch/svml_d_log2_core.S: Renamed to
31206 * sysdeps/x86_64/fpu/multiarch/svml_d_log2_core-sse2.S: This.
31207 Don't include <sysdep.h> nor <init-arch.h>.
31208 (_ZGVbN2v_log): Removed.
31209 * sysdeps/x86_64/fpu/multiarch/svml_d_log4_core.S: Renamed to
31211 * sysdeps/x86_64/fpu/multiarch/svml_d_log4_core-sse.S: This.
31212 Don't include <sysdep.h> nor <init-arch.h>.
31213 (_ZGVdN4v_log): Removed.
31214 * sysdeps/x86_64/fpu/multiarch/svml_d_log8_core.S: Renamed to
31216 * sysdeps/x86_64/fpu/multiarch/svml_d_log8_core-avx2.S: This.
31217 Don't include <sysdep.h> nor <init-arch.h>.
31218 (_ZGVeN8v_log): Removed.
31219 * sysdeps/x86_64/fpu/multiarch/svml_d_pow2_core.S: Renamed to
31221 * sysdeps/x86_64/fpu/multiarch/svml_d_pow2_core-sse2.S: This.
31222 Don't include <sysdep.h> nor <init-arch.h>.
31223 (_ZGVbN2vv_pow): Removed.
31224 * sysdeps/x86_64/fpu/multiarch/svml_d_pow4_core.S: Renamed to
31226 * sysdeps/x86_64/fpu/multiarch/svml_d_pow4_core-sse.S: This.
31227 Don't include <sysdep.h> nor <init-arch.h>.
31228 (_ZGVdN4vv_pow): Removed.
31229 * sysdeps/x86_64/fpu/multiarch/svml_d_pow8_core.S: Renamed to
31231 * sysdeps/x86_64/fpu/multiarch/svml_d_pow8_core-avx2.S: This.
31232 Don't include <sysdep.h> nor <init-arch.h>.
31233 (_ZGVeN8vv_pow): Removed.
31234 * sysdeps/x86_64/fpu/multiarch/svml_d_sin2_core.S: Renamed to
31236 * sysdeps/x86_64/fpu/multiarch/svml_d_sin2_core-sse2.S: This.
31237 Don't include <sysdep.h> nor <init-arch.h>.
31238 (_ZGVbN2v_sin): Removed.
31239 * sysdeps/x86_64/fpu/multiarch/svml_d_sin4_core.S: Renamed to
31241 * sysdeps/x86_64/fpu/multiarch/svml_d_sin4_core-sse.S: This.
31242 Don't include <sysdep.h> nor <init-arch.h>.
31243 (_ZGVbN4v_sin): Removed.
31244 * sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core.S: Renamed to
31246 * sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core-avx2.S: This.
31247 Don't include <sysdep.h> nor <init-arch.h>.
31248 (_ZGVbN8v_sin): Removed.
31249 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos2_core.S: Renamed to
31251 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos2_core-sse2.S: This.
31252 Don't include <sysdep.h> nor <init-arch.h>.
31253 (_ZGVbN2vvv_sincos): Removed.
31254 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos4_core.S: Renamed to
31256 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos4_core-sse.S: This.
31257 Don't include <sysdep.h> nor <init-arch.h>.
31258 (_ZGVdN4vvv_sincos): Removed.
31259 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos8_core.S: Renamed to
31261 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos8_core-avx2.S: This.
31262 Don't include <sysdep.h> nor <init-arch.h>.
31263 (_ZGVeN8vvv_sincos): Removed.
31264 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf16_core.S: Renamed to
31266 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf16_core-avx2.S: This.
31267 Don't include <sysdep.h> nor <init-arch.h>.
31268 (_ZGVeN16v_cosf): Removed.
31269 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf4_core.S: Renamed to
31271 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf4_core-sse2.S: This.
31272 Don't include <sysdep.h> nor <init-arch.h>.
31273 (_ZGVbN4v_cosf): Removed.
31274 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf8_core.S: Renamed to
31276 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf8_core-sse.S: This.
31277 Don't include <sysdep.h> nor <init-arch.h>.
31278 (_ZGVdN8v_cosf): Removed.
31279 * sysdeps/x86_64/fpu/multiarch/svml_d_expf16_core.S: Renamed to
31281 * sysdeps/x86_64/fpu/multiarch/svml_d_expf16_core-avx2.S: This.
31282 Don't include <sysdep.h> nor <init-arch.h>.
31283 (_ZGVeN16v_expf): Removed.
31284 * sysdeps/x86_64/fpu/multiarch/svml_d_expf4_core.S: Renamed to
31286 * sysdeps/x86_64/fpu/multiarch/svml_d_expf4_core-sse2.S: This.
31287 Don't include <sysdep.h> nor <init-arch.h>.
31288 (_ZGVbN4v_expf): Removed.
31289 * sysdeps/x86_64/fpu/multiarch/svml_d_expf8_core.S: Renamed to
31291 * sysdeps/x86_64/fpu/multiarch/svml_d_expf8_core-sse.S: This.
31292 Don't include <sysdep.h> nor <init-arch.h>.
31293 (_ZGVdN8v_expf): Removed.
31294 * sysdeps/x86_64/fpu/multiarch/svml_d_logf16_core.S: Renamed to
31296 * sysdeps/x86_64/fpu/multiarch/svml_d_logf16_core-avx2.S: This.
31297 Don't include <sysdep.h> nor <init-arch.h>.
31298 (_ZGVeN16v_logf): Removed.
31299 * sysdeps/x86_64/fpu/multiarch/svml_d_logf4_core.S: Renamed to
31301 * sysdeps/x86_64/fpu/multiarch/svml_d_logf4_core-sse2.S: This.
31302 Don't include <sysdep.h> nor <init-arch.h>.
31303 (_ZGVbN4v_logf): Removed.
31304 * sysdeps/x86_64/fpu/multiarch/svml_d_logf8_core.S: Renamed to
31306 * sysdeps/x86_64/fpu/multiarch/svml_d_logf8_core-sse.S: This.
31307 Don't include <sysdep.h> nor <init-arch.h>.
31308 (_ZGVdN8v_logf): Removed.
31309 * sysdeps/x86_64/fpu/multiarch/svml_d_powf16_core.S: Renamed to
31311 * sysdeps/x86_64/fpu/multiarch/svml_d_powf16_core-avx2.S: This.
31312 Don't include <sysdep.h> nor <init-arch.h>.
31313 (_ZGVeN16vv_powf): Removed.
31314 * sysdeps/x86_64/fpu/multiarch/svml_d_powf4_core.S: Renamed to
31316 * sysdeps/x86_64/fpu/multiarch/svml_d_powf4_core-sse2.S: This.
31317 Don't include <sysdep.h> nor <init-arch.h>.
31318 (_ZGVbN4vv_powf): Removed.
31319 * sysdeps/x86_64/fpu/multiarch/svml_d_powf8_core.S: Renamed to
31321 * sysdeps/x86_64/fpu/multiarch/svml_d_powf8_core-sse.S: This.
31322 Don't include <sysdep.h> nor <init-arch.h>.
31323 (_ZGVdN8vv_powf): Removed.
31324 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf16_core.S: Renamed to
31326 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf16_core-avx2.S: This.
31327 Don't include <sysdep.h> nor <init-arch.h>.
31328 (_ZGVeN16vvv_sincosf): Removed.
31329 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf4_core.S: Renamed to
31331 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf4_core-sse2.S: This.
31332 Don't include <sysdep.h> nor <init-arch.h>.
31333 (_ZGVbN4vvv_sincosf): Removed.
31334 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf8_core.S: Renamed to
31336 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf8_core-sse.S: This.
31337 Don't include <sysdep.h> nor <init-arch.h>.
31338 (_ZGVdN8vvv_sincosf): Removed.
31339 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf16_core.S: Renamed to
31341 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf16_core-avx2.S: This.
31342 Don't include <sysdep.h> nor <init-arch.h>.
31343 (_ZGVeN16v_sinf): Removed.
31344 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf4_core.S: Renamed to
31346 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf4_core-sse2.S: This.
31347 Don't include <sysdep.h> nor <init-arch.h>.
31348 (_ZGVbN4v_sinf): Removed.
31349 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf8_core.S: Renamed to
31351 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf8_core-sse.S: This.
31352 Don't include <sysdep.h> nor <init-arch.h>.
31353 (_ZGVdN8v_sinf): Removed.
31355 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
31357 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
31358 Add s_ceil-sse4_1, s_ceilf-sse4_1, s_floor-sse4_1,
31359 s_floorf-sse4_1, s_nearbyint-sse4_1, s_nearbyintf-sse4_1,
31360 s_rint-sse4_1 and s_rintf-sse4_1.
31361 * sysdeps/x86_64/fpu/multiarch/ifunc-sse4_1.h: New file.
31362 * sysdeps/x86_64/fpu/multiarch/s_ceil.c: Likewise.
31363 * sysdeps/x86_64/fpu/multiarch/s_ceilf.c: Likewise.
31364 * sysdeps/x86_64/fpu/multiarch/s_floor.c: Likewise.
31365 * sysdeps/x86_64/fpu/multiarch/s_floorf.c: Likewise.
31366 * sysdeps/x86_64/fpu/multiarch/s_nearbyint.c: Likewise.
31367 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.c: Likewise.
31368 * sysdeps/x86_64/fpu/multiarch/s_rint.c: Likewise.
31369 * sysdeps/x86_64/fpu/multiarch/s_rintf.c: Likewise.
31370 * sysdeps/x86_64/fpu/multiarch/s_ceil.S: Renamed to ...
31371 * sysdeps/x86_64/fpu/multiarch/s_ceil-sse4_1.S: This. Don't
31372 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
31374 * sysdeps/x86_64/fpu/multiarch/s_ceilf.S: Renamed to ...
31375 * sysdeps/x86_64/fpu/multiarch/s_ceilf-sse4_1.S: This. Don't
31376 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
31377 (__ceilf): Removed.
31378 * sysdeps/x86_64/fpu/multiarch/s_floor.S: Renamed to ...
31379 * sysdeps/x86_64/fpu/multiarch/s_floor-sse4_1.S: This. Don't
31380 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
31381 (__floor): Removed.
31382 * sysdeps/x86_64/fpu/multiarch/s_floorf.S: Renamed to ...
31383 * sysdeps/x86_64/fpu/multiarch/s_floorf-sse4_1.S: This. Don't
31384 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
31385 (__floorf): Removed.
31386 * sysdeps/x86_64/fpu/multiarch/s_nearbyint.S: Renamed to ...
31387 * sysdeps/x86_64/fpu/multiarch/s_nearbyint-sse4_1.S: This. Don't
31388 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
31389 (__nearbyint): Removed.
31390 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.S: Renamed to ...
31391 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf-sse4_1.S: This. Don't
31392 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
31393 (__nearbyintf): Removed.
31394 * sysdeps/x86_64/fpu/multiarch/s_rint.S: Renamed to ...
31395 * sysdeps/x86_64/fpu/multiarch/s_rint-sse4_1.S: This. Don't
31396 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
31398 * sysdeps/x86_64/fpu/multiarch/s_rintf.S: Renamed to ...
31399 * sysdeps/x86_64/fpu/multiarch/s_rintf-sse4_1.S: This. Don't
31400 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
31401 (__rintf): Removed.
31403 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
31405 * sysdeps/i386/start.S (_start): Check Check PIC instead of
31406 SHARED. Avoid dynamic relocation against main in static PIE.
31408 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
31411 * elf/Makefile (CFLAGS-tst-prelink.c): New.
31412 (LDFLAGS-tst-prelink): Likewise.
31414 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
31416 * sysdeps/unix/sysv/linux/i386/sysdep.h (I386_USE_SYSENTER):
31417 Define to I386_USE_SYSENTER to 0 or 1 if not defined.
31418 (ENTER_KERNEL): Check if I386_USE_SYSENTER is 1 and check PIC.
31419 (INTERNAL_SYSCALL_MAIN_INLINE): Likewise.
31420 (INTERNAL_SYSCALL_NCS): Likewise.
31421 (LOADARGS_1): Likewise.
31422 (LOADARGS_5): Likewise.
31423 (RESTOREARGS_1): Likewise.
31424 (RESTOREARGS_5): Likewise.
31426 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
31428 * sysdeps/x86_64/memmove.S (MEMCPY_SYMBOL): Don't check SHARED.
31429 (MEMPCPY_SYMBOL): Likewise.
31430 * sysdeps/x86_64/multiarch/ifunc-impl-list.c
31431 (__libc_ifunc_impl_list): Test memcpy and mempcpy in libc.a.
31432 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Also include
31434 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
31435 * sysdeps/x86_64/multiarch/memmove-avx512-no-vzeroupper.S:
31437 * sysdeps/x86_64/multiarch/memcpy.c: Also include in libc.a.
31438 (__hidden_ver1): Don't use in libc.a.
31439 * sysdeps/x86_64/multiarch/memmove-sse2-unaligned-erms.S
31440 (__mempcpy): Don't create a weak alias in libc.a.
31441 * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S: Support
31443 * sysdeps/x86_64/multiarch/mempcpy.c: Also include in libc.a.
31444 (__hidden_ver1): Don't use in libc.a.
31446 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
31448 * config.make.in (have-insert): New.
31449 * configure.ac (libc_cv_insert): New. Set to yes if linker
31450 supports INSERT in linker script.
31451 (AC_SUBST(libc_cv_insert): New.
31452 * configure: Regenerated.
31453 * sysdeps/x86_64/Makefile (tests): Add tst-split-dynreloc only
31454 if $(have-insert) == yes.
31456 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
31458 * elf/Makefile (tests): Add vismain only if
31459 $(have-protected-data) == yes.
31460 (tests-pie): Likewise.
31462 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
31465 * sysdeps/x86/cpu-features.c (init_cpu_features): Set
31466 bit_arch_Use_dl_runtime_resolve_opt only with AVX512F.
31468 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
31471 * sysdeps/i386/i586/memset.S
31472 (__memset_zero_constant_len_parameter): Removed.
31473 * sysdeps/i386/i686/memset.S
31474 (__memset_zero_constant_len_parameter): Likewise.
31475 * sysdeps/i386/i686/multiarch/memset_chk.S
31476 (__memset_zero_constant_len_parameter): Likewise.
31477 * sysdeps/x86_64/memset.S (__memset_zero_constant_len_parameter):
31480 2017-08-03 Aurelien Jarno <aurelien@aurel32.net>
31482 * stdlib/getentropy.c (getentropy): Change return type to int.
31484 2017-08-03 Aurelien Jarno <aurelien@aurel32.net>
31486 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Regenerated.
31488 2017-08-03 Joseph Myers <joseph@codesourcery.com>
31490 * math/s_nextafter.c (__nextafter): Use uintN_t instead of
31492 * math/s_nexttowardf.c (__nexttowardf): Likewise.
31493 * sysdeps/generic/math_private.h (ieee_double_shape_type):
31495 (ieee_float_shape_type): Likewise.
31496 * sysdeps/i386/fpu/s_fpclassifyl.c (__fpclassifyl): Likewise.
31497 * sysdeps/i386/fpu/s_isnanl.c (__isnanl): Likewise.
31498 * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Likewise.
31499 * sysdeps/i386/fpu/s_nexttoward.c (__nexttoward): Likewise.
31500 * sysdeps/i386/fpu/s_nexttowardf.c (__nexttowardf): Likewise.
31501 * sysdeps/ieee754/dbl-64/e_acosh.c (__ieee754_acosh): Likewise.
31502 * sysdeps/ieee754/dbl-64/e_cosh.c (__ieee754_cosh): Likewise.
31503 * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Likewise.
31504 * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r):
31506 * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Likewise.
31507 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn): Likewise.
31508 (__ieee754_yn): Likewise.
31509 * sysdeps/ieee754/dbl-64/e_log10.c (__ieee754_log10): Likewise.
31510 * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Likewise.
31511 * sysdeps/ieee754/dbl-64/e_rem_pio2.c (__ieee754_rem_pio2):
31513 * sysdeps/ieee754/dbl-64/e_sinh.c (__ieee754_sinh): Likewise.
31514 * sysdeps/ieee754/dbl-64/s_ceil.c (__ceil): Likewise.
31515 * sysdeps/ieee754/dbl-64/s_copysign.c (__copysign): Likewise.
31516 * sysdeps/ieee754/dbl-64/s_erf.c (__erf): Likewise.
31517 (__erfc): Likewise.
31518 * sysdeps/ieee754/dbl-64/s_expm1.c (__expm1): Likewise.
31519 * sysdeps/ieee754/dbl-64/s_finite.c (FINITE): Likewise.
31520 * sysdeps/ieee754/dbl-64/s_floor.c (__floor): Likewise.
31521 * sysdeps/ieee754/dbl-64/s_fpclassify.c (__fpclassify): Likewise.
31522 * sysdeps/ieee754/dbl-64/s_isnan.c (__isnan): Likewise.
31523 * sysdeps/ieee754/dbl-64/s_issignaling.c (__issignaling):
31525 * sysdeps/ieee754/dbl-64/s_llrint.c (__llrint): Likewise.
31526 * sysdeps/ieee754/dbl-64/s_llround.c (__llround): Likewise.
31527 * sysdeps/ieee754/dbl-64/s_lrint.c (__lrint): Likewise.
31528 * sysdeps/ieee754/dbl-64/s_lround.c (__lround): Likewise.
31529 * sysdeps/ieee754/dbl-64/s_modf.c (__modf): Likewise.
31530 * sysdeps/ieee754/dbl-64/s_nextup.c (__nextup): Likewise.
31531 * sysdeps/ieee754/dbl-64/s_remquo.c (__remquo): Likewise.
31532 * sysdeps/ieee754/dbl-64/s_round.c (__round): Likewise.
31533 * sysdeps/ieee754/dbl-64/s_trunc.c (__trunc): Likewise.
31534 * sysdeps/ieee754/dbl-64/wordsize-64/s_issignaling.c
31535 (__issignaling): Likewise.
31536 * sysdeps/ieee754/flt-32/e_atan2f.c (__ieee754_atan2f): Likewise.
31537 * sysdeps/ieee754/flt-32/e_fmodf.c (__ieee754_fmodf): Likewise.
31538 * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r):
31540 * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_ynf): Likewise.
31541 * sysdeps/ieee754/flt-32/e_log10f.c (__ieee754_log10f): Likewise.
31542 * sysdeps/ieee754/flt-32/e_powf.c (__ieee754_powf): Likewise.
31543 * sysdeps/ieee754/flt-32/e_rem_pio2f.c (__ieee754_rem_pio2f):
31545 * sysdeps/ieee754/flt-32/e_remainderf.c (__ieee754_remainderf):
31547 * sysdeps/ieee754/flt-32/e_sqrtf.c (__ieee754_sqrtf): Likewise.
31548 * sysdeps/ieee754/flt-32/s_ceilf.c (__ceilf): Likewise.
31549 * sysdeps/ieee754/flt-32/s_copysignf.c (__copysignf): Likewise.
31550 * sysdeps/ieee754/flt-32/s_erff.c (__erff): Likewise.
31551 (__erfcf): Likewise.
31552 * sysdeps/ieee754/flt-32/s_expm1f.c (__expm1f): Likewise.
31553 * sysdeps/ieee754/flt-32/s_finitef.c (FINITEF): Likewise.
31554 * sysdeps/ieee754/flt-32/s_floorf.c (__floorf): Likewise.
31555 * sysdeps/ieee754/flt-32/s_fpclassifyf.c (__fpclassifyf):
31557 * sysdeps/ieee754/flt-32/s_isnanf.c (__isnanf): Likewise.
31558 * sysdeps/ieee754/flt-32/s_issignalingf.c (__issignalingf):
31560 * sysdeps/ieee754/flt-32/s_llrintf.c (__llrintf): Likewise.
31561 * sysdeps/ieee754/flt-32/s_llroundf.c (__llroundf): Likewise.
31562 * sysdeps/ieee754/flt-32/s_lrintf.c (__lrintf): Likewise.
31563 * sysdeps/ieee754/flt-32/s_lroundf.c (__lroundf): Likewise.
31564 * sysdeps/ieee754/flt-32/s_modff.c (__modff): Likewise.
31565 * sysdeps/ieee754/flt-32/s_remquof.c (__remquof): Likewise.
31566 * sysdeps/ieee754/flt-32/s_roundf.c (__roundf): Likewise.
31567 * sysdeps/ieee754/ldbl-128/e_acoshl.c (__ieee754_acoshl):
31569 * sysdeps/ieee754/ldbl-128/e_atan2l.c (__ieee754_atan2l):
31571 * sysdeps/ieee754/ldbl-128/e_atanhl.c (__ieee754_atanhl):
31573 * sysdeps/ieee754/ldbl-128/e_fmodl.c (__ieee754_fmodl): Likewise.
31574 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (__ieee754_gammal_r):
31576 * sysdeps/ieee754/ldbl-128/e_hypotl.c (__ieee754_hypotl):
31578 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_jnl): Likewise.
31579 (__ieee754_ynl): Likewise.
31580 * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Likewise.
31581 * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c (__ieee754_rem_pio2l):
31583 * sysdeps/ieee754/ldbl-128/e_remainderl.c (__ieee754_remainderl):
31585 * sysdeps/ieee754/ldbl-128/e_sinhl.c (__ieee754_sinhl): Likewise.
31586 * sysdeps/ieee754/ldbl-128/k_cosl.c (__kernel_cosl): Likewise.
31587 * sysdeps/ieee754/ldbl-128/k_sincosl.c (__kernel_sincosl):
31589 * sysdeps/ieee754/ldbl-128/k_sinl.c (__kernel_sinl): Likewise.
31590 * sysdeps/ieee754/ldbl-128/s_ceill.c (__ceill): Likewise.
31591 * sysdeps/ieee754/ldbl-128/s_copysignl.c (__copysignl): Likewise.
31592 * sysdeps/ieee754/ldbl-128/s_erfl.c (__erfcl): Likewise.
31593 * sysdeps/ieee754/ldbl-128/s_fabsl.c (__fabsl): Likewise.
31594 * sysdeps/ieee754/ldbl-128/s_finitel.c (__finitel): Likewise.
31595 * sysdeps/ieee754/ldbl-128/s_floorl.c (__floorl): Likewise.
31596 * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c (__fpclassifyl):
31598 * sysdeps/ieee754/ldbl-128/s_frexpl.c (__frexpl): Likewise.
31599 * sysdeps/ieee754/ldbl-128/s_isnanl.c (__isnanl): Likewise.
31600 * sysdeps/ieee754/ldbl-128/s_issignalingl.c (__issignalingl):
31602 * sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Likewise.
31603 * sysdeps/ieee754/ldbl-128/s_llroundl.c (__llroundl): Likewise.
31604 * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Likewise.
31605 * sysdeps/ieee754/ldbl-128/s_lroundl.c (__lroundl): Likewise.
31606 * sysdeps/ieee754/ldbl-128/s_modfl.c (__modfl): Likewise.
31607 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl):
31609 * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl):
31611 * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward):
31613 * sysdeps/ieee754/ldbl-128/s_nexttowardf.c (__nexttowardf):
31615 * sysdeps/ieee754/ldbl-128/s_nextupl.c (__nextupl): Likewise.
31616 * sysdeps/ieee754/ldbl-128/s_remquol.c (__remquol): Likewise.
31617 * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
31618 * sysdeps/ieee754/ldbl-128/s_roundl.c (__roundl): Likewise.
31619 * sysdeps/ieee754/ldbl-128/s_tanhl.c (__tanhl): Likewise.
31620 * sysdeps/ieee754/ldbl-128/s_truncl.c (__truncl): Likewise.
31621 * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl):
31623 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
31625 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
31626 * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
31628 * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c
31629 (__ieee754_remainderl): Likewise.
31630 * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
31631 * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
31632 * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Likewise.
31633 * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c (___fpclassifyl):
31635 * sysdeps/ieee754/ldbl-128ibm/s_modfl.c (__modfl): Likewise.
31636 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
31638 * sysdeps/ieee754/ldbl-128ibm/s_remquol.c (__remquol): Likewise.
31639 * sysdeps/ieee754/ldbl-96/e_acoshl.c (__ieee754_acoshl): Likewise.
31640 * sysdeps/ieee754/ldbl-96/e_asinl.c (__ieee754_asinl): Likewise.
31641 * sysdeps/ieee754/ldbl-96/e_atanhl.c (__ieee754_atanhl): Likewise.
31642 * sysdeps/ieee754/ldbl-96/e_coshl.c (__ieee754_coshl): Likewise.
31643 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
31645 * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Likewise.
31646 * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l): Likewise.
31647 (__ieee754_y0l): Likewise.
31650 * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l): Likewise.
31651 (__ieee754_y1l): Likewise.
31654 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl): Likewise.
31655 (__ieee754_ynl): Likewise.
31656 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c (sin_pi): Likewise.
31657 (__ieee754_lgammal_r): Likewise.
31658 * sysdeps/ieee754/ldbl-96/e_rem_pio2l.c (__ieee754_rem_pio2l):
31660 * sysdeps/ieee754/ldbl-96/e_sinhl.c (__ieee754_sinhl): Likewise.
31661 * sysdeps/ieee754/ldbl-96/s_copysignl.c (__copysignl): Likewise.
31662 * sysdeps/ieee754/ldbl-96/s_erfl.c (__erfl): Likewise.
31663 (__erfcl): Likewise.
31664 * sysdeps/ieee754/ldbl-96/s_frexpl.c (__frexpl): Likewise.
31665 * sysdeps/ieee754/ldbl-96/s_issignalingl.c (__issignalingl):
31667 * sysdeps/ieee754/ldbl-96/s_llrintl.c (__llrintl): Likewise.
31668 * sysdeps/ieee754/ldbl-96/s_llroundl.c (__llroundl): Likewise.
31669 * sysdeps/ieee754/ldbl-96/s_lrintl.c (__lrintl): Likewise.
31670 * sysdeps/ieee754/ldbl-96/s_lroundl.c (__lroundl): Likewise.
31671 * sysdeps/ieee754/ldbl-96/s_modfl.c (__modfl): Likewise.
31672 * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
31673 * sysdeps/ieee754/ldbl-96/s_nexttowardf.c (__nexttowardf):
31675 * sysdeps/ieee754/ldbl-96/s_nextupl.c (__nextupl): Likewise.
31676 * sysdeps/ieee754/ldbl-96/s_remquol.c (__remquol): Likewise.
31677 * sysdeps/ieee754/ldbl-96/s_roundl.c (__roundl): Likewise.
31678 * sysdeps/ieee754/ldbl-96/s_tanhl.c (__tanhl): Likewise.
31679 * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c (__nldbl_nexttowardf):
31681 * sysdeps/m68k/m680x0/fpu/e_pow.c (s(__ieee754_pow)): Likewise.
31682 * sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c (__fpclassifyl):
31684 * sysdeps/m68k/m680x0/fpu/s_llrint.c (__llrint): Likewise.
31685 * sysdeps/m68k/m680x0/fpu/s_llrintf.c (__llrintf): Likewise.
31686 * sysdeps/m68k/m680x0/fpu/s_llrintl.c (__llrintl): Likewise.
31687 * sysdeps/m68k/m680x0/fpu/s_nextafterl.c (__nextafterl): Likewise.
31688 * sysdeps/x86/fpu/powl_helper.c (__powl_helper): Likewise.
31690 2017-08-03 Florian Weimer <fweimer@redhat.com>
31693 * sysdeps/posix/getaddrinfo.c (gethosts): Release resolver context
31694 on memory allocation failure.
31696 2017-08-03 Alan Modra <amodra@gmail.com>
31698 * sysdeps/powerpc/mod-tlsopt-powerpc.c: Extract from
31699 tst-tlsopt-powerpc.c with function name change and no test harness.
31700 * sysdeps/powerpc/tst-tlsopt-powerpc.c: Remove body of test.
31701 Call tls_get_addr_opt_test.
31702 * sysdeps/powerpc/Makefile (LDFLAGS-tst-tlsopt-powerpc): Don't define.
31703 (modules-names): Add mod-tlsopt-powerpc.
31704 (mod-tlsopt-powerpc.so-no-z-defs): Define.
31705 (tst-tlsopt-powerpc): Depend on .so.
31706 * sysdeps/powerpc/powerpc64/tls-macros.h (__TLS_GET_ADDR): Don't
31707 define. Expand use in TLS_GD and TLS_LD.
31709 2017-08-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
31711 * sysdeps/mach/hurd/enbl-secure.c (__libc_init_secure): Define
31713 * sysdeps/posix/shm_open.c: Include <pthread.h>.
31715 2017-08-02 Joseph Myers <joseph@codesourcery.com>
31718 * math/tgmath.h (__TGMATH_BINARY_REAL_ONLY): Add arguments before
31719 comparing size with that of double.
31720 (__TGMATH_BINARY_REAL_STD_ONLY): Likewise.
31721 (__TGMATH_BINARY_REAL_RET_ONLY): Likewise.
31722 (__TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY): Likewise.
31723 (__TGMATH_TERNARY_REAL_ONLY): Likewise.
31724 (__TGMATH_BINARY_REAL_IMAG): Likewise.
31725 * math/gen-tgmath-tests.py (Type.init_types): Create __int128 and
31726 unsigned __int128 types.
31728 2017-08-02 Steve Ellcey <sellcey@cavium.com>
31730 * localedata/Makefile (CFLAGS-tst_iswalnum.c, CFLAGS-tst_iswalpha.c
31731 CFLAGS-tst_iswcntrl.c, CFLAGS-tst_iswdigit.c, CFLAGS-tst_iswgraph.c,
31732 CFLAGS-tst_iswlower.c, CFLAGS-tst_iswprint.c, CFLAGS-tst_iswpunct.c,
31733 CFLAGS-tst_iswspace.c, CFLAGS-tst_iswupper.c, CFLAGS-tst_iswxdigit.c,
31734 CFLAGS-tst_towlower.c, CFLAGS-tst_towupper.c): Remove.
31736 2017-08-02 H.J. Lu <hongjiu.lu@intel.com>
31738 * sysdeps/x86_64/start.S (_start): Check PIC instead of SHARED.
31740 2017-08-02 H.J. Lu <hongjiu.lu@intel.com>
31742 * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Check PIC instead
31744 * sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S: Likewise.
31745 * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
31746 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
31747 * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
31748 * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
31749 * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
31750 * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
31752 2017-08-02 Joseph Myers <joseph@codesourcery.com>
31755 * math/tgmath.h (__tgmath_real_type): Use unary + on potentially
31756 bit-field expressions passed to sizeof or typeof.
31757 [__HAVE_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
31758 (__TGMATH_F128): Likewise.
31759 [__HAVE_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
31760 (__TGMATH_CF128): Likewise.
31761 (__TGMATH_UNARY_REAL_ONLY): Likewise.
31762 (__TGMATH_UNARY_REAL_RET_ONLY): Likewise.
31763 (__TGMATH_BINARY_FIRST_REAL_ONLY): Likewise.
31764 (__TGMATH_BINARY_FIRST_REAL_STD_ONLY): Likewise.
31765 (__TGMATH_BINARY_REAL_ONLY): Likewise.
31766 (__TGMATH_BINARY_REAL_STD_ONLY): Likewise.
31767 (__TGMATH_BINARY_REAL_RET_ONLY): Likewise.
31768 (__TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY): Likewise.
31769 (__TGMATH_TERNARY_REAL_ONLY): Likewise.
31770 (__TGMATH_TERNARY_FIRST_REAL_RET_ONLY): Likewise.
31771 (__TGMATH_UNARY_REAL_IMAG): Likewise.
31772 (__TGMATH_UNARY_IMAG): Likewise.
31773 (__TGMATH_UNARY_REAL_IMAG_RET_REAL): Likewise.
31774 (__TGMATH_BINARY_REAL_IMAG): Likewise.
31775 * math/gen-tgmath-tests.py (Type.init_types): Create bit_field
31777 (define_vars_for_type): Handle bit_field type specially.
31778 (Tests.__init__): Declare structure with bit-field element.
31780 2017-08-02 H.J. Lu <hongjiu.lu@intel.com>
31783 * sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S
31784 (MEMCPY_CHK): Define only if SHARED is defined.
31785 * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S (MEMCPY_CHK):
31787 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S (MEMCPY_CHK):
31790 See ChangeLog.18 for earlier changes.