1 2019-02-27 Adhemerval Zanella <adhemerval.zanella@linaro.org>
3 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c: Define ifunc
4 symbol as __wcspcy instead of wcscpy.
6 2019-02-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
8 * include/stdio.h (__renameat2): New hidden prototype.
9 * stdio-common/renameat2.c (__renameat2): Add hidden definition.
10 * sysdeps/mach/hurd/renameat.c (__renameat): Move implementation to...
11 * sysdeps/mach/hurd/renameat2.c (__renameat2): ... new function.
12 * sysdeps/unix/sysv/linux/renameat2.c (__renameat2): Add hidden definition.
14 2019-02-27 Joseph Myers <joseph@codesourcery.com>
16 * hurd/hurdinit.c (_hurd_init): Use braces around empty body of an
19 * benchtests/bench-strcpy.c (do_test): Use space before '('.
20 * benchtests/bench-string.h (cmdline_process_function): Likewise.
21 * benchtests/bench-strlen.c (do_test): Likewise.
22 (test_main): Likewise.
23 * catgets/gencat.c (read_old): Likewise.
24 * elf/cache.c (load_aux_cache): Likewise.
25 * iconvdata/bug-iconv8.c (do_test): Likewise.
26 * math/test-tgmath-ret.c (do_test): Likewise.
27 * nis/nis_call.c (rec_dirsearch): Likewise.
28 * nis/nis_findserv.c (__nis_findfastest_with_timeout): Likewise.
29 * nptl/tst-audit-threads.c (do_test): Likewise.
30 * nptl/tst-cancel4-common.h (set_socket_buffer): Likewise.
31 * nss/nss_test1.c (init): Likewise.
32 * nss/test-netdb.c (test_hosts): Likewise.
33 * posix/execvpe.c (maybe_script_execute): Likewise.
34 * stdio-common/tst-fmemopen4.c (do_test): Likewise.
35 * stdio-common/tst-printf.c (do_test): Likewise.
36 * stdio-common/vfscanf-internal.c (__vfscanf_internal): Likewise.
37 * stdlib/fmtmsg.c (NKEYWORDS): Likewise.
38 * stdlib/qsort.c (STACK_SIZE): Likewise.
39 * stdlib/test-canon.c (do_test): Likewise.
40 * stdlib/tst-swapcontext1.c (do_test): Likewise.
41 * string/memcmp.c (OPSIZ): Likewise.
42 * string/test-strcpy.c (do_test): Likewise.
43 (do_random_tests): Likewise.
44 * string/test-strlen.c (do_test): Likewise.
45 (test_main): Likewise.
46 * string/test-strrchr.c (do_test): Likewise.
47 (do_random_tests): Likewise.
48 * string/tester.c (test_memrchr): Likewise.
49 (test_memchr): Likewise.
50 * sysdeps/generic/memcopy.h (OPSIZ): Likewise.
51 * sysdeps/generic/unwind-dw2.c (execute_stack_op): Likewise.
52 * sysdeps/generic/unwind-pe.h (read_sleb128): Likewise.
53 (read_encoded_value_with_base): Likewise.
54 * sysdeps/hppa/dl-machine.h (elf_machine_runtime_setup): Likewise.
55 * sysdeps/hppa/fpu/feupdateenv.c (__feupdateenv): Likewise.
56 * sysdeps/ia64/fpu/sfp-machine.h (TI_BITS): Likewise.
57 * sysdeps/mach/hurd/spawni.c (__spawni): Likewise.
58 * sysdeps/posix/spawni.c (maybe_script_execute): Likewise.
59 * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (query_auxv):
61 * sysdeps/unix/sysv/linux/aarch64/bits/procfs.h (ELF_NGREG):
63 * sysdeps/unix/sysv/linux/arm/bits/procfs.h (ELF_NGREG): Likewise.
64 * sysdeps/unix/sysv/linux/arm/ioperm.c (init_iosys): Likewise.
65 * sysdeps/unix/sysv/linux/csky/bits/procfs.h (ELF_NGREG):
67 * sysdeps/unix/sysv/linux/m68k/bits/procfs.h (ELF_NGREG):
69 * sysdeps/unix/sysv/linux/nios2/bits/procfs.h (ELF_NGREG):
71 * sysdeps/unix/sysv/linux/spawni.c (maybe_script_execute):
73 * sysdeps/unix/sysv/linux/x86/bits/procfs.h (ELF_NGREG): Likewise.
74 * sysdeps/unix/sysv/linux/x86/bits/sigcontext.h
75 (FP_XSTATE_MAGIC2_SIZE): Likewise.
76 * sysdeps/x86/fpu/sfp-machine.h (TI_BITS): Likewise.
77 * time/test_time.c (main): Likewise.
79 2019-02-27 Adhemerval Zanella <adhemerval.zanella@linaro.org>
81 * wcsmbs/wcsnlen.c (__wcsnlen): Rewrite using wmemchr.
83 * wcsmbs/wcsncpy.c (__wcsncpy): Rewrite using wcsnlen, wmemset, and
86 * wcsmbs/wcsncat.c (wcsncat): Rewrite using wcslen, wcsnlen, and
89 * wcsmbs/wcscpy.c (__wcpcpy): Rewrite using wcslen and wmemcpy.
91 * include/wchar.h (__wcscpy): New prototype.
92 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c
93 (__wcscpy): Route internal symbol to generic implementation.
94 * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c (wcscpy):
95 Add internal __wcscpy alias.
96 * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c (wcscpy): Likewise.
97 * sysdeps/s390/wcscpy.c (wcscpy): Likewise.
98 * sysdeps/x86_64/multiarch/wcscpy.c (wcscpy): Likewise.
99 * wcsmbs/wcscpy.c (wcscpy): Add
100 * sysdeps/x86_64/multiarch/wcscpy-c.c (WCSCPY): Adjust macro to
101 use generic implementation.
102 * wcsmbs/wcscat.c (wcscat): Rewrite using wcslen and wcscpy.
104 * wcsmbs/wcpncpy.c (__wcpcpy): Rewrite using wcslen, wmemcpy, and
107 * sysdeps/m68k/wcpcpy.c: Remove file.
108 * wcsmbs/wcpcpy.c (__wcpcpy): Rewrite using wcslen and wmemcpy.
110 2019-02-26 Joseph Myers <joseph@codesourcery.com>
112 * sysdeps/arm/sysdep.h (#if condition): Break lines before rather
113 than after operators.
114 * sysdeps/mach/hurd/fork.c (__fork): Likewise.
115 * sysdeps/mach/hurd/getcwd.c
116 (__hurd_canonicalize_directory_name_internal): Likewise.
117 * sysdeps/mach/hurd/htl/pt-mutex-consistent.c
118 (pthread_mutex_consistent): Likewise.
119 * sysdeps/mach/hurd/htl/pt-mutex-init.c (_pthread_mutex_init):
121 * sysdeps/mach/hurd/htl/pt-mutex-transfer-np.c
122 (__pthread_mutex_transfer_np): Likewise.
123 * sysdeps/mach/hurd/htl/pt-mutex-unlock.c
124 (__pthread_mutex_unlock): Likewise.
125 * sysdeps/mach/hurd/htl/pt-mutex.h (ROBUST_LOCK): Likewise.
126 (mtx_owned_p): Likewise.
127 * sysdeps/mach/hurd/htl/pt-mutexattr-getrobust.c
128 (pthread_mutexattr_getrobust): Likewise.
129 * sysdeps/mach/hurd/i386/init-first.c (init1): Likewise.
130 * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
132 * sysdeps/mach/hurd/ioctl.c (__ioctl): Likewise.
133 * sysdeps/mach/hurd/jmp-unwind.c (_longjmp_unwind): Likewise.
134 * sysdeps/mach/hurd/kill.c (__kill): Likewise.
135 * sysdeps/mach/hurd/mig-reply.c (__mig_get_reply_port): Likewise.
136 * sysdeps/mach/hurd/ptrace.c (ptrace): Likewise.
137 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
138 * sysdeps/unix/sysv/linux/aarch64/sysdep.h (#if condition):
140 * sysdeps/unix/sysv/linux/alpha/ioperm.c (process_cpuinfo):
142 * sysdeps/unix/sysv/linux/bits/timex.h (STA_RONLY): Likewise.
143 * sysdeps/unix/sysv/linux/csky/sysdep.h (#if condition): Likewise.
144 * sysdeps/unix/sysv/linux/generic/____longjmp_chk.c
145 (____longjmp_chk): Likewise.
146 * sysdeps/unix/sysv/linux/generic/futimesat.c (futimesat):
148 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h
149 (INTERNAL_SYSCALL): Likewise.
150 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
151 (INTERNAL_SYSCALL): Likewise.
152 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
153 (__get_clockfreq_via_cpuinfo): Likewise.
155 * sysdeps/i386/dl-machine.h (elf_machine_rela): Add fall-through
157 * sysdeps/m68k/m680x0/fpu/s_cexp_template.c (s(__cexp)): Likewise.
158 * sysdeps/m68k/memcopy.h (WORD_COPY_FWD): Likewise.
159 (WORD_COPY_BWD): Likewise.
160 * sysdeps/mach/hurd/ioctl.c (__ioctl): Likewise.
161 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
163 * sysdeps/s390/iso-8859-1_cp037_z900.c (TR_LOOP): Likewise.
164 * sysdeps/mips/dl-machine.h (elf_machine_reloc): Move fall-through
166 * sysdeps/mips/dl-trampoline.c (__dl_runtime_resolve): Likewise.
168 2019-02-25 Joseph Myers <joseph@codesourcery.com>
170 * dirent/dirent.h [!_DIRENT_HAVE_D_NAMLEN
171 && _DIRENT_HAVE_D_RECLEN] (_D_ALLOC_NAMLEN): Break lines before
172 rather than after operators.
173 * elf/cache.c (print_cache): Likewise.
174 * gshadow/fgetsgent_r.c (__fgetsgent_r): Likewise.
175 * htl/pt-getattr.c (__pthread_getattr_np): Likewise.
176 * hurd/hurdinit.c (_hurd_setproc): Likewise.
177 * hurd/hurdkill.c (_hurd_sig_post): Likewise.
178 * hurd/hurdlookup.c (__file_name_lookup_under): Likewise.
179 * hurd/hurdsig.c (_hurd_internal_post_signal): Likewise.
180 (reauth_proc): Likewise.
181 * hurd/lookup-at.c (__file_name_lookup_at): Likewise.
182 (__file_name_split_at): Likewise.
183 (__directory_name_split_at): Likewise.
184 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Likewise.
185 * hurd/port2fd.c (_hurd_port2fd): Likewise.
186 * iconv/gconv_dl.c (do_print): Likewise.
187 * inet/netinet/in.h (struct sockaddr_in): Likewise.
188 * libio/wstrops.c (_IO_wstr_seekoff): Likewise.
189 * locale/setlocale.c (new_composite_name): Likewise.
190 * malloc/memusagestat.c (main): Likewise.
191 * misc/fstab.c (fstab_convert): Likewise.
192 * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_usercnt):
194 * nss/nss_compat/compat-grp.c (getgrent_next_nss): Likewise.
195 (getgrent_next_file): Likewise.
196 (internal_getgrnam_r): Likewise.
197 (internal_getgrgid_r): Likewise.
198 * nss/nss_compat/compat-initgroups.c (getgrent_next_nss):
200 (internal_getgrent_r): Likewise.
201 * nss/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Likewise.
202 (getpwent_next_nss): Likewise.
203 (getpwent_next_file): Likewise.
204 (internal_getpwnam_r): Likewise.
205 (internal_getpwuid_r): Likewise.
206 * nss/nss_compat/compat-spwd.c (getspent_next_nss_netgr):
208 (getspent_next_nss): Likewise.
209 (internal_getspnam_r): Likewise.
210 * pwd/fgetpwent_r.c (__fgetpwent_r): Likewise.
211 * shadow/fgetspent_r.c (__fgetspent_r): Likewise.
212 * string/strchr.c (STRCHR): Likewise.
213 * string/strchrnul.c (STRCHRNUL): Likewise.
214 * sysdeps/aarch64/fpu/fpu_control.h (_FPU_FPCR_IEEE): Likewise.
215 * sysdeps/aarch64/sfp-machine.h (_FP_CHOOSENAN): Likewise.
216 * sysdeps/csky/dl-machine.h (elf_machine_rela): Likewise.
217 * sysdeps/generic/memcopy.h (PAGE_COPY_FWD_MAYBE): Likewise.
218 * sysdeps/generic/symbol-hacks.h (__stack_chk_fail_local):
220 * sysdeps/gnu/netinet/ip_icmp.h (ICMP_INFOTYPE): Likewise.
221 * sysdeps/gnu/updwtmp.c (TRANSFORM_UTMP_FILE_NAME): Likewise.
222 * sysdeps/gnu/utmp_file.c (TRANSFORM_UTMP_FILE_NAME): Likewise.
223 * sysdeps/hppa/jmpbuf-unwind.h (_JMPBUF_UNWINDS): Likewise.
224 * sysdeps/mach/hurd/bits/stat.h (S_ISPARE): Likewise.
225 * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start): Likewise.
226 (open_file): Likewise.
227 * sysdeps/mach/hurd/htl/pt-mutexattr-setprotocol.c
228 (pthread_mutexattr_setprotocol): Likewise.
229 * sysdeps/mach/hurd/ioctl.c (__ioctl): Likewise.
230 * sysdeps/mach/hurd/mmap.c (__mmap): Likewise.
231 * sysdeps/mach/hurd/ptrace.c (ptrace): Likewise.
232 * sysdeps/mach/hurd/spawni.c (__spawni): Likewise.
233 * sysdeps/microblaze/dl-machine.h (elf_machine_type_class):
235 (elf_machine_rela): Likewise.
236 * sysdeps/mips/mips32/sfp-machine.h (_FP_CHOOSENAN): Likewise.
237 * sysdeps/mips/mips64/sfp-machine.h (_FP_CHOOSENAN): Likewise.
238 * sysdeps/mips/sys/asm.h (multiple #if conditionals): Likewise.
239 * sysdeps/posix/rename.c (rename): Likewise.
240 * sysdeps/powerpc/novmx-sigjmp.c (__novmx__sigjmp_save): Likewise.
241 * sysdeps/powerpc/sigjmp.c (__vmx__sigjmp_save): Likewise.
242 * sysdeps/s390/fpu/fenv_libc.h (FPC_VALID_MASK): Likewise.
243 * sysdeps/s390/utf8-utf16-z9.c (gconv_end): Likewise.
244 * sysdeps/unix/grantpt.c (grantpt): Likewise.
245 * sysdeps/unix/sysv/linux/a.out.h (N_TXTOFF): Likewise.
246 * sysdeps/unix/sysv/linux/updwtmp.c (TRANSFORM_UTMP_FILE_NAME):
248 * sysdeps/unix/sysv/linux/utmp_file.c (TRANSFORM_UTMP_FILE_NAME):
250 * sysdeps/x86/cpu-features.c (get_common_indices): Likewise.
251 * time/tzfile.c (__tzfile_compute): Likewise.
253 2019-02-22 Joseph Myers <joseph@codesourcery.com>
255 * benchtests/bench-memmem.c (simple_memmem): Break lines before
256 rather than after operators.
257 * benchtests/bench-skeleton.c (TIMESPEC_AFTER): Likewise.
258 * crypt/md5.c (md5_finish_ctx): Likewise.
259 * crypt/sha256.c (__sha256_finish_ctx): Likewise.
260 * crypt/sha512.c (__sha512_finish_ctx): Likewise.
261 * elf/cache.c (load_aux_cache): Likewise.
262 * elf/dl-load.c (open_verify): Likewise.
263 * elf/get-dynamic-info.h (elf_get_dynamic_info): Likewise.
264 * elf/readelflib.c (process_elf_file): Likewise.
265 * elf/rtld.c (dl_main): Likewise.
266 * elf/sprof.c (generate_call_graph): Likewise.
267 * hurd/ctty-input.c (_hurd_ctty_input): Likewise.
268 * hurd/ctty-output.c (_hurd_ctty_output): Likewise.
269 * hurd/dtable.c (reauth_dtable): Likewise.
270 * hurd/getdport.c (__getdport): Likewise.
271 * hurd/hurd/signal.h (_hurd_interrupted_rpc_timeout): Likewise.
272 * hurd/hurd/sigpreempt.h (HURD_PREEMPT_SIGNAL_P): Likewise.
273 * hurd/hurdfault.c (_hurdsig_fault_catch_exception_raise):
275 * hurd/hurdioctl.c (fioctl): Likewise.
276 * hurd/hurdselect.c (_hurd_select): Likewise.
277 * hurd/hurdsig.c (_hurdsig_abort_rpcs): Likewise.
278 (STOPSIGS): Likewise.
279 * hurd/hurdstartup.c (_hurd_startup): Likewise.
280 * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Likewise.
281 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Likewise.
282 * hurd/msgportdemux.c (msgport_server): Likewise.
283 * hurd/setauth.c (_hurd_setauth): Likewise.
284 * include/features.h (__GLIBC_USE_DEPRECATED_SCANF): Likewise.
285 * libio/libioP.h [IO_DEBUG] (CHECK_FILE): Likewise.
286 * locale/programs/ld-ctype.c (set_class_defaults): Likewise.
287 * localedata/tests-mbwc/tst_swscanf.c (tst_swscanf): Likewise.
288 * login/tst-utmp.c (do_check): Likewise.
289 (simulate_login): Likewise.
290 * mach/lowlevellock.h (lll_lock): Likewise.
291 (lll_trylock): Likewise.
292 * math/test-fenv.c (ALL_EXC): Likewise.
293 * math/test-fenvinline.c (ALL_EXC): Likewise.
294 * misc/sys/cdefs.h (__attribute_deprecated_msg__): Likewise.
295 * nis/nis_call.c (__do_niscall3): Likewise.
296 * nis/nis_callback.c (cb_prog_1): Likewise.
297 * nis/nis_defaults.c (searchaccess): Likewise.
298 * nis/nis_findserv.c (__nis_findfastest_with_timeout): Likewise.
299 * nis/nis_ismember.c (internal_ismember): Likewise.
300 * nis/nis_local_names.c (nis_local_principal): Likewise.
301 * nis/nss_nis/nis-rpc.c (_nss_nis_getrpcbyname_r): Likewise.
302 * nis/nss_nisplus/nisplus-netgrp.c (_nss_nisplus_getnetgrent_r):
304 * nis/ypclnt.c (yp_match): Likewise.
305 (yp_first): Likewise.
307 (yp_master): Likewise.
308 (yp_order): Likewise.
309 * nscd/hstcache.c (cache_addhst): Likewise.
310 * nscd/initgrcache.c (addinitgroupsX): Likewise.
311 * nss/nss_compat/compat-pwd.c (copy_pwd_changes): Likewise.
312 (internal_getpwuid_r): Likewise.
313 * nss/nss_compat/compat-spwd.c (copy_spwd_changes): Likewise.
314 * posix/glob.h (__GLOB_FLAGS): Likewise.
315 * posix/regcomp.c (peek_token): Likewise.
316 (peek_token_bracket): Likewise.
317 (parse_expression): Likewise.
318 * posix/regexec.c (sift_states_iter_mb): Likewise.
319 (check_node_accept_bytes): Likewise.
320 * posix/tst-spawn3.c (do_test): Likewise.
321 * posix/wordexp-test.c (testit): Likewise.
322 * posix/wordexp.c (parse_tilde): Likewise.
323 (exec_comm): Likewise.
324 * posix/wordexp.h (__WRDE_FLAGS): Likewise.
325 * resource/vtimes.c (TIMEVAL_TO_VTIMES): Likewise.
326 * setjmp/sigjmp.c (__sigjmp_save): Likewise.
327 * stdio-common/printf_fp.c (__printf_fp_l): Likewise.
328 * stdio-common/tst-fileno.c (do_test): Likewise.
329 * stdio-common/vfprintf-internal.c (vfprintf): Likewise.
330 * stdlib/strfmon_l.c (__vstrfmon_l_internal): Likewise.
331 * stdlib/strtod_l.c (round_and_return): Likewise.
332 (____STRTOF_INTERNAL): Likewise.
333 * stdlib/tst-strfrom.h (TEST_STRFROM): Likewise.
334 * string/strcspn.c (STRCSPN): Likewise.
335 * string/test-memmem.c (simple_memmem): Likewise.
336 * termios/tcsetattr.c (tcsetattr): Likewise.
337 * time/alt_digit.c (_nl_parse_alt_digit): Likewise.
338 * time/asctime.c (asctime_internal): Likewise.
339 * time/strptime_l.c (__strptime_internal): Likewise.
340 * time/sys/time.h (timercmp): Likewise.
341 * time/tzfile.c (__tzfile_compute): Likewise.
343 2019-02-21 Patsy Griffin Franklin <pfrankli@redhat.com>
346 * nss/tst-nss-files-hosts-long.root/etc/host.conf: New file.
348 2019-02-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
350 * argp/argp-help.c (__argp_error_internal): New function,
351 renamed from __argp_error, but that takes a 'mode_flags'
352 parameter to control the format of long double parameters.
353 (__argp_error): Converted into a call __argp_error_internal.
354 (__argp_failure_internal): New function, renamed from
355 __argp_failure, but that takes a 'mode_flags' parameter.
356 (__argp_failure): Converted into a call __argp_failure_internal.
357 * misc/err.c (__vwarnx_internal): New function, renamed from
358 vwarnx, but that takes a 'mode_flags' parameter.
359 (vwarnx): Converted into a call to __vwarnx_internal.
360 (__vwarn_internal): New function, renamed from vwarn, but that
361 takes a 'mode_flags' parameter.
362 (vwarn): Converted into a call to __vwarn_internal.
363 * misc/error.c (error_tail): Add 'mode_flags' parameter. Update
364 call to __vfxprintf with 'mode_flags'.
365 (__error_internal): New function, renamed from error, but that
366 takes a 'mode_flags' parameter.
367 (error): Converted into a call to __error_internal.
368 (__error_at_line_internal): New function, renamed from
369 error_at_line, but that takes a 'mode_flags' parameter.
370 (error_at_line): Converted into a call to
371 __error_at_line_internal.
372 * include/stdio.h (__vfxprintf): Add mode_flags parameter.
373 * stdio-common/fxprintf.c (locked_vfxprintf, __vfxprintf):
376 2019-02-20 Martin Liska <mliska@suse.cz>
378 * math/Makefile: Install math-vector-fortran.h.
379 * bits/math-vector-fortran.h: New file.
380 * sysdeps/x86/fpu/bits/math-vector-fortran.h: New file.
382 2019-02-20 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
384 * sysdeps/powerpc/powerpc64/le/configure.ac: Remove test.
385 * sysdeps/powerpc/powerpc64/le/configure: Regenerate.
387 2019-02-19 Wolfram Sang <wsa@the-dreams.de>
389 * nptl/pthread_mutex_trylock.c: Fix comment.
391 2019-02-19 Carlos O'Donell <carlos@redhat.com>
393 * nptl/pthread_tryjoin.c: Fix comment.
395 2019-02-18 Joseph Myers <joseph@codesourcery.com>
398 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Add break
399 after R_SPARC_H34 case.
401 2019-02-18 Florian Weimer <fweimer@redhat.com>
403 * resolv/compat-gethnamaddr.c (Dprintf): Remove definition.
404 (getanswer): Do not call Dprintf.
405 (res_gethostbyname2_context): Likewise.
406 (res_gethostbyaddr_context): Likewise.
408 2019-02-18 Florian Weimer <fweimer@redhat.com>
410 * libio/libio.h (_IO_stdin, _IO_stdout, _IO_stderr): Remove
412 * libio/stdio.c (AL, AL2, _IO_stdin, _IO_stdout, _IO_stderr):
414 * libio/stdfiles.c: Update comment.
415 * libio/oldstdfiles.c (_IO_check_libio): Update comment. Do not
416 set _IO_stdin, _IO_stdout, _IO_stderr.
417 * libio/libioP.h (_IO_fake_stdiobuf): Remove unused declaration.
418 [SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)] (_IO_legacy_file): New
420 (_IO_deallocate_file): New inline function.
421 * libio/iolibio.h (_IO_vprintf): Remove definition.
422 * libio/iofclose.c (_IO_new_fclose): Use _IO_deallocate_file.
423 * libio/oldiofclose.c (_IO_old_fclose): Likewise.
424 * libio/iofwide.c (_IO_fwide): Use __glibc_unlikely and
426 * libio/oldfileops.c (_IO_old_file_init_internal): Remove
427 __builtin_expect. Use _IO_legacy_file.
429 2019-02-18 Stefan Liebler <stli@linux.ibm.com>
431 * sysdeps/unix/sysv/linux/tst-clone3.c (do_test):
432 Initialize ctid with a known value and remove update of ctid
434 (wait_tid): Adjust arguments and call futex_wait with ctid_val
435 as assumed current value of ctid_ptr.
437 2019-02-15 Florian Weimer <fweimer@redhat.com>
439 Check that non-sysdeps headers have wrapper headers.
440 * scripts/check-wrapper-headers.py: New file.
441 * Makefile (tests-special): Add check-wrapper-headers.out.
442 (check-wrapper-headers.out): New target.
443 * Rules (tests-special): Add check-wrapper-headers.out.
444 (check-wrapper-headers.out): New target.
446 2019-02-15 Florian Weimer <fweimer@redhat.com>
448 Add missing header wrappers under include/.
449 * include/ar.h: New file.
450 * include/bits/mqueue2.h: Likewise.
451 * include/bits/stdio.h: Likewise.
452 * include/bits/stdio2.h: Likewise.
453 * include/fstab.h: Likewise.
454 * include/fts.h: Likewise.
455 * include/lastlog.h: Likewise.
456 * include/netinet/icmp6.h: Likewise.
457 * include/netinet/igmp.h: Likewise.
458 * include/netinet/ip6.h: Likewise.
459 * include/re_comp.h: Likewise.
460 * include/regexp.h: Likewise.
461 * include/rpcsvc/bootparam.h: Likewise.
462 * include/rpcsvc/yp_prot.h: Likewise.
463 * include/sys/random.h: Likewise.
464 * include/sys/stropts.h: Likewise.
465 * include/sys/ttychars.h: Likewise.
466 * include/sys/vfs.h: Likewise.
467 * include/wait.h: Likewise.
469 2019-02-15 Florian Weimer <fweimer@redhat.com>
471 * nptl_db/proc_service.h: Move to ...
472 * sysdeps/nptl/proc_service.h: ... here.
473 * nptl_db/thread_db.h: Move to ...
474 * sysdeps/nptl/thread_db.h: ... here.
475 * nptl/descr.h: Include <thread_db.h>.
477 2019-02-15 Adhemerval Zanella <adhemerval.zanella@linaro.org>
479 * io/Makefile (tests): Add tst-lockf.
480 * io/lockf.c (lockf): Use __fcntl and only define for
481 !__OFF_T_MATCHES_OFF64_T.
482 * io/lockf64.c (__lockf64): Call __fcntl64 and alias to lockf for
483 __OFF_T_MATCHES_OFF64_T case.
484 * io/tst-lockf.c: New file.
485 * sysdeps/unix/sysv/linux/i386/lockf64.c: Remove file.
486 * sysdeps/unix/sysv/linux/arm/lockf64.c: Likewise.
487 * sysdeps/unix/sysv/linux/m68k/lockf64.c: Likewise.
488 * sysdeps/unix/sysv/linux/mips/mips32/lockf64.c: Likewise.
489 * sysdeps/unix/sysv/linux/mips/mips64/n32/lockf64.c: Likewise.
490 * sysdeps/unix/sysv/linux/powerpc/powerpc32/lockf64.c: Likewise.
491 * sysdeps/unix/sysv/linux/s390/s390-32/lockf64.c: Likewise.
492 * sysdeps/unix/sysv/linux/sh/lockf64.c: Likewise.
493 * sysdeps/unix/sysv/linux/sparc/sparc32/lockf64.c: Likewise.
495 2019-02-15 Florian Weimer <fweimer@redhat.com>
498 * nptl/pthread_join_common.c (__pthread_timedjoin_ex): Do not read
499 pd->result after the thread descriptor has been freed.
501 2019-02-15 Joseph Myers <joseph@codesourcery.com>
503 * sunrpc/tst-svc_register.c (rpcbind_address): Remove qualifier
504 from function return type.
506 * setjmp/tst-setjmp.c (jump): Use __attribute__ ((__noreturn__)).
508 2019-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
510 * scripts/test_printers_common.py: Set TERM to a known harmless
513 2019-02-14 Joseph Myers <joseph@codesourcery.com>
515 * sunrpc/xdr.c (xdr_int): Add fall-through comment.
516 (xdr_u_int): Likewise.
517 (xdr_enum): Likewise.
518 (xdr_bytes): Reword fall-through comment.
519 (xdr_string): Likewise.
521 2019-02-14 Adhemerval Zanella <adhemerval.zanella@linaro.org>
524 * nptl/Makefile (lpthread-routines): Remove lll_timedwait_tid.
525 (tests): Add tst-join8 tst-join9.
526 * nptl/lll_timedwait_tid.c: Remove file.
527 * sysdeps/sparc/sparc32/lll_timedwait_tid.c: Likewise.
528 * sysdeps/unix/sysv/linux/i386/lll_timedwait_tid.c: Likewise.
529 * sysdeps/sysv/linux/x86_64/lll_timedwait_tid.c: Likewise.
530 * nptl/pthread_join_common.c (timedwait_tid): New function.
531 (__pthread_timedjoin_ex): Act as cancellation entrypoint is block
533 * nptl/tst-join5.c (thread_join): New function.
534 (tf1, tf2, do_test): Use libsupport and add pthread_timedjoin_np
536 * nptl/tst-join8.c: New file.
537 * nptl/tst-join9.c: Likewise.
538 * sysdeps/nptl/lowlevellock-futex.h (lll_futex_wait_cancel,
539 lll_futex_timed_wait_cancel): Add generic macros.
540 * sysdeps/nptl/lowlevellock.h (__lll_timedwait_tid, lll_wait_tid):
542 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
543 * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
544 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
545 * sysdeps/sparc/sparc32/lowlevellock.c (__lll_timedwait_tid):
547 * sysdeps/unix/sysv/linux/i386/lowlevellock.S (__lll_timedwait_tid):
549 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Likewise.
550 * sysdeps/unix/sysv/linux/lowlevellock-futex.h
551 (lll_futex_timed_wait_cancel): New macro.
553 2019-02-14 Wilco Dijkstra <wdijkstr@arm.com>
555 * benchtests/Makefile: Add malloc-simple benchmark.
556 * benchtests/bench-malloc-simple.c: New benchmark.
558 2019-02-14 Siddhesh Poyarekar <siddhesh@sourceware.org>
560 * benchtests/bench-memmove.c (do_one_test): Remove unused
563 * benchtests/bench-memmove-large.c (do_one_test): Remove unused
567 2019-01-13 Jim Wilson <jimw@sifive.com>
570 * elf/Makefile (CFLAGS-tst-unwind-main.c): Add -DUSE_PTHREADS=0.
571 * elf/tst-unwind-main.c: If USE_PTHEADS, include pthread.h and error.h
573 (main): If USE_PTHREADS, call pthread_create to run func. Otherwise
575 * nptl/Makefile (tests): Add tst-unwind-thread.
576 (CFLAGS-tst-unwind-thread.c): Define.
577 * nptl/tst-unwind-thread.c: New file.
578 * sysdeps/unix/sysv/linux/riscv/clone.S (__thread_start): Mark ra
581 2019-02-13 Joseph Myers <joseph@codesourcery.com>
583 * iconvdata/cns11643.h (ucs4_to_cns11643): Adjust fall-through
585 * nis/nis_call.c (__do_niscall3): Likewise.
587 * catgets/gencat.c (normalize_line): Use braces around empty
589 * include/stap-probe.h [!USE_STAP_PROBE && !__ASSEMBLER__]
590 (STAP_PROBE0): Use do {} while (0) for do-nothing definition.
591 [!USE_STAP_PROBE && !__ASSEMBLER__] (STAP_PROBE1): Likewise.
592 [!USE_STAP_PROBE && !__ASSEMBLER__] (STAP_PROBE2): Likewise.
593 [!USE_STAP_PROBE && !__ASSEMBLER__] (STAP_PROBE3): Likewise.
594 [!USE_STAP_PROBE && !__ASSEMBLER__] (STAP_PROBE4): Likewise.
595 * libio/libio.h (_IO_funlockfile): Use ((void) 0) for do-nothing
598 * support/test-container.c (recursive_remove): Use FAIL_EXIT1 if
601 2019-02-12 Wilco Dijkstra <wdijkstr@arm.com>
603 * benchtests/bench-strcasecmp.c (stupid_strcasecmp): Remove.
604 * benchtests/bench-strcasestr.c (stupid_strcasestr): Remove.
605 * benchtests/bench-strchr.c (stupid_strchr): Remove.
606 * benchtests/bench-strcmp.c (stupid_strcmp): Remove.
607 * benchtests/bench-strcspn.c (stupid_strcspn): Remove.
608 * benchtests/bench-strlen.c (builtin_strlen): Remove.
609 * benchtests/bench-strncasecmp.c (stupid_strncasecmp): Remove.
610 * benchtests/bench-strncmp.c (stupid_strncmp): Remove.
611 * benchtests/bench-strpbrk.c (stupid_strpbrk): Remove.
612 * benchtests/bench-strspn.c (stupid_strspn): Remove.
613 * benchtests/Makefile: Remove bench-bcopy.c and bench-bzero.c.
614 * benchtests/bench-bcopy.c: Delete file.
615 * benchtests/bench-bzero.c: Likewise.
616 * benchtests/bench-memccpy.c (stupid_memccpy): Remove.
617 (simple_memccpy): Remove.
618 (generic_memccpy): Add function.
619 * benchtests/bench-memcpy.c: (builtin_memcpy): Remove.
620 * benchtests/bench-memmove.c (simple_bcopy): Remove.
621 * benchtests/bench-mempcpy.c (simple_mempcpy): Remove.
622 (generic_mempcpy): Add new function.
623 * benchtests/bench-memset.c (simple_bzero): Remove.
624 (builtin_bzero): Remove.
625 (builtin_memset): Remove.
626 * benchtests/bench-rawmemchr.c (simple_rawmemchr): Remove.
627 (generic_rawmemchr): Add new function.
629 2019-02-12 Florian Weimer <fweimer@redhat.com>
631 * nss/getent.c (ahosts_keys_int): Include IPv6 scope ID in output.
633 2019-02-12 Adhemerval Zanella <adhemerval.zanella@linaro.org>
636 * elf/Makefile (tests): Add tst-audit13.
637 (modules-names): Add tst-audit13mod1.
638 (tst-audit13.out, LDFLAGS-tst-audit13mod1.so, tst-audit13-ENV): New
640 * elf/tst-audit13.c: New file.
641 * elf/tst-audit13mod1.c: Likewise.
643 2019-02-12 Florian Weimer <fweimer@redhat.com>
646 * elf/rtld.c (unload_audit_module): New function.
647 (report_audit_module_load_error): Likewise.
648 (load_audit_module): Likewise. Extracted from dl_main. Call
649 _dl_close if the laversion symbol cannot be found. Use early
650 returns for error handling. Add malloc error check. Check for a
651 zero return value from la_version. Remove spurious comment about
652 static TLS initialization. Remove useless casts.
653 (notify_audit_modules_of_loaded_object): New function. Extracted
655 (load_audit_module): Likewise.
656 (dl_main): Call load_audit_modules.
658 2019-02-12 Joseph Myers <joseph@codesourcery.com>
660 * elf/dl-exception.c (_dl_exception_create_format): Add
661 fall-through comments.
662 * elf/ldconfig.c (parse_conf_include): Likewise.
663 * elf/rtld.c (print_statistics): Likewise.
664 * locale/programs/charmap.c (parse_charmap): Likewise.
665 * misc/mntent_r.c (__getmntent_r): Likewise.
666 * posix/wordexp.c (parse_arith): Likewise.
667 (parse_backtick): Likewise.
668 * resolv/ns_ttl.c (ns_parse_ttl): Likewise.
669 * sysdeps/x86/cpu-features.c (init_cpu_features): Likewise.
670 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
672 2019-02-11 Paul A. Clarke <pc@us.ibm.com>
674 * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrtf):
675 Use float instead of double.
677 2019-02-11 TAMUKI Shoichi <tamuki@linet.gr.jp>
679 * time/strftime_l.c: Fix a few whitespace arrangement inconsistencies.
681 2019-02-08 Joseph Myers <joseph@codesourcery.com>
683 * sysdeps/powerpc/bits/mathinline.h: Remove.
685 2019-02-08 Florian Weimer <fweimer@redhat.com>
687 math: Enable <bits/math-finite.h> sysdeps override, as used on ia64.
688 * math/bits/math-finite.h: Move to ...
689 * bits/math-finite.h: ... here.
691 2019-02-08 Florian Weimer <fweimer@redhat.com>
693 * sysdeps/generic/bits/unistd_ext.h: Move to ...
694 * bits/unistd_ext.h: here.
696 2019-02-08 Patsy Griffin Franklin <pfrankli@redhat.com>
699 * nss/Makefile (test-container): Add tst-nss-files-hosts-long.
700 * nss/tst-nss-files-hosts-long.c: New file.
701 * nss/tst-nss-files-hosts-long.root: New directory.
702 * nss/tst-nss-files-hosts-long.root/etc: Likewise.
703 * nss/tst-nss-files-hosts-long.root/etc/hosts: New file.
705 2019-02-08 Florian Weimer <fweimer@redhat.com>
707 * include/bits/unistd_ext.h: Remove file.
708 * posix/bits/unistd_ext.h: Move to ...
709 * sysdeps/generic/bits/unistd_ext.h: ... here.
711 2019-02-08 Florian Weimer <fweimer@redhat.com>
713 * include/bits/unistd_ext.h: New file.
715 2019-02-08 TAMUKI Shoichi <tamuki@linet.gr.jp>
717 * time/tst-strftime2.c: Use array_length macros instead of magic
720 2019-02-08 Florian Weimer <fweimer@redhat.com>
723 * sysdeps/nptl/fork.h (__run_fork_handlers): Add multiple_threads
725 * nptl/register-atfork.c (__run_fork_handlers): Only perform
726 locking if the new do_locking argument is true.
727 * sysdeps/nptl/fork.c (__libc_fork): Pass multiple_threads to
730 2019-02-08 Florian Weimer <fweimer@redhat.com>
733 Linux: Add gettid system call wrapper.
734 * posix/Makefile (headers): Add bits/unistd_ext.h.
735 * posix/bits/unistd_ext.h: New file.
736 * posix/unistd.h: Include it.
737 * manual/process.texi (Process Identification): Document gettid.
738 * sysdeps/unix/sysv/linux/Makefile [subdir == misc] (tests): Add
739 tst-gettid, tst-gettid-kill.
740 (tst-gettid): Link with $(shared-thread-library).
741 * sysdeps/unix/sysv/linux/Version (GLIBC_2.30): Export gettid.
742 * sysdeps/unix/sysv/linux/bits/unistd_ext.h: New file.
743 * sysdeps/unix/sysv/linux/bits/syscalls.list (gettid): Add.
744 * sysdeps/unix/sysv/linux/bits/tst-gettid.c: New file.
745 * sysdeps/unix/sysv/linux/bits/tst-gettid-kill.c: Likewise.
746 * sysdeps/unix/sysv/linux/aarch64/libc.abilist (GLIBC_2.30):
748 * sysdeps/unix/sysv/linux/alpha/libc.abilist (GLIBC_2.30):
750 * sysdeps/unix/sysv/linux/arm/libc.abilist (GLIBC_2.30): Likewise.
751 * sysdeps/unix/sysv/linux/csky/libc.abilist (GLIBC_2.30):
753 * sysdeps/unix/sysv/linux/hppa/libc.abilist (GLIBC_2.30):
755 * sysdeps/unix/sysv/linux/i386/libc.abilist (GLIBC_2.30):
757 * sysdeps/unix/sysv/linux/ia64/libc.abilist (GLIBC_2.30):
759 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist (GLIBC_2.30):
761 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist (GLIBC_2.30):
763 * sysdeps/unix/sysv/linux/microblaze/libc.abilist (GLIBC_2.30):
765 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist
766 (GLIBC_2.30): Likewise.
767 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist
768 (GLIBC_2.30): Likewise.
769 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist
770 (GLIBC_2.30): Likewise.
771 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist
772 (GLIBC_2.30): Likewise.
773 * sysdeps/unix/sysv/linux/nios2/libc.abilist (GLIBC_2.30):
775 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist
776 (GLIBC_2.30): Likewise.
777 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist
778 (GLIBC_2.30): Likewise.
779 * sysdeps/unix/sysv/linux/powerpc/powerpc64/be/libc.abilist
780 (GLIBC_2.30): Likewise.
781 * sysdeps/unix/sysv/linux/powerpc/powerpc64/le/libc.abilist
782 (GLIBC_2.30): Likewise.
783 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist (GLIBC_2.30):
785 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist (GLIBC_2.30):
787 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist (GLIBC_2.30):
789 * sysdeps/unix/sysv/linux/sh/libc.abilist (GLIBC_2.30): Likewise.
790 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist (GLIBC_2.30):
792 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist (GLIBC_2.30):
794 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist (GLIBC_2.30):
796 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist (GLIBC_2.30):
798 * sysdeps/unix/sysv/linux/tst-setgetname.c (gettid): Remove.
800 2019-02-07 Florian Weimer <fweimer@redhat.com>
802 * rt/clock-compat.c (COMPAT_REDIRECT): Turn librt forwarders into
803 compatibility symbols.
805 2019-02-07 Stefan Liebler <stli@linux.ibm.com>
808 * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
809 Add compiler barriers and comments.
811 2019-02-07 Florian Weimer <fweimer@redhat.com>
813 * include/array_length.h (array_length): Do not use a statement
814 expression and _Static_assert, so that array_length can be used at
815 file scope and as a constant expression.
817 2019-02-07 Florian Weimer <fweimer@redhat.com>
819 * support/xdlfcn.h (xdlmopen): Declare.
820 * support/xdlmopen.c: New file.
821 * support/Makefile (libsupport-routines): Add xdlmopen.
823 2019-02-06 Joseph Myers <joseph@codesourcery.com>
825 * elf/dl-load.h (_dl_postprocess_loadcmd): Use __always_inline
826 before return type, without separate inline.
827 * elf/dl-tunables.c (maybe_enable_malloc_check): Likewise.
828 * elf/dl-tunables.h (tunable_is_name): Likewise.
829 * malloc/malloc.c (do_set_trim_threshold): Likewise.
830 (do_set_top_pad): Likewise.
831 (do_set_mmap_threshold): Likewise.
832 (do_set_mmaps_max): Likewise.
833 (do_set_mallopt_check): Likewise.
834 (do_set_perturb_byte): Likewise.
835 (do_set_arena_test): Likewise.
836 (do_set_arena_max): Likewise.
837 (do_set_tcache_max): Likewise.
838 (do_set_tcache_count): Likewise.
839 (do_set_tcache_unsorted_limit): Likewise.
840 * nis/nis_subr.c (count_dots): Likewise.
841 * nptl/allocatestack.c (advise_stack_range): Likewise.
842 * sysdeps/ieee754/dbl-64/s_sin.c (do_cos): Likewise.
844 (reduce_sincos): Likewise.
845 (do_sincos): Likewise.
846 * sysdeps/unix/sysv/linux/x86/elision-conf.c
847 (do_set_elision_enable): Likewise.
848 (TUNABLE_CALLBACK_FNDECL): Likewise.
850 2019-02-06 Florian Weimer <fweimer@redhat.com>
852 * support/xdlfcn.c (xdlopen, xdlclose): Do not call dlerror.
853 (xdlsym): Use dlerror to detect a NULL symbol.
855 2019-02-06 Florian Weimer <fweimer@redhat.com>
857 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Do not include
859 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
861 2019-02-06 Stefan Liebler <stli@linux.ibm.com>
863 * libio/tst-bz24153.c (wide): Use wide char format specifier.
865 2019-02-06 Stefan Liebler <stli@linux.ibm.com>
867 * sysdeps/s390/wmemcmp-vx.S: Add strong alias to
868 __wmemcmp and weak alias to wmemcmp.
870 2019-02-06 Stefan Liebler <stli@linux.ibm.com>
873 * nptl/allocatestack.c (allocate_stack): Align pointer pd for
874 TLS_TCB_AT_TP tls variant.
875 * nptl/tst-tls1.c: Migrate to support/test-driver.c.
876 Add alignment checks.
877 * support/Makefile (libsupport-routines): Add xposix_memalign and
879 * support/support.h: Add xposix_memalign.
880 * support/xthread.h: Add xpthread_attr_setstack.
881 * support/xposix_memalign.c: New File.
882 * support/xpthread_attr_setstack.c: Likewise.
884 2019-02-05 Florian Weimer <fweimer@redhat.com>
887 arm: Use "nr" constraint for Systemtap probes, to avoid the
888 compiler using memory operands for constants, due to the "o"
889 alternative in the default "nor" constraint.
890 * include/stap-probe.h [USE_STAP_PROBE]: Include
891 <stap-probe-machine.h>
892 * sysdeps/generic/stap-probe-machine.h: New file.
893 * sysdeps/arm/stap-probe-machine.h: Likewise.
895 2019-02-04 Joseph Myers <joseph@codesourcery.com>
897 * malloc/malloc.c (tcache_get): Compare tcache->counts[tc_idx]
898 with 0, not tcache->entries[tc_idx].
900 * nscd/connections.c (reqinfo): Initialize SHUTDOWN element only
903 2019-02-04 Andreas Schwab <schwab@suse.de>
907 * posix/fnmatch_loop.c (internal_fnmatch, internal_fnwmatch): When
908 looking up collating elements match against (wide) character
909 sequence instead of name. Correct alignment adjustment.
910 * posix/fnmatch.c: Don't include "../locale/elem-hash.h".
911 (WMEMCMP) [HANDLE_MULTIBYTE]: Define.
912 * posix/Makefile (tests): Add tst-fnmatch4 and tst-fnmatch5.
913 (LOCALES): Add cs_CZ.ISO-8859-2.
914 * posix/tst-fnmatch4.c: New file.
915 * posix/tst-fnmatch5.c: New file.
916 * include/wchar.h (__wmemcmp): Declare.
917 * wcsmbs/wmemcmp.c: Define __wmemcmp and add wmemcmp as weak alias.
918 * sysdeps/i386/i686/multiarch/wmemcmp.c: Likewise.
919 * sysdeps/x86_64/multiarch/wmemcmp.c: Likewise.
920 * sysdeps/s390/wmemcmp.c: Likewise.
922 2019-02-04 H.J. Lu <hongjiu.lu@intel.com>
926 * NEWS: Updated for CVE-2019-7309.
927 * sysdeps/x86_64/memcmp.S: Use RDX_LP for size. Clear the
928 upper 32 bits of RDX register for x32. Use unsigned Jcc
929 instructions, instead of signed.
930 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-memcmp-2.
931 * sysdeps/x86_64/x32/tst-size_t-memcmp-2.c: New test.
933 2019-02-04 Florian Weimer <fweimer@redhat.com>
935 * posix/spawn.h (posix_spawn, posix_spawnp): Add __nonnull attribute.
936 (posix_spawnattr_init, posix_spawnattr_destroy): Likewise.
937 (posix_spawnattr_getsigdefault, posix_spawnattr_setsigdefault):
939 (posix_spawnattr_getsigmask, posix_spawnattr_setsigmask): Likewise.
940 (posix_spawnattr_getflags, posix_spawnattr_setflags): Likewise.
941 (posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Likewise.
942 (posix_spawnattr_getschedpolicy, posix_spawnattr_setschedpolicy):
944 (posix_spawnattr_getschedparam, posix_spawnattr_setschedparam):
946 (posix_spawn_file_actions_init, posix_spawn_file_actions_destroy):
948 (posix_spawn_file_actions_addopen): Likewise.
949 (posix_spawn_file_actions_addclose): Likewise.
950 (posix_spawn_file_actions_adddup2): Likewise.
951 (posix_spawn_file_actions_addchdir_np): Likewise. Add __restrict
953 (posix_spawn_file_actions_addfchdir_np): Likewise.
955 2019-02-04 David Newall <glibc@davidnewall.com>
957 elf: Implement --preload option for the dynamic linker.
958 * elf/rtld.c (preloadarg): New variable.
959 (handle_preload_list): Pass through “where” argument to
961 (dl_main): Handle "--preload" and add second call to
963 * elf/Makefile (tests-special): Add tst-rtld-preload.out.
964 (tst-rtld-preload-OBJS): Set variable.
965 (tst-rtld-preload.out): New target.
966 * elf/tst-rtld-preload.sh: New file.
968 2019-02-04 Matthew Malcomson <matthew.malcomson@arm.com>
970 * Makefile (testrun.sh): Exit in case of incorrect argument.
972 2019-02-04 Florian Weimer <fweimer@redhat.com>
974 * time/tzfile.c (__tzfile_read): Reorder suballocations to avoid
977 2019-02-03 Florian Weimer <fweimer@redhat.com>
979 * time/tzfile.c (__tzfile_read): Use struct alloc_buffer and its
980 implicit overflow checks.
982 2019-02-03 Aurelien Jarno <aurelien@aurel32.net>
984 * stdlib/isomac.c: Include <unistd.h>.
986 2019-02-03 Florian Weimer <fweimer@redhat.com>
988 * include/time.h (__tzfile_default): Use int, not long int, for
990 * time/tzfile.c (struct ttinfo): Change type of the offset member
992 (__tzfile_read): Remove useless cast.
993 (__tzfile_default): Adjust prototype.
994 * time/tzset.c (tz_rule): Change type of the offset member to int.
995 (parse_offset): Change the type of the sign variable to int.
997 2019-02-03 Florian Weimer <fweimer@redhat.com>
1000 * debug/gets_chk.c (__gets_chk): Use stdin instead of _IO_stdin.
1001 * libio/getchar.c (getchar): Likewise.
1002 * libio/getchar_u.c (getchar_unlocked): Likewise.
1003 * libio/getwchar.c (getwchar): Likewise.
1004 * libio/getwchar_u.c (getwchar_unlocked): Likewise.
1005 * libio/iogets.c (_IO_gets): Likewise.
1006 * libio/vscanf.c (_IO_vscanf): Likewise.
1007 * libio/vwscanf.c (__vwscanf): Likewise.
1008 * libio/tst-bz24153.c: New file.
1009 * libio/Makefile (tests): Add it.
1011 2019-02-02 Florian Weimer <fweimer@redhat.com>
1014 * manual/resource.texi (Basic Scheduling Functions): Add
1015 portability note. Change process to task throughout the section.
1016 Remove incorrect comment about sched_yield as it affects
1017 tasks/threads, not entire processes.
1018 * sysdeps/unix/sysv/linux/bits/posix_opt.h
1019 (_POSIX_PRIORITY_SCHEDULING): Update comment.
1021 2019-02-01 Joseph Myers <joseph@codesourcery.com>
1023 * configure.ac (libc_cv_compiler_ok): Require GCC 6.2 or later.
1024 * configure: Regenerated.
1025 * manual/install.texi (Tools for Compilation): Update minimum GCC
1027 * INSTALL: Regenerated.
1029 2019-02-01 Florian Weimer <fweimer@redhat.com>
1031 * support/support_test_compare_string.c
1032 (support_test_compare_string): Use "string" in error message.
1033 * support/tst-test_compare_string.c (do_test): Adjust.
1035 2019-02-01 Florian Weimer <fweimer@redhat.com>
1037 * support/support_format_address_family.c
1038 (support_format_address_family): Handle AF_LOCAL, AF_UNSPEC.
1040 2019-02-01 Florian Weimer <fweimer@redhat.com>
1042 * manual/socket.texi (Internet Address Formats): Clarify the byte
1043 order of struct sockaddr_in, struct sockaddr_in6. Document
1044 sin6_flowinfo and sin6_scope_id.
1046 2019-02-01 Wilco Dijkstra <wdijkstr@arm.com>
1048 * sysdeps/posix/clock_getres.c (__clock_getres): Cleanup.
1049 * sysdeps/unix/clock_gettime.c (__clock_gettime): Cleanup.
1050 * sysdeps/unix/clock_settime.c (__clock_settime): Cleanup.
1051 * sysdeps/unix/sysv/linux/clock_getres.c (__clock_getres): Cleanup.
1052 * sysdeps/unix/sysv/linux/clock_gettime.c (__clock_gettime): Cleanup.
1053 * sysdeps/unix/sysv/linux/clock_settime.c (__clock_settime): Cleanup.
1055 2019-02-01 Feng Xue <fxue@os.amperecomputing.com>
1057 * sysdeps/aarch64/memchr.S (__memchr): Rename to MEMCHR.
1058 [!MEMCHR](MEMCHR): Set to __memchr.
1059 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines):
1060 Add memchr_generic and memchr_nosimd.
1061 * sysdeps/aarch64/multiarch/ifunc-impl-list.c
1062 (__libc_ifunc_impl_list): Add memchr ifuncs.
1063 * sysdeps/aarch64/multiarch/memchr.c: New file.
1064 * sysdeps/aarch64/multiarch/memchr_generic.S: Likewise.
1065 * sysdeps/aarch64/multiarch/memchr_nosimd.S: Likewise.
1067 2019-02-01 Feng Xue <fxue@os.amperecomputing.com>
1069 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines):
1071 * sysdeps/aarch64/multiarch/ifunc-impl-list.c
1072 (__libc_ifunc_impl_list): Add __memset_emag to memset ifunc.
1073 * sysdeps/aarch64/multiarch/memset.c (libc_ifunc):
1074 Add IS_EMAG check for ifunc dispatch.
1075 * sysdeps/aarch64/multiarch/memset_base64.S: New file.
1076 * sysdeps/aarch64/multiarch/memset_emag.S: New file.
1078 2019-02-01 Feng Xue <fxue@os.amperecomputing.com>
1080 * manual/tunables.texi (Tunable glibc.cpu.name): Add emag.
1081 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (cpu_list):
1083 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h (IS_EMAG):
1086 2019-02-01 Stefan Liebler <stli@linux.ibm.com>
1088 * posix/tst-spawn do_test(): Move waitpid before posix_spawn.
1090 2019-01-31 Vineet Gupta <vgupta@synopsys.com>
1092 * sysdeps/unix/make-syscalls.sh: Fix comment referencing
1093 syscall-template file.
1095 2019-01-31 Carlos O'Donell <carlos@redhat.com>
1096 Torvald Riegel <triegel@redhat.com>
1097 Rik Prohaska <prohaska7@gmail.com>
1100 * nptl/Makefile (tests): Add tst-rwlock-tryrdlock-stall, and
1101 tst-rwlock-trywrlock-stall.
1102 * nptl/pthread_rwlock_tryrdlock.c (__pthread_rwlock_tryrdlock):
1103 Wake waiters if PTHREAD_RWLOCK_FUTEX_USED is set.
1104 * nptl/pthread_rwlock_trywrlock.c (__pthread_rwlock_trywrlock):
1105 Set __wrphase_fute to 1 only if we started the write phase.
1106 * nptl/tst-rwlock-tryrdlock-stall.c: New file.
1107 * nptl/tst-rwlock-trywrlock-stall.c: New file.
1108 * support/Makefile (libsupport-routines): Add xpthread_rwlock_destroy.
1109 * support/xpthread_rwlock_destroy.c: New file.
1110 * support/xthread.h: Declare xpthread_rwlock_destroy.
1112 2019-02-01 Joseph Myers <joseph@codesourcery.com>
1114 * scripts/build-many-glibcs.py (Context.checkout): Default MPFR
1117 2019-01-31 Paul Pluzhnikov <ppluzhnikov@google.com>
1120 * libio/ioputs.c (_IO_puts): Use stdout instead of _IO_stdout.
1121 * libio/fileops.c (_IO_new_file_underflow): Likewise
1122 * libio/wfileops.c (_IO_wfile_underflow): Likewise
1123 * libio/putchar.c (putchar): Likewise.
1124 * libio/putchar_u.c (putchar_unlocked): Likewise.
1125 * libio/putwchar.c (putchar): Likewise.
1126 * libio/putwchar_u.c (putwchar_unlocked): Likewise.
1127 * libio/tst-bz24051.c: New test.
1128 * libio/Makefile (tests): Add tst-bz24051
1130 2019-01-31 Paul Eggert <eggert@cs.ucla.edu>
1132 regex: fix read overrun [BZ #24114]
1133 Problem found by AddressSanitizer, reported by Hongxu Chen in:
1134 https://debbugs.gnu.org/34140
1135 * posix/regexec.c (proceed_next_node):
1136 Do not read past end of input buffer.
1138 2019-01-31 Florian Weimer <fweimer@redhat.com>
1141 * nss/nss_files/files-alias.c (get_next_alias): Handle
1142 continuation line without newline at the end.
1143 * nss/tst-nss-files-alias-truncated.c: New file.
1144 * nss/Makefile [$(build-shared)] (tests): Add
1145 tst-nss-files-alias-truncated.
1146 (tst-nss-files-alias-truncated): Link with libnss_files.so.
1147 * support/namespace.h (struct support_chroot_configuration): Add
1149 (struct support_chroot): Add path_aliases member.
1150 * support/support_chroot.c (support_chroot_create): Handle
1152 (support_chroot_free): Free path_aliases.
1154 2019-01-31 Siddhesh Poyarekar <siddhesh@sourceware.org>
1156 * version.h (RELEASE): Set to "development".
1157 (VERSION): Set to "2.29.9000".
1158 * NEWS: Add section for 2.30.
1160 * version.h (RELEASE): Set to "stable".
1161 (VERSION): Set to "2.29".
1162 * include/features.h (__GLIBC_MINOR__): Set to 2.29.
1164 * NEWS: Add the list of bugs fixed in 2.29.
1165 * manual/contrib.texi: Update contributors list with some more
1167 * manual/install.texi: Update latest versions of packages
1169 * INSTALL: Regenerated.
1171 2019-01-25 Siddhesh Poyarekar <siddhesh@sourceware.org>
1173 * po/be.po: Update translations.
1174 * po/bg.po: Likewise.
1175 * po/ca.po: Likewise.
1176 * po/cs.po: Likewise.
1177 * po/da.po: Likewise.
1178 * po/de.po: Likewise.
1179 * po/el.po: Likewise.
1180 * po/eo.po: Likewise.
1181 * po/es.po: Likewise.
1182 * po/fi.po: Likewise.
1183 * po/fr.po: Likewise.
1184 * po/gl.po: Likewise.
1185 * po/hr.po: Likewise.
1186 * po/hu.po: Likewise.
1187 * po/ia.po: Likewise.
1188 * po/id.po: Likewise.
1189 * po/it.po: Likewise.
1190 * po/ja.po: Likewise.
1191 * po/ko.po: Likewise.
1192 * po/lt.po: Likewise.
1193 * po/nb.po: Likewise.
1194 * po/nl.po: Likewise.
1195 * po/pl.po: Likewise.
1196 * po/pt_BR.po: Likewise.
1197 * po/ru.po: Likewise.
1198 * po/rw.po: Likewise.
1199 * po/sk.po: Likewise.
1200 * po/sl.po: Likewise.
1201 * po/sv.po: Likewise.
1202 * po/tr.po: Likewise.
1203 * po/uk.po: Likewise.
1204 * po/vi.po: Likewise.
1205 * po/zh_CN.po: Likewise.
1206 * po/zh_TW.po: Likewise.
1208 2019-01-24 Uroš Bizjak <ubizjak@gmail.com>
1211 * sysdeps/alpha/remqu.S (__remqu): Add missing restore
1212 of $f3 register on $y_is_neg path.
1214 2019-01-24 Samuel Thibault <samuel.thibault@ens-lyon.org>
1217 * hurd/hurdsig.c (_hurd_thread_sigstate): Set SS_DISABLE in
1218 sigaltstack.ss_flags.
1220 2019-01-24 TAMUKI Shoichi <tamuki@linet.gr.jp>
1223 * manual/time.texi (strftime): Document "%Ey".
1224 * time/strftime_l.c (__strftime_internal): Set the default width
1225 padding with zero of "%Ey" to 2.
1228 * manual/time.texi (strftime): Document "%EC" and "%EY".
1229 * time/Makefile (tests): Add tst-strftime2.
1230 (LOCALES): Add ja_JP.UTF-8, lo_LA.UTF-8, and th_TH.UTF-8.
1231 * time/strftime_l.c (__strftime_internal): Add argument yr_spec to
1232 override padding for "%Ey".
1233 If an optional flag ('_' or '-') is specified to "%EY", interpret the
1234 "%Ey" in the subformat as if decorated with that flag.
1235 * time/tst-strftime2.c: New file.
1237 2019-01-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
1239 * support/xsigstack.c (MAP_NORESERVE, MAP_STACK): Define if they
1243 * elf/Makefile (tests): Add tst-audit13.
1244 (modules-names): Add tst-audit13mod1.
1245 (tst-audit13.out, LDFLAGS-tst-audit13mod1.so, tst-audit13-ENV): New
1247 * elf/rtld.c (dl_main): Handle invalid audit module version.
1248 * elf/tst-audit13.c: New file.
1249 * elf/tst-audit13mod1.c: Likewise.
1251 2019-01-22 Samuel Thibault <samuel.thibault@ens-lyon.org>
1253 * sysdeps/mach/hurd/faccessat.c (__faccessat_common): Check for errors
1254 returned by __hurd_at_flags.
1255 * hurd/lookup-at.c (__file_name_lookup_at): When at_flags contains
1256 AT_EMPTY_PATH, call __dir_lookup and __hurd_file_name_lookup_retry
1257 directly instead of __hurd_file_name_lookup.
1259 2019-01-21 Joseph Myers <joseph@codesourcery.com>
1261 * scripts/build-many-glibcs.py (Context.checkout): Default
1262 binutils version to 2.32 branch.
1264 2019-01-21 Florian Weimer <fweimer@redhat.com>
1268 resolv: Reject trailing characters in host names
1269 * include/arpa/inet.h (__inet_aton_exact): Declare.
1270 (inet_aton): Remove hidden prototype. No longer used internally.
1271 * nscd/gai.c (__inet_aton): Do not define.
1272 * nscd/gethstbynm3_r.c (__inet_aton): Likewise.
1273 * nss/digits_dots.c (__inet_aton): Likewise.
1274 (__nss_hostname_digits_dots_context): Call __inet_aton_exact.
1275 * resolv/Makefile (tests-internal): Add tst-inet_aton_exact.
1276 (tests): Add tst-resolv-nondecimal, tst-resolv-trailing.
1277 (tst-resolv-nondecimal): Link with libresolv.so and libpthread.
1278 (tst-resolv-trailing): Likewise.
1279 * resolv/Versions (GLIBC_PRIVATE): Export __inet_aton_exact from
1281 * resolv/inet_addr.c (inet_aton_end): Remame from __inet_aton.
1282 Make static. Add endp parameter.
1283 (__inet_aton_exact): New function.
1284 (__inet_aton_ignore_trailing): New function, aliased to inet_aton.
1285 (__inet_addr): Call inet_aton_end.
1286 * resolv/res_init.c (res_vinit_1): Truncate nameserver for IPv4,
1287 not just IPv6. Call __inet_aton_exact.
1288 * resolv/tst-aton.c: Switch to <support/test-driver.c>.
1289 (tests): Make const. Add additional test cases with trailing
1291 (do_test): Use array_length.
1292 * resolv/tst-inet_aton_exact.c: New file.
1293 * resolv/tst-resolv-trailing.c: Likewise.
1294 * resolv/tst-resolv-nondecimal.c: Likewise.
1295 * sysdeps/posix/getaddrinfo.c (gaih_inet): Call __inet_aton_exact.
1297 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1301 * sysdeps/x86_64/multiarch/strlen-avx2.S: Use RSI_LP for length.
1302 Clear the upper 32 bits of RSI register.
1303 * sysdeps/x86_64/strlen.S: Use RSI_LP for length.
1304 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-strnlen
1305 and tst-size_t-wcsnlen.
1306 * sysdeps/x86_64/x32/tst-size_t-strnlen.c: New file.
1307 * sysdeps/x86_64/x32/tst-size_t-wcsnlen.c: Likewise.
1309 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1313 * sysdeps/x86_64/multiarch/strcpy-avx2.S: Use RDX_LP for length.
1314 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
1315 * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
1316 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-strncpy.
1317 * sysdeps/x86_64/x32/tst-size_t-strncpy.c: New file.
1319 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1323 * sysdeps/x86_64/multiarch/strcmp-avx2.S: Use RDX_LP for length.
1324 * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
1325 * sysdeps/x86_64/strcmp.S: Likewise.
1326 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-strncasecmp,
1327 tst-size_t-strncmp and tst-size_t-wcsncmp.
1328 * sysdeps/x86_64/x32/tst-size_t-strncasecmp.c: New file.
1329 * sysdeps/x86_64/x32/tst-size_t-strncmp.c: Likewise.
1330 * sysdeps/x86_64/x32/tst-size_t-wcsncmp.c: Likewise.
1332 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1336 * sysdeps/x86_64/multiarch/memset-avx512-no-vzeroupper.S: Use
1337 RDX_LP for length. Clear the upper 32 bits of RDX register.
1338 * sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S: Likewise.
1339 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-wmemset.
1340 * sysdeps/x86_64/x32/tst-size_t-memset.c: New file.
1341 * sysdeps/x86_64/x32/tst-size_t-wmemset.c: Likewise.
1343 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1347 * sysdeps/x86_64/memrchr.S: Use RDX_LP for length.
1348 * sysdeps/x86_64/multiarch/memrchr-avx2.S: Likewise.
1349 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-memrchr.
1350 * sysdeps/x86_64/x32/tst-size_t-memrchr.c: New file.
1352 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1356 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Use RDX_LP for
1357 length. Clear the upper 32 bits of RDX register.
1358 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
1359 * sysdeps/x86_64/multiarch/memmove-avx512-no-vzeroupper.S:
1361 * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S:
1363 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-memcpy.
1365 * sysdeps/x86_64/x32/tst-size_t-memcpy.c: New file.
1367 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1371 * sysdeps/x86_64/multiarch/memcmp-avx2-movbe.S: Use RDX_LP for
1372 length. Clear the upper 32 bits of RDX register.
1373 * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
1374 * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
1375 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-memcmp and
1377 * sysdeps/x86_64/x32/tst-size_t-memcmp.c: New file.
1378 * sysdeps/x86_64/x32/tst-size_t-wmemcmp.c: Likewise.
1380 2019-01-21 H.J. Lu <hongjiu.lu@intel.com>
1384 * sysdeps/x86_64/memchr.S: Use RDX_LP for length. Clear the
1385 upper 32 bits of RDX register.
1386 * sysdeps/x86_64/multiarch/memchr-avx2.S: Likewise.
1387 * sysdeps/x86_64/x32/Makefile (tests): Add tst-size_t-memchr and
1389 * sysdeps/x86_64/x32/test-size_t.h: New file.
1390 * sysdeps/x86_64/x32/tst-size_t-memchr.c: Likewise.
1391 * sysdeps/x86_64/x32/tst-size_t-wmemchr.c: Likewise.
1393 2019-01-18 Florian Weimer <fweimer@redhat.com>
1396 resolv: Do not send queries for non-host-names in nss_dns.
1397 * resolv/nss_dns/dns-host.c (check_name): New function.
1398 (_nss_dns_gethostbyname2_r): Use it.
1399 (_nss_dns_gethostbyname_r): Likewise.
1400 (_nss_dns_gethostbyname4_r): Likewise.
1402 2019-01-21 Florian Weimer <fweimer@redhat.com>
1404 * resolv/inet_addr.c: Reformat to GNU style.
1405 (__inet_addr, __inet_aton): Update comment.
1407 2019-01-18 Florian Weimer <fweimer@redhat.com>
1409 malloc: Revert commit 6923f6db1e688dedcf3a6556da76e0bf24a41872
1410 ("malloc: Use current (C11-style) atomics for fastbin access").
1411 This commit introduces a substantial performance regression on
1413 * malloc/malloc.c (fastbin_push_entry, fastbin_pop_entry): Remove.
1414 (REMOVE_FB): Define.
1415 (_int_malloc): Use it and reindent.
1416 (_int_free): Use CAS loop with
1417 catomic_compare_and_exchange_val_rel.
1418 (malloc_consolidate): Use atomic_exchange_acq.
1421 2019-01-18 H.J. Lu <hongjiu.lu@intel.com>
1423 * signal/Makefile (LDFLAGS-tst-minsigstksz-1): New. Set to
1425 (LDFLAGS-tst-minsigstksz-2): Likewise.
1426 (LDFLAGS-tst-minsigstksz-3): Likewise.
1427 (LDFLAGS-tst-minsigstksz-3a): Likewise.
1428 (LDFLAGS-tst-minsigstksz-4): Likewise.
1430 2019-01-18 TAMUKI Shoichi <tamuki@linet.gr.jp>
1432 * manual/time.texi (strftime): Fix the wording to "alternative" rather
1435 2019-01-16 Paul A. Clarke <pc@us.ibm.com>
1437 * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: Fix #ifdef.
1439 2019-01-16 Zack Weinberg <zackw@panix.com>
1441 * support/xsignal.h (xalloc_sigstack, xfree_sigstack)
1442 (xget_sigstack_location): New test support functions.
1443 * support/xsigstack.c: New file, implementing them.
1444 * support/tst-xsigstack.c: New test for them.
1445 * support/Makefile: Update.
1447 * signal/tst-minsigstksz-1.c
1448 * signal/tst-minsigstksz-2.c
1449 * signal/tst-minsigstksz-3.c
1450 * signal/tst-minsigstksz-3a.c
1451 * signal/tst-minsigstksz-4.c: New tests.
1452 * signal/Makefile: Run them.
1454 2019-01-16 Siddhesh Poyarekar <siddhesh@sourceware.org>
1456 * po/libc.pot: Regenerate.
1458 2019-01-15 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
1460 * math/libm-test-fma.inc (fma_test_data): Set
1461 XFAIL_ROUNDING_IBM128_LIBGCC to more tests.
1463 2019-01-15 Rogerio A. Cardoso <rcardoso@linux.ibm.com>
1465 * sysdeps/powerpc/powerpc64/tst-ucontext-ppc64-vscr.c:
1466 (do_test): Changed __vector __int128_t to __vector unsigned int.
1468 2019-01-14 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
1470 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
1471 strcat-avx2, strncat-avx2, strcpy-avx2, strncpy-avx2,
1472 stpcpy-avx2 and stpncpy-avx2.
1473 * sysdeps/x86_64/multiarch/ifunc-impl-list.c:
1474 (__libc_ifunc_impl_list): Add tests for __strcat_avx2,
1475 __strncat_avx2, __strcpy_avx2, __strncpy_avx2, __stpcpy_avx2
1477 * sysdeps/x86_64/multiarch/{ifunc-unaligned-ssse3.h =>
1478 ifunc-strcpy.h}: rename header for a more generic name.
1479 * sysdeps/x86_64/multiarch/ifunc-strcpy.h:
1480 (IFUNC_SELECTOR): Return OPTIMIZE (avx2) on AVX 2 machines if
1481 AVX unaligned load is fast and vzeroupper is preferred.
1482 * sysdeps/x86_64/multiarch/stpcpy-avx2.S: New file.
1483 * sysdeps/x86_64/multiarch/stpncpy-avx2.S: Likewise.
1484 * sysdeps/x86_64/multiarch/strcat-avx2.S: Likewise.
1485 * sysdeps/x86_64/multiarch/strcpy-avx2.S: Likewise.
1486 * sysdeps/x86_64/multiarch/strncat-avx2.S: Likewise.
1487 * sysdeps/x86_64/multiarch/strncpy-avx2.S: Likewise.
1489 2019-01-12 Dmitry V. Levin <ldv@altlinux.org>
1491 * argp/argp-help.c: Fix typo in comment.
1492 * misc/sys/cdefs.h: Likewise.
1493 * posix/regexec.c (sift_states_iter_mb): Likewise.
1494 * socket/sockatmark.c: Likewise.
1495 * socket/sys/socket.h: Likewise.
1496 * sysdeps/ia64/fpu/libm_sincos_large.S: Likewise.
1497 * sysdeps/ia64/fpu/libm_sincosl.S: Likewise.
1498 * sysdeps/ia64/fpu/s_cosl.S: Likewise.
1499 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
1500 * sysdeps/unix/sockatmark.c: Likewise.
1501 * time/strptime_l.c: Likewise.
1503 2019-01-11 TAMUKI Shoichi <tamuki@linet.gr.jp>
1505 * time/strftime_l.c (__strftime_internal): Use "L_" macros, also add a
1506 missing space after the cast of "_NL_CURRENT".
1508 2019-01-11 Rogerio A. Cardoso <rcardoso@linux.ibm.com>
1510 * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h (vscr_t): Added
1511 ifdef to fix read of VSCR.
1512 * sysdeps/powerpc/powerpc64/Makefile [$subdir == stdlib]: Add
1513 tst-ucontext-ppc64-vscr.c to test list.
1514 * sysdeps/powerpc/powerpc64/tst-ucontext-ppc64-vscr.c: New test file.
1516 2019-01-10 Andreas K. Hüttel <dilfridge@gentoo.org>
1518 * resolv/tst-resolv-ai_idn-common.c (response): Avoid switch
1521 2019-01-09 Jim Wilson <jimw@sifive.com>
1523 * sysdeps/riscv/rv64/rvd/libm-test-ulps: Update.
1525 2019-01-09 Wilco Dijkstra <wdijkstr@arm.com>
1527 * manual/tunables.texi (glibc.cpu.name): Add ares tunable.
1528 * sysdeps/aarch64/multiarch/memcpy.c (__libc_memcpy): Use
1529 __memcpy_falkor for ares.
1530 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h (IS_ARES):
1532 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (cpu_list):
1535 2019-01-07 H.J. Lu <hongjiu.lu@intel.com>
1538 * soft-fp/extenddftf2.c: Use "_FP_W_TYPE_SIZE < 64" to check if
1539 4_FP_W_TYPEs are used for IEEE quad precision.
1540 * soft-fp/extendhftf2.c: Likewise.
1541 * soft-fp/extendsftf2.c: Likewise.
1542 * soft-fp/extendxftf2.c: Likewise.
1543 * soft-fp/trunctfdf2.c: Likewise.
1544 * soft-fp/trunctfhf2.c: Likewise.
1545 * soft-fp/trunctfsf2.c: Likewise.
1546 * soft-fp/trunctfxf2.c: Likewise.
1547 * sysdeps/alpha/ots_cvttx.c: Likewise.
1548 * sysdeps/alpha/ots_cvtxt.c: Likewise.
1549 * sysdeps/ieee754/soft-fp/s_daddl.c: Likewise.
1550 * sysdeps/ieee754/soft-fp/s_ddivl.c: Likewise.
1551 * sysdeps/ieee754/soft-fp/s_dmull.c: Likewise.
1552 * sysdeps/ieee754/soft-fp/s_dsubl.c: Likewise.
1553 * sysdeps/ieee754/soft-fp/s_faddl.c: Likewise.
1554 * sysdeps/ieee754/soft-fp/s_fdivl.c: Likewise.
1555 * sysdeps/ieee754/soft-fp/s_fmull.c: Likewise.
1556 * sysdeps/ieee754/soft-fp/s_fsubl.c: Likewise.
1557 * sysdeps/sparc/sparc32/q_dtoq.c: Likewise.
1558 * sysdeps/sparc/sparc32/q_qtod.c: Likewise.
1559 * sysdeps/sparc/sparc32/q_qtos.c: Likewise.
1560 * sysdeps/sparc/sparc32/q_stoq.c: Likewise.
1561 * sysdeps/sparc/sparc64/qp_dtoq.c: Likewise.
1562 * sysdeps/sparc/sparc64/qp_qtod.c: Likewise.
1563 * sysdeps/sparc/sparc64/qp_qtos.c: Likewise.
1564 * sysdeps/sparc/sparc64/qp_stoq.c: Likewise.
1566 2019-01-07 Aurelien Jarno <aurelien@aurel32.net>
1569 * Makeconfig: Build libm with -fno-math-errno but build the remaining
1570 code with -fmath-errno.
1571 * string/Makefile [$(build-shared)] (tests): Add test-strerror-errno.
1572 [$(build-shared)] (LDLIBS-test-strerror-errno): New variable.
1573 * string/test-strerror-errno.c: New file.
1575 2019-01-07 Aurelien Jarno <aurelien@aurel32.net>
1578 * localedata/locales/en_US (date_fmt): Add, set to
1579 "%a %d %b %Y %r %Z".
1581 2019-01-07 Florian Weimer <fweimer@redhat.com>
1584 * manual/arith.texi (Math Error Reporting): Use @code{errno}
1585 instead of @var{errno}.
1586 (Parsing of Integers): Likewise.
1587 (Parsing of Floats): Likewise.
1588 * manual/filesys.texi (Working with Directory Trees): Likewise.
1589 (Temporary Files): Likewise.
1590 * manual/job.texi (Terminal Access Functions): Likewise.
1591 * manual/llio.texi (Synchronizing I/O): Likewise.
1592 * manual/math.texi (SVID Random): Likewise.
1593 * manual/message.texi (The catgets Functions): Likewise.
1594 (Translation with gettext): Likewise.
1595 (Locating gettext catalog): Likewise.
1596 (Charset conversion in gettext): Likewise.
1597 * manual/nss.texi (NSS Module Function Internals): Likewise.
1598 * manual/search.texi (Hash Search Function): Likewise.
1599 * manual/setjmp.texi (System V contexts): Likewise.
1600 * manual/time.texi (Sleeping): Likewise.
1601 * manual/users.texi (Lookup User): Likewise.
1602 (Lookup Group): Likewise.
1604 2019-01-05 Adhemerval Zanella <adhemerval.zanella@linaro.org>
1606 * posix/tst-spawn.c (do_test): Extend spargv to new required size and
1609 2019-01-04 Martin Jansa <Martin.Jansa@gmail.com>
1612 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn): Use
1613 __builtin_unreachable for default case in switch.
1614 (__ieee754_yn): Likewise.
1615 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl): Likewise.
1616 (__ieee754_ynl): Likewise.
1617 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_jnl): Likewise.
1618 (__ieee754_ynl): Likewise.
1619 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
1620 (__ieee754_ynl): Likewise.
1622 2019-01-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
1624 * manual/maint.texi: Use @{ and @}.
1626 2019-01-04 Florian Weimer <fweimer@redhat.com>
1628 * sysdeps/unix/sysv/linux/tst-ttyname.c (adjust_file_limit): New
1630 (do_in_chroot_1): Call it.
1632 Improve error reporting in case it is not possible to create a
1633 collision for the PTY name required by the test.
1635 2019-01-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
1637 * nptl/pthread_join_common.c (__pthread_timedjoin_ex): Use
1638 lll_wait_tid with timeout.
1639 * nptl/sem_wait.c (__old_sem_wait): Use lll_futex_wait_cancel.
1640 * sysdeps/nptl/aio_misc.h (AIO_MISC_WAIT): Use
1641 futex_reltimed_wait_cancelable for cancelabla mode.
1642 * sysdeps/nptl/gai_misc.h (GAI_MISC_WAIT): Likewise.
1643 * sysdeps/posix/open64.c (__libc_open64): Do not call cancelation
1645 * sysdeps/posix/sigwait.c (__sigwait): Likewise.
1646 * sysdeps/posix/waitid.c (__sigwait): Likewise.
1647 * sysdeps/unix/sysdep.h (__SYSCALL_CANCEL_CALL,
1648 SYSCALL_CANCEL_NCS): New macro.
1649 * sysdeps/nptl/lowlevellock.h (lll_wait_tid): Add timeout argument.
1650 (lll_timedwait_tid): Remove macro.
1651 * sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_wait_tid):
1653 (lll_timedwait_tid): Likewise.
1654 * sysdeps/unix/sysv/linux/sparc/lowlevellock.h (lll_wait_tid):
1656 (lll_timedwait_tid): Likewise.
1657 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (lll_wait_tid):
1659 (lll_timedwait_tid): Likewise.
1660 * sysdeps/unix/sysv/linux/clock_nanosleep.c (__clock_nanosleep):
1661 Use INTERNAL_SYSCALL_CANCEL.
1662 * sysdeps/unix/sysv/linux/futex-internal.h
1663 (futex_reltimed_wait_cancelable): Use LIBC_CANCEL_{ASYNC,RESET}
1664 instead of __pthread_{enable,disable}_asynccancel.
1665 * sysdeps/unix/sysv/linux/lowlevellock-futex.h
1666 (lll_futex_wait_cancel): New macro.
1668 * sysdeps/i386/nptl/tls.h (THREAD_ATOMIC_CMPXCHG_VAL,
1669 THREAD_ATOMIC_AND, THREAD_ATOMIC_BIT_SET): Remove macros.
1671 * sysdeps/x86_64/nptl/tls.h (THREAD_ATOMIC_CMPXCHG_VAL,
1672 THREAD_ATOMIC_AND, THREAD_ATOMIC_BIT_SET): Remove macros.
1674 * debug/tst-backtrace5.c (handle_signal): Avoid cancellable wrappers
1675 in backtrace analysis.
1676 * nptl/tst-cancel4.c (tf_write): Handle cancelled syscall with
1678 (tf_send): Likewise.
1680 * io/creat.c (LIBC_CANCEL_HANDLED): Remove macro.
1681 * io/ppoll.c (LIBC_CANCEL_HANDLED): Likewise.
1682 * misc/pselect.c (LIBC_CANCEL_HANDLED): Likewise.
1683 * nptl/pthreadP.h (LIBC_CANCEL_HANDLED): Likewise.
1684 * sysdeps/generic/sysdep-cancel.h (LIBC_CANCEL_HANDLED): Likewise.
1685 * sysdeps/mach/hurd/sysdep-cancel.h (LIBC_CANCEL_HANDLED): Likewise.
1686 * sysdeps/posix/pause.c (LIBC_CANCEL_HANDLED): Likewise.
1687 * sysdeps/posix/sigpause.c (LIBC_CANCEL_HANDLED): Likewise.
1688 * sysdeps/unix/sysv/linux/creat.c (LIBC_CANCEL_HANDLED): Likewise.
1689 * sysdeps/unix/sysv/linux/creat64.c (LIBC_CANCEL_HANDLED): Likewise.
1690 * sysdeps/unix/sysv/linux/sigwait.c (LIBC_CANCEL_HANDLED): Likewise.
1691 * sysdeps/unix/sysv/linux/sigwaitinfo.c (LIBC_CANCEL_HANDLED):
1693 * nptl/Makefile [$(run-built-tests) = yes] (tests-special): Remove
1694 tst-cancel-wrappers.sh.
1695 (generated): Remove tst-cancel-wrappers.out.
1696 (tst-cancel-wrappers.out): Remove rule.
1697 * nptl/tst-cancel-wrappers.sh: Remove file.
1699 2019-01-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
1701 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h: Add comment.
1702 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c (_DL_HWCAP_COUNT):
1705 2019-01-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
1708 * posix/tst-spawn.c (do_prepare, handle_restart, do_test): Add
1709 posix_spawn_file_actions_adddup2 test to check O_CLOCEXEC reset.
1710 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Add
1711 close-on-exec reset for adddup2 file action.
1712 * sysdeps/posix/spawni.c (__spawni_child): Likewise.
1714 2019-01-03 Zack Weinberg <zackw@panix.com>
1716 * include/features.h (__GLIBC_USE_DEPRECATED_SCANF): New __GLIBC_USE
1717 parameter. Only use deprecated scanf when __USE_GNU is defined
1718 and __STDC_VERSION__ is less than 199901L or __cplusplus is less
1719 than 201103L, whichever is relevant for the language being compiled.
1721 * libio/stdio.h, libio/bits/stdio-ldbl.h: Decide whether to redirect
1722 scanf, fscanf, sscanf, vscanf, vfscanf, and vsscanf to their
1723 __isoc99_ variants based only on __GLIBC_USE (DEPRECATED_SCANF).
1724 * wcsmbs/wchar.h: wcsmbs/bits/wchar-ldbl.h: Likewise for
1725 wscanf, fwscanf, swscanf, vwscanf, vfwscanf, and vswscanf.
1729 * libio/iovswscanf.c
1734 * stdio-common/fscanf.c
1735 * stdio-common/scanf.c
1736 * stdio-common/vfscanf.c
1737 * stdio-common/vfwscanf.c
1738 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c
1739 * sysdeps/ieee754/ldbl-opt/nldbl-fscanf.c
1740 * sysdeps/ieee754/ldbl-opt/nldbl-fwscanf.c
1741 * sysdeps/ieee754/ldbl-opt/nldbl-iovfscanf.c
1742 * sysdeps/ieee754/ldbl-opt/nldbl-scanf.c
1743 * sysdeps/ieee754/ldbl-opt/nldbl-sscanf.c
1744 * sysdeps/ieee754/ldbl-opt/nldbl-swscanf.c
1745 * sysdeps/ieee754/ldbl-opt/nldbl-vfscanf.c
1746 * sysdeps/ieee754/ldbl-opt/nldbl-vfwscanf.c
1747 * sysdeps/ieee754/ldbl-opt/nldbl-vscanf.c
1748 * sysdeps/ieee754/ldbl-opt/nldbl-vsscanf.c
1749 * sysdeps/ieee754/ldbl-opt/nldbl-vswscanf.c
1750 * sysdeps/ieee754/ldbl-opt/nldbl-vwscanf.c
1751 * sysdeps/ieee754/ldbl-opt/nldbl-wscanf.c:
1752 Override __GLIBC_USE_DEPRECATED_SCANF to 1.
1754 * stdio-common/sscanf.c: Likewise. Remove ldbl_hidden_def for __sscanf.
1755 * stdio-common/isoc99_sscanf.c: Add libc_hidden_def for __isoc99_sscanf.
1756 * include/stdio.h: Provide libc_hidden_proto for __isoc99_sscanf,
1758 [!__GLIBC_USE (DEPRECATED_SCANF)]: Define sscanf as __isoc99_scanf
1759 with a preprocessor macro.
1761 * stdio-common/bug21.c, stdio-common/scanf14.c:
1762 Use %ms instead of %as, %mS instead of %aS, %m[] instead of %a[];
1763 remove DIAG_IGNORE_NEEDS_COMMENT for -Wformat.
1764 * stdio-common/scanf16.c: Likewise. Add __attribute__ ((format (scanf)))
1765 to xscanf, xfscanf, xsscanf.
1767 * stdio-common/scanf14a.c: New copy of scanf14.c which still uses
1768 %as, %aS, %a[]. Remove DIAG_IGNORE_NEEDS_COMMENT for -Wformat.
1769 * stdio-common/scanf16a.c: New copy of scanf16.c which still uses
1770 %as, %aS, %a[]. Add __attribute__ ((format (scanf))) to xscanf,
1772 * stdio-common/scanf15.c, stdio-common/scanf17.c: No need to
1773 override feature selection macros or provide definitions of u_char etc.
1774 * stdio-common/Makefile (tests): Add scanf14a and scanf16a.
1775 (CFLAGS-scanf15.c, CFLAGS-scanf17.c): Remove.
1776 (CFLAGS-scanf14a.c, CFLAGS-scanf16a.c): New. Compile these files
1779 2019-01-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
1781 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
1782 bits/termios-misc.h.
1783 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Remove file.
1784 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1785 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
1786 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1787 * sysdeps/unix/sysv/linux/bits/termios-misc.h: New file.
1788 * sysdeps/unix/sysv/linux/bits/termios.h: Include termios-misc.h.
1790 * sysdeps/unix/sysv/linux/powerpc/bits/termios-misc.h: New file.
1791 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_MISC]
1792 (struct sgtty, struct tchars, struct ltchars, TIOCPKT_DATA,
1793 TIOCPKT_FLUSHREAD, TIOCPKT_FLUSHWRITE, TIOCPKT_STOP, TIOCPKT_START,
1794 TIOCPKT_NOSTOP, TIOCPKT_DOSTOP, _VINTR, _VQUIT, _VERASE, _VKILL,
1795 _VEOF, _VMIN, _VEOL, _VTIME, _VEOL2, _VSWTC): Move to
1797 * sysdeps/unix/sysv/linux/powerpc/Makefile [$subdir == misc]
1798 (sysdep_headers): Add termios-misc.h.
1800 * sysdeps/unix/sysv/linux/bits/termios.h (_IOT_termios): Remove.
1801 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
1802 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1804 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
1806 * sysdeps/unix/sysv/linux/bits/termios-tcflow.h: New file.
1807 * sysdeps/unix/sysv/linux/mips/bits/termios-tcflow.h: Likewise.
1808 * sysdeps/unix/sysv/linux/bits/termios.h (TCSANOW, TCSADRAIN,
1809 TCSAFLUSH): Move to termios-tcflow.h.
1810 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
1811 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1812 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1813 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
1815 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
1817 * sysdeps/unix/sysv/linux/bits/termios-c_lflag.h: New file.
1818 * sysdeps/unix/sysv/linux/alpha/bits/termios-c_lflag.h: Likewise.
1819 * sysdeps/unix/sysv/linux/mips/bits/termios-c_lflag.h: Likewise.
1820 * sysdeps/unix/sysv/linux/powerpc/bits/termios-c_lflag.h: Likewise.
1821 * sysdeps/unix/sysv/linux/bits/termios.h (ISIG, ISCANON, ECHO, ECHOE,
1822 ECHOK, ECHONL, NOFLSH, TOSTOP, IEXTEN): Move to termios-c_lflag.h.
1823 [__USE_MISC || (__USE_XOPEN && !__USE_XOPEN2K)] (XCASE): Likewise.
1824 [__USE_MISC] (ECHOCTL, ECHOPRT, ECHOKE, FLUSHO, PENDIN, EXTPROC):
1826 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
1827 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1828 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1829 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
1831 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
1833 * sysdeps/unix/sysv/linux/bits/termios-c_cflag.h: New file.
1834 * sysdeps/unix/sysv/linux/alpha/bits/termios-c_cflag.h: Likewise.
1835 * sysdeps/unix/sysv/linux/powerpc/bits/termios-c_cflag.h: Likewise.
1836 * sysdeps/unix/sysv/linux/bits/termios.h (CSIZE, CS5, CS6, CS7, CS8,
1837 CSTOPB, CREAD, PARENB, PARODD, HUPCL, CLOCAL): Move to
1839 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
1840 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1841 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1842 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
1845 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
1847 * sysdeps/unix/sysv/linux/bits/termios-baud.h: New file.
1848 * sysdeps/unix/sysv/linux/alpha/bits/termios-baud.h: Likewise.
1849 * sysdeps/unix/sysv/linux/powerpc/bits/termios-baud.h: Likewise.
1850 * sysdeps/unix/sysv/linux/sparc/bits/termios-baud.h: Likewise.
1851 * sysdeps/unix/sysv/linux/alpha/bits/termios.h (B57600, B115200,
1852 B230400, B460800, B500000, B576000, B921600, B1000000, B1152000,
1853 B1500000, B2000000, B2500000, B3000000, B3500000, B4000000,
1854 __MAX_BAUD): Move to termios-baud.h.
1855 [__USE_MISC] (CBAUD, CBAUDEX): Likewise.
1856 * sysdeps/unix/sysv/linux/bits/termios.h: Likewise.
1857 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1858 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1859 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
1861 * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add
1863 * sysdeps/unix/sysv/linux/bits/termios-c_oflag.h: New file.
1864 * sysdeps/unix/sysv/linux/alpha/bits/termios-c_oflag.h: Likewise.
1865 * sysdeps/unix/sysv/linux/powerpc/bits/termios-c_oflag.h: Likewise.
1866 * sysdeps/unix/sysv/linux/sparc/bits/termios-c_oflag.h: Likewise.
1867 * sysdeps/unix/sysv/linux/bits/termios.h (OPOST, OLCUC, ONLCR, OCRNL,
1868 ONOCR, ONLRET, OFILL, OFDEL, VTDLY, VT0, VT1): Move to
1870 [__USE_MISC || __USE_XOPEN] (NLDLY, NL0, NL1, CRDLY, CR0, CR1, CR2,
1871 CR3, TABDLY, TAB0, TAB1, TAB2, TAB3, BSDLY, BS0, BS1, FFDLY, FF0,
1873 [USE_MISC] (XTABS): Likewise.
1874 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
1875 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1876 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1877 * sysdeps/unix/sysv/linux/sparc/bits/termios.h Likewise.
1879 * sysdeps/unix/sysv/linux/Makefile (sysdeps_headers): Add
1881 * sysdeps/unix/sysv/linux/bits/termios-c_iflag.h: New file.
1882 * sysdeps/unix/sysv/linux/alpha/bits/termios-c_iflag.h: Likewise.
1883 * sysdeps/unix/sysv/linux/powerpc/bits/termios-c_iflag.h: Likewise.
1884 * sysdeps/unix/sysv/linux/bits/termios.h (IGNBRK, BRKINT, IGNPAR, PARMRK,
1885 INPCK, ISTRIP, INLCR, IGNCR, ICRNL, IXON, IXOFF, IXANY, IUCLC, IMAXBEL,
1886 IUTF8): Move to termios-c_iflag.h.
1887 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
1888 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1889 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1890 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
1892 * sysdeps/unix/sysv/linux/Makefile (sysdeps_headers): Add
1894 * sysdeps/unix/sysv/linux/bits/termios-c_cc.h: Likewise.
1895 * sysdeps/unix/sysv/linux/alpha/bits/termios-c_cc.h: New file.
1896 * sysdeps/unix/sysv/linux/mips/bits/termios-c_cc.h: Likewise.
1897 * sysdeps/unix/sysv/linux/powerpc/bits/termios-c_cc.h: Likewise.
1898 * sysdeps/unix/sysv/linux/sparc/bits/termios-c_cc.h: Likewise.
1899 * sysdeps/unix/sysv/linux/bits/termios.h (VINTR, VQUIT, VERASE,
1900 VKILL, VEOF, VTIME, VMIN, VSWTC, VSTART, VSTOP, VSUSP, VEOL,
1901 VREPRINT, VDISCARD, VWERASE, VLNEXT, VEOLF2): Move to termios-cc.h.
1902 * sysdeps/unix/sysv/linux/alpha/bits/termios.h: Likewise.
1903 * sysdeps/unix/sysv/linux/mips/bits/termios.h: Likewise.
1904 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
1905 * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
1907 * sysdeps/unix/sysv/linux/alpha/bits/termios-struct.h: New file.
1908 * sysdeps/unix/sysv/linux/bits/termios-struct.h: Likewise.
1909 * sysdeps/unix/sysv/linux/mips/bits/termios-struct.h: Likewise.
1910 * sysdeps/unix/sysv/linux/sparc/bits/termios-struct.h: Likewise.
1911 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
1913 * sysdeps/unix/sysv/linux/bits/termios.h (struct termios): Move to
1915 * sysdeps/unix/sysv/linux/alpha/bits/termios.h (struct termios):
1917 * sysdeps/unix/sysv/linux/mips/bits/termios.h (struct termios):
1919 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h (struct termios):
1921 * sysdeps/unix/sysv/linux/sparc/bits/termios.h (struct termios):
1923 * sysdeps/unix/sysv/linux/kernel_termios.h (_HAVE_C_ISPEED,
1924 _HAVE_C_OSPEED): Define.
1925 * sysdeps/unix/sysv/linux/mips/kernel_termios.h (_HAVE_C_ISPEED,
1926 _HAVE_C_OSPEED): Likewise.
1927 * sysdeps/unix/sysv/linux/sparc/kernel_termios.h (_HAVE_C_ISPEED,
1928 _HAVE_C_OSPEED): Likewise.
1929 * sysdeps/unix/sysv/linux/speed.c [_HAVE_STRUCT_TERMIOS_C_OSPEED]
1930 (cfsetospeed): Check for define value instead of existence.
1931 [_HAVE_STRUCT_TERMIOS_C_ISPEED] (cfsetispeed): Likewise.
1932 * sysdeps/unix/sysv/linux/tcgetattr.c [_HAVE_STRUCT_TERMIOS_C_ISPEED
1933 && _HAVE_C_ISPEED] (__tcgetattr): Likewise.
1934 * sysdeps/unix/sysv/linux/tcsetattr.c [_HAVE_STRUCT_TERMIOS_C_ISPEED
1935 && _HAVE_C_ISPEED] (__tcsetattr): Likewise.
1938 * sysdeps/unix/sysv/linux/bits/termios.h [__USE_MISC] (TIOCSER_TEMT):
1940 * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_MISC]
1941 (TIOCSER_TEMT): Likewise.
1942 * sysdeps/unix/sysv/linux/sparc/bits/termios.h [__USE_MISC]
1943 (TEOCSER_TEMT): Likewise.
1945 2019-01-02 PanderMusubi <pander@users.sourceforge.net>
1948 * localedata/locales/bs_BA (LC_TELEPHONE): Fix a typo in comment.
1950 2019-01-02 Joseph Myers <joseph@codesourcery.com>
1952 * sysdeps/powerpc/nofpu/libm-test-ulps: Update.
1954 2019-01-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
1956 * sysdeps/htl/pt-barrierattr-setpshared.c
1957 (pthread_barrierattr_setpshared): Add stub warning.
1958 * sysdeps/htl/pt-condattr-setpshared.c
1959 (pthread_condattr_setpshared): Likewise.
1960 * sysdeps/htl/pt-mutexattr-setpshared.c
1961 (pthread_mutexattr_setpshared): Likewise.
1962 * sysdeps/htl/pt-rwlockattr-setpshared.c
1963 (pthread_rwlockattr_setpshared): Likewise.
1964 * sysdeps/mach/hurd/htl/pt-mutexattr-setpshared.c
1965 (pthread_mutexattr_setpshared): Likewise.
1967 2019-01-02 Joseph Myers <joseph@codesourcery.com>
1969 * sysdeps/unix/sysv/linux/tst-mman-consts.py (main): Expect
1970 constants to match with Linux 4.20.
1972 * sysdeps/mips/mips32/libm-test-ulps: Update.
1973 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
1975 2019-01-02 Aurelien Jarno <aurelien@aurel32.net>
1978 * sysdeps/unix/sysv/linux/arm/atomic-machine.h
1979 (__arm_assisted_compare_and_exchange_val_32_acq): Use uint32_t rather
1980 than __typeof (...) for the a_ptr variable.
1982 2019-01-02 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
1984 * debug/sprintf_chk.c (___sprintf_chk): Use PRINTF_CHK.
1985 * debug/vsprintf_chk.c (___vsprintf_chk): Likewise.
1986 * libio/Makefile (tests): Add tst-sprintf-ub and
1988 (CFLAGS-tst-sprintf-ub.c): New variable.
1989 (CFLAGS-tst-sprintf-chk-ub.c): Likewise.
1990 * libio/iovsprintf.c (__vsprintf_internal): Only erase the
1991 destination buffer and check for overflows in fortified mode.
1992 * libio/libioP.h (PRINTF_CHK): New macro.
1993 * libio/tst-sprintf-chk-ub.c: New file.
1994 * libio/tst-sprintf-ub.c: Likewise.
1996 2019-01-02 Florian Weimer <fweimer@redhat.com>
1999 * intl/dcigettext.c (DCIGETTEXT): Do not return NULL on asprintf
2002 2019-01-02 Florian Weimer <fweimer@redhat.com>
2004 * nptl/tst-audit-threads.c: Switch to <support/test-driver.c>.
2006 2019-01-01 Joseph Myers <joseph@codesourcery.com>
2008 * sysdeps/unix/sysv/linux/bits/in.h (IPV6_MULTICAST_ALL): New
2011 * sysdeps/unix/sysv/linux/netpacket/packet.h
2012 (PACKET_IGNORE_OUTGOING): New macro.
2014 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_SSBS): New
2017 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
2019 (riscv_flush_icache): New syscall.
2021 * manual/texinfo.tex: Update to version 2018-12-28.17 with
2022 trailing whitespace removed.
2023 * scripts/config.guess: Update to version 2019-01-01.
2024 * scripts/config.sub: Update to version 2019-01-01.
2025 * scripts/move-if-change: Update from gnulib.
2027 * NEWS: Update copyright dates.
2028 * catgets/gencat.c (print_version): Likewise.
2029 * csu/version.c (banner): Likewise.
2030 * debug/catchsegv.sh: Likewise.
2031 * debug/pcprofiledump.c (print_version): Likewise.
2032 * debug/xtrace.sh (do_version): Likewise.
2033 * elf/ldconfig.c (print_version): Likewise.
2034 * elf/ldd.bash.in: Likewise.
2035 * elf/pldd.c (print_version): Likewise.
2036 * elf/sotruss.sh: Likewise.
2037 * elf/sprof.c (print_version): Likewise.
2038 * iconv/iconv_prog.c (print_version): Likewise.
2039 * iconv/iconvconfig.c (print_version): Likewise.
2040 * locale/programs/locale.c (print_version): Likewise.
2041 * locale/programs/localedef.c (print_version): Likewise.
2042 * login/programs/pt_chown.c (print_version): Likewise.
2043 * malloc/memusage.sh (do_version): Likewise.
2044 * malloc/memusagestat.c (print_version): Likewise.
2045 * malloc/mtrace.pl: Likewise.
2046 * manual/libc.texinfo: Likewise.
2047 * nptl/version.c (banner): Likewise.
2048 * nscd/nscd.c (print_version): Likewise.
2049 * nss/getent.c (print_version): Likewise.
2050 * nss/makedb.c (print_version): Likewise.
2051 * posix/getconf.c (main): Likewise.
2052 * scripts/test-installation.pl: Likewise.
2053 * sysdeps/unix/sysv/linux/lddlibc4.c (main): Likewise.
2055 * All files with FSF copyright notices: Update copyright dates
2056 using scripts/update-copyrights.
2057 * locale/programs/charmap-kw.h: Regenerated.
2058 * locale/programs/locfile-kw.h: Likewise.
2060 2018-12-31 Joseph Myers <joseph@codesourcery.com>
2062 * timezone/zdump.c: Update from tzcode 2018i.
2063 * timezone/zic.c: Likewise.
2065 2018-12-31 Paul Eggert <eggert@cs.ucla.edu>
2067 regex: improve Gnulib port to AIX
2068 From the glibc point of view, this removes duplicate macro
2069 definitions and is obviously safe.
2070 From the Gnulib point of view, this pacifies xlc 12.01 on AIX 7.1.
2071 * posix/regex_internal.h:
2072 (__attribute__, __attribute_warn_unused_result__):
2073 Remove; already defined elsewhere.
2075 2018-12-31 Florian Weimer <fw@deneb.enyo.de>
2078 * malloc/malloc.c (_int_realloc): Always call memcpy for the
2079 copying operation. (ncopies had the wrong type, resulting in an
2080 integer wraparound and too few elements being copied.)
2082 2018-12-31 H.J. Lu <hongjiu.lu@intel.com>
2085 * sysdeps/unix/sysv/linux/riscv/flush-icache.c: Check if
2086 <asm/syscalls.h> exists with __has_include__ before including it.
2088 2018-12-31 Joseph Myers <joseph@codesourcery.com>
2090 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
2093 2018-12-28 Justus Winter <4winter@informatik.uni-hamburg.de>
2095 * hurd/lookup-retry: Include <unistd.h>.
2096 (__hurd_file_name_lookup_retry): Keep a ref on last result in `lastdir'.
2097 Release it on return. Handle "pid" magical lookup retry.
2099 2018-12-28 Rafal Luzynski <digitalfreak@lingonborough.com>
2102 * localedata/locales/aa_DJ (t_fmt): Set to "%l:%M:%S %p".
2103 (t_fmt_ampm): Likewise.
2104 * localedata/locales/aa_ER (t_fmt): Likewise.
2105 (t_fmt_ampm): Likewise.
2106 * localedata/locales/aa_ER@saaho (t_fmt): Likewise.
2107 (t_fmt_ampm): Likewise.
2108 * localedata/locales/aa_ET (t_fmt): Likewise.
2109 (t_fmt_ampm): Likewise.
2110 * localedata/locales/am_ET (t_fmt): Likewise.
2111 (t_fmt_ampm): Likewise.
2112 * localedata/locales/byn_ER (t_fmt): Likewise.
2113 (t_fmt_ampm): Likewise.
2114 * localedata/locales/om_ET (t_fmt): Likewise.
2115 (t_fmt_ampm): Likewise.
2116 * localedata/locales/sid_ET (t_fmt): Likewise.
2117 (t_fmt_ampm): Likewise.
2118 * localedata/locales/so_DJ (t_fmt): Likewise.
2119 (t_fmt_ampm): Likewise.
2120 * localedata/locales/so_ET (t_fmt): Likewise.
2121 (t_fmt_ampm): Likewise.
2122 * localedata/locales/so_SO (t_fmt): Likewise.
2123 (t_fmt_ampm): Likewise.
2124 * localedata/locales/ti_ER (t_fmt): Likewise.
2125 (t_fmt_ampm): Likewise.
2126 * localedata/locales/ti_ET (t_fmt): Likewise.
2127 (t_fmt_ampm): Likewise.
2128 * localedata/locales/tig_ER (t_fmt): Likewise.
2129 (t_fmt_ampm): Likewise.
2130 * localedata/locales/wal_ET (t_fmt): Likewise.
2131 (t_fmt_ampm): Likewise.
2133 * localedata/locales/anp_IN (t_fmt): Set to "%I:%M:%S %p %Z".
2134 * localedata/locales/ar_IN (t_fmt): Likewise.
2135 * localedata/locales/bhb_IN (t_fmt): Likewise.
2136 * localedata/locales/bho_IN (t_fmt): Likewise.
2137 * localedata/locales/bi_VU (t_fmt): Likewise.
2138 * localedata/locales/bn_BD (t_fmt): Likewise.
2139 * localedata/locales/bn_IN (t_fmt): Likewise.
2140 * localedata/locales/brx_IN (t_fmt): Likewise.
2141 * localedata/locales/doi_IN (t_fmt): Likewise.
2142 * localedata/locales/en_HK (t_fmt): Likewise.
2143 (t_fmt_ampm): Likewise.
2144 * localedata/locales/en_IN (t_fmt): Likewise.
2145 * localedata/locales/en_PH (t_fmt): Likewise.
2146 * localedata/locales/gu_IN (t_fmt): Likewise.
2147 * localedata/locales/hi_IN (t_fmt): Likewise.
2148 * localedata/locales/hif_FJ (t_fmt): Likewise.
2149 * localedata/locales/hne_IN (t_fmt): Likewise.
2150 * localedata/locales/kn_IN (t_fmt): Likewise.
2151 * localedata/locales/kok_IN (t_fmt): Likewise.
2152 * localedata/locales/ks_IN (t_fmt): Likewise.
2153 * localedata/locales/ks_IN@devanagari (t_fmt): Likewise.
2154 * localedata/locales/mag_IN (t_fmt): Likewise.
2155 * localedata/locales/mai_IN (t_fmt): Likewise.
2156 * localedata/locales/mjw_IN (t_fmt): Likewise.
2157 * localedata/locales/ml_IN (t_fmt): Likewise.
2158 * localedata/locales/mni_IN (t_fmt): Likewise.
2159 * localedata/locales/mr_IN (t_fmt): Likewise.
2160 * localedata/locales/ms_MY (t_fmt): Likewise.
2161 * localedata/locales/pa_IN (t_fmt): Likewise.
2162 * localedata/locales/raj_IN (t_fmt): Likewise.
2163 * localedata/locales/sa_IN (t_fmt): Likewise.
2164 * localedata/locales/sat_IN (t_fmt): Likewise.
2165 * localedata/locales/sd_IN (t_fmt): Likewise.
2166 * localedata/locales/sd_IN@devanagari (t_fmt): Likewise.
2167 * localedata/locales/tcy_IN (t_fmt): Likewise.
2168 * localedata/locales/the_NP (t_fmt): Likewise.
2169 * localedata/locales/to_TO (t_fmt): Likewise.
2170 * localedata/locales/ur_IN (t_fmt): Likewise.
2172 * localedata/locales/hif_FJ (d_t_fmt): Set to
2173 "%A %d %b %Y %I:%M:%S %p".
2174 (date_fmt): Add, set to "%A %d %b %Y %I:%M:%S %p %Z".
2176 * localedata/locales/ar_AE (t_fmt): Set to "%Z %I:%M:%S %p".
2177 * localedata/locales/ar_BH (t_fmt): Likewise.
2178 * localedata/locales/ar_DZ (t_fmt): Likewise.
2179 * localedata/locales/ar_EG (t_fmt): Likewise.
2180 * localedata/locales/ar_IQ (t_fmt): Likewise.
2181 * localedata/locales/ar_JO (t_fmt): Likewise.
2182 * localedata/locales/ar_KW (t_fmt): Likewise.
2183 * localedata/locales/ar_LB (t_fmt): Likewise.
2184 * localedata/locales/ar_LY (t_fmt): Likewise.
2185 * localedata/locales/ar_OM (t_fmt): Likewise.
2186 * localedata/locales/ar_QA (t_fmt): Likewise.
2187 * localedata/locales/ar_SD (t_fmt): Likewise.
2188 * localedata/locales/ar_SS (t_fmt): Likewise.
2189 * localedata/locales/ar_SY (t_fmt): Likewise.
2190 * localedata/locales/ar_TN (t_fmt): Likewise.
2191 * localedata/locales/ar_YE (t_fmt): Likewise.
2193 * localedata/locales/gez_ER (t_fmt): Set to "%l:%M:%S<U1361>%p".
2194 (t_fmt_ampm): Likewise.
2195 * localedata/locales/gez_ET (t_fmt): Likewise.
2196 (t_fmt_ampm): Likewise.
2198 * localedata/locales/ta_IN (t_fmt): Set to "%p %I:%M:%S %Z".
2199 (t_fmt_ampm): Likewise.
2200 (d_t_fmt): Set to "%A %d %B %Y %p %I:%M:%S %Z".
2202 * localedata/locales/zh_HK (t_fmt):
2203 Set to "%p %I<U6642>%M<U5206>%S<U79D2> %Z".
2205 * localedata/locales/ar_MA (t_fmt_ampm): Set to "" (empty string)
2206 because this locale does not use the 12-hour clock.
2207 (t_fmt): Set to "%Z %H:%M:%S".
2208 (d_t_fmt): Set to "%d %b, %Y %Z %H:%M:%S".
2210 * localedata/locales/mt_MT (t_fmt_ampm): Set to "" (empty string)
2211 because this locale does not use the 12-hour clock.
2212 (t_fmt): Set to "%H:%M:%S %Z".
2213 (d_t_fmt): Set to "%A, %d ta %b, %Y %H:%M:%S %Z".
2215 * localedata/locales/so_KE (t_fmt_ampm): Set to "" (empty string)
2216 because this locale does not use the 12-hour clock.
2217 (t_fmt): Set to "%T".
2218 (d_t_fmt): Set to "%A, %B %e, %Y %X %Z".
2219 (date_fmt): Set to "%A, %B %e, %X %Z %Y".
2221 * localedata/locales/ta_LK (t_fmt_ampm): Set to "" (empty string)
2222 because this locale does not use the 12-hour clock.
2223 (t_fmt): Set to "%H:%M:%S %Z".
2224 (d_t_fmt): Set to "%A %d %B %Y %H:%M:%S %Z".
2226 * localedata/locales/bg_BG (t_fmt_ampm): Set to "" (empty string)
2227 because this locale does not use the 12-hour clock.
2228 * localedata/locales/cs_CZ (t_fmt_ampm): Likewise.
2229 * localedata/locales/sk_SK (t_fmt_ampm): Likewise.
2231 2018-12-28 Rafal Luzynski <digitalfreak@lingonborough.com>
2235 * localedata/locales/sq_AL (t_fmt): Set to "%I:%M:%S.%p %Z".
2236 (t_fmt_ampm): Likewise.
2237 (d_t_fmt): Set to "%a %-d %b %Y %I:%M:%S.%p".
2238 (date_fmt): Add, set to "%a %-d %b %Y %I:%M:%S.%p %Z".
2239 (d_fmt): Set to "%-d.%-m.%y".
2241 2018-12-28 Adhemerval Zanella <adhemerval.zanella@linaro.org>
2243 * malloc/alloc_buffer_alloc_array.c (__libc_alloc_buffer_alloc_array):
2244 Use __builtin_mul_overflow in place of check_mul_overflow_size_t.
2245 * malloc/dynarray_emplace_enlarge.c (__libc_dynarray_emplace_enlarge):
2247 * malloc/dynarray_resize.c (__libc_dynarray_resize): Likewise.
2248 * malloc/reallocarray.c (__libc_reallocarray): Likewise.
2249 * malloc/malloc-internal.h (check_mul_overflow_size_t): Remove
2251 * support/blob_repeat.c (check_mul_overflow_size_t,
2252 (minimum_stride_size, support_blob_repeat_allocate): Likewise.
2254 2018-12-28 Aurelien Jarno <aurelien@aurel32.net>
2256 * sysdeps/alpha/fpu/libm-test-ulps: Regenerated.
2258 2018-12-27 Paul Eggert <eggert@cs.ucla.edu>
2260 regex: simplify Gnulib port
2261 This simplifies the code, by removing stuff intended for porting
2262 to Gnulib but no longer needed there.
2263 * posix/regcomp.c [!_LIBC]: No need to put #ifdef _LIBC around
2264 uses of libc_hidden_def, weak_alias.
2265 * posix/regcomp.c, posix/regexec.c: Use __restrict rather than
2266 _Restrict_ except for public-facing headers.
2267 * posix/regex_internal.h (attribute_hidden) [!_LIBC]:
2268 Remove; already defined elsewhere.
2269 * posix/regex.c, posix/regex_internal.h:
2270 Use __GNUC_PREREQ instead of rolling our own.
2271 * posix/regex_internal.h (__GNUC_PREREQ): Remove duplicate defn.
2273 2018-12-27 Wilco Dijkstra <wdijkstr@arm.com>
2275 * benchtests/bench-strlen.c (generic_strlen): New function.
2276 (memchr_strlen): New function.
2278 2018-12-26 H.J. Lu <hongjiu.lu@intel.com>
2280 * sysdeps/x86_64/fpu/s_sincosf.S: Removed.
2281 * sysdeps/x86_64/fpu/multiarch/s_sincosf-sse2.S: Likewise.
2282 * sysdeps/x86_64/fpu/multiarch/s_sincosf-sse2.c: New file.
2284 2018-12-26 H.J. Lu <hongjiu.lu@intel.com>
2286 * sysdeps/x86_64/fpu/libm-test-ulps: Regenerated.
2288 2018-12-26 H.J. Lu <hongjiu.lu@intel.com>
2290 * sysdeps/ieee754/flt-32/s_sincosf.h: Include <sincosf_poly.h>.
2291 (sincos_t, sincosf_poly, sinf_poly): Moved to ...
2292 * sysdeps/ieee754/flt-32/sincosf_poly.h: Here. New file.
2293 * sysdeps/x86/fpu/s_sincosf_data.c: New file.
2294 * sysdeps/x86/fpu/sincosf_poly.h: Likewise.
2295 * sysdeps/x86_64/fpu/multiarch/s_sincosf-fma.c: Just include
2296 <sysdeps/ieee754/flt-32/s_sincosf.c>.
2298 2018-12-21 Joseph Myers <joseph@codesourcery.com>
2301 * sysdeps/unix/sysv/linux/nios2/localplt.data: Allow __floatundidf
2302 PLT reference in libc.so.
2303 * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: Allow
2304 _Q_lltoq and _Q_qtod PLT references in libc.so.
2306 2018-12-21 Wilco Dijkstra <wdijkstr@arm.com>
2308 * benchtests/bench-memchr.c: Cleanup defines.
2309 * benchtests/bench-memcmp.c: Likewise.
2310 * benchtests/bench-memset.c: Likewise.
2311 * benchtests/bench-memset-large.c: Likewise.
2312 * benchtests/bench-memset-walk.c: Likewise.
2313 * benchtests/bench-stpcpy.c: Likewise.
2314 * benchtests/bench-stpncpy.c: Likewise.
2315 * benchtests/bench-strcat.c: Likewise.
2316 * benchtests/bench-strchr.c: Likewise.
2317 * benchtests/bench-strcmp.c: Likewise.
2318 * benchtests/bench-strcpy.c: Likewise.
2319 * benchtests/bench-strcspn.c: Likewise.
2320 * benchtests/bench-string.h: Likewise.
2321 * benchtests/bench-strlen.c: Likewise.
2322 * benchtests/bench-strncat.c: Likewise.
2323 * benchtests/bench-strncmp.c: Likewise.
2324 * benchtests/bench-strncpy.c: Likewise.
2325 * benchtests/bench-strnlen.c: Likewise.
2326 * benchtests/bench-strpbrk.c: Likewise.
2327 * benchtests/bench-strrchr.c: Likewise.
2328 * benchtests/bench-strspn.c: Likewise.
2330 2018-12-21 Joseph Myers <joseph@codesourcery.com>
2332 * stdlib/longlong.h: Update from GCC.
2335 * configure.ac (libc_cv_compiler_ok): Require GCC 5 or later.
2336 * configure: Regenerated.
2337 * manual/install.texi (Tools for Compilation): Update minimum GCC
2339 * INSTALL: Regenerated.
2341 2018-12-21 Istvan Kurucsai <pistukem@gmail.com>
2343 * malloc/malloc.c (munmap_chunk): Verify chunk alignment.
2345 2018-12-20 Istvan Kurucsai <pistukem@gmail.com>
2347 * malloc/malloc.c (mremap_chunk): Additional checks.
2349 2018-12-21 Mao Han <han_mao@c-sky.com>
2351 * config.h.in (CSKYABI, CSKY_HARD_FLOAT): New Define.
2352 * scripts/build-many-glibcs.py: Add C-SKY targets.
2353 * sysdeps/csky/Implies: New file.
2354 * sysdeps/csky/Makefile: Likewise.
2355 * sysdeps/csky/abiv2/__longjmp.S: Likewise.
2356 * sysdeps/csky/abiv2/csky-mcount.S: Likewise.
2357 * sysdeps/csky/abiv2/dl-trampoline.S: Likewise.
2358 * sysdeps/csky/abiv2/memcmp.S: Likewise.
2359 * sysdeps/csky/abiv2/memcpy.S: Likewise.
2360 * sysdeps/csky/abiv2/memmove.S: Likewise.
2361 * sysdeps/csky/abiv2/memset.S: Likewise.
2362 * sysdeps/csky/abiv2/setjmp.S: Likewise.
2363 * sysdeps/csky/abiv2/start.S: Likewise.
2364 * sysdeps/csky/abiv2/strcmp.S: Likewise.
2365 * sysdeps/csky/abiv2/strcpy.S: Likewise.
2366 * sysdeps/csky/abiv2/strlen.S: Likewise.
2367 * sysdeps/csky/abiv2/tls-macros.h: Likewise.
2368 * sysdeps/csky/abort-instr.h: Likewise.
2369 * sysdeps/csky/atomic-machine.h: Likewise.
2370 * sysdeps/csky/bits/endian.h: Likewise.
2371 * sysdeps/csky/bits/fenv.h: Likewise.
2372 * sysdeps/csky/bits/link.h: Likewise.
2373 * sysdeps/csky/bits/setjmp.h: Likewise.
2374 * sysdeps/csky/bsd-_setjmp.S: Likewise.
2375 * sysdeps/csky/bsd-setjmp.S: Likewise.
2376 * sysdeps/csky/configure: Likewise.
2377 * sysdeps/csky/configure.ac: Likewise.
2378 * sysdeps/csky/dl-machine.h: Likewise.
2379 * sysdeps/csky/dl-procinfo.c: Likewise.
2380 * sysdeps/csky/dl-procinfo.h: Likewise.
2381 * sysdeps/csky/dl-sysdep.h: Likewise.
2382 * sysdeps/csky/dl-tls.h: Likewise.
2383 * sysdeps/csky/fpu/fclrexcpt.c: Likewise.
2384 * sysdeps/csky/fpu/fedisblxcpt.c: Likewise.
2385 * sysdeps/csky/fpu/feenablxcpt.c: Likewise.
2386 * sysdeps/csky/fpu/fegetenv.c: Likewise.
2387 * sysdeps/csky/fpu/fegetexcept.c: Likewise.
2388 * sysdeps/csky/fpu/fegetmode.c: Likewise.
2389 * sysdeps/csky/fpu/fegetround.c: Likewise.
2390 * sysdeps/csky/fpu/feholdexcpt.c: Likewise.
2391 * sysdeps/csky/fpu/fenv_libc.h: Likewise.
2392 * sysdeps/csky/fpu/fenv_private.h: Likewise.
2393 * sysdeps/csky/fpu/fesetenv.c: Likewise.
2394 * sysdeps/csky/fpu/fesetexcept.c: Likewise.
2395 * sysdeps/csky/fpu/fesetmode.c: Likewise.
2396 * sysdeps/csky/fpu/fesetround.c: Likewise.
2397 * sysdeps/csky/fpu/feupdateenv.c: Likewise.
2398 * sysdeps/csky/fpu/fgetexcptflg.c: Likewise.
2399 * sysdeps/csky/fpu/fix-fp-int-convert-overflow.h: Likewise.
2400 * sysdeps/csky/fpu/fraiseexcpt.c: Likewise.
2401 * sysdeps/csky/fpu/fsetexcptflg.c: Likewise.
2402 * sysdeps/csky/fpu/ftestexcept.c: Likewise.
2403 * sysdeps/csky/fpu/libm-test-ulps: Likewise.
2404 * sysdeps/csky/fpu/libm-test-ulps-name: Likewise.
2405 * sysdeps/csky/fpu_control.h: Likewise.
2406 * sysdeps/csky/gccframe.h: Likewise.
2407 * sysdeps/csky/jmpbuf-unwind.h: Likewise.
2408 * sysdeps/csky/ldsodefs.h: Likewise.
2409 * sysdeps/csky/libc-tls.c: Likewise.
2410 * sysdeps/csky/linkmap.h: Likewise.
2411 * sysdeps/csky/machine-gmon.h: Likewise.
2412 * sysdeps/csky/memusage.h: Likewise.
2413 * sysdeps/csky/nofpu/Implies: Likewise.
2414 * sysdeps/csky/nofpu/libm-test-ulps: Likewise.
2415 * sysdeps/csky/nofpu/libm-test-ulps-name: Likewise.
2416 * sysdeps/csky/nptl/Makefile: Likewise.
2417 * sysdeps/csky/nptl/bits/pthreadtypes-arch.h: Likewise.
2418 * sysdeps/csky/nptl/bits/semaphore.h: Likewise.
2419 * sysdeps/csky/nptl/pthread-offsets.h: Likewise.
2420 * sysdeps/csky/nptl/pthreaddef.h: Likewise.
2421 * sysdeps/csky/nptl/tcb-offsets.sym: Likewise.
2422 * sysdeps/csky/nptl/tls.h: Likewise.
2423 * sysdeps/csky/preconfigure: Likewise.
2424 * sysdeps/csky/sfp-machine.h: Likewise.
2425 * sysdeps/csky/sotruss-lib.c: Likewise.
2426 * sysdeps/csky/stackinfo.h: Likewise.
2427 * sysdeps/csky/sysdep.h: Likewise.
2428 * sysdeps/csky/tininess.h: Likewise.
2429 * sysdeps/csky/tst-audit.h: Likewise.
2430 * sysdeps/unix/sysv/linux/csky/Implies: Likewise.
2431 * sysdeps/unix/sysv/linux/csky/Makefile: Likewise.
2432 * sysdeps/unix/sysv/linux/csky/Versions: Likewise.
2433 * sysdeps/unix/sysv/linux/csky/abiv2/____longjmp_chk.S: Likewise.
2434 * sysdeps/unix/sysv/linux/csky/abiv2/clone.S: Likewise.
2435 * sysdeps/unix/sysv/linux/csky/abiv2/getcontext.S: Likewise.
2436 * sysdeps/unix/sysv/linux/csky/abiv2/setcontext.S: Likewise.
2437 * sysdeps/unix/sysv/linux/csky/abiv2/swapcontext.S: Likewise.
2438 * sysdeps/unix/sysv/linux/csky/abiv2/syscall.S: Likewise.
2439 * sysdeps/unix/sysv/linux/csky/abiv2/sysdep.S: Likewise.
2440 * sysdeps/unix/sysv/linux/csky/abiv2/ucontext_i.sym: Likewise.
2441 * sysdeps/unix/sysv/linux/csky/bits/procfs.h: Likewise.
2442 * sysdeps/unix/sysv/linux/csky/bits/shmlba.h: Likewise.
2443 * sysdeps/unix/sysv/linux/csky/c++-types.data: Likewise.
2444 * sysdeps/unix/sysv/linux/csky/configure: Likewise.
2445 * sysdeps/unix/sysv/linux/csky/configure.ac: Likewise.
2446 * sysdeps/unix/sysv/linux/csky/ipc_priv.h: Likewise.
2447 * sysdeps/unix/sysv/linux/csky/jmp_buf-macros.h: Likewise.
2448 * sysdeps/unix/sysv/linux/csky/kernel-features.h: Likewise.
2449 * sysdeps/unix/sysv/linux/csky/ld.abilist: Likewise.
2450 * sysdeps/unix/sysv/linux/csky/ldconfig.h: Likewise.
2451 * sysdeps/unix/sysv/linux/csky/libBrokenLocale.abilist: Likewise.
2452 * sysdeps/unix/sysv/linux/csky/libanl.abilist: Likewise.
2453 * sysdeps/unix/sysv/linux/csky/libc.abilist: Likewise.
2454 * sysdeps/unix/sysv/linux/csky/libcrypt.abilist: Likewise.
2455 * sysdeps/unix/sysv/linux/csky/libdl.abilist: Likewise.
2456 * sysdeps/unix/sysv/linux/csky/libm.abilist: Likewise.
2457 * sysdeps/unix/sysv/linux/csky/libpthread.abilist: Likewise.
2458 * sysdeps/unix/sysv/linux/csky/libresolv.abilist: Likewise.
2459 * sysdeps/unix/sysv/linux/csky/librt.abilist: Likewise.
2460 * sysdeps/unix/sysv/linux/csky/libthread_db.abilist: Likewise.
2461 * sysdeps/unix/sysv/linux/csky/libutil.abilist: Likewise.
2462 * sysdeps/unix/sysv/linux/csky/localplt.data: Likewise.
2463 * sysdeps/unix/sysv/linux/csky/makecontext.c: Likewise.
2464 * sysdeps/unix/sysv/linux/csky/profil-counter.h: Likewise.
2465 * sysdeps/unix/sysv/linux/csky/pt-vfork.S: Likewise.
2466 * sysdeps/unix/sysv/linux/csky/register-dump.h: Likewise.
2467 * sysdeps/unix/sysv/linux/csky/shlib-versions: Likewise.
2468 * sysdeps/unix/sysv/linux/csky/sigcontextinfo.h: Likewise.
2469 * sysdeps/unix/sysv/linux/csky/sys/cachectl.h: Likewise.
2470 * sysdeps/unix/sysv/linux/csky/sys/ucontext.h: Likewise.
2471 * sysdeps/unix/sysv/linux/csky/sys/user.h: Likewise.
2472 * sysdeps/unix/sysv/linux/csky/syscalls.list: Likewise.
2473 * sysdeps/unix/sysv/linux/csky/sysdep.h: Likewise.
2475 2018-12-18 Albert ARIBAUD <albert.aribaud@3adev.fr>
2477 * include/time.h (__difftime64): Add.
2478 * time/difftime.c (subtract): convert to 64-bit time.
2479 * time/difftime.c (__difftime64): Add.
2480 * time/difftime.c (__difftime): Wrap around __difftime64.
2482 2018-12-20 H.J. Lu <hongjiu.lu@intel.com>
2484 * manual/examples/add.c: Remove redundant "if not".
2485 * manual/examples/argp-ex1.c: Likewise.
2486 * manual/examples/argp-ex2.c: Likewise.
2487 * manual/examples/argp-ex3.c: Likewise.
2488 * manual/examples/argp-ex4.c: Likewise.
2489 * manual/examples/atexit.c: Likewise.
2490 * manual/examples/db.c: Likewise.
2491 * manual/examples/dir.c: Likewise.
2492 * manual/examples/dir2.c: Likewise.
2493 * manual/examples/execinfo.c: Likewise.
2494 * manual/examples/filecli.c: Likewise.
2495 * manual/examples/filesrv.c: Likewise.
2496 * manual/examples/fmtmsgexpl.c: Likewise.
2497 * manual/examples/genpass.c: Likewise.
2498 * manual/examples/inetcli.c: Likewise.
2499 * manual/examples/inetsrv.c: Likewise.
2500 * manual/examples/isockad.c: Likewise.
2501 * manual/examples/longopt.c: Likewise.
2502 * manual/examples/memopen.c: Likewise.
2503 * manual/examples/memstrm.c: Likewise.
2504 * manual/examples/mkdirent.c: Likewise.
2505 * manual/examples/mkfsock.c: Likewise.
2506 * manual/examples/mkisock.c: Likewise.
2507 * manual/examples/mygetpass.c: Likewise.
2508 * manual/examples/pipe.c: Likewise.
2509 * manual/examples/popen.c: Likewise.
2510 * manual/examples/rprintf.c: Likewise.
2511 * manual/examples/search.c: Likewise.
2512 * manual/examples/select.c: Likewise.
2513 * manual/examples/setjmp.c: Likewise.
2514 * manual/examples/sigh1.c: Likewise.
2515 * manual/examples/sigusr.c: Likewise.
2516 * manual/examples/stpcpy.c: Likewise.
2517 * manual/examples/strdupa.c: Likewise.
2518 * manual/examples/strftim.c: Likewise.
2519 * manual/examples/subopt.c: Likewise.
2520 * manual/examples/swapcontext.c: Likewise.
2521 * manual/examples/termios.c: Likewise.
2522 * manual/examples/testopt.c: Likewise.
2523 * manual/examples/testpass.c: Likewise.
2524 * manual/examples/timeval_subtract.c: Likewise.
2526 2018-12-19 Joseph Myers <joseph@codesourcery.com>
2528 * sysdeps/x86/fpu/math_private.h: New file.
2529 * sysdeps/x86/fpu/bits/mathinline.h: Remove.
2531 * sysdeps/x86/fpu/bits/mathinline.h (sinh): Remove inline
2536 2018-12-19 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
2538 * elf/dl-sysdep.c (auxvars): Add AT_L1I_CACHESIZE,
2539 AT_L1I_CACHEGEOMETRY, AT_L1D_CACHESIZE, AT_L1D_CACHEGEOMETRY,
2540 AT_L2_CACHESIZE, AT_L2_CACHEGEOMETRY, AT_L3_CACHESIZE and
2541 AT_L3_CACHEGEOMETRY. Fix indentation when printing the other
2543 (_dl_show_auxv): Give a special treatment to
2544 AT_L1I_CACHEGEOMETRY, AT_L1D_CACHEGEOMETRY, AT_L2_CACHEGEOMETRY
2545 and AT_L3_CACHEGEOMETRY.
2546 * sysdeps/powerpc/dl-procinfo.h (cache_geometry): New function.
2547 (_dl_procinfo): Fix indentation when printing AT_HWCAP and
2548 AT_HWCAP2. Add support for AT_L1I_CACHEGEOMETRY,
2549 AT_L1D_CACHEGEOMETRY, AT_L2_CACHEGEOMETRY and AT_L3_CACHEGEOMETRY.
2551 2018-12-19 Andreas Schwab <schwab@suse.de>
2553 * nscd/connections.c (check_use): Don't abort on invalid len.
2555 2018-12-18 Samuel Thibault <samuel.thibault@ens-lyon.org>
2557 * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Test against 64bit `cmd'
2558 values in the 64bit value cases.
2560 2018-12-18 Albert ARIBAUD <albert.aribaud@3adev.fr>
2566 [__TIMESIZE != 64] (__ctime_r): Turn into a wrapper.
2572 [__TIMESIZE != 64] (ctime): Turn into a wrapper.
2575 (__gmtime64_r): Add.
2577 (__gmtime64_r): Add.
2578 [__TIMESIZE != 64] (__gmtime): Turn into a wrapper.
2584 [__TIMESIZE != 64] (__gmtime): Turn into a wrapper.
2587 (__localtime64_r): Add.
2589 (__localtime64_r): Add.
2590 [__TIMESIZE != 64] (__localtime_r): Turn into a wrapper.
2592 2018-12-18 Adhemerval Zanella <adhemerval.zanella@linaro.org>
2594 * sysdeps/unix/sysv/linux/s390/kernel_sigaction.h: Use Linux generic
2595 kernel_sigction definition.
2597 * sysdeps/unix/sysv/linux/ia64/kernel_sigaction.h: Remove file.
2599 * sysdeps/unix/sysv/linux/hppa/kernel_sigaction.h: Remove file.
2601 * sysdeps/unix/sysv/linux/alpha/Makefile: Update comment about
2602 __syscall_rt_sigaction.
2603 * sysdeps/unix/sysv/linux/alpha/kernel_sigaction.h
2604 (kernel_sigaction): Use Linux generic defintion.
2606 (__syscall_rt_sigreturn, __syscall_sigreturn): Add prototype.
2607 * sysdeps/unix/sysv/linux/alpha/rt_sigaction.S
2608 (__syscall_rt_sigaction): Remove implementation.
2609 (__syscall_sigreturn, __syscall_rt_sigreturn): Define as global and
2611 * sysdeps/unix/sysv/linux/alpha/sigaction.c: Remove file.
2612 * sysdeps/unix/sysv/linux/alpha/sysdep.h (INLINE_SYSCALL,
2613 INTERNAL_SYSCALL): Remove definitions.
2614 * sysdeps/unix/sysv/linux/sigaction.c: Define STUB to accept both the
2615 action and signal set size.
2616 * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c (STUB): Redefine.
2617 * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c (STUB): Likewise.
2619 2018-12-18 Adhemerval Zanella <adhemerval.zanella@linaro.org>
2620 James Clarke <jrtc27@jrtc27.com>
2623 * sysdeps/unix/sysv/linux/kernel_sigaction.h (HAS_SA_RESTORER):
2624 Define if SA_RESTORER is defined.
2625 (kernel_sigaction): Define sa_restorer if HAS_SA_RESTORER is defined.
2626 (SET_SA_RESTORER, RESET_SA_RESTORER): Define iff the macro are not
2628 * sysdeps/unix/sysv/linux/m68k/kernel_sigaction.h (SA_RESTORER,
2629 kernel_sigaction, SET_SA_RESTORER, RESET_SA_RESTORER): Remove
2631 (HAS_SA_RESTORER): Define.
2632 * sysdeps/unix/sysv/linux/sparc/kernel_sigaction.h (SA_RESTORER,
2633 SET_SA_RESTORER, RESET_SA_RESTORER): Remove definition.
2634 (HAS_SA_RESTORER): Define.
2635 * sysdeps/unix/sysv/linux/nios2/kernel_sigaction.h: Include generic
2636 kernel_sigaction after define SET_SA_RESTORER and RESET_SA_RESTORER.
2637 * sysdeps/unix/sysv/linux/powerpc/kernel_sigaction.h: Likewise.
2638 * sysdeps/unix/sysv/linux/s390/kernel_sigaction.h: Likewise.
2639 * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
2641 2018-12-18 Joseph Myers <joseph@codesourcery.com>
2643 * sysdeps/unix/sysv/linux/kernel-features.h
2644 (__ASSUME_ST_INO_64_BIT): Remove macro definition.
2645 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
2646 (__ASSUME_ST_INO_64_BIT): Do not undefine and define.
2647 * sysdeps/unix/sysv/linux/sh/kernel-features.h
2648 (__ASSUME_ST_INO_64_BIT): Likewise.
2649 * sysdeps/unix/sysv/linux/fxstat64.c: Do not include
2650 <kernel-features.h>.
2651 (___fxstat64) [_HAVE_STAT64___ST_INO && !__ASSUME_ST_INO_64_BIT]:
2652 Remove conditional code.
2653 * sysdeps/unix/sysv/linux/lxstat64.c: Do not include
2654 <kernel-features.h>.
2655 (___lxstat64) [_HAVE_STAT64___ST_INO && !__ASSUME_ST_INO_64_BIT]:
2656 Remove conditional code.
2657 * sysdeps/unix/sysv/linux/xstat64.c: Do not include
2658 <kernel-features.h>.
2659 (___xstat64) [_HAVE_STAT64___ST_INO && !__ASSUME_ST_INO_64_BIT]:
2660 Remove conditional code.
2661 * sysdeps/unix/sysv/linux/xstatconv.c: Do not include
2662 <kernel-features.h>.
2663 (__xstat32_conv) [_HAVE_STAT64___ST_INO]: Remove conditional code.
2664 [!_HAVE_STAT64___ST_INO]: Make code unconditional.
2666 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2668 * sysdeps/s390/multiarch/ifunc-resolve.h
2669 (s390_vx_libc_ifunc, s390_vx_libc_ifunc_redirected,
2670 s390_vx_libc_ifunc2, s390_vx_libc_ifunc_init,
2671 s390_vx_libc_ifunc2_redirected, s390_libc_ifunc):
2672 Delete macro definition.
2673 (s390_libc_ifunc_init): Rename to
2674 s390_libc_ifunc_expr_stfle_init.
2675 * sysdeps/s390/bzero: Use
2676 s390_libc_ifunc_expr_stfle_init instead of
2677 s390_libc_ifunc_init.
2678 * sysdeps/s390/memcmp.c: Likewise.
2679 * sysdeps/s390/memcpy.c: Likewise.
2680 * sysdeps/s390/mempcpy.c: Likewise.
2681 * sysdeps/s390/memset.c: Likewise.
2683 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2685 * sysdeps/s390/multiarch/gconv_simple.c (ICONV_VX_IFUNC):
2686 Define macro dependent on HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT.
2688 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2690 * sysdeps/s390/multiarch/Makefile
2691 (sysdep_routines): Remove wmemcmp variants.
2692 * sysdeps/s390/Makefile (sysdep_routines): Add wmemcmp variants.
2693 * sysdeps/s390/multiarch/ifunc-impl-list.c
2694 (__libc_ifunc_impl_list): Refactor ifunc handling for wmemcmp.
2695 * sysdeps/s390/multiarch/wmemcmp-c.c: Move to ...
2696 * sysdeps/s390/wmemcmp-c.c: ... here and adjust ifunc handling.
2697 * sysdeps/s390/multiarch/wmemcmp-vx.S: Move to ...
2698 * sysdeps/s390/wmemcmp-vx.S: ... here and adjust ifunc handling.
2699 * sysdeps/s390/multiarch/wmemcmp.c: Move to ...
2700 * sysdeps/s390/wmemcmp.c: ... here and adjust ifunc handling.
2701 * sysdeps/s390/ifunc-wmemcmp.h: New file.
2703 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2705 * sysdeps/s390/multiarch/Makefile
2706 (sysdep_routines): Remove wmemset variants.
2707 * sysdeps/s390/Makefile (sysdep_routines): Add wmemset variants.
2708 * sysdeps/s390/multiarch/ifunc-impl-list.c
2709 (__libc_ifunc_impl_list): Refactor ifunc handling for wmemset.
2710 * sysdeps/s390/multiarch/wmemset-c.c: Move to ...
2711 * sysdeps/s390/wmemset-c.c: ... here and adjust ifunc handling.
2712 * sysdeps/s390/multiarch/wmemset-vx.S: Move to ...
2713 * sysdeps/s390/wmemset-vx.S: ... here and adjust ifunc handling.
2714 * sysdeps/s390/multiarch/wmemset.c: Move to ...
2715 * sysdeps/s390/wmemset.c: ... here and adjust ifunc handling.
2716 * sysdeps/s390/ifunc-wmemset.h: New file.
2718 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2720 * sysdeps/s390/multiarch/Makefile
2721 (sysdep_routines): Remove wmemchr variants.
2722 * sysdeps/s390/Makefile (sysdep_routines): Add wmemchr variants.
2723 * sysdeps/s390/multiarch/ifunc-impl-list.c
2724 (__libc_ifunc_impl_list): Refactor ifunc handling for wmemchr.
2725 * sysdeps/s390/multiarch/wmemchr-c.c: Move to ...
2726 * sysdeps/s390/wmemchr-c.c: ... here and adjust ifunc handling.
2727 * sysdeps/s390/multiarch/wmemchr-vx.S: Move to ...
2728 * sysdeps/s390/wmemchr-vx.S: ... here and adjust ifunc handling.
2729 * sysdeps/s390/multiarch/wmemchr.c: Move to ...
2730 * sysdeps/s390/wmemchr.c: ... here and adjust ifunc handling.
2731 * sysdeps/s390/ifunc-wmemchr.h: New file.
2733 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2735 * sysdeps/s390/multiarch/Makefile
2736 (sysdep_routines): Remove wcscspn variants.
2737 * sysdeps/s390/Makefile (sysdep_routines): Add wcscspn variants.
2738 * sysdeps/s390/multiarch/ifunc-impl-list.c
2739 (__libc_ifunc_impl_list): Refactor ifunc handling for wcscspn.
2740 * sysdeps/s390/multiarch/wcscspn-c.c: Move to ...
2741 * sysdeps/s390/wcscspn-c.c: ... here and adjust ifunc handling.
2742 * sysdeps/s390/multiarch/wcscspn-vx.S: Move to ...
2743 * sysdeps/s390/wcscspn-vx.S: ... here and adjust ifunc handling.
2744 * sysdeps/s390/multiarch/wcscspn.c: Move to ...
2745 * sysdeps/s390/wcscspn.c: ... here and adjust ifunc handling.
2746 * sysdeps/s390/ifunc-wcscspn.h: New file.
2748 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2750 * sysdeps/s390/multiarch/Makefile
2751 (sysdep_routines): Remove wcspbrk variants.
2752 * sysdeps/s390/Makefile (sysdep_routines): Add wcspbrk variants.
2753 * sysdeps/s390/multiarch/ifunc-impl-list.c
2754 (__libc_ifunc_impl_list): Refactor ifunc handling for wcspbrk.
2755 * sysdeps/s390/multiarch/wcspbrk-c.c: Move to ...
2756 * sysdeps/s390/wcspbrk-c.c: ... here and adjust ifunc handling.
2757 * sysdeps/s390/multiarch/wcspbrk-vx.S: Move to ...
2758 * sysdeps/s390/wcspbrk-vx.S: ... here and adjust ifunc handling.
2759 * sysdeps/s390/multiarch/wcspbrk.c: Move to ...
2760 * sysdeps/s390/wcspbrk.c: ... here and adjust ifunc handling.
2761 * sysdeps/s390/ifunc-wcspbrk.h: New file.
2763 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2765 * sysdeps/s390/multiarch/Makefile
2766 (sysdep_routines): Remove wcsspn variants.
2767 * sysdeps/s390/Makefile (sysdep_routines): Add wcsspn variants.
2768 * sysdeps/s390/multiarch/ifunc-impl-list.c
2769 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsspn.
2770 * sysdeps/s390/multiarch/wcsspn-c.c: Move to ...
2771 * sysdeps/s390/wcsspn-c.c: ... here and adjust ifunc handling.
2772 * sysdeps/s390/multiarch/wcsspn-vx.S: Move to ...
2773 * sysdeps/s390/wcsspn-vx.S: ... here and adjust ifunc handling.
2774 * sysdeps/s390/multiarch/wcsspn.c: Move to ...
2775 * sysdeps/s390/wcsspn.c: ... here and adjust ifunc handling.
2776 * sysdeps/s390/ifunc-wcsspn.h: New file.
2778 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2780 * sysdeps/s390/multiarch/Makefile
2781 (sysdep_routines): Remove wcsrchr variants.
2782 * sysdeps/s390/Makefile (sysdep_routines): Add wcsrchr variants.
2783 * sysdeps/s390/multiarch/ifunc-impl-list.c
2784 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsrchr.
2785 * sysdeps/s390/multiarch/wcsrchr-c.c: Move to ...
2786 * sysdeps/s390/wcsrchr-c.c: ... here and adjust ifunc handling.
2787 * sysdeps/s390/multiarch/wcsrchr-vx.S: Move to ...
2788 * sysdeps/s390/wcsrchr-vx.S: ... here and adjust ifunc handling.
2789 * sysdeps/s390/multiarch/wcsrchr.c: Move to ...
2790 * sysdeps/s390/wcsrchr.c: ... here and adjust ifunc handling.
2791 * sysdeps/s390/ifunc-wcsrchr.h: New file.
2793 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2795 * sysdeps/s390/multiarch/Makefile
2796 (sysdep_routines): Remove wcschrnul variants.
2797 * sysdeps/s390/Makefile (sysdep_routines): Add wcschrnul variants.
2798 * sysdeps/s390/multiarch/ifunc-impl-list.c
2799 (__libc_ifunc_impl_list): Refactor ifunc handling for wcschrnul.
2800 * sysdeps/s390/multiarch/wcschrnul-c.c: Move to ...
2801 * sysdeps/s390/wcschrnul-c.c: ... here and adjust ifunc handling.
2802 * sysdeps/s390/multiarch/wcschrnul-vx.S: Move to ...
2803 * sysdeps/s390/wcschrnul-vx.S: ... here and adjust ifunc handling.
2804 * sysdeps/s390/multiarch/wcschrnul.c: Move to ...
2805 * sysdeps/s390/wcschrnul.c: ... here and adjust ifunc handling.
2806 * sysdeps/s390/ifunc-wcschrnul.h: New file.
2808 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2810 * sysdeps/s390/multiarch/Makefile
2811 (sysdep_routines): Remove wcschr variants.
2812 * sysdeps/s390/Makefile (sysdep_routines): Add wcschr variants.
2813 * sysdeps/s390/multiarch/ifunc-impl-list.c
2814 (__libc_ifunc_impl_list): Refactor ifunc handling for wcschr.
2815 * sysdeps/s390/multiarch/wcschr-c.c: Move to ...
2816 * sysdeps/s390/wcschr-c.c: ... here and adjust ifunc handling.
2817 * sysdeps/s390/multiarch/wcschr-vx.S: Move to ...
2818 * sysdeps/s390/wcschr-vx.S: ... here and adjust ifunc handling.
2819 * sysdeps/s390/multiarch/wcschr.c: Move to ...
2820 * sysdeps/s390/wcschr.c: ... here and adjust ifunc handling.
2821 * sysdeps/s390/ifunc-wcschr.h: New file.
2823 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2825 * sysdeps/s390/multiarch/Makefile
2826 (sysdep_routines): Remove wcsncmp variants.
2827 * sysdeps/s390/Makefile (sysdep_routines): Add wcsncmp variants.
2828 * sysdeps/s390/multiarch/ifunc-impl-list.c
2829 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsncmp.
2830 * sysdeps/s390/multiarch/wcsncmp-c.c: Move to ...
2831 * sysdeps/s390/wcsncmp-c.c: ... here and adjust ifunc handling.
2832 * sysdeps/s390/multiarch/wcsncmp-vx.S: Move to ...
2833 * sysdeps/s390/wcsncmp-vx.S: ... here and adjust ifunc handling.
2834 * sysdeps/s390/multiarch/wcsncmp.c: Move to ...
2835 * sysdeps/s390/wcsncmp.c: ... here and adjust ifunc handling.
2836 * sysdeps/s390/ifunc-wcsncmp.h: New file.
2838 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2840 * sysdeps/s390/multiarch/Makefile
2841 (sysdep_routines): Remove wcscmp variants.
2842 * sysdeps/s390/Makefile (sysdep_routines): Add wcscmp variants.
2843 * sysdeps/s390/multiarch/ifunc-impl-list.c
2844 (__libc_ifunc_impl_list): Refactor ifunc handling for wcscmp.
2845 * sysdeps/s390/multiarch/wcscmp-c.c: Move to ...
2846 * sysdeps/s390/wcscmp-c.c: ... here and adjust ifunc handling.
2847 * sysdeps/s390/multiarch/wcscmp-vx.S: Move to ...
2848 * sysdeps/s390/wcscmp-vx.S: ... here and adjust ifunc handling.
2849 * sysdeps/s390/multiarch/wcscmp.c: Move to ...
2850 * sysdeps/s390/wcscmp.c: ... here and adjust ifunc handling.
2851 * sysdeps/s390/ifunc-wcscmp.h: New file.
2853 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2855 * sysdeps/s390/multiarch/Makefile
2856 (sysdep_routines): Remove wcsncat variants.
2857 * sysdeps/s390/Makefile (sysdep_routines): Add wcsncat variants.
2858 * sysdeps/s390/multiarch/ifunc-impl-list.c
2859 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsncat.
2860 * sysdeps/s390/multiarch/wcsncat-c.c: Move to ...
2861 * sysdeps/s390/wcsncat-c.c: ... here and adjust ifunc handling.
2862 * sysdeps/s390/multiarch/wcsncat-vx.S: Move to ...
2863 * sysdeps/s390/wcsncat-vx.S: ... here and adjust ifunc handling.
2864 * sysdeps/s390/multiarch/wcsncat.c: Move to ...
2865 * sysdeps/s390/wcsncat.c: ... here and adjust ifunc handling.
2866 * sysdeps/s390/ifunc-wcsncat.h: New file.
2868 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2870 * sysdeps/s390/multiarch/Makefile
2871 (sysdep_routines): Remove wcscat variants.
2872 * sysdeps/s390/Makefile (sysdep_routines): Add wcscat variants.
2873 * sysdeps/s390/multiarch/ifunc-impl-list.c
2874 (__libc_ifunc_impl_list): Refactor ifunc handling for wcscat.
2875 * sysdeps/s390/multiarch/wcscat-c.c: Move to ...
2876 * sysdeps/s390/wcscat-c.c: ... here and adjust ifunc handling.
2877 * sysdeps/s390/multiarch/wcscat-vx.S: Move to ...
2878 * sysdeps/s390/wcscat-vx.S: ... here and adjust ifunc handling.
2879 * sysdeps/s390/multiarch/wcscat.c: Move to ...
2880 * sysdeps/s390/wcscat.c: ... here and adjust ifunc handling.
2881 * sysdeps/s390/ifunc-wcscat.h: New file.
2883 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2885 * sysdeps/s390/multiarch/Makefile
2886 (sysdep_routines): Remove wcpncpy variants.
2887 * sysdeps/s390/Makefile (sysdep_routines): Add wcpncpy variants.
2888 * sysdeps/s390/multiarch/ifunc-impl-list.c
2889 (__libc_ifunc_impl_list): Refactor ifunc handling for wcpncpy.
2890 * sysdeps/s390/multiarch/wcpncpy-c.c: Move to ...
2891 * sysdeps/s390/wcpncpy-c.c: ... here and adjust ifunc handling.
2892 * sysdeps/s390/multiarch/wcpncpy-vx.S: Move to ...
2893 * sysdeps/s390/wcpncpy-vx.S: ... here and adjust ifunc handling.
2894 * sysdeps/s390/multiarch/wcpncpy.c: Move to ...
2895 * sysdeps/s390/wcpncpy.c: ... here and adjust ifunc handling.
2896 * sysdeps/s390/ifunc-wcpncpy.h: New file.
2898 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2900 * sysdeps/s390/multiarch/Makefile
2901 (sysdep_routines): Remove wcsncpy variants.
2902 * sysdeps/s390/Makefile (sysdep_routines): Add wcsncpy variants.
2903 * sysdeps/s390/multiarch/ifunc-impl-list.c
2904 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsncpy.
2905 * sysdeps/s390/multiarch/wcsncpy-c.c: Move to ...
2906 * sysdeps/s390/wcsncpy-c.c: ... here and adjust ifunc handling.
2907 * sysdeps/s390/multiarch/wcsncpy-vx.S: Move to ...
2908 * sysdeps/s390/wcsncpy-vx.S: ... here and adjust ifunc handling.
2909 * sysdeps/s390/multiarch/wcsncpy.c: Move to ...
2910 * sysdeps/s390/wcsncpy.c: ... here and adjust ifunc handling.
2911 * sysdeps/s390/ifunc-wcsncpy.h: New file.
2913 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2915 * sysdeps/s390/multiarch/Makefile
2916 (sysdep_routines): Remove wcpcpy variants.
2917 * sysdeps/s390/Makefile (sysdep_routines): Add wcpcpy variants.
2918 * sysdeps/s390/multiarch/ifunc-impl-list.c
2919 (__libc_ifunc_impl_list): Refactor ifunc handling for wcpcpy.
2920 * sysdeps/s390/multiarch/wcpcpy-c.c: Move to ...
2921 * sysdeps/s390/wcpcpy-c.c: ... here and adjust ifunc handling.
2922 * sysdeps/s390/multiarch/wcpcpy-vx.S: Move to ...
2923 * sysdeps/s390/wcpcpy-vx.S: ... here and adjust ifunc handling.
2924 * sysdeps/s390/multiarch/wcpcpy.c: Move to ...
2925 * sysdeps/s390/wcpcpy.c: ... here and adjust ifunc handling.
2926 * sysdeps/s390/ifunc-wcpcpy.h: New file.
2928 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2930 * sysdeps/s390/multiarch/Makefile
2931 (sysdep_routines): Remove wcscpy variants.
2932 * sysdeps/s390/Makefile (sysdep_routines): Add wcscpy variants.
2933 * sysdeps/s390/multiarch/ifunc-impl-list.c
2934 (__libc_ifunc_impl_list): Refactor ifunc handling for wcscpy.
2935 * sysdeps/s390/multiarch/wcscpy-c.c: Move to ...
2936 * sysdeps/s390/wcscpy-c.c: ... here and adjust ifunc handling.
2937 * sysdeps/s390/multiarch/wcscpy-vx.S: Move to ...
2938 * sysdeps/s390/wcscpy-vx.S: ... here and adjust ifunc handling.
2939 * sysdeps/s390/multiarch/wcscpy.c: Move to ...
2940 * sysdeps/s390/wcscpy.c: ... here and adjust ifunc handling.
2941 * sysdeps/s390/ifunc-wcscpy.h: New file.
2943 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2945 * sysdeps/s390/multiarch/Makefile
2946 (sysdep_routines): Remove wcsnlen variants.
2947 * sysdeps/s390/Makefile (sysdep_routines): Add wcsnlen variants.
2948 * sysdeps/s390/multiarch/ifunc-impl-list.c
2949 (__libc_ifunc_impl_list): Refactor ifunc handling for wcsnlen.
2950 * sysdeps/s390/multiarch/wcsnlen-c.c: Move to ...
2951 * sysdeps/s390/wcsnlen-c.c: ... here and adjust ifunc handling.
2952 * sysdeps/s390/multiarch/wcsnlen-vx.S: Move to ...
2953 * sysdeps/s390/wcsnlen-vx.S: ... here and adjust ifunc handling.
2954 * sysdeps/s390/multiarch/wcsnlen.c: Move to ...
2955 * sysdeps/s390/wcsnlen.c: ... here and adjust ifunc handling.
2956 * sysdeps/s390/ifunc-wcsnlen.h: New file.
2958 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2960 * sysdeps/s390/multiarch/Makefile
2961 (sysdep_routines): Remove wcslen variants.
2962 * sysdeps/s390/Makefile (sysdep_routines): Add wcslen variants.
2963 * sysdeps/s390/multiarch/ifunc-impl-list.c
2964 (__libc_ifunc_impl_list): Refactor ifunc handling for wcslen.
2965 * sysdeps/s390/multiarch/wcslen-c.c: Move to ...
2966 * sysdeps/s390/wcslen-c.c: ... here and adjust ifunc handling.
2967 * sysdeps/s390/multiarch/wcslen-vx.S: Move to ...
2968 * sysdeps/s390/wcslen-vx.S: ... here and adjust ifunc handling.
2969 * sysdeps/s390/multiarch/wcslen.c: Move to ...
2970 * sysdeps/s390/wcslen.c: ... here and adjust ifunc handling.
2971 * sysdeps/s390/ifunc-wcslen.h: New file.
2973 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2975 * sysdeps/s390/multiarch/Makefile
2976 (sysdep_routines): Remove memrchr variants.
2977 * sysdeps/s390/Makefile (sysdep_routines): Add memrchr variants.
2978 * sysdeps/s390/multiarch/ifunc-impl-list.c
2979 (__libc_ifunc_impl_list): Refactor ifunc handling for memrchr.
2980 * sysdeps/s390/multiarch/memrchr-c.c: Move to ...
2981 * sysdeps/s390/memrchr-c.c: ... here and adjust ifunc handling.
2982 * sysdeps/s390/multiarch/memrchr-vx.S: Move to ...
2983 * sysdeps/s390/memrchr-vx.S: ... here and adjust ifunc handling.
2984 * sysdeps/s390/multiarch/memrchr.c: Move to ...
2985 * sysdeps/s390/memrchr.c: ... here and adjust ifunc handling.
2986 * sysdeps/s390/ifunc-memrchr.h: New file.
2988 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
2990 * sysdeps/s390/multiarch/Makefile
2991 (sysdep_routines): Remove memccpy variants.
2992 * sysdeps/s390/Makefile (sysdep_routines): Add memccpy variants.
2993 * sysdeps/s390/multiarch/ifunc-impl-list.c
2994 (__libc_ifunc_impl_list): Refactor ifunc handling for memccpy.
2995 * sysdeps/s390/multiarch/memccpy-c.c: Move to ...
2996 * sysdeps/s390/memccpy-c.c: ... here and adjust ifunc handling.
2997 * sysdeps/s390/multiarch/memccpy-vx.S: Move to ...
2998 * sysdeps/s390/memccpy-vx.S: ... here and adjust ifunc handling.
2999 * sysdeps/s390/multiarch/memccpy.c: Move to ...
3000 * sysdeps/s390/memccpy.c: ... here and adjust ifunc handling.
3001 * sysdeps/s390/ifunc-memccpy.h: New file.
3003 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3005 * sysdeps/s390/multiarch/Makefile
3006 (sysdep_routines): Remove rawmemchr variants.
3007 * sysdeps/s390/Makefile (sysdep_routines): Add rawmemchr variants.
3008 * sysdeps/s390/multiarch/ifunc-impl-list.c
3009 (__libc_ifunc_impl_list): Refactor ifunc handling for rawmemchr.
3010 * sysdeps/s390/multiarch/rawmemchr-c.c: Move to ...
3011 * sysdeps/s390/rawmemchr-c.c: ... here and adjust ifunc handling.
3012 * sysdeps/s390/multiarch/rawmemchr-vx.S: Move to ...
3013 * sysdeps/s390/rawmemchr-vx.S: ... here and adjust ifunc handling.
3014 * sysdeps/s390/multiarch/rawmemchr.c: Move to ...
3015 * sysdeps/s390/rawmemchr.c: ... here and adjust ifunc handling.
3016 * sysdeps/s390/ifunc-rawmemchr.h: New file.
3018 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3020 * sysdeps/s390/multiarch/Makefile
3021 (sysdep_routines): Remove memchr variants.
3022 * sysdeps/s390/Makefile (sysdep_routines): Add memchr variants.
3023 * sysdeps/s390/multiarch/ifunc-impl-list.c
3024 (__libc_ifunc_impl_list): Refactor ifunc handling for memchr.
3025 * sysdeps/s390/multiarch/memchr-vx.S: Move to ...
3026 * sysdeps/s390/memchr-vx.S: ... here and adjust ifunc handling.
3027 * sysdeps/s390/multiarch/memchr.c: Move to ...
3028 * sysdeps/s390/memchr.c: ... here and adjust ifunc handling.
3029 * sysdeps/s390/ifunc-memchr.h: New file.
3030 * sysdeps/s390/s390-64/memchr.S: Move to ...
3031 * sysdeps/s390/memchr-z900.S: ... here and adjust to be usable
3032 for 31/64bit and ifunc handling.
3033 * sysdeps/s390/s390-32/multiarch/memchr.c: Delete file.
3034 * sysdeps/s390/s390-64/multiarch/memchr.c: Likewise.
3035 * sysdeps/s390/s390-32/memchr.S: Likewise.
3037 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3039 * sysdeps/s390/multiarch/Makefile
3040 (sysdep_routines): Remove strcspn variants.
3041 * sysdeps/s390/Makefile (sysdep_routines): Add strcspn variants.
3042 * sysdeps/s390/multiarch/ifunc-impl-list.c
3043 (__libc_ifunc_impl_list): Refactor ifunc handling for strcspn.
3044 * sysdeps/s390/multiarch/strcspn-c.c: Move to ...
3045 * sysdeps/s390/strcspn-c.c: ... here and adjust ifunc handling.
3046 * sysdeps/s390/multiarch/strcspn-vx.S: Move to ...
3047 * sysdeps/s390/strcspn-vx.S: ... here and adjust ifunc handling.
3048 * sysdeps/s390/multiarch/strcspn.c: Move to ...
3049 * sysdeps/s390/strcspn.c: ... here and adjust ifunc handling.
3050 * sysdeps/s390/ifunc-strcspn.h: New file.
3052 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3054 * sysdeps/s390/multiarch/Makefile
3055 (sysdep_routines): Remove strpbrk variants.
3056 * sysdeps/s390/Makefile (sysdep_routines): Add strpbrk variants.
3057 * sysdeps/s390/multiarch/ifunc-impl-list.c
3058 (__libc_ifunc_impl_list): Refactor ifunc handling for strpbrk.
3059 * sysdeps/s390/multiarch/strpbrk-c.c: Move to ...
3060 * sysdeps/s390/strpbrk-c.c: ... here and adjust ifunc handling.
3061 * sysdeps/s390/multiarch/strpbrk-vx.S: Move to ...
3062 * sysdeps/s390/strpbrk-vx.S: ... here and adjust ifunc handling.
3063 * sysdeps/s390/multiarch/strpbrk.c: Move to ...
3064 * sysdeps/s390/strpbrk.c: ... here and adjust ifunc handling.
3065 * sysdeps/s390/ifunc-strpbrk.h: New file.
3067 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3069 * sysdeps/s390/multiarch/Makefile
3070 (sysdep_routines): Remove strspn variants.
3071 * sysdeps/s390/Makefile (sysdep_routines): Add strspn variants.
3072 * sysdeps/s390/multiarch/ifunc-impl-list.c
3073 (__libc_ifunc_impl_list): Refactor ifunc handling for strspn.
3074 * sysdeps/s390/multiarch/strspn-c.c: Move to ...
3075 * sysdeps/s390/strspn-c.c: ... here and adjust ifunc handling.
3076 * sysdeps/s390/multiarch/strspn-vx.S: Move to ...
3077 * sysdeps/s390/strspn-vx.S: ... here and adjust ifunc handling.
3078 * sysdeps/s390/multiarch/strspn.c: Move to ...
3079 * sysdeps/s390/strspn.c: ... here and adjust ifunc handling.
3080 * sysdeps/s390/ifunc-strspn.h: New file.
3082 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3084 * sysdeps/s390/multiarch/Makefile
3085 (sysdep_routines): Remove strrchr variants.
3086 * sysdeps/s390/Makefile (sysdep_routines): Add strrchr variants.
3087 * sysdeps/s390/multiarch/ifunc-impl-list.c
3088 (__libc_ifunc_impl_list): Refactor ifunc handling for strrchr.
3089 * sysdeps/s390/multiarch/strrchr-c.c: Move to ...
3090 * sysdeps/s390/strrchr-c.c: ... here and adjust ifunc handling.
3091 * sysdeps/s390/multiarch/strrchr-vx.S: Move to ...
3092 * sysdeps/s390/strrchr-vx.S: ... here and adjust ifunc handling.
3093 * sysdeps/s390/multiarch/strrchr.c: Move to ...
3094 * sysdeps/s390/strrchr.c: ... here and adjust ifunc handling.
3095 * sysdeps/s390/ifunc-strrchr.h: New file.
3097 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3099 * sysdeps/s390/multiarch/Makefile
3100 (sysdep_routines): Remove strchrnul variants.
3101 * sysdeps/s390/Makefile (sysdep_routines): Add strchrnul variants.
3102 * sysdeps/s390/multiarch/ifunc-impl-list.c
3103 (__libc_ifunc_impl_list): Refactor ifunc handling for strchrnul.
3104 * sysdeps/s390/multiarch/strchrnul-c.c: Move to ...
3105 * sysdeps/s390/strchrnul-c.c: ... here and adjust ifunc handling.
3106 * sysdeps/s390/multiarch/strchrnul-vx.S: Move to ...
3107 * sysdeps/s390/strchrnul-vx.S: ... here and adjust ifunc handling.
3108 * sysdeps/s390/multiarch/strchrnul.c: Move to ...
3109 * sysdeps/s390/strchrnul.c: ... here and adjust ifunc handling.
3110 * sysdeps/s390/ifunc-strchrnul.h: New file.
3112 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3114 * sysdeps/s390/multiarch/Makefile
3115 (sysdep_routines): Remove strchr variants.
3116 * sysdeps/s390/Makefile (sysdep_routines): Add strchr variants.
3117 * sysdeps/s390/multiarch/ifunc-impl-list.c
3118 (__libc_ifunc_impl_list): Refactor ifunc handling for strchr.
3119 * sysdeps/s390/multiarch/strchr-c.c: Move to ...
3120 * sysdeps/s390/strchr-c.c: ... here and adjust ifunc handling.
3121 * sysdeps/s390/multiarch/strchr-vx.S: Move to ...
3122 * sysdeps/s390/strchr-vx.S: ... here and adjust ifunc handling.
3123 * sysdeps/s390/multiarch/strchr.c: Move to ...
3124 * sysdeps/s390/strchr.c: ... here and adjust ifunc handling.
3125 * sysdeps/s390/ifunc-strchr.h: New file.
3127 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3129 * sysdeps/s390/multiarch/Makefile
3130 (sysdep_routines): Remove strncmp variants.
3131 * sysdeps/s390/Makefile (sysdep_routines): Add strncmp variants.
3132 * sysdeps/s390/multiarch/ifunc-impl-list.c
3133 (__libc_ifunc_impl_list): Refactor ifunc handling for strncmp.
3134 * sysdeps/s390/multiarch/strncmp-c.c: Move to ...
3135 * sysdeps/s390/strncmp-c.c: ... here and adjust ifunc handling.
3136 * sysdeps/s390/multiarch/strncmp-vx.S: Move to ...
3137 * sysdeps/s390/strncmp-vx.S: ... here and adjust ifunc handling.
3138 * sysdeps/s390/multiarch/strncmp.c: Move to ...
3139 * sysdeps/s390/strncmp.c: ... here and adjust ifunc handling.
3140 * sysdeps/s390/ifunc-strncmp.h: New file.
3142 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3144 * sysdeps/s390/multiarch/Makefile
3145 (sysdep_routines): Remove strcmp variants.
3146 * sysdeps/s390/Makefile (sysdep_routines): Add strcmp variants.
3147 * sysdeps/s390/multiarch/ifunc-impl-list.c
3148 (__libc_ifunc_impl_list): Refactor ifunc handling for strcmp.
3149 * sysdeps/s390/multiarch/strcmp-vx.S: Move to ...
3150 * sysdeps/s390/strcmp-vx.S: ... here and adjust ifunc handling.
3151 * sysdeps/s390/multiarch/strcmp.c: Move to ...
3152 * sysdeps/s390/strcmp.c: ... here and adjust ifunc handling.
3153 * sysdeps/s390/ifunc-strcmp.h: New file.
3154 * sysdeps/s390/s390-64/strcmp.S: Move to ...
3155 * sysdeps/s390/strcmp-z900.S: ... here and adjust to be usable
3156 for 31/64bit and ifunc handling.
3157 * sysdeps/s390/s390-32/multiarch/strcmp.c: Delete file.
3158 * sysdeps/s390/s390-64/multiarch/strcmp.c: Likewise.
3159 * sysdeps/s390/s390-32/strcmp.S: Likewise.
3161 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3163 * sysdeps/s390/multiarch/Makefile
3164 (sysdep_routines): Remove strncat variants.
3165 * sysdeps/s390/Makefile (sysdep_routines): Add strncat variants.
3166 * sysdeps/s390/multiarch/ifunc-impl-list.c
3167 (__libc_ifunc_impl_list): Refactor ifunc handling for strncat.
3168 * sysdeps/s390/multiarch/strncat-c.c: Move to ...
3169 * sysdeps/s390/strncat-c.c: ... here and adjust ifunc handling.
3170 * sysdeps/s390/multiarch/strncat-vx.S: Move to ...
3171 * sysdeps/s390/strncat-vx.S: ... here and adjust ifunc handling.
3172 * sysdeps/s390/multiarch/strncat.c: Move to ...
3173 * sysdeps/s390/strncat.c: ... here and adjust ifunc handling.
3174 * sysdeps/s390/ifunc-strncat.h: New file.
3176 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3178 * sysdeps/s390/multiarch/Makefile
3179 (sysdep_routines): Remove strcat variants.
3180 * sysdeps/s390/Makefile (sysdep_routines): Add strcat variants.
3181 * sysdeps/s390/multiarch/ifunc-impl-list.c
3182 (__libc_ifunc_impl_list): Refactor ifunc handling for strcat.
3183 * sysdeps/s390/multiarch/strcat-c.c: Move to ...
3184 * sysdeps/s390/strcat-c.c: ... here and adjust ifunc handling.
3185 * sysdeps/s390/multiarch/strcat-vx.S: Move to ...
3186 * sysdeps/s390/strcat-vx.S: ... here and adjust ifunc handling.
3187 * sysdeps/s390/multiarch/strcat.c: Move to ...
3188 * sysdeps/s390/strcat.c: ... here and adjust ifunc handling.
3189 * sysdeps/s390/ifunc-strcat.h: New file.
3191 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3193 * sysdeps/s390/multiarch/Makefile
3194 (sysdep_routines): Remove stpncpy variants.
3195 * sysdeps/s390/Makefile (sysdep_routines): Add stpncpy variants.
3196 * sysdeps/s390/multiarch/ifunc-impl-list.c
3197 (__libc_ifunc_impl_list): Refactor ifunc handling for stpncpy.
3198 * sysdeps/s390/multiarch/stpncpy-c.c: Move to ...
3199 * sysdeps/s390/stpncpy-c.c: ... here and adjust ifunc handling.
3200 * sysdeps/s390/multiarch/stpncpy-vx.S: Move to ...
3201 * sysdeps/s390/stpncpy-vx.S: ... here and adjust ifunc handling.
3202 * sysdeps/s390/multiarch/stpncpy.c: Move to ...
3203 * sysdeps/s390/stpncpy.c: ... here and adjust ifunc handling.
3204 * sysdeps/s390/ifunc-stpncpy.h: New file.
3206 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3208 * sysdeps/s390/multiarch/Makefile
3209 (sysdep_routines): Remove strncpy variants.
3210 * sysdeps/s390/Makefile (sysdep_routines): Add strncpy variants.
3211 * sysdeps/s390/multiarch/ifunc-impl-list.c
3212 (__libc_ifunc_impl_list): Refactor ifunc handling for strncpy.
3213 * sysdeps/s390/multiarch/strncpy-vx.S: Move to ...
3214 * sysdeps/s390/strncpy-vx.S: ... here and adjust ifunc handling.
3215 * sysdeps/s390/multiarch/strncpy.c: Move to ...
3216 * sysdeps/s390/strncpy.c: ... here and adjust ifunc handling.
3217 * sysdeps/s390/ifunc-strncpy.h: New file.
3218 * sysdeps/s390/s390-64/strncpy.S: Move to ...
3219 * sysdeps/s390/s390-64/strncpy-z900.S: ... here
3220 and adjust ifunc handling.
3221 * sysdeps/s390/s390-32/strncpy.S: Move to ...
3222 * sysdeps/s390/s390-32/strncpy-z900.S: ... here
3223 and adjust ifunc handling.
3224 * sysdeps/s390/s390-32/multiarch/strncpy.c: Delete file.
3225 * sysdeps/s390/s390-64/multiarch/strncpy.c: Likewise.
3227 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3229 * sysdeps/s390/multiarch/Makefile
3230 (sysdep_routines): Remove stpcpy variants.
3231 * sysdeps/s390/Makefile (sysdep_routines): Add stpcpy variants.
3232 * sysdeps/s390/multiarch/ifunc-impl-list.c
3233 (__libc_ifunc_impl_list): Refactor ifunc handling for stpcpy.
3234 * sysdeps/s390/multiarch/stpcpy-c.c: Move to ...
3235 * sysdeps/s390/stpcpy-c.c: ... here and adjust ifunc handling.
3236 * sysdeps/s390/multiarch/stpcpy-vx.S: Move to ...
3237 * sysdeps/s390/stpcpy-vx.S: ... here and adjust ifunc handling.
3238 * sysdeps/s390/multiarch/stpcpy.c: Move to ...
3239 * sysdeps/s390/stpcpy.c: ... here and adjust ifunc handling.
3240 * sysdeps/s390/ifunc-stpcpy.h: New file.
3242 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3244 * sysdeps/s390/multiarch/Makefile
3245 (sysdep_routines): Remove strcpy variants.
3246 * sysdeps/s390/Makefile (sysdep_routines): Add strcpy variants.
3247 * sysdeps/s390/multiarch/ifunc-impl-list.c
3248 (__libc_ifunc_impl_list): Refactor ifunc handling for strcpy.
3249 * sysdeps/s390/multiarch/strcpy-vx.S: Move to ...
3250 * sysdeps/s390/strcpy-vx.S: ... here and adjust ifunc handling.
3251 * sysdeps/s390/multiarch/strcpy.c: Move to ...
3252 * sysdeps/s390/strcpy.c: ... here and adjust ifunc handling.
3253 * sysdeps/s390/ifunc-strcpy.h: New file.
3254 * sysdeps/s390/s390-64/strcpy.S: Move to ...
3255 * sysdeps/s390/strcpy-z900.S: ... here and adjust to be usable
3256 for 31/64bit and ifunc handling.
3257 * sysdeps/s390/s390-32/multiarch/strcpy.c: Delete file.
3258 * sysdeps/s390/s390-64/multiarch/strcpy.c: Likewise.
3259 * sysdeps/s390/s390-32/strcpy.S: Likewise.
3261 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3263 * sysdeps/s390/multiarch/Makefile
3264 (sysdep_routines): Remove strnlen variants.
3265 * sysdeps/s390/Makefile (sysdep_routines): Add strnlen variants.
3266 * sysdeps/s390/multiarch/ifunc-impl-list.c
3267 (__libc_ifunc_impl_list): Refactor ifunc handling for strnlen.
3268 * sysdeps/s390/multiarch/strnlen-c.c: Move to ...
3269 * sysdeps/s390/strnlen-c.c: ... here and adjust ifunc handling.
3270 * sysdeps/s390/multiarch/strnlen-vx.S: Move to ...
3271 * sysdeps/s390/strnlen-vx.S: ... here and adjust ifunc handling.
3272 * sysdeps/s390/multiarch/strnlen.c: Move to ...
3273 * sysdeps/s390/strnlen.c: ... here and adjust ifunc handling.
3274 * sysdeps/s390/ifunc-strnlen.h: New file.
3276 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3278 * sysdeps/s390/multiarch/Makefile
3279 (sysdep_routines): Remove strlen variants.
3280 * sysdeps/s390/Makefile (sysdep_routines): Add strlen variants.
3281 * sysdeps/s390/multiarch/ifunc-impl-list.c
3282 (__libc_ifunc_impl_list): Refactor ifunc handling for strlen.
3283 * sysdeps/s390/multiarch/strlen-c.c: Move to ...
3284 * sysdeps/s390/strlen-c.c: ... here and adjust ifunc handling.
3285 * sysdeps/s390/multiarch/strlen-vx.S: Move to ...
3286 * sysdeps/s390/strlen-vx.S: ... here and adjust ifunc handling.
3287 * sysdeps/s390/multiarch/strlen.c: Move to ...
3288 * sysdeps/s390/strlen.c: ... here and adjust ifunc handling.
3289 * sysdeps/s390/ifunc-strlen.h: New file.
3291 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3293 * sysdeps/s390/Makefile (sysdep_routines): Add memmem variants.
3294 * sysdeps/s390/multiarch/ifunc-impl-list.c
3295 (__libc_ifunc_impl_list): Add ifunc variants for memmem.
3296 * sysdeps/s390/ifunc-memmem.h: New file.
3297 * sysdeps/s390/memmem.c: Likewise.
3298 * sysdeps/s390/memmem-c.c: Likewise.
3299 * sysdeps/s390/memmem-vx.c: Likewise.
3301 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3303 * sysdeps/s390/Makefile (sysdep_routines): Add strstr variants.
3304 * sysdeps/s390/multiarch/ifunc-impl-list.c
3305 (__libc_ifunc_impl_list): Add ifunc variants for strstr.
3306 * sysdeps/s390/ifunc-strstr.h: New file.
3307 * sysdeps/s390/strstr.c: Likewise.
3308 * sysdeps/s390/strstr-c.c: Likewise.
3309 * sysdeps/s390/strstr-vx.c: Likewise.
3311 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3313 * sysdeps/s390/Makefile (sysdep_routines): Add memmove-c.
3314 * sysdeps/s390/ifunc-memcpy.h (HAVE_MEMMOVE_IFUNC,
3315 HAVE_MEMMOVE_IFUNC_AND_VX_SUPPORT, MEMMOVE_DEFAULT,
3316 HAVE_MEMMOVE_C, MEMMOVE_C, HAVE_MEMMOVE_Z13, MEMMOVE_Z13):
3318 * sysdeps/s390/memcpy-z900.S: Add z13 memmove implementation.
3319 * sysdeps/s390/memmove-c.c: New file.
3320 * sysdeps/s390/memmove.c: Likewise.
3321 * sysdeps/s390/multiarch/ifunc-impl-list.c
3322 (__libc_ifunc_impl_list): Add ifunc variants for memmove.
3324 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3326 * config.h.in (HAVE_S390_MIN_Z13_ZARCH_ASM_SUPPORT): New undefine.
3327 * sysdeps/s390/configure.ac: Add check for z13 support.
3328 * sysdeps/s390/configure: Regenerated.
3330 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3332 * sysdeps/s390/memcopy.h: New file.
3334 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3336 * sysdeps/s390/s390-32/bcopy.S: Remove.
3337 * sysdeps/s390/s390-64/bcopy.S: Likewise.
3339 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3341 * sysdeps/s390/ifunc-memcpy.h: New File.
3342 * sysdeps/s390/memcpy.S: Move to ...
3343 * sysdeps/s390/memcpy-z900.S ... here.
3344 Move implementations from memcpy-s390x.s to here.
3345 * sysdeps/s390/multiarch/memcpy-s390x.S: Delete File.
3346 * sysdeps/s390/multiarch/Makefile (sysdep_routines):
3347 Remove memcpy/mempcpy variants.
3348 * sysdeps/s390/Makefile (sysdep_routines):
3349 Add memcpy/mempcpy variants.
3350 * sysdeps/s390/multiarch/ifunc-impl-list.c
3351 (__libc_ifunc_impl_list): Adjust ifunc variants for
3353 * sysdeps/s390/multiarch/memcpy.c: Move ifunc resolver
3355 * sysdeps/s390/memcpy.c: ... here.
3356 Adjust ifunc variants for memcpy.
3357 * sysdeps/s390/multiarch/mempcpy.c: Move to ...
3358 * sysdeps/s390/mempcpy.c: ... here.
3359 Adjust ifunc variants for mempcpy.
3360 * sysdeps/s390/mempcpy.S: Delete file.
3362 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3364 * sysdeps/s390/s390-64/memcpy.S: Move to ...
3365 * sysdeps/s390/memcpy.S: ... here.
3366 Adjust to be usable for 31/64bit.
3367 * sysdeps/s390/s390-32/memcpy.S: Delete File.
3368 * sysdeps/s390/multiarch/Makefile (sysdep_routines): Add memcpy.
3369 * sysdeps/s390/s390-32/multiarch/Makefile: Delete file.
3370 * sysdeps/s390/s390-64/multiarch/Makefile: Likewise.
3371 * sysdeps/s390/s390-64/multiarch/memcpy-s390x.S: Move to ...
3372 * sysdeps/s390/multiarch/memcpy-s390x.S: ... here.
3373 Adjust to be usable for 31/64bit.
3374 * sysdeps/s390/s390-32/multiarch/memcpy-s390.S: Delete File.
3375 * sysdeps/s390/s390-64/multiarch/memcpy.c: Move to ...
3376 * sysdeps/s390/multiarch/memcpy.c: ... here.
3377 * sysdeps/s390/s390-32/multiarch/memcpy.c: Delete File.
3379 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3381 * sysdeps/s390/ifunc-memcmp.h: New File.
3382 * sysdeps/s390/memcmp.S: Move to ...
3383 * sysdeps/s390/memcmp-z900.S ... here.
3384 Move implementations from memcmp-s390x.s to here.
3385 * sysdeps/s390/multiarch/memcmp-s390x.S: Delete File.
3386 * sysdeps/s390/multiarch/Makefile (sysdep_routines):
3387 Remove memcmp variants.
3388 * sysdeps/s390/Makefile (sysdep_routines):
3389 Add memcmp variants.
3390 * sysdeps/s390/multiarch/ifunc-impl-list.c
3391 (__libc_ifunc_impl_list): Adjust ifunc variants for
3393 * sysdeps/s390/multiarch/memcmp.c: Move ifunc resolver
3395 * sysdeps/s390/memcmp.c: ... here.
3396 Adjust ifunc variants for memcmp.
3398 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3400 * sysdeps/s390/s390-64/memcmp.S: Move to ...
3401 * sysdeps/s390/memcmp.S: ... here.
3402 Adjust to be usable for 31/64bit.
3403 * sysdeps/s390/s390-32/memcmp.S: Delete File.
3404 * sysdeps/s390/multiarch/Makefile (sysdep_routines): Add memcmp.
3405 * sysdeps/s390/s390-32/multiarch/Makefile (sysdep_routines):
3407 * sysdeps/s390/s390-64/multiarch/Makefile: Likewise.
3408 * sysdeps/s390/s390-64/multiarch/memcmp-s390x.S: Move to ...
3409 * sysdeps/s390/multiarch/memcmp-s390x.S: ... here.
3410 Adjust to be usable for 31/64bit.
3411 * sysdeps/s390/s390-32/multiarch/memcmp-s390.S: Delete File.
3412 * sysdeps/s390/s390-64/multiarch/memcmp.c: Move to ...
3413 * sysdeps/s390/multiarch/memcmp.c: ... here.
3414 * sysdeps/s390/s390-32/multiarch/memcmp.c: Delete File.
3416 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3418 * sysdeps/s390/s390-32/bzero.S: Delete file.
3419 * sysdeps/s390/s390-64/bzero.S: Likewise.
3420 * sysdeps/s390/Makefile (sysdep_routines): Add bzero.
3421 * sysdeps/s390/bzero.c: New file.
3422 * sysdeps/s390/memset-z900.S: Add bzero entry points.
3423 * sysdeps/s390/ifunc-memset.h: Add bzero function macros.
3424 * sysdeps/s390/multiarch/ifunc-impl-list.c
3425 (__libc_ifunc_impl_list): Add bzero ifunc variants.
3427 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3429 * sysdeps/s390/ifunc-memset.h: New File.
3430 * sysdeps/s390/memset.S: Move to ...
3431 * sysdeps/s390/memset-z900.S ... here.
3432 Move implementations from memset-s390x.s to here.
3433 * sysdeps/s390/multiarch/memset-s390x.S: Delete File.
3434 * sysdeps/s390/multiarch/Makefile (sysdep_routines):
3435 Remove memset variants.
3436 * sysdeps/s390/Makefile (sysdep_routines):
3437 Add memset variants.
3438 * sysdeps/s390/multiarch/ifunc-impl-list.c
3439 (__libc_ifunc_impl_list): Adjust ifunc variants for
3441 * sysdeps/s390/multiarch/memset.c: Move ifunc resolver
3443 * sysdeps/s390/memset.c: ... here.
3444 Adjust ifunc variants for memset.
3446 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3448 * sysdeps/s390/s390-64/memset.S: Move to ...
3449 * sysdeps/s390/memset.S: ... here.
3450 Adjust to be usable for 31/64bit.
3451 * sysdeps/s390/s390-32/memset.S: Delete File.
3452 * sysdeps/s390/multiarch/Makefile (sysdep_routines): Add memset.
3453 * sysdeps/s390/s390-32/multiarch/Makefile (sysdep_routines):
3455 * sysdeps/s390/s390-64/multiarch/Makefile: Likewise.
3456 * sysdeps/s390/s390-64/multiarch/memset-s390x.S: Move to ...
3457 * sysdeps/s390/multiarch/memset-s390x.S: ... here.
3458 Adjust to be usable for 31/64bit.
3459 * sysdeps/s390/s390-32/multiarch/memset-s390.S: Delete File.
3460 * sysdeps/s390/s390-64/multiarch/memset.c: Move to ...
3461 * sysdeps/s390/multiarch/memset.c: ... here.
3462 * sysdeps/s390/s390-32/multiarch/memset.c: Delete File.
3464 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3466 * sysdeps/s390/multiarch/ifunc-resolve.h
3467 (s390_libc_ifunc_init, s390_libc_ifunc,
3468 s390_vx_libc_ifunc2_redirected): Use hwcap instead of dl_hwcap.
3470 2018-12-18 Stefan Liebler <stli@linux.ibm.com>
3472 * config.h.in (HAVE_S390_MIN_Z10_ZARCH_ASM_SUPPORT): New undefine.
3473 * sysdeps/s390/configure.ac: Add check for z10 support.
3474 * sysdeps/s390/configure: Regenerated.
3476 2018-12-18 H.J. Lu <hongjiu.lu@intel.com>
3478 * sysdeps/i386/atomic-machine.h: Merged with ...
3479 * sysdeps/x86_64/atomic-machine.h: To ...
3480 * sysdeps/x86/atomic-machine.h: This. New file.
3482 2018-12-18 Florian Weimer <fweimer@redhat.com>
3484 Rewrite locale/gen-translit.pl in Python.
3485 * locale/Makefile (generated): Add C-translit.h.
3486 (before-compile): Add $(objpfx)C-translit.h.
3487 (C-translit.h): Move to $(objpfx). Create target directory.
3488 Build using Python script.
3489 * locale/gen-translit.py: New file.
3490 * locale/gen-translit.pl: Remove file.
3491 * locale/C-translit.h.in: Change comment character to '#' for
3492 easier parsing without a C preprocessor.
3493 * locale/C-translit.h: Remove generated file.
3494 * manual/install.texi (Tools for Compilation): Do not mention
3496 * scripts/build-many-glibcs.py (Context.fix_glibc_timestamps):
3497 Remove locale/C-translit.h.
3498 * scripts/update-copyrights: Likewise.
3499 * INSTALL: Regenerate.
3501 2018-12-18 Florian Weimer <fweimer@redhat.com>
3504 * localedata/locales/bi_VU: Remove executable bit from file.
3506 2018-12-17 Albert ARIBAUD <albert.aribaud@3adev.fr>
3509 (__localtime64): Add.
3510 * manual/maint.texi: Document Y2038 symbol handling.
3512 (__localtime64): Add.
3513 [__TIMESIZE != 64] (__localtime): Turn into a wrapper.
3515 2018-12-17 Joseph Myers <joseph@codesourcery.com>
3517 * sysdeps/unix/sysv/linux/ia64/sysdep.h (ASM_CLOBBERS_6_COMMON):
3520 * scripts/glibcextract.py (compare_macro_consts): Take parameters
3521 to allow extra macros from first or second sources.
3522 * sysdeps/unix/sysv/linux/tst-mman-consts.py: New file.
3523 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
3524 (tests-special): Add $(objpfx)tst-mman-consts.out.
3525 ($(objpfx)tst-mman-consts.out): New makefile target.
3527 2018-12-17 Mao Han <han_mao@c-sky.com>
3529 * sysdeps/unix/sysv/linux/Makefile: Add statx_cp.c.
3530 * sysdeps/unix/sysv/linux/fxstat64.c: Add conditionals for kernel
3531 without stat64 system call support.
3532 * sysdeps/unix/sysv/linux/fxstatat64.c: Likewise.
3533 * sysdeps/unix/sysv/linux/generic/wordsize-32/fxstat.c: Likewise.
3534 * sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c: Likewise.
3535 * sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat.c: Likewise.
3536 * sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat64.c: Likewise.
3537 * sysdeps/unix/sysv/linux/generic/wordsize-32/xstat.c: Likewise.
3538 * sysdeps/unix/sysv/linux/generic/wordsize-32/xstat64.c: Likewise.
3539 * sysdeps/unix/sysv/linux/mips/mips64/statx_cp.c: New file.
3540 * sysdeps/unix/sysv/linux/statx_cp.c: Likewise.
3541 * sysdeps/unix/sysv/linux/statx_cp.h: Likewise.
3542 * sysdeps/unix/sysv/linux/wordsize-64/statx_cp.c: Likewise.
3544 2018-12-15 Paul Eggert <eggert@cs.ucla.edu>
3546 regex: fix storage-exhaustion error
3548 * posix/regexec.c (get_subexp):
3549 Do not continue if storage is exhausted.
3551 2018-12-15 Assaf Gordon <assafgordon@gmail.com>
3553 regex: fix heap-use-after-free error
3555 Problem reported by Saito Takaaki <tails.saito@gmail.com> in
3556 https://debbugs.gnu.org/32592
3557 Call stack get_subexp->get_subexp_sub->clean_state_log_if_needed may
3558 call extend_buffers which reallocates the re_string_t internal buffer.
3559 Local variable 'buf' was not updated in such case, resulting in
3561 * posix/regexec.c (get_subexp): Update 'buf' after call to
3564 2018-12-15 Florian Weimer <fweimer@redhat.com>
3566 * support/blob_repeat.c (check_mul_overflow_size_t): New function.
3567 (minimum_stride_size): Use it.
3568 (support_blob_repeat_allocate): Likewise.
3570 2018-12-14 Joseph Myers <joseph@codesourcery.com>
3572 * sysdeps/x86/fpu/bits/mathinline.h (asinh): Remove inline
3577 2018-12-14 Florian Weimer <fweimer@redhat.com>
3579 * manual/process.texi (Process Creation Concepts): Remove
3580 documentation of process (ID) lifetime. List more process
3581 creation functions. Reference Process Identification section.
3582 (Process Identification): Add information about process ID
3583 lifetime. Describe Linux thread/task IDs.
3584 * manual/signal.texi (Signaling Another Process): Mention that the
3585 signal is always sent to the process.
3587 2018-12-14 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3589 * misc/Makefile (tests): Remove tst-efgcvt. Add tst-dbl-efgcvt
3590 and tst-ldbl-efgcvt.
3591 * misc/tst-efgcvt.c: Renamed to misc/tst-efgcvt-template.c.
3592 * misc/tst-efgcvt-template.c: Renamed from misc/tst-efgcvt.c.
3593 (struct testcase, efcvt_func, efcvt_r_func, ecvt_tests)
3594 (fcvt_tests, output_error, output_r_error, do_test): Use the
3595 macros defined in tst-dbl-efgcvt.c and tst-ldbl-efgcvt.c to:
3596 select the type of floating-point variables and arguments; to
3597 produce extra tests for double and conversion specifiers for
3598 printf; and to set the names of called functions.
3599 * misc/tst-dbl-efgcvt.c: New file that defines the macros used
3600 in tst-efgcvt-template.c.
3601 * misc/tst-ldbl-efgcvt.c: Likewise.
3603 2018-12-14 Stefan Liebler <stli@linux.ibm.com>
3605 * nss/Makefile (tst-nss-test3.out): New rule.
3607 2018-12-13 Joseph Myers <joseph@codesourcery.com>
3609 * sysdeps/mach/hurd/i386/init-first.c (_hurd_stack_setup): Do not
3612 2018-12-13 fanjinke <fanjinke@hygon.cn>
3614 * sysdeps/x86/cpu-features.c (init_cpu_features): Check for
3617 2018-12-13 Andreas Schwab <schwab@suse.de>
3620 * nptl/pthread_rwlock_common.c: Reindent. Fix typos.
3621 (__pthread_rwlock_rdlock_full): Update expected value for
3622 __readers while waiting on PTHREAD_RWLOCK_RWAITING.
3623 * nptl/tst-rwlock-pwn.c: New file.
3624 * nptl/Makefile (tests): Add tst-rwlock-pwn.
3626 2018-12-12 Joseph Myers <joseph@codesourcery.com>
3628 * sysdeps/x86/fpu/bits/mathinline.h (hypot): Remove inline
3631 2018-12-12 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
3633 * benchtests/scripts/compare_bench.py (do_compare): write to
3634 stderr in casestat is not present.
3635 * benchtests/scripts/compare_bench.py (plot_graphs): write to
3636 stderr in case timings field is not present. Also string showing
3637 the output filename goes into the stderr.
3639 2018-12-12 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
3641 * benchtests/scripts/compare_bench.py (do_compare): Catch KeyError
3642 and ZeroDivisorError exceptions.
3643 * benchtests/scripts/compare_bench.py (compare_runs): Use stats
3644 argument to loop through user provided statistics.
3645 * benchtests/scripts/compare_bench.py (main): Include the --stats
3648 2018-12-12 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
3650 * benchtests/scripts/compare_bench.py (compare_runs): Continue
3653 2018-12-12 Florian Weimer <fweimer@redhat.com>
3655 * sysdeps/posix/timespec_get.c: Add missing “any later version”
3656 clause to copyright header.
3658 2018-12-12 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
3661 * sysdeps/powerpc/powerpc64/addmul_1.S (FUNC): Add CFI offset for
3662 registers saved in the stack frame.
3663 * sysdeps/powerpc/powerpc64/lshift.S (__mpn_lshift): Likewise.
3664 * sysdeps/powerpc/powerpc64/mul_1.S (__mpn_mul_1): Likewise.
3666 2018-12-11 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3668 * include/bits/monetary-ldbl.h: New file.
3669 * include/bits/printf-ldbl.h: Likewise.
3670 * include/bits/stdio-ldbl.h: Likewise.
3671 * include/bits/stdlib-ldbl.h: Likewise.
3672 * include/bits/syslog-ldbl.h: Likewise.
3673 * include/bits/wchar-ldbl.h: Likewise.
3675 2018-12-11 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3677 * libio/libio.h: Remove redirection for _IO_vfprintf.
3679 2018-12-11 Andreas Schwab <schwab@suse.de>
3681 * Makerules: Remove all references to abilist-pattern.
3682 (update-all-abi): Simplify find expression.
3684 2018-12-11 Szabolcs Nagy <szabolcs.nagy@arm.com>
3687 * math/auto-libm-test-in: Add new test case.
3688 * math/auto-libm-test-out-pow: Regenerated.
3689 * sysdeps/ieee754/flt-32/e_powf.c (__powf): Fix overflow check.
3691 2018-12-10 DJ Delorie <dj@redhat.com>
3694 * support/test-container.c: Move postclean step to before we
3697 2018-12-10 Joseph Myers <joseph@codesourcery.com>
3699 * scripts/gen-as-const.py (main): Handle --python option.
3700 * scripts/gen-py-const.awk: Remove.
3701 * Makerules (py-const-script): Use gen-as-const.py.
3702 ($(py-const)): Likewise.
3703 * nptl/nptl-printers.py (MutexPrinter.read_status_no_robust): Mask
3704 with 0xffffffff together with ~(PTHREAD_MUTEX_PRIO_CEILING_MASK).
3705 (MutexAttributesPrinter.read_values): Mask with 0xffffffff
3706 together with ~PTHREAD_MUTEXATTR_FLAG_BITS and
3707 ~PTHREAD_MUTEX_NO_ELISION_NP.
3708 * manual/README.pretty-printers: Update reference to
3711 * scripts/glibcextract.py: New file.
3712 * scripts/gen-as-const.py: Do not import os.path, re, subprocess
3713 or tempfile. Import glibcexctract.
3714 (compute_c_consts): Remove. Moved to glibcextract.py.
3715 (gen_test): Update reference to compute_c_consts.
3717 * sysdeps/unix/sysv/linux/tst-signal-numbers.py: New file.
3718 * sysdeps/unix/sysv/linux/tst-signal-numbers.sh: Remove.
3719 * sysdeps/unix/sysv/linux/Makefile
3720 ($(objpfx)tst-signal-numbers.out): Use tst-signal-numbers.py.
3721 Redirect stderr as well as stdout.
3723 2018-12-10 Rafael Ávila de Espíndola <rafael@espindo.la>
3726 * sysdeps/unix/sysv/linux/mips/init-first.c: Remove #ifdef SHARED.
3727 * sysdeps/unix/sysv/linux/mips/libc-vdso.h: Remove #ifdef SHARED.
3728 * sysdeps/unix/sysv/linux/mips/mips32/sysdep.h: Define
3729 ALWAYS_USE_VSYSCALL.
3730 * sysdeps/unix/sysv/linux/mips/mips64/n32/sysdep.h: Define
3731 ALWAYS_USE_VSYSCALL.
3732 * sysdeps/unix/sysv/linux/mips/mips64/n64/sysdep.h: Define
3733 ALWAYS_USE_VSYSCALL.
3735 2018-12-10 Florian Weimer <fweimer@redhat.com>
3738 * sysdeps/unix/sysv/linux/getdents64.c (handle_overflow): Check
3739 offset instead of count for clarity. Fix typo in comment.
3740 (__old_getdents64): Keep track of previous offset. Use it to call
3742 * sysdeps/unix/sysv/linux/tst-readdir64-compat.c (do_test): Check
3743 that d_off is never zero.
3745 2018-12-10 Andreas Schwab <schwab@suse.de>
3747 * sysdeps/unix/sysv/linux/powerpc/powerpc64/*-le.abilist: Move to
3748 sysdeps/unix/sysv/linux/powerpc/powerpc64/le/*.abilist.
3749 * sysdeps/unix/sysv/linux/powerpc/powerpc64/*.abilist: Move to
3750 sysdeps/unix/sysv/linux/powerpc/powerpc64/be/*.abilist.
3751 * sysdeps/powerpc/Makefile (abilist-pattern): Don't define.
3753 2018-12-10 Joseph Myers <joseph@codesourcery.com>
3755 * timezone/private.h: Update from tzcode 2018g.
3756 * timezone/tzfile.h: Likewise.
3757 * timezone/tzselect.ksh: Likewise.
3758 * timezone/zdump.c: Likewise.
3759 * timezone/zic.c: Likewise.
3761 2018-12-08 Paul Pluzhnikov <ppluzhnikov@google.com>
3764 * sysdeps/unix/sysv/linux/x86/tst-cet-property-2.c
3765 (do_test): Adjust buffer size and fix format.
3767 2018-12-07 DJ Delorie <dj@redhat.com>
3770 * malloc/tst-tcfree3.c: New.
3771 * malloc/Makefile: Add it.
3773 2018-12-07 H.J. Lu <hongjiu.lu@intel.com>
3775 * include/sched.h (__getcpu): Don't use __typeof__ (getcpu).
3777 2018-12-07 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3779 * libio/libioP.h (SCANF_LDBL_USES_FLOAT128): New macro to be
3780 used as a mask for the mode argument of __vfscanf_internal and
3781 __vfwscanf_internal.
3782 * stdio-common/vfscanf-internal.c
3783 [defined COMPILE_WSCANF && __HAVE_FLOAT128_UNLIKE_LDBL]
3784 (__strtof128_internal): Define to __wcstof128_internal.
3785 [__HAVE_FLOAT128_UNLIKE_LDBL] (__vfscanf_internal): Call
3786 __strtof128_internal or __wcstof128_internal when the format of
3787 long double is the same as _Float128.
3789 2018-12-05 Samuel Thibault <samuel.thibault@ens-lyon.org>
3791 * include/unistd.h (__confstr): Add prototype and hidden prototype.
3792 * posix/confstr.c (confstr): Rename to __confstr.
3793 (__confstr): Add hidden def.
3794 (confstr): Add weak alias for __confstr.
3795 * sysdeps/mach/hurd/spawni.c (__spawni): Call __confstr instead of
3798 2018-12-07 H.J. Lu <hongjiu.lu@intel.com>
3800 * NEWS: Mention getcpu.
3801 * include/sched.h (__getcpu): New libc_hidden_proto.
3802 * manual/resource.texi: Document getcpu.
3803 * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add getcpu.
3804 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.29): Add getcpu.
3805 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Add getcpu.
3806 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
3807 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
3808 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
3809 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
3810 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
3811 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
3812 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
3813 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
3814 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
3815 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist:
3817 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
3818 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
3819 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
3820 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
3822 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
3824 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist:
3826 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist:
3828 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist: Likewise.
3829 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
3830 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
3831 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
3832 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
3833 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
3834 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
3835 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
3836 * sysdeps/unix/sysv/linux/bits/sched.h (getcpu): New prototype.
3837 * sysdeps/unix/sysv/linux/getcpu.c: New file.
3838 * sysdeps/unix/sysv/linux/tst-skeleton-affinity.c (test_size):
3841 2018-12-07 Samuel Thibault <samuel.thibault@ens-lyon.org>
3843 * sysdeps/mach/hurd/spawni.c (child_lookup_under, child_fchdir): New
3845 (__spawni): Handle spawn_do_fchdir by calling child_fchdir.
3847 2018-12-07 Florian Weimer <fweimer@redhat.com>
3850 * posix/Makefile (routines): Add spawn_faction_addfchdir.
3851 * posix/Versions (GLIBC_2.29): Export
3852 posix_spawn_file_actions_addfchdir_np.
3853 * posix/spawn.h (posix_spawn_file_actions_addfchdir_np): Declare.
3854 * posix/spawn_faction_destroy.c
3855 (__posix_spawn_file_actions_destroy): Handle spawn_do_fchdir.
3856 * posix/spawn_int.h (struct __spawn_action): Add spawn_do_fchdir
3857 and the field action.fchdir_action.
3858 * posix/tst-spawn-chdir.c (add_chdir): New function.
3859 (do_test): Add do_fchdir loop. Call add_chdir.
3860 * sysdeps/posix/spawni.c (__spawni_child): Handle spawn_do_fchdir.
3861 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Likewise.
3862 * sysdeps/mach/hurd/i386/libc.abilist (GLIBC_2.29): Add
3863 posix_spawn_file_actions_addfchdir_np.
3864 * sysdeps/unix/sysv/linux/aarch64/libc.abilist (GLIBC_2.29):
3866 * sysdeps/unix/sysv/linux/alpha/libc.abilist (GLIBC_2.29):
3868 * sysdeps/unix/sysv/linux/arm/libc.abilist (GLIBC_2.29): Likewise.
3869 * sysdeps/unix/sysv/linux/hppa/libc.abilist (GLIBC_2.29):
3871 * sysdeps/unix/sysv/linux/i386/libc.abilist (GLIBC_2.29):
3873 * sysdeps/unix/sysv/linux/ia64/libc.abilist (GLIBC_2.29):
3875 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist (GLIBC_2.29):
3877 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist (GLIBC_2.29):
3879 * sysdeps/unix/sysv/linux/microblaze/libc.abilist (GLIBC_2.29):
3881 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist
3882 (GLIBC_2.29): Likewise.
3883 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist
3884 (GLIBC_2.29): Likewise.
3885 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist
3886 (GLIBC_2.29): Likewise.
3887 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist
3888 (GLIBC_2.29): Likewise.
3889 * sysdeps/unix/sysv/linux/nios2/libc.abilist (GLIBC_2.29):
3891 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist
3892 (GLIBC_2.29): Likewise.
3893 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist
3894 (GLIBC_2.29): Likewise.
3895 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist
3896 (GLIBC_2.29): Likewise.
3897 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist
3898 (GLIBC_2.29): Likewise.
3899 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist (GLIBC_2.29):
3901 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist (GLIBC_2.29):
3903 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist (GLIBC_2.29):
3905 * sysdeps/unix/sysv/linux/sh/libc.abilist (GLIBC_2.29): Likewise.
3906 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist (GLIBC_2.29):
3908 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist (GLIBC_2.29):
3910 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist (GLIBC_2.29):
3912 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist (GLIBC_2.29):
3915 2018-12-06 Joseph Myers <joseph@codesourcery.com>
3917 * manual/texinfo.tex: Update to version 2018-09-21.20 with
3918 trailing whitespace removed.
3919 * scripts/config.guess: Update to version 2018-11-28.
3920 * scripts/config.sub: Update to version 2018-11-28.
3921 * scripts/install-sh: Update to version 2018-03-11.20.
3922 * scripts/mkinstalldirs: Update to version 2018-03-07.03.
3923 * scripts/move-if-change: Update to version 2018-03-07 03:47.
3925 2018-12-07 Florian Weimer <fweimer@redhat.com>
3929 * inet/tst-if_index-long.c: New file.
3930 * inet/Makefile (tests): Add tst-if_index-long.
3932 2018-12-07 Florian Weimer <fweimer@redhat.com>
3934 * support/check.h (support_record_failure_is_failed): Declare.
3935 * support/descriptors.h: New file.
3936 * support/support_descriptors.c: Likewise.
3937 * support/tst-support_descriptors.c: Likewise.
3938 * support/support_record_failure.c
3939 (support_record_failure_is_failed): New function.
3940 * support/Makefile (libsupport-routines): Add support_descriptors.
3941 (tests): Add tst-support_descriptors.
3943 2018-12-05 Zack Weinberg <zackw@panix.com>
3944 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3946 * stdio-common/vfprintf-internal.c
3947 (__vfprintf_internal, __vfwprintf_internal): Don't use __ldbl_is_dbl.
3948 * sysdeps/generic/math_ldbl_opt.h: Remove __ldbl_is_dbl.
3949 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Remove __ldbl_is_dbl
3950 and __no_long_double.
3951 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.c: Remove file.
3952 * sysdeps/ieee754/ldbl-opt/Makefile (routines): Remove math_ldbl_opt.
3953 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Remove
3954 libc_hidden_proto and libc_hidden_def from all __nldbl_*printf*
3955 and __nldbl_*syslog* functions.
3956 (__nldbl_cleanup, set_no_long_double, clear_no_long_double): Remove.
3957 (__nldbl___asprintf, __nldbl_dprintf, __nldbl_fprintf)
3958 (__nldbl_fwprintf, __nldbl_printf, __nldbl_sprintf)
3959 (__nldbl_vfprintf, __nldbl___vsprintf, __nldbl_obstack_vprintf)
3960 (__ndlbl_obstack_printf, __nldbl_snprintf, __nldbl_swprintf)
3961 (__nldbl_vasprintf, __nldbl_vdprintf, __nldbl_vfwprintf)
3962 (__nldbl_vprintf, __nldbl_vsnprintf, __ndlbl_vswprintf)
3963 (__nldbl_vwprintf, __nldbl_wprintf):
3964 Directly call the appropriate __v*printf_internal routine, passing
3965 PRINTF_LDBL_IS_DBL. Do not mess with __no_long_double. Normalize
3967 (__nldbl___fprintf_chk, __nldbl___fwprintf_chk)
3968 (__nldbl___printf_chk, __nldbl___snprintf_chk)
3969 (__nldbl___sprintf_chk, __nldbl___swprintf_chk)
3970 (__nldbl___vfprintf_chk, __nldbl___vfwprintf_chk)
3971 (__nldbl___vprintf_chk, __nldbl___vsnprintf_chk)
3972 (__nldbl___vsprintf_chk, __nldbl___vswprintf_chk)
3973 (__nldbl___vwprintf_chk, __nldbl___wprintf_chk)
3974 (__nldbl___vasprintf_chk, __nldbl___asprintf_chk)
3975 (__nldbl___vdprintf_chk, __nldbl___dprintf_chk)
3976 (__nldbl___obstack_vprintf_chk, __nldbl___obstack_printf_chk):
3977 Likewise, and also pass PRINTF_FORTIFY when appropriate.
3978 (__nldbl_syslog, __nldbl_vsyslog):
3979 Directly call __vsyslog_internal, passing PRINTF_LDBL_IS_DBL.
3980 (__nldbl_syslog_chk): Likewise, and also pass PRINTF_FORTIFY when
3982 (__nldbl_vsyslog_chk): Likewise, and also pass PRINTF_FORTIFY when
3985 2018-12-05 Zack Weinberg <zackw@panix.com>
3986 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
3989 * libio/iovsprintf.c (_IO_str_chk_overflow, libio_vtable):
3990 Moved here from debug/vsprintf_chk.c.
3991 (__vsprintf_internal): Add 'maxlen' argument. Change the setup
3992 and completion logic for the strfile to match exactly what
3993 __vsprintf_chk used to do, except, when maxlen is -1, pass -1 to
3994 _IO_str_init_static_internal instead of maxlen-1.
3995 (__vsprintf): Pass -1 as maxlen to __vsprintf_internal.
3996 * stdio-common/sprintf.c (__sprintf): Pass -1 as maxlen to
3997 __vsprintf_internal.
3999 * debug/vsprintf_chk.c (__vsprintf_chk)
4000 * debug/sprintf_chk.c (__sprintf_chk):
4001 Directly call __vsprintf_internal, passing PRINTF_FORTIFY if
4002 'flags' argument is positive, and slen as maxlen. No need to lock
4003 the FILE and/or construct a temporary FILE. Minimize and normalize
4004 header inclusions and variable names. Do not libc_hidden_def anything.
4006 * debug/asprintf_chk.c (__asprintf_chk)
4007 * debug/dprintf_chk.c (__dprintf_chk)
4008 * debug/fprintf_chk.c (__fprintf_chk)
4009 * debug/fwprintf_chk.c (__fwprintf_chk)
4010 * debug/printf_chk.c (__printf_chk)
4011 * debug/snprintf_chk.c (__snprintf_chk)
4012 * debug/swprintf_chk.c (__swprintf_chk)
4013 * debug/vasprintf_chk.c (__vasprintf_chk)
4014 * debug/vdprintf_chk.c (__vdprintf_chk)
4015 * debug/vfprintf_chk.c (__vfprintf_chk)
4016 * debug/vfwprintf_chk.c (__vfwprintf_chk)
4017 * debug/vprintf_chk.c (__vprintf_chk)
4018 * debug/vsnprintf_chk.c (__vsnprintf_chk)
4019 * debug/vswprintf_chk.c (__vswprintf_chk)
4020 * debug/vwprintf_chk.c (__vwprintf_chk)
4021 * debug/wprintf_chk.c (__wprintf_chk):
4022 Directly call the corresponding vxxprintf_internal function, passing
4023 PRINTF_FORTIFY if 'flag' argument is positive. No need to lock
4024 the FILE and/or construct a temporary FILE. Minimize and normalize
4025 header inclusions and variable names. Do not libc_hidden_def anything.
4027 * debug/obprintf_chk.c (__obstack_printf_chk): Directly call
4028 __obstack_vprintf_internal.
4029 (__obstack_vprintf_chk): Convert into a wrapper that calls
4030 __obstack_vprintf_internal (these two functions already had the
4031 same code) and move to new file...
4032 * debug/vobprintf_chk.c (__obstack_vprintf_chk): ... here. New
4034 * debug/obprintf.c (__obstack_vprintf_internal): Remove the checking of
4035 the flags argument and the setting of _IO_FLAGS2_FORTIFY.
4036 * debug/Makefile (routines): Add vobprintf_chk.
4038 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c
4039 (__nldbl___vsprintf): Pass -1 as maxlen to __vsprintf_internal.
4040 (__nldbl___vfprintf_chk, __nldbl___vsnprintf_chk)
4041 (__nldbl___vsprintf_chk, __nldbl___vswprintf_chk)
4042 (__nldbl___vasprintf_chk, __nldbl___vdprintf_chk)
4043 (__nldbl___obstack_vfprintf_chk):
4044 Directly call the corresponding vxxprintf_internal function,
4045 passing PRINTF_FORTIFY if 'flag' argument is positive. If necessary,
4046 duplicate comparison of slen with 0 or maxlen from the corresponding
4047 non-__nldbl function.
4049 * include/stdio.h (__vsnprintf_chk, __vfprintf_chk, __vasprintf_chk)
4050 (__vdprintf_chk, __obstack_vfprintf_chk): Remove libc_hidden_proto.
4051 * include/wchar.h (__vfwprintf_chk, __vswprintf_chk):
4052 Remove libc_hidden_proto.
4054 * stdio-common/vfprintf-internal.c
4055 (__vfprintf_internal, __vfwprintf_internal):
4056 Do not check _IO_FLAGS2_FORTIFY.
4057 * libio/libio.h (_IO_FLAGS2_FORTIFY): Remove.
4058 * libio/libioP.h: Update prototype of __vsprintf_internal and add
4059 a comment explaining why it has the maxlen argument.
4060 (_IO_acquire_lock_clear_flags2_fct): Remove.
4061 (_IO_acquire_lock_clear_flags2): Remove.
4062 (_IO_release_lock): Remove conditional statement which will
4064 (_IO_acquire_lock): Remove variable which is now unused.
4065 * sysdeps/generic/stdio-lock.h (_IO_acquire_lock_clear_flags2): Remove.
4066 * sysdeps/nptl/stdio-lock.h (_IO_acquire_lock_clear_flags2): Remove.
4068 * stdio-common/Makefile (tests): Add tst-bz11319 and
4069 tst-bz11319-fortify2.
4070 (CFLAGS-tst-bz11319-fortify2.c): New macro.
4071 * stdio-common/tst-bz11319-fortify2.c: New file.
4072 * stdio-common/tst-bz11319.c: Likewise.
4074 2018-12-05 Zack Weinberg <zackw@panix.com>
4075 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4077 * misc/syslog.c: Include libioP.h, not iolibio.h.
4078 (__vsyslog_internal): New function with the former body of
4079 __vsyslog_chk; takes mode_flags argument same as
4080 __v*printf_internal. Call __vfprintf_internal directly.
4082 (__vsyslog_chk): Now a wrapper around __vsyslog_internal.
4083 Remove libc_hidden_def.
4084 (__syslog, __syslog_chk): Use __vsyslog_internal.
4085 (__vsyslog): Move to just below __syslog. Use __vsyslog_internal.
4087 * include/sys/syslog.h: Add multiple inclusion guard.
4088 Add prototype for __vsyslog_internal.
4089 Remove declaration and libc_hidden_proto for __vsyslog_chk.
4091 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c (__nldbl___vsyslog_chk):
4092 Use __vsyslog_internal.
4094 2018-12-05 Zack Weinberg <zackw@panix.com>
4095 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4097 * libio/libioP.h (__vfprintf_internal, __vfwprintf_internal)
4098 (__vasprintf_internal, __vdprintf_internal, __obstack_vprintf_internal)
4099 (__vsprintf_internal, __vsnprintf_internal, __vswprintf_internal):
4101 (PRINTF_LDBL_IS_DBL, PRINTF_FORTIFY): New constants.
4102 (_IO_vasprintf, _IO_vdprintf, _IO_vsnprintf): Remove prototypes.
4104 * stdio-common/vfprintf-internal.c: Rename from vfprintf.c.
4105 Include wctype.h here if COMPILE_WPRINTF is defined.
4106 Define __vfprintf_internal or __vfwprintf_internal, depending
4108 Temporarily, on entry to this function, update mode_flags
4109 according to the environmental settings corresponding to
4110 PRINTF_LDBL_IS_DBL and PRINTF_FORTIFY.
4111 Throughout, check mode_flags instead of __ldbl_is_dbl and
4112 _IO_FLAGS2_FORTIFY on the destination FILE.
4113 * stdio-common/vfwprintf-internal.c: Rename from vfwprintf.c.
4114 Include vfprintf-internal.c. Don't include wctype.h.
4115 * stdio-common/vfprintf.c: New file. Just define __vfprintf
4116 as a wrapper around __vfprintf_internal, with aliases _IO_vfprintf
4118 * stdio-common/vfwprintf.c: New file. Just define __vfwprintf
4119 as a wrapper around __vfwprintf_internal, with aliases _IO_vfwprintf
4121 * stdio-common/Makefile: Add vfprintf-internal and vfwprintf-internal.
4123 * libio/iovdprintf.c (_IO_vdprintf): Rename to __vdprintf_internal
4124 and add mode_flags argument; use __vfprintf_internal.
4125 (__vdprintf): New function. Alias vdprintf to this.
4126 * libio/iovsprintf.c (_IO_vsprintf, __vsprintf): Similarly.
4127 * libio/vasprintf.c (_IO_vasprintf, __vasprintf): Similarly.
4128 * libio/obprintf.c (_IO_obstack_vprintf, __obstack_vprintf): Similarly.
4129 (__obstack_printf): Use __obstack_printf_internal.
4130 * libio/vsnprintf.c (_IO_vsnprintf, ___vsnprintf): Similarly, with
4131 public aliases __vsnprintf and vsnprintf.
4132 Remove use of ldbl_hidden_def, since __vsnprintf is no longer
4134 * libio/vswprintf (_IO_vswprintf, __vswprintf): Similarly, with
4135 public aliases _IO_vsprintf and vsprintf.
4136 * libio/swprintf.c (__swprintf): Use __vswprintf_internal.
4137 * stdio-common/asprintf.c (__asprintf): Use __vasprintf_internal.
4138 * stdio-common/dprintf.c (__dprintf): Use __vdprintf_internal.
4139 * stdio-common/snprintf.c (__snprintf): Use __vsprintf_internal.
4140 * stdio-common/sprintf.c (__sprintf): Use __vsprintf_internal.
4142 * debug/obprintf_chk.c, debug/vasprintf_chk.c, debug/vdprintf_chk.c
4143 * debug/vsnprintf_chk.c, debug/vsprintf_chk.c, hurd/vpprintf.c
4144 * stdio-common/fprintf.c, stdio-common/fxprintf.c
4145 * stdio-common/printf.c: Use __vfprintf_internal.
4147 * debug/fwprintf_chk.c, debug/vfwprintf_chk.c, debug/vswprintf_chk.c
4148 * debug/vwprintf_chk.c, debug/wprintf_chk.c, libio/fwprintf.c
4149 * libio/vwprintf.c, libio/wprintf.c: Use __vfwprintf_internal.
4151 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Use __vsprintf_internal,
4152 __obstack_vprintf_internal, __vasprintf_internal, __vdprintf_internal,
4153 __vsnprintf_internal, __vswprintf_internal, __vfprintf_internal, and
4154 __vfwprintf_internal.
4156 * libio/libio.h: Remove libc_hidden_proto and declaration for
4158 Remove declaration of _IO_vfwprintf.
4159 * libio/iolibio.h: Remove libc_hidden_proto and declaration for
4161 Remove declarations of _IO_vswprintf, _IO_obstack_printf, and
4163 * include/stdio.h: Add prototype for __vasprintf.
4164 (__vsnprintf): Remove declaration, because there are no more
4166 * include/wchar.h (__vfwprintf, __vswprintf): Remove
4167 declaration, because there are no more internal calls.
4169 * argp/argp-fmtstream.c (__argp_fmtstream_printf): Use
4170 __vsnprintf_internal, instead of _IO_vsnprintf.
4171 * argp/argp-help.c (__argp_error, __argp_failure): Use
4172 __vasprintf_internal, instead of _IO_vasprintf.
4173 * argp/argp-namefrob.h (__vsnprintf): Do not undefined then
4174 redefine, because there are no more internal calls.
4176 2018-12-05 Zack Weinberg <zackw@panix.com>
4177 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4179 * stdio-common/vfscanf-internal.c: Don't look at __ldbl_is_dbl.
4180 * sysdeps/ieee754/ldbl-opt/ndlbl-compat.c:
4181 Include libio/strfile.h instead of libioP.h.
4182 (__nldbl_IO_vfscanf, __ndlbl___vfscanf, __nldbl_sscanf)
4183 (__nldbl___vsscanf, __nldbl_vscanf, __nldbl_fscanf)
4184 (__nldbl_scanf, __nldbl_vfwscanf, __nldbl_swscanf)
4185 (__nldbl_vswscanf, __nldbl_vwscanf, __nldbl_fwscanf)
4186 (__nldbl_wscanf): Call __vfscanf_internal / __vfwscanf_internal
4187 directly, passing SCANF_LDBL_IS_DBL. Set up a strfile if
4188 necessary. Do not set __no_long_double. Normalize variable names.
4189 (__nldbl___isoc99_vfscanf, __nldbl___isoc99_sscanf)
4190 (__nldbl___isoc99_vsscanf, __nldbl___isoc99_vscanf)
4191 (__nldbl___isoc99_fscanf, __nldbl___isoc99_scanf)
4192 (__nldbl___isoc99_vfwscanf, __nldbl___isoc99_swscanf)
4193 (__nldbl___isoc99_vswscanf, __nldbl___isoc99_vwscanf)
4194 (__nldbl___isoc99_fwscanf, __nldbl___isoc99_wscanf):
4195 Call __vfscanf_internal / __vfwscanf_internal directly, passing
4196 SCANF_LDBL_IS_DBL | SCANF_ISOC99_A. Set up a strfile if necessary.
4197 Do not set __no_long_double. Normalize variable names.
4199 2018-12-05 Zack Weinberg <zackw@panix.com>
4200 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4202 * stdio-common/isoc99_scanf.c
4203 * stdio-common/isoc99_fscanf.c
4204 * stdio-common/isoc99_sscanf.c
4205 * stdio-common/isoc99_vscanf.c
4206 * stdio-common/isoc99_vfscanf.c
4207 * stdio-common/isoc99_vsscanf.c
4208 * wcsmbs/isoc99_wscanf.c
4209 * wcsmbs/isoc99_fwscanf.c
4210 * wcsmbs/isoc99_swscanf.c
4211 * wcsmbs/isoc99_vwscanf.c
4212 * wcsmbs/isoc99_vfwscanf.c
4213 * wcsmbs/isoc99_vswscanf.c:
4214 Pass SCANF_ISOC99_A to __vfscanf_internal and/or __vfwscanf_internal.
4215 Do not set _IO_FLAGS2_SCANF_STD on the FILE passed to that function.
4216 No need to lock and unlock the FILE passed to that function.
4218 * stdio-common/vfscanf-internal.c
4219 (__vfscanf_internal, __vfwscanf_internal):
4220 Don't look at _IO_FLAGS2_SCANF_STD.
4221 * libio/libioP.h (_IO_acquire_lock_clear_flags2_fct)
4222 (_IO_release_lock): Don't clear _IO_FLAGS2_SCANF_STD.
4223 * libio/libio.h (_IO_FLAGS2_SCANF_STD): Delete.
4225 2018-12-05 Zack Weinberg <zackw@panix.com>
4226 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4228 * libio/libioP.h (SCANF_LDBL_IS_DBL, SCANF_ISOC99_A): New constants.
4229 (__vfscanf_internal, __vfwscanf_internal): New function prototypes.
4230 * libio/libio.h: Remove libc_hidden_proto for _IO_vfscanf.
4231 * libio/strfile.h: Add multiple inclusion guard.
4232 (_IO_strfile_read, _IO_strfile_readw): New inline functions.
4234 * sysdeps/generic/math_ldbl_opt.h: Include shlib-compat.h, for
4235 consistency with the other version of this file.
4236 (ldbl_compat_symbol): New macro.
4237 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h (ldbl_compat_symbol):
4240 * stdio-common/vfscanf-internal.c: Rename from vfscanf.c.
4241 Define __vfscanf_internal or __vfwscanf_internal, depending on
4242 COMPILE_WSCANF; don't define any other public symbols.
4243 Remove errval and code to set errp.
4244 Temporarily check __ldbl_is_dbl and _IO_FLAGS2_SCANF_STD as well
4245 as the mode_flags argument.
4246 (encode_error, conv_error, input_error): Don't set errval.
4247 * stdio-common/vfwscanf-internal.c: Rename from vfwscanf.c.
4248 Include vfscanf-internal.c.
4249 * stdio-common/vfscanf.c: New file defining the public entry
4250 point vfscanf, which calls __vfscanf_internal.
4251 * stdio-common/vfwscanf.c: New file defining the public entry
4252 point vfwscanf, which calls __vfwscanf_internal.
4254 * stdio-common/iovfscanf.c: New file.
4255 * stdio-common/iovfwscanf.c: Likewise.
4257 * stdio-common/Makefile (routines): Add vfscanf-internal,
4258 vfwscanf-internal, iovfscanf, iovfwscanf.
4259 * stdio-common/Versions: Mention GLIBC_2.29, so that
4260 it can be used in SHLIB_COMPAT expressions.
4261 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c (__nldbl__IO_vfscanf):
4262 Wrap definition and compat_symbol line in #if SHLIB_COMPAT.
4263 Call __vfscanf_internal, instead of _IO_vfscanf.
4264 (__nldbl___vfscanf): Call __vfscanf_internal, instead of
4266 (__nldbl_vfwscanf): Call __vfwscanf_internal, instead of
4269 * libio/iovsscanf.c: Clean up includes, when possible. Use
4270 _IO_strfile_read or _IO_strfile_readw, when needed. Call
4271 __vfscanf_internal or __vfwscanf_internal directly.
4272 * libio/iovswscanf.c: Likewise.
4273 * libio/swscanf.c: Likewise.
4274 * libio/vscanf.c: Likewise.
4275 * libio/vwscanf.c: Likewise.
4276 * libio/wscanf.c: Likewise.
4277 * stdio-common/isoc99_fscanf.c: Likewise.
4278 * stdio-common/isoc99_scanf.c: Likewise.
4279 * stdio-common/isoc99_sscanf.c: Likewise.
4280 * stdio-common/isoc99_vfscanf.c: Likewise.
4281 * stdio-common/isoc99_vscanf.c: Likewise.
4282 * stdio-common/isoc99_vsscanf.c: Likewise.
4283 * stdio-common/scanf.c: Likewise.
4284 * stdio-common/sscanf.c: Likewise.
4285 * wcsmbs/isoc99_fwscanf.c: Likewise.
4286 * wcsmbs/isoc99_swscanf.c: Likewise.
4287 * wcsmbs/isoc99_vfwscanf.c: Likewise.
4288 * wcsmbs/isoc99_vswscanf.c: Likewise.
4289 * wcsmbs/isoc99_vwscanf.c: Likewise.
4290 * wcsmbs/isoc99_wscanf.c: Likewise.
4292 2018-12-05 Albert ARIBAUD <albert.aribaud@3adev.fr>
4295 (__tz_compute): Replace time_t with __time64_t.
4296 (__tz_convert): Replace time_t* with __time64_t.
4297 (__offtime): Replace time_t* with __time64_t.
4299 (__gmtime_r): Adjust call to __tz_convert.
4302 (__localtime_r): Likewise.
4303 (localtime): Likewise.
4304 * time/offtime.c: Replace time_t with __time64_t.
4305 * time/tzset.c: Likewise.
4307 2018-12-04 Joseph Myers <joseph@codesourcery.com>
4309 * Makefile ($(objpfx)testroot.pristine/install.stamp): Do not run
4310 dynamic linker unless [$(run-built-tests) = yes].
4312 2018-12-03 DJ Delorie <dj@delorie.com>
4314 * support/test-container.c (check_for_unshare_hints): New.
4315 (main): Call it if unshare fails. Add support for "su" scriptlet
4318 2018-12-03 Joseph Myers <joseph@codesourcery.com>
4320 * scripts/gen-as-const.py (compute_c_consts): Take an argument
4321 'START' to indicate that start text should be output.
4322 (gen_test): Likewise.
4323 (main): Generate 'START' for first symbol or '--' line, or at end
4324 of input if not previously generated.
4326 2018-12-03 Rafael Ávila de Espíndola <rafael@espindo.la>
4329 * sysdeps/unix/sysv/linux/arm/init-first.c: Remove #ifdef SHARED.
4330 * sysdeps/unix/sysv/linux/arm/libc-vdso.h: Remove #ifdef SHARED.
4331 * sysdeps/unix/sysv/linux/arm/sysdep.h: Define
4332 ALWAYS_USE_VSYSCALL.
4334 2018-12-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
4337 * sysdeps/posix/spawni.c (maybe_script_execute): Increment size of
4340 2018-12-03 Carlos O'Donell <carlos@redhat.com>
4343 * locale/programs/localedef.c: Declare boolean hard_links default true.
4344 (options): Add --no-hard-links option.
4345 (parse_opt): Add OPT_NO_HARD_LINKS case and set hard_links to false.
4346 * locale/programs/localedef.h: Declare prototype for hard_links.
4347 * locale/programs/locfile.c (write_locale_data): Don't use hard
4348 links if hard_links is false.
4350 2018-12-03 H.J. Lu <hongjiu.lu@intel.com>
4352 * sysdeps/x86/cacheinfo.c (intel_check_word): Updated for
4354 (__cache_sysconf): Likewise.
4355 (init_cacheinfo): Likewise.
4356 * sysdeps/x86/cpu-features.c (get_extended_indeces): Also
4357 populate COMMON_CPUID_INDEX_80000007 and
4358 COMMON_CPUID_INDEX_80000008.
4359 (get_common_indices): Also populate COMMON_CPUID_INDEX_D_ECX_1.
4360 Use CPU_FEATURES_CPU_P (cpu_features, XSAVEC) to check if
4361 XSAVEC is available. Set the bit_arch_XXX_Usable bits.
4362 (init_cpu_features): Use _Static_assert on
4363 index_arch_Fast_Unaligned_Load.
4364 __get_cpuid_registers and __get_arch_feature. Updated for
4365 cpu_features_basic. Set stepping in cpu_features.
4366 * sysdeps/x86/cpu-features.h: (FEATURE_INDEX_1): Changed to enum.
4367 (FEATURE_INDEX_2): New.
4368 (FEATURE_INDEX_MAX): Changed to enum.
4369 (COMMON_CPUID_INDEX_D_ECX_1): New.
4370 (COMMON_CPUID_INDEX_80000007): Likewise.
4371 (COMMON_CPUID_INDEX_80000008): Likewise.
4372 (cpuid_registers): Likewise.
4373 (cpu_features_basic): Likewise.
4374 (CPU_FEATURE_USABLE): Likewise.
4375 (bit_arch_XXX_Usable): Likewise.
4376 (cpu_features): Use cpuid_registers and cpu_features_basic.
4377 (bit_arch_XXX): Reweritten.
4378 (bit_cpu_XXX): Likewise.
4379 (index_cpu_XXX): Likewise.
4380 (reg_XXX): Likewise.
4381 * sysdeps/x86/tst-get-cpu-features.c: Include <stdio.h> and
4383 (CHECK_CPU_FEATURE): New.
4384 (CHECK_CPU_FEATURE_USABLE): Likewise.
4385 (cpu_kinds): Likewise.
4386 (do_test): Print vendor, family, model and stepping. Check
4387 HAS_CPU_FEATURE and CPU_FEATURE_USABLE.
4388 (TEST_FUNCTION): Removed.
4389 Include <support/test-driver.c> instead of
4390 "../../test-skeleton.c".
4391 * sysdeps/x86_64/multiarch/sched_cpucount.c (__sched_cpucount):
4392 Check POPCNT instead of POPCOUNT.
4393 * sysdeps/x86_64/multiarch/test-multiarch.c (do_test): Likewise.
4395 2018-12-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
4397 * scripts/gen-as-const.py (main): Avoid emitting empty line when
4398 there is no element in `consts'.
4400 2018-12-01 Florian Weimer <fweimer@redhat.com>
4402 * support/support_capture_subprocess.c
4403 (support_capture_subprocess): Check that pipe descriptors have
4404 expected values. Close original pipe descriptors in subprocess.
4406 2018-12-01 Samuel Thibault <samuel.thibault@ens-lyon.org>
4409 * sysdeps/htl/pt-barrier-init.c (pthread_barrier_init): Fix comparing
4410 attr with __pthread_default_barrierattr.
4411 * sysdeps/htl/pt-cond-init.c (__pthread_cond_init): Fix comparing
4412 attr with __pthread_default_condattr.
4413 * sysdeps/htl/pt-mutex-init.c (_pthread_mutex_init): Fix comparing
4414 attr with __pthread_default_mutexattr.
4415 * sysdeps/htl/pt-rwlock-init.c (_pthread_rwlock_init): Fix comparing
4416 attr with __pthread_default_rwlockattr.
4418 2018-12-01 Kemi Wang <kemi.wang@intel.com>
4420 * manual/tunables.texi (POSIX Thread Tunables): New node.
4421 * nptl/Makefile (libpthread-routines): Add pthread_mutex_conf.
4422 * nptl/nptl-init.c: Include pthread_mutex_conf.h
4423 (__pthread_initialize_minimal_internal) [HAVE_TUNABLES]: Call
4424 __pthread_tunables_init.
4425 * nptl/pthreadP.h (MAX_ADAPTIVE_COUNT): Remove.
4426 (max_adaptive_count): Define.
4427 * nptl/pthread_mutex_conf.c: New file.
4428 * nptl/pthread_mutex_conf.h: New file.
4429 * sysdeps/generic/adaptive_spin_count.h: New file.
4430 * sysdeps/nptl/dl-tunables.list: New file.
4431 * nptl/pthread_mutex_lock.c (__pthread_mutex_lock): Use
4432 max_adaptive_count () not MAX_ADAPTIVE_COUNT.
4433 * nptl/pthread_mutex_timedlock.c (__pthrad_mutex_timedlock):
4436 2018-12-01 Paul Pluzhnikov <ppluzhnikov@google.com>
4439 * stdlib/cxa_atexit.c (__internal_atexit): assert func != NULL.
4440 * stdlib/on_exit.c (__on_exit): Likewise.
4441 * stdlib/Makefile (tests): Add tst-bz20544.
4442 * stdlib/tst-bz20544.c: New test.
4444 2018-11-30 Rafael Ávila de Espíndola <rafael@espindo.la>
4447 * sysdeps/unix/sysv/linux/i386/init-first.c: Don't check SHARED.
4448 * sysdeps/unix/sysv/linux/i386/sysdep.h (ALWAYS_USE_VSYSCALL):
4451 2018-11-30 Florian Weimer <fweimer@redhat.com>
4453 * scripts/abilist.awk: Print "0x0" for size 0. Handle "g"/"D".
4454 Extend error logging.
4455 * sysdeps/mach/hurd/i386/libc.abilist (GLIBC_2.2.6): Adjust _end
4458 2018-11-30 Adhemerval Zanella <adhemerval.zanella@linaro.org>
4460 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Use
4461 __sigismember instead of sigismember.
4462 * sysdeps/posix/system.c [SIGCANCEL] (cancel_handler_args,
4463 cancel_handler): New definitions.
4464 (do_system): Use posix_spawn instead of fork and execl and remove
4466 * sysdeps/generic/not-errno.h (__kill_noerrno): New prototype.
4467 * sysdeps/unix/sysv/linux/not-errno.h (__kill_noerrno): Likewise.
4468 * sysdeps/unix/sysv/linux/ia64/system.c: Remove file.
4469 * sysdeps/unix/sysv/linux/s390/system.c: Likewise.
4470 * sysdeps/unix/sysv/linux/sparc/system.c: Likewise.
4471 * sysdeps/unix/sysv/linux/system.c: Likewise.
4475 * NEWS: Add new semantic for atfork with popen and system.
4476 * libio/iopopen.c (_IO_new_proc_open): use posix_spawn instead of
4479 2018-11-30 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
4482 * elf/dl-runtime.c (_dl_profile_fixup): Guarantee memory
4483 modification order when accessing reloc_result->addr.
4484 * include/link.h (reloc_result): Add field init.
4485 * nptl/Makefile (tests): Add tst-audit-threads.
4486 (modules-names): Add tst-audit-threads-mod1 and
4487 tst-audit-threads-mod2.
4488 Add rules to build tst-audit-threads.
4489 * nptl/tst-audit-threads-mod1.c: New file.
4490 * nptl/tst-audit-threads-mod2.c: Likewise.
4491 * nptl/tst-audit-threads.c: Likewise.
4492 * nptl/tst-audit-threads.h: Likewise.
4494 2018-11-30 Joseph Myers <joseph@codesourcery.com>
4496 * scripts/gen-as-const.py: New file.
4497 * scripts/gen-as-const.awk: Remove.
4498 * Makerules ($(common-objpfx)%.h $(common-objpfx)%.h.d): Use
4500 ($(objpfx)test-as-const-%.c): Likewise.
4502 2018-11-29 H.J. Lu <hongjiu.lu@intel.com>
4504 * elf/dl-exception.c: Include <_itoa.h>.
4506 2018-11-30 Samuel Thibault <samuel.thibault@ens-lyon.org>
4508 * sysdeps/mach/hurd/fcntl.c (__libc_fcntl): Directly return value
4509 returned by __f_setlk.
4511 2018-11-29 H.J. Lu <hongjiu.lu@intel.com>
4512 Adhemerval Zanella <adhemerval.zanella@linaro.org>
4514 * elf/Makefile (tests-internal): Add tst-create_format1.
4515 * elf/dl-exception.c (_dl_exception_create_format): Support
4517 * elf/tst-create_format1.c: New file.
4519 2018-11-29 Charles-Antoine Couret <charles-antoine.couret@essensium.com>
4521 * argp/argp-fmtstream.c (__argp_fmtstream_update): Use [_LIBC]
4522 conditional on calls to _IO_fwide and putwc_unlocked. (Merge from
4524 * argp/argp-help.c (__argp_failure): Likewise.
4526 2018-11-29 Mao Han <han_mao@c-sky.com>
4528 * elf/elf.h (EM_CSKY, R_CKCORE_NONE, R_CKCORE_ADDR32)
4529 (R_CKCORE_PCRELIMM8BY4, R_CKCORE_PCRELIMM11BY2, R_CKCORE_PCREL32)
4530 (R_CKCORE_PCRELJSR_IMM11BY2, R_CKCORE_RELATIVE, R_CKCORE_COPY)
4531 (R_CKCORE_GLOB_DAT, R_CKCORE_JUMP_SLOT, R_CKCORE_GOTOFF)
4532 (R_CKCORE_GOTPC, R_CKCORE_GOT32, R_CKCORE_PLT32, R_CKCORE_ADDRGOT)
4533 (R_CKCORE_ADDRPLT, R_CKCORE_PCREL_IMM26BY2, R_CKCORE_PCREL_IMM16BY2)
4534 (R_CKCORE_PCREL_IMM16BY4, R_CKCORE_PCREL_IMM10BY2)
4535 (R_CKCORE_PCREL_IMM10BY4, R_CKCORE_ADDR_HI16, R_CKCORE_ADDR_LO16)
4536 (R_CKCORE_GOTPC_HI16, R_CKCORE_GOTPC_LO16, R_CKCORE_GOTOFF_HI16)
4537 (R_CKCORE_GOTOFF_LO16, R_CKCORE_GOT12, R_CKCORE_GOT_HI16)
4538 (R_CKCORE_GOT_LO16, R_CKCORE_PLT12, R_CKCORE_PLT_HI16)
4539 (R_CKCORE_PLT_LO16, R_CKCORE_ADDRGOT_HI16, R_CKCORE_ADDRGOT_LO16)
4540 (R_CKCORE_ADDRPLT_HI16, R_CKCORE_ADDRPLT_LO16)
4541 (R_CKCORE_PCREL_JSR_IMM26BY2, R_CKCORE_TOFFSET_LO16)
4542 (R_CKCORE_DOFFSET_LO16, R_CKCORE_PCREL_IMM18BY2)
4543 (R_CKCORE_DOFFSET_IMM18, R_CKCORE_DOFFSET_IMM18BY2)
4544 (R_CKCORE_DOFFSET_IMM18BY4, R_CKCORE_GOT_IMM18BY4)
4545 (R_CKCORE_PLT_IMM18BY4, R_CKCORE_PCREL_IMM7BY4, R_CKCORE_TLS_LE32)
4546 (R_CKCORE_TLS_IE32, R_CKCORE_TLS_GD32, R_CKCORE_TLS_LDM32)
4547 (R_CKCORE_TLS_LDO32, R_CKCORE_TLS_DTPMOD32, R_CKCORE_TLS_DTPOFF32)
4548 (R_CKCORE_TLS_TPOFF32): New defines.
4550 2018-11-29 Florian Weimer <fweimer@redhat.com>
4552 * posix/Makefile (before-compile): Remove testcases.h and
4554 (generated): Add testcases.h and ptestcases.h.
4555 (testcases.h, ptestcases.h): Move to $(objpfx).
4556 (runtests.o): Add dependency on testcases.h.
4557 (runptests.o): Add dependency on ptestcases.h.
4558 * posix/testcases.h, posix/ptestcases.h: Remove files.
4559 * scripts/build-many-glibcs.py (Context.fix_glibc_timestamps): Do
4560 not touch posix/testcases.h and posix/ptestcases.h.
4562 2018-11-28 Florian Weimer <fweimer@redhat.com>
4564 support: Add signal support to support_capture_subprocess_check.
4565 * support/capture_subprocess.h (support_capture_subprocess_check):
4566 Adjust comment and rename parameter.
4567 * support/support_capture_subprocess_check.c
4568 (print_actual_status): New function.
4569 (support_capture_subprocess_check): Support negative
4570 status_or_signal. Call print_actual_status.
4571 * support/tst-support_capture_subprocess.c (do_test): Call
4572 support_capture_subprocess_check.
4573 * libio/tst-vtables-common.c (termination_status)
4574 (init_termination_status): Remove.
4575 (check_for_termination): Adjust support_capture_subprocess_check
4577 (do_test): Remove call to init_termination_status.
4579 2018-11-28 Joseph Myers <joseph@codesourcery.com>
4581 * scripts/build-many-glibcs.py (Glibc.build_glibc): Use original
4582 source directory instead of a copy.
4583 (CommandList.create_copy_dir): Remove.
4585 2018-11-28 Stefan Liebler <stli@linux.ibm.com>
4587 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
4589 2018-11-28 Florian Weimer <fweimer@redhat.com>
4591 * support/support.h (support_quote_string): Do not use str
4594 2018-11-27 Joseph Myers <joseph@codesourcery.com>
4596 * sysdeps/mach/hurd/Makefile ($(common-objpfx)stamp-errnos): Use
4597 $(hurd-objpfx)bits/errno.h-tmp, not $(hurd)/bits/errno.h-tmp.
4599 2018-11-27 Florian Weimer <fweimer@redhat.com>
4601 * support/support.h (support_quote_string): Declare.
4602 * support/support_quote_string.c: New file.
4603 * support/tst-support_quote_string.c: Likewise.
4604 * support/Makefile (libsupport-routines): Add
4605 support_quote_string.
4606 (tests): Add tst-support_quote_string.
4608 2018-11-27 Florian Weimer <fweimer@redhat.com>
4612 * sysdeps/unix/sysv/linux/if_index.c (__if_nametoindex): Avoid
4613 descriptor leak in case of ENODEV error.
4615 2018-11-27 Rafael Ávila de Espíndola <rafael@espindo.la>
4618 * sysdeps/unix/sysv/linux/aarch64/init-first.c: Remove #ifdef SHARED.
4619 * sysdeps/unix/sysv/linux/aarch64/libc-vdso.h: Remove #ifdef SHARED.
4620 * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Define ALWAYS_USE_VSYSCALL.
4622 2018-11-26 Carlos O'Donell <carlos@redhat.com>
4624 * scripts/abilist.awk: Handle .tdata. Error for unknown combinations.
4625 Error for unknown lines.
4627 2018-11-26 Joseph Myers <joseph@codesourcery.com>
4629 * scripts/build-many-glibcs.py (Context.fix_glibc_timestamps):
4630 Touch additional files.
4632 2018-11-26 Florian Weimer <fweimer@redhat.com>
4635 * malloc/malloc.c (_int_free): Validate tc_idx before checking for
4638 2018-11-26 Rafael Ávila de Espíndola <rafael@espindo.la>
4641 * sysdeps/unix/sysv/linux/powerpc/init-first.c: Remove #ifdef SHARED.
4642 * sysdeps/unix/sysv/linux/powerpc/libc-vdso.h: Remove #ifdef
4643 SHARED. Include sysdep.h.
4644 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Define
4645 ALWAYS_USE_VSYSCALL.
4646 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Define
4647 ALWAYS_USE_VSYSCALL.
4649 2018-11-23 Rafael Ávila de Espíndola <rafael@espindo.la>
4652 * nptl/Makefile (tests-static): Add tst-cond11-static.
4654 * nptl/tst-cond11-static.c: New File.
4655 * sysdeps/unix/sysv/linux/Makefile (tests-static): Add
4656 tst-affinity-static.
4658 * sysdeps/unix/sysv/linux/sysdep-vdso.h: Check USE_VSYSCALL
4660 * sysdeps/unix/sysv/linux/sysdep.h (ALWAYS_USE_VSYSCALL): New.
4661 (USE_VSYSCALL): Likewise.
4662 * sysdeps/unix/sysv/linux/tst-affinity-static.c: New file.
4663 * sysdeps/unix/sysv/linux/x86/libc-vdso.h: Check USE_VSYSCALL
4665 * sysdeps/unix/sysv/linux/x86_64/init-first.c: Don't check
4667 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (ALWAYS_USE_VSYSCALL):
4670 2018-11-23 Joseph Myers <joseph@codesourcery.com>
4673 * sysdeps/unix/sysv/linux/arm/kernel-features.h
4674 [__LINUX_KERNEL_VERSION < 0x040700] (__ASSUME_COPY_FILE_RANGE):
4677 2018-11-23 H.J. Lu <hongjiu.lu@intel.com>
4679 * sysdeps/x86/Makefile (tests): Add tst-cet-legacy-1a.
4680 (tst-cet-legacy-1a-ARGS): New.
4681 ($(objpfx)tst-cet-legacy-1a): New target.
4682 * sysdeps/x86/tst-cet-legacy-1a.c: New file.
4684 2018-11-22 Joseph Myers <joseph@codesourcery.com>
4686 * conform/conformtest.py (CompileSubTest.__init__): Set
4687 self.run_early to False.
4688 (ExecuteSubTest.__init__): Likewise.
4689 (HeaderTests.run): Try running all non-optional, non-XFAILed
4690 compilation tests in a single execution of the compiler.
4692 * conform/conformtest.py (CompileSubTest): New class.
4693 (ExecuteSubTest): Likewise.
4694 (ElementTest.run): Rename to gen_subtests. Append tests to
4695 self.subtests instead of running them.
4696 (ConstantTest.run): Likewise.
4697 (SymbolTest.run): Likewise.
4698 (TypeTest.run): Likewise.
4699 (TagTest.run): Likewise.
4700 (FunctionTest.run): Likewise.
4701 (VariableTest.run): Likewise.
4702 (MacroFunctionTest.run): Likewise.
4703 (MacroStrTest.run): Likewise.
4704 (HeaderTests.handle_test_line): Generate subtests for tests.
4705 (HeaderTests.run): Run subtests for tests.
4707 2018-11-21 Szabolcs Nagy <szabolcs.nagy@arm.com>
4709 * math/Versions (GLIBC_2.29): Add pow.
4710 * math/w_pow_compat.c (__pow_compat): Change to versioned compat
4712 * math/w_pow.c: New file.
4713 * sysdeps/i386/fpu/w_pow.c: New file.
4714 * sysdeps/ia64/fpu/e_pow.S: Add versioned symbols.
4715 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Rename to __pow
4716 and add necessary aliases.
4717 * sysdeps/ieee754/dbl-64/w_pow.c: New file.
4718 * sysdeps/m68k/m680x0/fpu/w_pow.c: New file.
4719 * sysdeps/mach/hurd/i386/libm.abilist: Update.
4720 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
4721 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Update.
4722 * sysdeps/unix/sysv/linux/arm/libm.abilist: Update.
4723 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Update.
4724 * sysdeps/unix/sysv/linux/i386/libm.abilist: Update.
4725 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Update.
4726 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Update.
4727 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Update.
4728 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Update.
4729 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Update.
4730 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Update.
4731 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Update.
4732 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Update.
4733 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Update.
4734 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Update.
4735 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Update.
4736 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Update.
4737 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Update.
4738 * sysdeps/unix/sysv/linux/sh/libm.abilist: Update.
4739 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Update.
4740 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Update.
4741 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Update.
4742 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Update.
4743 * sysdeps/x86_64/fpu/multiarch/e_pow-fma.c (__ieee754_pow): Rename to
4745 * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c (__ieee754_pow): Likewise.
4746 * sysdeps/x86_64/fpu/multiarch/e_pow.c (__ieee754_pow): Likewise.
4747 * sysdeps/x86_64/fpu/multiarch/w_pow.c: New file.
4749 2018-11-21 Szabolcs Nagy <szabolcs.nagy@arm.com>
4751 * math/Versions (GLIBC_2.29): Add log2.
4752 * math/w_log2_compat.c (__log2_compat): Change to versioned compat
4754 * math/w_log2.c: New file.
4755 * sysdeps/i386/fpu/w_log2.c: New file.
4756 * sysdeps/ia64/fpu/e_log2.S: Add versioned symbols.
4757 * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Rename to __log2
4758 and add necessary aliases.
4759 * sysdeps/ieee754/dbl-64/w_log2.c: New file.
4760 * sysdeps/m68k/m680x0/fpu/w_log2.c: New file.
4761 * sysdeps/mach/hurd/i386/libm.abilist: Update.
4762 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
4763 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Update.
4764 * sysdeps/unix/sysv/linux/arm/libm.abilist: Update.
4765 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Update.
4766 * sysdeps/unix/sysv/linux/i386/libm.abilist: Update.
4767 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Update.
4768 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Update.
4769 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Update.
4770 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Update.
4771 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Update.
4772 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Update.
4773 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Update.
4774 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Update.
4775 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Update.
4776 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Update.
4777 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Update.
4778 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Update.
4779 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Update.
4780 * sysdeps/unix/sysv/linux/sh/libm.abilist: Update.
4781 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Update.
4782 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Update.
4783 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Update.
4784 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Update.
4786 2018-11-21 Szabolcs Nagy <szabolcs.nagy@arm.com>
4788 * math/Versions (GLIBC_2.29): Add log.
4789 * math/w_log_compat.c (__log_compat): Change to versioned compat
4791 * math/w_log.c: New file.
4792 * sysdeps/i386/fpu/w_log.c: New file.
4793 * sysdeps/ia64/fpu/e_log.S: Update.
4794 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Rename to __log
4795 and add necessary aliases.
4796 * sysdeps/ieee754/dbl-64/w_log.c: New file.
4797 * sysdeps/m68k/m680x0/fpu/w_log.c: New file.
4798 * sysdeps/mach/hurd/i386/libm.abilist: Update.
4799 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
4800 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Update.
4801 * sysdeps/unix/sysv/linux/arm/libm.abilist: Update.
4802 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Update.
4803 * sysdeps/unix/sysv/linux/i386/libm.abilist: Update.
4804 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Update.
4805 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Update.
4806 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Update.
4807 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Update.
4808 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Update.
4809 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Update.
4810 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Update.
4811 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Update.
4812 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Update.
4813 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Update.
4814 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Update.
4815 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Update.
4816 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Update.
4817 * sysdeps/unix/sysv/linux/sh/libm.abilist: Update.
4818 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Update.
4819 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Update.
4820 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Update.
4821 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Update.
4822 * sysdeps/x86_64/fpu/multiarch/e_log-avx.c (__ieee754_log): Rename to
4824 * sysdeps/x86_64/fpu/multiarch/e_log-fma.c (__ieee754_log): Likewise.
4825 * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c (__ieee754_log): Likewise.
4826 * sysdeps/x86_64/fpu/multiarch/e_log.c (__ieee754_log): Likewise.
4827 * sysdeps/x86_64/fpu/multiarch/w_log.c: New file.
4829 2018-11-21 Szabolcs Nagy <szabolcs.nagy@arm.com>
4831 * math/Versions (GLIBC_2.29): Add exp and exp2.
4832 * math/w_exp2_compat.c (__exp2_compat): Change to versioned compat
4833 symbol, handle NO_LONG_DOUBLE and LONG_DOUBLE_COMPAT explicitly.
4834 * math/w_exp_compat.c (__exp_compat): Likewise.
4835 * math/w_exp.c: New file.
4836 * math/w_exp2.c: New file.
4837 * sysdeps/i386/fpu/w_exp.c: New file.
4838 * sysdeps/i386/fpu/w_exp2.c: New file.
4839 * sysdeps/ia64/fpu/e_exp.S: Add versioned symbols.
4840 * sysdeps/ia64/fpu/e_exp2.S: Likewise.
4841 * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Rename to __exp
4842 and add necessary aliases.
4843 * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Rename to __exp2
4844 and add necessary aliases.
4845 * sysdeps/ieee754/dbl-64/w_exp.c: New file.
4846 * sysdeps/ieee754/dbl-64/w_exp2.c: New file.
4847 * sysdeps/m68k/m680x0/fpu/w_exp.c: New file.
4848 * sysdeps/m68k/m680x0/fpu/w_exp2.c: New file.
4849 * sysdeps/mach/hurd/i386/libm.abilist: Update.
4850 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
4851 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Update.
4852 * sysdeps/unix/sysv/linux/arm/libm.abilist: Update.
4853 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Update.
4854 * sysdeps/unix/sysv/linux/i386/libm.abilist: Update.
4855 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Update.
4856 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Update.
4857 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Update.
4858 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Update.
4859 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Update.
4860 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Update.
4861 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Update.
4862 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Update.
4863 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Update.
4864 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Update.
4865 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Update.
4866 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Update.
4867 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Update.
4868 * sysdeps/unix/sysv/linux/sh/libm.abilist: Update.
4869 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Update.
4870 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Update.
4871 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Update.
4872 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Update.
4873 * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c (__exp1): Remove.
4874 (__ieee754_exp): Rename to __exp.
4875 * sysdeps/x86_64/fpu/multiarch/e_exp-fma.c (__exp1): Remove.
4876 (__ieee754_exp): Rename to __exp.
4877 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c (__exp1): Remove.
4878 (__ieee754_exp): Rename to __exp.
4879 * sysdeps/x86_64/fpu/multiarch/e_exp.c (__ieee754_exp): Rename to
4881 * sysdeps/x86_64/fpu/multiarch/w_exp.c: New file.
4883 2018-11-20 DJ Delorie <dj@redhat.com>
4885 * malloc/malloc.c (tcache_entry): Add key field.
4886 (tcache_put): Set it.
4887 (tcache_get): Likewise.
4888 (_int_free): Check for double free in tcache.
4889 * malloc/tst-tcfree1.c: New.
4890 * malloc/tst-tcfree2.c: New.
4891 * malloc/Makefile: Run the new tests.
4892 * manual/probes.texi: Document memory_tcache_double_free probe.
4894 * dlfcn/dlerror.c (check_free): Prevent double frees.
4896 2018-11-20 Wilco Dijkstra <wdijkstr@arm.com>
4898 * sysdeps/aarch64/memset.S (MEMSET): Improve non-zero memset loop.
4900 2018-11-20 Joseph Myers <joseph@codesourcery.com>
4902 * conform/conformtest.py (ElementTest.run): Use unique identifiers
4903 in tests. Use names for format arguments.
4904 (ConstantTest.run): Likewise.
4905 (SymbolTest.run): Likewise.
4906 (TypeTest.run): Likewise.
4907 (TagTest.run): Likewise.
4908 (FunctionTest.run): Likewise.
4909 (VariableTest.run): Likewise.
4910 (MacroFunctionTest.run): Likewise.
4911 (MacroStrTest.run): Likewise.
4912 (HeaderTests.__init__): Set self.num_tests.
4913 (HeaderTests.handle_test_line): Set test.num. Increment
4916 2018-11-19 Samuel Thibault <samuel.thibault@ens-lyon.org>
4918 * sysdeps/mach/hurd/f_setlk.c: Include <unistd.h>.
4919 (__f_setlk): When whence is SEEK_CUR, use __lseek64 to convert it to
4922 2018-11-19 Mao Han <han_mao@c-sky.com>
4924 * scripts/config.guess: Update to version 2018-08-29.
4925 * scripts/config.sub: Update to version 2018-08-29.
4927 2018-11-19 Florian Weimer <fweimer@redhat.com>
4929 support: Print timestamps in timeout handler.
4930 * support/support_test_main.c (print_timestamp): New function.
4931 (signal_handler): Use it to print the termination time and the
4932 time of the last write to standard output.
4934 2018-11-16 Zack Weinberg <zackw@panix.com>
4935 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
4937 * include/monetary.h (STRFMON_LDBL_IS_DBL): New constant.
4938 (__vstrfmon_l): Rename to __vstrfmon_l_internal and add flags
4940 * stdlib/strfmon_l.c (__vstrfmon_l): Rename to __vstrfmon_l_internal
4941 and add flags argument. Check flags instead of __ldbl_is_dbl when
4942 deciding whether to set is_long_double.
4943 (__strfmon_l): Call __vstrfmon_l_internal instead of __vstrfmon_l,
4944 passing zero for flags argument.
4945 * stdlib/strfmon.c (strfmon): Same change as made to __strfmon_l.
4947 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c
4948 (__nldbl___vstrfmon, __nldbl___vstrfmon_l)
4949 (__nldbl_strfmon, __nldbl___strfmon_l): Call __vstrfmon_l_internal
4950 directly, passing STRFMON_LDBL_IS_DBL for flags argument. Normalize
4951 variable names. Remove libc_hidden_def/libc_hidden_proto from
4952 __nldbl___vstrfmon and __nldbl___vstrfmon_l, because they are no
4953 longer called from within the library.
4954 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h: Don't use NLDBL_DECL
4955 for __nldbl___vstrfmon_l, declare it explicitly.
4957 * manual/locale.texi: Update a reference to vstrfmon_l in comments.
4959 2018-11-15 Samuel Thibault <samuel.thibault@ens-lyon.org>
4961 * sysdeps/mach/hurd/bits/fcntl.h (F_GETLK64, F_SETLK64, F_SETLKW64): New
4963 [__USE_FILE_OFFSET64] (F_GETLK, F_SETLK, F_SETLKW): Define to F_GETLK64,
4964 F_SETLK64, F_SETLKW64, respectively.
4965 * sysdeps/mach/hurd/f_setlk.c: New file.
4966 * sysdeps/mach/hurd/f_setlk.h: New file.
4967 * sysdeps/mach/hurd/Makefile [$(subdir) = io] (sysdeps_routines): Add
4969 * sysdeps/mach/hurd/fcntl.c: Include "f_setlk.h".h".
4970 (__libc_fcntl): Move non-flock operations to...
4971 * sysdeps/mach/hurd/vfcntl.c (__libc_vfcntl): ... New file.
4972 * sysdeps/mach/hurd/fcntl.c (fcntl64): Add missing alias.
4974 2018-11-15 Paul Eggert <eggert@cs.ucla.edu>
4976 mktime: DEBUG_MKTIME cleanup
4977 The DEBUG_MKTIME code no longer works in glibc or in Gnulib.
4978 And it’s no longer needed now that glibc and Gnulib both have
4979 their own testing mechanisms for mktime.
4980 * time/mktime.c (DEBUG_MKTIME): Remove. All uses removed.
4982 mktime: fix non-EOVERFLOW errno handling
4984 mktime was not properly reporting failures when the underlying
4985 localtime_r fails with errno != EOVERFLOW; it incorrectly treated
4986 them like EOVERFLOW failures, and set errno to EOVERFLOW.
4987 The problem could happen on non-glibc platforms, with Gnulib.
4988 * time/mktime.c (guess_time_tm): Remove, replacing with ...
4989 (tm_diff): ... this simpler function, which does not change errno.
4990 All callers changed to deal with errno themselves.
4991 (ranged_convert, __mktime_internal): Return failure immediately if
4992 the underlying function reports any failure other than EOVERFLOW.
4993 (__mktime_internal): Set errno to EOVERFLOW if the spring-forward
4996 mktime: fix bug with Y2038 DST transition
4998 * time/mktime.c (ranged_convert): On 32-bit platforms, don’t
4999 mishandle a DST transition that jumps over the Y2038 boundary.
5000 No such DST transitions are known so this is only a theoretical
5001 bug, but we might as well do things right.
5003 mktime: make more room for overflow
5005 * time/mktime.c (long_int): Now 4⨯ int, not just 3⨯.
5006 This is so that we can add tm_diff results to a previous guess,
5007 which will be useful in a later patch.
5009 mktime: simplify offset guess
5011 * time/mktime.c (__mktime_internal): Omit excess precision.
5013 mktime: new test for mktime failure
5015 Based on a test suggested by Albert Aribaud in:
5016 https://www.sourceware.org/ml/libc-alpha/2018-10/msg00662.html
5017 * time/Makefile (tests): Add bug-mktime4.
5018 * time/bug-mktime4.c: New file.
5020 mktime: fix EOVERFLOW bug
5022 * time/mktime.c [!_LIBC && !DEBUG_MKTIME]:
5023 Include libc-config.h, not config.h, for __set_errno.
5024 (guess_time_tm, __mktime_internal): Set errno to EOVERFLOW on overflow.
5026 2018-11-14 Samuel Thibault <samuel.thibault@ens-lyon.org>
5028 * sysdeps/mach/hurd/dl-sysdep.c (check_no_hidden): Use
5029 __attribute_copy__ to copy attributes from name. Drop static qualifier
5030 to avoid warnings about leaf attribute not having effect on static
5033 2018-11-13 Florian Weimer <fweimer@redhat.com>
5035 * malloc/malloc.c (fastbin_push_entry): New function.
5036 (fastbin_pop_entry): Likewise. Replaces REMOVE_FB.
5037 (REMOVE_FB): Remove macro.
5038 (_int_malloc): Use fastbin_pop_entry and reindent.
5039 (_int_free): Use fastbin_push_entry.
5040 (malloc_consolidate): Use atomic_exchange_acquire.
5042 2018-11-13 Joseph Myers <joseph@codesourcery.com>
5044 * sysdeps/mips/__longjmp.c (__longjmp): Define alias manually with
5045 alias attribute, not with strong_alias.
5047 * include/libc-symbols.h [SHARED && !NO_HIDDEN && !__ASSEMBLER__]
5048 (__hidden_ver2): New macro. Use old definition of __hidden_ver1
5049 with additional parameter thread.
5050 [SHARED && !NO_HIDDEN && !__ASSEMBLER__] (__hidden_ver1): Define
5051 in terms of __hidden_ver2.
5052 (hidden_tls_def): New macro.
5053 (libc_hidden_tls_def): Likewise.
5054 (rtld_hidden_tls_def): Likewise.
5055 (libm_hidden_tls_def): Likewise.
5056 (libmvec_hidden_tls_def): Likewise.
5057 (libresolv_hidden_tls_def): Likewise.
5058 (librt_hidden_tls_def): Likewise.
5059 (libdl_hidden_tls_def): Likewise.
5060 (libnss_files_hidden_tls_def): Likewise.
5061 (libnsl_hidden_tls_def): Likewise.
5062 (libnss_nisplus_hidden_tls_def): Likewise.
5063 (libutil_hidden_tls_def): Likewise.
5064 (libutil_hidden_tls_def): Likweise.
5065 * sysdeps/powerpc/nofpu/sim-full.c (__sim_exceptions_thread): Use
5066 libc_hidden_tls_def.
5067 (__sim_disabled_exceptions_thread): Likewise.
5068 (__sim_round_mode_thread): Likewise.
5070 * sysdeps/sparc/sparc-ifunc.h [SHARED]
5071 (sparc_ifunc_redirected_hidden_def): Use __attribute_copy__ to
5072 copy attributes from name.
5074 2018-11-12 Joseph Myers <joseph@codesourcery.com>
5076 * sysdeps/arm/arm-ifunc.h [SHARED] (arm_libc_ifunc_hidden_def):
5077 Use __attribute_copy__ to copy attributes from name.
5079 * sysdeps/i386/i686/fpu/multiarch/e_expf.c [SHARED]: Use __THROW
5080 with __hidden_ver1 call.
5081 * sysdeps/i386/i686/fpu/multiarch/e_log2f.c [SHARED]: Likewise.
5082 * sysdeps/i386/i686/fpu/multiarch/e_logf.c [SHARED]: Likewise.
5083 * sysdeps/i386/i686/fpu/multiarch/s_cosf.c: Include <math.h>.
5084 (__cosf): Do not declare here.
5085 * sysdeps/i386/i686/fpu/multiarch/s_sincosf.c: Include <math.h>.
5086 (__sincosf): Do not declare here.
5087 * sysdeps/i386/i686/fpu/multiarch/s_sinf.c: Include <math.h>.
5088 (__sinf): Do not declare here.
5090 * sysdeps/ia64/fpu/sfp-machine.h (__LITTLE_ENDIAN): Remove.
5091 (__BIG_ENDIAN): Likewise.
5092 (__BYTE_ORDER): Likewise.
5093 (strong_alias): Likewise.
5094 (_strong_alias): Likewise.
5096 2018-11-12 Florian Weimer <fweimer@redhat.com>
5098 * malloc/malloc.c (unlink_chunk): Turn the unlink macro into this
5099 function. Move after the definition of in_smallbin_range. Do not
5100 use __builtin_expect for paths that lead to a noreturn function.
5101 Drop remaining __builtin_expect (p->fd_nextsize != NULL, 0)
5102 because it is unclear whether this is in fact an unlikely
5104 (_int_malloc, _int_free): Adjust.
5105 (malloc_consolidate, _int_realloc): Adjust. Remove bck, fwd
5107 * malloc/arena.c (heap_trim): Likewise.
5109 2018-11-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
5111 * sysdeps/mach/hurd/spawni.c (__spawni): Add ccwdir port. Test and use
5112 it, free it if needed.
5113 (reauthenticate): Test and use ccwdir.
5114 (child_init_port): In non-resetids case, test and use ccwdir.
5115 (child_chdir): New nested function to set ccwdir.
5116 * hurd/hurd/userlink.h (_hurd_userlink_move): New function.
5117 * hurd/hurd/port.h (_hurd_port_move): New function.
5118 * sysdeps/mach/hurd/spawni.c (NEW_ULINK_TABLE): New macro.
5119 (EXPAND_DTABLE): Use NEW_ULINK_TABLE macro for ulink_dtable.
5120 * hurd/Versions (_hurd_port_move): Export function.
5121 * sysdeps/mach/hurd/i386/libc.abilist (_hurd_port_move): Expect
5123 * sysdeps/mach/hurd/spawni.c (__spawni): Use orig_dtablesize instead
5124 of dtablesize for allocating dtable_cloexec.
5126 2018-11-09 Martin Sebor <msebor@redhat.com>
5128 * include/libc-symbols.h (__attribute_copy__): Define macro unless
5129 it's already defined.
5130 (_strong_alias): Use __attribute_copy__.
5131 (_weak_alias, __hidden_ver1, __hidden_nolink2): Same.
5132 * misc/sys/cdefs.h (__attribute_copy__): New macro.
5133 * sysdeps/x86_64/multiarch/memchr.c (memchr): Use __attribute_copy__.
5134 * sysdeps/x86_64/multiarch/memcmp.c (memcmp): Same.
5135 * sysdeps/x86_64/multiarch/mempcpy.c (mempcpy): Same.
5136 * sysdeps/x86_64/multiarch/memset.c (memset): Same.
5137 * sysdeps/x86_64/multiarch/stpcpy.c (stpcpy): Same.
5138 * sysdeps/x86_64/multiarch/strcat.c (strcat): Same.
5139 * sysdeps/x86_64/multiarch/strchr.c (strchr): Same.
5140 * sysdeps/x86_64/multiarch/strcmp.c (strcmp): Same.
5141 * sysdeps/x86_64/multiarch/strcpy.c (strcpy): Same.
5142 * sysdeps/x86_64/multiarch/strcspn.c (strcspn): Same.
5143 * sysdeps/x86_64/multiarch/strlen.c (strlen): Same.
5144 * sysdeps/x86_64/multiarch/strncmp.c (strncmp): Same.
5145 * sysdeps/x86_64/multiarch/strncpy.c (strncpy): Same.
5146 * sysdeps/x86_64/multiarch/strnlen.c (strnlen): Same.
5147 * sysdeps/x86_64/multiarch/strpbrk.c (strpbrk): Same.
5148 * sysdeps/x86_64/multiarch/strrchr.c (strrchr): Same.
5149 * sysdeps/x86_64/multiarch/strspn.c (strspn): Same.
5151 2018-11-09 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
5153 * misc/tst-efgcvt.c: Include support/check.h and
5154 support/test-driver.c. Do not include test-skeleton.c.
5155 (error_count): Remove.
5156 (output_error): Replace increments to error_count with calls to
5157 support_record_failure.
5158 (output_r_error): Likewise.
5159 (special): Likewise.
5160 (do_test): Unconditionally return zero.
5161 (TEST_FUNCTION): Remove.
5163 2018-11-09 Joseph Myers <joseph@codesourcery.com>
5165 * conform/Makefile ($(conformtest-header-tests)): Create $(@D),
5167 ($(linknamespace-header-tests)): Likewise.
5169 * conform/conformtest.py: New file.
5170 * conform/conformtest.pl: Remove.
5171 * conform/GlibcConform.pm: Likewise.
5172 * conform/glibcconform.py (KEYWORDS_C90): New constant.
5173 (KEYWORDS_C99): Likewise.
5174 (KEYWORDS): Likewise.
5175 * conform/Makefile ($(conformtest-header-tests)): Use
5176 conformtest.py instead of conformtest.pl. Do not pass --tmpdir
5177 option. Use --header instead of --headers.
5178 * conform/data/arpa/inet.h-data: Remove trailing semicolons on
5180 * conform/data/spawn.h-data: Likewise.
5181 * conform/data/fcntl.h-data (openat): Add space after function
5183 * conform/data/wchar.h-data (wcscasecmp): Likewise.
5184 (wcscasecmp_l): Likewise.
5185 * conform/data/termios.h-data (c_cc): Add space after element
5188 2018-11-08 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
5190 * argp/tst-ldbl-argp.c (do_one_test): Use TEST_COMPARE_STRING,
5191 instead of manually comparing and reporting mismatching strings.
5192 * misc/tst-ldbl-error.c (do_one_test): Likewise.
5193 * misc/tst-ldbl-warn.c (do_one_test): Likewise.
5195 2018-11-08 Joseph Myers <joseph@codesourcery.com>
5197 * sysdeps/unix/sysv/linux/kernel-features.h: Remove comment about
5198 __ASSUME_SOCKETCALL.
5199 * sysdeps/unix/sysv/linux/i386/kernel-features.h
5200 (__ASSUME_SOCKETCALL): Remove.
5201 * sysdeps/unix/sysv/linux/m68k/kernel-features.h
5202 (__ASSUME_SOCKETCALL): Likewise.
5203 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
5204 (__ASSUME_SOCKETCALL): Likewise.
5205 * sysdeps/unix/sysv/linux/powerpc/kernel-features.h
5206 (__ASSUME_SOCKETCALL): Likewise.
5207 * sysdeps/unix/sysv/linux/s390/kernel-features.h
5208 (__ASSUME_SOCKETCALL): Likewise.
5209 * sysdeps/unix/sysv/linux/sh/kernel-features.h
5210 (__ASSUME_SOCKETCALL): Likewise.
5211 * sysdeps/unix/sysv/linux/sparc/kernel-features.h
5212 (__ASSUME_SOCKETCALL): Likewise.
5214 2018-11-08 H.J. Lu <hongjiu.lu@intel.com>
5217 * sysdeps/x86/dl-prop.h (_dl_process_cet_property_note): Skip
5218 note parsing if a NT_GNU_PROPERTY_TYPE_0 note has been processed.
5219 Update the l_cet field when processing NT_GNU_PROPERTY_TYPE_0 note.
5220 Check multiple NT_GNU_PROPERTY_TYPE_0 notes.
5221 * sysdeps/x86/link_map.h (l_cet): Expand to 3 bits, Add
5224 2018-11-08 Alexandra Hájková <ahajkova@redhat.com>
5227 * resolv/tst-resolv-network.c: Add test for getnetbyname.
5229 2018-11-07 Joseph Myers <joseph@codesourcery.com>
5232 * sysdeps/unix/sysv/linux/arm/kernel-features.h
5233 [__LINUX_KERNEL_VERSION < 0x040700] (__ASSUME_MLOCK2): Undefine.
5234 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
5235 [__LINUX_KERNEL_VERSION < 0x040700] (__ASSUME_MLOCK2): Undefine.
5237 2018-11-07 Adhemerval Zanella <adhemerval.zanella@linaro.org>
5239 * support/support_test_compare_string.c
5240 (support_test_compare_string): Fix printf format.
5242 2018-11-07 Florian Weimer <fweimer@redhat.com>
5244 Implement TEST_COMPARE_STRING.
5245 * support/check.h (TEST_COMPARE_STRING): Define.
5246 (support_test_compare_string): Declare.
5247 * support/Makefile (libsupport-routines): Add
5248 support_test_compare_string.
5249 (tests): Add tst-test_compare_string.
5250 * support/support_test_compare_string.c: New file.
5251 * support/tst-test_compare_string.c: Likewise.
5253 2018-11-07 Andreas Schwab <schwab@suse.de>
5256 * sysdeps/unix/sysv/linux/riscv/kernel-features.h
5257 (__ASSUME_SET_ROBUST_LIST) [__LINUX_KERNEL_VERSION < 0x041400]:
5260 2018-11-06 Joseph Myers <joseph@codesourcery.com>
5263 * sysdeps/unix/sysv/linux/sh/kernel-features.h
5264 [__LINUX_KERNEL_VERSION < 0x040800] (__ASSUME_EXECVEAT): Undefine.
5265 [__LINUX_KERNEL_VERSION < 0x040800] (__ASSUME_MLOCK2): Likewise.
5266 [__LINUX_KERNEL_VERSION < 0x040800] (__ASSUME_COPY_FILE_RANGE):
5269 2018-11-06 Florian Weimer <fweimer@redhat.com>
5272 * posix/Makefile (routines): Add spawn_faction_addchdir.
5273 (tests): Add tst-spawn-chdir.
5274 * posix/Versions (GLIBC_2.29): Add
5275 posix_spawn_file_actions_addchdir_np.
5276 * posix/spawn_faction_addchdir.c: New file.
5277 * posix/spawn_faction_destroy.c
5278 (__posix_spawn_file_actions_destroy): Handle spawn_do_chdir.
5279 * posix/spawn.h (posix_spawn_file_actions_addchdir_np): Declare.
5280 * posix/spawn_int.h (struct __spawn_action): Add spawn_do_chdir,
5282 * posix/tst-spawn-chdir.c: New file.
5283 * sysdeps/posix/spawni.c (__spawni_child): Handle spawn_do_chdir.
5284 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Likewise.
5285 * sysdeps/mach/hurd/i386/libc.abilist (GLIBC_2.29): Add
5286 posix_spawn_file_actions_addchdir_np.
5287 * sysdeps/unix/sysv/linux/aarch64/libc.abilist (GLIBC_2.29):
5289 * sysdeps/unix/sysv/linux/alpha/libc.abilist (GLIBC_2.29):
5291 * sysdeps/unix/sysv/linux/arm/libc.abilist (GLIBC_2.29): Likewise.
5292 * sysdeps/unix/sysv/linux/hppa/libc.abilist (GLIBC_2.29):
5294 * sysdeps/unix/sysv/linux/i386/libc.abilist (GLIBC_2.29):
5296 * sysdeps/unix/sysv/linux/ia64/libc.abilist (GLIBC_2.29):
5298 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist (GLIBC_2.29):
5300 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist (GLIBC_2.29):
5302 * sysdeps/unix/sysv/linux/microblaze/libc.abilist (GLIBC_2.29):
5304 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist
5305 (GLIBC_2.29): Likewise.
5306 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist
5307 (GLIBC_2.29): Likewise.
5308 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist
5309 (GLIBC_2.29): Likewise.
5310 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist
5311 (GLIBC_2.29): Likewise.
5312 * sysdeps/unix/sysv/linux/nios2/libc.abilist (GLIBC_2.29):
5314 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist
5315 (GLIBC_2.29): Likewise.
5316 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist
5317 (GLIBC_2.29): Likewise.
5318 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist
5319 (GLIBC_2.29): Likewise.
5320 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist
5321 (GLIBC_2.29): Likewise.
5322 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist (GLIBC_2.29):
5324 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist (GLIBC_2.29):
5326 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist (GLIBC_2.29):
5328 * sysdeps/unix/sysv/linux/sh/libc.abilist (GLIBC_2.29): Likewise.
5329 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist (GLIBC_2.29):
5331 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist (GLIBC_2.29):
5333 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist (GLIBC_2.29):
5335 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist (GLIBC_2.29):
5338 2018-11-06 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
5340 * misc/Makefile (tests): Add tst-ldbl-error.
5341 * misc/tst-ldbl-error.c: New file.
5343 2018-11-06 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
5345 * misc/Makefile (tests): Add tst-ldbl-warn.
5346 * misc/tst-ldbl-warn.c: New file.
5348 2018-11-06 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
5350 * argp/Makefile (tests): Add tst-ldbl-argp.
5351 * argp/tst-ldbl-argp.c: New file.
5353 2018-11-05 Arjun Shankar <arjun@redhat.com>
5355 * iconv/gconv_conf.c (__gconv_read_conf): Remove NULL check for
5356 __gconv_path_elem and call __gconv_get_path unconditionally.
5358 2018-11-05 Andreas Schwab <schwab@suse.de>
5361 * resolv/gai_misc.c (__gai_enqueue_request): Don't crash if
5362 creating the first helper thread failed.
5364 2018-11-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
5366 * sysdeps/mach/hurd/msync.c: New file.
5368 2018-11-02 Florian Weimer <fweimer@redhat.com>
5370 * support/shell-container.c (copy_func): Call
5371 support_copy_file_range instead of copy_file_range to support
5372 cross-device copies.
5374 2018-11-02 Florian Weimer <fweimer@redhat.com>
5376 * support/test-container.c: Include <libc-pointer-arith.h> for
5379 2018-11-01 Zong Li <zong@andestech.com>
5381 * soft-fp/op-8.h (_FP_FRAC_SET_8, _FP_FRAC_ADD_8, _FP_FRAC_SUB_8)
5382 (_FP_FRAC_CLZ_8, _FP_MINFRAC_8, _FP_FRAC_NEGP_8, _FP_FRAC_ZEROP_8)
5383 (_FP_FRAC_HIGHBIT_DW_8, _FP_FRAC_COPY_4_8, _FP_FRAC_COPY_8_4)
5384 (__FP_FRAC_SET_8): Add implementation for RV32 use.
5386 * soft-fp/op-4.h (_FP_FRAC_SUB_3, _FP_FRAC_SUB_4): Use temporary
5387 variable to avoid overlap arguments.
5389 2018-11-01 Joseph Myers <joseph@codesourcery.com>
5391 * posix/bug-regex22.c (main): Use puts with distinct error
5392 messages for unexpected success of re_compile_pattern, not printf
5393 with NULL argument to %s.
5395 * stdio-common/bug22.c: Include <libc-diag.h>.
5396 (do_test): Disable -Wformat-overflow= warnings around fprintf
5397 calls outputting more than INT_MAX characters.
5398 * stdio-common/tst-printf.c: Disable -Wformat-overflow= warnings
5399 around printf call with NULL %s argument.
5402 * sysdeps/unix/sysv/linux/sparc/kernel-features.h [!__arch64__ &&
5403 __LINUX_KERNEL_VERSION < 0x040400] (__ASSUME_SENDMSG_SYSCALL):
5405 [!__arch64__ && __LINUX_KERNEL_VERSION < 0x040400]
5406 (__ASSUME_RECVMSG_SYSCALL): Likewise.
5407 [!__arch64__ && __LINUX_KERNEL_VERSION < 0x040400]
5408 (__ASSUME_SENDTO_SYSCALL): Likewise.
5409 [!__arch64__ && __LINUX_KERNEL_VERSION < 0x040400]
5410 (__ASSUME_ACCEPT_SYSCALL): Undefine under this condition, not just
5412 [!__arch64__ && __LINUX_KERNEL_VERSION < 0x040400]
5413 (__ASSUME_CONNECT_SYSCALL): Likewise.
5414 [!__arch64__ && __LINUX_KERNEL_VERSION < 0x040400]
5415 (__ASSUME_RECVFROM_SYSCALL): Likewise.
5416 [__LINUX_KERNEL_VERSION >= 0x040400] (__ASSUME_BIND_SYSCALL):
5418 [__LINUX_KERNEL_VERSION >= 0x040400] (__ASSUME_LISTEN_SYSCALL):
5420 [__LINUX_KERNEL_VERSION >= 0x040400]
5421 (__ASSUME_SETSOCKOPT_SYSCALL): Likewise.
5422 * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (bind):
5425 (setsockopt): Likewise.
5427 2018-11-01 Fredrik Noring <noring@nocrew.org>
5429 * sysdeps/mips/sys/tas.h (_test_and_set): Handle the R5900 CPU
5430 with the ISA override.
5432 2018-10-31 Rafael Avila de Espindola <rafael@espindo.la>
5434 * sysdeps/unix/sysv/linux/sysdep-vdso.h: Simplify an #if #else
5437 2018-10-31 Samuel Thibault <samuel.thibault@ens-lyon.org>
5439 * manual/errno.texi (EIEIO): Document how translators should
5440 translate the error message.
5441 * sysdeps/mach/hurd/errnos.awk: Avoid printing errnos.d. Avoid
5442 printing trailing whitespaces refused by git.
5443 * sysdeps/gnu/errlist.c (EIEIO): Regenerate.
5444 * sysdeps/mach/hurd/bits/errno.h: Regenerate.
5445 * hurd/Makefile (user-interfaces): Add pci.
5447 2018-10-30 Joseph Myers <joseph@codesourcery.com>
5449 * conform/linknamespace.py: New file.
5450 * conform/linknamespace.pl: Remove file.
5451 * conform/Makefile ($(linknamespace-header-tests)): Use
5452 linknamespace.py instead of linknamespace.pl. Do not use --tmpdir
5455 2018-10-30 Florian Weimer <fweimer@redhat.com>
5457 * stdlib/test-bz22786.c (do_test): Additional free calls to avoid
5460 2018-10-30 Florian Weimer <fweimer@redhat.com>
5462 * support/blob_repeat.c (allocate_big): Call mkstemp directly.
5464 2018-10-30 Florian Weimer <fweimer@redhat.com>
5466 * stdlib/tst-strtod-overflow.c (do_test): Switch to
5467 support_blob_repeat.
5469 2018-10-30 Florian Weimer <fweimer@redhat.com>
5471 Avoid spurious test failures in stdlib/test-bz22786.
5472 * support/Makefile (libsupport-routines): Add blob_repeat.
5473 (tests): Add tst-support_blob_repeat.
5474 * support/blob_repeat.h: New file.
5475 * support/blob_repeat.c: Likewise.
5476 * support/tst-support_blob_repeat.c: Likewise.
5477 * stdlib/test-bz22786.c (do_test): Replace malloc and memset with
5478 support_blob_repeat_allocate.
5480 2018-10-30 Andreas Schwab <schwab@suse.de>
5483 * sysdeps/riscv/start.S (ENTRY_POINT): Mark ra as undefined.
5484 Don't use tail call.
5485 * elf/tst-unwind-main.c: New file.
5486 * elf/Makefile (tests): Add tst-unwind-main.
5487 (CFLAGS-tst-unwind-main.c): Define.
5489 2018-10-29 Sergi Almacellas Abellana <sergi@koolpi.com>
5492 * localedata/locales/ca_ES (LC_MONETARY): set p_cs_precedes and
5494 * localedata/locales/ca_ES (LC_MONETARY): set grouping to 3;3
5496 2018-10-29 Joseph Myers <joseph@codesourcery.com>
5498 * conform/glibcconform.py: Do not import shutil.
5499 (list_exported_functions): Use tempfile.TemporaryDirectory instead
5502 * configure.ac (PYTHON_PROG): Use AC_CHECK_PROG_VER. Set
5503 critic_missing for versions before 3.4.
5504 * configure: Regenerated.
5505 * manual/install.texi (Tools for Compilation): Document
5506 requirement for Python to build glibc.
5507 * INSTALL: Regenerated.
5508 * Rules [PYTHON]: Make code unconditional.
5509 * benchtests/Makefile [PYTHON]: Likewise.
5510 * conform/Makefile [PYTHON]: Likewise.
5511 * manual/Makefile [PYTHON]: Likewise.
5512 * math/Makefile [PYTHON]: Likewise.
5514 2018-10-28 Samuel Thibault <samuel.thibault@ens-lyon.org>
5516 * hurd/hurdsig.c (_hurd_interrupted_rpc_timeout): Set to 60000.
5517 * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): When the server does not
5518 answer to interrupt_operation, return EIEIO instead of EINTR.
5519 * sysdeps/mach/hurd/i386/intr-msg.h (INTR_MSG_TRAP): Make
5520 _hurd_intr_rpc_msg_about_to global point to start of controlled
5521 assembly snippet. Make it check canceled flag.
5522 * hurd/hurdsig.c (_hurdsig_abort_rpcs): Only mutate thread if it passed
5523 the _hurd_intr_rpc_msg_about_to point.
5524 * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Remove comment on mutation
5525 issue, remove cancel flag check.
5527 2018-10-26 Joseph Myers <joseph@codesourcery.com>
5529 * scripts/build-many-glibcs.py: Remove compatibility for missing
5530 os.cpu_count and re.fullmatch.
5532 2018-10-26 Szabolcs Nagy <szabolcs.nagy@arm.com>
5535 * sysdeps/ia64/fpu/e_exp2f.S (exp2f): Use WEAK_LIBM_ENTRY.
5536 * sysdeps/ia64/fpu/e_log2f.S (log2f): Likewise.
5537 * sysdeps/ia64/fpu/e_exp2f.S (powf): Likewise.
5539 2018-10-25 Joseph Myers <joseph@codesourcery.com>
5541 * sysdeps/unix/sysv/linux/sys/inotify.h (IN_MASK_CREATE): New
5544 2018-10-25 Florian Weimer <fweimer@redhat.com>
5548 XFAIL siginfo_t si_band conform test on sparc64.
5549 * sysdeps/unix/sysv/linux/sparc/bits/siginfo-arch.h
5550 (__SI_BAND_TYPE): Only override long int default type on sparc64.
5551 * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile
5552 (conformtest-xfail-conds): Add sparc64-linux.
5553 * conform/data/signal.h-data (siginfo_t): XFAIL si_band test on
5555 * conform/data/sys/wait.h-data (siginfo_t): Likewise.
5557 2018-10-25 Joseph Myers <joseph@codesourcery.com>
5559 * elf/elf.h (NT_MIPS_DSP): New macro.
5560 (NT_MIPS_FP_MODE): Likewise.
5562 2018-10-25 Zong Li <zong@andestech.com>
5564 * elf/Makefile (LDFLAGS-tst-execstack-mod.so): Change variable
5565 name by adding the file extension (.so).
5567 2018-10-25 Samuel Thibault <samuel.thibault@ens-lyon.org>
5569 * sysdeps/mach/hurd/i386/Makefile [$(subdir) = conform]
5570 (test-xfail-ISO11/threads.h/linknamespace,
5571 test-xfail-ISO11/threads.h/conform): Add.
5573 2018-10-24 Joseph Myers <joseph@codesourcery.com>
5575 * math/gen-libm-test.py: Import os.
5576 (ALL_FLOATS_MANUAL): New constant.
5577 (ALL_FLOATS_SUFFIX): Likewise.
5578 (Ulps.all_functions): New function.
5579 (real_all_ulps): Likewise.
5580 (generate_err_table_sub): Likewise.
5581 (generate_err_table): Likewise.
5582 (main): Handle -s and -m options.
5583 * manual/libm-err-tab.pl: Remove.
5584 * manual/Makefile ($(objpfx)stamp-libm-err): Use gen-libm-test.py
5585 instead of libm-err-tab.pl.
5586 [$(PERL) != no]: Change condition to [$(if $(PYTHON),$(PERL),no)
5588 * manual/install.texi (Tools for Compilation): Document
5589 requirement for Python to build manual.
5590 * INSTALL: Regenerated.
5592 2018-10-24 Albert ARIBAUD <albert.aribaud@3adev.fr>
5594 * bits/time64.h: New file.
5595 * include/time.h: Replace internal_time_t with __time64_t.
5596 * posix/bits/types (__time64_t): Add.
5597 * stdlib/Makefile: Add bits/time64.h to includes.
5598 * time/tzfile.c: Replace internal_time_t with __time64_t.
5600 2018-10-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
5602 * include/spawn.h (__posix_spawn, posix_spawn_file_actions_addclose,
5603 __posix_spawn_file_actions_adddup2, __posix_spawn_file_actions_destroy,
5604 __posix_spawn_file_actions_init, __posix_spawnattr_init,
5605 __posix_spawnattr_destroy, __posix_spawnattr_setflags,
5606 __posix_spawnattr_setsigdefault, __posix_spawnattr_setsigmask): New
5608 * posix/spawn.c (__posix_spawn): Add libc_hidden_def.
5609 * posix/spawn_faction_addclose.c
5610 (__posix_spawn_file_actions_addclose): Add hidden definition.
5611 * posix/spawn_faction_adddup2.c
5612 (__posix_spawn_file_actions_adddup2): Likewise.
5613 * posix/spawn_faction_destroy.c
5614 (__posix_spawn_file_actions_destroy): Likewise.
5615 * posix/spawn_faction_init.c (__posix_spawn_file_actions_init):
5617 * posix/spawnattr_destroy.c (__posix_spawnattr_destroy): Likewise.
5618 * posix/spawnattr_init.c (__posix_spawnattr_init): Likewise.
5619 * posix/spawnattr_setdefault.c (__posix_spawnattr_setsigdefault):
5621 * posix/spawnattr_setflags.c (__posix_spawnattr_setflags): Likewise.
5622 * posix/spawnattr_setsigmask.c (__posix_spawnattr_setsigmask):
5625 2018-10-24 Andreas Schwab <schwab@suse.de>
5628 * elf/dl-cache.c (_dl_load_cache_lookup): Check for truncated old
5630 * elf/cache.c (print_cache): Likewise.
5632 2018-10-24 Albert ARIBAUD <albert.aribaud@3adev.fr>
5634 * bits/timesize.h: New file.
5635 * stdlib/Makefile (headers): Add bits/timesize.h.
5636 * sysdeps/unix/sysv/linux/bits/msq-pad.h
5637 (__MSQ_PAD_AFTER_TIME): Use __TIMESIZE instead of __WORDSIZE.
5638 * sysdeps/unix/sysv/linux/bits/sem-pad.h
5639 (__SEM_PAD_AFTER_TIME): Likewise.
5640 * sysdeps/unix/sysv/linux/bits/shm-pad.h
5641 (__SHM_PAD_AFTER_TIME): Likewise.
5642 * sysdeps/unix/sysv/linux/hppa/bits/msq-pad.h
5643 (__MSQ_PAD_BEFORE_TIME): Likewise.
5644 * sysdeps/unix/sysv/linux/hppa/bits/sem-pad.h
5645 (__SEM_PAD_BEFORE_TIME): Likewise.
5646 * sysdeps/unix/sysv/linux/hppa/bits/shm-pad.h
5647 (__SHM_PAD_BEFORE_TIME, __SHM_PAD_BETWEEN_TIME_AND_SEGSZ): Likewise.
5648 * sysdeps/unix/sysv/linux/mips/bits/msq-pad.h
5649 (__MSQ_PAD_AFTER_TIME, __MSQ_PAD_BEFORE_TIME): Likewise.
5650 * sysdeps/unix/sysv/linux/powerpc/bits/msq-pad.h
5651 (__MSQ_PAD_BEFORE_TIME): Likewise.
5652 * sysdeps/unix/sysv/linux/powerpc/bits/sem-pad.h
5653 (__SEM_PAD_BEFORE_TIME): Likewise.
5654 * sysdeps/unix/sysv/linux/powerpc/bits/shm-pad.h
5655 (__SHM_PAD_BEFORE_TIME, __SHM_PAD_BETWEEN_TIME_AND_SEGSZ): Likewise.
5656 * sysdeps/unix/sysv/linux/sparc/bits/msq-pad.h
5657 (__MSQ_PAD_BEFORE_TIME): Likewise.
5658 * sysdeps/unix/sysv/linux/sparc/bits/sem-pad.h
5659 (__SEM_PAD_BEFORE_TIME): Likewise.
5660 * sysdeps/unix/sysv/linux/sparc/bits/shm-pad.h
5661 (__SHM_PAD_BEFORE_TIME): Likewise.
5662 * sysdeps/unix/sysv/linux/x86/bits/msq-pad.h: Delete file.
5663 * sysdeps/unix/sysv/linux/x86/bits/shm-pad.h: Likewise.
5664 * sysdeps/unix/sysv/linux/x86/bits/timesize.h: New file.
5666 2018-10-24 H.J. Lu <hongjiu.lu@intel.com>
5668 * benchtests/Makefile (CPPFLAGS-nonlib): Add -DUSE_RDTSCP if
5669 USE_RDTSCP is defined.
5670 * sysdeps/x86/hp-timing.h (HP_TIMING_NOW): Use RDTSCP if
5671 USE_RDTSCP is defined.
5673 2018-10-23 Adhemerval Zanella <adhemerval.zanella@linaro.org>
5675 * misc/tst-preadvwritev2-common.c (IOV_MAX): Define if not
5679 * sysdeps/x86/cpu-features.c (init_cpu_features): Set TSX bits
5680 independently of other flags.
5682 2018-10-23 Florian Weimer <fweimer@redhat.com>
5684 * time/tst-mktime2.c (N_STRINGS): Remove.
5685 (set_timezone): New function.
5686 (spring_forward_gap): Call it. Use FAIL_EXIT1.
5687 (mktime_test1): Report localtime failure and check errno value.
5689 (irix_6_4_bug, bigtime_test): Use TEST_COMPARE.
5690 (do_test): Remove alarm call. Use set_timezone and array_length.
5692 2018-10-23 Andreas Schwab <schwab@suse.de>
5694 * sysdeps/unix/sysv/linux/riscv/setcontext.S (__setcontext)
5695 (__start_context): Use END instead of PSEUDO_END.
5697 2018-10-22 Joseph Myers <joseph@codesourcery.com>
5699 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
5702 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
5706 * wcsmbs/c32rtomb.c: New file.
5707 * wcsmbs/mbrtoc32.c: Likewise.
5708 * wcsmbs/tst-c32-state.c: Likewise.
5709 * wcsmbs/mbrtowc.c (mbrtoc32): Do not define as alias.
5710 * wcsmbs/wcrtomb.c (c32rtomb): Likewise.
5711 * wcsmbs/Makefile (routines): Add mbrtoc32 and c32rtomb.
5712 (tests): Add tst-c32-state.
5713 [$(run-built-tests) = yes] ($(objpfx)tst-c32-state.out): Depend on
5716 2018-10-21 H.J. Lu <hongjiu.lu@intel.com>
5718 * sysdeps/x86/hp-timing.h: Don't include <x86intrin.h>.
5719 (HP_TIMING_NOW): Replace _rdtsc with __builtin_ia32_rdtsc.
5721 2018-10-19 Joseph Myers <joseph@codesourcery.com>
5724 * wcsmbs/c16rtomb.c (c16rtomb): Save first character of surrogate
5725 pair and return 0 in that case, and use saved character to
5726 interpret following character.
5727 * wcsmbs/tst-c16-surrogate.c: New file.
5728 * wcsmbs/Makefile (tests): Add tst-c16-surrogate.c.
5729 [$(run-built-tests) = yes] ($(objpfx)tst-c16-surrogate.out):
5730 Depend on $(gen-locales)
5732 2018-10-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
5735 * sysdeps/unix/sysv/linux/bits/types/siginfo_t.h
5736 (struct siginfo_t): Use correct type for si_band.
5738 2018-10-19 Florian Weimer <fweimer@redhat.com>
5741 * resource/bits/types/struct_rusage.h (struct rusage): Update
5742 comment on struct. Remove extraneous field comment.
5744 2018-10-18 David S. Miller <davem@davemloft.net>
5746 * sysdeps/unix/sysv/linux/sparc/init-first.c: New file.
5747 * sysdeps/unix/sysv/linux/sparc/libc-vdso.h: New file.
5748 * sysdeps/unix/sysv/linux/sparc/Makefile: Add dl-vdso to
5749 sysdep_routines in subdir elf.
5750 * sysdeps/unix/sysv/linux/sparc/Versions: Add GLIBC_PRIVATE
5751 version for __vdso_clock_gettime.
5752 * sysdeps/unix/sysv/linux/sparc/sysdep.h (INTERNAL_VSYSCALL_CALL):
5754 (HAVE_CLOCK_GETTIME_VSYSCALL): Define.
5755 (HAVE_GETTIMEOFDAY_VSYSCALL): Define.
5757 * sysdeps/sparc/fpu/libm-test-ulps: Regenerated.
5759 2018-10-17 H.J. Lu <hongjiu.lu@intel.com>
5761 * sysdeps/i386/init-arch.h: Removed.
5762 * sysdeps/i386/i586/init-arch.h: Likewise.
5763 * sysdeps/i386/i686/init-arch.h: Likewise.
5764 * sysdeps/i386/i686/hp-timing.h: Likewise.
5765 * sysdeps/x86_64/hp-timing.h: Likewise.
5766 * sysdeps/i386/isa.h: New file.
5767 * sysdeps/i386/i586/isa.h: Likewise.
5768 * sysdeps/i386/i686/isa.h: Likewise.
5769 * sysdeps/x86_64/isa.h: Likewise.
5770 * sysdeps/x86/hp-timing.h: New file.
5771 * sysdeps/x86/init-arch.h: Include <isa.h>.
5773 2018-10-17 Joseph Myers <joseph@codesourcery.com>
5775 * math/libm-test-pow.inc (pow_test_data): Do not allow
5776 divide-by-zero exception for pow(+/- 0, -Inf).
5778 2018-10-17 Zack Weinberg <zackw@panix.com>
5780 * manual/job.texi (Job Control is Optional): Remove node, as
5781 job control has not been optional in quite some time.
5782 (Job Control): Mention briefly that systems older than
5783 POSIX.1-2001 might not support job control.
5784 * manual/conf.texi (_POSIX_JOB_CONTROL): Will always be
5785 defined on systems conforming to POSIX.1-2001.
5787 2018-10-17 Arjun Shankar <arjun@redhat.com>
5790 * iconv/gconv_conf.c (__gconv_get_path): Remove locking and fix
5792 * (__gconv_read_conf): Mark function static.
5793 * (once): New static variable.
5794 * (__gconv_load_conf): New function.
5795 * iconv/gconv_int.h (__gconv_load_conf): Likewise.
5796 * iconv/gconv_db.c (once): Remove static variable.
5797 * (__gconv_compare_alias): Use __gconv_load_conf instead of
5799 * (__gconv_find_transform): Likewise.
5800 * iconv/tst-iconv-mt.c: New test.
5801 * iconv/Makefile: Add tst-iconv_mt.
5803 2018-10-17 Joseph Myers <joseph@codesourcery.com>
5805 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
5807 * sysdeps/unix/sysv/linux/bits/shm.h: Include <bits/shm-pad.h>.
5808 (shmatt_t): Define as __syscall_ulong_t.
5809 (__SHM_PAD_TIME): New macro, depending on [__SHM_PAD_BEFORE_TIME]
5810 and [__SHM_PAD_AFTER_TIME].
5811 (struct shmid_ds): Define time fields using __SHM_PAD_TIME.
5812 Define shm_segsz and associated padding based on
5813 [__SHM_SEGSZ_AFTER_TIME] and [__SHM_PAD_BETWEEN_TIME_AND_SEGSZ].
5814 Use __syscall_ulong_t instead of unsigned long int.
5815 [__USE_MISC] (struct shminfo): Use __syscall_ulong_t instead of
5817 [__USE_MISC] (struct shm_info): Likewise.
5818 * sysdeps/unix/sysv/linux/bits/shm-pad.h: New file.
5819 * sysdeps/unix/sysv/linux/hppa/bits/shm-pad.h: Likewise.
5820 * sysdeps/unix/sysv/linux/mips/bits/shm-pad.h: Likewise.
5821 * sysdeps/unix/sysv/linux/powerpc/bits/shm-pad.h: Likewise.
5822 * sysdeps/unix/sysv/linux/sparc/bits/shm-pad.h: Likewise.
5823 * sysdeps/unix/sysv/linux/x86/bits/shm-pad.h: Likewise.
5824 * sysdeps/unix/sysv/linux/hppa/bits/shm.h: Remove.
5825 * sysdeps/unix/sysv/linux/mips/bits/shm.h: Likewise.
5826 * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
5827 * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
5828 * sysdeps/unix/sysv/linux/x86/bits/shm.h: Likewise.
5830 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
5832 * sysdeps/unix/sysv/linux/bits/shm.h: Include <bits/shmlba.h>.
5833 (SHMLBA): Remove macro.
5834 (__getpagesize): Remove function declaration.
5835 * sysdeps/unix/sysv/linux/hppa/bits/shm.h: Include
5837 (SHMLBA): Remove macro.
5838 * sysdeps/unix/sysv/linux/mips/bits/shm.h: Include
5840 (SHMLBA): Remove macro.
5841 * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Include
5843 (SHMLBA): Remove macro.
5844 (__getpagesize): Remove function declaration.
5845 * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Include
5847 (SHMLBA): Remove macro.
5848 (__getshmlba): Remove function declaration.
5849 * sysdeps/unix/sysv/linux/x86/bits/shm.h: Include <bits/shmlba.h>.
5850 (SHMLBA): Remove macro.
5851 (__getpagesize): Remove function declaration.
5852 * sysdeps/unix/sysv/linux/arm/bits/shm.h: Remove file.
5853 * sysdeps/unix/sysv/linux/ia64/bits/shm.h: Likewise.
5854 * sysdeps/unix/sysv/linux/sh/bits/shm.h: Likewise.
5855 * sysdeps/unix/sysv/linux/bits/shmlba.h: New file.
5856 * sysdeps/unix/sysv/linux/arm/bits/shmlba.h: Likewise.
5857 * sysdeps/unix/sysv/linux/hppa/bits/shmlba.h: Likewise.
5858 * sysdeps/unix/sysv/linux/ia64/bits/shmlba.h: Likewise.
5859 * sysdeps/unix/sysv/linux/mips/bits/shmlba.h: Likewise.
5860 * sysdeps/unix/sysv/linux/sh/bits/shmlba.h: Likewise.
5861 * sysdeps/unix/sysv/linux/sparc/bits/shmlba.h: Likewise.
5863 2018-10-17 Stefan Liebler <stli@linux.ibm.com>
5866 * nptl/tst-mutex10.c: New File.
5867 * nptl/Makefile (tests): Add tst-mutex10.
5868 (tst-mutex10-ENV): New variable.
5869 * sysdeps/unix/sysv/linux/s390/force-elision.h: (FORCE_ELISION):
5870 Ensure that elision path is used if elision is available.
5871 * sysdeps/unix/sysv/linux/powerpc/force-elision.h (FORCE_ELISION):
5873 * sysdeps/unix/sysv/linux/x86/force-elision.h: (FORCE_ELISION):
5875 * nptl/pthreadP.h (PTHREAD_MUTEX_TYPE, PTHREAD_MUTEX_TYPE_ELISION)
5876 (PTHREAD_MUTEX_PSHARED): Use atomic_load_relaxed.
5877 * nptl/pthread_mutex_consistent.c (pthread_mutex_consistent): Likewise.
5878 * nptl/pthread_mutex_getprioceiling.c (pthread_mutex_getprioceiling):
5880 * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full)
5881 (__pthread_mutex_cond_lock_adjust): Likewise.
5882 * nptl/pthread_mutex_setprioceiling.c (pthread_mutex_setprioceiling):
5884 * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock): Likewise.
5885 * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock): Likewise.
5886 * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full): Likewise.
5887 * sysdeps/nptl/bits/thread-shared-types.h (struct __pthread_mutex_s):
5889 * nptl/pthread_mutex_destroy.c (__pthread_mutex_destroy):
5890 Use atomic_load_relaxed and atomic_store_relaxed.
5891 * nptl/pthread_mutex_init.c (__pthread_mutex_init):
5892 Use atomic_store_relaxed.
5894 2018-10-17 Andreas Schwab <schwab@suse.de>
5896 * benchtests/bench-strtod.c (TIMEOUT): Don't define.
5897 * crypt/badsalttest.c (TIMEOUT): Likewise.
5898 * crypt/sha256c-test.c (TIMEOUT): Likewise.
5899 * dirent/tst-fdopendir.c (TIMEOUT): Likewise.
5900 * io/test-lfs.c (TIMEOUT): Likewise.
5901 * libio/tst-atime.c (TIMEOUT): Likewise.
5902 * localedata/tst-leaks.c (TIMEOUT): Likewise.
5903 * nptl/tst-cancel19.c (TIMEOUT): Likewise.
5904 * nptl/tst-cancel22.c (TIMEOUT): Likewise.
5905 * nptl/tst-cancel25.c (TIMEOUT): Likewise.
5906 * nptl/tst-cancel7.c (TIMEOUT): Likewise.
5907 * nptl/tst-cond-except.c (TIMEOUT): Likewise.
5908 * nptl/tst-cond11.c (TIMEOUT): Likewise.
5909 * nptl/tst-cond14.c (TIMEOUT): Likewise.
5910 * nptl/tst-cond15.c (TIMEOUT): Likewise.
5911 * nptl/tst-cond24.c (TIMEOUT): Likewise.
5912 * nptl/tst-cond25.c (TIMEOUT): Likewise.
5913 * nptl/tst-kill2.c (TIMEOUT): Likewise.
5914 * nptl/tst-kill3.c (TIMEOUT): Likewise.
5915 * nptl/tst-mutex4.c (TIMEOUT): Likewise.
5916 * nptl/tst-mutex5.c (TIMEOUT): Likewise.
5917 * nptl/tst-mutex9.c (TIMEOUT): Likewise.
5918 * nptl/tst-once2.c (TIMEOUT): Likewise.
5919 * nptl/tst-once3.c (TIMEOUT): Likewise.
5920 * nptl/tst-once4.c (TIMEOUT): Likewise.
5921 * nptl/tst-robust8.c (TIMEOUT): Likewise.
5922 * nptl/tst-robust9.c (TIMEOUT): Likewise.
5923 * nptl/tst-rwlock16.c (TIMEOUT): Likewise.
5924 * nptl/tst-sem14.c (TIMEOUT): Likewise.
5925 * nptl/tst-sem6.c (TIMEOUT): Likewise.
5926 * nptl/tst-signal3.c (TIMEOUT): Likewise.
5927 * nptl/tst-spin4.c (TIMEOUT): Likewise.
5928 * nptl/tst-tls3.c (TIMEOUT): Likewise.
5929 * nptl/tst-tls4.c (TIMEOUT): Likewise.
5930 * posix/tst-chmod.c (TIMEOUT): Likewise.
5931 * posix/tst-getaddrinfo4.c (TIMEOUT): Likewise.
5932 * posix/tst-getaddrinfo5.c (TIMEOUT): Likewise.
5933 * posix/tst-preadwrite-common.c (TIMEOUT): Likewise.
5934 * posix/tst-regex2.c (TIMEOUT): Likewise.
5935 * posix/tst-waitid.c (TIMEOUT): Likewise.
5936 * rt/tst-aio.c (TIMEOUT): Likewise.
5937 * rt/tst-aio10.c (TIMEOUT): Likewise.
5938 * rt/tst-aio4.c (TIMEOUT): Likewise.
5939 * rt/tst-aio5.c (TIMEOUT): Likewise.
5940 * rt/tst-aio6.c (TIMEOUT): Likewise.
5941 * rt/tst-aio64.c (TIMEOUT): Likewise.
5942 * rt/tst-aio7.c (TIMEOUT): Likewise.
5943 * rt/tst-aio9.c (TIMEOUT): Likewise.
5944 * rt/tst-clock.c (TIMEOUT): Likewise.
5945 * rt/tst-cpuclock1.c (TIMEOUT): Likewise.
5946 * rt/tst-cpuclock2.c (TIMEOUT): Likewise.
5947 * rt/tst-mqueue2.c (TIMEOUT): Likewise.
5948 * rt/tst-mqueue4.c (TIMEOUT): Likewise.
5949 * rt/tst-mqueue5.c (TIMEOUT): Likewise.
5950 * rt/tst-timer4.c (TIMEOUT): Likewise.
5951 * stdio-common/tst-fseek.c (TIMEOUT): Likewise.
5952 * stdio-common/tst-rndseek.c (TIMEOUT): Likewise.
5953 * stdlib/tst-empty-env.c (TIMEOUT): Likewise.
5954 * sysdeps/wordsize-64/tst-writev.c (TIMEOUT): Likewise.
5955 * time/tst-ftime.c (TIMEOUT): Likewise.
5956 * timezone/tst-tzset.c (TIMEOUT): Likewise.
5958 2018-10-16 Anton Youdkevitch <anton.youdkevitch@bell-sw.com>
5960 * sysdeps/aarch64/multiarch/memcpy_thunderx.S: Remove thunderx2 code.
5961 * sysdeps/aarch64/multiarch/memcpy_thunderx2.S: New implementation
5964 2018-10-15 Joseph Myers <joseph@codesourcery.com>
5966 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
5968 * sysdeps/unix/sysv/linux/bits/sem.h: Include <bits/sem-pad.h>
5969 instead of <bits/wordsize.h>.
5970 (__SEM_PAD_TIME): New macro, depending on [__SEM_PAD_BEFORE_TIME]
5971 and [__SEM_PAD_AFTER_TIME].
5972 (struct semid_ds): Define time fields using __SEM_PAD_TIME. Use
5973 __syscall_ulong_t instead of unsigned long int.
5974 * sysdeps/unix/sysv/linux/bits/sem-pad.h: New file.
5975 * sysdeps/unix/sysv/linux/hppa/bits/sem-pad.h: Likewise.
5976 * sysdeps/unix/sysv/linux/mips/bits/sem-pad.h: Likewise.
5977 * sysdeps/unix/sysv/linux/powerpc/bits/sem-pad.h: Likewise.
5978 * sysdeps/unix/sysv/linux/sparc/bits/sem-pad.h: Likewise.
5979 * sysdeps/unix/sysv/linux/x86/bits/sem-pad.h: Likewise.
5980 * sysdeps/unix/sysv/linux/hppa/bits/sem.h: Remove.
5981 * sysdeps/unix/sysv/linux/mips/bits/sem.h: Likewise.
5982 * sysdeps/unix/sysv/linux/powerpc/bits/sem.h: Likewise.
5983 * sysdeps/unix/sysv/linux/sparc/bits/sem.h: Likewise.
5984 * sysdeps/unix/sysv/linux/x86/bits/sem.h: Likewise.
5986 2018-10-14 Paul Eggert <eggert@cs.ucla.edu>
5988 regex: simplify by using intprops.h
5990 * posix/regex_internal.h [_LIBC]: Include intprops.h.
5991 (TYPE_SIGNED, INT_ADD_WRAPV) [_LIBC]: Remove.
5992 intprops.h defines them.
5994 regex: __builtin_expect → __glibc_unlikely
5996 This refactoring was prompted by a problem when the regex code is
5997 used as part of Gnulib and when the builder’s compiler does not grok
5998 __builtin_expect. Problem reported for Gawk by Nelson H.F. Beebe in:
5999 https://lists.gnu.org/r/bug-gnulib/2018-09/msg00137.html
6000 Although this refactoring does not fix the problem directly,
6001 we might as well have Gawk use the now-preferred glibc style for when
6002 __builtin_expect is unavailable.
6003 * posix/regex_internal.h (BE): Remove.
6004 All uses replaced by __glibc_unlikely or __glibc_likely.
6006 2018-10-11 Joseph Myers <joseph@codesourcery.com>
6008 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
6010 * sysdeps/unix/sysv/linux/bits/msq.h: Include <bits/msq-pad.h>
6011 instead of <bits/wordsize.h>.
6012 (msgqnum_t): Define as __syscall_ulong_t.
6013 (msglen_t): Likewise.
6014 (__MSQ_PAD_TIME): New macro, depending on [__MSQ_PAD_BEFORE_TIME]
6015 and [__MSQ_PAD_AFTER_TIME].
6016 (struct msqid_ds): Define time fields using __MSQ_PAD_TIME. Use
6017 __syscall_ulong_t instead of unsigned long int.
6018 * sysdeps/unix/sysv/linux/bits/msq-pad.h: New file.
6019 * sysdeps/unix/sysv/linux/hppa/bits/msq-pad.h: Likewise.
6020 * sysdeps/unix/sysv/linux/mips/bits/msq-pad.h: Likewise.
6021 * sysdeps/unix/sysv/linux/powerpc/bits/msq-pad.h: Likewise.
6022 * sysdeps/unix/sysv/linux/sparc/bits/msq-pad.h: Likewise.
6023 * sysdeps/unix/sysv/linux/x86/bits/msq-pad.h: Likewise.
6024 * sysdeps/unix/sysv/linux/hppa/bits/msq.h: Remove.
6025 * sysdeps/unix/sysv/linux/mips/bits/msq.h: Likewise.
6026 * sysdeps/unix/sysv/linux/powerpc/bits/msq.h: Likewise.
6027 * sysdeps/unix/sysv/linux/sparc/bits/msq.h: Likewise.
6028 * sysdeps/unix/sysv/linux/x86/bits/msq.h: Likewise.
6030 2018-10-10 Joseph Myers <joseph@codesourcery.com>
6032 * sysdeps/unix/sysv/linux/bits/shm.h: Include <bits/wordsize.h>.
6033 (struct shmid_ds): Condition padding after time fields on
6035 * sysdeps/unix/sysv/linux/alpha/bits/shm.h: Remove file.
6036 * sysdeps/unix/sysv/linux/generic/bits/shm.h: Likewise.
6037 * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
6039 * sysdeps/unix/sysv/linux/bits/sem.h: Include <bits/wordsize.h>.
6040 (struct semid_ds): Condition padding after time fields on
6042 * sysdeps/unix/sysv/linux/alpha/bits/sem.h: Remove file.
6043 * sysdeps/unix/sysv/linux/generic/bits/sem.h: Likewise.
6044 * sysdeps/unix/sysv/linux/ia64/bits/sem.h: Likewise.
6045 * sysdeps/unix/sysv/linux/s390/bits/sem.h: Likewise.
6047 * sysdeps/unix/sysv/linux/bits/msq.h: Include <bits/wordsize.h>.
6048 (struct msqid_ds): Condition padding after time fields on
6050 * sysdeps/unix/sysv/linux/alpha/bits/msq.h: Remove file.
6051 * sysdeps/unix/sysv/linux/generic/bits/msq.h: Likewise.
6052 * sysdeps/unix/sysv/linux/ia64/bits/msq.h: Likewise.
6053 * sysdeps/unix/sysv/linux/s390/bits/msq.h: Likewise.
6055 2018-10-09 Szabolcs Nagy <szabolcs.nagy@arm.com>
6057 * nss/tst-nss-files-hosts-multi.c (TIMEOUT): Define.
6059 2018-10-09 Szabolcs Nagy <szabolcs.nagy@arm.com>
6061 * libio/tst-readline.c (TIMEOUT): Define.
6063 2018-10-08 Paul Eggert <eggert@cs.ucla.edu>
6065 mktime fix for Gnulib + coreutils
6067 This fix affects only Gnulib. Problem discovered when
6068 mktime.c was used as part of Gnulib in bleeding-edge Coreutils.
6070 (my_tzset) [!_LIBC && !NEED_MKTIME_WORKING && !NEED_MKTIME_WINDOWS]:
6071 Do not define since it is not used. Defining an unused static
6072 function prompts a warning from GCC when Coreutils is configured
6073 with --enable-gcc-warnings.
6075 2018-10-08 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
6077 * benchtests/scripts/compare_bench.py (main): set float type on
6080 2018-10-08 Rafal Luzynski <digitalfreak@lingonborough.com>
6083 * localedata/locales/kl_GL (mon): Update, the relative case.
6084 (alt_mon): Add, fill with month names in the nominative case.
6085 (d_t_fmt): Set to "%a %b %d %Y %T %Z".
6086 (d_fmt): Set to "%b %d %Y".
6088 2018-10-04 Joseph Myers <joseph@codesourcery.com>
6090 * sysdeps/unix/sysv/linux/hppa/bits/mman.h: Include
6091 <bits/mman-linux.h>.
6092 (PROT_READ): Don't define here.
6093 (PROT_WRITE): Likewise.
6094 (PROT_EXEC): Likewise.
6095 (PROT_NONE): Likewise.
6096 (PROT_GROWSDOWN): Likewise.
6097 (PROT_GROWSUP): Likewise.
6098 (MAP_SHARED): Likewise.
6099 (MAP_PRIVATE): Likewise.
6100 [__USE_MISC] (MAP_SHARED_VALIDATE): Likewise.
6101 [__USE_MISC] (MAP_FILE): Likewise.
6102 [__USE_MISC] (MAP_ANONYMOUS): Likewise.
6103 [__USE_MISC] (MAP_ANON): Likewise.
6104 [__USE_MISC] (MAP_HUGE_SHIFT): Likewise.
6105 [__USE_MISC] (MAP_HUGE_MASK): Likewise.
6106 (MCL_CURRENT): Likewise.
6107 (MCL_FUTURE): Likewise.
6108 (MCL_ONFAULT): Likewise.
6109 [__USE_MISC] (MADV_NORMAL): Likewise.
6110 [__USE_MISC] (MADV_RANDOM): Likewise.
6111 [__USE_MISC] (MADV_SEQUENTIAL): Likewise.
6112 [__USE_MISC] (MADV_WILLNEED): Likewise.
6113 [__USE_MISC] (MADV_DONTNEED): Likewise.
6114 [__USE_MISC] (MADV_FREE): Likewise.
6115 [__USE_MISC] (MADV_REMOVE): Likewise.
6116 [__USE_MISC] (MADV_DONTFORK): Likewise.
6117 [__USE_MISC] (MADV_DOFORK): Likewise.
6118 [__USE_MISC] (MADV_HWPOISON): Likewise.
6119 [__USE_XOPEN2K] (POSIX_MADV_NORMAL): Likewise.
6120 [__USE_XOPEN2K] (POSIX_MADV_RANDOM): Likewise.
6121 [__USE_XOPEN2K] (POSIX_MADV_SEQUENTIAL): Likewise.
6122 [__USE_XOPEN2K] (POSIX_MADV_WILLNEED): Likewise.
6123 [__USE_XOPEN2K] (POSIX_MADV_DONTNEED): Likewise.
6124 (__MAP_ANONYMOUS): New macro.
6125 [__USE_MISC] (MAP_TYPE): Undefine and redefine after
6126 <bits/mman-linux.h> inclusion.
6127 (MAP_FIXED): Likewise.
6128 (MS_SYNC): Likewise.
6129 (MS_ASYNC): Likewise.
6130 (MS_INVALIDATE): Likewise.
6131 [__USE_MISC] (MADV_MERGEABLE): Likewise.
6132 [__USE_MISC] (MADV_UNMERGEABLE): Likewise.
6133 [__USE_MISC] (MADV_HUGEPAGE): Likewise.
6134 [__USE_MISC] (MADV_NOHUGEPAGE): Likewise.
6135 [__USE_MISC] (MADV_DONTDUMP): Likewise.
6136 [__USE_MISC] (MADV_DODUMP): Likewise.
6137 [__USE_MISC] (MADV_WIPEONFORK): Likewise.
6138 [__USE_MISC] (MADV_KEEPONFORK): Likewise.
6141 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (NO_MATH_REDIRECT):
6143 * sysdeps/ieee754/ldbl-opt/test-nldbl-redirect.c: New file.
6144 * sysdeps/ieee754/ldbl-opt/Makefile [$(subdir) = math] (tests):
6145 Add test-nldbl-redirect.
6146 [$(subdir) = math] (CFLAGS-test-nldbl-redirect.c): New variable.
6147 [$(subdir) = math] ($(objpfx)test-nldbl-redirect): Depend on
6148 $(objpfx)libnldbl_nonshared.a.
6150 2018-10-04 Stefan Liebler <stli@linux.ibm.com>
6152 * support/support.h (support_objdir_elf_ldso): New variable.
6153 * support/support_paths.c (support_objdir_elf_ldso): Likewise.
6154 * support/Makefile (CFLAGS-support_paths.c): Add definition
6155 for OBJDIR_ELF_LDSO_PATH.
6156 * support/test-container.c (main): Search for the ld.so
6157 which is also used by the testsuite.
6159 2018-10-02 Rafal Luzynski <digitalfreak@lingonborough.com>
6162 * localedata/locales/kl_GL: (abday): Fix spelling of Sun (Sunday),
6163 should be "sap" rather than "sab".
6164 (day): Fix spelling of Sunday, should be "sapaat" rather than
6167 2018-10-02 Joseph Myers <joseph@codesourcery.com>
6169 * math/libm-test-fma.inc (fma_test_data): Add more tests.
6171 2018-10-02 Martin Jansa <Martin.Jansa@gmail.com>
6174 * sysdeps/ieee754/soft-fp/s_fdiv.c: Include <libc-diag.h> and use
6175 DIAG_PUSH_NEEDS_COMMENT, DIAG_IGNORE_NEEDS_COMMENT and
6176 DIAG_POP_NEEDS_COMMENT to disable -Wmaybe-uninitialized.
6178 2018-10-02 Adhemerval Zanella <adhemerval.zanella@linaro.org>
6180 * sysdeps/unix/sysv/linux/fd_to_filename.h: Add missing includes.
6182 2018-10-02 H.J. Lu <hongjiu.lu@intel.com>
6184 * sysdeps/unix/sysv/linux/x86/Makefile (CFLAGS-elision-lock.c):
6186 (CFLAGS-elision-unlock.c): Likewise.
6187 (CFLAGS-elision-timed.c): Likewise.
6188 (CFLAGS-elision-trylock.c): Likewise.
6189 * sysdeps/unix/sysv/linux/x86/hle.h: Rewritten.
6191 2018-10-02 Adhemerval Zanella <adhemerval.zanella@linaro.org>
6194 * libio/Makefile (tests): Add tst-memstream4 and tst-wmemstream4.
6195 * libio/freopen.c (freopen): Sync stream before reopen and adjust to
6196 new fd_to_filename interface.
6197 * libio/freopen64.c (freopen64): Likewise.
6198 * libio/tst-memstream.h: New file.
6199 * libio/tst-memstream4.c: Likewise.
6200 * libio/tst-wmemstream4.c: Likewise.
6201 * sysdeps/generic/fd_to_filename.h (fd_to_filename): Change signature.
6202 * sysdeps/unix/sysv/linux/fd_to_filename.h (fd_to_filename): Likewise
6203 and remove internal dynamic allocation.
6205 2018-10-01 Joseph Myers <joseph@codesourcery.com>
6207 * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_GNU]
6208 (MREMAP_MAYMOVE): Do not define here.
6209 [__USE_GNU] (MREMAP_FIXED): Likewise.
6210 * sysdeps/unix/sysv/linux/bits/mman-shared.h [__USE_GNU]
6211 (MREMAP_MAYMOVE): Define here instead.
6212 [__USE_GNU] (MREMAP_FIXED): Likewise.
6213 * sysdeps/unix/sysv/linux/hppa/bits/mman.h [__USE_GNU]
6214 (MREMAP_MAYMOVE): Remove.
6215 [__USE_GNU] (MREMAP_FIXED): Likewise.
6217 2018-09-28 Joseph Myers <joseph@codesourcery.com>
6219 * math/fromfp.h: Do not include <math_private.h>.
6220 * math/s_cacosh_template.c: Likewise.
6221 * math/s_casin_template.c: Likewise.
6222 * math/s_casinh_template.c: Likewise.
6223 * math/s_ccos_template.c: Likewise.
6224 * math/s_cproj_template.c: Likewise.
6225 * math/s_fdim_template.c: Likewise.
6226 * math/s_fmaxmag_template.c: Likewise.
6227 * math/s_fminmag_template.c: Likewise.
6228 * math/s_iseqsig_template.c: Likewise.
6229 * math/s_ldexp_template.c: Likewise.
6230 * math/s_nextdown_template.c: Likewise.
6231 * math/w_log1p_template.c: Likewise.
6232 * math/w_scalbln_template.c: Likewise.
6233 * sysdeps/aarch64/fpu/feholdexcpt.c: Likewise.
6234 * sysdeps/aarch64/fpu/fesetround.c: Likewise.
6235 * sysdeps/aarch64/fpu/fgetexcptflg.c: Likewise.
6236 * sysdeps/aarch64/fpu/ftestexcept.c: Likewise.
6237 * sysdeps/aarch64/fpu/s_llrint.c: Likewise.
6238 * sysdeps/aarch64/fpu/s_llrintf.c: Likewise.
6239 * sysdeps/aarch64/fpu/s_lrint.c: Likewise.
6240 * sysdeps/aarch64/fpu/s_lrintf.c: Likewise.
6241 * sysdeps/i386/fpu/s_atanl.c: Likewise.
6242 * sysdeps/i386/fpu/s_f32xaddf64.c: Likewise.
6243 * sysdeps/i386/fpu/s_f32xsubf64.c: Likewise.
6244 * sysdeps/i386/fpu/s_fdim.c: Likewise.
6245 * sysdeps/i386/fpu/s_logbl.c: Likewise.
6246 * sysdeps/i386/fpu/s_rintl.c: Likewise.
6247 * sysdeps/i386/fpu/s_significandl.c: Likewise.
6248 * sysdeps/ia64/fpu/s_matherrf.c: Likewise.
6249 * sysdeps/ia64/fpu/s_matherrl.c: Likewise.
6250 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
6251 * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
6252 * sysdeps/ieee754/dbl-64/s_fma.c: Likewise.
6253 * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
6254 * sysdeps/ieee754/flt-32/s_cbrtf.c: Likewise.
6255 * sysdeps/ieee754/k_standardf.c: Likewise.
6256 * sysdeps/ieee754/k_standardl.c: Likewise.
6257 * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
6258 * sysdeps/ieee754/ldbl-64-128/s_finitel.c: Likewise.
6259 * sysdeps/ieee754/ldbl-64-128/s_fpclassifyl.c: Likewise.
6260 * sysdeps/ieee754/ldbl-64-128/s_isinfl.c: Likewise.
6261 * sysdeps/ieee754/ldbl-64-128/s_isnanl.c: Likewise.
6262 * sysdeps/ieee754/ldbl-64-128/s_signbitl.c: Likewise.
6263 * sysdeps/ieee754/ldbl-96/s_cbrtl.c: Likewise.
6264 * sysdeps/ieee754/ldbl-96/s_fma.c: Likewise.
6265 * sysdeps/ieee754/ldbl-96/s_fmal.c: Likewise.
6266 * sysdeps/ieee754/s_signgam.c: Likewise.
6267 * sysdeps/powerpc/power5+/fpu/s_modf.c: Likewise.
6268 * sysdeps/powerpc/power5+/fpu/s_modff.c: Likewise.
6269 * sysdeps/powerpc/power7/fpu/s_logbf.c: Likewise.
6270 * sysdeps/riscv/rv64/rvd/s_ceil.c: Likewise.
6271 * sysdeps/riscv/rv64/rvd/s_floor.c: Likewise.
6272 * sysdeps/riscv/rv64/rvd/s_nearbyint.c: Likewise.
6273 * sysdeps/riscv/rv64/rvd/s_round.c: Likewise.
6274 * sysdeps/riscv/rv64/rvd/s_roundeven.c: Likewise.
6275 * sysdeps/riscv/rv64/rvd/s_trunc.c: Likewise.
6276 * sysdeps/riscv/rvd/s_finite.c: Likewise.
6277 * sysdeps/riscv/rvd/s_fmax.c: Likewise.
6278 * sysdeps/riscv/rvd/s_fmin.c: Likewise.
6279 * sysdeps/riscv/rvd/s_fpclassify.c: Likewise.
6280 * sysdeps/riscv/rvd/s_isinf.c: Likewise.
6281 * sysdeps/riscv/rvd/s_isnan.c: Likewise.
6282 * sysdeps/riscv/rvd/s_issignaling.c: Likewise.
6283 * sysdeps/riscv/rvf/fegetround.c: Likewise.
6284 * sysdeps/riscv/rvf/feholdexcpt.c: Likewise.
6285 * sysdeps/riscv/rvf/fesetenv.c: Likewise.
6286 * sysdeps/riscv/rvf/fesetround.c: Likewise.
6287 * sysdeps/riscv/rvf/feupdateenv.c: Likewise.
6288 * sysdeps/riscv/rvf/fgetexcptflg.c: Likewise.
6289 * sysdeps/riscv/rvf/ftestexcept.c: Likewise.
6290 * sysdeps/riscv/rvf/s_ceilf.c: Likewise.
6291 * sysdeps/riscv/rvf/s_finitef.c: Likewise.
6292 * sysdeps/riscv/rvf/s_floorf.c: Likewise.
6293 * sysdeps/riscv/rvf/s_fmaxf.c: Likewise.
6294 * sysdeps/riscv/rvf/s_fminf.c: Likewise.
6295 * sysdeps/riscv/rvf/s_fpclassifyf.c: Likewise.
6296 * sysdeps/riscv/rvf/s_isinff.c: Likewise.
6297 * sysdeps/riscv/rvf/s_isnanf.c: Likewise.
6298 * sysdeps/riscv/rvf/s_issignalingf.c: Likewise.
6299 * sysdeps/riscv/rvf/s_nearbyintf.c: Likewise.
6300 * sysdeps/riscv/rvf/s_roundevenf.c: Likewise.
6301 * sysdeps/riscv/rvf/s_roundf.c: Likewise.
6302 * sysdeps/riscv/rvf/s_truncf.c: Likewise.
6303 * sysdeps/riscv/rv64/rvd/s_rint.c: Include <stdbool.h> instead of
6305 * sysdeps/riscv/rvf/s_rintf.c: Likewise.
6307 2018-09-28 H.J. Lu <hongjiu.lu@intel.com>
6310 * sysdeps/i386/dl-cet.c: Removed.
6311 * sysdeps/i386/dl-machine.h (_dl_runtime_resolve_shstk): New
6313 (_dl_runtime_profile_shstk): Likewise.
6314 (elf_machine_runtime_setup): Use _dl_runtime_profile_shstk or
6315 _dl_runtime_resolve_shstk if SHSTK is enabled by kernel.
6317 2018-09-28 Adhemerval Zanella <adhemerval.zanella@linaro.org>
6320 * misc/tst-preadvwritev2-common.c (do_test_with_invalid_fd,
6321 do_test_with_invalid_iov): New tests.
6322 * misc/tst-preadvwritev2.c, misc/tst-preadvwritev64v2.c (do_test):
6323 Call do_test_with_invalid_fd and do_test_with_invalid_iov.
6324 * sysdeps/unix/sysv/linux/preadv2.c (preadv2): Use fallback code iff
6326 * sysdeps/unix/sysv/linux/preadv64v2.c (preadv64v2): Likewise.
6327 * sysdeps/unix/sysv/linux/pwritev2.c (pwritev2): Likewise.
6328 * sysdeps/unix/sysv/linux/pwritev64v2.c (pwritev64v2): Likewise.
6330 2018-09-27 Joseph Myers <joseph@codesourcery.com>
6332 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
6333 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT]
6334 (MATH_REDIRECT_BINARY_ARGS): New macro.
6335 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
6336 && !NO_MATH_REDIRECT] (copysign): Redirect using MATH_REDIRECT.
6337 * sysdeps/alpha/fpu/s_copysign.c: Define NO_MATH_REDIRECT before
6339 * sysdeps/alpha/fpu/s_copysignf.c: Likewise.
6340 * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
6341 * sysdeps/ieee754/float128/s_copysignf128.c: Likewise.
6342 * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
6343 * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
6344 * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
6345 * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
6346 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c:
6348 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c:
6350 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: Likewise.
6351 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c: Likewise.
6352 * sysdeps/riscv/rvd/s_copysign.c: Likewise.
6353 * sysdeps/riscv/rvf/s_copysignf.c: Likewise.
6354 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.c:
6356 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.c:
6358 * sysdeps/generic/math_private_calls.h
6359 [!__MATH_DECLARING_LONG_DOUBLE || !NO_LONG_DOUBLE] (__copysign):
6360 Do not declare and define as an inline function.
6361 * math/divtc3.c (__divtc3): Use copysign functions instead of
6362 __copysign variants.
6363 * math/multc3.c (__multc3): Likewise.
6364 * sysdeps/generic/math-type-macros.h (M_COPYSIGN): Likewise.
6365 * sysdeps/ieee754/dbl-64/e_atan2.c (signArctan2): Likewise.
6366 * sysdeps/ieee754/dbl-64/e_atanh.c (__ieee754_atanh): Likewise.
6367 * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r):
6369 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn): Likewise.
6370 (__ieee754_yn): Likewise.
6371 * sysdeps/ieee754/dbl-64/s_asinh.c (__asinh): Likewise.
6372 * sysdeps/ieee754/dbl-64/s_atan.c (__signArctan): Likewise.
6373 * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): Likewise.
6374 * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
6375 * sysdeps/ieee754/dbl-64/s_sin.c (do_sin): Likewise.
6377 * sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Likewise.
6378 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c (__nearbyint):
6380 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c (__scalbln):
6382 * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c (__scalbn):
6384 * sysdeps/ieee754/flt-32/e_atanhf.c (__ieee754_atanhf): Likewise.
6385 * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r):
6387 * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_jnf): Likewise.
6388 (__ieee754_ynf): Likewise.
6389 * sysdeps/ieee754/flt-32/s_asinhf.c (__asinhf): Likewise.
6390 * sysdeps/ieee754/flt-32/s_scalbnf.c (__scalbnf): Likewise.
6391 * sysdeps/ieee754/k_standard.c (__kernel_standard): Likewise.
6392 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (__ieee754_gammal_r):
6394 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_jnl): Likewise.
6395 (__ieee754_ynl): Likewise.
6396 * sysdeps/ieee754/ldbl-128/s_scalblnl.c (__scalblnl): Likewise.
6397 * sysdeps/ieee754/ldbl-128/s_scalbnl.c (__scalbnl): Likewise.
6398 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
6400 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
6401 (__ieee754_ynl): Likewise.
6402 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c (__fmal): Likewise.
6403 * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
6404 * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
6405 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
6407 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl): Likewise.
6409 * sysdeps/ieee754/ldbl-96/s_asinhl.c (__asinhl): Likewise.
6410 * sysdeps/ieee754/ldbl-96/s_scalblnl.c (__scalblnl): Likewise.
6411 * sysdeps/ieee754/ldbl-opt/nldbl-copysign.c (copysignl): Likewise.
6412 * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Likewise.
6413 * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
6415 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
6416 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (round): Redirect
6417 using MATH_REDIRECT.
6418 * sysdeps/aarch64/fpu/s_round.c: Define NO_MATH_REDIRECT before
6420 * sysdeps/aarch64/fpu/s_roundf.c: Likewise.
6421 * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
6422 * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
6423 * sysdeps/ieee754/float128/s_roundf128.c: Likewise.
6424 * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
6425 * sysdeps/ieee754/ldbl-128/s_roundl.c: Likewise.
6426 * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
6427 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c: Likewise.
6428 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c: Likewise.
6429 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c: Likewise.
6430 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c: Likewise.
6431 * sysdeps/riscv/rv64/rvd/s_round.c: Likewise.
6432 * sysdeps/riscv/rvf/s_roundf.c: Likewise.
6433 * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
6434 (round): Redirect to __round.
6435 (__roundl): Call round instead of __round.
6436 * sysdeps/powerpc/fpu/math_private.h [_ARCH_PWR5X] (__round):
6438 [_ARCH_PWR5X] (__roundf): Likewise.
6439 * sysdeps/ieee754/dbl-64/e_gamma_r.c (gamma_positive): Use round
6440 functions instead of __round variants.
6441 * sysdeps/ieee754/flt-32/e_gammaf_r.c (gammaf_positive): Likewise.
6442 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (gammal_positive):
6444 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (gammal_positive):
6446 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (gammal_positive):
6448 * sysdeps/x86/fpu/powl_helper.c (__powl_helper): Likewise.
6449 * sysdeps/ieee754/ldbl-128ibm/e_expl.c (lroundl): Redirect to
6451 (__ieee754_expl): Call roundl instead of __roundl.
6453 2018-09-27 Andreas Schwab <schwab@suse.de>
6456 * stdlib/tst-setcontext9.c (f1a): Make st2 static.
6457 (do_test): Make st1 static.
6459 2018-09-26 Andreas Schwab <schwab@suse.de>
6462 * sysdeps/powerpc/powerpc32/dl-start.S: Add unwind information.
6463 * elf/Makefile (tests): Add tst-unwind-ctor.
6464 (modules-names): Add tst-unwind-ctor-lib.
6465 ($(objpfx)tst-unwind-ctor): Depend on
6466 $(objpfx)tst-unwind-ctor-lib.so.
6468 2018-09-26 Joseph Myers <joseph@codesourcery.com>
6470 * sysdeps/unix/sysv/linux/bits/mman-map-flags-generic.h: New
6471 file. Most contents moved from ....
6472 * sysdeps/unix/sysv/linux/bits/mman.h: ... here. Move contents to
6473 and include <bits/mman-map-flags-generic.h>.
6474 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
6475 (sysdep_headers): Add bits/mman-map-flags-generic.h.
6476 * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Include
6477 <bits/mman-map-flags-generic.h>.
6478 [__USE_MISC] (MAP_GROWSUP): Only define this macro, not other
6479 macros defined in <bits/mman-map-flags-generic.h>.
6480 * sysdeps/unix/sysv/linux/x86/bits/mman.h: Include
6481 <bits/mman-map-flags-generic.h>.
6482 [__USE_MISC] (MAP_32BIT): Only define this macro, not other macros
6483 defined in <bits/mman-map-flags-generic.h>.
6485 2018-09-26 Andreas Schwab <schwab@suse.de>
6487 * Makefile ($(common-objpfx)testrun.sh): Remove leading space from
6490 2018-09-25 Adam J. Richte <adam_richter2004@yahoo.com>
6491 Adhemerval Zanella <adhemerval.zanella@linaro.org>
6492 Fangrui Song <maskray@google.com>
6495 * config.make.in (have-textrel_ifunc): New define.
6496 * configure.ac: Add check if linker supports textrel relocation with
6498 * elf/Makefile [have-textrel_ifunc == yes] (ifunc-pie-tests): Add
6500 (CFLAGS-tst-ifunc-textrel.c): New rule.
6501 * elf/dl-reloc.c (_dl_relocate_object): Use all required flags on
6502 DT_TEXTREL segments, not only PROT_READ and PROT_WRITE.
6503 * elf/tst-ifunc-textrel.c: New file.
6505 2018-09-25 Joseph Myers <joseph@codesourcery.com>
6507 * sysdeps/unix/sysv/linux/sys/procfs.h: Include
6508 <bits/procfs-prregset.h>.
6509 (prgregset_t): Define using __prgregset_t.
6510 (prfpregset_t): Define using __prfpregset_t.
6511 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
6512 (sysdep_headers): Add bits/procfs-prregset.h.
6513 * sysdeps/unix/sysv/linux/bits/procfs-prregset.h: New file.
6514 * sysdeps/unix/sysv/linux/alpha/bits/procfs-prregset.h: Likewise.
6515 * sysdeps/unix/sysv/linux/alpha/bits/procfs.h: Likewise.
6516 * sysdeps/unix/sysv/linux/alpha/sys/procfs.h: Remove file.
6518 * sysdeps/unix/sysv/linux/sys/procfs.h: Include
6519 <bits/procfs-id.h> and <bits/procfs-extra.h>.
6520 (struct elf_prpsinfo): Use __pr_uid_t and __pr_gid_t as types of
6522 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
6523 (sysdep_headers): Add bits/procfs-id.h and bits/procfs-extra.h.
6524 * sysdeps/unix/sysv/linux/bits/procfs-extra.h: New file.
6525 * sysdeps/unix/sysv/linux/bits/procfs-id.h: Likewise.
6526 * sysdeps/unix/sysv/linux/arm/bits/procfs-id.h: Likewise.
6527 * sysdeps/unix/sysv/linux/arm/bits/procfs.h: Likewise.
6528 * sysdeps/unix/sysv/linux/m68k/bits/procfs-id.h: Likewise.
6529 * sysdeps/unix/sysv/linux/m68k/bits/procfs.h: Likewise.
6530 * sysdeps/unix/sysv/linux/s390/bits/procfs-extra.h: Likewise.
6531 * sysdeps/unix/sysv/linux/s390/bits/procfs-id.h: Likewise.
6532 * sysdeps/unix/sysv/linux/s390/bits/procfs.h: Likewise.
6533 * sysdeps/unix/sysv/linux/sh/bits/procfs-id.h: Likewise.
6534 * sysdeps/unix/sysv/linux/sh/bits/procfs.h: Likewise.
6535 * sysdeps/unix/sysv/linux/sparc/bits/procfs-extra.h: Likewise.
6536 * sysdeps/unix/sysv/linux/sparc/bits/procfs-id.h: Likewise.
6537 * sysdeps/unix/sysv/linux/sparc/bits/procfs.h: Likewise.
6538 * sysdeps/unix/sysv/linux/x86/bits/procfs-id.h: Likewise.
6539 * sysdeps/unix/sysv/linux/x86/bits/procfs.h: Likewise.
6540 * sysdeps/unix/sysv/linux/arm/sys/procfs.h: Remove file.
6541 * sysdeps/unix/sysv/linux/m68k/sys/procfs.h: Likewise.
6542 * sysdeps/unix/sysv/linux/s390/sys/procfs.h: Likewise.
6543 * sysdeps/unix/sysv/linux/sh/sys/procfs.h: Likewise.
6544 * sysdeps/unix/sysv/linux/sparc/sys/procfs.h: Likewise.
6545 * sysdeps/unix/sysv/linux/x86/sys/procfs.h: Likewise.
6547 * sysdeps/unix/sysv/linux/sys/procfs.h: Replace with file based on
6548 AArch64 version. Include <bits/procfs.h>.
6549 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
6550 (sysdep_headers): Add bits/procfs.h.
6551 * sysdeps/unix/sysv/linux/bits/procfs.h: New file.
6552 * sysdeps/unix/sysv/linux/aarch64/bits/procfs.h: Likewise.
6553 * sysdeps/unix/sysv/linux/hppa/bits/procfs.h: Likewise.
6554 * sysdeps/unix/sysv/linux/ia64/bits/procfs.h: Likewise.
6555 * sysdeps/unix/sysv/linux/microblaze/bits/procfs.h: Likewise.
6556 * sysdeps/unix/sysv/linux/mips/bits/procfs.h: Likewise.
6557 * sysdeps/unix/sysv/linux/nios2/bits/procfs.h: Likewise.
6558 * sysdeps/unix/sysv/linux/powerpc/bits/procfs.h: Likewise.
6559 * sysdeps/unix/sysv/linux/riscv/bits/procfs.h: Likewise.
6560 * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h: Remove file.
6561 * sysdeps/unix/sysv/linux/hppa/sys/procfs.h: Likewise.
6562 * sysdeps/unix/sysv/linux/ia64/sys/procfs.h: Likewise.
6563 * sysdeps/unix/sysv/linux/microblaze/sys/procfs.h: Likewise.
6564 * sysdeps/unix/sysv/linux/mips/sys/procfs.h: Likewise.
6565 * sysdeps/unix/sysv/linux/nios2/sys/procfs.h: Likewise.
6566 * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: Likewise.
6567 * sysdeps/unix/sysv/linux/riscv/sys/procfs.h: Likewise.
6569 2018-09-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
6571 * posix/tst-spawn.c (do_prepare, handle_restart, do_test):
6574 2018-09-25 Arjun Shankar <arjun@redhat.com>
6576 * iconv/gconv_int.h (__gconv_path_elem): Remove.
6577 (__gconv_max_path_elem_len): Likewise.
6578 (__gconv_nmodules): Likewise.
6579 (__gconv_get_path): Likewise.
6580 (path_elem): Move to ...
6581 * iconv/gconv_conf.c: ... here.
6582 (__gconv_get_path): Mark function static.
6583 * iconv/gconv_int.h (GCONV_NCHAR_GOAL): Move to ...
6584 * iconv/gconv_open.c: ... here.
6586 2018-09-24 Andreas Schwab <schwab@suse.de>
6588 * scripts/haveversions.awk: New file.
6589 * Makerules ($(common-objpfx)Versions.def)
6590 ($(common-objpfx)Versions.all, $(common-objpfx)Versions.v.i)
6591 ($(common-objpfx)sysd-versions, $(common-objpfx)versions.stmp):
6593 * Makeconfig ($(common-objpfx)Versions.def)
6594 ($(common-objpfx)Versions.all, $(common-objpfx)Versions.v.i)
6595 ($(common-objpfx)sysd-versions, $(common-objpfx)versions.stmp):
6597 ($(common-objpfx)Versions.mk): New rule. Include it.
6598 * nis/Makefile [!have-GLIBC_2.28]: Don't build any targets.
6599 Emit error if build-obsolete-nsl = yes.
6600 * manual/install.texi (Configuring and compiling): Describe
6601 --enable-obsolete-nsl as unavaiable after version 2.28.
6602 * INSTALL: Regenerate.
6604 2018-09-21 Adhemerval Zanella <adhemerval.zanella@linaro.org>
6606 * NEWS: Add note about new TLE support on powerpc64le.
6607 * sysdeps/powerpc/nptl/tcb-offsets.sym (TM_CAPABLE): Remove.
6608 * sysdeps/powerpc/nptl/tls.h (tcbhead_t): Rename tm_capable to
6610 (TLS_INIT_TP, TLS_DEFINE_INIT_TP): Remove tm_capable setup.
6611 (THREAD_GET_TM_CAPABLE, THREAD_SET_TM_CAPABLE): Remove macros.
6612 * sysdeps/powerpc/powerpc32/sysdep.h,
6613 sysdeps/powerpc/powerpc64/sysdep.h (ABORT_TRANSACTION_IMPL,
6614 ABORT_TRANSACTION): Remove macros.
6615 * sysdeps/powerpc/sysdep.h (ABORT_TRANSACTION): Likewise.
6616 * sysdeps/unix/sysv/linux/powerpc/elision-conf.c (elision_init): Set
6617 __pthread_force_elision iff PPC_FEATURE2_HTM_NOSC is set.
6618 * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h,
6619 sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
6620 sysdeps/unix/sysv/linux/powerpc/syscall.S (ABORT_TRANSACTION): Remove
6622 * sysdeps/unix/sysv/linux/powerpc/not-errno.h: Remove file.
6624 2018-09-21 Rafal Luzynski <digitalfreak@lingonborough.com>
6627 * localedata/locales/it_IT (d_t_fmt): Use "%a %-d %b %Y, %T".
6628 (date_fmt): Use "%a %-d %b %Y, %T, %Z".
6629 * localedata/locales/it_CH (d_t_fmt): Use "%a %-d %b %Y, %T"
6630 which is the same as in it_IT.
6631 (d_fmt): Use "%d.%m.%Y" which is the same as in de_CH.
6632 (date_fmt): Use "%a %-d %b %Y, %T, %Z" which is the same as in it_IT.
6634 2018-09-20 Joseph Myers <joseph@codesourcery.com>
6636 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
6637 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (trunc): Redirect
6638 using MATH_REDIRECT.
6639 * sysdeps/aarch64/fpu/s_trunc.c: Define NO_MATH_REDIRECT before
6641 * sysdeps/aarch64/fpu/s_truncf.c: Likewise.
6642 * sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c: Likewise.
6643 * sysdeps/ieee754/float128/s_truncf128.c: Likewise.
6644 * sysdeps/ieee754/dbl-64/s_trunc.c: Likewise.
6645 * sysdeps/ieee754/flt-32/s_truncf.c: Likewise.
6646 * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
6647 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c: Likewise.
6648 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c: Likewise.
6649 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c: Likewise.
6650 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c: Likewise.
6651 * sysdeps/riscv/rv64/rvd/s_trunc.c: Likewise.
6652 * sysdeps/riscv/rvf/s_truncf.c: Likewise.
6653 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.c: Likewise.
6654 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.c: Likewise.
6655 * sysdeps/x86_64/fpu/multiarch/s_trunc.c: Likewise.
6656 * sysdeps/x86_64/fpu/multiarch/s_truncf.c: Likewise.
6657 * sysdeps/m68k/m680x0/fpu/s_trunc_template.c: Likewise.
6658 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
6659 (ceil): Redirect to __ceil.
6660 (floor): Redirect to __floor.
6661 (trunc): Redirect to __trunc.
6662 (__truncl): Call trunc instead of __trunc.
6663 * sysdeps/powerpc/fpu/math_private.h [_ARCH_PWR5X] (__trunc):
6665 [_ARCH_PWR5X] (__truncf): Likewise.
6666 * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r): Use
6667 trunc functions instead of __trunc variants.
6668 * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r):
6670 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (__ieee754_gammal_r):
6672 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
6674 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
6677 * sysdeps/x86/cpu-features.h [__geode__ || __k6__]: Handle like
6678 [__i586__ || __pentium__].
6679 [__i486__]: Handle explicitly.
6680 (HAS_CPUID): Define to 1 if above macros are undefined.
6681 (HAS_I586): Likewise.
6682 (HAS_I686): Likewise.
6684 2018-09-20 Florian Weimer <fweimer@redhat.com>
6686 * misc/tst-gethostid.c: New file.
6687 * misc/Makefile [$(build-shared)] (tests): Add tst-gethostid.
6688 (tst-gethostid): Link with -ldl.
6690 2018-09-20 Mingli Yu <Mingli.Yu@windriver.com>
6692 * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Check for NULL
6693 value from gethostbyname_r.
6695 2018-09-19 Carlos O'Donell <carlos@redhat.com>
6697 * stdlib/tst-setcontext9.c (f1): Rename to...
6699 (f1b): New function implementing lower half of f1 in alternate stack.
6701 2018-09-19 Paul Eggert <eggert@cs.ucla.edu>
6703 Fix mktime localtime offset confusion
6705 * include/time.h (__mktime_internal): The localtime offset is now
6706 of type long int instead of time_t. This is the longstanding type
6707 in glibc, and it is more than enough to represent difference
6708 between localtime and gmtime even if it is 32 bits and time_t is
6709 64. Changing it now will let us avoid an unnecessary change when
6710 time_t is widened to 64 bits on 32-bit platforms.
6711 * time/mktime-internal.h (mktime_offset_t): Now long int.
6713 Merge mktime, timegm from upstream Gnulib
6714 [BZ #23603][BZ #16346]
6715 This fixes some obscure problems with integer overflow.
6716 Although it looks scary, it is almost all a byte-for-byte copy
6717 from Gnulib, and the Gnulib code has been tested reasonably well.
6718 * include/intprops.h: New file, copied from Gnulib.
6719 * include/verify.h, time/mktime-internal.h:
6720 New tiny files, simplified from Gnulib.
6721 * time/mktime.c: Copy from Gnulib. This has the following changes:
6722 Do not include config.h if DEBUG_MKTIME is nonzero.
6723 Include stdbool.h, intprops.h, verify.h.
6724 Include string.h only if needed.
6725 Include stdlib.h on MS-Windows.
6726 Include mktime-internal.h.
6727 (DEBUG_MKTIME): Default to 0, and simplify later uses.
6728 (NEED_MKTIME_INTERNAL, NEED_MKTIME_WINDOWS)
6729 (NEED_MKTIME_WORKING): Give default values to pacify -Wundef,
6730 which glibc uses. Default NEED_MKTIME_WORKING to DEBUG_MKTIME, to
6731 simplify later conditionals; default the others to zero. Use
6732 these conditionals to express only the code needed on the current
6733 platform. In uses of these conditionals, explicitly spell out how
6734 _LIBC affects things, so it’s easier to review from a glibc
6736 (WRAPV): Remove; no longer needed now that we have
6737 systematic overflow checking.
6738 (my_tzset, __tzset) [!_LIBC]: New function and macro, to better
6739 compartmentalize tzset issues. Move system-dependent tzsettish
6740 code here from mktime.
6741 (verify): Remove; now done by verify.h. All uses changed.
6742 (long_int): Use a more-conservative definition, to avoid
6744 (SHR): Remove, replacing with ...
6745 (shr): New function, which means we needn’t worry about side
6746 effects in args, and conversion analysis is simpler.
6747 (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT, TYPE_SIGNED, TYPE_MINIMUM)
6748 (TYPE_MAXIMUM, TIME_T_MIN, TIME_T_MAX, TIME_T_MIDPOINT)
6749 (time_t_avg, time_t_add_ok): Remove.
6750 (mktime_min, mktime_max): New constants.
6751 (leapyear, isdst_differ): Use bool for booleans.
6752 (ydhms_diff, guess_time_tm, ranged_convert, __mktime_internal):
6753 Use long_int, not time_t, for mktime differences.
6754 (long_int_avg): New function, replacing time_t_avg.
6755 INT_ADD_WRAPV replaces time_t_add_ok.
6756 (guess_time_tm): 6th arg is now long_int, not time_t const *.
6758 (convert_time): New function.
6759 (ranged_convert): Use it.
6760 (__mktime_internal): Last arg now points to mktime_offset_t, not
6761 time_t. All uses changed. This is a no-op on glibc, where
6762 mktime_offset_t is always time_t. Use int, not time_t, for UTC
6763 offset guess. Directly check for integer overflow instead of
6764 using a heuristic that works only 99.9...% of the time.
6765 Access *OFFSET only once, to avoid an unlikely race if the
6766 compiler delays a load and if this cascades into a signed integer
6768 (mktime): Move tzsettish code to my_tzset, and move
6769 localtime_offset to within mktime so that it doesn’t
6770 need a separate ifdef.
6771 (main) [DEBUG_MKTIME]: Speed up by using localtime_r
6772 instead of localtime.
6773 * time/timegm.c: Copy from Gnulib. This has the following changes:
6774 Include mktime-internal.h.
6775 [!_LIBC]: Include config.h and time.h. Do not include
6776 timegm.h or time_r.h. Make __mktime_internal a macro,
6777 and include mktime-internal.h to get its declaration.
6778 (timegm): Temporary is now mktime_offset_t, not time_t.
6779 This affects only Gnulib.
6781 2018-09-19 Wilco Dijkstra <wdijkstr@arm.com>
6784 * string/test-strstr.c (pr23637): New function.
6785 (test_main): Add tests with longer needles.
6786 * string/strcasestr.c (AVAILABLE): Fix readahead distance.
6787 * string/strstr.c (AVAILABLE): Likewise.
6789 2018-09-19 Szabolcs Nagy <szabolcs.nagy@arm.com>
6791 * sysdeps/ieee754/flt-32/e_powf.c (checkint): Fix documentation.
6793 2018-09-19 Szabolcs Nagy <szabolcs.nagy@arm.com>
6795 * NEWS: Mention pow improvements.
6796 * math/Makefile (type-double-routines): Add e_pow_log_data.
6797 * sysdeps/generic/math_private.h (__exp1): Remove.
6798 * sysdeps/i386/fpu/e_pow_log_data.c: New file.
6799 * sysdeps/ia64/fpu/e_pow_log_data.c: New file.
6800 * sysdeps/ieee754/dbl-64/Makefile (CFLAGS-e_pow.c): Allow fma
6802 * sysdeps/ieee754/dbl-64/e_exp.c (__exp1): Remove.
6803 (exp_inline): Remove.
6804 (__ieee754_exp): Only single double input is handled.
6805 * sysdeps/ieee754/dbl-64/e_pow.c: Rewrite.
6806 * sysdeps/ieee754/dbl-64/e_pow_log_data.c: New file.
6807 * sysdeps/ieee754/dbl-64/math_config.h (issignaling_inline): Define.
6808 (__pow_log_data): Define.
6809 * sysdeps/ieee754/dbl-64/upow.h: Remove.
6810 * sysdeps/ieee754/dbl-64/upow.tbl: Remove.
6811 * sysdeps/m68k/m680x0/fpu/e_pow_log_data.c: New file.
6812 * sysdeps/x86_64/fpu/multiarch/Makefile (CFLAGS-e_pow-fma.c): Allow fma
6814 (CFLAGS-e_pow-fma4.c): Likewise.
6816 2018-09-18 Paul Eggert <eggert@cs.ucla.edu>
6818 Simplify tzfile fstat failure code
6820 * time/tzfile.c (__tzfile_read): Simplify slightly.
6822 Fix tzfile low-memory assertion failure
6824 * time/tzfile.c (__tzfile_read): Check for memory exhaustion
6825 when registering time zone abbreviations.
6827 2018-09-18 Joseph Myers <joseph@codesourcery.com>
6829 * sysdeps/unix/sysv/linux/bits/mman.h: New file.
6830 * sysdeps/unix/sysv/linux/aarch64/bits/mman.h: Remove.
6831 * sysdeps/unix/sysv/linux/arm/bits/mman.h: Likewise.
6832 * sysdeps/unix/sysv/linux/m68k/bits/mman.h: Likewise.
6833 * sysdeps/unix/sysv/linux/microblaze/bits/mman.h: Likewise.
6834 * sysdeps/unix/sysv/linux/nios2/bits/mman.h: Likewise.
6835 * sysdeps/unix/sysv/linux/riscv/bits/mman.h: Likewise.
6836 * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
6837 * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
6839 * sysdeps/ieee754/ldbl-128ibm/s_ceill.c (ceil): Redirect to
6841 (__ceill): Call ceil instead of __ceil.
6842 * sysdeps/ieee754/ldbl-128ibm/s_floorl.c (floor): Redirect to
6844 (__floorl): Call floor instead of __floor.
6846 2018-09-17 Joseph Myers <joseph@codesourcery.com>
6848 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
6849 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (ceil): Redirect
6850 using MATH_REDIRECT.
6851 * sysdeps/aarch64/fpu/s_ceil.c: Define NO_MATH_REDIRECT before
6853 * sysdeps/aarch64/fpu/s_ceilf.c: Likewise.
6854 * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
6855 * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
6856 * sysdeps/ieee754/float128/s_ceilf128.c: Likewise.
6857 * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
6858 * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
6859 * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Likewise.
6860 * sysdeps/m68k/m680x0/fpu/s_ceil_template.c: Likewise.
6861 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c: Likewise.
6862 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c: Likewise.
6863 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c: Likewise.
6864 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c: Likewise.
6865 * sysdeps/riscv/rv64/rvd/s_ceil.c: Likewise.
6866 * sysdeps/riscv/rvf/s_ceilf.c: Likewise.
6867 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.c: Likewise.
6868 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.c: Likewise.
6869 * sysdeps/x86_64/fpu/multiarch/s_ceil.c: Likewise.
6870 * sysdeps/x86_64/fpu/multiarch/s_ceilf.c: Likewise.
6871 * sysdeps/powerpc/fpu/math_private.h [_ARCH_PWR5X] (__ceil):
6873 * sysdeps/ieee754/dbl-64/e_gamma_r.c (gamma_positive): Use ceil
6874 functions instead of __ceil variants.
6875 * sysdeps/ieee754/flt-32/e_gammaf_r.c (gammaf_positive): Likewise.
6876 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (gammal_positive):
6878 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (gammal_positive):
6880 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c (__truncl): Likewise.
6881 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (gammal_positive):
6883 * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Likewise.
6884 * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
6887 * sysdeps/unix/sysv/linux/bits/siginfo-consts.h (SI_DETHREAD): New
6889 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (ILL_BADIADDR): Likewise.
6890 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (FPE_FLTUNK): Likewise.
6891 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (FPE_CONDTRAP): Likewise.
6892 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (SEGV_ACCADI): Likewise.
6893 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (SEGV_ADIDERR): Likewise.
6894 [__USE_XOPEN_EXTENDED || __USE_XOPEN2K8] (SEGV_ADIPERR): Likewise.
6895 [__USE_XOPEN_EXTENDED] (TRAP_BRANCH): Likewise.
6896 [__USE_XOPEN_EXTENDED] (TRAP_HWBKPT): Likewise.
6897 [__USE_XOPEN_EXTENDED] (TRAP_UNK): Likweise.
6898 * sysdeps/unix/sysv/linux/ia64/bits/siginfo-consts-arch.h
6899 (ILL_BADIADDR): Remove constant.
6900 (TRAP_BRANCH): Likewise.
6901 (TRAP_HWBKPT): Likewise.
6903 2018-09-14 Joseph Myers <joseph@codesourcery.com>
6906 * sysdeps/unix/sysv/linux/mips/sys/procfs.h (struct elf_prstatus):
6907 Remove [_MIPS_SIM = _ABIN32] conditional case.
6908 (struct elf_prpsinfo): Likewise.
6911 * sysdeps/unix/sysv/linux/microblaze/sys/procfs.h (struct
6912 elf_prpsinfo): Use unsigned int for pr_uid and pr_gid.
6913 * sysdeps/unix/sysv/linux/mips/sys/procfs.h (struct elf_prpsinfo):
6915 * sysdeps/unix/sysv/linux/nios2/sys/procfs.h (struct
6916 elf_prpsinfo): Likewise.
6917 * sysdeps/unix/sysv/linux/riscv/sys/procfs.h (struct
6918 elf_prpsinfo): Likewise.
6919 * sysdeps/unix/sysv/linux/sys/procfs.h (struct elf_prpsinfo):
6922 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
6923 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (rint): Redirect
6924 using MATH_REDIRECT.
6925 * sysdeps/aarch64/fpu/s_rint.c: Define NO_MATH_REDIRECT before
6927 * sysdeps/aarch64/fpu/s_rintf.c: Likewise.
6928 * sysdeps/alpha/fpu/s_rint.c: Likewise.
6929 * sysdeps/alpha/fpu/s_rintf.c: Likewise.
6930 * sysdeps/i386/fpu/s_rintl.c: Likewise.
6931 * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
6932 * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
6933 * sysdeps/ieee754/float128/s_rintf128.c: Likewise.
6934 * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
6935 * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
6936 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
6937 * sysdeps/m68k/coldfire/fpu/s_rint.c: Likewise.
6938 * sysdeps/m68k/coldfire/fpu/s_rintf.c: Likewise.
6939 * sysdeps/m68k/m680x0/fpu/s_rint.c: Likewise.
6940 * sysdeps/m68k/m680x0/fpu/s_rintf.c: Likewise.
6941 * sysdeps/m68k/m680x0/fpu/s_rintl.c: Likewise.
6942 * sysdeps/powerpc/fpu/s_rint.c: Likewise.
6943 * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
6944 * sysdeps/riscv/rv64/rvd/s_rint.c: Likewise.
6945 * sysdeps/riscv/rvf/s_rintf.c: Likewise.
6946 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.c: Likewise.
6947 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.c: Likewise.
6948 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.c: Likewise.
6949 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.c: Likewise.
6950 * sysdeps/x86_64/fpu/multiarch/s_rint.c: Likewise.
6951 * sysdeps/x86_64/fpu/multiarch/s_rintf.c: Likewise.
6952 * sysdeps/x86_64/fpu/math_private.h: Remove file.
6953 * math/e_scalb.c (invalid_fn): Use rint functions instead of
6955 * math/e_scalbf.c (invalid_fn): Likewise.
6956 * math/e_scalbl.c (invalid_fn): Likewise.
6957 * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r):
6959 * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r):
6961 * sysdeps/ieee754/k_standard.c (__kernel_standard): Likewise.
6962 * sysdeps/ieee754/k_standardl.c (__kernel_standard_l): Likewise.
6963 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (__ieee754_gammal_r):
6965 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
6967 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
6969 * sysdeps/powerpc/powerpc32/fpu/s_llrint.c (__llrint): Likewise.
6970 * sysdeps/powerpc/powerpc32/fpu/s_llrintf.c (__llrintf): Likewise.
6972 * include/math.h [!_ISOMAC && !(__FINITE_MATH_ONLY__ &&
6973 __FINITE_MATH_ONLY__ > 0) && !NO_MATH_REDIRECT] (MATH_REDIRECT):
6975 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
6976 && !NO_MATH_REDIRECT] (MATH_REDIRECT_LDBL): Likewise.
6977 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
6978 && !NO_MATH_REDIRECT] (MATH_REDIRECT_F128): Likewise.
6979 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
6980 && !NO_MATH_REDIRECT] (MATH_REDIRECT_UNARY_ARGS): Likewise.
6981 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
6982 && !NO_MATH_REDIRECT] (sqrt): Redirect using MATH_REDIRECT.
6983 [!_ISOMAC && !(__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0)
6984 && !NO_MATH_REDIRECT] (floor): Likewise.
6985 * sysdeps/aarch64/fpu/s_floor.c: Define NO_MATH_REDIRECT before
6987 * sysdeps/aarch64/fpu/s_floorf.c: Likewise.
6988 * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
6989 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
6990 * sysdeps/ieee754/float128/s_floorf128.c: Likewise.
6991 * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
6992 * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
6993 * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
6994 * sysdeps/m68k/m680x0/fpu/s_floor_template.c: Likewise.
6995 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c: Likewise.
6996 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c: Likewise.
6997 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c: Likewise.
6998 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c: Likewise.
6999 * sysdeps/riscv/rv64/rvd/s_floor.c: Likewise.
7000 * sysdeps/riscv/rvf/s_floorf.c: Likewise.
7001 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.c: Likewise.
7002 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.c: Likewise.
7003 * sysdeps/x86_64/fpu/multiarch/s_floor.c: Likewise.
7004 * sysdeps/x86_64/fpu/multiarch/s_floorf.c: Likewise.
7005 * sysdeps/powerpc/fpu/math_private.h [_ARCH_PWR5X] (__floor):
7007 [_ARCH_PWR5X] (__floorf): Likewise.
7008 * sysdeps/x86_64/fpu/math_private.h [__SSE4_1__] (__floor): Remove
7010 [__SSE4_1__] (__floorf): Likewise.
7011 * math/w_lgamma_main.c (LGFUNC (__lgamma)): Use floor functions
7012 instead of __floor variants.
7013 * math/w_lgamma_r_compat.c (__lgamma_r): Likewise.
7014 * math/w_lgammaf_main.c (LGFUNC (__lgammaf)): Likewise.
7015 * math/w_lgammaf_r_compat.c (__lgammaf_r): Likewise.
7016 * math/w_lgammal_main.c (LGFUNC (__lgammal)): Likewise.
7017 * math/w_lgammal_r_compat.c (__lgammal_r): Likewise.
7018 * math/w_tgamma_compat.c (__tgamma): Likewise.
7019 * math/w_tgamma_template.c (M_DECL_FUNC (__tgamma)): Likewise.
7020 * math/w_tgammaf_compat.c (__tgammaf): Likewise.
7021 * math/w_tgammal_compat.c (__tgammal): Likewise.
7022 * sysdeps/ieee754/dbl-64/e_lgamma_r.c (sin_pi): Likewise.
7023 * sysdeps/ieee754/dbl-64/k_rem_pio2.c (__kernel_rem_pio2):
7025 * sysdeps/ieee754/dbl-64/lgamma_neg.c (__lgamma_neg): Likewise.
7026 * sysdeps/ieee754/flt-32/e_lgammaf_r.c (sin_pif): Likewise.
7027 * sysdeps/ieee754/flt-32/lgamma_negf.c (__lgamma_negf): Likewise.
7028 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
7030 * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Likewise.
7031 * sysdeps/ieee754/ldbl-128/lgamma_negl.c (__lgamma_negl):
7033 * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Likewise.
7034 * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c (__ieee754_lgammal_r):
7036 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
7037 * sysdeps/ieee754/ldbl-128ibm/lgamma_negl.c (__lgamma_negl):
7039 * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Likewise.
7040 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c (__truncl): Likewise.
7041 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c (sin_pi): Likewise.
7042 * sysdeps/ieee754/ldbl-96/lgamma_negl.c (__lgamma_negl): Likewise.
7043 * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Likewise.
7044 * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
7046 2018-09-12 Joseph Myers <joseph@codesourcery.com>
7048 * elf/Makefile (modules-names-tests): New variable.
7050 2018-09-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
7052 * NEWS: Mention log2 improvements.
7053 * math/Makefile (type-double-routines): Add e_log2_data.
7054 * sysdeps/i386/fpu/e_log2_data.c: New file.
7055 * sysdeps/ia64/fpu/e_log2_data.c: New file.
7056 * sysdeps/ieee754/dbl-64/e_log2.c: Rewrite.
7057 * sysdeps/ieee754/dbl-64/e_log2_data.c: New file.
7058 * sysdeps/ieee754/dbl-64/math_config.h (__log2_data): Add.
7059 * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c: Remove.
7060 * sysdeps/m68k/m680x0/fpu/e_log2_data.c: New file.
7062 2018-09-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
7064 * NEWS: Mention log improvement.
7065 * math/Makefile (type-double-routines): Add e_log_data.
7066 * sysdeps/i386/fpu/e_log_data.c: New file.
7067 * sysdeps/ia64/fpu/e_log_data.c: New file.
7068 * sysdeps/ieee754/dbl-64/e_log.c: Rewrite.
7069 * sysdeps/ieee754/dbl-64/e_log_data.c: New file.
7070 * sysdeps/ieee754/dbl-64/math_config.h (__log_data): Add.
7071 * sysdeps/ieee754/dbl-64/ulog.h: Remove.
7072 * sysdeps/ieee754/dbl-64/ulog.tbl: Remove.
7073 * sysdeps/m68k/m680x0/fpu/e_log_data.c: New file.
7075 2018-09-12 H.J. Lu <hongjiu.lu@intel.com>
7076 Xuepeng Guo <xuepeng.guo@intel.com>
7079 * sysdeps/i386/start.S: Include <sysdep.h>
7080 (_start): Use ENTRY/END to insert ENDBR32 at entry when CET is
7081 enabled. Add cfi_undefined (eip).
7083 2018-09-11 Joseph Myers <joseph@codesourcery.com>
7085 * sysdeps/x86_64/fpu/math_private.h (MOVD): Remove macro.
7087 (EXTRACT_WORDS64): Likewise.
7088 (INSERT_WORDS64): Likewise.
7089 (GET_FLOAT_WORD): Likewise.
7090 (SET_FLOAT_WORD): Likewise.
7092 * scripts/build-many-glibcs.py (Context.__init__): Add full_gcc
7094 (Config.build_gcc): Use --disable-libsanitizer for first GCC
7095 build, but not for second build if --full-gcc. Use
7096 --enable-languages=all for second build if --full-gcc.
7097 (get_parser): Add --full-gcc option.
7098 (main): Update call to Context.
7100 2018-09-10 Rafal Luzynski <digitalfreak@lingonborough.com>
7103 * localedata/locales/de_CH (mon_thousands_sep): Use "<U2019>" (Right
7104 Single Quotation Mark).
7105 (thousands_sep): Likewise.
7106 * localedata/locales/it_CH (LC_NUMERIC): Use “copy "de_CH"”.
7107 * localedata/locales/it_IT (thousands_sep): Use ".".
7108 (grouping): Use "3;3".
7110 2018-09-10 Joseph Myers <joseph@codesourcery.com>
7112 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
7113 x86_64 and i686 configs using --enable-obsolete-rpc
7114 --enable-obsolete-nsl.
7116 2018-09-06 Stefan Liebler <stli@linux.ibm.com>
7118 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
7120 2018-09-06 Stefan Liebler <stli@linux.ibm.com>
7122 * sysdeps/unix/sysv/linux/spawni.c (maybe_script_execute):
7123 Increment size of new_argv by one.
7125 2018-09-05 Rafal Luzynski <digitalfreak@lingonborough.com>
7128 * localedata/locales/anp_IN (d_fmt): Use "%-d//%-m//%y".
7129 * localedata/locales/ar_IN (d_fmt): Likewise.
7130 * localedata/locales/bhb_IN (d_fmt): Likewise.
7131 * localedata/locales/bho_IN (d_fmt): Likewise.
7132 * localedata/locales/bn_BD (d_fmt): Likewise.
7133 * localedata/locales/bn_IN (d_fmt): Likewise.
7134 * localedata/locales/doi_IN (d_fmt): Likewise.
7135 * localedata/locales/gu_IN (d_fmt): Likewise.
7136 * localedata/locales/hi_IN (d_fmt): Likewise.
7137 * localedata/locales/hne_IN (d_fmt): Likewise.
7138 * localedata/locales/kn_IN (d_fmt): Likewise.
7139 * localedata/locales/mag_IN (d_fmt): Likewise.
7140 * localedata/locales/mai_IN (d_fmt): Likewise.
7141 * localedata/locales/mjw_IN (d_fmt): Likewise.
7142 * localedata/locales/ml_IN (d_fmt): Likewise.
7143 * localedata/locales/mni_IN (d_fmt): Likewise.
7144 * localedata/locales/mr_IN (d_fmt): Likewise.
7145 * localedata/locales/pa_IN (d_fmt): Likewise.
7146 * localedata/locales/raj_IN (d_fmt): Likewise.
7147 * localedata/locales/sat_IN (d_fmt): Likewise.
7148 * localedata/locales/sd_IN (d_fmt): Likewise.
7149 * localedata/locales/sd_IN@devanagari (d_fmt): Likewise.
7150 * localedata/locales/ta_IN (d_fmt): Likewise.
7151 * localedata/locales/ta_LK (d_fmt): Likewise.
7152 * localedata/locales/tcy_IN (d_fmt): Likewise.
7153 * localedata/locales/ur_IN (d_fmt): Likewise.
7155 * localedata/locales/brx_IN (d_fmt): Use "%-m//%-d//%y".
7156 * localedata/locales/ks_IN (d_fmt): Likewise.
7157 * localedata/locales/ks_IN@devanagari (d_fmt): Likewise.
7159 * localedata/locales/kok_IN (d_fmt): Use "%-d-%-m-%y".
7160 * localedata/locales/ne_NP (d_fmt): Use "%y//%-m//%-d".
7161 * localedata/locales/sa_IN (d_fmt): Use "%-d-%m-%y".
7162 * localedata/locales/te_IN (d_fmt): Use "%d-%m-%y".
7164 2018-09-05 Szabolcs Nagy <szabolcs.nagy@arm.com>
7166 * NEWS: Mention exp and exp2 improvements.
7167 * math/Makefile (libm-support): Remove t_exp.
7168 (type-double-routines): Add math_err and e_exp_data.
7169 * sysdeps/aarch64/libm-test-ulps: Update.
7170 * sysdeps/arm/libm-test-ulps: Update.
7171 * sysdeps/i386/fpu/e_exp_data.c: New file.
7172 * sysdeps/i386/fpu/math_err.c: New file.
7173 * sysdeps/i386/fpu/t_exp.c: Remove.
7174 * sysdeps/ia64/fpu/e_exp_data.c: New file.
7175 * sysdeps/ia64/fpu/math_err.c: New file.
7176 * sysdeps/ia64/fpu/t_exp.c: Remove.
7177 * sysdeps/ieee754/dbl-64/e_exp.c: Rewrite.
7178 * sysdeps/ieee754/dbl-64/e_exp2.c: Rewrite.
7179 * sysdeps/ieee754/dbl-64/e_exp_data.c: New file.
7180 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Update error bound.
7181 * sysdeps/ieee754/dbl-64/eexp.tbl: Remove.
7182 * sysdeps/ieee754/dbl-64/math_config.h: New file.
7183 * sysdeps/ieee754/dbl-64/math_err.c: New file.
7184 * sysdeps/ieee754/dbl-64/t_exp.c: Remove.
7185 * sysdeps/ieee754/dbl-64/t_exp2.h: Remove.
7186 * sysdeps/ieee754/dbl-64/uexp.h: Remove.
7187 * sysdeps/ieee754/dbl-64/uexp.tbl: Remove.
7188 * sysdeps/m68k/m680x0/fpu/e_exp_data.c: New file.
7189 * sysdeps/m68k/m680x0/fpu/math_err.c: New file.
7190 * sysdeps/m68k/m680x0/fpu/t_exp.c: Remove.
7191 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
7192 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
7194 2018-09-05 Joseph Myers <joseph@codesourcery.com>
7196 * sysdeps/alpha/fpu/math_private.h: Remove.
7198 * sysdeps/generic/math_private.h
7199 [__HAVE_DISTINCT_FLOAT128 && !__GNUC_PREREQ (7, 0)] (__isinff128):
7200 Move this inline function ....
7201 [__HAVE_DISTINCT_FLOAT128] (fabsf128): And this one ....
7202 * include/math.h [!_ISOMAC]: To here....
7204 2018-09-04 Joseph Myers <joseph@codesourcery.com>
7206 * sysdeps/generic/fenv_private.h [FE_ALL_EXCEPT == 0]: Move this
7208 [!FE_HAVE_ROUNDING_MODES]: And this code ....
7209 * include/fenv.h [!_ISOMAC]: ... to here.
7210 * math/fraiseexcpt.c (__feraiseexcept): Undefine as macro.
7211 (feraiseexcept): Likewise.
7212 * math/fromfp.h: Do not include <fenv_private.h>.
7213 * math/s_cexp_template.c: Likewise.
7214 * math/s_csin_template.c: Likewise.
7215 * math/s_csinh_template.c: Likewise.
7216 * math/s_ctan_template.c: Likewise.
7217 * math/s_ctanh_template.c: Likewise.
7218 * math/s_iseqsig_template.c: Likewise.
7219 * math/w_acos_compat.c: Likewise.
7220 * math/w_acosf_compat.c: Likewise.
7221 * math/w_acosl_compat.c: Likewise.
7222 * math/w_asin_compat.c: Likewise.
7223 * math/w_asinf_compat.c: Likewise.
7224 * math/w_asinl_compat.c: Likewise.
7225 * math/w_j0_compat.c: Likewise.
7226 * math/w_j0f_compat.c: Likewise.
7227 * math/w_j0l_compat.c: Likewise.
7228 * math/w_j1_compat.c: Likewise.
7229 * math/w_j1f_compat.c: Likewise.
7230 * math/w_j1l_compat.c: Likewise.
7231 * math/w_jn_compat.c: Likewise.
7232 * math/w_jnf_compat.c: Likewise.
7233 * math/w_log10_compat.c: Likewise.
7234 * math/w_log10f_compat.c: Likewise.
7235 * math/w_log10l_compat.c: Likewise.
7236 * math/w_log2_compat.c: Likewise.
7237 * math/w_log2f_compat.c: Likewise.
7238 * math/w_log2l_compat.c: Likewise.
7239 * math/w_log_compat.c: Likewise.
7240 * math/w_logf_compat.c: Likewise.
7241 * math/w_logl_compat.c: Likewise.
7242 * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
7243 * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
7244 * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
7245 * sysdeps/ieee754/dbl-64/s_lround.c: Likewise.
7246 * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Likewise.
7247 * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
7248 * sysdeps/ieee754/flt-32/s_llroundf.c: Likewise.
7249 * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
7250 * sysdeps/ieee754/flt-32/s_lroundf.c: Likewise.
7251 * sysdeps/ieee754/k_standardl.c: Likewise.
7252 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
7253 * sysdeps/ieee754/ldbl-128/s_fmal.c: Likewise.
7254 * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
7255 * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
7256 * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
7257 * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
7258 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
7259 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Likewise.
7260 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
7261 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
7262 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Likewise.
7263 * sysdeps/ieee754/ldbl-96/s_fma.c: Likewise.
7264 * sysdeps/ieee754/ldbl-96/s_fmal.c: Likewise.
7265 * sysdeps/ieee754/ldbl-96/s_llrintl.c: Likewise.
7266 * sysdeps/ieee754/ldbl-96/s_llroundl.c: Likewise.
7267 * sysdeps/ieee754/ldbl-96/s_lrintl.c: Likewise.
7268 * sysdeps/ieee754/ldbl-96/s_lroundl.c: Likewise.
7269 * math/w_ilogb_template.c: Include <fenv.h> instead of
7271 * math/w_llogb_template.c: Likewise.
7272 * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
7273 * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
7275 2018-09-03 Joseph Myers <joseph@codesourcery.com>
7277 * sysdeps/generic/math_private.h: Do not include <fenv_private.h>.
7278 * math/fromfp.h: Include <fenv_private.h>.
7279 * math/math-narrow.h: Likewise.
7280 * math/s_cexp_template.c: Likewise.
7281 * math/s_csin_template.c: Likewise.
7282 * math/s_csinh_template.c: Likewise.
7283 * math/s_ctan_template.c: Likewise.
7284 * math/s_ctanh_template.c: Likewise.
7285 * math/s_iseqsig_template.c: Likewise.
7286 * math/w_acos_compat.c: Likewise.
7287 * math/w_acosf_compat.c: Likewise.
7288 * math/w_acosl_compat.c: Likewise.
7289 * math/w_asin_compat.c: Likewise.
7290 * math/w_asinf_compat.c: Likewise.
7291 * math/w_asinl_compat.c: Likewise.
7292 * math/w_ilogb_template.c: Likewise.
7293 * math/w_j0_compat.c: Likewise.
7294 * math/w_j0f_compat.c: Likewise.
7295 * math/w_j0l_compat.c: Likewise.
7296 * math/w_j1_compat.c: Likewise.
7297 * math/w_j1f_compat.c: Likewise.
7298 * math/w_j1l_compat.c: Likewise.
7299 * math/w_jn_compat.c: Likewise.
7300 * math/w_jnf_compat.c: Likewise.
7301 * math/w_llogb_template.c: Likewise.
7302 * math/w_log10_compat.c: Likewise.
7303 * math/w_log10f_compat.c: Likewise.
7304 * math/w_log10l_compat.c: Likewise.
7305 * math/w_log2_compat.c: Likewise.
7306 * math/w_log2f_compat.c: Likewise.
7307 * math/w_log2l_compat.c: Likewise.
7308 * math/w_log_compat.c: Likewise.
7309 * math/w_logf_compat.c: Likewise.
7310 * math/w_logl_compat.c: Likewise.
7311 * sysdeps/aarch64/fpu/feholdexcpt.c: Likewise.
7312 * sysdeps/aarch64/fpu/fesetround.c: Likewise.
7313 * sysdeps/aarch64/fpu/fgetexcptflg.c: Likewise.
7314 * sysdeps/aarch64/fpu/ftestexcept.c: Likewise.
7315 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
7316 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
7317 * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
7318 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
7319 * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
7320 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
7321 * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
7322 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
7323 * sysdeps/ieee754/dbl-64/gamma_product.c: Likewise.
7324 * sysdeps/ieee754/dbl-64/lgamma_neg.c: Likewise.
7325 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
7326 * sysdeps/ieee754/dbl-64/s_fma.c: Likewise.
7327 * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
7328 * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
7329 * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
7330 * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
7331 * sysdeps/ieee754/dbl-64/s_lround.c: Likewise.
7332 * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
7333 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
7334 * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
7335 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
7336 * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Likewise.
7337 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Likewise.
7338 * sysdeps/ieee754/dbl-64/x2y2m1.c: Likewise.
7339 * sysdeps/ieee754/float128/float128_private.h: Likewise.
7340 * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
7341 * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
7342 * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
7343 * sysdeps/ieee754/flt-32/lgamma_negf.c: Likewise.
7344 * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
7345 * sysdeps/ieee754/flt-32/s_llroundf.c: Likewise.
7346 * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
7347 * sysdeps/ieee754/flt-32/s_lroundf.c: Likewise.
7348 * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
7349 * sysdeps/ieee754/k_standardl.c: Likewise.
7350 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
7351 * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Likewise.
7352 * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
7353 * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
7354 * sysdeps/ieee754/ldbl-128/gamma_productl.c: Likewise.
7355 * sysdeps/ieee754/ldbl-128/lgamma_negl.c: Likewise.
7356 * sysdeps/ieee754/ldbl-128/s_fmal.c: Likewise.
7357 * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
7358 * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
7359 * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
7360 * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
7361 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
7362 * sysdeps/ieee754/ldbl-128/x2y2m1l.c: Likewise.
7363 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
7364 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Likewise.
7365 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c: Likewise.
7366 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
7367 * sysdeps/ieee754/ldbl-128ibm/lgamma_negl.c: Likewise.
7368 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
7369 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Likewise.
7370 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
7371 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
7372 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Likewise.
7373 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
7374 * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
7375 * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Likewise.
7376 * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
7377 * sysdeps/ieee754/ldbl-96/gamma_productl.c: Likewise.
7378 * sysdeps/ieee754/ldbl-96/lgamma_negl.c: Likewise.
7379 * sysdeps/ieee754/ldbl-96/s_fma.c: Likewise.
7380 * sysdeps/ieee754/ldbl-96/s_fmal.c: Likewise.
7381 * sysdeps/ieee754/ldbl-96/s_llrintl.c: Likewise.
7382 * sysdeps/ieee754/ldbl-96/s_llroundl.c: Likewise.
7383 * sysdeps/ieee754/ldbl-96/s_lrintl.c: Likewise.
7384 * sysdeps/ieee754/ldbl-96/s_lroundl.c: Likewise.
7385 * sysdeps/ieee754/ldbl-96/x2y2m1l.c: Likewise.
7386 * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
7387 * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
7388 * sysdeps/riscv/rv64/rvd/s_ceil.c: Likewise.
7389 * sysdeps/riscv/rv64/rvd/s_floor.c: Likewise.
7390 * sysdeps/riscv/rv64/rvd/s_nearbyint.c: Likewise.
7391 * sysdeps/riscv/rv64/rvd/s_round.c: Likewise.
7392 * sysdeps/riscv/rv64/rvd/s_roundeven.c: Likewise.
7393 * sysdeps/riscv/rv64/rvd/s_trunc.c: Likewise.
7394 * sysdeps/riscv/rvd/s_finite.c: Likewise.
7395 * sysdeps/riscv/rvd/s_fmax.c: Likewise.
7396 * sysdeps/riscv/rvd/s_fmin.c: Likewise.
7397 * sysdeps/riscv/rvd/s_fpclassify.c: Likewise.
7398 * sysdeps/riscv/rvd/s_isinf.c: Likewise.
7399 * sysdeps/riscv/rvd/s_isnan.c: Likewise.
7400 * sysdeps/riscv/rvd/s_issignaling.c: Likewise.
7401 * sysdeps/riscv/rvf/fegetround.c: Likewise.
7402 * sysdeps/riscv/rvf/feholdexcpt.c: Likewise.
7403 * sysdeps/riscv/rvf/fesetenv.c: Likewise.
7404 * sysdeps/riscv/rvf/fesetround.c: Likewise.
7405 * sysdeps/riscv/rvf/feupdateenv.c: Likewise.
7406 * sysdeps/riscv/rvf/fgetexcptflg.c: Likewise.
7407 * sysdeps/riscv/rvf/ftestexcept.c: Likewise.
7408 * sysdeps/riscv/rvf/s_ceilf.c: Likewise.
7409 * sysdeps/riscv/rvf/s_finitef.c: Likewise.
7410 * sysdeps/riscv/rvf/s_floorf.c: Likewise.
7411 * sysdeps/riscv/rvf/s_fmaxf.c: Likewise.
7412 * sysdeps/riscv/rvf/s_fminf.c: Likewise.
7413 * sysdeps/riscv/rvf/s_fpclassifyf.c: Likewise.
7414 * sysdeps/riscv/rvf/s_isinff.c: Likewise.
7415 * sysdeps/riscv/rvf/s_isnanf.c: Likewise.
7416 * sysdeps/riscv/rvf/s_issignalingf.c: Likewise.
7417 * sysdeps/riscv/rvf/s_nearbyintf.c: Likewise.
7418 * sysdeps/riscv/rvf/s_roundevenf.c: Likewise.
7419 * sysdeps/riscv/rvf/s_roundf.c: Likewise.
7420 * sysdeps/riscv/rvf/s_truncf.c: Likewise.
7422 2018-08-31 Paul Pluzhnikov <ppluzhnikov@google.com>
7425 * include/stdio.h (__libc_fatal): Mention newline in comment.
7426 * grp/initgroups.c (internal_getgrouplist): Add missing newline.
7427 * nptl/pthread_cond_wait.c (__pthread_cond_wait_common): Likewise.
7428 * nscd/initgrcache.c (addinitgroupsX): Likewise.
7429 * nss/nsswitch.c (__nss_next2): Likewise.
7430 * sysdeps/aarch64/dl-irel.h (elf_irela): Likewise.
7431 * sysdeps/arm/dl-irel.h (elf_irel): Likewise.
7432 * sysdeps/generic/unwind-dw2.c (execute_cfa_program): Likewise.
7433 * sysdeps/i386/dl-irel.h (elf_irel): Likewise.
7434 * sysdeps/powerpc/powerpc32/dl-irel.h (elf_irel): Likewise.
7435 * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irel): Likewise.
7436 * sysdeps/s390/dl-irel.h (elf_irel): Likewise.
7437 * sysdeps/sparc/sparc32/dl-irel.h (elf_irel): Likewise.
7438 * sysdeps/sparc/sparc64/dl-irel.h (elf_irel): Likewise.
7439 * sysdeps/x86_64/dl-irel.h (elf_irel): Likewise.
7440 * sysdeps/nptl/futex-internal.h (futex_wake): Likewise.
7441 * sysdeps/unix/sysv/linux/netlink_assert_response.c
7442 (__netlink_assert_response): Likewise.
7444 2018-08-31 Joseph Myers <joseph@codesourcery.com>
7446 * conform/glibcconform.py: New file.
7447 * conform/list-header-symbols.py: Likewise.
7448 * conform/list-header-symbols.pl: Remove.
7449 * conform/Makefile (tests-special): Only add linknamespace tests
7451 ($(linknamespace-symlists-tests)): Use list-header-symbols.py.
7453 2018-08-31 H.J. Lu <hongjiu.lu@intel.com>
7456 * support/Makefile (libsupport-routines): Add
7457 support_copy_file_range and xcopy_file_range.
7458 * support/support.h: Include <sys/types.h>.
7459 (support_copy_file_range): New prototype.
7460 * support/support_copy_file_range.c: New file. Copied and
7461 modified from io/copy_file_range-compat.c.
7462 * support/test-container.c (copy_one_file): Call xcopy_file_rang
7463 instead of copy_file_range.
7464 * support/xcopy_file_range.c: New file.
7465 * support/xunistd.h (xcopy_file_range): New prototype.
7467 2018-08-30 Carlos O'Donell <carlos@redhat.com>
7469 * elf/tst-dlopen-aout.c: Include support/xthread.h. Use
7470 xpthread_create and xpthread_join.
7472 2018-08-30 Florian Weimer <fweimer@redhat.com>
7474 * stdlib/stdlib.h (reallocarray): Make available under __USE_MISC.
7476 2018-08-30 Stefan Liebler <stli@linux.ibm.com>
7478 * stdlib/test-bz22786.c (do_test): Return EXIT_UNSUPPORTED
7481 2018-08-29 Joseph Myers <joseph@codesourcery.com>
7483 * math/gen-libm-test.py (gen_test_args_res): Also treat plus_oflow
7484 and minus_oflow as non-finite.
7486 2018-08-28 Joseph Myers <joseph@codesourcery.com>
7488 * sysdeps/aarch64/fpu/fenv_private.h: New file. Based on ....
7489 * sysdeps/aarch64/fpu/math_private.h: ... this file. All contents
7490 moved to fenv_private.h except for ...
7491 (TOINT_INTRINSICS): Kept in math_private.h.
7492 (roundtoint): Likewise.
7493 (converttoint): Likewise.
7494 * sysdeps/arm/fenv_private.h: Change multiple-include guard to
7495 [ARM_FENV_PRIVATE_H]. Include next <fenv_private.h>.
7496 * sysdeps/arm/math_private.h: Remove.
7497 * sysdeps/generic/fenv_private.h: New file. Contents moved from
7499 * sysdeps/generic/math_private.h: ... this file. Include
7500 <stdbool.h>. Do not include <fenv.h> or <get-rounding-mode.h>.
7501 Include <fenv_private.h>. Remove functions and macros moved to
7503 * sysdeps/i386/fpu/math_private.h: Remove.
7504 * sysdeps/mips/math_private.h: Move to ....
7505 * sysdeps/mips/fpu/fenv_private.h: ... here. Change
7506 multiple-include guard to [MIPS_FENV_PRIVATE_H]. Remove
7507 [__mips_hard_float] conditional. Include next <fenv_private.h>.
7508 * sysdeps/powerpc/fpu/fenv_private.h: Change multiple-include
7509 guard to [POWERPC_FENV_PRIVATE_H]. Include next <fenv_private.h>.
7510 * sysdeps/powerpc/fpu/math_private.h: Do not include
7512 * sysdeps/riscv/rvf/math_private.h: Move to ....
7513 * sysdeps/riscv/rvf/fenv_private.h: ... here. Change
7514 multiple-include guard to [RISCV_FENV_PRIVATE_H]. Include next
7516 * sysdeps/sparc/fpu/fenv_private.h: Change multiple-include guard
7517 to [SPARC_FENV_PRIVATE_H]. Include next <fenv_private.h>.
7518 * sysdeps/sparc/fpu/math_private.h: Remove.
7519 * sysdeps/i386/fpu/fenv_private.h: Move to ....
7520 * sysdeps/x86/fpu/fenv_private.h: ... here. Change
7521 multiple-include guard to [X86_FENV_PRIVATE_H]. Include next
7523 * sysdeps/x86_64/fpu/math_private.h: Do not include
7524 <sysdeps/i386/fpu/fenv_private.h>.
7526 2018-08-28 Florian Weimer <fweimer@redhat.com>
7529 * posix/tst-regcomp-truncated.c: New file.
7530 * posix/Makefile (tests): Add it.
7531 (tst-regcomp-truncated.out): Depend on generated locales.
7533 2018-08-28 Florian Weimer <fweimer@redhat.com>
7535 * support/test-container.c (main): Treat unshare failure with
7536 EPERM as an unsupported test.
7538 2018-08-28 Florian Weimer <fweimer@redhat.com>
7541 nscd: Fix use-after-free in addgetnetgrentX and its callers.
7542 * nscd/netgroupcache.c
7543 (addgetnetgrentX): Add tofreep parameter. Do not free
7544 heap-allocated buffer.
7545 (addinnetgrX): Free buffer allocated bt addgetnetgrentX.
7546 (addgetnetgrentX_ignore): New function.
7547 (addgetnetgrent): Call it.
7548 (readdgetnetgrent): Likewise.
7550 2018-08-28 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
7552 * string/memmem.c: Use memcmp for first match.
7554 2018-08-28 Rafal Luzynski <digitalfreak@lingonborough.com>
7557 * localedata/locales/en_IN (d_fmt): Use "%d/%m/%y".
7559 2018-08-27 DJ Delorie <dj@redhat.com>
7561 * support/Makefile (others): Don't list programs explicitly as a
7562 dependency of "others".
7564 2018-08-27 Joseph Myers <joseph@codesourcery.com>
7566 * sysdeps/generic/math-tests-trap-force.h: New file.
7567 * sysdeps/generic/math-tests.h: Include <math-tests-trap-force.h>.
7568 (EXCEPTION_SET_FORCES_TRAP): Do not define here.
7569 * sysdeps/powerpc/math-tests.h: Remove file.
7570 * sysdeps/powerpc/fpu/math-tests-trap-force.h: New file.
7572 2018-08-27 Martin Kuchta <martin.kuchta@netapp.com>
7573 Torvald Riegel <triegel@redhat.com>
7576 * nptl/pthread_cond_common.c (__condvar_quiesce_and_switch_g1):
7577 Update r to include the set wake-request flag if waiters are
7578 remaining after spinning.
7580 2018-08-27 Joseph Myers <joseph@codesourcery.com>
7582 * sysdeps/gnu/netinet/udp.h (UDP_SEGMENT): New macro.
7584 2018-08-25 Paul Eggert <eggert@cs.ucla.edu>
7587 regex: fix uninitialized memory access
7588 I introduced this bug into gnulib in commit
7589 8335a4d6c7b4448cd0bcb6d0bebf1d456bcfdb17 dated 2006-04-10;
7590 eventually it was merged into glibc. The bug was found by
7591 project-repo <bugs@feusi.co> and reported here:
7592 https://lists.gnu.org/r/sed-devel/2018-08/msg00017.html
7593 Diagnosis and draft fix reported by Assaf Gordon here:
7594 https://lists.gnu.org/r/bug-gnulib/2018-08/msg00071.html
7595 https://lists.gnu.org/r/bug-gnulib/2018-08/msg00142.html
7596 * posix/regex_internal.c (build_wcs_upper_buffer):
7597 Fix bug when mbrtowc returns 0.
7599 2018-08-24 Carlos O'Donell <carlos@redhat.com>
7601 * po/be.po: Update translation.
7603 2018-08-24 DJ Delorie <dj@delorie.com>
7605 * support/Makefile (LDLIBS-links-dso-program): Add -lgcc and
7608 2018-08-24 Paul Pluzhnikov <ppluzhnikov@google.com>
7611 * stdlib/test-bz22786.c (do_test): Fix undefined behavior, don't
7612 create temporary files in source tree.
7614 2018-08-24 Joseph Myers <joseph@codesourcery.com>
7616 * sysdeps/generic/math-tests-trap.h: New file.
7617 * sysdeps/generic/math-tests.h: Include <math-tests-trap.h>.
7618 (EXCEPTION_ENABLE_SUPPORTED): Do not define here.
7619 * sysdeps/aarch64/math-tests.h: Remove file.
7620 * sysdeps/arm/math-tests.h: Likewise.
7621 * sysdeps/riscv/math-tests.h: Likewise.
7622 * sysdeps/aarch64/math-tests-trap.h: New file.
7623 * sysdeps/arm/math-tests-trap.h: Likewise.
7624 * sysdeps/riscv/math-tests-trap.h: Likewise.
7626 2018-08-24 Wilco Dijkstra <wdijkstr@arm.com>
7628 * math/Makefile: Remove empty files k_sin(f).c, k_cos(f).c.
7629 Remove unused files e_rem_pio2(f).c, k_rem_pio2f.c.
7630 * sysdeps/i386/fpu/e_rem_pio2.c: Delete file.
7631 * sysdeps/ia64/fpu/e_rem_pio2.c: Likewise.
7632 * sysdeps/ia64/fpu/e_rem_pio2f.c: Likewise.
7633 * sysdeps/ia64/fpu/k_rem_pio2f.c: Likewise.
7634 * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
7635 * sysdeps/ieee754/dbl-64/k_cos.c: Likewise.
7636 * sysdeps/ieee754/dbl-64/k_sin.c: Likewise.
7637 * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
7638 * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
7639 * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
7640 * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
7641 * sysdeps/m68k/m680x0/fpu/e_rem_pio2.c: Likewise
7642 * sysdeps/m68k/m680x0/fpu/e_rem_pio2f.c: Likewise
7643 * sysdeps/m68k/m680x0/fpu/k_rem_pio2f.c: Likewise
7644 * sysdeps/powerpc/fpu/e_rem_pio2f.c: Likewise.
7645 * sysdeps/powerpc/fpu/k_rem_pio2f.c: Likewise.
7647 2018-08-23 Joseph Myers <joseph@codesourcery.com>
7649 * sysdeps/generic/math-tests-exceptions.h: New file.
7650 * sysdeps/generic/math-tests.h: Include <math-tests-exceptions.h>.
7651 (EXCEPTION_TESTS_float): Do not define here.
7652 (EXCEPTION_TESTS_double): Likewise.
7653 (EXCEPTION_TESTS_long_double): Likewise.
7654 (EXCEPTION_TESTS_float128): Likewise.
7655 * sysdeps/arm/math-tests.h [__SOFTFP__] (EXCEPTION_TESTS_float):
7657 [__SOFTFP__] (EXCEPTION_TESTS_double): Likewise.
7658 [__SOFTFP__] (EXCEPTION_TESTS_long_double): Likewise.
7659 * sysdeps/arm/nofpu/math-tests-exceptions.h: New file.
7660 * sysdeps/m68k/coldfire/math-tests.h: Remove file.
7661 * sysdeps/mips/math-tests.h: Likewise.
7662 * sysdeps/nios2/math-tests.h: Likewise.
7663 * sysdeps/riscv/math-tests.h [!__riscv_flen]
7664 (EXCEPTION_TESTS_float): Do not define here.
7665 [!__riscv_flen] (EXCEPTION_TESTS_double): Likewise.
7666 [!__riscv_flen] (EXCEPTION_TESTS_long_double): Likewise.
7667 * sysdeps/riscv/nofpu/math-tests-exceptions.h: New file.
7669 2018-08-23 Wilco Dijkstra <wdijkstr@arm.com>
7671 * NEWS: Move optimized sinf entry to 2.29.
7673 2018-08-23 Wilco Dijkstra <wdijkstr@arm.com>
7675 * sysdeps/ieee754/flt-32/s_tanf.c (__tanf): Use fast range reduction.
7677 2018-08-22 DJ Delorie <dj@redhat.com>
7679 * Makefile (testroot.pristine): New rules to initialize the
7680 test-in-container "testroot".
7681 * Makerules (all-testsuite): Add tests-container.
7682 * Rules (tests-expected): Add tests-container.
7683 (binaries-all-tests): Likewise.
7684 (tests-container): New, run these tests in the testroot container.
7685 * support/Makefile (others): Add *-container, support_paths.c,
7686 xmkdirp, and links-dso-program.
7687 * support/links-dso-program-c.c: New.
7688 * support/links-dso-program.cc: New.
7689 * support/test-container.c: New.
7690 * support/shell-container.c: New.
7691 * support/echo-container.c: New.
7692 * support/true-container.c: New.
7693 * support/xmkdirp.c: New.
7694 * support/xsymlink.c: New.
7695 * support/support_paths.c: New.
7696 * support/support.h: Add support paths prototypes.
7697 * support/xunistd.h: Add xmkdirp () and xsymlink ().
7699 * nss/tst-nss-test3.c: Convert to test-in-container.
7700 * nss/tst-nss-test3.root/: New.
7702 2018-08-22 Paul Eggert <eggert@cs.ucla.edu>
7704 regex: port Gnulib code to z/OS POSIX environment
7705 Problem reported by Arnold Robbins in:
7706 https://lists.gnu.org/r/bug-gnulib/2018-08/msg00129.html
7707 * posix/regex_internal.h (__iswalnum, __towlower, __towupper) [!_LIBC]:
7710 2018-08-22 Joseph Myers <joseph@codesourcery.com>
7712 * math/test-double-vlen2.h: Don't include <math-tests-rounding.h>.
7713 (ROUNDING_TESTS_double): Remove.
7714 * math/test-double-vlen4.h: Don't include <math-tests-rounding.h>.
7715 (ROUNDING_TESTS_double): Remove.
7716 * math/test-double-vlen8.h: Don't include <math-tests-rounding.h>.
7717 (ROUNDING_TESTS_double): Remove.
7718 * math/test-float-vlen16.h: Don't include <math-tests-rounding.h>.
7719 (ROUNDING_TESTS_float): Remove.
7720 * math/test-float-vlen4.h: Don't include <math-tests-rounding.h>.
7721 (ROUNDING_TESTS_float): Remove.
7722 * math/test-float-vlen8.h: Don't include <math-tests-rounding.h>.
7723 (ROUNDING_TESTS_float): Remove.
7724 * math/libm-test-driver.c (IF_ROUND_INIT_FE_DOWNWARD): Check
7726 (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
7727 (IF_ROUND_INIT_FE_UPWARD): Likewise.
7729 * sysdeps/generic/math-tests-rounding.h: New file.
7730 * sysdeps/generic/math-tests.h: Include <math-tests-rounding.h>.
7731 (ROUNDING_TESTS_float): Do not define here.
7732 (ROUNDING_TESTS_double): Likewise.
7733 (ROUNDING_TESTS_long_double): Likewise.
7734 (ROUNDING_TESTS_float128): Likewise.
7735 * math/test-double-vlen2.h: Include <math-tests-rounding.h>.
7736 (ROUNDING_TESTS_double): Undefine before defining.
7737 * math/test-double-vlen4.h: Include <math-tests-rounding.h>.
7738 (ROUNDING_TESTS_double): Undefine before defining.
7739 * math/test-double-vlen8.h: Include <math-tests-rounding.h>.
7740 (ROUNDING_TESTS_double): Undefine before defining.
7741 * math/test-float-vlen16.h: Include <math-tests-rounding.h>.
7742 (ROUNDING_TESTS_float): Undefine before defining.
7743 * math/test-float-vlen4.h: Include <math-tests-rounding.h>.
7744 (ROUNDING_TESTS_float): Undefine before defining.
7745 * math/test-float-vlen8.h: Include <math-tests-rounding.h>.
7746 (ROUNDING_TESTS_float): Undefine before defining.
7747 * sysdeps/arm/nofpu/math-tests-rounding.h: New file.
7748 * sysdeps/arm/math-tests.h [__SOFTFP__] (ROUNDING_TESTS_float): Do
7750 [__SOFTFP__] (ROUNDING_TESTS_double): Likewise.
7751 [__SOFTFP__] (ROUNDING_TESTS_long_double): Likewise.
7752 * sysdeps/riscv/nofpu/math-tests-rounding.h: New file.
7753 * sysdeps/riscv/math-tests.h [!__riscv_flen]
7754 (ROUNDING_TESTS_float): Do not define here.
7755 [!__riscv_flen] (ROUNDING_TESTS_double): Likewise.
7756 [!__risv_flen] (ROUNDING_TESTS_long_double): Likewise.
7757 * sysdeps/m68k/coldfire/math-tests.h [!__mcffpu__]
7758 (ROUNDING_TESTS_float): Likewise.
7759 [!__mcffpu__] (ROUNDING_TESTS_double): Likewise.
7760 [!__mcffpu__] (ROUNDING_TESTS_long_double): Likewise.
7761 * sysdeps/mips/math-tests.h [__mips_soft_float]
7762 (ROUNDING_TESTS_float): Likewise.
7763 [__mips_soft_float] (ROUNDING_TESTS_double): Likewise.
7764 [__mips_soft_float] (ROUNDING_TESTS_long_double): Likewise.
7765 * sysdeps/nios2/math-tests.h (ROUNDING_TESTS_float): Likewise.
7766 (ROUNDING_TESTS_double): Likewise.
7767 (ROUNDING_TESTS_long_double): Likewise.
7769 2018-08-21 Tobias Klauser <tklauser@distanz.ch>
7771 * sysdeps/unix/sysv/linux/bits/socket.h (PF_MAX): Set to 45.
7772 (PF_XDP): New macro.
7773 (AF_XDP): New macro.
7774 (SOL_XDP): New macro.
7776 2018-08-21 Joseph Myers <joseph@codesourcery.com>
7778 * sysdeps/gnu/netinet/tcp.h (TCP_ZEROCOPY_RECEIVE): New macro.
7779 (TCP_INQ): Likewise.
7780 (TCP_CM_INQ): Likewise.
7781 (TCP_REPAIR_ON): Likewise.
7782 (TCP_REPAIR_OFF): Likewise.
7783 (TCP_REPAIR_OFF_NO_WP): Likewise.
7784 (struct tcp_zerocopy_receive): New type.
7786 2018-08-21 Florian Weimer <fweimer@redhat.com>
7788 * support/support.h (support_descriptor_supports_holes): Declare.
7789 * support/Makefile (libsupport-routines): Add
7790 support_descriptor_supports_holes.
7791 * support/support_descriptor_supports_holes.c: New file.
7792 * io/tst-copy_file_range.c: Call support_descriptor_supports_holes
7793 and stop testing if holes are not supported.
7794 * io/test-lfs.c (do_prepare): Likewise.
7795 * sysdeps/unix/sysv/linux/tst-fallocate-common.c (do_prepare):
7797 * timezone/tst-tzset.c (create_tz_file): Likewise.
7798 * misc/tst-preadvwritev-common.c (temp_fd_supports_holes) New
7800 (do_prepare): Set it.
7801 * misc/tst-preadvwritev64.c (do_test): Use temp_fd_supports_holes.
7803 2018-08-21 Florian Weimer <fweimer@redhat.com>
7806 * Makeconfig (+cflags): Do not sort (and deduplicate).
7808 2018-08-21 Florian Weimer <fweimer@redhat.com>
7810 * debug/readlink_chk.c (__readlink_chk): Always call __readlink.
7811 * sysdeps/unix/sysv/linux/generic/readlink_chk.c: Remove file.
7813 2018-08-20 Florian Weimer <fweimer@redhat.com>
7815 * sysdeps/unix/sysv/linux/generic/readlink_chk.c: Remove
7816 HAVE_INLINED_SYSCALLS conditionals. Use INLINE_SYSCALL_CALL.
7818 2018-08-20 Joseph Myers <joseph@codesourcery.com>
7820 * sysdeps/unix/sysv/linux/sys/signalfd.h (struct
7821 signalfd_siginfo): Add ssi_addr_lsb, ssi_syscall, ssi_call_addr
7822 and ssi_arch members.
7824 * elf/elf.c (NT_VMCOREDD): New macro.
7825 (AT_MINSIGSTKSZ): Likewise.
7827 2018-08-20 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
7829 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile
7830 (libm-sysdep_routines): Remove s_sinf-ppc64, s_sinf-power8,
7831 s_cosf-ppc64 and s_cosf-power8.
7832 * sysdeps/powerpc/fpu/s_cosf.c: Remove file.
7833 * sysdeps/powerpc/fpu/s_sinf.c: Likewise.
7834 * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
7835 * sysdeps/powerpc/fpu/k_cosf.c: Likewise.
7836 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf-power8.S: Likewise.
7837 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf-ppc64.c: Likewise.
7838 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf.c: Likewise.
7839 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-power8.S: Likewise.
7840 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-ppc64.c: Likewise.
7841 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf.c: Likewise.
7842 * sysdeps/powerpc/powerpc64/power8/fpu/s_cosf.S: Likewise.
7843 * sysdeps/powerpc/powerpc64/power8/fpu/s_sinf.S: Likewise.
7845 2018-08-17 Florian Weimer <fweimer@redhat.com>
7847 * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
7849 2018-08-17 Istvan Kurucsai <pistukem@gmail.com>
7851 * malloc/malloc.c (_int_malloc): Additional binning code checks.
7853 2018-08-16 Florian Weimer <fweimer@redhat.com>
7855 * configure.ac: Add --with-nonshared-cflags option.
7856 * config.make.in (extra-nonshared-cflags): Set variable.
7857 * Makeconfig (CFLAGS-.oS): Use it.
7858 * manual/install.texi (Configuring and compiling): Document
7859 --with-nonshared-cflags.
7860 * configure: Regenerate.
7861 * INSTALL: Likewise.
7863 2018-08-16 Florian Weimer <fweimer@redhat.com>
7865 * Makeconfig (ASFLAGS): Always append required assembler flags.
7867 2018-08-16 Moritz Eckert <m.eckert@cs.ucsb.edu>
7869 * malloc/malloc.c (_int_free): Check for corrupt prev_size vs size.
7870 (malloc_consolidate): Likewise.
7872 2018-08-16 Pochang Chen <johnchen902@gmail.com>
7874 * malloc/malloc.c (_int_malloc.c): Verify size of top chunk.
7876 2018-08-16 Siddhesh Poyarekar <siddhesh@sourceware.org>
7878 * benchtests/bench-strlen.c (do_test): Allocate buffers before
7881 * benchtests/bench-strlen.c: Print performance numbers in json.
7883 2018-08-16 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
7885 * sysdeps/powerpc/powerpc64/multiarch/Makefile
7886 (sysdep_routines): Build strcmp-power9 and strncmp-power9
7887 only for little endian.
7888 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
7889 (strncmp): Move __strncmp_power9 inside ifdef __LITTLE_ENDIAN__.
7890 (STRCMP): Move __strcmp_power9 inside ifdef __LITTLE_ENDIAN__.
7891 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power9.S:
7892 Add check for little endian.
7893 * sysdeps/powerpc/powerpc64/multiarch/strcmp.c
7894 (__strcmp_power9): Add check for little endian.
7895 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power9.S:
7896 Add check for little endian.
7897 * sysdeps/powerpc/powerpc64/multiarch/strncmp.c
7898 (__strncmp_power9): Add check for little endian.
7899 * sysdeps/powerpc/powerpc64/power9/strcmp.S: Removed ifdef
7900 __LITTLE_ENDIAN__ and moved to sysdeps/powerpc/powerpc64/le/power9.
7901 * sysdeps/powerpc/powerpc64/power9/strncmp.S: Likewise.
7902 * sysdeps/powerpc/powerpc64/le/power9/strcmp.S: New file.
7903 * sysdeps/powerpc/powerpc64/le/power9/strncmp.S: Likewise.
7905 2018-08-15 Siddhesh Poyarekar <siddhesh@sourceware.org>
7907 * sysdeps/aarch64/strlen.S (__strlen): Rename to STRLEN.
7908 [!STRLEN](STRLEN): Set to __strlen.
7909 * sysdeps/aarch64/multiarch/strlen.c: New file.
7910 * sysdeps/aarch64/multiarch/strlen_generic.S: Likewise.
7911 * sysdeps/aarch64/multiarch/strlen_asimd.S: Likewise.
7912 * sysdeps/aarch64/multiarch/ifunc-impl-list.c
7913 (__libc_ifunc_impl_list): Add strlen.
7914 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines): Add
7915 strlen_generic and strlen_asimd.
7917 2018-08-15 Wilco Dijkstra <wdijkstr@arm.com>
7919 * sysdeps/ieee754/flt-32/e_lgammaf_r.c (sin_pif): Use __sinf/__cosf.
7920 * sysdeps/ieee754/flt-32/k_cosf.c (__kernel_cosf): Remove all code.
7921 * sysdeps/ieee754/flt-32/k_sinf.c (__kernel_sinf): Likewise.
7923 2018-08-15 Wilco Dijkstra <wdijkstr@arm.com>
7925 * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate to fix spaces.
7927 2018-08-14 Florian Weimer <fweimer@redhat.com>
7930 * include/stdio.h (__vfxprintf): Declare.
7931 * stdio-common/fxprintf.c (__vfxprintf): New function.
7932 (__fxprintf): Call it.
7933 * misc/err.c (convert_and_print): Remove function.
7934 (vwarnx, vwarn): Call __fxprintf and __vfxprintf.
7935 * misc/error.c [_LIBC] (error_tail): Call __vfxprintf.
7936 * misc/Makefile (tests): Add tst-warn-wide.
7937 * misc/tst-warn-wide.c: New file.
7939 2018-08-14 Wilco Dijkstra <wdijkstr@arm.com>
7940 Szabolcs Nagy <szabolcs.nagy@arm.com>
7942 * NEWS: Mention sinf, cosf, sincosf.
7943 * sysdeps/aarch64/libm-test-ulps: Update ULP for sinf, cosf, sincosf.
7944 * sysdeps/x86_64/fpu/libm-test-ulps: Update ULP for sinf and cosf.
7945 * sysdeps/x86_64/fpu/multiarch/s_sincosf-fma.c: Add definitions of
7946 constants rather than including generic sincosf.h.
7947 * sysdeps/x86_64/fpu/s_sincosf_data.c: Remove.
7948 * sysdeps/ieee754/flt-32/s_cosf.c (cosf): Rewrite.
7949 * sysdeps/ieee754/flt-32/s_sincosf.h (reduced_sin): Remove.
7950 (reduced_cos): Remove.
7951 (sinf_poly): New function.
7952 * sysdeps/ieee754/flt-32/s_sinf.c (sinf): Rewrite.
7954 2018-08-14 Florian Weimer <fweimer@redhat.com>
7958 * nss/nss_files/files-alias.c (get_next_alias): During :include:
7959 processing, bail out if no room, and close the stream before
7961 * nss/Makefile (tests): Add tst-nss-files-alias-leak.
7962 (tst-nss-files-alias-leak): Link with libdl.
7963 (tst-nss-files-alias-leak.out): Depend on nss_files.
7965 * nss/tst-nss-files-alias-leak.c: New file.
7967 2018-08-14 Florian Weimer <fweimer@redhat.com>
7969 * nscd/nscd_conf.c (nscd_parse_file): Deallocate old storage for
7970 server_user, stat_user.
7972 2018-08-13 Joseph Myers <joseph@codesourcery.com>
7974 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
7976 (io_pgetevents): New syscall.
7979 * manual/install.texi (Configuring and compiling): Do not list
7980 tools used for testing pretty printers here.
7981 (Tools for Compilation): List Python, PExpect and GDB here.
7982 Update descriptions of uses of Perl and Python.
7983 * INSTALL: Regenerate.
7985 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
7988 2018-08-13 Florian Weimer <fweimer@redhat.com>
7990 * misc/error.c (error): Add missing va_end call.
7991 (error_at_line): Likewise.
7993 2018-08-13 Florian Weimer <fweimer@redhat.com>
7995 * stdlib/mbstowcs.c (mbstowcs): Remove outdated comment.
7997 2018-08-11 Siddhesh Poyarekar <siddhesh@sourceware.org>
7999 * benchtests/scripts/benchout.schema.json (properties): Add
8002 * benchtests/bench-skeleton.c (main): Add duration and
8003 iterations attributes.
8005 2018-08-10 Paul Eggert <eggert@cs.ucla.edu>
8007 regex: Gnulib unibyte RRI uses bytes not chars
8008 Adjust the non-glibc code to agree with what Gawk needs for
8009 rational range interpretation (RRI) for regular expression ranges.
8010 In unibyte locales, Gawk wants ranges to use the underlying byte
8011 rather than the character code point. This change does not affect
8013 * posix/regcomp.c (parse_byte) [!LIBC && RE_ENABLE_I18N]:
8014 In unibyte locales, use the byte value rather than
8015 running it through btowc.
8017 2018-08-10 Joseph Myers <joseph@codesourcery.com>
8019 * sysdeps/generic/math-tests-snan.h: New file.
8020 * sysdeps/generic/math-tests.h: Include <math-tests-snan.h>.
8021 (SNAN_TESTS_float): Do not define here.
8022 (SNAN_TESTS_double): Likewise.
8023 (SNAN_TESTS_long_double): Likewise.
8024 (SNAN_TESTS_float128): Likewise.
8025 * sysdeps/i386/fpu/math-tests-snan.h: New file.
8026 * sysdeps/i386/fpu/math-tests.h: Remove file.
8027 * sysdeps/ia64/math-tests-snan.h: New file.
8028 * sysdeps/ia64/math-tests.h: Remove file.
8029 * sysdeps/x86/math-tests.h: Likewise.
8030 * sysdeps/x86_64/fpu/math-tests-snan.h: New file.
8032 2018-08-10 Wilco Dijkstra <wdijkstr@arm.com>
8033 Szabolcs Nagy <szabolcs.nagy@arm.com>
8035 * math/Makefile: Add s_sincosf_data.c.
8036 * sysdeps/ia64/fpu/s_sincosf_data.c: New file.
8037 * sysdeps/ieee754/flt-32/s_sincosf.h (abstop12): Add new function.
8038 (sincosf_poly): Likewise.
8039 (reduce_small): Likewise.
8040 (reduce_large): Likewise.
8041 * sysdeps/ieee754/flt-32/s_sincosf.c (sincosf): Rewrite.
8042 * sysdeps/ieee754/flt-32/s_sincosf_data.c: New file with sincosf data.
8043 * sysdeps/m68k/m680x0/fpu/s_sincosf_data.c: New file.
8044 * sysdeps/x86_64/fpu/s_sincosf_data.c: New file.
8046 2018-08-10 Wilco Dijkstra <wdijkstr@arm.com>
8047 Szabolcs Nagy <szabolcs.nagy@arm.com>
8049 * sysdeps/aarch64/fpu/math_private.h (roundtoint): Use round.
8050 (converttoint): Use lround.
8051 * sysdeps/ieee754/flt-32/math_config.h (roundtoint): Declare and
8052 document the semantics when TOINT_INTRINSICS is set.
8053 (converttoint): Likewise.
8054 (TOINT_RINT): Remove.
8055 (TOINT_SHIFT): Remove.
8056 * sysdeps/ieee754/flt-32/e_expf.c (__expf): Remove the TOINT_RINT code
8059 2018-08-10 Florian Weimer <fweimer@redhat.com>
8062 * sysdeps/unix/sysv/linux/getdents64.c (handle_overflow): New
8064 (__old_getdents64): Use getdents64. Convert entries without
8066 * sysdeps/unix/sysv/linux/tst-readdir64-compat.c: New file.
8067 * sysdeps/unix/sysv/linux/Makefile (tests-internal): Add
8068 tst-readdir64-compat.
8070 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8072 * sysdeps/s390/s390-32/s390-mcount.S (_mcount):
8075 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8077 * sysdeps/s390/s390-64/Versions (__fentry__): Add.
8078 * sysdeps/s390/s390-64/s390x-mcount.S: Move the common
8079 code to s390x-mcount.h and #include it.
8080 * sysdeps/s390/s390-64/s390x-mcount.h: New file.
8081 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist
8084 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8086 * stdlib/Versions: Remove __fentry__.
8087 * sysdeps/i386/Versions: Add __fentry__.
8088 * sysdeps/x86_64/Versions: Add __fentry__.
8090 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8092 * sysdeps/s390/Makefile: Register the new tests.
8093 * sysdeps/s390/tst-dl-runtime-mod.S: New file.
8094 * sysdeps/s390/tst-dl-runtime-profile-audit.c: New file.
8095 * sysdeps/s390/tst-dl-runtime-profile-noaudit.c: New file.
8096 * sysdeps/s390/tst-dl-runtime-resolve-audit.c: New file.
8097 * sysdeps/s390/tst-dl-runtime-resolve-noaudit.c: New file.
8098 * sysdeps/s390/tst-dl-runtime.c: New file.
8100 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8102 * sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_profile):
8105 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8107 * sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_resolve):
8110 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8112 * sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_profile):
8115 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8117 * sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_resolve):
8120 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8122 * sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_profile):
8123 Use symbolic offsets for stack variables.
8125 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8127 * sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_resolve):
8128 Use symbolic offsets for stack variables.
8130 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8132 * sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_profile):
8133 Use symbolic offsets for stack variables.
8135 2018-08-10 Ilya Leoshkevich <iii@linux.ibm.com>
8137 * sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_resolve):
8138 Use symbolic offsets for stack variables.
8140 2018-08-09 Joseph Myers <joseph@codesourcery.com>
8142 * math/gen-libm-test.py: New file.
8143 * math/gen-libm-test.pl: Remove.
8144 * math/Makefile [$(PERL) != no]: Change condition to [PYTHON].
8145 ($(objpfx)libm-test-ulps.h): Use gen-libm-test.py instead of
8147 ($(libm-test-c-noauto-obj)): Likewise.
8148 ($(libm-test-c-auto-obj)): Likewise.
8149 ($(libm-test-c-narrow-obj)): Likewise.
8150 (regen-ulps): Likewise.
8151 * math/README.libm-test: Update references to gen-libm-test.pl.
8152 * math/libm-test-driver.c (struct test_fj_f_data): Update comment
8153 referencing gen-libm-test.pl.
8154 * math/libm-test-nexttoward.inc (nexttoward_test_data): Likewise.
8155 * math/libm-test-support.c: Likewise.
8156 * math/libm-test-support.h: Likewise.
8157 * sysdeps/generic/libm-test-ulps: Likewise.
8159 2018-08-08 Siddhesh Poyarekar <siddhesh@sourceware.org>
8161 * sysdeps/aarch64/strlen.S [TEST_PAGE_CROSS](MIN_PAGE_SIZE):
8164 2018-08-08 Joseph Myers <joseph@codesourcery.com>
8166 * math/libm-test-nextdown.inc (do_test): Move comment to ....
8167 * math/libm-test-nexttoward.inc (nexttoward_test_data): ... here.
8169 2018-08-08 Samuel Thibault <samuel.thibault@ens-lyon.org>
8171 * htl/Versions (__pthread_getspecific, __pthread_setspecific): Add
8173 * sysdeps/htl/pthreadP.h [IS_IN (libpthread)] (__pthread_getspecific,
8174 __pthread_setspecific): Add hidden proto.
8175 * sysdeps/htl/pt-getspecific.c (__pthread_getspecific): Add hidden def.
8176 * sysdeps/htl/pt-setspecific.c (__pthread_setspecific): Add hidden def.
8178 2018-08-07 Siddhesh Poyarekar <siddhesh@sourceware.org>
8180 * benchtests/bench-string.h (buf1_size, buf2_size): New
8182 (init_sizes): New function.
8183 (test_init): Use it.
8184 (alloc_buf, exit_error): New functions.
8185 (alloc_bufs): Use ALLOC_BUF.
8186 (realloc_bufs): Remove.
8187 * benchtests/bench-memcmp.c (do_test): Adjust.
8188 * benchtests/bench-memset-large.c (do_test): Likewise.
8189 * benchtests/bench-memset-walk.c (do_test): Likewise.
8190 * benchtests/bench-memset.c (do_test): Likewise.
8191 * benchtests/bench-strncmp.c (do_test): Likewise.
8193 2018-08-06 Andreas Schwab <schwab@suse.de>
8195 * sysdeps/riscv/nptl/tls.h (DB_THREAD_SELF): Use REGISTER instead
8196 of CONST_THREAD_AREA.
8198 2018-08-06 H.J. Lu <hongjiu.lu@intel.com>
8200 * sysdeps/x86/cpu-features.h (STATE_SAVE_OFFSET): Removed.
8201 (STATE_SAVE_MASK): Likewise.
8202 Don't check __ASSEMBLER__ to include <cpu-features-offsets.h>.
8203 * sysdeps/x86/sysdep.h (STATE_SAVE_OFFSET): New.
8204 (STATE_SAVE_MASK): Likewise.
8205 * sysdeps/x86_64/dl-trampoline.S: Include <cpu-features-offsets.h>
8206 instead of <cpu-features.h>.
8208 2018-08-03 DJ Delorie <dj@redhat.com>
8210 * sysdeps/riscv/rvf/math_private.h (libc_feholdexcept_setround_riscv):
8211 Move libc_fesetround_riscv after libc_feholdexcept_riscv.
8213 * sysdeps/riscv/rv64/rvd/libm-test-ulps: Update.
8215 2018-08-03 Joseph Myers <joseph@codesourcery.com>
8217 * math/libm-test-ilogb.inc (ilogb_test_data): Use ',' not ';'
8219 * math/libm-test-llogb.inc (llogb_test_data): Likewise.
8220 * math/libm-test-logb.inc (logb_test_data): Likewise.
8222 2018-08-03 Wilco Dijkstra <wdijkstr@arm.com>
8224 * string/strcasestr.c (STRCASESTR): Simplify and speedup first match.
8225 * string/strstr.c (AVAILABLE): Likewise.
8227 2018-08-03 H.J. Lu <hongjiu.lu@intel.com>
8229 * sysdeps/i386/i686/multiarch/bzero-ia32.S: Don't include
8231 * sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core-avx2.S: Likewise.
8232 * sysdeps/x86_64/fpu/multiarch/svml_s_expf16_core-avx2.S: Likewise.
8233 * sysdeps/x86_64/multiarch/memset-sse2-unaligned-erms.S: Likewise.
8235 2018-08-03 Carlos O'Donell <carlos@redhat.com>
8237 * po/be.po: Update translation.
8239 * po/be.po: Update translation.
8241 2018-08-03 H.J. Lu <hongjiu.lu@intel.com>
8243 * sysdeps/x86/cpu-features-offsets.sym
8244 (rtld_global_ro_offsetof): Removed.
8245 (CPU_FEATURES_SIZE): Likewise.
8246 (CPUID_OFFSET): Likewise.
8247 (CPUID_SIZE): Likewise.
8248 (CPUID_EAX_OFFSET): Likewise.
8249 (CPUID_EBX_OFFSET): Likewise.
8250 (CPUID_ECX_OFFSET): Likewise.
8251 (CPUID_EDX_OFFSET): Likewise.
8252 (FAMILY_OFFSET): Likewise.
8253 (MODEL_OFFSET): Likewise.
8254 (FEATURE_OFFSET): Likewise.
8255 (FEATURE_SIZ): Likewise.
8256 (COMMON_CPUID_INDEX_1): Likewise.
8257 (COMMON_CPUID_INDEX_7): Likewise.
8258 (FEATURE_INDEX_1): Likewise.
8259 (RTLD_GLOBAL_RO_DL_X86_CPU_FEATURES_OFFSET): Updated.
8261 2018-08-02 Carlos O'Donell <carlos@redhat.com>
8263 * localedata/Makefile (INSTALL-SUPPORTED-LOCALES): Remove.
8264 (INSTALL-SUPPORTED-LOCALE-ARCHIVE): Define.
8265 (INSTALL-SUPPORTED-LOCALE-FILES): Define.
8266 (install-locales): Depend on install-locale-archive.
8267 (install-locale-archive): Define.
8268 (install-locale-files): Define.
8269 (build-one-locale): Define macro.
8270 * manual/install.texi (Running make install): Document.
8271 * manual/INSTALL: Regenerate.
8273 2018-08-02 Siddhesh Poyarekar <siddhesh@sourceware.org>
8275 * benchtests/scripts/compare_strings.py: Import traceback.
8276 (parse_file): Pretty-print error.
8278 * NEWS: Mention the change.
8279 * elf/dl-tunables.list: Rename tune namespace to cpu.
8280 * sysdeps/powerpc/dl-tunables.list: Likewise.
8281 * sysdeps/x86/dl-tunables.list: Likewise.
8282 * sysdeps/aarch64/dl-tunables.list: Rename tune.cpu to
8284 * elf/dl-hwcaps.c (_dl_important_hwcaps): Adjust.
8285 * elf/dl-hwcaps.h (GET_HWCAP_MASK): Likewise.
8286 * manual/README.tunables: Likewise.
8287 * manual/tunables.texi: Likewise.
8288 * sysdeps/powerpc/cpu-features.c: Likewise.
8289 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c
8290 (init_cpu_features): Likewise.
8291 * sysdeps/x86/cpu-features.c: Likewise.
8292 * sysdeps/x86/cpu-features.h: Likewise.
8293 * sysdeps/x86/cpu-tunables.c: Likewise.
8294 * sysdeps/x86_64/Makefile: Likewise.
8295 * sysdeps/x86/dl-cet.c: Likewise.
8297 2018-08-02 Joseph Myers <joseph@codesourcery.com>
8300 * sysdeps/mips/bits/fenv.h (FE_INEXACT): Define only if
8301 [__mips_hard_float].
8302 (FE_UNDERFLOW): Likewise.
8303 (FE_OVERFLOW): Likewise.
8304 (FE_DIVBYZERO): Likewise.
8305 (FE_INVALID): Likewise.
8306 (FE_ALL_EXCEPT): Define to 0 if [!__mips_hard_float].
8307 (FE_TOWARDZERO): Define only if [__mips_hard_float].
8308 (FE_UPWARD): Likewise.
8309 (FE_DOWNWARD): Likewise.
8310 (__FE_UNDEFINED): Define if [!__mips_hard_float]
8311 (FE_NOMASK_ENV): Define only if [__mips_hard_float].
8312 * sysdeps/mips/mips64/sfp-machine.h (_FP_DECL_EX): Define only if
8313 [__mips_hard_float].
8314 (FP_ROUNDMODE): Likewise.
8315 (FP_RND_NEAREST): Likewise.
8316 (FP_RND_ZERO): Likewise.
8317 (FP_RND_PINF): Likewise.
8318 (FP_RND_MINF): Likewise.
8319 (FP_EX_INVALID): Likewise.
8320 (FP_EX_OVERFLOW): Likewise.
8321 (FP_EX_UNDERFLOW): Likewise.
8322 (FP_EX_DIVZERO): Likewise.
8323 (FP_EX_INEXACT): Likewise.
8324 (FP_INIT_ROUNDMODE): Likewise.
8325 * sysdeps/mips/nofpu/fesetenv.c: New file.
8326 * sysdeps/mips/nofpu/feupdateenv.c: Likewise.
8328 2018-08-01 Joseph Myers <joseph@codesourcery.com>
8330 * math/test-misc.c (do_test) [LDBL_MANT_DIG > DBL_MANT_DIG]: Make
8331 code using FE_UNDERFLOW conditional on [FE_UNDERFLOW], code using
8332 FE_OVERFLOW conditional on [FE_OVERFLOW] and code using FE_UPWARD
8333 conditional on [FE_UPWARD].
8335 2018-08-01 Paul Eggert <eggert@cs.ucla.edu>
8337 regex: fix memory leak in Gnulib
8338 Problem and fix reported by Assaf Gordon in:
8339 https://lists.gnu.org/r/bug-gnulib/2018-07/txtqLKNwBdefE.txt
8340 * posix/regcomp.c (free_charset) [!_LIBC]: Free range_starts and
8341 range_ends members too, as they are defined in 'struct
8342 re_charset_t' even if not _LIBC. This affects only Gnulib.
8344 2018-08-01 H.J. Lu <hongjiu.lu@intel.com>
8346 * sysdeps/x86/cpu-features.c (get_common_indeces): Renamed to
8348 (get_common_indices): This.
8349 (init_cpu_features): Updated.
8351 2018-08-01 Joseph Myers <joseph@codesourcery.com>
8353 * sysdeps/generic/math-tests-snan-payload.h: New file.
8354 * sysdeps/hppa/math-tests-snan-payload.h: Likewise.
8355 * sysdeps/mips/math-tests-snan-payload.h: Likewise.
8356 * sysdeps/riscv/math-tests-snan-payload.h: Likewise.
8357 * sysdeps/generic/math-tests.h: Include
8358 <math-tests-snan-payload.h>.
8359 (SNAN_TESTS_PRESERVE_PAYLOAD): Do not define macro here.
8360 * sysdeps/hppa/math-tests.h: Remove file.
8361 * sysdeps/mips/math-tests.h [!__mips_nan2008]
8362 (SNAN_TESTS_PRESERVE_PAYLOAD): Do not define macro here.
8363 * sysdeps/riscv/math-tests.h (SNAN_TESTS_PRESERVE_PAYLOAD):
8366 * sysdeps/generic/math-tests-snan-cast.h: New file.
8367 * sysdeps/powerpc/math-tests-snan-cast.h: Likewise.
8368 * sysdeps/generic/math-tests.h: Include <math-tests-snan-cast.h>.
8369 (SNAN_TESTS_TYPE_CAST): Do not define macro here.
8370 * sysdeps/powerpc/math-tests.h (SNAN_TESTS_TYPE_CAST): Likewise.
8372 2018-08-01 Carlos O'Donel <carlos@redhat.com>
8374 * version.h (RELEASE): Set to "development".
8375 (VERSION): Set to "2.28.9000".
8376 * NEWS (2.29): New section.
8378 * version.h (RELEASE): Set to "stable".
8379 (VERSION): Set to "2.28".
8380 * include/features.h (__GLIBC_MINOR__): Set to 2.28.
8381 * NEWS: Add the list of bugs fixed in 2.28.
8383 * po/ca.po: Update to latest version.
8384 * po/cs.po: Likewise
8385 * po/da.po: Likewise
8386 * po/el.po: Likewise
8387 * po/eo.po: Likewise
8388 * po/es.po: Likewise
8389 * po/fi.po: Likewise
8390 * po/fr.po: Likewise
8391 * po/gl.po: Likewise
8392 * po/hu.po: Likewise
8393 * po/ia.po: Likewise
8394 * po/id.po: Likewise
8395 * po/it.po: Likewise
8396 * po/ja.po: Likewise
8397 * po/ko.po: Likewise
8398 * po/lt.po: Likewise
8399 * po/nb.po: Likewise
8400 * po/nl.po: Likewise
8401 * po/pt_BR.po: Likewise
8402 * po/ru.po: Likewise
8403 * po/rw.po: Likewise
8404 * po/sk.po: Likewise
8405 * po/sl.po: Likewise
8406 * po/tr.po: Likewise
8407 * po/zh_CN.po: Likewise
8408 * po/zh_TW.po: Likewise
8410 2018-07-31 Samuel Thibault <samuel.thibault@ens-lyon.org>
8412 * sysdeps/mach/hurd/i386/init-first.c (init1): Move ELF hdr and TLS
8414 (init): ... before initializing libpthread.
8416 * mach/mach.h (__mach_setup_tls, mach_setup_tls): Add prototypes.
8417 * mach/setup-thread.c (__mach_setup_thread): Move TLS setup to...
8418 (__mach_setup_tls): ... new function.
8419 (mach_setup_tls): New alias.
8420 * hurd/hurdsig.c (_hurdsig_init): Call __mach_setup_tls after
8421 __mach_setup_thread.
8422 * sysdeps/mach/hurd/profil.c (update_waiter): Likewise.
8423 * sysdeps/mach/hurd/setitimer.c (setitimer_locked): Likewise.
8424 * mach/Versions [libc] (mach_setup_tls): Add symbol.
8425 * sysdeps/mach/hurd/i386/libc.abilist (mach_setup_tls): Likewise.
8427 2018-07-31 Carlos O'Donell <carlos@redhat.com>
8429 * manual/install.texi: Update versions.
8430 * INSTALL: Regenerate.
8432 * manual/contrib.texi (Contributors): Update contributions.
8434 2018-07-31 Carlos O'Donell <carlos@redhat.com>
8436 * po/be.po: Update translations.
8438 2018-07-31 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8440 * sysdeps/sh/libm-test-ulps: Update.
8442 2018-07-30 Carlos O'Donell <carlos@redhat.com>
8444 * po/bg.po: Update translations.
8445 * po/de.po: Likewise.
8446 * po/hr.po: Likewise.
8447 * po/pt_BR.po: Likewise.
8448 * po/sv.po: Likewise.
8449 * po/vi.po: Likewise.
8451 2018-07-30 H.J. Lu <hongjiu.lu@intel.com>
8454 * sysdeps/unix/sysv/linux/x86/Makefile (tests): Add
8455 tst-cet-property-1 and tst-cet-property-2 if CET is enabled.
8456 (CFLAGS-tst-cet-property-1.o): New.
8457 (ASFLAGS-tst-cet-property-dep-2.o): Likewise.
8458 ($(objpfx)tst-cet-property-2): Likewise.
8459 ($(objpfx)tst-cet-property-2.out): Likewise.
8460 * sysdeps/unix/sysv/linux/x86/tst-cet-property-1.c: New file.
8461 * sysdeps/unix/sysv/linux/x86/tst-cet-property-2.c: Likewise.
8462 * sysdeps/unix/sysv/linux/x86/tst-cet-property-dep-2.S: Likewise.
8463 * sysdeps/x86/dl-prop.h (_dl_process_cet_property_note): Parse
8464 each property item until GNU_PROPERTY_X86_FEATURE_1_AND is found.
8466 2018-07-30 H.J. Lu <hongjiu.lu@intel.com>
8469 * sysdeps/x86/Makefile (tests): Add tst-get-cpu-features-static.
8471 2018-07-28 Samuel Thibault <samuel.thibault@ens-lyon.org>
8473 * sysdeps/mach/hurd/dl-unistd.h (__access, __brk, __lseek, __read,
8474 __sbrk): Do not set attribute_hidden.
8475 * sysdeps/mach/hurd/not-errno.h: New file.
8476 * sysdeps/mach/hurd/i386/ld.abilist: Update accordingly.
8477 * sysdeps/mach/hurd/i386/localplt.data: Update accordingly.
8479 2018-07-27 Carlos O'Donell <carlos@redhat.com>
8481 * po/uk.po: Update translations.
8482 * po/cs.po: Likewise.
8483 * po/pl.po: Likewise.
8485 2018-07-27 H.J. Lu <hongjiu.lu@intel.com>
8487 * sysdeps/x86/dl-prop.h (_dl_process_cet_property_note): Don't
8488 parse beyond the note end.
8490 2018-07-27 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8492 * sysdeps/unix/sysv/linux/tst-ofdlocks.c: Return unsupported if
8493 kernel does not support OFD locks.
8494 * sysdeps/unix/sysv/linux/tst-ofdlocks-compat.c: Likewise.
8496 2018-07-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
8498 * sysdeps/mach/hurd/Versions (libc): Make __access and
8499 __access_noerrno external so they can override the ld symbols.
8500 (ld): Make __access, __read, __sbrk, __strtoul_internal, __write,
8501 __writev, __open64, __access_noerrno extern so they can be overrided.
8502 * sysdeps/mach/hurd/i386/libc.abilist: Update accordingly.
8503 * sysdeps/mach/hurd/i386/ld.abilist: Update accordingly.
8505 2018-07-26 Carlos O'Donell <carlos@redhat.com>
8507 * po/libc.pot: Regenerate.
8509 2018-07-26 Joseph Myers <joseph@codesourcery.com>
8511 * sysdeps/powerpc/nofpu/libm-test-ulps: Update.
8513 2018-07-26 H.J. Lu <hongjiu.lu@intel.com>
8516 * sysdeps/x86/cpu-features.c (get_extended_indices): New
8518 (init_cpu_features): Call get_extended_indices for both Intel
8520 * sysdeps/x86/cpu-features.h (COMMON_CPUID_INDEX_80000001):
8521 Remove "for AMD" comment.
8523 2018-07-26 H.J. Lu <hongjiu.lu@intel.com>
8526 * sysdeps/x86/cpu-features.h (index_cpu_LZCNT): Set to
8527 COMMON_CPUID_INDEX_80000001.
8529 2018-07-26 Stefan Liebler <stli@linux.ibm.com>
8531 * string/tst-xbzero-opt.c (use_test_buffer): New function.
8532 (prepare_test_buffer): Call use_test_buffer as compiler barrier.
8534 2018-07-26 Florian Weimer <fweimer@redhat.com>
8536 * htl/lockfile.c (flockfile, funlockfile, ftrylockfile): Use weak
8537 aliases for symbols not in the implementation namespace.
8539 2018-07-25 Carlos O'Donell <carlos@redhat.com>
8542 * localedata/locales/iso14651_t1_common: Deinterlace uppercase and
8543 lowercase in LATIN script.
8544 * localedata/Makefile (test-input): Add en_US.UTF-8.
8545 * localedata/en_US.UTF-8.in: New file.
8546 * posix/tst-fnmatch.input: Add comments and new tests for en_US.UTF-8,
8547 and restore old tests.
8548 * posix/tst-regexloc.c (do_test): Add back range expression test.
8550 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8552 * sysdeps/unix/sysv/linux/ia64/tst-setcontext4.c: New file.
8554 2018-07-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8556 * nptl/threads.h: Move to ...
8557 * sysdeps/nptl/threads.h: ... here.
8558 * sysdeps/hurd/stdc-predef.h: New file.
8560 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8562 * sysdeps/unix/sysv/linux/x86/Makefile (tests): Add
8563 tst-cet-setcontext-1 if CET is enabled.
8564 (CFLAGS-tst-cet-setcontext-1.c): Add -mshstk.
8565 * sysdeps/unix/sysv/linux/x86/tst-cet-setcontext-1.c: New file.
8567 2018-07-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8569 * include/threads.h: Move to ...
8570 * sysdeps/nptl/threads.h: ... here.
8571 * sysdeps/htl/threads.h: New file.
8572 * conform/Makefile (linknamespace-libs-ISO11): Use
8573 static-thread-library instead of linking libpthread.
8574 (linknamespace-libs-XPG4): Revert wrong libcrypt.a addition.
8576 2018-07-25 Florian Weimer <fweimer@redhat.com>
8578 * nptl/tst-mtx-timedlock.c (do_test): Implement carry from
8579 nanoseconds into seconds.
8580 * nptl/tst-cnd-basic.c (signal_parent): Lock and unlock mutex.
8581 (do_test): Likewise.
8582 * nptl/tst-cnd-timedwait.c (signal_parent): Likewise.
8583 (do_test): Likewise. Avoid nanosecond overflow and spurious
8584 timeouts due to system load.
8585 * nptl/tst-cnd-broadcast.c (waiting_threads): New variable.
8586 (child_wait): Increment it.
8587 (do_test): Wait as long as necessary until all expected threads
8590 2018-07-25 Vedvyas Shanbhogue <vedvyas.shanbhogue@intel.com>
8591 H.J. Lu <hongjiu.lu@intel.com>
8593 * sysdeps/unix/sysv/linux/x86/sys/ucontext.h (ucontext_t): Add
8595 * sysdeps/unix/sysv/linux/x86_64/__start_context.S: Include
8596 <asm/prctl.h> and "ucontext_i.h" when shadow stack is enabled.
8597 (__push___start_context): New.
8598 * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Include
8600 (__getcontext): Record the current shadow stack base. Save the
8601 caller's shadow stack pointer and base.
8602 * sysdeps/unix/sysv/linux/x86_64/makecontext.c: Include
8603 <pthread.h>, <libc-pointer-arith.h> and <sys/prctl.h>.
8604 (__push___start_context): New prototype.
8605 (__makecontext): Call __push___start_context to allocate a new
8606 shadow stack, push __start_context onto the new stack as well
8607 as the new shadow stack.
8608 * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Include
8610 (__setcontext): Restore the target shadow stack.
8611 * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Include
8613 (__swapcontext): Record the current shadow stack base. Save
8614 the caller's shadow stack pointer and base. Restore the target
8616 * sysdeps/unix/sysv/linux/x86_64/sysdep.h
8617 (STACK_SIZE_TO_SHADOW_STACK_SIZE_SHIFT): New.
8618 * sysdeps/unix/sysv/linux/x86_64/ucontext_i.sym (oSSP): New.
8620 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8622 * stdlib/Makefile ((tests): Add tst-setcontext6, tst-setcontext7,
8623 tst-setcontext8 and tst-setcontext9.
8624 * stdlib/tst-setcontext6.c: New file.
8625 * stdlib/tst-setcontext7.c: Likewise.
8626 * stdlib/tst-setcontext8.c: Likewise.
8627 * stdlib/tst-setcontext9.c: Likewise.
8629 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8631 * stdlib/Makefile ((tests): Add tst-setcontext5.
8632 * stdlib/tst-setcontext5.c: New file.
8634 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8636 * stdlib/Makefile (tests): Add tst-setcontext4.
8637 * stdlib/tst-setcontext4.c: New file.
8639 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8641 * stdlib/Makefile (tests): Add tst-swapcontext1.
8642 * stdlib/tst-swapcontext1.c: New test.
8644 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8646 * sysdeps/x86/Makefile (tests): Add tst-cet-legacy-1,
8647 tst-cet-legacy-2, tst-cet-legacy-2a, tst-cet-legacy-3,
8648 tst-cet-legacy-4, tst-cet-legacy-4a, tst-cet-legacy-4b
8649 and tst-cet-legacy-4c.
8650 (modules-names): Add tst-cet-legacy-mod-1, tst-cet-legacy-mod-2
8651 and tst-cet-legacy-mod-4.
8652 (CFLAGS-tst-cet-legacy-2.c): New.
8653 (CFLAGS-tst-cet-legacy-mod-1.c): Likewise.
8654 (CFLAGS-tst-cet-legacy-mod-2.c): Likewise.
8655 (CFLAGS-tst-cet-legacy-3.c): Likewise.
8656 (CFLAGS-tst-cet-legacy-4.c): Likewise.
8657 (CFLAGS-tst-cet-legacy-mod-4.c): Likewise.
8658 ($(objpfx)tst-cet-legacy-1): Likewise.
8659 ($(objpfx)tst-cet-legacy-2): Likewise.
8660 ($(objpfx)tst-cet-legacy-2.out): Likewise.
8661 ($(objpfx)tst-cet-legacy-2a): Likewise.
8662 ($(objpfx)tst-cet-legacy-2a.out): Likewise.
8663 ($(objpfx)tst-cet-legacy-4): Likewise.
8664 ($(objpfx)tst-cet-legacy-4.out): Likewise.
8665 ($(objpfx)tst-cet-legacy-4a): Likewise.
8666 ($(objpfx)tst-cet-legacy-4a.out): Likewise.
8667 (tst-cet-legacy-4a-ENV): Likewise.
8668 ($(objpfx)tst-cet-legacy-4b): Likewise.
8669 ($(objpfx)tst-cet-legacy-4b.out): Likewise.
8670 (tst-cet-legacy-4b-ENV): Likewise.
8671 ($(objpfx)tst-cet-legacy-4c): Likewise.
8672 ($(objpfx)tst-cet-legacy-4c.out): Likewise.
8673 (tst-cet-legacy-4c-ENV): Likewise.
8674 * sysdeps/x86/tst-cet-legacy-1.c: New file.
8675 * sysdeps/x86/tst-cet-legacy-2.c: Likewise.
8676 * sysdeps/x86/tst-cet-legacy-2a.c: Likewise.
8677 * sysdeps/x86/tst-cet-legacy-3.c: Likewise.
8678 * sysdeps/x86/tst-cet-legacy-4.c: Likewise.
8679 * sysdeps/x86/tst-cet-legacy-4a.c: Likewise.
8680 * sysdeps/x86/tst-cet-legacy-4b.c: Likewise.
8681 * sysdeps/x86/tst-cet-legacy-4c.c: Likewise.
8682 * sysdeps/x86/tst-cet-legacy-mod-1.c: Likewise.
8683 * sysdeps/x86/tst-cet-legacy-mod-2.c: Likewise.
8684 * sysdeps/x86/tst-cet-legacy-mod-4.c: Likewise.
8686 2018-07-25 H.J. Lu <hongjiu.lu@intel.com>
8688 * sysdeps/i386/nptl/tcb-offsets.sym (SSP_BASE_OFFSET): New.
8689 * sysdeps/i386/nptl/tls.h (tcbhead_t): Replace __glibc_reserved2
8691 * sysdeps/x86_64/nptl/tcb-offsets.sym (SSP_BASE_OFFSET): New.
8692 * sysdeps/x86_64/nptl/tls.h (tcbhead_t): Replace __glibc_reserved2
8695 2018-07-25 Andreas Schwab <schwab@suse.de>
8698 * locale/weightwc.h (findidx): Handle the case where usrc is a
8699 prefix of cp but one character too short.
8701 2018-07-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8703 * NEWS: Add ISO C threads addition.
8705 2018-07-24 Florian Weimer <fweimer@redhat.com>
8707 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
8708 [__LINUX_KERNEL_VERSION < 0x040D00] (__ASSUME_MLOCK2)
8709 (__ASSUME_COPY_FILE_RANGE): Undefine. Kernel support was added in
8712 2018-07-24 H.J. Lu <hongjiu.lu@intel.com>
8714 * sysdeps/unix/sysv/linux/x86/include/asm/prctl.h: New file.
8715 * sysdeps/unix/sysv/linux/x86/cpu-features.c: Include
8716 <sys/prctl.h> and <asm/prctl.h>.
8717 (get_cet_status): Call arch_prctl with ARCH_CET_STATUS.
8718 * sysdeps/unix/sysv/linux/x86/dl-cet.h: Include <sys/prctl.h>
8720 (dl_cet_allocate_legacy_bitmap): Call arch_prctl with
8721 ARCH_CET_LEGACY_BITMAP.
8722 (dl_cet_disable_cet): Call arch_prctl with ARCH_CET_DISABLE.
8723 (dl_cet_lock_cet): Call arch_prctl with ARCH_CET_LOCK.
8724 * sysdeps/x86/libc-start.c: Include <startup.h>.
8726 2018-07-24 Florian Weimer <fweimer@redhat.com>
8728 * sysdeps/unix/sysv/linux/sh/kernel-features.h (__ASSUME_STATX):
8729 Undefine. Suggested by Romain Naour <romain.naour@gmail.com>.
8731 2018-07-24 Rical Jasan <rj@2c3t.io>
8732 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8733 Juan Manuel Torres Palma <jmtorrespalma@gmail.com>
8736 * manual/debug.texi: Update adjacent chapter name.
8737 * manual/probes.texi: Likewise.
8738 * manual/threads.texi (ISO C Threads): New section.
8739 (POSIX Threads): Convert to a section.
8741 2018-07-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8742 Juan Manuel Torres Palma <jmtorrespalma@gmail.com>
8745 * nptl/Makefile (tests): Add new test files.
8746 * nptl/tst-call-once.c : New file. Tests C11 functions and types.
8747 * nptl/tst-cnd-basic.c: Likewise.
8748 * nptl/tst-cnd-broadcast.c: Likewise.
8749 * nptl/tst-cnd-timedwait.c: Likewise.
8750 * nptl/tst-mtx-basic.c: Likewise.
8751 * nptl/tst-mtx-recursive.c: Likewise.
8752 * nptl/tst-mtx-timedlock.c: Likewise.
8753 * nptl/tst-mtx-trylock.c: Likewise.
8754 * nptl/tst-thrd-basic.c: Likewise.
8755 * nptl/tst-thrd-detach.c: Likewise.
8756 * nptl/tst-thrd-sleep.c: Likewise.
8757 * nptl/tst-tss-basic.c: Likewise.
8759 2018-07-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
8762 * sysdeps/unix/sysv/linux/aarch64/libc.abilist [GLIBC_2.28]
8763 (thrd_current, thrd_equal, thrd_sleep, thrd_yield): Add C11 thread
8765 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
8766 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
8767 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
8768 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
8769 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
8770 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
8771 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
8772 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
8773 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
8774 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
8775 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
8776 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
8777 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
8779 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
8781 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist:
8783 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: Likewise.
8784 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist: Likewise.
8785 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
8786 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
8787 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
8788 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
8789 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
8790 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
8791 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
8792 * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist [[GLIBC_2.28]
8793 (call_once, cnd_broadcast, cnd_destroy, cnd_init, cnd_signal,
8794 cnd_timedwait, cnd_wait, mtx_destroy, mtx_init, mtx_lock,
8795 mtx_timedlock, mtx_trylock, mtx_unlokc, thrd_create, thrd_detach,
8796 thrd_exit, thrd_join, tss_create, tss_delete, tss_get, tss_set):
8798 * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist: Likewise.
8799 * sysdeps/unix/sysv/linux/alpha/libpthread.abilist: Likewise.
8800 * sysdeps/unix/sysv/linux/arm/libpthread.abilist: Likewise.
8801 * sysdeps/unix/sysv/linux/hppa/libpthread.abilist: Likewise.
8802 * sysdeps/unix/sysv/linux/i386/libpthread.abilist: Likewise.
8803 * sysdeps/unix/sysv/linux/ia64/libpthread.abilist: Likewise.
8804 * sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist: Likewise.
8805 * sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist: Likewise.
8806 * sysdeps/unix/sysv/linux/microblaze/libpthread.abilist: Likewise.
8807 * sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist: Likewise.
8808 * sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist: Likewise.
8809 * sysdeps/unix/sysv/linux/nios2/libpthread.abilist: Likewise.
8811 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist:
8812 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread-le.abilist:
8814 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread.abilist:
8816 * sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist: Likewise.
8817 * sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist: Likewise.
8818 * sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist: Likewise.
8819 * sysdeps/unix/sysv/linux/sh/libpthread.abilist: Likewise.
8820 * sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist: Likewise.
8821 * sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist: Likewise.
8822 * sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist: Likewise.
8823 * sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist: Likewise.
8826 * conform/data/threads.h-data (thread_local): New macro.
8827 (TSS_DTOR_ITERATIONS): Likewise.
8829 (tss_dtor_t): Likewise.
8830 (tss_create): New function.
8831 (tss_get): Likewise.
8832 (tss_set): Likewise.
8833 (tss_delete): Likewise.
8834 * nptl/Makefile (libpthread-routines): Add tss_create, tss_delete,
8835 tss_get, and tss_set objects.
8836 * nptl/Versions (libpthread) [GLIBC_2.28]: Likewise.
8837 * nptl/tss_create.c: New file.
8838 * nptl/tss_delete.c: Likewise.
8839 * nptl/tss_get.c: Likewise.
8840 * nptl/tss_set.c: Likewise.
8841 * sysdeps/nptl/threads.h (thread_local): New define.
8842 (TSS_DTOR_ITERATIONS): Likewise.
8843 (tss_t): New typedef.
8844 (tss_dtor_t): Likewise.
8845 (tss_create): New prototype.
8846 (tss_get): Likewise.
8847 (tss_set): Likewise.
8848 (tss_delete): Likewise.
8851 * conform/data/threads.h-data (cnd_t): New type.
8852 (cnd_init): New function.
8853 (cnd_signal): Likewise.
8854 (cnd_broadcast): Likewise.
8855 (cnd_wait): Likewise.
8856 (cnd_timedwait): Likewise.
8857 (cnd_destroy): Likewise.
8858 * nptl/Makefile (libpthread-routines): Add cnd_broadcast,
8859 cnd_destroy, cnd_init, cnd_signal, cnd_timedwait, and cnd_wait
8861 * nptl/Versions (libpthread) [GLIBC_2.28]: Likewise.
8862 * nptl/cnd_broadcast.c: New file.
8863 * nptl/cnd_destroy.c: Likewise.
8864 * nptl/cnd_init.c: Likewise.
8865 * nptl/cnd_signal.c: Likewise.
8866 * nptl/cnd_timedwait.c: Likewise.
8867 * nptl/cnd_wait.c: Likewise.
8868 * sysdeps/nptl/threads.h (cnd_t): New type.
8869 (cnd_init): New prototype.
8870 (cnd_signa): Likewise.
8871 (cnd_broadcast): Likewise.
8872 (cnd_wait): Likewise.
8873 (cnd_timedwait): Likewise.
8874 (cnd_destroy): Likewise.
8877 * conform/data/threads.h-data (ONCE_FLAG_INIT): New macro.
8878 (once_flag): New type.
8879 (call_once): New function.
8880 * nptl/Makefile (libpthread-routines): Add call_once object.
8881 * nptl/Versions (libphread) [GLIBC_2.28]: Add call_once symbol.
8882 * nptl/call_once.c: New file.
8883 * sysdeps/nptl/threads.h (ONCE_FLAG_INIT): New define.
8884 (once_flag): New type.
8885 (call_once): New prototype.
8888 * conform/data/threads.h-data (mtx_plain): New constant.
8889 (mtx_recursive): Likewise.
8890 (mtx_timed): Likewise.
8892 (mtx_init): New function.
8893 (mtx_lock): Likewise.
8894 (mtx_timedlock): Likewise.
8895 (mtx_trylock): Likewise.
8896 (mtx_unlock): Likewise.
8897 (mtx_destroy): Likewise.
8898 * nptl/Makefile (libpthread-routines): Add mtx_destroy, mtx_init,
8899 mtx_lock, mtx_timedlock, mtx_trylock, and mtx_unlock object.
8900 * nptl/Versions (libpthread) [GLIBC_2.28]): Add mtx_init, mtx_lock,
8901 mtx_timedlock, mtx_trylock, mtx_unlock, and mtx_destroy.
8902 * nptl/mtx_destroy.c: New file.
8903 * nptl/mtx_init.c: Likewise.
8904 * nptl/mtx_lock.c: Likewise.
8905 * nptl/mtx_timedlock.c: Likewise.
8906 * nptl/mtx_trylock.c: Likewise.
8907 * nptl/mtx_unlock.c: Likewise.
8908 * sysdeps/nptl/threads.h (mtx_plain): New enumeration.
8909 (mtx_recursive): Likewise.
8910 (mtx_timed): Likewise.
8912 (mtx_init): New prototype.
8913 (mtx_lock): Likewise.
8914 (mtx_timedlock): Likewise.
8915 (mtx_trylock): Likewise.
8916 (mtx_unlock): Likewise.
8917 (mtx_destroy): Likewise.
8920 * conform/Makefile (conformtest-headers-ISO11): Add threads.h.
8921 (linknamespace-libs-ISO11): Add libpthread.a.
8922 * conform/data/threads.h-data: New file: add C11 thrd_* types and
8924 * include/stdc-predef.h (__STDC_NO_THREADS__): Remove definition.
8925 * nptl/Makefile (headers): Add threads.h.
8926 (libpthread-routines): Add new C11 thread thrd_create, thrd_current,
8927 thrd_detach, thrd_equal, thrd_exit, thrd_join, thrd_sleep, and
8929 * nptl/Versions (libpthread) [GLIBC_2.28]): Add new C11 thread
8930 thrd_create, thrd_current, thrd_detach, thrd_equal, thrd_exit,
8931 thrd_join, thrd_sleep, and thrd_yield symbols.
8932 * nptl/descr.h (struct pthread): Add c11 field.
8933 * nptl/pthreadP.h (ATTR_C11_THREAD): New define.
8934 * nptl/pthread_create.c (START_THREAD_DEFN): Call C11 thread start
8935 routine with expected function prototype.
8936 (__pthread_create_2_1): Add C11 threads check based on attribute
8938 * sysdeps/unix/sysdep.h (INTERNAL_SYSCALL_CANCEL): New macro.
8939 * nptl/thrd_create.c: New file.
8940 * nptl/thrd_current.c: Likewise.
8941 * nptl/thrd_detach.c: Likewise.
8942 * nptl/thrd_equal.c: Likewise.
8943 * nptl/thrd_exit.c: Likewise.
8944 * nptl/thrd_join.c: Likewise.
8945 * nptl/thrd_priv.h: Likewise.
8946 * nptl/thrd_sleep.c: Likewise.
8947 * nptl/thrd_yield.c: Likewise.
8948 * include/threads.h: Likewise.
8950 2018-07-24 H.J. Lu <hongjiu.lu@intel.com>
8952 * bits/indirect-return.h: New file.
8953 * misc/sys/cdefs.h (__glibc_has_attribute): New.
8954 * sysdeps/x86/bits/indirect-return.h: Likewise.
8955 * stdlib/Makefile (headers): Add bits/indirect-return.h.
8956 * stdlib/ucontext.h: Include <bits/indirect-return.h>.
8957 (swapcontext): Add __INDIRECT_RETURN.
8958 * string/tst-xbzero-opt.c (ALWAYS_INLINE): New.
8959 (prepare_test_buffer): Use it.
8961 2018-07-24 Andreas Schwab <schwab@suse.de>
8964 * iconvdata/ibm1364.c (MAX_NEEDED_OUTPUT) [FROM_LOOP]: Define.
8965 (MAX_NEEDED_INPUT) [TO_LOOP]: Define.
8967 2018-07-24 H.J. Lu <hongjiu.lu@intel.com>
8969 * sysdeps/unix/sysv/linux/i386/vfork.S (SYSCALL_ERROR_HANDLER):
8970 Redefine if shadow stack is enabled.
8971 (SYSCALL_ERROR_LABEL): Likewise.
8972 (__vfork): Pop shadow stack and jump back to to caller directly
8973 when shadow stack is in use.
8974 * sysdeps/unix/sysv/linux/x86_64/vfork.S (SYSCALL_ERROR_HANDLER):
8975 Redefine if shadow stack is enabled.
8976 (SYSCALL_ERROR_LABEL): Likewise.
8977 (__vfork): Pop shadow stack and jump back to to caller directly
8978 when shadow stack is in use.
8980 2018-07-24 H.J. Lu <hongjiu.lu@intel.com>
8982 * sysdeps/x86_64/tst-quadmod1.S (func): Add endbr64 if IBT is
8985 * sysdeps/x86_64/tst-quadmod2.S (func) : Likewise.
8988 2018-07-20 Joseph Myers <joseph@codesourcery.com>
8990 * scripts/build-many-glibcs.py (Context.checkout): Default
8991 binutils version to 2.31 branch.
8993 2018-07-20 Zong Li <zong@andestech.com>
8995 * scripts/build-many-glibcs.py (Context.checkout_tar): Change the
8996 URL of gcc's tarball.
8998 2018-07-20 Florian Weimer <fweimer@redhat.com>
9001 * posix/regcomp.c (build_equiv_class): When comparing weights, do
9002 not compare an extra byte after the end of the weights.
9004 2018-07-20 Samuel Thibault <samuel.thibault@ens-lyon.org>
9006 * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Set multiple_threads
9008 * sysdeps/hurd/include/hurd/port.h [!_ISOMAC]: Do not declare libc
9010 * sysdeps/mach/include/mach-shortcuts-hidden.h [!_ISOMAC]: Likewise.
9011 * sysdeps/mach/include/mach/mach_traps.h [!_ISOMAC]: Likewise.
9012 * scripts/check-execstack.awk: Consider `xfail' variable containing a
9013 list of libraries whose stack executability is expected.
9014 * elf/Makefile ($(objpfx)check-execstack.out): Pass
9015 $(check-execstack-xfail) to check-execstack.awk through `xfail'
9017 * sysdeps/mach/hurd/i386/Makefile (check-execstack-xfail): Set to ld.so
9018 libc.so libpthread.so.
9020 2018-07-20 Thomas Schwinge <tschwinge@gnu.org>
9022 * sysdeps/mach/hurd/socket.c (__socket): Handle SOCK_CLOEXEC and
9024 * sysdeps/mach/hurd/socketpair.c (__socketpair): Handle SOCK_CLOEXEC
9026 * sysdeps/mach/hurd/pipe2.c: New file, copy from pipe.c. Evolve it to
9028 * sysdeps/mach/hurd/pipe.c (__pipe): Reimplement using __pipe2.
9030 2018-07-19 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
9032 * benchtests/scripts/compare_bench.py (__main__): use the argparse
9033 library to improve command line parsing.
9034 (__main__): make schema file as optional parameter (--schema),
9035 defaulting to benchtests/scripts/benchout.schema.json.
9036 (main): move out of the parsing stuff to __main_ and leave it
9037 only as caller of main comparison functions.
9039 2018-07-19 H.J. Lu <hongjiu.lu@intel.com>
9041 * NEWS: Add a note for Intel CET status.
9042 * manual/install.texi: Likewise.
9043 * INSTALL: Regenerated.
9045 2018-07-18 Quentin PAGÈS <provaires@quentino.fr>
9048 * localedata/locales/oc_FR (mon): Rename to...
9049 (alt_mon): This, then update October (typo fix).
9050 (mon): New content (genitive case, month names preceded by
9054 * localedata/locales/oc_FR (abday): Update all items.
9055 (day): Update Wednesday and Saturday (typo fixes).
9056 (abmon): Update all items, except May.
9057 (d_fmt): Update "%d.%m.%Y" -> "%d/%m/%Y".
9058 (LC_IDENTIFICATION): Bump the revision number and date.
9059 Keep the "category" entries in alphabetic order.
9060 (LC_ADDRESS): Remove no longer needed comment.
9061 (LC_COLLATE): Use “copy "ca_ES"”.
9062 (LC_NAME): Set the correct values of "name_fmt", "name_mr", and
9065 2018-07-18 Joseph Myers <joseph@codesourcery.com>
9067 * grp/tst_fgetgrent.c: Include <unistd.h>.
9068 (main): Use mkstemp instead of tmpnam.
9069 * io/test-utime.c (main): Likewise.
9070 * posix/annexc.c (macrofile): Change to modifiable array.
9071 (main): Remove macrofile here.
9072 (get_null_defines): Use mkstemp instead of tmpnam. Do not remove
9074 (check_header): Do not remove macrofile here.
9075 * posix/bug-getopt1.c: Include <stdlib.h>.
9076 (do_test): Use mkstemp instead of tmpnam.
9077 * posix/bug-getopt2.c: Include <stdlib.h>.
9078 (do_test): Use mkstemp instead of tmpnam.
9079 * posix/bug-getopt3.c: Include <stdlib.h>.
9080 (do_test): Use mkstemp instead of tmpnam.
9081 * posix/bug-getopt4.c: Include <stdlib.h>.
9082 (do_test): Use mkstemp instead of tmpnam.
9083 * posix/bug-getopt5.c: Include <stdlib.h>.
9084 (do_test): Use mkstemp instead of tmpnam.
9085 * stdio-common/bug7.c: Include <stdlib.h> and <unistd.h>.
9086 (main): Use mkstemp instead of tmpnam.
9087 * stdio-common/tst-fdopen.c: Include <stdlib.h>.
9088 (main): Use mkstemp instead of tmpnam.
9089 * stdio-common/tst-ungetc.c: Include <stdlib.h>.
9090 (main): use mkstemp instead of tmpnam.
9091 * stdlib/isomac.c (macrofile): Change to modifiable array.
9092 (main): Remove macrofile here.
9093 (get_null_defines): Use mkstemp instead of tmpnam. Do not remove
9095 (check_header): Do not remove macrofile here.
9097 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9099 * manual/tunables.texi: Document glibc.tune.x86_ibt and
9100 glibc.tune.x86_shstk.
9102 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9104 * NEWS: Mention --enable-cet.
9105 * manual/install.texi: Document --enable-cet.
9106 * INSTALL: Regenerated.
9108 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9110 * sysdeps/x86_64/multiarch/memcmp-sse4.S (BRANCH_TO_JMPTBL_ENTRY):
9111 Add _CET_NOTRACK before indirect jump to jump table.
9113 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9115 * sysdeps/i386/i686/multiarch/memset-sse2-rep.S
9116 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9119 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9121 * sysdeps/i386/i686/multiarch/strcat-sse2.S
9122 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9125 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9127 * sysdeps/i386/i686/multiarch/strcpy-sse2.S
9128 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9131 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9133 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S
9134 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9137 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9139 * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S
9140 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9142 (BRANCH_TO_JMPTBL_ENTRY_TAIL): Likewise.
9144 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9146 * sysdeps/i386/i686/multiarch/memcmp-sse4.S
9147 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9150 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9152 * sysdeps/i386/i686/multiarch/memset-sse2.S
9153 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9156 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9158 * sysdeps/i386/i686/memcmp.S (memcmp): Add _CET_NOTRACK before
9159 indirect jump to jump table.
9161 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9163 * sysdeps/x86_64/multiarch/memcpy-ssse3.S
9164 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9168 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9170 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S
9171 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9175 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9177 * sysdeps/x86_64/multiarch/strcmp-sse42.S (STRCMP_SSE42): Add
9178 _CET_NOTRACK before indirect jump to jump table.
9180 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9182 * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S
9183 (BRANCH_TO_JMPTBL_ENTRY): Add _CET_NOTRACK before indirect jump
9186 2018-07-18 H.J. Lu <hongjiu.lu@intel.com>
9188 * sysdeps/x86_64/strcmp.S (STRCMP): Add _CET_NOTRACK before
9189 indirect jump to jump table.
9191 2018-07-18 Valery Timiriliyev <timiriliyev@gmail.com>
9194 * localedata/Makefile (test-input): Add sah_RU.UTF-8.
9195 (LOCALES): Likewise.
9196 * localedata/SUPPORTED (sah_RU/UTF-8): New entry.
9197 * localedata/locales/sah_RU: New file.
9198 * localedata/sah_RU.UTF-8.in: New file.
9200 2018-07-17 H.J. Lu <hongjiu.lu@intel.com>
9202 * sysdeps/i386/add_n.S: Include <sysdep.h>, instead of
9204 (__mpn_add_n): Save and restore %ebx if IBT is enabed. Add
9205 _CET_ENDBR to indirect jump targets and adjust jump destination
9207 * sysdeps/i386/i686/add_n.S: Include <sysdep.h>, instead of
9209 (__mpn_add_n): Save and restore %ebx if IBT is enabed. Add
9210 _CET_ENDBR to indirect jump targets and adjust jump destination
9212 * sysdeps/i386/sub_n.S: Include <sysdep.h>, instead of
9214 (__mpn_sub_n): Save and restore %ebx if IBT is enabed. Add
9215 _CET_ENDBR to indirect jump targets and adjust jump destination
9218 2018-07-17 H.J. Lu <hongjiu.lu@intel.com>
9220 * sysdeps/x86_64/multiarch/strcmp-sse42.S (STRCMP_SSE42): Add
9223 2018-07-17 H.J. Lu <hongjiu.lu@intel.com>
9225 * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_return): Add
9227 (_dl_tlsdesc_undefweak): Likewise.
9228 (_dl_tlsdesc_dynamic): Likewise.
9229 (_dl_tlsdesc_resolve_abs_plus_addend): Likewise.
9230 (_dl_tlsdesc_resolve_rel): Likewise.
9231 (_dl_tlsdesc_resolve_rela): Likewise.
9232 (_dl_tlsdesc_resolve_hold): Likewise.
9233 * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_return): Likewise.
9234 (_dl_tlsdesc_undefweak): Likewise.
9235 (_dl_tlsdesc_dynamic): Likewise.
9236 (_dl_tlsdesc_resolve_rela): Likewise.
9237 (_dl_tlsdesc_resolve_hold): Likewise.
9239 2018-07-17 H.J. Lu <hongjiu.lu@intel.com>
9241 * sysdeps/i386/crti.S (_init): Add _CET_ENDBR.
9243 * sysdeps/x86_64/crti.S (_init): Likewise.
9246 2018-07-17 Rafal Luzynski <digitalfreak@lingonborough.com>
9249 * localedata/locales/os_RU (mon): Rename to...
9251 (mon): Import from CLDR (genitive case).
9253 2018-07-17 H.J. Lu <hongjiu.lu@intel.com>
9255 * sysdeps/x86/cpu-features.c: Always include <dl-cet.h> and
9256 cet-tunables.h> when CET is enabled.
9258 2018-07-16 H.J. Lu <hongjiu.lu@intel.com>
9261 * configure.ac: Add --enable-cet.
9262 * configure: Regenerated.
9263 * elf/Makefille (all-built-dso): Add a comment.
9264 * elf/dl-load.c (filebuf): Moved before "dynamic-link.h".
9265 Include <dl-prop.h>.
9266 (_dl_map_object_from_fd): Call _dl_process_pt_note on PT_NOTE
9268 * elf/dl-open.c: Include <dl-prop.h>.
9269 (dl_open_worker): Call _dl_open_check.
9270 * elf/rtld.c: Include <dl-prop.h>.
9271 (dl_main): Call _rtld_process_pt_note on PT_NOTE segment. Call
9273 * sysdeps/generic/dl-prop.h: New file.
9274 * sysdeps/i386/dl-cet.c: Likewise.
9275 * sysdeps/unix/sysv/linux/x86/cpu-features.c: Likewise.
9276 * sysdeps/unix/sysv/linux/x86/dl-cet.h: Likewise.
9277 * sysdeps/x86/cet-tunables.h: Likewise.
9278 * sysdeps/x86/check-cet.awk: Likewise.
9279 * sysdeps/x86/configure: Likewise.
9280 * sysdeps/x86/configure.ac: Likewise.
9281 * sysdeps/x86/dl-cet.c: Likewise.
9282 * sysdeps/x86/dl-procruntime.c: Likewise.
9283 * sysdeps/x86/dl-prop.h: Likewise.
9284 * sysdeps/x86/libc-start.h: Likewise.
9285 * sysdeps/x86/link_map.h: Likewise.
9286 * sysdeps/i386/dl-trampoline.S (_dl_runtime_resolve): Add
9288 (_dl_runtime_profile): Likewise.
9289 (_dl_runtime_resolve_shstk): New.
9290 (_dl_runtime_profile_shstk): Likewise.
9291 * sysdeps/linux/x86/Makefile (sysdep-dl-routines): Add dl-cet
9293 (CFLAGS-.o): Add -fcf-protection if CET is enabled.
9294 (CFLAGS-.os): Likewise.
9295 (CFLAGS-.op): Likewise.
9296 (CFLAGS-.oS): Likewise.
9297 (asm-CPPFLAGS): Add -fcf-protection -include cet.h if CET
9299 (tests-special): Add $(objpfx)check-cet.out.
9300 (cet-built-dso): New.
9301 (+$(cet-built-dso:=.note)): Likewise.
9302 (common-generated): Add $(cet-built-dso:$(common-objpfx)%=%.note).
9303 ($(objpfx)check-cet.out): New.
9304 (generated): Add check-cet.out.
9305 * sysdeps/x86/cpu-features.c: Include <dl-cet.h> and
9307 (TUNABLE_CALLBACK (set_x86_ibt)): New prototype.
9308 (TUNABLE_CALLBACK (set_x86_shstk)): Likewise.
9309 (init_cpu_features): Call get_cet_status to check CET status
9310 and update dl_x86_feature_1 with CET status. Call
9311 TUNABLE_CALLBACK (set_x86_ibt) and TUNABLE_CALLBACK
9312 (set_x86_shstk). Disable and lock CET in libc.a.
9313 * sysdeps/x86/cpu-tunables.c: Include <cet-tunables.h>.
9314 (TUNABLE_CALLBACK (set_x86_ibt)): New function.
9315 (TUNABLE_CALLBACK (set_x86_shstk)): Likewise.
9316 * sysdeps/x86/sysdep.h (_CET_NOTRACK): New.
9317 (_CET_ENDBR): Define if not defined.
9318 (ENTRY): Add _CET_ENDBR.
9319 * sysdeps/x86/dl-tunables.list (glibc.tune): Add x86_ibt and
9321 * sysdeps/x86_64/dl-trampoline.h (_dl_runtime_resolve): Add
9323 (_dl_runtime_profile): Likewise.
9325 2018-07-16 Rogerio A. Cardoso <rcardoso@linux.vnet.ibm.com>
9328 * sysdeps/powerpc/powerpc64/__longjmp-common.S: Remove condition code for
9329 restore r2 on longjmp.
9330 * sysdeps/powerpc/powerpc64/Makefile: Added tst-setjmp-bug21895-static to
9332 Added rules to build test tst-setjmp-bug21895-static.
9333 Added module setjmp-bug21895 and rules to build a shared object from it.
9334 * sysdeps/powerpc/powerpc64/setjmp-bug21895.c: New test file.
9335 * sysdeps/powerpc/powerpc64/tst-setjmp-bug21895-static.c: New test file.
9337 2018-07-15 Wilco Dijkstra <wdijkstr@arm.com>
9339 * benchtests/bench-strcasestr.c: Rename __strnlen to strnlen.
9340 * benchtests/bench-strstr.c: Likewise.
9341 * string/memmem.c (FASTSEARCH): Define.
9342 * string/str-two-way.h (two_way_short_needle): Minor cleanups.
9343 Add support for FASTSEARCH.
9344 * string/strcasestr.c (AVAILABLE): Use read-ahead __strnlen.
9345 * string/strstr.c (AVAILABLE): Use read-ahead __strnlen.
9346 (FASTSEARCH): Define.
9347 * string/test-strcasestr.c: Rename __strnlen to strnlen.
9348 * string/test-strstr.c: Likewise.
9350 2018-07-15 H.J. Lu <hongjiu.lu@intel.com>
9352 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Undef
9353 SHADOW_STACK_POINTER_OFFSET after including <jmp_buf-ssp.h>.
9355 2018-07-14 Igor Tsimbalist <igor.v.tsimbalist@intel.com>
9356 H.J. Lu <hongjiu.lu@intel.com>
9358 * sysdeps/i386/__longjmp.S: Include <jmp_buf-ssp.h>.
9359 (__longjmp): Restore shadow stack pointer if shadow stack is
9360 enabled, SHADOW_STACK_POINTER_OFFSET is defined and __longjmp
9361 isn't defined for __longjmp_cancel.
9362 * sysdeps/i386/bsd-_setjmp.S: Include <jmp_buf-ssp.h>.
9363 (_setjmp): Save shadow stack pointer if shadow stack is enabled
9364 and SHADOW_STACK_POINTER_OFFSET is defined.
9365 * sysdeps/i386/bsd-setjmp.S: Include <jmp_buf-ssp.h>.
9366 (setjmp): Save shadow stack pointer if shadow stack is enabled
9367 and SHADOW_STACK_POINTER_OFFSET is defined.
9368 * sysdeps/i386/setjmp.S: Include <jmp_buf-ssp.h>.
9369 (__sigsetjmp): Save shadow stack pointer if shadow stack is
9370 enabled and SHADOW_STACK_POINTER_OFFSET is defined.
9371 * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S: Include
9373 (____longjmp_chk): Restore shadow stack pointer if shadow stack
9374 is enabled and SHADOW_STACK_POINTER_OFFSET is defined.
9375 * sysdeps/unix/sysv/linux/x86/Makefile (gen-as-const-headers):
9376 Remove jmp_buf-ssp.sym.
9377 * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Include
9379 (____longjmp_chk): Restore shadow stack pointer if shadow stack
9380 is enabled and SHADOW_STACK_POINTER_OFFSET is defined.
9381 * sysdeps/x86/Makefile (gen-as-const-headers): Add
9383 * sysdeps/x86/jmp_buf-ssp.sym: New dummy file.
9384 * sysdeps/x86_64/__longjmp.S: Include <jmp_buf-ssp.h>.
9385 (__longjmp): Restore shadow stack pointer if shadow stack is
9386 enabled, SHADOW_STACK_POINTER_OFFSET is defined and __longjmp
9387 isn't defined for __longjmp_cancel.
9388 * sysdeps/x86_64/setjmp.S: Include <jmp_buf-ssp.h>.
9389 (__sigsetjmp): Save shadow stack pointer if shadow stack is
9390 enabled and SHADOW_STACK_POINTER_OFFSET is defined.
9392 2018-07-14 H.J. Lu <hongjiu.lu@intel.com>
9395 * nptl/pthread_create.c: Include <tls-setup.h>.
9396 (__pthread_create_2_1): Call tls_setup_tcbhead.
9397 * sysdeps/generic/tls-setup.h: New file.
9398 * sysdeps/x86/nptl/tls-setup.h: Likewise.
9399 * sysdeps/i386/nptl/tcb-offsets.sym (FEATURE_1_OFFSET): New.
9400 * sysdeps/x86_64/nptl/tcb-offsets.sym (FEATURE_1_OFFSET):
9402 * sysdeps/i386/nptl/tls.h (tcbhead_t): Rename __glibc_reserved1
9404 * sysdeps/x86_64/nptl/tls.h (tcbhead_t): Likewise.
9405 * sysdeps/x86/sysdep.h (X86_FEATURE_1_IBT): New.
9406 (X86_FEATURE_1_SHSTK): Likewise.
9407 (CET_ENABLED): Likewise.
9408 (IBT_ENABLED): Likewise.
9409 (SHSTK_ENABLED): Likewise.
9411 2018-07-13 Rafal Luzynski <digitalfreak@lingonborough.com>
9414 * localedata/Makefile (test-input): Add dsb_DE.UTF-8.
9415 (LOCALES): Likewise.
9416 * localedata/dsb_DE.UTF-8.in: New file.
9417 * localedata/locales/dsb_DE (LC_COLLATE): Fix syntax error.
9419 2018-07-12 Florian Weimer <fweimer@redhat.com>
9421 * nptl/allocatestack.c [_STACK_GROWS_UP] (allocate_stack): Call
9422 __mprotect, not mprotect.
9424 2018-07-11 Florian Weimer <fweimer@redhat.com>
9426 * io/Makefile (headers): Add bits/statx.h.
9428 2018-07-10 Mike FABIAN <mfabian@redhat.com>
9430 * localedata/charmaps/UTF-8: Use correct Unicode version 11.0.0 in comment.
9431 * localedata/locales/i18n_ctype: Use correct Unicode version in comments
9433 * localedata/unicode-gen/utf8_gen.py: Add option to specify Unicode version
9434 * localedata/unicode-gen/Makefile: Use option to specify Unicode version
9437 2018-07-10 Florian Weimer <fweimer@redhat.com>
9439 * io/Makefile (routines): Add statx.
9440 (tests-internal): Add tst-statx.
9441 * io/Versions (GLIBC_2.28): Export statx.
9442 * io/bits/statx.h: New file.
9443 * io/sys/stat.h [__USE_GNU]: Include it.
9444 * io/fcntl.h [__USE_GNU] (AT_STATX_SYNC_TYPE)
9445 (AT_STATX_SYNC_AS_STAT, AT_STATX_FORCE_SYNC, AT_STATX_DONT_SYNC):
9447 * io/statx.c: New file.
9448 * io/statx_generic.: Likewise.
9449 * io/tst-statx.: Likewise.
9450 * include/bits/statx.h: Likewise.
9451 * sysdeps/unix/sysv/linux/kernel-features.h
9452 [__LINUX_KERNEL_VERSION >= 0x040B00] (__ASSUME_STATX): Define.
9453 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
9454 [__LINUX_KERNEL_VERSION < 0x040D00] (__ASSUME_STATX): Undefine.
9455 * sysdeps/unix/sysv/linux/ia64/kernel-features.h (__ASSUME_STATX):
9457 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
9458 [__LINUX_KERNEL_VERSION < 0x040C00] (__ASSUME_STATX): Undefine.
9459 * sysdeps/unix/sysv/linux/statx.c: New file.
9460 * manual/filesys.texi: Note that statx is undocumented.
9461 * sysdeps/**/libc*.abilist: Update.
9463 2018-07-10 Adhemerval Zanella <adhemerval.zanella@linaro.org>
9465 * sysdeps/unix/sysv/linux/tst-ofdlocks-compat.c: Add a comment about
9466 a kernel issue which lead to test failure in some cases.
9468 2018-07-10 Florian Weimer <fweimer@redhat.com>
9471 * posix/regexec.c (check_node_accept_bytes): When comparing
9472 weights, do not compare an extra byte after the end of the
9475 2018-07-10 Florian Weimer <fweimer@redhat.com>
9477 * libio/readline.c: Fix copyright year.
9478 * libio/tst-readline.c Likewise.
9479 * nss/tst-nss-files-hosts-getent.c: Likewise.
9481 2018-07-06 Florian Weimer <fweimer@redhat.com>
9484 * nss/nss_files/files-XXX.c (internal_getent): Use
9485 __libc_readline_unlocked. Seek back to the start of the line if
9486 parsing failes with ERANGE.
9487 (get_contents_ret, get_contents): Remove.
9488 * nss/tst-nss-files-hosts-getent.c: New file.
9489 * nss/Makefile (tests): Add tst-nss-files-hosts-getent.
9490 (tst-nss-files-hosts-getent): Link with -ldl.
9492 2018-07-06 Florian Weimer <fweimer@redhat.com>
9494 * include/stdio.h (__libc_readline_unlocked): Declare.
9495 (__ftello64, __fseeko64): Declare aliases.
9496 * libio/readline.c: New file.
9497 * libio/tst-readline.c: Likewise.
9498 (routines): Add readline.
9499 (tests-internal): Add tst-readlime.
9500 * libio/Versions (GLIBC_PRIVATE): Export __fseeko64, __ftello64,
9501 __libc_readline_unlocked.
9502 * libio/fseeko.c (__fseeko): Rename from fseeko.
9503 (fseeko): Add alias.
9504 [__OFF_T_MATCHES_OFF64_T] (fseeko64, __fseeko64): Likewise.
9505 * libio/fseeko64.c (__fseeko64): Rename from fseeko64.
9506 (fseeko64): Add alias.
9507 * libio/ftello.c [__OFF_T_MATCHES_OFF64_T] (__ftello64): Add alias.
9508 * libio/ftello64.c (__ftello64): Rename from ftello64.
9509 (ftello64): Add alias.
9511 2018-07-06 Szabolcs Nagy <szabolcs.nagy@arm.com>
9513 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h (HWCAP_IMPORTANT): Add
9516 2018-07-06 Szabolcs Nagy <szabolcs.nagy@arm.com>
9518 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (init_cpu_features):
9519 Use dl_hwcap without masking.
9520 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h (HWCAP_IMPORTANT):
9523 2018-07-06 Florian Weimer <fweimer@redhat.com>
9525 * conform/conformtest.pl (checknamespace): Escape literal braces
9526 in regular expressions.
9528 2018-07-06 Amit Pawar <amit.pawar@amd.com>
9530 * sysdeps/x86/cpu-features.c (get_common_indeces):
9531 AVX_Fast_Unaligned_Load is enabled when AVX2 is detected.
9532 * sysdeps/x86/cpu-features.c (init_cpu_features):
9533 AVX_Fast_Unaligned_Load is disabled for Excavator core.
9535 2018-07-05 Florian Weimer <fweimer@redhat.com>
9537 * csu/Makefile (CFLAGS-static-reloc.os): Build with stack
9539 (CFLAGS-elf-init.oS): Likewise.
9541 2018-07-05 Florian Weimer <fweimer@redhat.com>
9542 Carlos O'Donell <carlos@redhat.com>
9544 * debug/Makefile (CFLAGS-stack_chk_fail_local.c): Remove
9545 $(no-stack-protector). stack_chk_fail_local.c can be compiled
9546 with stack protector enabled because there is no risk of infinite
9549 2018-07-05 Maciej W. Rozycki <macro@mips.com>
9553 * libc-abis (ABSOLUTE): New ABI.
9554 * sysdeps/unix/sysv/linux/mips/libc-abis (ABSOLUTE): New ABI.
9555 * NEWS: Mention the new ABI.
9557 2018-07-05 Florian Weimer <fweimer@redhat.com>
9560 * libio/stdio.h [__USE_GNU] (RENAME_NOREPLACE, RENAME_EXCHANGE)
9561 (RENAME_WHITEOUT): Define.
9562 [__USE_GNU] (renameat2): Declare.
9563 * stdio-common/Makefile (routines): Add renameat2.
9564 (tests): Add tst-renameat2.
9565 * stdio-common/Versions (GLIBC_2_28): Export renameat2.
9566 * stdio-common/renameat2.c: New file.
9567 * stdio-common/tst-renameat2.c: Likewise.
9568 * sysdeps/unix/sysv/linux/renameat2.c: Likewise.
9569 * manual/filesys.texi (Temporary Files): Note that renameat2 is
9571 * sysdeps/unix/sysv/linux/kernel-features.h
9572 [__LINUX_KERNEL_VERSION >= 0x030F00] (__ASSUME_RENAMEAT2): Define.
9573 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
9574 [__LINUX_KERNEL_VERSION < 0x031100] (__ASSUME_RENAMEAT2): Undefine.
9575 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
9576 [__LINUX_KERNEL_VERSION < 0x031100] (__ASSUME_RENAMEAT2): Undefine.
9577 * sysdeps/unix/sysv/linux/sh/kernel-features.h
9578 [__LINUX_KERNEL_VERSION < 0x040800] (__ASSUME_RENAMEAT2): Undefine.
9579 * sysdeps/unix/sysv/linux/sparc/kernel-features.h
9580 [__LINUX_KERNEL_VERSION < 0x031000] (__ASSUME_RENAMEAT2): Undefine.
9581 * include/stdio.h (__renameat): Add alias for renameat.
9582 * stdio-common/renameat.c (__renameat): Rename from renameat.
9583 Add hidden definition and alias.
9584 * sysdeps/unix/sysv/linux/renameat.c: Likewise.
9585 * sysdeps/mach/hurd/renameat.c: Likewise.
9586 * sysdeps/**/libc*.abilist: Add renameat2.
9588 2018-07-04 Adhemerval Zanella <adhemerval.zanella@linaro.org>
9590 * posix/bug-regex33.c: Fix build after regex sync.
9592 2018-07-04 Carlos O'Donell <carlos@redhat.com>
9595 * localedata/tst-langinfo-setlocale.c: New file.
9596 * localedata/tst-langinfo-setlocale-static.c: New file.
9597 * localedata/tst-langinfo-newlocale.c: New file.
9598 * localedata/tst-langinfo-newlocale-static.c: New file.
9599 * localedata/Makefile (test-srcs): Remove tst-langinfo. Add
9600 tst-langinfo-setlocale, tst-langinfo-setlocale-static,
9601 tst-langinfo-newlocale, tst-langinfo-newlocale-static.
9602 (tests-static): Remove tst-langinfo-static. Add
9603 tst-langinfo-newlocale-static, tst-langinfo-setlocale-static.
9604 (tests-special): Remove $(objpfx)tst-langinfo.out,
9605 $(objpfx)tst-langinfo-static.out. Add
9606 $(objpfx)tst-langinfo-setlocale.out,
9607 $(objpfx)tst-langinfo-newlocale.out,
9608 $(objpfx)tst-langinfo-setlocale-static.out,
9609 $(objpfx)tst-langinfo-newlocale-static.out.
9610 ($(objpfx)tst-langinfo.out): Remove.
9611 ($(objpfx)tst-langinfo-static.out): Remove.
9612 ($(objpfx)tst-langinfo-newlocale.out): New target.
9613 ($(objpfx)tst-langinfo-newlocale-static.out): New target.
9614 (test-xfail-tst-langinfo-newlocale-static): Add.
9615 ($(objpfx)tst-langinfo-setlocale.out): New target.
9616 ($(objpfx)tst-langinfo-setlocale-static.out): New target.
9617 * localedata/tst-langinfo.c: Call test_locale.
9618 * localedata/tst-langinfo.sh: Add LC_MONETARY CURRENCY_SYMBOL test
9621 2018-07-04 Florian Weimer <fweimer@redhat.com>
9623 testrun.sh: Implement --tool=strace, --tool=valgrind
9624 * Makefile (testrun-script): Define variable.
9625 (testrun.sh): Use variable.
9626 * manual/install.texi (Tools for Compilation): make 4.0 or later
9628 * configure.ac: Check for make 4.0 or later.
9629 * INSTALL: Regenerate.
9630 * configure: Likewise.
9632 2018-07-04 Adhemerval Zanella <adhemerval.zanella@linaro.org>
9638 * posix/Makefile (tests): Add bug-regex37 and bug-regex38.
9639 * posix/PCRE.tests: Remove invalid test.
9640 * posix/bug-regex28.c: Fix expected values for used syntax.
9641 * posix/bug-regex37.c: New file.
9642 * posix/bug-regex38.c: Likewise.
9643 * posix/regcomp.c: Sync with gnulib.
9644 * posix/regex.c: Likewise.
9645 * posix/regex.h: Likewise.
9646 * posix/regex_internal.c: Likewise.
9647 * posix/regex_internal.h: Likewise.
9648 * posix/regexec.c: Likewise.
9650 2018-06-26 Mike FABIAN <mfabian@redhat.com>
9653 * unicode-gen/Makefile (UNICODE_VERSION): Set to 11.0.0.
9654 * localedata/unicode-gen/DerivedCoreProperties.txt: Update to Unicode 11.0.0.
9655 * localedata/unicode-gen/EastAsianWidth.txt: likewise.
9656 * localedata/unicode-gen/PropList.txt: likewise.
9657 * localedata/unicode-gen/UnicodeData.txt: likewise.
9658 * localedata/charmaps/UTF-8: Regenerate.
9659 * localedata/locales/i18n_ctype: likewise.
9660 * localedata/locales/tr_TR: likewise.
9661 * localedata/locales/translit_circle: likewise.
9662 * localedata/locales/translit_cjk_compat: likewise.
9663 * localedata/locales/translit_combining: likewise.
9664 * localedata/locales/translit_compat: likewise.
9665 * localedata/locales/translit_font: likewise.
9666 * localedata/locales/translit_fraction: likewise.
9668 2018-07-03 Florian Weimer <fweimer@redhat.com>
9671 * stdio-common/tst-printf.c (DEC, INT, UNS, fp_test): Remove.
9672 * stdio-common/tst-printf.sh: Adjust expected output.
9675 2018-07-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
9677 * sysdeps/mach/hurd/i386/libc.abilist [GLIBC_2.28] (fcntl): Remove
9680 2018-07-02 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
9682 * stdio-common/Makefile (test-srcs): Add tst-printfsz-islongdouble.
9683 (tests-special) Add $(objpfx)tst-printfsz-islongdouble.out.
9684 ($(objpfx)tst-printfsz-islongdouble.out): New build and run rule.
9685 * stdio-common/tst-printfsz-islongdouble.c: New file.
9686 * stdio-common/tst-printfsz-islongdouble.sh: Likewise.
9687 * sysdeps/ieee754/ldbl-128ibm-compat/Makefile:
9688 [subdir == stdio-common] (routines): Add ieee128-printf_size.
9689 [subdir == stdio-common] (tests-internal): Add
9690 test-printf-size-ieee128, and test-printf-size-ibm128.
9691 [subdir == stdio-common] (CFLAGS-test-printf-size-ieee128.c)
9692 (CFLAGS-test-printf-size-ibm128.c): New variables.
9693 [subdir == stdio-common] (tests-special): Add
9694 $(objpfx)test-printf-size-ieee128.out and
9695 $(objpfx)test-printf-size-ibm128.out.
9696 [subdir == stdio-common] ($(objpfx)test-printf-size-ieee128.out)
9697 ($(objpfx)test-printf-size-ibm128.out): New build and run rules.
9698 * sysdeps/ieee754/ldbl-128ibm-compat/Versions (libc): Add
9699 __printf_sizeieee128.
9700 * sysdeps/ieee754/ldbl-128ibm-compat/ieee128-printf_size.c:
9702 * sysdeps/ieee754/ldbl-128ibm-compat/test-printf-size-ibm128.c:
9704 * sysdeps/ieee754/ldbl-128ibm-compat/test-printf-size-ieee128.c:
9707 2018-07-02 Szabolcs Nagy <szabolcs.nagy@arm.com>
9709 * sysdeps/ieee754/flt-32/e_powf.c (__powf): Use uint32_t.
9710 (exp2f_inline): Likewise.
9711 * sysdeps/ieee754/flt-32/math_config.h (__math_oflowf): Likewise.
9712 (__math_uflowf): Likewise.
9713 (__math_may_uflowf): Likewise.
9714 (__math_divzerof): Likewise.
9715 (__math_invalidf): Likewise.
9716 * sysdeps/ieee754/flt-32/math_errf.c (xflowf): Likewise.
9717 (__math_oflowf): Likewise.
9718 (__math_uflowf): Likewise.
9719 (__math_may_uflowf): Likewise.
9720 (__math_divzerof): Likewise.
9721 (__math_invalidf): Likewise.
9723 2018-06-29 DJ Delorie <dj@redhat.com>
9724 Carlos O'Donell <carlos@redhat.com>
9727 * include/libc-symbols.h: Comment the freeres framework.
9728 * include/set-hooks.h: Include libc-symbols.h. Fix comment.
9729 * dlfcn/Makefile (libdl-routines): Add dlfreeres.
9730 * dlfcn/Versions (GLIBC_PRIVATE): Add __libdl_freeres.
9731 * dlfcn/dlerror.c: Include libc-symbols.h
9732 (__dlerror_main_freeres): New function.
9733 * dlfcn/dlfreeres.c: New file.
9734 * dlfcn/sdlfreeres.c: New file.
9735 * include/dlfcn.h: Declare __dlerror_main_freeres.
9736 * malloc/set-freeres.c: Declare __libdl_freeres, and
9737 __libpthread_freeres.
9738 (__libc_subfreeres): Call __libdl_freeres, and __libpthread_freeres if
9739 the releavant libraries are loaded.
9740 * malloc/thread-freeres.c: Add comments.
9741 * nptl/Makefile (libpthread-routines): Add nptlfreeres.
9742 * nptl/Version (GLIBC_PRIVATE): Add __libpthread_freeres.
9743 * nptl/allocatestack.c (__nptl_free_stacks): New function.
9744 (__free_stacks): Rename to...
9745 (free_stacks): ...this. Mark static.
9746 (queue_stack): Call free_stacks.
9747 * nptl/libc_pthread_init.c [SHARED] (freeres_libpthread): Delete.
9748 * nptl/nptl-init.c: Delete delcaration of nptl_freeres.
9749 * sysdeps/nptl/pthread-functions.h (pthread_functions): Remove
9750 ptr_freeres element from struct.
9751 (pthread_functions): Remove .ptr_freeres from struct initializer.
9752 [SHARED] (nptl_freeres): Remove.
9753 * nptl/nptlfreeres.c: New file.
9755 [IS_IN (libpthread) && SHARED ] (__unwind_freeres): Rename to...
9756 [IS_IN (libpthread)] (__nptl_unwind_freeres): ...this. Mark
9758 (__free_stacks): Rename to...
9759 (__nptl_stacks_freeres): ...this.
9760 (__shm_directory_freeres): Declare.
9761 * nptl/unwind-forcedunwind.c (__unwind_freeres): Rename to...
9762 (__nptl_unwind_freeres): ...this.
9763 * resolv/res-close.c: Add comment.
9764 * resolv/resolv_conf.c: Include libc-symbols.h.
9765 * string/strerror_l.c: Include libc-symbols.h.
9766 * sunrpc/rpc_thread.c: Include libc-symbols.h.
9767 * sysdeps/mach/strerror_l.c: Inlcude libc-symbols.h
9768 * sysdeps/unix/sysv/linux/shm-directory.c (freeit): Rename to...
9769 [IS_IN (libpthread)] (__shm_directory_freeres): ...this.
9771 2018-06-29 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
9773 * stdlib/tst-strfmon_l.c: Add tests for long double.
9775 2018-06-29 Michael Wolf <milupo@sorbzilla.de>
9778 * localedata/SUPPORTED (dsb_DE/UTF-8): New entry.
9779 * localedata/locales/dsb_DE: New file.
9781 2018-06-29 Rafal Luzynski <digitalfreak@lingonborough.com>
9784 * localedata/locales/hy_AM (mon): Synchronize with CLDR (lowercase,
9786 (alt_mon): New entry, import from CLDR (nominative case).
9788 2018-06-29 Sylvain Lesage <severo@rednegra.net>
9791 * localedata/locales/es_BO (LC_PAPER): Change to “copy "en_US"”.
9793 2018-06-29 Siddhesh Poyarekar <siddhesh@sourceware.org>
9795 * sysdeps/aarch64/multiarch/memcpy_falkor.S (__memcpy_falkor):
9796 Use vector registers.
9798 * sysdeps/aarch64/multiarch/memmove_falkor.S
9799 (__memcpy_falkor): Use vector registers.
9801 2018-06-29 Martin Sebor <msebor@redhat.com>
9803 * manual/stdio.texi (Customizing Printf): Mention interaction
9806 2018-06-29 Maciej W. Rozycki <macro@mips.com>
9809 * elf/dl-lookup.c (check_match): Do not reject a symbol whose
9810 `st_value' is 0 if `st_shndx' is SHN_ABS.
9811 * elf/tst-absolute-zero.c: New file.
9812 * elf/tst-absolute-zero-lib.c: New file.
9813 * elf/tst-absolute-zero-lib.lds: New file.
9814 * elf/Makefile (tests): Add `tst-absolute-zero'.
9815 (modules-names): Add `tst-absolute-zero-lib'.
9816 (LDLIBS-tst-absolute-zero-lib.so): New variable.
9817 ($(objpfx)tst-absolute-zero-lib.so): New dependency.
9818 ($(objpfx)tst-absolute-zero: New dependency.
9820 2018-06-29 Zack Weinberg <zackw@panix.com>
9822 * configure.ac: New command-line option --disable-crypt.
9823 Force --disable-nss-crypt when --disable-crypt is given, with a
9824 warning if it was explicitly enabled.
9825 * configure: Regenerate.
9826 * config.make.in: New boolean substitution variable $(build-crypt).
9827 * Makeconfig: Only include 'crypt' in all-subdirs and rpath-dirs
9828 when $(build-crypt).
9829 * manual/install.texi: Document --disable-crypt.
9830 * INSTALL: Regenerate.
9832 * crypt/Makefile: Remove code conditional on $(crypt-in-libc),
9834 * conform/Makefile: Only include libcrypt.a in
9835 linknamespace-libs-xsi and linknamespace-libs-XPG4
9836 when $(build-crypt).
9837 * elf/Makefile (CFLAGS-tst-linkall-static.c): Only define
9838 USE_CRYPT to 1 when $(build-crypt).
9839 (tst-linkall-static): Only link libcrypt.a when $(build-crypt).
9840 (localplt-built-dso): Only add libcrypt.so when $(build-crypt).
9841 * elf/tst-linkall-static.c: Only include crypt.h when USE_CRYPT.
9843 2018-06-29 Zack Weinberg <zackw@panix.com>
9845 * crypt/crypt.h, posix/unistd.h: Update comments and
9846 prototypes for crypt and crypt_r.
9848 * manual/crypt.texi (Cryptographic Functions): New initial
9850 (crypt): Section renamed to 'Passphrase Storage'. Full rewrite.
9851 (Unpredictable Bytes): Improve initial exposition. Clarify error
9852 behavior of getentropy and getrandom.
9853 * manual/examples/genpass.c: Generate a salt using getentropy
9854 instead of the current time. Use hash $5$ (SHA-2-256).
9855 * manual/examples/testpass.c: Demonstrate validation against
9856 hashes generated with three different one-way functions.
9858 * manual/intro.texi: crypt.texi does not need an overview
9861 * manual/nss.texi, manual/memory.texi, manual/socket.texi
9862 * manual/terminal.texi: Consistently refer to "passphrases"
9863 * instead of "passwords", and to the "user database" instead
9864 * of the "password database".
9865 * manual/users.texi: Similarly. Add notes about how actual
9866 passphrase hashes are now stored in the shadow database.
9867 Remove 20-year-old junk todo note.
9869 2018-06-29 Zack Weinberg <zackw@panix.com>
9871 * manual/crypt.texi: Use a normal top-level @node declaration.
9872 Move most of the introductory text to the 'crypt' section.
9873 Move the example programs below the @deftypefun for 'crypt_r'.
9874 Move the 'getpass' section...
9875 * manual/terminal.texi: ...here.
9877 2018-06-29 Zack Weinberg <zackw@panix.com>
9878 Florian Weimer <fweimer@redhat.com>
9880 * posix/unistd.h: Do not declare encrypt.
9881 (_XOPEN_CRYPT): Remove macro definition.
9882 (crypt): Declare only for _USE_MISC.
9883 * stdlib/stdlib.h: Do not declare setkey.
9884 * crypt/crypt.h: Do not declare encrypt, setkey, encrypt_r, setkey_r.
9885 * sunrpc/Makefile: Do not install des_crypt.h nor rpc_des.h.
9887 * crypt/crypt-entry.c: Make fcrypt a compat symbol.
9888 * crypt/crypt_util.c: Make encrypt, encrypt_r, setkey, setkey_r
9889 into compat symbols. Don't define initial_perm if it's not
9891 * crypt/cert.c: Link explicitly with the expected versions for
9892 setkey and encrypt. If they are not available at all, mark
9893 the test as unsupported.
9895 * sunrpc/des_crypt.c: Unconditionally block linkage with
9896 cbc_crypt and ecb_crypt for new binaries.
9897 * sunrpc/des_soft.c: Unconditionally block linkage with
9898 des_setparity for new binaries.
9900 * manual/crypt.texi: Remove the entire "DES Encryption"
9901 section. Also remove the paragraph talking about FIPS 140-2
9902 from the introduction.
9903 * manual/string.texi (strfry, memfrob): Revise. Recommend use
9904 of libgcrypt for "real" encryption, not DES.
9905 * manual/conf.texi (Constants for Sysconf): Mention that
9906 _XOPEN_CRYPT is no longer impelemented.
9908 * conform/data/unistd.h-data: Remove crypt function declaration.
9910 2018-06-29 Florian Weimer <fweimer@redhat.com>
9913 * malloc/hooks.c: Update comments on restoring of dumped heaps.
9914 (disallow_malloc_check): Remove variable.
9915 (__malloc_check_init): Adjust.
9916 (malloc_set_state): Update comment.
9917 * malloc/malloc.c (__malloc_get_state, __malloc_set_state): Remove
9920 2018-06-29 Rafal Luzynski <digitalfreak@lingonborough.com>
9923 * localedata/locales/ast_ES (mon): Rename to...
9925 (mon): Import from CLDR (genitive case).
9927 2018-06-29 Daniel Alvarez <dalvarez@redhat.com>
9928 Jakub Sitnicki <jkbs@redhat.com>
9931 * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Retry
9934 2018-06-28 Szabolcs Nagy <szabolcs.nagy@arm.com>
9936 * manual/llio.texi: Remove spurious space.
9938 2018-06-28 Florian Weimer <fweimer@redhat.com>
9941 * time/bits/types/struct_timespec.h: Change header inclusion guard to
9944 2018-06-28 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
9946 * sysdeps/ieee754/ldbl-128ibm-compat/Versions: Add __strfromieee128,
9947 __strtoieee128, __strtoieee128_l,__wcstoieee128 and __wcstoieee128_l.
9948 * sysdeps/ieee754/ldbl-128ibm-compat/strfromf128.c: New file.
9949 * sysdeps/ieee754/ldbl-128ibm-compat/strtof128.c: New file.
9950 * sysdeps/ieee754/ldbl-128ibm-compat/strtof128_l.c: New file.
9951 * sysdeps/ieee754/ldbl-128ibm-compat/wcstof128.c: New file.
9952 * sysdeps/ieee754/ldbl-128ibm-compat/wcstof128_l.c: New file.
9954 2018-06-27 Maciej W. Rozycki <macro@mips.com>
9957 * nis/nss_nisplus/nisplus-parser.c (_nss_nisplus_parse_pwent):
9958 Copy and null-terminate entries that are not terminated, in
9959 addition to empty ones.
9961 2018-06-27 Florian Weimer <fweimer@redhat.com>
9964 * include/alloca.h (stackinfo_alloca_round, extend_alloca)
9965 (extend_alloca_account): Remove.
9966 * manual/stdio.texi (Variable Arguments Output): Update comment.
9968 2018-06-27 Joseph Myers <joseph@codesourcery.com>
9970 * nptl/sockperf.c: Remove file.
9972 2018-06-27 Florian Weimer <fweimer@redhat.com>
9975 * elf/dl-deps.c (_dl_map_object_deps): Use struct
9976 scratch_buffer instead of extend_alloca.
9978 2018-06-27 Florian Weimer <fweimer@redhat.com>
9981 * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Use struct
9982 scratch_buffer instead of extend_alloca. Update comments.
9984 2018-06-27 Florian Weimer <fweimer@redhat.com>
9987 * posix/wordexp.c (parse_tilde): Use struct scratch_buffer
9988 instead of extend_alloca.
9990 2018-06-26 Joseph Myers <joseph@codesourcery.com>
9993 * posix/Makefile (CFLAGS-tst-spawn3.c): New variable.
9994 * posix/tst-spawn3.c (do_test): Put tst-spwan3.pid in OBJPFX, not
9996 * scripts/test-installation.pl: Put temporary files in build
9997 directory, not /tmp.
9998 * stdio-common/Makefile (CFLAGS-bug3.c): New variable.
9999 (CFLAGS-bug4.c): Likewise.
10000 (CFLAGS-bug5.c): Likewise.
10001 (CFLAGS-test-fseek.c): Likewise.
10002 (CFLAGS-test-popen.c): Likewise.
10003 (CFLAGS-test_rdwr.c): Likewise.
10004 * stdio-common/bug3.c (main): Put temporary file in OBJPFX, not
10006 * stdio-common/bug4.c (main): Likewise.
10007 * stdio-common/bug5.c (main): Likewise.
10008 * stdio-common/test-fseek.c (TESTFILE): Likewise.
10009 * stdio-common/test-popen.c (do_test): Likewise.
10010 * stdio-common/test_rdwr.c (main): Likewise.
10012 2018-06-26 Patsy Franklin <pfrankli@redhat.com>
10014 * nptl/sem_open.c [!__HAVE_64B_ATOMICS] (sem_open): Don't update pad.
10015 (sem_open): Set sem.newsem.pad to zero for valgrind.
10017 2018-06-26 Adhemerval Zanella <adhemerval.zanella@linaro.org>
10020 * NEWS: Mention fcntl64 addition.
10021 * csu/check_fds.c: Replace __fcntl_nocancel by __fcntl64_nocancel.
10022 * login/utmp_file.c: Likewise.
10023 * sysdeps/posix/fdopendir.c: Likewise.
10024 * sysdeps/posix/opendir.c: Likewise.
10025 * sysdeps/unix/pt-fcntl.c: Likewise.
10026 * include/fcntl.h (__libc_fcntl64, __fcntl64,
10027 __fcntl64_nocancel_adjusted): New prototype.
10028 (__fcntl_nocancel_adjusted): Remove prototype.
10029 * io/Makefile (routines): Add fcntl64.
10030 (CFLAGS-fcntl64.c): New rule.
10031 * io/Versions [GLIBC_2.28] (fcntl64): New symbol.
10032 [GLIBC_PRIVATE] (__libc_fcntl): Rename to __libc_fcntl64.
10033 * io/fcntl.h (fcntl64): Add prototype and redirect if
10034 __USE_FILE_OFFSET64 is defined.
10035 * io/fcntl64.c: New file.
10036 * manual/llio.text: Add a note for which commands fcntl acts a
10037 cancellation point.
10038 * nptl/Makefile (CFLAGS-fcntl64.c): New rule.
10039 * sysdeps/mach/hurd/fcntl.c: Alias fcntl to fcntl64 symbols.
10040 * sysdeps/mach/hurd/i386/libc.abilist [GLIBC_2.28] (fcntl, fcntl64):
10042 * sysdeps/unix/sysv/linux/fcntl.c (__libc_fcntl): Fix F_GETLK64,
10043 F_OFD_GETLK, F_SETLK64, F_SETLKW64, F_OFD_SETLK, and F_OFD_SETLKW for
10045 * sysdeps/unix/sysv/linux/fcntl64.c: New file.
10046 * sysdeps/unix/sysv/linux/fcntl_nocancel.c (__fcntl_nocancel): Rename
10047 to __fcntl64_nocancel.
10048 (__fcntl_nocancel_adjusted): Rename to __fcntl64_nocancel_adjusted.
10049 * sysdeps/unix/sysv/linux/not-cancel.h (__fcntl_nocancel): Rename
10050 to __fcntl64_nocancel.
10051 * sysdeps/generic/not-cancel.h: Likewise.
10052 * sysdeps/unix/sysv/linux/tst-ofdlocks.c: New file.
10053 * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-ofdlocks.
10054 * sysdeps/unix/sysv/linux/aarch64/libc.abilist [GLIBC_2.28]
10055 (fcntl64): New symbol.
10056 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
10057 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
10058 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
10059 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: Likewise.
10060 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist: Likewise.
10061 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist: Likewise.
10062 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
10063 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
10064 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
10065 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
10066 * sysdeps/unix/sysv/linux/arm/libc.abilist [GLIBC_2.28] (fcntl,
10067 fcntl64): Likewise.
10068 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
10069 * sysdeps/unix/sysv/linux/i386/libc.abilis: Likewise.
10070 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
10071 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
10072 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
10073 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
10074 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: Likewise.
10075 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
10076 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
10077 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
10079 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
10081 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
10082 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
10083 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
10085 2018-06-26 Florian Weimer <fweimer@redhat.com>
10087 Run thread shutdown functions in an explicit order.
10088 * malloc/thread-freeres.c (__libc_thread_subfreeres): Remove hook
10090 (__libc_thread_freeres): Call thread shutdown functions
10092 * include/rpc/rpc.h (__rpc_thread_destroy): Add hidden attribute.
10093 * include/string.h (__strerror_thread_freeres): Declare.
10094 * malloc/arena.c (__malloc_arena_thread_freeres): Renamed from
10095 arena_thread_freeres. No longer static. Remove thread shutdown
10097 * malloc/malloc-internal.h (__malloc_arena_thread_freeres):
10099 * resolv/res-close.c (__res_thread_freeres): Renamed from
10100 res_thread_freeres. No longer static. Remove thread shutdown
10102 * resolv/resolv-internal.h (__res_thread_freeres): Declare.
10103 * resolv/resolv_conf.c (freeres): Remove incorrect section
10104 attribute and use libc_freeres_fn.
10105 * string/strerror_l.c (__strerror_thread_freeres): Renamed from
10106 strerror_thread_freeres. No longer static. Remove thread
10107 shutdown hook registration.
10108 * sysdeps/mach/strerror_l.c (__strerror_thread_freeres): Likewise.
10109 * sunrpc/rpc_thread.c (__rpc_thread_destroy): Remove thread
10110 shutdown hook registration.
10111 * Makerules (shlib.lds): Do not provide section boundary symbols
10112 for __libc_thread_subfreeres.
10113 * manual/memory.texi (Basic Allocation): Update comment.
10115 2018-06-26 Florian Weimer <fweimer@redhat.com>
10117 Remove always-defined _RPC_THREAD_SAFE_ macro.
10118 * sunrpc/Makefile (sunrpc-CPPFLAGS, CPPFLAGS, BUILD_CPPFLAGS):
10119 Do not define _RPC_THREAD_SAFE_.
10120 * include/rpc/rpc.h: Remove _RPC_THREAD_SAFE_ preprocessor
10122 * sunrpc/clnt_perr.c: Likewise.
10123 * sunrpc/clnt_raw.c: Likewise.
10124 * sunrpc/clnt_simp.c: Likewise.
10125 * sunrpc/key_call.c: Likewise.
10126 * sunrpc/rpc_common.c: Likewise.
10127 * sunrpc/rpc_main.c: Likewise.
10128 * sunrpc/rpc_thread.c: Likewise.
10129 * sunrpc/svc.c: Likewise.
10130 * sunrpc/svc_raw.c: Likewise.
10131 * sunrpc/svc_simple.c: Likewise.
10132 * sumrpc/svcauth_des.c: Likewise.
10134 2018-06-26 Florian Weimer <fweimer@redhat.com>
10136 * libio/Makefile (tests-internal): Add tst-vtables,
10137 tst-vtables-interposed.
10138 * libio/tst-vtables.c: New file.
10139 * libio/tst-vtables-common.c: Likewise.
10140 * libio/tst-vtables-interposed.c: Likewise.
10142 2018-06-26 Florian Weimer <fweimer@redhat.com>
10144 * support/support_test_main.c (support_test_main): Only call
10145 setvbuf if not disables.
10146 * support/test-driver.c (main): Check TEST_NO_SETVBUF.
10147 * support/test-driver.h (struct test_config): Add no_setvbuf member.
10149 2018-06-26 Florian Weimer <fweimer@redhat.com>
10152 * libio/vtables.c (check_stdfiles_vtables): New ELF constructor.
10154 2018-06-25 Florian Weimer <fweimer@redhat.com>
10157 * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
10158 Use struct scratch_buffer instead of extend_alloca.
10160 2018-06-25 Florian Weimer <fweimer@redhat.com>
10163 * nss/getent.c (initgroups_keys): Use dynarray instead of
10166 2018-06-25 Florian Weimer <fweimer@redhat.com>
10169 * nis/nss_nis/nis-initgroups.c (get_uid, _nss_nis_initgroups_dyn):
10170 Use struct scratch_buffer instead of extend_alloca.
10172 2018-06-25 Florian Weimer <fweimer@redhat.com>
10175 * nss/nss_compat/compat-initgroups.c (getgrent_next_nss): Fall
10176 back to malloc directly, without stack allocations.
10178 2018-06-25 Florian Weimer <fweimer@redhat.com>
10181 * nscd/aicache.c (addhstaiX): Use struct scratch_buffer instead
10184 2018-06-25 Florian Weimer <fweimer@redhat.com>
10187 * nscd/grpcache.c (addgrbyX): Use struct scratch_buffer instead
10189 * nscd/hstcache.c (addhstbyX): Likewise.
10190 * nscd/pwdcache.c (addpwbyX): Likewise.
10191 * nscd/servicescache.c (addservbyX): Likewise.
10193 2018-06-25 Florian Weimer <fweimer@redhat.com>
10196 * nscd/connections.c (read_cmdline): New function.
10197 (restart): Use it. Update comment.
10199 2018-06-25 Rafal Luzynski <digitalfreak@lingonborough.com>
10202 * localedata/locales/csb_PL (mon): Rename to...
10204 (abmon): Rename to...
10205 (ab_alt_mon): This.
10206 (mon): Add with proper genitive forms, copy from Wikipedia.
10209 2018-06-25 Rafal Luzynski <digitalfreak@lingonborough.com>
10212 * localedata/locales/csb_PL (mon): Fix typos:
10213 "łżëkwiôt" -> "łżëkwiat" (April); "lëpinc" -> "lëpińc" (July).
10214 (yesstr): Add, value is "jo".
10215 (nostr): Add, value is "nié".
10217 2018-06-22 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
10219 * sysdeps/m68k/m680x0/fpu/s_log1p.c: Set as the generic file for
10220 all log1p and significand functions on m680x0.
10221 * sysdeps/m68k/m680x0/fpu/s_log1pf.c: Include s_log1p.c instead
10222 of s_significand.c..
10223 * sysdeps/m68k/m680x0/fpu/s_log1pl.c: Likewise.
10224 * sysdeps/m68k/m680x0/fpu/s_significandf.c: Likewise.
10225 * sysdeps/m68k/m680x0/fpu/s_significandl.c: Likewise.
10226 * sysdeps/m68k/m680x0/fpu/s_significand.c: Move all the code to
10227 s_log1p.c and include it..
10229 2018-06-21 Vincent Chen <vincentc@andestech.com>
10231 * elf/elf.h (R_NDS32_NONE): New define.
10232 (R_NDS32_32_RELA): Likewise.
10233 (R_NDS32_COPY): Likewise.
10234 (R_NDS32_GLOB_DAT): Likewise.
10235 (R_NDS32_JUMP_SLOT): Likewise.
10236 (R_NDS32_RELATIVE): Likewise.
10237 (R_NDS32_TLS_TPOFF): Likewise.
10238 (R_NDS32_TLS_DESC): Likewise.
10240 2018-06-21 Mark Wielaard <mark@klomp.org>
10242 * elf/elf.h (R_BPF_MAP_FD): Removed.
10243 (R_BPF_64_64, R_BPF_64_32): New.
10245 2018-06-21 Florian Weimer <fweimer@redhat.com>
10248 * sysdeps/generic/math_private.h (default_libc_feholdsetround_ctx):
10249 Renamed from libc_feholdsetround_ctx.
10250 (default_libc_feresetround_ctx): Renamed from
10251 libc_feresetround_ctx.
10252 (default_libc_feholdsetround_noex_ctx): Renamed from
10253 libc_feholdsetround_noex_ctx.
10254 (default_libc_feresetround_noex_ctx): Renamed from
10255 libc_feresetround_noex_ctx.
10256 [!HAVE_RM_CTX] (libc_feholdsetround_ctx, libc_feresetround_ctx)
10257 (libc_feholdsetround_noex_ctx, libc_feresetround_noex_ctx): Macros
10258 forwardning to the old implementations under the new names.
10259 * sysdeps/i386/fpu/fenv_private.h [__SSE_MATH__]
10260 (libc_feholdexcept_setround_ctx, libc_fesetenv_ctx)
10261 (libc_feupdateenv_ctx, libc_feholdsetround_ctx)
10262 (libc_feresetround_ctx): Forward to default implements for i386
10263 and MATH_SET_BOTH_ROUNDING_MODES.
10264 * sysdeps/i386/Makefile [$(subdir) == math] (CFLAGS-e_gamma_r.c):
10265 Add -DMATH_SET_BOTH_ROUNDING_MODES.
10267 2018-06-20 Joseph Myers <joseph@codesourcery.com>
10269 * string/tst-cmp.c: Include <libc-diag.h>.
10270 (strncmp_max): Disable -Wstringop-overflow= around call to
10272 (strncasecmp_max): Disable -Wstringop-overflow= around call to
10275 * string/bug-strpbrk1.c: Include <libc-diag.h>.
10276 (main): Disable -Wunused-value around call to strpbrk.
10277 * string/bug-strspn1.c: Include <libc-diag.h>.
10278 (main): Disable -Wunused-value around call to strspn.
10280 2018-06-20 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
10281 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
10283 * sysdeps/ieee754/ldbl-128ibm-compat/Versions: New file.
10284 * sysdeps/ieee754/ldbl-128ibm-compat/libm-alias-float128.h: New file.
10286 2018-06-20 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
10288 * math/Makefile (libm-calls): Move s_significandF to...
10289 (gen-libm-calls): ... here.
10290 * math/s_significand_template.c: New file.
10291 * math/s_significand.c: Removed.
10292 * math/s_significandf.c: Removed.
10293 * math/s_significandl.c: Removed.
10294 * sysdeps/ieee754/ldbl-opt/s_significand.c: Removed.
10295 * sysdeps/ieee754/ldbl-opt/s_significandl.c: Removed.
10297 * math/e_exp2_template.c (declare_mgen_finite_alias,
10298 declare_mgen_finite_alias_s, declare_mgen_finite_alias_x): Move to...
10299 * sysdeps/generic/math-type-macros.h (declare_mgen_finite_alias,
10300 declare_mgen_finite_alias_s, declare_mgen_finite_alias_x): ... here.
10302 2018-06-20 Florian Weimer <fweimer@redhat.com>
10304 * libio/libioP.h (IO_validate_vtable): Avoid ptrdiff_t overflow.
10306 2018-06-19 Joseph Myers <joseph@codesourcery.com>
10309 * stdio-common/vfscanf.c (_IO_vfscanf_internal): Pass sign of
10310 floating-point number to strtod functions rather than possibly
10311 negating result of those functions.
10312 * stdio-common/tst-scanf-round.c: New file.
10313 * stdio-common/Makefile (tests): Add tst-scanf-round.
10314 ($(objpfx)tst-scanf-round): Depend on $(libm).
10316 2018-06-18 Samuel Thibault <samuel.thibault@ens-lyon.org>
10318 * sysdeps/mach/hurd/localplt.data: Move to...
10319 * sysdeps/mach/hurd/i386/localplt.data: new file. Add + REL
10320 R_386_GLOB_DAT like on Linux i386.
10322 2018-06-18 Joseph Myers <joseph@codesourcery.com>
10324 * sysdeps/unix/sysv/linux/alpha/bits/shm.h [__USE_MISC]
10325 (SHM_STAT_ANY): New macro.
10326 * sysdeps/unix/sysv/linux/arm/bits/shm.h [__USE_MISC]
10327 (SHM_STAT_ANY): Likewise.
10328 * sysdeps/unix/sysv/linux/bits/shm.h [__USE_MISC]
10329 (SHM_STAT_ANY): Likewise.
10330 * sysdeps/unix/sysv/linux/generic/bits/shm.h [__USE_MISC]
10331 (SHM_STAT_ANY): Likewise.
10332 * sysdeps/unix/sysv/linux/hppa/bits/shm.h [__USE_MISC]
10333 (SHM_STAT_ANY): Likewise.
10334 * sysdeps/unix/sysv/linux/ia64/bits/shm.h [__USE_MISC]
10335 (SHM_STAT_ANY): Likewise.
10336 * sysdeps/unix/sysv/linux/mips/bits/shm.h [__USE_MISC]
10337 (SHM_STAT_ANY): Likewise.
10338 * sysdeps/unix/sysv/linux/powerpc/bits/shm.h [__USE_MISC]
10339 (SHM_STAT_ANY): Likewise.
10340 * sysdeps/unix/sysv/linux/s390/bits/shm.h [__USE_MISC]
10341 (SHM_STAT_ANY): Likewise.
10342 * sysdeps/unix/sysv/linux/sh/bits/shm.h [__USE_MISC]
10343 (SHM_STAT_ANY): Likewise.
10344 * sysdeps/unix/sysv/linux/sparc/bits/shm.h [__USE_MISC]
10345 (SHM_STAT_ANY): Likewise.
10346 * sysdeps/unix/sysv/linux/x86/bits/shm.h [__USE_MISC]
10347 (SHM_STAT_ANY): Likewise.
10349 * sysdeps/unix/sysv/linux/alpha/bits/sem.h [__USE_MISC]
10350 (SEM_STAT_ANY): New macro.
10351 * sysdeps/unix/sysv/linux/bits/sem.h [__USE_MISC]
10352 (SEM_STAT_ANY): Likewise.
10353 * sysdeps/unix/sysv/linux/generic/bits/sem.h [__USE_MISC]
10354 (SEM_STAT_ANY): Likewise.
10355 * sysdeps/unix/sysv/linux/hppa/bits/sem.h [__USE_MISC]
10356 (SEM_STAT_ANY): Likewise.
10357 * sysdeps/unix/sysv/linux/ia64/bits/sem.h [__USE_MISC]
10358 (SEM_STAT_ANY): Likewise.
10359 * sysdeps/unix/sysv/linux/mips/bits/sem.h [__USE_MISC]
10360 (SEM_STAT_ANY): Likewise.
10361 * sysdeps/unix/sysv/linux/powerpc/bits/sem.h [__USE_MISC]
10362 (SEM_STAT_ANY): Likewise.
10363 * sysdeps/unix/sysv/linux/s390/bits/sem.h [__USE_MISC]
10364 (SEM_STAT_ANY): Likewise.
10365 * sysdeps/unix/sysv/linux/sparc/bits/sem.h [__USE_MISC]
10366 (SEM_STAT_ANY): Likewise.
10367 * sysdeps/unix/sysv/linux/x86/bits/sem.h [__USE_MISC]
10368 (SEM_STAT_ANY): Likewise.
10370 * sysdeps/unix/sysv/linux/alpha/bits/msq.h [__USE_MISC]
10371 (MSG_STAT_ANY): New macro.
10372 * sysdeps/unix/sysv/linux/bits/msq.h [__USE_MISC]
10373 (MSG_STAT_ANY): Likewise.
10374 * sysdeps/unix/sysv/linux/generic/bits/msq.h [__USE_MISC]
10375 (MSG_STAT_ANY): Likewise.
10376 * sysdeps/unix/sysv/linux/hppa/bits/msq.h [__USE_MISC]
10377 (MSG_STAT_ANY): Likewise.
10378 * sysdeps/unix/sysv/linux/ia64/bits/msq.h [__USE_MISC]
10379 (MSG_STAT_ANY): Likewise.
10380 * sysdeps/unix/sysv/linux/mips/bits/msq.h [__USE_MISC]
10381 (MSG_STAT_ANY): Likewise.
10382 * sysdeps/unix/sysv/linux/powerpc/bits/msq.h [__USE_MISC]
10383 (MSG_STAT_ANY): Likewise.
10384 * sysdeps/unix/sysv/linux/s390/bits/msq.h [__USE_MISC]
10385 (MSG_STAT_ANY): Likewise.
10386 * sysdeps/unix/sysv/linux/sparc/bits/msq.h [__USE_MISC]
10387 (MSG_STAT_ANY): Likewise.
10388 * sysdeps/unix/sysv/linux/x86/bits/msq.h [__USE_MISC]
10389 (MSG_STAT_ANY): Likewise.
10391 * sysdeps/unix/sysv/linux/hppa/bits/mman.h [__USE_MISC]
10392 (MAP_TYPE): Change value to 0x2b.
10394 2018-06-18 Florian Weimer <fweimer@redhat.com>
10397 * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): Create Netlink
10398 socket with SOCK_CLOEXEC.
10400 2018-06-18 Joseph Myers <joseph@codesourcery.com>
10403 * sysdeps/powerpc/powerpc64/le/Makefile
10404 (CFLAGS-tst-strtod-nan-sign.c): Add -mfloat128.
10405 (CFLAGS-tst-wcstod-nan-sign.c): Likewise.
10406 (gnulib-tests): Also add $(f128-loader-link) for
10407 tst-strtod-nan-sign abd tst-wcstod-nan-sign.
10409 2018-06-15 Samuel Thibault <samuel.thibault@ens-lyon.org>
10411 * include/sys/sendfile.h (__sendfile64): Declare hidden prototype.
10412 * sysdeps/mach/hurd/sendfile.c (sendfile): Call __sendfile64 instead
10414 * sysdeps/mach/hurd/sendfile64.c (sendfile64): Rename to __sendfile64.
10415 (sendfile64): New strong alias.
10416 * sysdeps/mach/hurd/lseek.c: Include <errno.h>.
10417 * sysdeps/mach/hurd/lseek.c (__libc_lseek): Check that the value
10418 returned by __lseek64 can fit off_t, return EOVERFLOW otherwise.
10419 * sysdeps/htl/pthreadP.h (___pthread_get_cleanup_stack): Add hidden
10421 * htl/pt-join.c (__pthread_get_cleanup_stack): Define to
10422 ___pthread_get_cleanup_stack.
10423 * sysdeps/mach/hurd/localplt.data (ld.so): Make ref to __open optional.
10424 * sysdeps/mach/include/mach-shortcuts-hidden.h: New file.
10425 * mach/shortcut.awk: Make syscall stubs include
10426 <mach-shortcuts-hidden.h> and add hidden definition.
10427 * sysdeps/mach/include/mach.h: Include <mach-shortcuts-hidden.h>.
10428 (__mach_msg): Add hidden prototype.
10429 * mach/msg.c: Include <mach.h>.
10430 (__mach_msg): Add hidden definition.
10431 * mach/Makefile ($(mach-syscalls:%=$(objpfx))): Add hidden definition.
10432 * sysdeps/mach/include/mach/mach_traps.h (__mach_reply_port,
10433 __mach_thread_self, __mach_task_self, __mach_host_self, __swtch,
10434 __swtch_pri, __thread_switch, __evc_wait): Add hidden prototypes.
10435 * sysdeps/mach/hurd/localplt.data (siglongjmp, longjmp,
10436 __libc_lseek64, _IO_funlockfile): Whitelist PLT references.
10437 * sysdeps/hurd/include/hurd/signal.h (_hurd_self_sigstate): Add hidden
10438 prototype and definition.
10439 * sysdeps/mach/hurd/i386/____longjmp_chk.S (____longjmp_chk): Use
10440 hidden target for _hurd_self_sigstate.
10442 2018-06-15 Joseph Myers <joseph@codesourcery.com>
10445 * stdlib/tst-strtod-nan-sign-main.c: New file.
10446 * stdlib/tst-strtod-nan-sign.c: Likewise.
10447 * wcsmbs/tst-wcstod-nan-sign.c: Likewise.
10448 * stdlib/Makefile (tests): Add tst-strtod-nan-sign.
10449 ($(objpfx)tst-strtod-nan-sign): Depend on $(libm).
10450 * wcsmbs/Makefile (tests) Add tst-wcstod-nan-sign.
10451 ($(objpfx)tst-wcstod-nan-sign): Depend on $(libm).
10453 2018-06-15 Herman ten Brugge <hermantenbrugge@home.nl>
10456 * stdlib/strtod_l.c (____STRTOF_INTERNAL): Return NaN of
10459 2018-06-14 Florian Weimer <fweimer@redhat.com>
10462 * localedata/charmaps/IBM273: Map codepoint 0xbc to U+00AF, so
10463 that the result stays within the ISO-8859-1 range.
10464 * iconvdata/ibm273.c (HAS_HOLES): Define as 0 because all 256
10465 characters are defined in IBM273.
10467 2018-06-14 Samuel Thibault <samuel.thibault@ens-lyon.org>
10469 * sysdeps/mach/include/mach/mach_traps.h (__mach_thread_self,
10470 __mach_task_self): Remove attribute_hidden.
10472 2018-06-14 Joseph Myers <joseph@codesourcery.com>
10474 * string/tester.c (test_strncat) [__GNUC_PREREQ (7, 0)]: Also
10475 ignore -Wrestrict for one test.
10477 2018-06-14 Steve Ellcey <sellcey@caviumnetworks.com>
10478 Szabolcs Nagy <szabolcs.nagy@arm.com>
10480 * sysdeps/unix/sysv/linux/aarch64/gettimeofday.c: New file.
10482 2018-06-14 Florian Weimer <fweimer@redhat.com>
10484 * scripts/update-abilist.sh: Accept empty list of files to patch.
10486 2018-06-13 Samuel Thibault <samuel.thibault@ens-lyon.org>
10488 * sysdeps/mach/hurd/i386/Makefile (test-xfail-check-abi-libhurduser,
10489 test-xfail-check-abi-libmachuser): Add.
10490 * sysdeps/mach/hurd/localplt.data (ld.so): Add __open64, rename
10491 __libc_read and __libc_write to __read and __write.
10492 * sysdeps/hurd/include/hurd/port.h: New file.
10493 * mach/mach/mach_traps.h (__mach_reply_port, __mach_thread_self,
10494 __mach_task_self, __mach_host_self, __swtch, __swtch_pri,
10495 __thread_switch, __evc_wait): Move declarations to...
10496 * sysdeps/mach/include/mach/mach_traps.h: ... new file, and add
10498 * sysdeps/mach/hurd/i386/____longjmp_chk.S (____longjmp_chk): Do not
10499 use PLT to call _hurd_self_sigstate.
10501 2018-06-13 Joseph Myers <joseph@codesourcery.com>
10504 * stdlib/strtod_l.c (round_and_return): Handle an exponent of
10505 MAX_EXP as overflowing.
10506 * stdlib/gen-tst-strtod-round.c (string_to_fp): Clear MPFR
10508 (round_str): Output also whether result overflows in each rounding
10510 * stdlib/tst-strtod-round-data: Add more tests.
10511 * stdlib/tst-strtod-round-data.h: Regenerated.
10512 * stdlib/tst-strtod-round-skeleton.c (_XNTRY): Update comment.
10513 (TEST): Handle extra arguments for overflow flags.
10514 (struct test_overflow): New type.
10515 [!FE_OVERFLOW] (FE_OVERFLOW): Define to 0.
10516 (GEN_ONE_TEST): Clear all exceptions. Test overflow flag.
10517 (test_in_one_mode): Take argument with overflow information.
10518 (do_test): Update calls to test_in_one_mode.
10520 2018-06-12 Carlos O'Donell <carlos@redhat.com>
10522 * elf/dl-load (_dl_dst_substitute): Correct comment.
10523 (_dl_dst_count): Likewise.
10525 * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock): Call
10526 lll_futex_timed_wait.
10528 2018-06-12 Joseph Myers <joseph@codesourcery.com>
10531 * math/bits/mathcalls.h [__USE_ISOC99] (nan): Do not use __const__
10533 * math/test-nan-const.c: New file.
10534 * math/Makefile (tests): Add test-nan-const.
10535 (CFLAGS-test-nan-const.c): New variable.
10537 2018-06-12 H.J. Lu <hongjiu.lu@intel.com>
10539 * benchtests/scripts/compare_strings.py (process_results): Add
10540 funcs argument. Compare only functions which are selected.
10541 (main): Check if base function is among selected functions.
10542 Pass selected functions to process_results.
10543 (__main__): Add -f/--functions argument.
10545 2018-06-12 Minfeng Kang <minfeng.kang@hxt-semitech.com>
10546 Hongbo Zhang <hongbo.zhang@linaro.org>
10548 * sysdeps/aarch64/multiarch/memcpy.c (libc_ifunc): reuse
10549 __memcpy_falkor for phecda core.
10550 * sysdeps/aarch64/multiarch/memmove.c (libc_ifunc): reuse
10551 __memmove_falkor for phecda core.
10552 * sysdeps/aarch64/multiarch/memset.c (libc_ifunc): reuse
10553 __memset_falkor for phecda core.
10554 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c: add MIDR entry
10556 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h (IS_PHECDA): add
10557 macro to identify phecda core.
10559 2018-06-12 Carlos O'Donell <carlos@redhat.com>
10560 Andreas Schwab <schwab@suse.de>
10561 Dmitry V. Levin <ldv@altlinux.org>
10562 Florian Weimer <fweimer@redhat.com>
10569 * elf/dl-dst.h: Remove DL_DST_COUNT.
10570 * elf/dl-deps.c (expand_dst): Call _dl_dst_count.
10571 * elf/dl-load.c (is_trusted_path_normalize): Don't handle colons.
10572 (is_dst): Comment. Support ELF gABI.
10573 (_dl_dst_count): Comment. Simplify and count DSTs.
10574 (_dl_dst_substitute): Comment. Support __libc_enable_secure handling.
10575 (expand_dybamic_string_token): Comment. Call _dl_dst_count. Rename
10578 2018-06-12 Zack Weinberg <zackw@panix.com>
10580 * elf/dl-load.c, elf/dl-misc.c, elf/dl-profile.c, elf/rtld.c
10581 * sysdeps/unix/sysv/linux/dl-sysdep.c
10582 Include not-cancel.h. Use __close_nocancel instead of __close,
10583 __open64_nocancel instead of __open, __read_nocancel instead of
10584 __libc_read, and __write_nocancel instead of __libc_write.
10586 * csu/check_fds.c (check_one_fd)
10587 * sysdeps/posix/fdopendir.c (__fdopendir)
10588 * sysdeps/posix/opendir.c (__alloc_dir): Use __fcntl_nocancel
10589 instead of __fcntl and/or __libc_fcntl.
10591 * sysdeps/unix/sysv/linux/pthread_setname.c (pthread_setname_np)
10592 * sysdeps/unix/sysv/linux/pthread_getname.c (pthread_getname_np)
10593 * sysdeps/unix/sysv/linux/i386/smp.h (is_smp_system):
10594 Use __open64_nocancel instead of __open_nocancel.
10596 * sysdeps/unix/sysv/linux/not-cancel.h: Move all of the
10597 hidden_proto declarations to the end and issue them if either
10598 IS_IN(libc) or IS_IN(rtld).
10599 * sysdeps/unix/sysv/linux/Makefile [subdir=io] (sysdep_routines):
10600 Add close_nocancel, fcntl_nocancel, nanosleep_nocancel,
10601 open_nocancel, open64_nocancel, openat_nocancel, pause_nocancel,
10602 read_nocancel, waitpid_nocancel, write_nocancel.
10604 * io/Versions [GLIBC_PRIVATE]: Add __libc_fcntl,
10605 __fcntl_nocancel, __open64_nocancel, __write_nocancel.
10606 * posix/Versions: Add __nanosleep_nocancel, __pause_nocancel.
10608 * nptl/pt-fcntl.c: New file.
10609 * nptl/Makefile (pthread-compat-wrappers): Remove fcntl.
10610 (libpthread-routines): Add pt-fcntl.
10611 * include/fcntl.h (__fcntl_nocancel_adjusted): New function.
10612 (__libc_fcntl): Remove attribute_hidden.
10613 * sysdeps/unix/sysv/linux/fcntl.c (__libc_fcntl): Call
10614 __fcntl_nocancel_adjusted, not fcntl_common.
10615 (__fcntl_nocancel): Move to new file fcntl_nocancel.c.
10616 (fcntl_common): Rename to __fcntl_nocancel_adjusted; also move
10617 to fcntl_nocancel.c.
10618 * sysdeps/unix/sysv/linux/fcntl_nocancel.c: New file.
10619 * sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c: Remove file.
10620 * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
10621 Define FCNTL_ADJUST_CMD here, as a self-contained macro.
10623 * sysdeps/unix/sysv/linux/close.c: Move __close_nocancel to...
10624 * sysdeps/unix/sysv/linux/close_nocancel.c: ...this new file.
10625 * sysdeps/unix/sysv/linux/nanosleep.c: Move __nanosleep_nocancel to...
10626 * sysdeps/unix/sysv/linux/nanosleep_nocancel.c: ...this new file.
10627 * sysdeps/unix/sysv/linux/open.c: Move __open_nocancel to...
10628 * sysdeps/unix/sysv/linux/open_nocancel.c: ...this new file.
10629 * sysdeps/unix/sysv/linux/open64.c: Move __open64_nocancel to...
10630 * sysdeps/unix/sysv/linux/open64_nocancel.c: ...this new file.
10631 * sysdeps/unix/sysv/linux/openat.c: Move __openat_nocancel to...
10632 * sysdeps/unix/sysv/linux/openat_nocancel.c: ...this new file.
10633 * sysdeps/unix/sysv/linux/openat64.c: Move __openat64_nocancel to...
10634 * sysdeps/unix/sysv/linux/openat64_nocancel.c: ...this new file.
10635 * sysdeps/unix/sysv/linux/pause.c: Move __pause_nocancel to...
10636 * sysdeps/unix/sysv/linux/pause_nocancel.c: ...this new file.
10637 * sysdeps/unix/sysv/linux/read.c: Move __read_nocancel to...
10638 * sysdeps/unix/sysv/linux/read_nocancel.c: ...this new file.
10639 * sysdeps/unix/sysv/linux/waitpid.c: Move __waitpid_nocancel to...
10640 * sysdeps/unix/sysv/linux/waitpid_nocancel.c: ...this new file.
10641 * sysdeps/unix/sysv/linux/write.c: Move __write_nocancel to...
10642 * sysdeps/unix/sysv/linux/write_nocancel.c: ...this new file.
10644 * sysdeps/unix/sysv/linux/nios2/Makefile: Don't override
10645 libpthread-routines.
10646 * sysdeps/unix/sysv/linux/nios2/pt-vfork.S: New file which
10649 * sysdeps/mach/hurd/dl-sysdep.c: Define __read instead of
10650 __libc_read, and __write instead of __libc_write. Define
10651 __open64 in addition to __open.
10653 2018-06-12 H.J. Lu <hongjiu.lu@intel.com>
10657 * sysdeps/i386/nptl/tls.h (tcbhead_t): Change __private_tm[4]
10658 to _private_tm[3] and add __glibc_reserved2.
10659 Add _Static_assert of offset of __private_ss == 0x30.
10660 * sysdeps/x86_64/nptl/tls.h: Add _Static_assert of offset of
10661 __private_ss == 0x40 for ILP32 and == 0x70 for LP64.
10663 2018-06-12 Florian Weimer <fweimer@redhat.com>
10665 x86: Make strncmp usable from rtld.
10666 * sysdeps/i386/i686/multiarch/strncmp-c.c: Only rename strncmp to
10667 __strncmp_ia32 if in libc (and not in rtld).
10668 * sysdeps/x86_64/multiarch/strncmp-sse2.S: Rename strcmp to
10669 strncmp if not in libc (and not to __strncmp_sse2).
10671 2018-06-12 Rafal Luzynski <digitalfreak@lingonborough.com>
10674 * localedata/locales/gd_GB (mon): Rename to...
10676 (mon): Import from CLDR (genitive case).
10677 * localedata/locales/hsb_DE (mon): Rename to...
10679 (mon): Import from CLDR (genitive case).
10680 * localedata/locales/wa_BE (mon): Rename to...
10682 (mon): Add, fill with the proper genitive forms, but CLDR data
10683 is incomplete; completed according to the comments in this file.
10684 (d_t_fmt): Do not use "di" before the month name, no longer needed.
10686 * localedata/locales/wa_BE (country_name): Reword
10687 "Beljike" -> "Beldjike".
10689 2018-06-11 Joseph Myers <joseph@codesourcery.com>
10692 * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Start by handling all
10693 cases of non-finite arguments.
10694 * math/libm-test-fma.inc (fma_test_data): Add more tests.
10696 2018-06-10 John David Anglin <danglin@gcc.gnu.org>
10699 * sysdeps/unix/sysv/linux/hppa/Makefile: xfail check-execstack.
10701 2018-06-08 Adhemerval Zanella <adhemerval.zanella@linaro.org>
10704 * include/unistd.h (__execvpex): New prototype.
10705 * posix/Makefile (tests): Add tst-spawn4.
10706 (tests-internal): Add tst-spawn4-compat.
10707 * posix/execvpe.c (__execvpe_common, __execvpex): New functions.
10708 * posix/tst-spawn4-compat.c: New file.
10709 * posix/tst-spawn4.c: Likewise.
10710 * sysdeps/unix/sysv/linux/spawni.c (__spawni): Do not interpret invalid
10711 binaries as shell scripts.
10712 * sysdeps/posix/spawni.c (__spawni): Likewise.
10714 2018-06-08 H.J. Lu <hongjiu.lu@intel.com>
10717 * elf/Makefile (tests-special): Add $(objpfx)check-initfini.out.
10718 ($(all-built-dso:=.dynsym): New target.
10719 (common-generated): Add $(all-built-dso:$(common-objpfx)%=%.dynsym).
10720 ($(objpfx)check-initfini.out): New target.
10721 (generated): Add check-initfini.out.
10722 * scripts/check-initfini.awk: New file.
10723 * sysdeps/aarch64/crti.S (_init): Mark as hidden.
10725 * sysdeps/alpha/crti.S (_init): Mark as hidden.
10727 * sysdeps/arm/crti.S (_init): Mark as hidden.
10729 * sysdeps/hppa/crti.S (_init): Mark as hidden.
10731 * sysdeps/i386/crti.S (_init): Mark as hidden.
10733 * sysdeps/ia64/crti.S (_init): Mark as hidden.
10735 * sysdeps/m68k/crti.S (_init): Mark as hidden.
10737 * sysdeps/microblaze/crti.S (_init): Mark as hidden.
10739 * sysdeps/mips/mips32/crti.S (_init): Mark as hidden.
10741 * sysdeps/mips/mips64/n32/crti.S (_init): Mark as hidden.
10743 * sysdeps/mips/mips64/n64/crti.S (_init): Mark as hidden.
10745 * sysdeps/nios2/crti.S (_init): Mark as hidden.
10747 * sysdeps/powerpc/powerpc32/crti.S (_init): Mark as hidden.
10749 * sysdeps/powerpc/powerpc64/crti.S (_init): Mark as hidden.
10751 * sysdeps/s390/s390-32/crti.S (_init): Mark as hidden.
10753 * sysdeps/s390/s390-64/crti.S (_init): Mark as hidden.
10755 * sysdeps/sh/crti.S (_init): Mark as hidden.
10757 * sysdeps/sparc/crti.S (_init): Mark as hidden.
10759 * sysdeps/x86_64/crti.S (_init): Mark as hidden.
10762 2018-06-06 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
10764 * sysdeps/powerpc/powerpc64/le/fpu/e_sqrtf128.c
10765 [__HAVE_FLOAT128_UNLIKE_LDBL] (TFtype, TF): Restrict TFtype
10766 and TF redirection to KFtype and KF only when the default
10767 long double type is not the IEEE 128-bit floating point type.
10769 2018-06-05 Joseph Myers <joseph@codesourcery.com>
10771 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_DIT): New
10773 (HWCAP_USCAT): Likewise.
10774 (HWCAP_ILRCPC): Likewise.
10775 (HWCAP_FLAGM): Likewise.
10776 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c (_DL_HWCAP_COUNT):
10778 (_dl_aarch64_cap_flags): Add new flag names.
10780 * sysdeps/unix/sysv/linux/aarch64/bits/mman.h [__USE_MISC]
10781 (MAP_FIXED_NOREPLACE): New macro.
10782 * sysdeps/unix/sysv/linux/alpha/bits/mman.h [__USE_MISC]
10783 (MAP_FIXED_NOREPLACE): Likewise.
10784 * sysdeps/unix/sysv/linux/arm/bits/mman.h [__USE_MISC]
10785 (MAP_FIXED_NOREPLACE): Likewise.
10786 * sysdeps/unix/sysv/linux/hppa/bits/mman.h [__USE_MISC]
10787 (MAP_FIXED_NOREPLACE): Likewise.
10788 * sysdeps/unix/sysv/linux/ia64/bits/mman.h [__USE_MISC]
10789 (MAP_FIXED_NOREPLACE): Likewise.
10790 * sysdeps/unix/sysv/linux/m68k/bits/mman.h [__USE_MISC]
10791 (MAP_FIXED_NOREPLACE): Likewise.
10792 * sysdeps/unix/sysv/linux/microblaze/bits/mman.h [__USE_MISC]
10793 (MAP_FIXED_NOREPLACE): Likewise.
10794 * sysdeps/unix/sysv/linux/mips/bits/mman.h [__USE_MISC]
10795 (MAP_FIXED_NOREPLACE): Likewise.
10796 * sysdeps/unix/sysv/linux/nios2/bits/mman.h [__USE_MISC]
10797 (MAP_FIXED_NOREPLACE): Likewise.
10798 * sysdeps/unix/sysv/linux/powerpc/bits/mman.h [__USE_MISC]
10799 (MAP_FIXED_NOREPLACE): Likewise.
10800 * sysdeps/unix/sysv/linux/riscv/bits/mman.h [__USE_MISC]
10801 (MAP_FIXED_NOREPLACE): Likewise.
10802 * sysdeps/unix/sysv/linux/s390/bits/mman.h [__USE_MISC]
10803 (MAP_FIXED_NOREPLACE): Likewise.
10804 * sysdeps/unix/sysv/linux/sh/bits/mman.h [__USE_MISC]
10805 (MAP_FIXED_NOREPLACE): Likewise.
10806 * sysdeps/unix/sysv/linux/sparc/bits/mman.h [__USE_MISC]
10807 (MAP_FIXED_NOREPLACE): Likewise.
10808 * sysdeps/unix/sysv/linux/x86/bits/mman.h [__USE_MISC]
10809 (MAP_FIXED_NOREPLACE): Likewise.
10811 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
10814 2018-06-04 Joseph Myers <joseph@codesourcery.com>
10816 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
10819 2018-06-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
10821 * bits/shm.h (struct shmid_ds): Make shm_segsz field size_t instead of
10823 * sysdeps/gnu/bits/shm.h (struct shmid_ds): Likewise.
10825 2018-06-01 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
10827 * benchtests/scripts/compare_string.py: (process_results) Catch
10828 exception in non-existent base_func and catch exception in
10829 non-existent attribute.
10830 (parse_file) Catch exception if input file does not exist.
10832 2018-06-01 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
10834 * benchtests/scripts/compare_string.py: Add --no-diff and --no-header
10835 options to avoid diff calculation and omit header, respectively.
10836 (main): process --no-diff and --no-header
10838 2018-06-01 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
10839 H.J. Lu <hongjiu.lu@intel.com>
10841 * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
10842 strcmp-avx2, strncmp-avx2, wcscmp-avx2, wcscmp-sse2, wcsncmp-avx2 and
10844 * sysdeps/x86_64/multiarch/ifunc-impl-list.c
10845 (__libc_ifunc_impl_list): Add tests for __strcmp_avx2,
10846 __strncmp_avx2, __wcscmp_avx2, __wcsncmp_avx2, __wcscmp_sse2
10847 and __wcsncmp_sse2.
10848 * sysdeps/x86_64/multiarch/strcmp.c (OPTIMIZE (avx2)):
10849 (IFUNC_SELECTOR): Return OPTIMIZE (avx2) on AVX 2 machines if
10850 AVX unaligned load is fast and vzeroupper is preferred.
10851 * sysdeps/x86_64/multiarch/strncmp.c: Likewise.
10852 * sysdeps/x86_64/multiarch/strcmp-avx2.S: New file.
10853 * sysdeps/x86_64/multiarch/strncmp-avx2.S: Likewise.
10854 * sysdeps/x86_64/multiarch/wcscmp-avx2.S: Likewise.
10855 * sysdeps/x86_64/multiarch/wcscmp-sse2.S: Likewise.
10856 * sysdeps/x86_64/multiarch/wcscmp.c: Likewise.
10857 * sysdeps/x86_64/multiarch/wcsncmp-avx2.S: Likewise.
10858 * sysdeps/x86_64/multiarch/wcsncmp-sse2.c: Likewise.
10859 * sysdeps/x86_64/multiarch/wcsncmp.c: Likewise.
10860 * sysdeps/x86_64/wcscmp.S (__wcscmp): Add alias only if __wcscmp
10863 2018-06-01 Florian Weimer <fweimer@redhat.com>
10865 * sysdeps/i386/fpu/libm-test-ulps: Update with results from
10866 configuring with --disable-multi-arch, building with
10867 “-march=x86-64 -mtune=generic -mfpmath=sse” and running on a
10870 2018-06-01 Florian Weimer <fweimer@redhat.com>
10872 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Update with
10873 results from building with “-march=x86-64 -mtune=generic
10874 -mfpmath=sse” and running on a Haswell-era CPU.
10876 2018-06-01 Joseph Myers <joseph@codesourcery.com>
10879 * soft-fp/sqrttf2.c: Remove file.
10880 * soft-fp/sqrtdf2.c: Move to ....
10881 * sysdeps/powerpc/nofpu/sqrtdf2.c: ... here. Include
10883 (__sqrtdf2): Make conditional on
10884 [SHLIB_COMPAT (libc, GLIBC_2_3_2, GLIBC_2_28)]. Define as compat
10886 * soft-fp/sqrtsf2.c: Move to ....
10887 * sysdeps/powerpc/nofpu/sqrtsf2.c: ... here. Include
10889 (__sqrtsf2): Make conditional on
10890 [SHLIB_COMPAT (libc, GLIBC_2_3_2, GLIBC_2_28)]. Define as compat
10892 * soft-fp/Makefile (gcc-single-routines): Remove sqrtsf2.
10893 (gcc-double-routines): Remove sqrtdf2.
10894 (gcc-quad-routines): Remove sqrttf2.
10895 * sysdeps/nios2/Makefile [$(subdir) = soft-fp] (sysdep_routines):
10896 Do not filter out sqrtsf2 and sqrtdf2.
10897 * sysdeps/powerpc/nofpu/Makefile [$(subdir) = soft-fp]
10898 (sysdep_routines): Add sqrtsf2 and sqrtdf2.
10900 2018-06-01 Florian Weimer <fweimer@redhat.com>
10902 * sysdeps/generic/libcidn.abilist: Remove file.
10904 2018-06-01 Florian Weimer <fweimer@redhat.com>
10907 * libio/strfile.h (struct _IO_str_fields): Rename members to
10908 discourage their use and add comment.
10909 (_IO_STR_DYNAMIC): Remove unused macro.
10910 * libio/strops.c (_IO_str_init_static_internal): Do not use
10911 callback pointers. Call malloc and free.
10912 (_IO_str_overflow): Do not use callback pointers. Call malloc
10914 (enlarge_userbuf): Likewise.
10915 (_IO_str_finish): Call free.
10916 * libio/wstrops.c (_IO_wstr_init_static): Initialize
10917 _allocate_buffer_unused.
10918 (_IO_wstr_overflow): Do not use callback pointers. Call malloc
10920 (enlarge_userbuf): Likewise.
10921 (_IO_wstr_finish): Call free.
10922 * debug/vasprintf_chk.c (__vasprintf_chk): Initialize
10923 _allocate_buffer_unused, _free_buffer_unused.
10924 * libio/memstream.c (__open_memstream): Likewise.
10925 * libio/vasprintf.c (_IO_vasprintf): Likewise.
10926 * libio/wmemstream.c (open_wmemstream): Likewise.
10928 2018-05-30 Paul Pluzhnikov <ppluzhnikov@google.com>
10930 * sysdeps/x86_64/fpu/libm-test-ulps (log_vlen8_avx2): Update for
10933 2018-05-30 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
10935 * sysdeps/powerpc/powerpc64/le/fpu/multiarch/Makefile: New file to
10936 add w_sqrtf128-power9 and w_sqrtf128-ppc64le to libm-sysdep_routines.
10937 * sysdeps/powerpc/powerpc64/le/fpu/multiarch/w_sqrtf128-power9.c:
10939 * sysdeps/powerpc/powerpc64/le/fpu/multiarch/w_sqrtf128-ppc64le.c:
10941 * sysdeps/powerpc/powerpc64/le/fpu/multiarch/w_sqrtf128.c: Likewise.
10943 2018-05-29 Florian Weimer <fweimer@redhat.com>
10945 * support/Makefile (libsupport-routines): Add
10946 xpthread_barrierattr_destroy, xpthread_barrierattr_init,
10947 xpthread_barrierattr_setpshared.
10948 * support/xpthread_barrierattr_destroy.c: New file.
10949 * support/xpthread_barrierattr_init.c: Likewise.
10950 * support/xpthread_barrierattr_setpshared.c: Likewise.
10952 2018-05-29 H.J. Lu <hongjiu.lu@intel.com>
10955 * elf/dl-reloc-static-pie.c (_dl_relocate_static_pie): Initialize
10956 _r_debug and update DT_DEBUG for debugger.
10958 2018-05-29 Florian Weimer <fweimer@redhat.com>
10960 * stdlib/Makefile (tst-strtod1i.out): Depend on generated locales.
10961 (tst-strtod5i.out): Likewise.
10963 2018-05-25 Joseph Myers <joseph@codesourcery.com>
10965 * sysdeps/sparc/sparc64/Implies: Remove sparc/sparc64/soft-fp.
10966 * sysdeps/sparc/sparc64/Makefile [$(subdir) = soft-fp]
10967 (sparc64-quad-routines): New variable. Moved from ....
10968 [$(subdir) = soft-fp] (sysdep_routines): Add
10969 $(sparc64-quad-routines). Moved from ....
10970 [$(subdir) = math] (CPPFLAGS): Add -I../soft-fp/. Moved from ....
10971 * sysdeps/sparc/sparc64/soft-fp/Makefile: ... here. Remove file.
10972 * sysdeps/sparc/sparc64/Versions (libc): Add GLIBC_2.2 symbols
10974 * sysdeps/sparc/sparc64/soft-fp/Versions: ... here. Remove file.
10975 * sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c: Remove file.
10976 * sysdeps/sparc/sparc64/soft-fp/qp_add.c: Move to ....
10977 * sysdeps/sparc/sparc64/qp_add.c: ... here.
10978 * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c: Move to ....
10979 * sysdeps/sparc/sparc64/qp_cmp.c: ... here.
10980 * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c: Move to ....
10981 * sysdeps/sparc/sparc64/qp_cmpe.c: ... here.
10982 * sysdeps/sparc/sparc64/soft-fp/qp_div.c: Move to ....
10983 * sysdeps/sparc/sparc64/qp_div.c: ... here.
10984 * sysdeps/sparc/sparc64/soft-fp/qp_dtoq.c: Move to ....
10985 * sysdeps/sparc/sparc64/qp_dtoq.c: ... here.
10986 * sysdeps/sparc/sparc64/soft-fp/qp_feq.c: Move to ....
10987 * sysdeps/sparc/sparc64/qp_feq.c: ... here.
10988 * sysdeps/sparc/sparc64/soft-fp/qp_fge.c: Move to ....
10989 * sysdeps/sparc/sparc64/qp_fge.c: ... here.
10990 * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c: Move to ....
10991 * sysdeps/sparc/sparc64/qp_fgt.c: ... here.
10992 * sysdeps/sparc/sparc64/soft-fp/qp_fle.c: Move to ....
10993 * sysdeps/sparc/sparc64/qp_fle.c: ... here.
10994 * sysdeps/sparc/sparc64/soft-fp/qp_flt.c: Move to ....
10995 * sysdeps/sparc/sparc64/qp_flt.c: ... here.
10996 * sysdeps/sparc/sparc64/soft-fp/qp_fne.c: Move to ....
10997 * sysdeps/sparc/sparc64/qp_fne.c: ... here.
10998 * sysdeps/sparc/sparc64/soft-fp/qp_itoq.c: Move to ....
10999 * sysdeps/sparc/sparc64/qp_itoq.c: ... here.
11000 * sysdeps/sparc/sparc64/soft-fp/qp_mul.c: Move to ....
11001 * sysdeps/sparc/sparc64/qp_mul.c: ... here.
11002 * sysdeps/sparc/sparc64/soft-fp/qp_neg.S: Move to ....
11003 * sysdeps/sparc/sparc64/qp_neg.S: ... here.
11004 * sysdeps/sparc/sparc64/soft-fp/qp_qtod.c: Move to ....
11005 * sysdeps/sparc/sparc64/qp_qtod.c: ... here.
11006 * sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Move to ....
11007 * sysdeps/sparc/sparc64/qp_qtoi.c: ... here.
11008 * sysdeps/sparc/sparc64/soft-fp/qp_qtos.c: Move to ....
11009 * sysdeps/sparc/sparc64/qp_qtos.c: ... here.
11010 * sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Move to ....
11011 * sysdeps/sparc/sparc64/qp_qtoui.c: ... here.
11012 * sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Move to ....
11013 * sysdeps/sparc/sparc64/qp_qtoux.c: ... here.
11014 * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Move to ....
11015 * sysdeps/sparc/sparc64/qp_qtox.c: ... here.
11016 * sysdeps/sparc/sparc64/soft-fp/qp_sqrt.c: Move to ....
11017 * sysdeps/sparc/sparc64/qp_sqrt.c: ... here.
11018 * sysdeps/sparc/sparc64/soft-fp/qp_stoq.c: Move to ....
11019 * sysdeps/sparc/sparc64/qp_stoq.c: ... here.
11020 * sysdeps/sparc/sparc64/soft-fp/qp_sub.c: Move to ....
11021 * sysdeps/sparc/sparc64/qp_sub.c: ... here.
11022 * sysdeps/sparc/sparc64/soft-fp/qp_uitoq.c: Move to ....
11023 * sysdeps/sparc/sparc64/qp_uitoq.c: ... here.
11024 * sysdeps/sparc/sparc64/soft-fp/qp_util.c: Move to ....
11025 * sysdeps/sparc/sparc64/qp_util.c: ... here.
11026 * sysdeps/sparc/sparc64/soft-fp/qp_uxtoq.c: Move to ....
11027 * sysdeps/sparc/sparc64/qp_uxtoq.c: ... here.
11028 * sysdeps/sparc/sparc64/soft-fp/qp_xtoq.c: Move to ....
11029 * sysdeps/sparc/sparc64/qp_xtoq.c: ... here.
11030 * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h: Move to ....
11031 * sysdeps/sparc/sparc64/sfp-machine.h: ... here.
11033 * sysdeps/sparc/sparc32/Implies: Remove sparc/sparc32/soft-fp.
11034 * sysdeps/sparc/sparc32/Makefile [$(subdir) = soft-fp]
11035 (sparc32-quad-routines): New variable. Moved from ....
11036 [$(subdir) = soft-fp] (sysdep_routines): Add
11037 $(sparc32-quad-routines). Moved from ....
11038 * sysdeps/sparc/sparc32/soft-fp/Makefile: ... here. Remove file.
11039 * sysdeps/sparc/sparc32/Versions (libc): Add GLIBC_2.4 symbols
11041 * sysdeps/sparc/sparc32/soft-fp/Versions: ... here. Remove file.
11042 * sysdeps/sparc/sparc32/soft-fp/q_add.c: Move to ....
11043 * sysdeps/sparc/sparc32/q_add.c: ... here.
11044 * sysdeps/sparc/sparc32/soft-fp/q_cmp.c: Move to ....
11045 * sysdeps/sparc/sparc32/q_cmp.c: ... here.
11046 * sysdeps/sparc/sparc32/soft-fp/q_cmpe.c: Move to ....
11047 * sysdeps/sparc/sparc32/q_cmpe.c: ... here.
11048 * sysdeps/sparc/sparc32/soft-fp/q_div.c: Move to ....
11049 * sysdeps/sparc/sparc32/q_div.c: ... here.
11050 * sysdeps/sparc/sparc32/soft-fp/q_dtoq.c: Move to ....
11051 * sysdeps/sparc/sparc32/q_dtoq.c: ... here.
11052 * sysdeps/sparc/sparc32/soft-fp/q_feq.c: Move to ....
11053 * sysdeps/sparc/sparc32/q_feq.c: ... here.
11054 * sysdeps/sparc/sparc32/soft-fp/q_fge.c: Move to ....
11055 * sysdeps/sparc/sparc32/q_fge.c: ... here.
11056 * sysdeps/sparc/sparc32/soft-fp/q_fgt.c: Move to ....
11057 * sysdeps/sparc/sparc32/q_fgt.c: ... here.
11058 * sysdeps/sparc/sparc32/soft-fp/q_fle.c: Move to ....
11059 * sysdeps/sparc/sparc32/q_fle.c: ... here.
11060 * sysdeps/sparc/sparc32/soft-fp/q_flt.c: Move to ....
11061 * sysdeps/sparc/sparc32/q_flt.c: ... here.
11062 * sysdeps/sparc/sparc32/soft-fp/q_fne.c: Move to ....
11063 * sysdeps/sparc/sparc32/q_fne.c: ... here.
11064 * sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Move to ....
11065 * sysdeps/sparc/sparc32/q_itoq.c: ... here.
11066 * sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Move to ....
11067 * sysdeps/sparc/sparc32/q_lltoq.c: ... here.
11068 * sysdeps/sparc/sparc32/soft-fp/q_mul.c: Move to ....
11069 * sysdeps/sparc/sparc32/q_mul.c: ... here.
11070 * sysdeps/sparc/sparc32/soft-fp/q_neg.c: Move to ....
11071 * sysdeps/sparc/sparc32/q_neg.c: ... here.
11072 * sysdeps/sparc/sparc32/soft-fp/q_qtod.c: Move to ....
11073 * sysdeps/sparc/sparc32/q_qtod.c: ... here.
11074 * sysdeps/sparc/sparc32/soft-fp/q_qtoi.c: Move to ....
11075 * sysdeps/sparc/sparc32/q_qtoi.c: ... here.
11076 * sysdeps/sparc/sparc32/soft-fp/q_qtoll.c: Move to ....
11077 * sysdeps/sparc/sparc32/q_qtoll.c: ... here.
11078 * sysdeps/sparc/sparc32/soft-fp/q_qtos.c: Move to ....
11079 * sysdeps/sparc/sparc32/q_qtos.c: ... here.
11080 * sysdeps/sparc/sparc32/soft-fp/q_qtou.c: Move to ....
11081 * sysdeps/sparc/sparc32/q_qtou.c: ... here.
11082 * sysdeps/sparc/sparc32/soft-fp/q_qtoull.c: Move to ....
11083 * sysdeps/sparc/sparc32/q_qtoull.c: ... here.
11084 * sysdeps/sparc/sparc32/soft-fp/q_sqrt.c: Move to ....
11085 * sysdeps/sparc/sparc32/q_sqrt.c: ... here.
11086 * sysdeps/sparc/sparc32/soft-fp/q_stoq.c: Move to ....
11087 * sysdeps/sparc/sparc32/q_stoq.c: ... here.
11088 * sysdeps/sparc/sparc32/soft-fp/q_sub.c: Move to ....
11089 * sysdeps/sparc/sparc32/q_sub.c: ... here.
11090 * sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Move to ....
11091 * sysdeps/sparc/sparc32/q_ulltoq.c: ... here.
11092 * sysdeps/sparc/sparc32/soft-fp/q_util.c: Move to ....
11093 * sysdeps/sparc/sparc32/q_util.c: ... here.
11094 * sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Move to ....
11095 * sysdeps/sparc/sparc32/q_utoq.c: ... here.
11096 * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h: Move to ....
11097 * sysdeps/sparc/sparc32/sfp-machine.h: ... here.
11099 2018-05-24 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
11100 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
11102 * sysdeps/powerpc/Implies: Removed. Previous contents copied to...
11103 * sysdeps/powerpc/powerpc32/Implies-after: ... here.
11104 * sysdeps/powerpc/powerpc64/be/Implies-after: ... here.
11105 * sysdeps/powerpc/powerpc64/le/Implies-before: ... and here.
11107 2018-05-24 Joseph Myers <joseph@codesourcery.com>
11109 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/Implies: Remove
11111 * sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nofpu/Implies:
11113 * sysdeps/powerpc/soft-fp/sfp-machine.h: Move to ....
11114 * sysdeps/powerpc/nofpu/sfp-machine.h: ... here.
11116 2018-05-24 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
11119 * math/math.h [C++] (iseqsig): Fix parameter type for the long
11122 2018-05-23 Joseph Myers <joseph@codesourcery.com>
11124 * sysdeps/sh/Implies: Remove sh/soft-fp.
11125 * sysdeps/sh/soft-fp/sfp-machine.h: Move to ....
11126 * sysdeps/sh/sfp-machine.h: ... here.
11128 2018-05-23 H.J. Lu <hongjiu.lu@intel.com>
11130 * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S
11131 (__mempcpy_erms): Skip zero length.
11132 (__memmove_erms): Likewise.
11133 * sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S
11134 (__memset_erms): Likewise.
11136 2018-05-23 Joseph Myers <joseph@codesourcery.com>
11138 * sysdeps/alpha/Implies: Remove alpha/soft-fp.
11139 * sysdeps/alpha/Makefile [$(subdir) = soft-fp] (sysdep_routines):
11140 Add functions moved from ....
11141 [$(subdir) = math] (CPPFLAGS): Add -I../soft-fp. Moved from ....
11142 * sysdeps/alpha/soft-fp/Makefile: ... here. Remove file.
11143 * sysdeps/alpha/Versions (libc): Add GLIBC_2.3.4 symbols moved
11145 * sysdeps/alpha/soft-fp/Versions: ... here. Remove file.
11146 * sysdeps/alpha/soft-fp/e_sqrtl.c: Move to ....
11147 * sysdeps/alpha/e_sqrtl.c: ... here.
11148 * sysdeps/alpha/soft-fp/local-soft-fp.h: Move to ....
11149 * sysdeps/alpha/local-soft-fp.h: ... here.
11150 * sysdeps/alpha/soft-fp/ots_add.c: Move to ....
11151 * sysdeps/alpha/ots_add.c: ... here.
11152 * sysdeps/alpha/soft-fp/ots_cmp.c: Move to ....
11153 * sysdeps/alpha/ots_cmp.c: ... here.
11154 * sysdeps/alpha/soft-fp/ots_cmpe.c: Move to ....
11155 * sysdeps/alpha/ots_cmpe.c: ... here.
11156 * sysdeps/alpha/soft-fp/ots_cvtqux.c: Move to ....
11157 * sysdeps/alpha/ots_cvtqux.c: ... here.
11158 * sysdeps/alpha/soft-fp/ots_cvtqx.c: Move to ....
11159 * sysdeps/alpha/ots_cvtqx.c: ... here.
11160 * sysdeps/alpha/soft-fp/ots_cvttx.c: Move to ....
11161 * sysdeps/alpha/ots_cvttx.c: ... here.
11162 * sysdeps/alpha/soft-fp/ots_cvtxq.c: Move to ....
11163 * sysdeps/alpha/ots_cvtxq.c: ... here.
11164 * sysdeps/alpha/soft-fp/ots_cvtxt.c: Move to ....
11165 * sysdeps/alpha/ots_cvtxt.c: ... here.
11166 * sysdeps/alpha/soft-fp/ots_div.c: Move to ....
11167 * sysdeps/alpha/ots_div.c: ... here.
11168 * sysdeps/alpha/soft-fp/ots_mul.c: Move to ....
11169 * sysdeps/alpha/ots_mul.c: ... here.
11170 * sysdeps/alpha/soft-fp/ots_nintxq.c: Move to ....
11171 * sysdeps/alpha/ots_nintxq.c: ... here.
11172 * sysdeps/alpha/soft-fp/ots_sub.c: Move to ....
11173 * sysdeps/alpha/ots_sub.c: ... here.
11174 * sysdeps/alpha/soft-fp/sfp-machine.h: Move to ....
11175 * sysdeps/alpha/sfp-machine.h: ... here.
11177 2018-05-23 Florian Weimer <fweimer@redhat.com>
11185 Switch to extern IDNA implementation (libidn2).
11186 * libidn: Remove subdirectory.
11187 * LICENSES: Do not mention licensing conditions for the removed
11189 * config.h.in (HAVE_LIBIDN): Remove.
11190 * include/dlfcn.h (__libc_dlopen): Update comment.
11191 * include/idna.h: Remove file.
11192 * inet/Makefile (routines): Add idna.
11193 (tests-static, tests-internal): Add tst-idna_name_classify.
11194 (LOCALES): Generate locales for tests.
11195 (tst-idna_name_classify.out): Depend on generated locales.
11196 * inet/idna_name_classify.c: New file.
11197 * inet/tst-idna_name_classify.c: Likewise.
11198 * inet/net-internal.h (__idna_to_dns_encoding)
11199 (__idna_from_dns_encoding): Declare.
11200 * inet/net-internal.h (enum idna_name_classification): Define.
11201 (__idna_name_classify): Declare.
11202 * inet/Versions (GLIBC_PRIVATE): Add __idna_to_dns_encoding,
11203 __idna_from_dns_encoding.
11204 * inet/getnameinfo.c (DEPRECATED_NI_IDN): Define.
11205 (gni_host_inet_name): Call __idna_from_dns_encoding. Use punycode
11206 name as a fallback in case of encoding errors.
11207 (getnameinfo): Use DEPRECATED_NI_IDN.
11208 * inet/idna.c: New file.
11209 * nscd/gai.c: Do not include <libidn/idn-stub.c>.
11210 * resolv/Makefile (tests): Add tst-resolv-ai_idn,
11211 tst-resolv-ai_idn-latin1, tst-resolv-ai_idn-nolibidn2.
11212 (modules-names): Add tst-no-libidn2.
11213 (extra-test-objs): Add tst-no-libidn2.os.
11214 (LDFLAGS-tst-no-libidn2.so): Set soname.
11215 (LOCALES): Set, and generate locales.
11216 (tst-resolv-ai_idn): Link with -ldl -lresolv -lpthread.
11217 (tst-resolv-ai_idn-latin1): Likewise.
11218 (tst-resolv-ai_idn-nolibidn2): Likewise.
11219 (tst-resolv-ai_idn.out): Depend on locales.
11220 (tst-resolv-ai_idn-latin1.out): Depend on locales.
11221 (tst-resolv-ai_idn-nolibidn2.out): Depend on locales and
11223 * resolv/netdb.h (AI_IDN_ALLOW_UNASSIGNED)
11224 (AI_IDN_USE_STD3_ASCII_RULES, NI_IDN_ALLOW_UNASSIGNED)
11225 (NI_IDN_USE_STD3_ASCII_RULES): Deprecate.
11226 * resolv/tst-resolv-ai_idn.c: New file.
11227 * resolv/tst-resolv-ai_idn-latin1.c: Likewise.
11228 * resolv/tst-resolv-ai_idn-nolibidn2.c: Likewise.
11229 * resolv/tst-no-libidn2.c: Likewise.
11230 * support/support_format_addrinfo.c (format_ai_flags): Do not
11231 handle AI_IDN_ALLOW_UNASSIGNED, AI_IDN_USE_STD3_ASCII_RULES.
11232 * sysdeps/posix/getaddrinfo.c (DEPRECATED_AI_IDN): Define.
11233 (gaih_inet): Call __idna_to_dns_encoding and
11234 __idna_from_dns_encoding, and use the original (punycode) name if
11235 __idna_from_dns_encoding fails due to an encoding error.
11236 (getaddrinfo): Use DEPRECATED_AI_IDN.
11237 * sysdeps/unix/inet/Subdirs (libidn): Remove.
11238 * sysdeps/unix/inet/configure: Remove file.
11239 * sysdeps/unix/inet/configure.ac: Likewise.
11241 2018-05-23 Florian Weimer <fweimer@redhat.com>
11243 Implement allocate_once.
11244 * include/allocate_once.h: New file.
11245 * misc/allocate_once.c: Likewise.
11246 * misc/tst-allocate_once.c: Likewise.
11247 * misc/Makefile (routines): Add allocate_once.
11248 (tests-internal): Add tst-allocate_once.
11249 (generated): Add tst-allocate_once.mtrace,
11250 tst-allocate_once-mem.out.
11251 (tests-special): Add tst-allocate_once-mem.out.
11252 (tst-allocate_once-ENV): Set MALLOC_TRACE.
11253 (tst-allocate_once-mem.out): Call mtrace.
11254 * misc/Versions (GLIBC_PRIVATE): Add __libc_allocate_once_slow.
11256 2018-05-23 H.J. Lu <hongjiu.lu@intel.com>
11259 * string/test-memcpy.c (do_test1): New function.
11260 (test_main): Call it.
11262 2018-05-23 Andreas Schwab <schwab@suse.de>
11266 * sysdeps/x86_64/multiarch/memmove-avx512-no-vzeroupper.S
11267 (L(preloop_large)): Save initial destination pointer in %r11 and
11268 use it instead of %rax after the loop.
11269 * string/test-mempcpy.c (MIN_PAGE_SIZE): Define.
11271 2018-05-22 Joseph Myers <joseph@codesourcery.com>
11273 * sysdeps/aarch64/Implies: Remove aarch64/soft-fp.
11274 * sysdeps/aarch64/Makefile [$(subdir) = math] (CPPFLAGS): Add
11275 -I../soft-fp. Moved from ....
11276 * sysdeps/aarch64/soft-fp/Makefile: ... here. Remove file.
11277 * sysdeps/aarch64/soft-fp/e_sqrtl.c: Move to ....
11278 * sysdeps/aarch64/e_sqrtl.c: ... here.
11279 * sysdeps/aarch64/soft-fp/sfp-machine.h: Move to ....
11280 * sysdeps/aarch64/sfp-machine.h: ... here.
11282 * sysdeps/ieee754/dbl-64/k_rem_pio2.c (__kernel_rem_pio2): Ignore
11283 -Wmaybe-uninitialized around access to fq[0].
11284 * sysdeps/ieee754/flt-32/k_rem_pio2f.c (__kernel_rem_pio2f):
11288 * sysdeps/unix/make-syscalls.sh (emit_weak_aliases): Use weak
11289 aliases for non-libc case of versioned symbols.
11290 * sysdeps/unix/sysv/linux/lseek64.c: Include <shlib-compat.h>.
11291 (llseek): Define as compat symbol if
11292 [SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_28)], not as weak alias
11294 * sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list (llseek):
11295 Make into a compat symbol, disabled for minimum symbol version
11296 GLIBC_2.28 and later.
11297 * sysdeps/unix/sysv/linux/x86_64/x32/llseek.S: Remove file.
11299 2018-05-22 Florian Weimer <fweimer@redhat.com>
11301 * sysdeps/i386/Makefile [$(subdir) == math] (sysdep-CFLAGS): Do
11302 not add -mpreferred-stack-boundary=4.
11303 [$(subdir) == csu] (sysdep-CFLAGS): Likewise.
11304 (stack-align-test-flags): Likewise.
11305 [$(subdir) == stdlib] (CFLAGS-exit.c, CFLAGS-cxa_finalize.c):
11307 [$(subdir) == elf] (CFLAGS-dl-init.c, CFLAGS-dl-fini.c)
11308 (CFLAGS-dl-open.c, CFLAGS-dl-close.c, CFLAGS-dl-error.c): Likewise.
11309 [$(subdir) == dlfcn] (CFLAGS-dlopen.c, CFLAGS-dlopenold.c)
11310 (CFLAGS-dlclose.c, CFLAGS-dlerror.c): Likewise.
11311 * sysdeps/i386/nptl/Makefile [$(subdir) == nptl]
11312 (CFLAGS-pthread_create.c, CFLAGS-tst-align.c)
11313 (CFLAGS-tst-align2.c): Likewise.
11315 2018-05-21 H.J. Lu <hongjiu.lu@intel.com>
11317 * sysdeps/x86/cpu-features.h (bit_arch_Prefer_FSRM): New.
11318 (index_arch_Prefer_FSRM): Likewise.
11319 * sysdeps/x86/cpu-tunables.c (TUNABLE_CALLBACK (set_hwcaps)):
11320 Also check Prefer_FSRM.
11321 * sysdeps/x86_64/multiarch/ifunc-memmove.h (IFUNC_SELECTOR):
11322 Also return OPTIMIZE (erms) for Prefer_FSRM.
11324 2018-05-21 H.J. Lu <hongjiu.lu@intel.com>
11326 * sysdeps/x86/cpu-features.h (bit_cpu_FSRM): New.
11327 (index_cpu_FSRM): Likewise.
11328 (reg_FSRM): Likewise.
11330 2018-05-18 Joseph Myers <joseph@codesourcery.com>
11332 * math/gen-tgmath-tests.py: Import sys.
11333 (Tests.__init__): Initialize macros_seen.
11334 (Tests.add_tests): Add macro to macros_seen. Only generate tests
11335 if requested to do so for this macro.
11336 (Tests.add_all_tests): Take argument for macro for which to
11338 (Tests.check_macro_list): New function.
11339 (main): Handle check-list argument and argument specifying macro
11340 for which to generate tests.
11341 * math/Makefile [PYTHON] (tgmath3-macros): New variable.
11342 [PYTHON] (tgmath3-macro-tests): Likewise.
11343 [PYTHON] (tests): Add $(tgmath3-macro-tests) not test-tgmath3.
11344 [PYTHON] (generated): Add $(addsuffix .c,$(tgmath3-macro-tests))
11345 not test-tgmath3.c.
11346 [PYTHON] (CFLAGS-test-tgmath3.c): Remove.
11347 [PYTHON] ($(tgmath3-macro-tests:%=$(objpfx)%.o): Add -fno-builtin
11349 [PYTHON] ($(objpfx)test-tgmath3.c): Replace rule by....
11350 [PYTHON] ($(foreach
11351 m,$(tgmath3-macros),$(objpfx)test-tgmath3-$(m).c): ... this. New
11353 [PYTHON] (tests-special): Add
11354 $(objpfx)test-tgmath3-macro-list.out.
11355 [PYTHON] ($(objpfx)test-tgmath3-macro-list.out): New rule.
11357 * sysdeps/unix/sysv/linux/syscalls.list (nfsservctl): Make into a
11358 compat symbol, disabled for minimum symbol version GLIBC_2.28 and
11362 * time/tzset.c (SECSPERDAY): Cast to time_t.
11363 * time/tst-y2039.c: New file.
11364 * time/Makefile (tests): Add tst-y2039.
11366 2018-05-17 Leonardo Sandoval <leonardo.sandoval.gonzalez@intel.com>
11368 * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S
11369 (PREFETCH_ONE_SET): Remove duplicate line.
11371 2018-05-17 Florian Weimer <fweimer@redhat.com>
11373 * sysdeps/generic/math-type-macros-double.h: Include
11374 <math-nan-payload-double.h> after <libm-alias-double.h>.
11375 * sysdeps/generic/math-type-macros-float.h: Include
11376 <math-nan-payload-float.h> after <libm-alias-float.h>.
11377 * sysdeps/generic/math-type-macros-float128.h: Include
11378 <math-nan-payload-float128.h> after <libm-alias-float128.h>.
11379 * sysdeps/generic/math-type-macros-ldouble.h: Include
11380 <math-nan-payload-ldouble.h> after <libm-alias-ldouble.h>.
11382 2018-05-17 Andreas Schwab <schwab@suse.de>
11384 * resolv/res_send.c (__res_context_send): Don't set errno when
11385 returing error after malloc failure.
11387 2018-05-17 H.J. Lu <hongjiu.lu@intel.com>
11389 * nptl/allocatestack.c (allocate_stack): Remove the
11390 !__ASSUME_PRIVATE_FUTEX paths.
11391 * nptl/descr.h (header): Remove the !__ASSUME_PRIVATE_FUTEX path.
11392 * nptl/nptl-init.c (__pthread_initialize_minimal_internal):
11394 * sysdeps/i386/nptl/tcb-offsets.sym (PRIVATE_FUTEX): Removed.
11395 * sysdeps/powerpc/nptl/tcb-offsets.sym (PRIVATE_FUTEX): Likewise.
11396 * sysdeps/sh/nptl/tcb-offsets.sym (PRIVATE_FUTEX): Likewise.
11397 * sysdeps/x86_64/nptl/tcb-offsets.sym (PRIVATE_FUTEX): Likewise.
11398 * sysdeps/i386/nptl/tls.h: (tcbhead_t): Remve the
11399 !__ASSUME_PRIVATE_FUTEX path.
11400 * sysdeps/s390/nptl/tls.h (tcbhead_t): Likewise.
11401 * sysdeps/sparc/nptl/tls.h (tcbhead_t): Likewise.
11402 * sysdeps/x86_64/nptl/tls.h (tcbhead_t): Likewise.
11403 * sysdeps/unix/sysv/linux/i386/lowlevellock.S: Remove the
11404 !__ASSUME_PRIVATE_FUTEX macros.
11405 * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Likewise.
11406 * sysdeps/unix/sysv/linux/x86_64/cancellation.S: Likewise.
11407 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Likewise.
11408 * sysdeps/unix/sysv/linux/kernel-features.h
11409 (__ASSUME_PRIVATE_FUTEX): Removed.
11411 2018-05-17 Joseph Myers <joseph@codesourcery.com>
11413 * math/Makefile (libm-narrow-fns): Add div.
11414 (libm-test-funcs-narrow): Likewise.
11415 * math/Versions (GLIBC_2.28): Add narrowing divide functions.
11416 * math/bits/mathcalls-narrow.h (div): Use __MATHCALL_NARROW.
11417 * math/gen-auto-libm-tests.c (test_functions): Add div.
11418 * math/math-narrow.h (CHECK_NARROW_DIV): New macro.
11419 (NARROW_DIV_ROUND_TO_ODD): Likewise.
11420 (NARROW_DIV_TRIVIAL): Likewise.
11421 * sysdeps/ieee754/float128/float128_private.h (__fdivl): New
11423 (__ddivl): Likewise.
11424 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add fdiv and
11426 (CFLAGS-nldbl-ddiv.c): New variable.
11427 (CFLAGS-nldbl-fdiv.c): Likewise.
11428 * sysdeps/ieee754/ldbl-opt/Versions (GLIBC_2.28): Add
11430 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl_ddivl): New
11432 * manual/arith.texi (Misc FP Arithmetic): Document fdiv, fdivl,
11433 ddivl, fMdivfN, fMdivfNx, fMxdivfN and fMxdivfNx.
11434 * math/auto-libm-test-in: Add tests of div.
11435 * math/auto-libm-test-out-narrow-div: New generated file.
11436 * math/libm-test-narrow-div.inc: New file.
11437 * sysdeps/i386/fpu/s_f32xdivf64.c: Likewise.
11438 * sysdeps/ieee754/dbl-64/s_f32xdivf64.c: Likewise.
11439 * sysdeps/ieee754/dbl-64/s_fdiv.c: Likewise.
11440 * sysdeps/ieee754/float128/s_f32divf128.c: Likewise.
11441 * sysdeps/ieee754/float128/s_f64divf128.c: Likewise.
11442 * sysdeps/ieee754/float128/s_f64xdivf128.c: Likewise.
11443 * sysdeps/ieee754/ldbl-128/s_ddivl.c: Likewise.
11444 * sysdeps/ieee754/ldbl-128/s_f64xdivf128.c: Likewise.
11445 * sysdeps/ieee754/ldbl-128/s_fdivl.c: Likewise.
11446 * sysdeps/ieee754/ldbl-128ibm/s_ddivl.c: Likewise.
11447 * sysdeps/ieee754/ldbl-128ibm/s_fdivl.c: Likewise.
11448 * sysdeps/ieee754/ldbl-96/s_ddivl.c: Likewise.
11449 * sysdeps/ieee754/ldbl-96/s_fdivl.c: Likewise.
11450 * sysdeps/ieee754/ldbl-opt/nldbl-ddiv.c: Likewise.
11451 * sysdeps/ieee754/ldbl-opt/nldbl-fdiv.c: Likewise.
11452 * sysdeps/ieee754/soft-fp/s_ddivl.c: Likewise.
11453 * sysdeps/ieee754/soft-fp/s_fdiv.c: Likewise.
11454 * sysdeps/ieee754/soft-fp/s_fdivl.c: Likewise.
11455 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
11456 * sysdeps/mach/hurd/i386/libm.abilist: Likewise.
11457 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
11458 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
11459 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
11460 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
11461 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
11462 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
11463 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
11464 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
11465 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
11466 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
11467 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
11468 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
11469 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Likewise.
11470 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Likewise.
11471 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Likewise.
11472 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Likewise.
11473 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
11474 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
11475 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
11476 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
11477 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
11478 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
11479 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
11480 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
11482 2018-05-16 Adhemerval Zanella <adhemerval.zanella@linaro.org>
11485 * nscd/nscd-client.h (sendfileall): Remove prototype.
11486 * nscd/connections.c [HAVE_SENDFILE] (sendfileall): Remove function.
11487 (handle_request): Use writeall instead of sendfileall.
11488 * nscd/aicache.c (addhstaiX): Likewise.
11489 * nscd/grpcache.c (cache_addgr): Likewise.
11490 * nscd/hstcache.c (cache_addhst): Likewise.
11491 * nscd/initgrcache.c (addinitgroupsX): Likewise.
11492 * nscd/netgroupcache.c (addgetnetgrentX, addinnetgrX): Likewise.
11493 * nscd/pwdcache.c (cache_addpw): Likewise.
11494 * nscd/servicescache.c (cache_addserv): Likewise.
11495 * sysdeps/unix/sysv/linux/Makefile [$(subdir) == nscd]
11496 (sysdep-CFLAGS): Remove -DHAVE_SENDFILE.
11497 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_SENDFILE):
11500 2018-05-16 H.J. Lu <hongjiu.lu@intel.com>
11502 * sysdeps/x86_64/multiarch/strncat-c.c (STRNCAT_PRIMARY): Removed.
11503 Include <string/strncat.c>.
11504 * sysdeps/x86_64/multiarch/strncat.c (__strncat): New strong
11506 (__GI___strncat): New hidden alias.
11508 2018-05-16 Joseph Myers <joseph@codesourcery.com>
11510 * sysdeps/mips/mips32/libm-test-ulps: Update.
11511 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
11513 2018-05-16 Florian Weimer <fweimer@redhat.com>
11515 * support/Makefile (libsupport-routines): Add support_quote_blob,
11516 support_test_compare_blob.
11517 (tests): Add tst-support_quote_blob, tst-test_compare_blob.
11518 * support/check.h (TEST_COMPARE_BLOB): Define.
11519 (support_test_compare_blob): Declare.
11520 * support/support.h (support_quote_blob): Declare.
11521 * support/support_quote_blob.c: New file.
11522 * support/support_test_compare_blob.c: Likewise.
11523 * support/tst-support_quote_blob.c: Likewise.
11524 * support/tst-test_compare_blob.c: Likewise.
11526 2018-05-16 Florian Weimer <fweimer@redhat.com>
11528 * stdlib/strtod_nan.c: Include <math-type-macros-double.h> instead
11529 of <strtod_nan_double.h>.
11530 * stdlib/strtod_nan_main.c (STRTOD_NAN): Use SET_NAN_PAYLOAD
11531 instead of SET_MANTISSA.
11532 * stdlib/strtof_nan.c: Include <math-type-macros-float.h> instead
11533 of include <strtod_nan_float.h>.
11534 * stdlib/strtold_nan.c: Include <math-type-macros-ldouble.h>
11535 instead of <strtod_nan_ldouble.h>.
11536 * stdlib/strtod_nan_double.h: Move to ...
11537 * sysdeps/generic/math-nan-payload-double.h: ... here.
11538 (FLOAT): Remove definition.
11539 (SET_MANTISSA): Rename to ...
11540 (SET_NAN_PAYLOAD): ... this.
11541 * stdlib/strtod_nan_float.h: Move to ...
11542 * sysdeps/generic/math-nan-payload-float.h: ... here.
11543 (FLOAT): Remove definition.
11544 (SET_MANTISSA): Rename to ...
11545 (SET_NAN_PAYLOAD): ... this.
11546 * sysdeps/generic/math-type-macros-double.h: Include
11547 <math-nan-payload-double.h>. Include <math/math-svid-compat.h>
11548 instead of <math-svid-compat.h>.
11549 * sysdeps/generic/math-type-macros-float.h: Include
11550 <math-nan-payload-float.h>. Include <math/math-svid-compat.h>
11551 instead of <math-svid-compat.h>.
11552 * sysdeps/generic/math-type-macros-float128.h: Include
11553 <math-nan-payload-float128.h>.
11554 * sysdeps/generic/math-type-macros-ldouble.h: Include
11555 <math-nan-payload-ldouble.h>. Include <math/math-svid-compat.h>
11556 instead of <math-svid-compat.h>.
11557 * sysdeps/generic/math-type-macros.h: Document SET_NAN_PAYLOAD and
11558 check for definition.
11559 * sysdeps/ieee754/float128/strtod_nan_float128.h: Move to ...
11560 * sysdeps/ieee754/float128/math-nan-payload-float128.h: ... here.
11561 Include <ieee754_float128.h>.
11562 (FLOAT): Remove definition.
11563 (SET_MANTISSA): Rename to ...
11564 (SET_NAN_PAYLOAD): ... this.
11565 * sysdeps/ieee754/float128/strtof128_nan.c: Include
11566 <math-type-macros-float128.h> instead of <strtod_nan_float128.h>.
11567 Do not include <float128_private.h>.
11568 * sysdeps/ieee754/float128/wcstof128_nan.c: Likewise.
11569 * sysdeps/ieee754/ldbl-128/strtod_nan_ldouble.h: Move to ...
11570 * sysdeps/ieee754/ldbl-128/math-nan-payload-ldouble.h: ... here.
11571 (FLOAT): Remove definition.
11572 (SET_MANTISSA): Rename to ...
11573 (SET_NAN_PAYLOAD): ... this.
11574 * sysdeps/ieee754/ldbl-128ibm/strtod_nan_ldouble.h: Move to ...
11575 * sysdeps/ieee754/ldbl-128ibm/math-nan-payload-ldouble.h: ... here.
11576 (FLOAT): Remove definition.
11577 (SET_MANTISSA): Rename to ...
11578 (SET_NAN_PAYLOAD): ... this.
11579 * sysdeps/ieee754/ldbl-96/strtod_nan_ldouble.h: Move to ...
11580 * sysdeps/ieee754/ldbl-96/math-nan-payload-ldouble.h: ... here.
11581 (FLOAT): Remove definition.
11582 (SET_MANTISSA): Rename to ...
11583 (SET_NAN_PAYLOAD): ... this.
11584 * wcsmbs/wcstod_nan.c: Include <math-type-macros-double.h> instead
11585 of "../stdlib/strtod_nan_double.h".
11586 * wcsmbs/wcstof_nan.c: Include <math-type-macros-float.h> instead
11587 of "../stdlib/strtod_nan_float.h".
11588 * wcsmbs/wcstold_nan.c: Include <math-type-macros-ldouble.h>
11589 instead of "../stdlib/strtod_nan_ldouble.h".
11590 * manual/arith.texi (Parsing of Floats): Adjust comment.
11592 2018-05-16 Joseph Myers <joseph@codesourcery.com>
11594 * math/Makefile (libm-narrow-fns): Add mul.
11595 (libm-test-funcs-narrow): Likewise.
11596 * math/Versions (GLIBC_2.28): Add narrowing multiply functions.
11597 * math/bits/mathcalls-narrow.h (mul): Use __MATHCALL_NARROW.
11598 * math/gen-auto-libm-tests.c (test_functions): Add mul.
11599 * math/math-narrow.h (CHECK_NARROW_MUL): New macro.
11600 (NARROW_MUL_ROUND_TO_ODD): Likewise.
11601 (NARROW_MUL_TRIVIAL): Likewise.
11602 * soft-fp/op-common.h (FP_TRUNC_COOKED): Likewise.
11603 * sysdeps/ieee754/float128/float128_private.h (__fmull): New
11605 (__dmull): Likewise.
11606 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add fmul and
11608 (CFLAGS-nldbl-dmul.c): New variable.
11609 (CFLAGS-nldbl-fmul.c): Likewise.
11610 * sysdeps/ieee754/ldbl-opt/Versions (GLIBC_2.28): Add
11612 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl_dmull): New
11614 * manual/arith.texi (Misc FP Arithmetic): Document fmul, fmull,
11615 dmull, fMmulfN, fMmulfNx, fMxmulfN and fMxmulfNx.
11616 * math/auto-libm-test-in: Add tests of mul.
11617 * math/auto-libm-test-out-narrow-mul: New generated file.
11618 * math/libm-test-narrow-mul.inc: New file.
11619 * sysdeps/i386/fpu/s_f32xmulf64.c: Likewise.
11620 * sysdeps/ieee754/dbl-64/s_f32xmulf64.c: Likewise.
11621 * sysdeps/ieee754/dbl-64/s_fmul.c: Likewise.
11622 * sysdeps/ieee754/float128/s_f32mulf128.c: Likewise.
11623 * sysdeps/ieee754/float128/s_f64mulf128.c: Likewise.
11624 * sysdeps/ieee754/float128/s_f64xmulf128.c: Likewise.
11625 * sysdeps/ieee754/ldbl-128/s_dmull.c: Likewise.
11626 * sysdeps/ieee754/ldbl-128/s_f64xmulf128.c: Likewise.
11627 * sysdeps/ieee754/ldbl-128/s_fmull.c: Likewise.
11628 * sysdeps/ieee754/ldbl-128ibm/s_dmull.c: Likewise.
11629 * sysdeps/ieee754/ldbl-128ibm/s_fmull.c: Likewise.
11630 * sysdeps/ieee754/ldbl-96/s_dmull.c: Likewise.
11631 * sysdeps/ieee754/ldbl-96/s_fmull.c: Likewise.
11632 * sysdeps/ieee754/ldbl-opt/nldbl-dmul.c: Likewise.
11633 * sysdeps/ieee754/ldbl-opt/nldbl-fmul.c: Likewise.
11634 * sysdeps/ieee754/soft-fp/s_dmull.c: Likewise.
11635 * sysdeps/ieee754/soft-fp/s_fmul.c: Likewise.
11636 * sysdeps/ieee754/soft-fp/s_fmull.c: Likewise.
11637 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
11638 * sysdeps/mach/hurd/i386/libm.abilist: Likewise.
11639 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
11640 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
11641 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
11642 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
11643 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
11644 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
11645 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
11646 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
11647 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
11648 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
11649 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
11650 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
11651 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Likewise.
11652 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Likewise.
11653 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Likewise.
11654 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Likewise.
11655 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
11656 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
11657 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
11658 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
11659 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
11660 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
11661 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
11662 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
11664 2018-05-14 H.J. Lu <hongjiu.lu@intel.com>
11666 * sysdeps/i386/crti.S (_init): Replace PREINIT_FUNCTION@PLT
11667 with *%eax in call.
11669 2018-05-14 H.J. Lu <hongjiu.lu@intel.com>
11671 * sysdeps/i386/ldsodefs.h: Removed.
11672 * sysdeps/x86_64/ldsodefs.h: Moved to ...
11673 * sysdeps/x86/ldsodefs.h: This.
11674 (La_i86_regs): New.
11675 (La_i86_retval): Likewise.
11676 (ARCH_PLTENTER_MEMBERS): Add i86_gnu_pltenter.
11677 (ARCH_PLTEXIT_MEMBERS): i86_gnu_pltexit.
11679 2018-05-14 H.J. Lu <hongjiu.lu@intel.com>
11681 * sysdeps/x86_64/multiarch/strlen-avx2.S (STRLEN): Remove the
11684 2018-05-13 Alan Modra <amodra@gmail.com>
11686 * sysdeps/hppa/dl-machine.h (elf_machine_rela): Add
11687 R_PARISC_TLS_DTPOFF32 reloc addend.
11689 2018-05-11 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
11691 * bits/floatn-common.h: Define __HAVE_FLOAT128_UNLIKE_LDBL.
11692 * math/math.h: Restrict the prototype definition for the functions
11693 issignaling(_Float128) and iszero(_Float128); and template
11694 __iseqsig_type<_Float128>, from __HAVE_DISTINCT_FLOAT128 to
11695 __HAVE_FLOAT128_UNLIKE_LDBL.
11696 * sysdeps/powerpc/bits/floatn.h [__HAVE_FLOAT128
11697 && (!__GNUC_PREREQ (7, 0) || defined __cplusplus)
11698 && __LDBL_MANT_DIG__ == 113]: Use long double suffix for
11699 __f128() constants; define the type _Float128 as long double;
11700 and reuse long double in __CFLOAT128.
11702 2018-05-11 Joseph Myers <joseph@codesourcery.com>
11704 * sysdeps/generic/math_private.h: Do not include
11706 * stdlib/strtod_l.c: Include <math-barriers.h> instead of
11708 * math/fromfp.h: Include <math-barriers.h>.
11709 * math/math-narrow.h: Likewise.
11710 * math/s_nextafter.c: Likewise.
11711 * math/s_nexttowardf.c: Likewise.
11712 * sysdeps/aarch64/fpu/s_llrint.c: Likewise.
11713 * sysdeps/aarch64/fpu/s_llrintf.c: Likewise.
11714 * sysdeps/aarch64/fpu/s_lrint.c: Likewise.
11715 * sysdeps/aarch64/fpu/s_lrintf.c: Likewise.
11716 * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
11717 * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
11718 * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
11719 * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
11720 * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
11721 * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
11722 * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
11723 * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
11724 * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
11725 * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
11726 * sysdeps/ieee754/dbl-64/s_fma.c: Likewise.
11727 * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
11728 * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
11729 * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
11730 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Likewise.
11731 * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
11732 * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
11733 * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
11734 * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
11735 * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
11736 * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
11737 * sysdeps/ieee754/k_standardl.c: Likewise.
11738 * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
11739 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
11740 * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
11741 * sysdeps/ieee754/ldbl-128/s_fmal.c: Likewise.
11742 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
11743 * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
11744 * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
11745 * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
11746 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
11747 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
11748 * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
11749 * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
11750 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
11751 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
11752 * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
11753 * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
11754 * sysdeps/ieee754/ldbl-96/s_fma.c: Likewise.
11755 * sysdeps/ieee754/ldbl-96/s_fmal.c: Likewise.
11756 * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
11757 * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
11758 * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c: Likewise.
11759 * sysdeps/m68k/m680x0/fpu/s_nextafterl.c: Likewise.
11761 2018-05-11 Florian Weimer <fweimer@redhat.com>
11763 Use 64-bit epoch values in the time zone file parser.
11764 * include/time.h (internal_time_t): Define.
11765 (__tzfile_compute): Use it.
11766 * time/tzfile.c (struct leap): Use internal_time_t for epoch
11768 (transitions): Switch to internal_time_t.
11769 (__tzfile_read): Likewise. Remove code dealing with 4-byte time_t
11771 (__tzfile_compute): Use internal_time_t for timer argument. Check
11772 for truncation before calling __offtime.
11774 2018-05-11 Florian Weimer <fweimer@redhat.com>
11777 * include/rpc/clnt.h (rpc_createerr): Declare hidden alias.
11778 * include/rpc/svc.h (svc_pollfd, svc_max_pollfd, svc_fdset):
11780 * sunrpc/rpc_common.c (svc_fdset, rpc_createerr, svc_pollfd)
11781 (svc_max_pollfd): Add nocommon attribute and hidden alias. Do not
11782 export without --enable-obsolete-rpc.
11783 * sunrpc/svcauth_des.c (svcauthdes_stats): Turn into compatibility
11784 symbol. This should not have been exported, ever.
11786 2018-05-11 Rafal Luzynski <digitalfreak@lingonborough.com>
11789 * localedata/locales/gd_GB (abmon): Fix typo in May:
11790 "Mhàrt" -> "Cèit". Adjust the comment according to the change.
11792 2018-05-11 Siddhesh Poyarekar <siddhesh@sourceware.org>
11794 * sysdeps/aarch64/multiarch/memcpy_falkor.S (__memcpy_falkor):
11795 Use multiple registers to copy data in loop tail.
11797 * sysdeps/aarch64/multiarch/memmove_falkor.S
11798 (__memmove_falkor): Use multiple registers to move data in
11801 2018-05-10 Joseph Myers <joseph@codesourcery.com>
11803 * math/math-underflow.h: New file.
11804 * sysdeps/generic/math_private.h: Do not include <float.h>.
11805 (fabs_tg): Remove macro. Moved to math-underflow.h.
11806 (min_of_type_f): Likewise.
11807 (min_of_type_): Likewise.
11808 (min_of_type_l): Likewise.
11809 (min_of_type_f128): Likewise.
11810 (min_of_type): Likewise.
11811 (math_check_force_underflow): Likewise.
11812 (math_check_force_underflow_nonneg): Likewise.
11813 (math_check_force_underflow_complex): Likewise.
11814 * math/e_exp2_template.c: Include <math-underflow.h>.
11815 * math/k_casinh_template.c: Likewise.
11816 * math/s_catan_template.c: Likewise.
11817 * math/s_catanh_template.c: Likewise.
11818 * math/s_ccosh_template.c: Likewise.
11819 * math/s_cexp_template.c: Likewise.
11820 * math/s_clog10_template.c: Likewise.
11821 * math/s_clog_template.c: Likewise.
11822 * math/s_csin_template.c: Likewise.
11823 * math/s_csinh_template.c: Likewise.
11824 * math/s_csqrt_template.c: Likewise.
11825 * math/s_ctan_template.c: Likewise.
11826 * math/s_ctanh_template.c: Likewise.
11827 * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
11828 * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
11829 * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
11830 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
11831 * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
11832 * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
11833 * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
11834 * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
11835 * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
11836 * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
11837 * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
11838 * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
11839 * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
11840 * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
11841 * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
11842 * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
11843 * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
11844 * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
11845 * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
11846 * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
11847 * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
11848 * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
11849 * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
11850 * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
11851 * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
11852 * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
11853 * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
11854 * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
11855 * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
11856 * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
11857 * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
11858 * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
11859 * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
11860 * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
11861 * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
11862 * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Likewise.
11863 * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
11864 * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
11865 * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
11866 * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
11867 * sysdeps/ieee754/ldbl-128/k_sincosl.c: Likewise.
11868 * sysdeps/ieee754/ldbl-128/k_sinl.c: Likewise.
11869 * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
11870 * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
11871 * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
11872 * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
11873 * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
11874 * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
11875 * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
11876 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
11877 * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
11878 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Likewise.
11879 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
11880 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c: Likewise.
11881 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
11882 * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
11883 * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
11884 * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
11885 * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
11886 * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
11887 * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
11888 * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Likewise.
11889 * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
11890 * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
11891 * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
11892 * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
11893 * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
11894 * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Likewise.
11895 * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
11896 * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
11897 * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
11898 * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
11899 * sysdeps/ieee754/ldbl-96/k_sinl.c: Likewise.
11900 * sysdeps/ieee754/ldbl-96/k_tanl.c: Likewise.
11901 * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
11902 * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
11903 * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
11904 * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
11905 * sysdeps/x86/fpu/powl_helper.c: Likewise.
11906 * sysdeps/ieee754/dbl-64/s_nextup.c: Include <float.h>.
11907 * sysdeps/ieee754/flt-32/s_nextupf.c: Likewise.
11908 * sysdeps/ieee754/ldbl-128/s_nextupl.c: Likewise.
11909 * sysdeps/ieee754/ldbl-128ibm/s_nextupl.c: Likewise.
11910 * sysdeps/ieee754/ldbl-96/s_nextupl.c: Likewise.
11912 2018-05-09 Joseph Myers <joseph@codesourcery.com>
11914 * sysdeps/generic/math-barriers.h: New file.
11915 * sysdeps/generic/math_private.h [!math_opt_barrier]
11916 (math_opt_barrier): Move to math-barriers.h.
11917 [!math_opt_barrier] (math_force_eval): Likewise.
11918 * sysdeps/aarch64/fpu/math-barriers.h: New file.
11919 * sysdeps/aarch64/fpu/math_private.h (math_opt_barrier): Move to
11921 (math_force_eval): Likewise.
11922 * sysdeps/alpha/fpu/math-barriers.h: New file.
11923 * sysdeps/alpha/fpu/math_private.h (math_opt_barrier): Move to
11925 (math_force_eval): Likewise.
11926 * sysdeps/x86/fpu/math-barriers.h: New file.
11927 * sysdeps/i386/fpu/fenv_private.h (math_opt_barrier): Move to
11929 (math_force_eval): Likewise.
11930 * sysdeps/m68k/m680x0/fpu/math_private.h: Move to....
11931 * sysdeps/m68k/m680x0/fpu/math-barriers.h: ... here. Adjust
11932 multiple-include guard for rename.
11933 * sysdeps/powerpc/fpu/math-barriers.h: New file.
11934 * sysdeps/powerpc/fpu/math_private.h (math_opt_barrier): Move to
11936 (math_force_eval): Likewise.
11938 2018-05-09 Paul Pluzhnikov <ppluzhnikov@google.com>
11942 * stdlib/canonicalize.c (__realpath): Fix overflow in path length
11944 * stdlib/Makefile (test-bz22786): New test.
11945 * stdlib/test-bz22786.c: New test.
11947 2018-05-09 Joseph Myers <joseph@codesourcery.com>
11949 * include/math-narrow-eval.h: New file. Contents moved from ....
11950 * sysdeps/generic/math_private.h: ... here.
11951 (math_narrow_eval): Remove macro. Moved to math-narrow-eval.h.
11952 [FLT_EVAL_METHOD != 0] (excess_precision): Likewise.
11953 * math/s_fdim_template.c: Include <math-narrow-eval.h>.
11954 * stdlib/strtod_l.c: Likewise.
11955 * sysdeps/i386/fpu/s_f32xaddf64.c: Likewise.
11956 * sysdeps/i386/fpu/s_f32xsubf64.c: Likewise.
11957 * sysdeps/i386/fpu/s_fdim.c: Likewise.
11958 * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
11959 * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
11960 * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
11961 * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
11962 * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
11963 * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
11964 * sysdeps/ieee754/dbl-64/gamma_productf.c: Likewise.
11965 * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
11966 * sysdeps/ieee754/dbl-64/lgamma_neg.c: Likewise.
11967 * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
11968 * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
11969 * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
11970 * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
11971 * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
11972 * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
11973 * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
11974 * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
11975 * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
11976 * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
11977 * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
11978 * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
11979 * sysdeps/ieee754/flt-32/lgamma_negf.c: Likewise.
11980 * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
11981 * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
11982 * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
11983 * sysdeps/ieee754/ldbl-96/gamma_product.c: Likewise.
11985 2018-05-08 Andreas Schwab <schwab@suse.de>
11987 * sysdeps/nptl/internaltypes.h: Fix comment.
11989 2018-05-07 H.J. Lu <hongjiu.lu@intel.com>
11991 * sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S
11992 (MEMSET_SYMBOL (__memset, erms)): Mark the debugger symbol as
11995 2018-05-07 Siddhesh Poyarekar <siddhesh@sourceware.org>
11997 * benchtests/bench-memcpy-walk.c (test_main): Move declaration
11998 of I into loop header.
11999 * benchtests/bench-memmove-walk.c
12000 (test_main): Likewise.
12002 2018-05-07 Alexandre Oliva <oliva@gnu.org>
12005 2018-04-30 Raymond Nicholson <rain1@airmail.cc>
12006 * manual/startup.texi (Aborting a Program): Remove inappropriate joke.
12008 2018-05-05 Paul Pluzhnikov <ppluzhnikov@google.com>
12011 * elf/dl-load.c (open_verify): Fix stack overflow.
12012 * elf/Makefile (tst-big-note): New test.
12013 * elf/tst-big-note-lib.S: New.
12014 * elf/tst-big-note.c: New.
12016 2018-05-04 Joseph Myers <joseph@codesourcery.com>
12018 * scripts/abilist.awk: Ignore absolute symbols.
12019 * sysdeps/mach/hurd/i386/ld.abilist: Remove absolute symbols.
12020 * sysdeps/mach/hurd/i386/libBrokenLocale.abilist: Likewise.
12021 * sysdeps/mach/hurd/i386/libanl.abilist: Likewise.
12022 * sysdeps/mach/hurd/i386/libc.abilist: Likewise.
12023 * sysdeps/mach/hurd/i386/libcrypt.abilist: Likewise.
12024 * sysdeps/mach/hurd/i386/libdl.abilist: Likewise.
12025 * sysdeps/mach/hurd/i386/libm.abilist: Likewise.
12026 * sysdeps/mach/hurd/i386/libnsl.abilist: Likewise.
12027 * sysdeps/mach/hurd/i386/libpthread.abilist: Likewise.
12028 * sysdeps/mach/hurd/i386/libresolv.abilist: Likewise.
12029 * sysdeps/mach/hurd/i386/librt.abilist: Likewise.
12030 * sysdeps/mach/hurd/i386/libutil.abilist: Likewise.
12031 * sysdeps/unix/sysv/linux/aarch64/ld.abilist: Likewise.
12032 * sysdeps/unix/sysv/linux/aarch64/libBrokenLocale.abilist: Likewise.
12033 * sysdeps/unix/sysv/linux/aarch64/libanl.abilist: Likewise.
12034 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Likewise.
12035 * sysdeps/unix/sysv/linux/aarch64/libcrypt.abilist: Likewise.
12036 * sysdeps/unix/sysv/linux/aarch64/libdl.abilist: Likewise.
12037 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
12038 * sysdeps/unix/sysv/linux/aarch64/libnsl.abilist: Likewise.
12039 * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist: Likewise.
12040 * sysdeps/unix/sysv/linux/aarch64/libresolv.abilist: Likewise.
12041 * sysdeps/unix/sysv/linux/aarch64/librt.abilist: Likewise.
12042 * sysdeps/unix/sysv/linux/aarch64/libthread_db.abilist: Likewise.
12043 * sysdeps/unix/sysv/linux/aarch64/libutil.abilist: Likewise.
12044 * sysdeps/unix/sysv/linux/alpha/ld.abilist: Likewise.
12045 * sysdeps/unix/sysv/linux/alpha/libBrokenLocale.abilist: Likewise.
12046 * sysdeps/unix/sysv/linux/alpha/libanl.abilist: Likewise.
12047 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
12048 * sysdeps/unix/sysv/linux/alpha/libcrypt.abilist: Likewise.
12049 * sysdeps/unix/sysv/linux/alpha/libdl.abilist: Likewise.
12050 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
12051 * sysdeps/unix/sysv/linux/alpha/libnsl.abilist: Likewise.
12052 * sysdeps/unix/sysv/linux/alpha/libpthread.abilist: Likewise.
12053 * sysdeps/unix/sysv/linux/alpha/libresolv.abilist: Likewise.
12054 * sysdeps/unix/sysv/linux/alpha/librt.abilist: Likewise.
12055 * sysdeps/unix/sysv/linux/alpha/libthread_db.abilist: Likewise.
12056 * sysdeps/unix/sysv/linux/alpha/libutil.abilist: Likewise.
12057 * sysdeps/unix/sysv/linux/arm/ld.abilist: Likewise.
12058 * sysdeps/unix/sysv/linux/arm/libBrokenLocale.abilist: Likewise.
12059 * sysdeps/unix/sysv/linux/arm/libanl.abilist: Likewise.
12060 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
12061 * sysdeps/unix/sysv/linux/arm/libcrypt.abilist: Likewise.
12062 * sysdeps/unix/sysv/linux/arm/libdl.abilist: Likewise.
12063 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
12064 * sysdeps/unix/sysv/linux/arm/libnsl.abilist: Likewise.
12065 * sysdeps/unix/sysv/linux/arm/libpthread.abilist: Likewise.
12066 * sysdeps/unix/sysv/linux/arm/libresolv.abilist: Likewise.
12067 * sysdeps/unix/sysv/linux/arm/librt.abilist: Likewise.
12068 * sysdeps/unix/sysv/linux/arm/libthread_db.abilist: Likewise.
12069 * sysdeps/unix/sysv/linux/arm/libutil.abilist: Likewise.
12070 * sysdeps/unix/sysv/linux/hppa/ld.abilist: Likewise.
12071 * sysdeps/unix/sysv/linux/hppa/libBrokenLocale.abilist: Likewise.
12072 * sysdeps/unix/sysv/linux/hppa/libanl.abilist: Likewise.
12073 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
12074 * sysdeps/unix/sysv/linux/hppa/libcrypt.abilist: Likewise.
12075 * sysdeps/unix/sysv/linux/hppa/libdl.abilist: Likewise.
12076 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
12077 * sysdeps/unix/sysv/linux/hppa/libnsl.abilist: Likewise.
12078 * sysdeps/unix/sysv/linux/hppa/libpthread.abilist: Likewise.
12079 * sysdeps/unix/sysv/linux/hppa/libresolv.abilist: Likewise.
12080 * sysdeps/unix/sysv/linux/hppa/librt.abilist: Likewise.
12081 * sysdeps/unix/sysv/linux/hppa/libthread_db.abilist: Likewise.
12082 * sysdeps/unix/sysv/linux/hppa/libutil.abilist: Likewise.
12083 * sysdeps/unix/sysv/linux/i386/ld.abilist: Likewise.
12084 * sysdeps/unix/sysv/linux/i386/libBrokenLocale.abilist: Likewise.
12085 * sysdeps/unix/sysv/linux/i386/libanl.abilist: Likewise.
12086 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
12087 * sysdeps/unix/sysv/linux/i386/libcrypt.abilist: Likewise.
12088 * sysdeps/unix/sysv/linux/i386/libdl.abilist: Likewise.
12089 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
12090 * sysdeps/unix/sysv/linux/i386/libnsl.abilist: Likewise.
12091 * sysdeps/unix/sysv/linux/i386/libpthread.abilist: Likewise.
12092 * sysdeps/unix/sysv/linux/i386/libresolv.abilist: Likewise.
12093 * sysdeps/unix/sysv/linux/i386/librt.abilist: Likewise.
12094 * sysdeps/unix/sysv/linux/i386/libthread_db.abilist: Likewise.
12095 * sysdeps/unix/sysv/linux/i386/libutil.abilist: Likewise.
12096 * sysdeps/unix/sysv/linux/ia64/ld.abilist: Likewise.
12097 * sysdeps/unix/sysv/linux/ia64/libBrokenLocale.abilist: Likewise.
12098 * sysdeps/unix/sysv/linux/ia64/libanl.abilist: Likewise.
12099 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
12100 * sysdeps/unix/sysv/linux/ia64/libcrypt.abilist: Likewise.
12101 * sysdeps/unix/sysv/linux/ia64/libdl.abilist: Likewise.
12102 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
12103 * sysdeps/unix/sysv/linux/ia64/libnsl.abilist: Likewise.
12104 * sysdeps/unix/sysv/linux/ia64/libpthread.abilist: Likewise.
12105 * sysdeps/unix/sysv/linux/ia64/libresolv.abilist: Likewise.
12106 * sysdeps/unix/sysv/linux/ia64/librt.abilist: Likewise.
12107 * sysdeps/unix/sysv/linux/ia64/libthread_db.abilist: Likewise.
12108 * sysdeps/unix/sysv/linux/ia64/libutil.abilist: Likewise.
12109 * sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist: Likewise.
12110 * sysdeps/unix/sysv/linux/m68k/coldfire/libBrokenLocale.abilist:
12112 * sysdeps/unix/sysv/linux/m68k/coldfire/libanl.abilist: Likewise.
12113 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
12114 * sysdeps/unix/sysv/linux/m68k/coldfire/libcrypt.abilist: Likewise.
12115 * sysdeps/unix/sysv/linux/m68k/coldfire/libdl.abilist: Likewise.
12116 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
12117 * sysdeps/unix/sysv/linux/m68k/coldfire/libnsl.abilist: Likewise.
12118 * sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist: Likewise.
12119 * sysdeps/unix/sysv/linux/m68k/coldfire/libresolv.abilist: Likewise.
12120 * sysdeps/unix/sysv/linux/m68k/coldfire/librt.abilist: Likewise.
12121 * sysdeps/unix/sysv/linux/m68k/coldfire/libthread_db.abilist: Likewise.
12122 * sysdeps/unix/sysv/linux/m68k/coldfire/libutil.abilist: Likewise.
12123 * sysdeps/unix/sysv/linux/m68k/m680x0/ld.abilist: Likewise.
12124 * sysdeps/unix/sysv/linux/m68k/m680x0/libBrokenLocale.abilist:
12126 * sysdeps/unix/sysv/linux/m68k/m680x0/libanl.abilist: Likewise.
12127 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
12128 * sysdeps/unix/sysv/linux/m68k/m680x0/libcrypt.abilist: Likewise.
12129 * sysdeps/unix/sysv/linux/m68k/m680x0/libdl.abilist: Likewise.
12130 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
12131 * sysdeps/unix/sysv/linux/m68k/m680x0/libnsl.abilist: Likewise.
12132 * sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist: Likewise.
12133 * sysdeps/unix/sysv/linux/m68k/m680x0/libresolv.abilist: Likewise.
12134 * sysdeps/unix/sysv/linux/m68k/m680x0/librt.abilist: Likewise.
12135 * sysdeps/unix/sysv/linux/m68k/m680x0/libthread_db.abilist: Likewise.
12136 * sysdeps/unix/sysv/linux/m68k/m680x0/libutil.abilist: Likewise.
12137 * sysdeps/unix/sysv/linux/microblaze/ld.abilist: Likewise.
12138 * sysdeps/unix/sysv/linux/microblaze/libBrokenLocale.abilist: Likewise.
12139 * sysdeps/unix/sysv/linux/microblaze/libanl.abilist: Likewise.
12140 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
12141 * sysdeps/unix/sysv/linux/microblaze/libcrypt.abilist: Likewise.
12142 * sysdeps/unix/sysv/linux/microblaze/libdl.abilist: Likewise.
12143 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
12144 * sysdeps/unix/sysv/linux/microblaze/libnsl.abilist: Likewise.
12145 * sysdeps/unix/sysv/linux/microblaze/libpthread.abilist: Likewise.
12146 * sysdeps/unix/sysv/linux/microblaze/libresolv.abilist: Likewise.
12147 * sysdeps/unix/sysv/linux/microblaze/librt.abilist: Likewise.
12148 * sysdeps/unix/sysv/linux/microblaze/libthread_db.abilist: Likewise.
12149 * sysdeps/unix/sysv/linux/microblaze/libutil.abilist: Likewise.
12150 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
12151 * sysdeps/unix/sysv/linux/mips/mips32/ld.abilist: Likewise.
12152 * sysdeps/unix/sysv/linux/mips/mips32/libBrokenLocale.abilist:
12154 * sysdeps/unix/sysv/linux/mips/mips32/libanl.abilist: Likewise.
12155 * sysdeps/unix/sysv/linux/mips/mips32/libcidn.abilist: Likewise.
12156 * sysdeps/unix/sysv/linux/mips/mips32/libcrypt.abilist: Likewise.
12157 * sysdeps/unix/sysv/linux/mips/mips32/libdl.abilist: Likewise.
12158 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
12159 * sysdeps/unix/sysv/linux/mips/mips32/libnsl.abilist: Likewise.
12160 * sysdeps/unix/sysv/linux/mips/mips32/libnss_compat.abilist: Likewise.
12161 * sysdeps/unix/sysv/linux/mips/mips32/libnss_db.abilist: Likewise.
12162 * sysdeps/unix/sysv/linux/mips/mips32/libnss_dns.abilist: Likewise.
12163 * sysdeps/unix/sysv/linux/mips/mips32/libnss_files.abilist: Likewise.
12164 * sysdeps/unix/sysv/linux/mips/mips32/libnss_hesiod.abilist: Likewise.
12165 * sysdeps/unix/sysv/linux/mips/mips32/libnss_nis.abilist: Likewise.
12166 * sysdeps/unix/sysv/linux/mips/mips32/libnss_nisplus.abilist: Likewise.
12167 * sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist: Likewise.
12168 * sysdeps/unix/sysv/linux/mips/mips32/libresolv.abilist: Likewise.
12169 * sysdeps/unix/sysv/linux/mips/mips32/librt.abilist: Likewise.
12170 * sysdeps/unix/sysv/linux/mips/mips32/libthread_db.abilist: Likewise.
12171 * sysdeps/unix/sysv/linux/mips/mips32/libutil.abilist: Likewise.
12172 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: Likewise.
12173 * sysdeps/unix/sysv/linux/mips/mips64/libBrokenLocale.abilist:
12175 * sysdeps/unix/sysv/linux/mips/mips64/libanl.abilist: Likewise.
12176 * sysdeps/unix/sysv/linux/mips/mips64/libcrypt.abilist: Likewise.
12177 * sysdeps/unix/sysv/linux/mips/mips64/libdl.abilist: Likewise.
12178 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
12179 * sysdeps/unix/sysv/linux/mips/mips64/libnsl.abilist: Likewise.
12180 * sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist: Likewise.
12181 * sysdeps/unix/sysv/linux/mips/mips64/librt.abilist: Likewise.
12182 * sysdeps/unix/sysv/linux/mips/mips64/libthread_db.abilist: Likewise.
12183 * sysdeps/unix/sysv/linux/mips/mips64/libutil.abilist: Likewise.
12184 * sysdeps/unix/sysv/linux/mips/mips64/n32/ld.abilist: Likewise.
12185 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
12186 * sysdeps/unix/sysv/linux/mips/mips64/n32/libresolv.abilist: Likewise.
12187 * sysdeps/unix/sysv/linux/mips/mips64/n64/ld.abilist: Likewise.
12188 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
12189 * sysdeps/unix/sysv/linux/mips/mips64/n64/libresolv.abilist: Likewise.
12190 * sysdeps/unix/sysv/linux/nios2/ld.abilist: Likewise.
12191 * sysdeps/unix/sysv/linux/nios2/libBrokenLocale.abilist: Likewise.
12192 * sysdeps/unix/sysv/linux/nios2/libanl.abilist: Likewise.
12193 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
12194 * sysdeps/unix/sysv/linux/nios2/libcrypt.abilist: Likewise.
12195 * sysdeps/unix/sysv/linux/nios2/libdl.abilist: Likewise.
12196 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
12197 * sysdeps/unix/sysv/linux/nios2/libnsl.abilist: Likewise.
12198 * sysdeps/unix/sysv/linux/nios2/libpthread.abilist: Likewise.
12199 * sysdeps/unix/sysv/linux/nios2/libresolv.abilist: Likewise.
12200 * sysdeps/unix/sysv/linux/nios2/librt.abilist: Likewise.
12201 * sysdeps/unix/sysv/linux/nios2/libthread_db.abilist: Likewise.
12202 * sysdeps/unix/sysv/linux/nios2/libutil.abilist: Likewise.
12203 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist: Likewise.
12204 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Likewise.
12205 * sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist: Likewise.
12206 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libBrokenLocale.abilist:
12208 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libanl.abilist: Likewise.
12209 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libcrypt.abilist: Likewise.
12210 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libdl.abilist: Likewise.
12211 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libnsl.abilist: Likewise.
12212 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist:
12214 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libresolv.abilist:
12216 * sysdeps/unix/sysv/linux/powerpc/powerpc32/librt.abilist: Likewise.
12217 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libthread_db.abilist:
12219 * sysdeps/unix/sysv/linux/powerpc/powerpc32/libutil.abilist: Likewise.
12220 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
12222 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
12224 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist: Likewise.
12225 * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist: Likewise.
12226 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale-le.abilist:
12228 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale.abilist:
12230 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl-le.abilist:
12232 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl.abilist: Likewise.
12233 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist: Likewise.
12234 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: Likewise.
12235 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt-le.abilist:
12237 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt.abilist: Likewise.
12238 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl-le.abilist: Likewise.
12239 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl.abilist: Likewise.
12240 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Likewise.
12241 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Likewise.
12242 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl-le.abilist:
12244 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl.abilist: Likewise.
12245 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread-le.abilist:
12247 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread.abilist:
12249 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv-le.abilist:
12251 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv.abilist:
12253 * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt-le.abilist: Likewise.
12254 * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt.abilist: Likewise.
12255 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db-le.abilist:
12257 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db.abilist:
12259 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil-le.abilist:
12261 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil.abilist: Likewise.
12262 * sysdeps/unix/sysv/linux/riscv/rv64/ld.abilist: Likewise.
12263 * sysdeps/unix/sysv/linux/riscv/rv64/libBrokenLocale.abilist:
12265 * sysdeps/unix/sysv/linux/riscv/rv64/libanl.abilist: Likewise.
12266 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist: Likewise.
12267 * sysdeps/unix/sysv/linux/riscv/rv64/libcrypt.abilist: Likewise.
12268 * sysdeps/unix/sysv/linux/riscv/rv64/libdl.abilist: Likewise.
12269 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
12270 * sysdeps/unix/sysv/linux/riscv/rv64/libnsl.abilist: Likewise.
12271 * sysdeps/unix/sysv/linux/riscv/rv64/libpthread.abilist: Likewise.
12272 * sysdeps/unix/sysv/linux/riscv/rv64/libresolv.abilist: Likewise.
12273 * sysdeps/unix/sysv/linux/riscv/rv64/librt.abilist: Likewise.
12274 * sysdeps/unix/sysv/linux/riscv/rv64/libthread_db.abilist: Likewise.
12275 * sysdeps/unix/sysv/linux/riscv/rv64/libutil.abilist: Likewise.
12276 * sysdeps/unix/sysv/linux/s390/libanl.abilist: Likewise.
12277 * sysdeps/unix/sysv/linux/s390/s390-32/ld.abilist: Likewise.
12278 * sysdeps/unix/sysv/linux/s390/s390-32/libBrokenLocale.abilist:
12280 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
12281 * sysdeps/unix/sysv/linux/s390/s390-32/libcrypt.abilist: Likewise.
12282 * sysdeps/unix/sysv/linux/s390/s390-32/libdl.abilist: Likewise.
12283 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
12284 * sysdeps/unix/sysv/linux/s390/s390-32/libnsl.abilist: Likewise.
12285 * sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist: Likewise.
12286 * sysdeps/unix/sysv/linux/s390/s390-32/libresolv.abilist: Likewise.
12287 * sysdeps/unix/sysv/linux/s390/s390-32/librt.abilist: Likewise.
12288 * sysdeps/unix/sysv/linux/s390/s390-32/libthread_db.abilist: Likewise.
12289 * sysdeps/unix/sysv/linux/s390/s390-32/libutil.abilist: Likewise.
12290 * sysdeps/unix/sysv/linux/s390/s390-64/ld.abilist: Likewise.
12291 * sysdeps/unix/sysv/linux/s390/s390-64/libBrokenLocale.abilist:
12293 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
12294 * sysdeps/unix/sysv/linux/s390/s390-64/libcrypt.abilist: Likewise.
12295 * sysdeps/unix/sysv/linux/s390/s390-64/libdl.abilist: Likewise.
12296 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
12297 * sysdeps/unix/sysv/linux/s390/s390-64/libnsl.abilist: Likewise.
12298 * sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist: Likewise.
12299 * sysdeps/unix/sysv/linux/s390/s390-64/libresolv.abilist: Likewise.
12300 * sysdeps/unix/sysv/linux/s390/s390-64/librt.abilist: Likewise.
12301 * sysdeps/unix/sysv/linux/s390/s390-64/libthread_db.abilist: Likewise.
12302 * sysdeps/unix/sysv/linux/s390/s390-64/libutil.abilist: Likewise.
12303 * sysdeps/unix/sysv/linux/sh/ld.abilist: Likewise.
12304 * sysdeps/unix/sysv/linux/sh/libBrokenLocale.abilist: Likewise.
12305 * sysdeps/unix/sysv/linux/sh/libanl.abilist: Likewise.
12306 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
12307 * sysdeps/unix/sysv/linux/sh/libcrypt.abilist: Likewise.
12308 * sysdeps/unix/sysv/linux/sh/libdl.abilist: Likewise.
12309 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
12310 * sysdeps/unix/sysv/linux/sh/libnsl.abilist: Likewise.
12311 * sysdeps/unix/sysv/linux/sh/libpthread.abilist: Likewise.
12312 * sysdeps/unix/sysv/linux/sh/libresolv.abilist: Likewise.
12313 * sysdeps/unix/sysv/linux/sh/librt.abilist: Likewise.
12314 * sysdeps/unix/sysv/linux/sh/libthread_db.abilist: Likewise.
12315 * sysdeps/unix/sysv/linux/sh/libutil.abilist: Likewise.
12316 * sysdeps/unix/sysv/linux/sparc/sparc32/ld.abilist: Likewise.
12317 * sysdeps/unix/sysv/linux/sparc/sparc32/libBrokenLocale.abilist:
12319 * sysdeps/unix/sysv/linux/sparc/sparc32/libanl.abilist: Likewise.
12320 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
12321 * sysdeps/unix/sysv/linux/sparc/sparc32/libcrypt.abilist: Likewise.
12322 * sysdeps/unix/sysv/linux/sparc/sparc32/libdl.abilist: Likewise.
12323 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
12324 * sysdeps/unix/sysv/linux/sparc/sparc32/libnsl.abilist: Likewise.
12325 * sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist: Likewise.
12326 * sysdeps/unix/sysv/linux/sparc/sparc32/libresolv.abilist: Likewise.
12327 * sysdeps/unix/sysv/linux/sparc/sparc32/librt.abilist: Likewise.
12328 * sysdeps/unix/sysv/linux/sparc/sparc32/libthread_db.abilist: Likewise.
12329 * sysdeps/unix/sysv/linux/sparc/sparc32/libutil.abilist: Likewise.
12330 * sysdeps/unix/sysv/linux/sparc/sparc64/ld.abilist: Likewise.
12331 * sysdeps/unix/sysv/linux/sparc/sparc64/libBrokenLocale.abilist:
12333 * sysdeps/unix/sysv/linux/sparc/sparc64/libanl.abilist: Likewise.
12334 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
12335 * sysdeps/unix/sysv/linux/sparc/sparc64/libcrypt.abilist: Likewise.
12336 * sysdeps/unix/sysv/linux/sparc/sparc64/libdl.abilist: Likewise.
12337 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
12338 * sysdeps/unix/sysv/linux/sparc/sparc64/libnsl.abilist: Likewise.
12339 * sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist: Likewise.
12340 * sysdeps/unix/sysv/linux/sparc/sparc64/libresolv.abilist: Likewise.
12341 * sysdeps/unix/sysv/linux/sparc/sparc64/librt.abilist: Likewise.
12342 * sysdeps/unix/sysv/linux/sparc/sparc64/libthread_db.abilist: Likewise.
12343 * sysdeps/unix/sysv/linux/sparc/sparc64/libutil.abilist: Likewise.
12344 * sysdeps/unix/sysv/linux/x86_64/64/ld.abilist: Likewise.
12345 * sysdeps/unix/sysv/linux/x86_64/64/libBrokenLocale.abilist: Likewise.
12346 * sysdeps/unix/sysv/linux/x86_64/64/libanl.abilist: Likewise.
12347 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
12348 * sysdeps/unix/sysv/linux/x86_64/64/libcrypt.abilist: Likewise.
12349 * sysdeps/unix/sysv/linux/x86_64/64/libdl.abilist: Likewise.
12350 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
12351 * sysdeps/unix/sysv/linux/x86_64/64/libnsl.abilist: Likewise.
12352 * sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist: Likewise.
12353 * sysdeps/unix/sysv/linux/x86_64/64/libresolv.abilist: Likewise.
12354 * sysdeps/unix/sysv/linux/x86_64/64/librt.abilist: Likewise.
12355 * sysdeps/unix/sysv/linux/x86_64/64/libthread_db.abilist: Likewise.
12356 * sysdeps/unix/sysv/linux/x86_64/64/libutil.abilist: Likewise.
12357 * sysdeps/unix/sysv/linux/x86_64/libmvec.abilist: Likewise.
12358 * sysdeps/unix/sysv/linux/x86_64/x32/ld.abilist: Likewise.
12359 * sysdeps/unix/sysv/linux/x86_64/x32/libBrokenLocale.abilist: Likewise.
12360 * sysdeps/unix/sysv/linux/x86_64/x32/libanl.abilist: Likewise.
12361 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
12362 * sysdeps/unix/sysv/linux/x86_64/x32/libcrypt.abilist: Likewise.
12363 * sysdeps/unix/sysv/linux/x86_64/x32/libdl.abilist: Likewise.
12364 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
12365 * sysdeps/unix/sysv/linux/x86_64/x32/libnsl.abilist: Likewise.
12366 * sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist: Likewise.
12367 * sysdeps/unix/sysv/linux/x86_64/x32/libresolv.abilist: Likewise.
12368 * sysdeps/unix/sysv/linux/x86_64/x32/librt.abilist: Likewise.
12369 * sysdeps/unix/sysv/linux/x86_64/x32/libthread_db.abilist: Likewise.
12370 * sysdeps/unix/sysv/linux/x86_64/x32/libutil.abilist: Likewise.
12372 2018-05-04 Stefan Liebler <stli@linux.vnet.ibm.com>
12375 * sysdeps/nptl/lowlevellock.h (lll_wait_tid):
12376 Use atomic_load_acquire to load __tid.
12378 2018-05-02 H.J. Lu <hongjiu.lu@intel.com>
12380 * sysdeps/unix/sysv/linux/x86_64/swapcontext.S (__swapcontext):
12381 Restore the pointer into %rdx, after syscall and use %rdx,
12382 instead of %rsi, to restore context.
12384 2018-05-02 H.J. Lu <hongjiu.lu@intel.com>
12386 * sysdeps/unix/sysv/linux/x86_64/setcontext.S (__setcontext):
12387 Pop the pointer into %rdx after syscall and use %rdx, instead
12388 of %rsi, to restore context.
12390 2018-05-02 H.J. Lu <hongjiu.lu@intel.com>
12392 * nptl/pthread_create.c (START_THREAD_DEFN): Clear previous
12393 handlers after setjmp.
12394 * setjmp/longjmp.c (__libc_longjmp): Don't define alias if
12396 * sysdeps/unix/sysv/linux/x86/setjmpP.h: Include
12397 <libc-pointer-arith.h>.
12398 (_JUMP_BUF_SIGSET_BITS_PER_WORD): New.
12399 (_JUMP_BUF_SIGSET_NSIG): Changed to 96.
12400 (_JUMP_BUF_SIGSET_NWORDS): Changed to use ALIGN_UP and
12401 _JUMP_BUF_SIGSET_BITS_PER_WORD.
12402 * sysdeps/x86/Makefile (sysdep_routines): Add __longjmp_cancel.
12403 * sysdeps/x86/__longjmp_cancel.S: New file.
12404 * sysdeps/x86/longjmp.c: Likewise.
12405 * sysdeps/x86/nptl/pt-longjmp.c: Likewise.
12407 2018-05-02 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12409 * NEWS: Add ustat.h deprecation entry.
12410 * bits/ustat.h: Remove file.
12411 * misc/sys/ustat.h: Likewise.
12412 * misc/ustat.h: Likewise.
12413 * sysdeps/unix/sysv/linux/generic/ustat.c: Likewise.
12414 * misc/Makefile (headers): Remove ustat.h and sys/ustat.h.
12415 * misc/ustat.c (__ustat): Rename to __old_ustat and export only in
12416 compatibility mode.
12417 * sysdeps/unix/sysv/linux/ustat.c (__ustat): Likewise.
12418 * sysdeps/unix/sysv/linux/mips/ustat.c: Define DEV_TO_KDEV and use
12419 generic Linux implementation.
12421 2018-04-30 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
12423 * math/w_exp_compat.c: Replace hidden_def with libm_hidden_def..
12424 * math/w_expl_compat.c: Likewise.
12425 * math/w_exp_template.c: Likewise. Remove hidden_def_x.
12427 2018-04-30 Raymond Nicholson <rain1@airmail.cc>
12429 * manual/startup.texi (Aborting a Program): Remove inappropriate joke.
12431 2018-04-27 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12433 * sysdeps/unix/sysv/linux/arm/readahead.c: Remove file.
12434 * sysdeps/unix/sysv/linux/mips/mips32/readahead.c: Likewise.
12435 * sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list (readahead):
12437 * sysdeps/unix/sysv/linux/mips/mips64/n64/syscalls.list: Likewise.
12438 * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Likewise.
12439 * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
12440 * sysdeps/unix/sysv/linux/readahead.c (__readahead): Assume
12441 __NR_readahead existence, and use INLINE_SYSCALL_CALL, __ALIGNMENT_ARG,
12444 2018-04-27 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
12446 * math/e_exp2_template.c: Replace M_SUF (M_LN2) with M_MLIT (M_LN2).
12448 * math/w_acos_template.c: Replace M_SUF (fabs) with M_FABS.
12449 * math/w_asin_template.c: Likewise.
12450 * math/w_atanh_template.c: Likewise.
12452 2018-04-27 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
12454 * sysdeps/powerpc/preconfigure [machine == powerpc64] (machine): Define
12455 to powerpc/powerpc64/be for big-endian.
12456 [machine == powerpc64le]: Define to powerpc/powerpc64/le for
12459 * sysdeps/powerpc/powerpc64/power4/Implies: Move to powerpc64/be.
12460 * sysdeps/powerpc/powerpc64/power4/fpu/Implies: Likewise.
12461 * sysdeps/powerpc/powerpc64/power4/fpu/multiarch/Implies: Likewise.
12462 * sysdeps/powerpc/powerpc64/power4/multiarch/Implies: Likewise.
12463 * sysdeps/powerpc/powerpc64/power5+/Implies: Likewise.
12464 * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Likewise.
12465 * sysdeps/powerpc/powerpc64/power5+/fpu/multiarch/Implies: Likewise.
12466 * sysdeps/powerpc/powerpc64/power5+/multiarch/Implies: Likewise.
12467 * sysdeps/powerpc/powerpc64/power5/Implies: Likewise.
12468 * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Likewise.
12469 * sysdeps/powerpc/powerpc64/power5/fpu/multiarch/Implies: Likewise.
12470 * sysdeps/powerpc/powerpc64/power5/multiarch/Implies: Likewise.
12471 * sysdeps/powerpc/powerpc64/power6/Implies: Likewise.
12472 * sysdeps/powerpc/powerpc64/power6/fpu/Implies: Likewise.
12473 * sysdeps/powerpc/powerpc64/power6/fpu/multiarch/Implies: Likewise.
12474 * sysdeps/powerpc/powerpc64/power6/multiarch/Implies: Likewise.
12475 * sysdeps/powerpc/powerpc64/power6x/Implies: Likewise.
12476 * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: Likewise.
12477 * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: Likewise.
12478 * sysdeps/powerpc/powerpc64/power6x/multiarch/Implies: Likewise.
12479 * sysdeps/powerpc/powerpc64/power7/Implies: Likewise.
12480 * sysdeps/powerpc/powerpc64/power7/fpu/Implies: Likewise.
12481 * sysdeps/powerpc/powerpc64/power7/fpu/multiarch/Implies: Likewise.
12482 * sysdeps/powerpc/powerpc64/power7/multiarch/Implies: Likewise.
12483 * sysdeps/powerpc/powerpc64/power8/Implies: Likewise.
12484 * sysdeps/powerpc/powerpc64/power8/fpu/Implies: Likewise.
12485 * sysdeps/powerpc/powerpc64/power8/fpu/multiarch/Implies: Likewise.
12486 * sysdeps/powerpc/powerpc64/power8/multiarch/Implies: Likewise.
12487 * sysdeps/powerpc/powerpc64/power9/Implies: Likewise.
12488 * sysdeps/powerpc/powerpc64/power9/fpu/Implies: Likewise.
12489 * sysdeps/powerpc/powerpc64/power9/fpu/multiarch/Implies: Likewise.
12490 * sysdeps/powerpc/powerpc64/power9/multiarch/Implies: Likewise.
12492 * sysdeps/powerpc/powerpc64/be/power4/Implies: Move from powerpc64 and
12493 adjusted to imply powerpc64 and older processors on powerpc64/be.
12494 * sysdeps/powerpc/powerpc64/be/power4/fpu/Implies: Likewise.
12495 * sysdeps/powerpc/powerpc64/be/power4/fpu/multiarch/Implies: Likewise.
12496 * sysdeps/powerpc/powerpc64/be/power4/multiarch/Implies: Likewise.
12497 * sysdeps/powerpc/powerpc64/be/power5+/Implies: Likewise.
12498 * sysdeps/powerpc/powerpc64/be/power5+/fpu/Implies: Likewise.
12499 * sysdeps/powerpc/powerpc64/be/power5+/fpu/multiarch/Implies: Likewise.
12500 * sysdeps/powerpc/powerpc64/be/power5+/multiarch/Implies: Likewise.
12501 * sysdeps/powerpc/powerpc64/be/power5/Implies: Likewise.
12502 * sysdeps/powerpc/powerpc64/be/power5/fpu/Implies: Likewise.
12503 * sysdeps/powerpc/powerpc64/be/power5/fpu/multiarch/Implies: Likewise.
12504 * sysdeps/powerpc/powerpc64/be/power5/multiarch/Implies: Likewise.
12505 * sysdeps/powerpc/powerpc64/be/power6/Implies: Likewise.
12506 * sysdeps/powerpc/powerpc64/be/power6/fpu/Implies: Likewise.
12507 * sysdeps/powerpc/powerpc64/be/power6/fpu/multiarch/Implies: Likewise.
12508 * sysdeps/powerpc/powerpc64/be/power6/multiarch/Implies: Likewise.
12509 * sysdeps/powerpc/powerpc64/be/power6x/Implies: Likewise.
12510 * sysdeps/powerpc/powerpc64/be/power6x/fpu/Implies: Likewise.
12511 * sysdeps/powerpc/powerpc64/be/power6x/fpu/multiarch/Implies: Likewise.
12512 * sysdeps/powerpc/powerpc64/be/power6x/multiarch/Implies: Likewise.
12513 * sysdeps/powerpc/powerpc64/be/power7/Implies: Likewise.
12514 * sysdeps/powerpc/powerpc64/be/power7/fpu/Implies: Likewise.
12515 * sysdeps/powerpc/powerpc64/be/power7/fpu/multiarch/Implies: Likewise.
12516 * sysdeps/powerpc/powerpc64/be/power7/multiarch/Implies: Likewise.
12517 * sysdeps/powerpc/powerpc64/be/power8/Implies: Likewise.
12518 * sysdeps/powerpc/powerpc64/be/power8/fpu/Implies: Likewise.
12519 * sysdeps/powerpc/powerpc64/be/power8/fpu/multiarch/Implies: Likewise.
12520 * sysdeps/powerpc/powerpc64/be/power8/multiarch/Implies: Likewise.
12521 * sysdeps/powerpc/powerpc64/be/power9/Implies: Likewise.
12522 * sysdeps/powerpc/powerpc64/be/power9/fpu/Implies: Likewise.
12523 * sysdeps/powerpc/powerpc64/be/power9/fpu/multiarch/Implies: Likewise.
12524 * sysdeps/powerpc/powerpc64/be/power9/multiarch/Implies: Likewise.
12526 * sysdeps/powerpc/powerpc64/970/Implies: Move to powerpc64/be.
12527 * sysdeps/powerpc/powerpc64/be/970/Implies: Move from powerpc64/be.
12528 * sysdeps/powerpc/powerpc64/be/a2/Implies: New file.
12529 * sysdeps/powerpc/powerpc64/be/cell/Implies: Likewise.
12531 * sysdeps/powerpc/powerpc64/be/Implies: New file.
12532 * sysdeps/powerpc/powerpc64/be/fpu/Implies: Likewise.
12533 * sysdeps/powerpc/powerpc64/be/fpu/multiarch/Implies: Likewise.
12534 * sysdeps/powerpc/powerpc64/be/multiarch/Implies: Likewise.
12536 * sysdeps/powerpc/powerpc64le/Implies: Move to powerpc64/le.
12537 * sysdeps/powerpc/powerpc64le/Implies-before: Likewise.
12538 * sysdeps/powerpc/powerpc64le/Makefile: Likewise.
12539 * sysdeps/powerpc/powerpc64le/configure: Likewise.
12540 * sysdeps/powerpc/powerpc64le/configure.ac: Likewise.
12541 * sysdeps/powerpc/powerpc64le/fpu/Implies: Likewise.
12542 * sysdeps/powerpc/powerpc64le/fpu/e_sqrtf128.c: Likewise.
12543 * sysdeps/powerpc/powerpc64le/fpu/multiarch/Implies: Likewise.
12544 * sysdeps/powerpc/powerpc64le/fpu/sfp-machine.h: Likewise.
12545 * sysdeps/powerpc/powerpc64le/multiarch/Implies: Likewise.
12546 * sysdeps/powerpc/powerpc64le/power9/fpu/e_sqrtf128.c: Likewise.
12548 * sysdeps/powerpc/powerpc64/le/Implies: Move from powerpc64le.
12549 * sysdeps/powerpc/powerpc64/le/Implies-before: Likewise.
12550 * sysdeps/powerpc/powerpc64/le/Makefile: Likewise.
12551 * sysdeps/powerpc/powerpc64/le/configure: Likewise.
12552 * sysdeps/powerpc/powerpc64/le/configure.ac: Likewise.
12553 * sysdeps/powerpc/powerpc64/le/fpu/Implies: Likewise.
12554 * sysdeps/powerpc/powerpc64/le/fpu/e_sqrtf128.c: Likewise.
12555 * sysdeps/powerpc/powerpc64/le/fpu/multiarch/Implies: Likewise.
12556 * sysdeps/powerpc/powerpc64/le/fpu/sfp-machine.h: Likewise.
12557 * sysdeps/powerpc/powerpc64/le/multiarch/Implies: Likewise.
12558 * sysdeps/powerpc/powerpc64/le/power9/fpu/e_sqrtf128.c: Likewise.
12560 * sysdeps/powerpc/powerpc64le/power7/Implies: Move to powerpc64/le.
12561 * sysdeps/powerpc/powerpc64le/power7/fpu/Implies: Likewise.
12562 * sysdeps/powerpc/powerpc64le/power7/fpu/multiarch/Implies: Likewise.
12563 * sysdeps/powerpc/powerpc64le/power7/multiarch/Implies: Likewise.
12564 * sysdeps/powerpc/powerpc64le/power8/Implies: Likewise.
12565 * sysdeps/powerpc/powerpc64le/power8/fpu/Implies: Likewise.
12566 * sysdeps/powerpc/powerpc64le/power8/fpu/multiarch/Implies: Likewise.
12567 * sysdeps/powerpc/powerpc64le/power8/multiarch/Implies: Likewise.
12568 * sysdeps/powerpc/powerpc64le/power9/Implies: Likewise.
12569 * sysdeps/powerpc/powerpc64le/power9/fpu/Implies: Likewise.
12570 * sysdeps/powerpc/powerpc64le/power9/fpu/multiarch/Implies: Likewise.
12571 * sysdeps/powerpc/powerpc64le/power9/multiarch/Implies: Likewise.
12573 * sysdeps/powerpc/powerpc64/le/power7/Implies: Move from powerpc64le
12574 and adjusted to imply olders processors.
12575 * sysdeps/powerpc/powerpc64/le/power7/fpu/Implies: Likewise.
12576 * sysdeps/powerpc/powerpc64/le/power7/fpu/multiarch/Implies: Likewise.
12577 * sysdeps/powerpc/powerpc64/le/power7/multiarch/Implies: Likewise.
12578 * sysdeps/powerpc/powerpc64/le/power8/Implies: Likewise.
12579 * sysdeps/powerpc/powerpc64/le/power8/fpu/Implies: Likewise.
12580 * sysdeps/powerpc/powerpc64/le/power8/fpu/multiarch/Implies: Likewise.
12581 * sysdeps/powerpc/powerpc64/le/power8/multiarch/Implies: Likewise.
12582 * sysdeps/powerpc/powerpc64/le/power9/Implies: Likewise.
12583 * sysdeps/powerpc/powerpc64/le/power9/fpu/Implies: Likewise.
12584 * sysdeps/powerpc/powerpc64/le/power9/fpu/multiarch/Implies: Likewise.
12585 * sysdeps/powerpc/powerpc64/le/power9/multiarch/Implies: Likewise.
12587 * sysdeps/unix/sysv/linux/powerpc/powerpc64le/Implies: Move to
12589 * sysdeps/unix/sysv/linux/powerpc/powerpc64le/float128-abi.h: Likewise.
12590 * sysdeps/unix/sysv/linux/powerpc/powerpc64le/fpu/Implies: Likewise.
12592 * sysdeps/unix/sysv/linux/powerpc/powerpc64/le/Implies: Move from
12594 * sysdeps/unix/sysv/linux/powerpc/powerpc64/le/float128-abi.h: Likewise.
12595 * sysdeps/unix/sysv/linux/powerpc/powerpc64/le/fpu/Implies: Likewise.
12597 * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/Implies: Move to
12599 * sysdeps/unix/sysv/linux/powerpc/powerpc64/a2/Implies: Likewise.
12600 * sysdeps/unix/sysv/linux/powerpc/powerpc64/cell/Implies: Likewise.
12601 * sysdeps/unix/sysv/linux/powerpc/powerpc64/cell/fpu/Implies: Likewise.
12603 * sysdeps/unix/sysv/linux/powerpc/powerpc64/be/970/Implies: Move from
12604 powerpc64 and adjusted.
12605 * sysdeps/unix/sysv/linux/powerpc/powerpc64/be/a2/Implies: Likewise.
12606 * sysdeps/unix/sysv/linux/powerpc/powerpc64/be/cell/Implies: Likewise.
12607 * sysdeps/unix/sysv/linux/powerpc/powerpc64/be/cell/fpu/Implies:
12610 2018-04-27 Joseph Myers <joseph@codesourcery.com>
12612 * sysdeps/tile: Remove.
12613 * sysdeps/unix/sysv/linux/tile: Likewise.
12614 * README (tilegx-*-linux-gnu): Remove from list of supported
12616 * manual/contrib.texi (Contributors): Mention Chris Metcalf's
12617 contribution of support for generic Linux kernel syscall
12619 * scripts/build-many-glibcs.py (Context.add_all_configs): Remove
12620 tilegx configurations.
12621 (Config.install_linux_headers): Do not handle tile.
12622 * sysdeps/unix/sysv/linux/aarch64/ldsodefs.h: Do not mention Tile
12624 * sysdeps/unix/sysv/linux/nios2/Makefile: Likewise.
12625 * sysdeps/unix/sysv/linux/posix_fadvise.c: Likewise.
12626 [__ASSUME_FADVISE64_64_NO_ALIGN] (__ALIGNMENT_ARG): Remove
12627 conditional undefine and redefine.
12628 * sysdeps/unix/sysv/linux/posix_fadvise64.c: Do not mention Tile
12630 [__ASSUME_FADVISE64_64_NO_ALIGN] (__ALIGNMENT_ARG): Remove
12631 conditional undefine and redefine.
12633 2018-04-26 Aurelien Jarno <aurelien@aurel32.net>
12635 * signal/tst-sigaction.c: New file to test BZ #23069.
12636 * signal/Makefile (tests): Fix indentation. Add tst-sigaction.
12638 2018-04-26 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
12641 * include/dlfcn.h [__libc_dl_open]: Replace RTLD_LAZY with RTLD_NOW.
12642 * sysdeps/gnu/unwind-resume.c (__lib_gcc_s_init): Replace
12643 __libc_dlopen_mode() using RTLD_NOW with __libc_dlopen.
12644 * sysdeps/nptl/unwind-forcedunwind.c: Likewise.
12646 2018-04-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12648 * sysdeps/unix/sysv/linux/getdirentries.c (getdirentries): Build iff
12649 _DIRENT_MATCHES_DIRENT64 is not defined.
12650 * sysdeps/unix/sysv/linux/getdirentries64.c (getdirentries64): Open
12651 implementation and alias to getdirentries if _DIRENT_MATCHES_DIRENT64
12653 * sysdeps/unix/sysv/linux/wordsize-64/getdirentries.c: Remove file.
12654 * sysdeps/unix/sysv/linux/wordsize-64/getdirentries64.c: Remove file.
12656 2018-04-25 Joseph Myers <joseph@codesourcery.com>
12658 * scripts/build-many-glibcs.py (Context.checkout): Default GCC
12659 version to GCC 8 branch.
12661 2018-04-24 Joseph Myers <joseph@codesourcery.com>
12663 * sysdeps/mach/hurd/dl-sysdep.c: Include <not-errno.h>.
12664 (check_no_hidden): Use type of original function when declaring
12667 * sysdeps/unix/sysv/linux/sys/ptrace.h
12668 (PTRACE_SECCOMP_GET_METADATA): New enum value and macro.
12669 * sysdeps/unix/sysv/linux/bits/ptrace-shared.h
12670 (struct __ptrace_seccomp_metadata): New type.
12671 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h
12672 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12673 * sysdeps/unix/sysv/linux/arm/sys/ptrace.h
12674 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12675 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h
12676 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12677 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h
12678 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12679 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h
12680 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12681 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h
12682 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12683 * sysdeps/unix/sysv/linux/tile/sys/ptrace.h
12684 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12685 * sysdeps/unix/sysv/linux/x86/sys/ptrace.h
12686 (PTRACE_SECCOMP_GET_METADATA): Likewise.
12688 2018-04-23 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12690 * dirent/alphasort.c (alphasort): Build iff _DIRENT_MATCHES_DIRENT64 is
12692 * dirent/versionsort.c (versionsort): Likewise.
12693 * dirent/alphasort64.c (alphasort64): Build regardless and alias to
12694 alphasort if _DIRENT_MATCHES_DIRENT64 is defined.
12695 * dirent/versionsort64.c (versionsort64): Likewise.
12696 * sysdeps/unix/sysv/linux/i386/alphasort64.c: Remove file.
12697 * sysdeps/unix/sysv/linux/arm/alphasort64.c: Likewise.
12698 * sysdeps/unix/sysv/linux/arm/versionsort64.c: Likewise.
12699 * sysdeps/unix/sysv/linux/m68k/alphasort64.c: Likewise.
12700 * sysdeps/unix/sysv/linux/m68k/versionsort64.c: Likewise.
12701 * sysdeps/unix/sysv/linux/s390/s390-32/alphasort64.c: Likewise.
12702 * sysdeps/unix/sysv/linux/s390/s390-32/versionsort64.c: Likewise.
12703 * sysdeps/unix/sysv/linux/i386/versionsort64.c: Likewise.
12704 * sysdeps/unix/sysv/linux/alphasort64.c: New file.
12705 * sysdeps/unix/sysv/linux/versionsort64.c: Likewise.
12706 * sysdeps/unix/sysv/linux/powerpc/powerpc32/alphasort64.c: Likewise.
12707 * sysdeps/unix/sysv/linux/powerpc/powerpc32/versionsort64.c: Likewise.
12708 * sysdeps/unix/sysv/linux/sparc/sparc32/alphasort64.c: Likewise.
12709 * sysdeps/unix/sysv/linux/sparc/sparc32/versionsort64.c: Likewise.
12711 2018-04-23 Joseph Myers <joseph@codesourcery.com>
12713 * elf/elf.h (NT_PPC_PKEY): New macro.
12715 2018-04-23 Dragan Stanojevic - Nevidljivi <invisible@hidden-city.net>
12718 * localedata/locales/hr_HR: fix thousands_sep and
12721 2018-04-20 Joseph Myers <joseph@codesourcery.com>
12723 * sysdeps/unix/sysv/linux/alpha/bits/termios.h [__USE_MISC]
12724 (XTABS): Define to TAB3.
12726 2018-04-20 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12728 * sysdeps/hppa/fpu/libm-test-ulps: Update.
12730 * dirent/scandir-tail-common.c: New file.
12731 * dirent/scandir-tail.c: Use scandir-tail-common.c.
12732 (__scandir_tail): Build iff _DIRENT_MATCHES_DIRENT64 is not defined.
12733 * dirent/scandir.c: Use scandir-tail-common.c.
12734 * dirent/scandirat.c: Likewise.
12735 * dirent/scandir64-tail.c: Use scandir-tail-common.c.
12736 * dirent/scandir64.c (scandir64): Always build and alias to scandir
12737 if _DIRENT_MATCHES_DIRENT64 is defined.
12738 * dirent/scandirat64.c (scandirat64): Likewise.
12739 * include/dirent.h (__scandir_tail): Only define iff
12740 _DIRENT_MATCHES_DIRENT64 is not defined.
12741 (__scandir64_tail): Define regardless.
12742 (__scandirat, scandirat64): Remove libc_hidden_proto.
12743 * sysdeps/unix/sysv/linux/arm/scandir64.c: Remove file.
12744 * sysdeps/unix/sysv/linux/m68k/scandir64.c: Likewise.
12745 * sysdeps/unix/sysv/linux/powerpc/powerpc32/scandir64.c: Likewise.
12746 * sysdeps/unix/sysv/linux/s390/s390-32/scandir64.c: Likewise.
12747 * sysdeps/unix/sysv/linux/i386/scandir64.c: Likewise.
12748 * sysdeps/unix/sysv/linux/sparc/sparc32/scandir64.c: Likewise.
12749 * sysdeps/unix/sysv/linux/scandir64.c: New file.
12751 2018-04-20 Joseph Myers <joseph@codesourcery.com>
12753 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_ASIMDFHM):
12755 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c (_DL_HWCAP_COUNT):
12757 (_dl_aarch64_cap_flags): Add asimdfhm.
12759 2018-04-19 Chung-Lin Tang <cltang@codesourcery.com>
12761 * sysdeps/nios2/libm-test-ulps: Update.
12763 2018-04-19 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12765 * sysdeps/unix/sysv/linux/mips/mips64/getdents64.c (__getdents64):
12766 Only alias to __getdents for _DIRENT_MATCHES_DIRENT64.
12768 * sysdeps/unix/sysv/linux/alpha/getdents.c: Add comments with alpha
12770 (_DIRENT_MATCHES_DIRENT64): Undef
12771 * sysdeps/unix/sysv/linux/alpha/getdents64.c: Likewise.
12772 * sysdeps/unix/sysv/linux/arm/getdents64.c: Remove file.
12773 * sysdeps/unix/sysv/linux/generic/getdents.c: Likewise.
12774 * sysdeps/unix/sysv/linux/generic/getdents64.c: Likewise.
12775 * sysdeps/unix/sysv/linux/generic/wordsize-32/getdents.c: Likewise.
12776 * sysdeps/unix/sysv/linux/getdents.c: Simplify implementation by
12777 use getdents64 syscalls as base.
12778 * sysdeps/unix/sysv/linux/getdents64.c: Likewise and add compatibility
12779 symbol if required.
12780 * sysdeps/unix/sysv/linux/hppa/getdents64.c: Likewise.
12781 * sysdeps/unix/sysv/linux/i386/getdents64.c: Likewise.
12782 * sysdeps/unix/sysv/linux/m68k/getdents64.c: Likewise.
12783 * sysdeps/unix/sysv/linux/powerpc/getdents64.c: Likewise.
12784 * sysdeps/unix/sysv/linux/s390/s390-32/getdents64.c: Likewise.
12785 * sysdeps/unix/sysv/linux/sparc/sparc32/getdents64.c: Likewise.
12786 * sysdeps/unix/sysv/linux/wordsize-64/getdents.c: Likewise.
12787 * sysdeps/unix/sysv/linux/wordsize-64/getdents64.c: Likewise.
12788 * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
12789 (__get_clockfreq_via_proc_openprom): Use __getdents64.
12790 * sysdeps/unix/sysv/linux/mips/mips64/getdents64.c: New file.
12792 2018-04-19 Stefan Liebler <stli@linux.vnet.ibm.com>
12794 * scripts/test_printers_common.py (init_test): Disable lock elision.
12796 2018-04-19 Stefan Liebler <stli@linux.vnet.ibm.com>
12798 * math/test-tgmath.c (count_double, count_float,
12799 count_ldouble, count_cdouble, count_cfloat,
12800 count_cldouble): Use volatile int.
12802 2018-04-19 Samuel Thibault <samuel.thibault@ens-lyon.org>
12804 * sysdeps/mach/hurd/i386/Makefile [$(subdir) = conform]
12805 (conformtest-xfail-conds): Add i386-gnu.
12806 * conform/data/fcntl.h-data (flock.l_type, flock.l_whence): XFAIL on
12808 * conform/data/sys/ipc.h-data (ipc_perm.uid, ipc_perm.gid,
12809 ipc_perm.cuid, ipc_perm.cgid): Likewise.
12810 * conform/data/sys/msg.h-data (msqid_ds.msg_lspid,
12811 msqid_ds.msg_lrpid): Likewise.
12812 * conform/data/sys/shm.h-data (shmid_ds.shm_lpid, shmid_ds.shm_cpid):
12814 * conform/data/sys/stat.h-data (stat.st_dev): Likewise.
12815 * conform/data/sys/statvfs.h-data (statvfs.f_fsid): Likewise.
12816 * sysdeps/mach/hurd/bits/statvfs.h (struct statvfs): Make f_bsize,
12817 f_namemax, f_frsize, and f_flag fields unsigned long int instead of
12819 (struct statvfs64): Likewise.
12820 * sysdeps/mach/hurd/bits/statfs.h (struct statfs, struct statfs64):
12822 * bits/in.h [!__USE_MISC]: Do not define struct ip_opts.
12823 * conform/data/netinet/in.h-data: Allow sin_ and sin6_ prefix.
12824 * sysdeps/gnu/bits/msq.h (struct msqid_ds): Use __wait_queue struct
12825 instead of wait_queue.
12826 * sysdeps/gnu/bits/shm.h (struct shmid_ds): Use __vm_area_struct
12827 instead of vm_area_struct.
12828 * bits/sched.h: Include <bits/types/struct_sched_param.h> and move
12829 struct sched_param definition to it.
12830 * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
12831 * bits/types/struct_sched_param.h: New file.
12832 * sysdeps/htl/bits/types/struct___pthread_attr.h: Include
12833 <bits/types/struct_sched_param.h> instead of <sched.h>.
12834 * posix/Makefile (headers): Add bits/types/struct_sched_param.h.
12835 * sysdeps/pthread/bits/types/sigevent_t.h: New file, based on the
12836 generic version but include <bits/pthreadtypes.h> to make struct
12837 sigevent's sigev_notify_attributes field a pthread_attr_t*.
12838 * bits/types/siginfo_t.h: Remove siginfo struct name, unused and
12840 * bits/termios.h [__USE_XOPEN || __USE_XOPEN2K8] (IXANY): Define.
12841 [__USE_XOPEN && !__USE_XOPEN2K] (IUCLC, OLCUC): Define.
12842 [__USE_XOPEN] (OFDEL): New macro.
12843 [__USE_XOPEN && !__USE_XOPEN2K] (XCASE): New macro.
12844 * bits/resource.h (RLIM_SAVED_MAX, RLIM_SAVED_CUR): New macros.
12845 * sysdeps/hurd/include/hurd.h [!_ISOMAC]: Do not declare libc hidden
12847 * sysdeps/hurd/include/hurd/fd.h [!_ISOMAC]: Likewise.
12848 * sysdeps/hurd/include/hurd/signal.h [!_ISOMAC]: Likewise.
12849 * sysdeps/arm/sys/ucontext.h: Remove fpregset struct name, unused and
12851 * sysdeps/i386/sys/ucontext.h: Likewise.
12852 * sysdeps/m68k/sys/ucontext.h: Likewise.
12853 * sysdeps/mips/sys/ucontext.h: Likewise.
12854 * sysdeps/unix/sysv/linux/hppa/sys/ucontext.h: Likewise.
12855 * sysdeps/mach/hurd/i386/Makefile
12856 (test-xfail-POSIX/fcntl.h/conform): Add.
12857 (test-xfail-POSIX/signal.h/conform): Add.
12858 (test-xfail-POSIX/semaphore.h/conform): Add.
12859 (test-xfail-POSIX/regex.h/conform): Add.
12860 (test-xfail-POSIX/aio.h/conform): Add.
12861 (test-xfail-POSIX/mqueue.h/conform): Add.
12862 (test-xfail-POSIX/sys/types.h/conform): Add.
12863 (test-xfail-UNIX98/fcntl.h/conform): Add.
12864 (test-xfail-UNIX98/netdb.h/conform): Add.
12865 (test-xfail-UNIX98/signal.h/conform): Add.
12866 (test-xfail-UNIX98/semaphore.h/conform): Add.
12867 (test-xfail-UNIX98/regex.h/conform): Add.
12868 (test-xfail-UNIX98/aio.h/conform): Add.
12869 (test-xfail-UNIX98/ftw.h/conform): Add.
12870 (test-xfail-UNIX98/mqueue.h/conform): Add.
12871 (test-xfail-UNIX98/netinet/in.h/conform): Add.
12872 (test-xfail-UNIX98/sys/wait.h/conform): Add.
12873 (test-xfail-UNIX98/sys/sem.h/conform): Add.
12874 (test-xfail-UNIX98/sys/uio.h/conform): Add.
12875 (test-xfail-UNIX98/sys/socket.h/conform): Add.
12876 (test-xfail-UNIX98/sys/types.h/conform): Add.
12877 (test-xfail-UNIX98/stdlib.h/conform): Add.
12878 (test-xfail-UNIX98/arpa/inet.h/conform): Add.
12879 (test-xfail-POSIX2008/fcntl.h/conform): Add.
12880 (test-xfail-POSIX2008/netdb.h/conform): Add.
12881 (test-xfail-POSIX2008/signal.h/conform): Add.
12882 (test-xfail-POSIX2008/semaphore.h/conform): Add.
12883 (test-xfail-POSIX2008/regex.h/conform): Add.
12884 (test-xfail-POSIX2008/aio.h/conform): Add.
12885 (test-xfail-POSIX2008/mqueue.h/conform): Add.
12886 (test-xfail-POSIX2008/netinet/in.h/conform): Add.
12887 (test-xfail-POSIX2008/sys/wait.h/conform): Add.
12888 (test-xfail-POSIX2008/sys/socket.h/conform): Add.
12889 (test-xfail-POSIX2008/sys/types.h/conform): Add.
12890 (test-xfail-POSIX2008/arpa/inet.h/conform): Add.
12891 (test-xfail-XOPEN2K/fcntl.h/conform): Add.
12892 (test-xfail-XOPEN2K/netdb.h/conform): Add.
12893 (test-xfail-XOPEN2K/signal.h/conform): Add.
12894 (test-xfail-XOPEN2K/semaphore.h/conform): Add.
12895 (test-xfail-XOPEN2K/regex.h/conform): Add.
12896 (test-xfail-XOPEN2K/aio.h/conform): Add.
12897 (test-xfail-XOPEN2K/ftw.h/conform): Add.
12898 (test-xfail-XOPEN2K/mqueue.h/conform): Add.
12899 (test-xfail-XOPEN2K/netinet/in.h/conform): Add.
12900 (test-xfail-XOPEN2K/sys/wait.h/conform): Add.
12901 (test-xfail-XOPEN2K/sys/sem.h/conform): Add.
12902 (test-xfail-XOPEN2K/sys/uio.h/conform): Add.
12903 (test-xfail-XOPEN2K/sys/socket.h/conform): Add.
12904 (test-xfail-XOPEN2K/sys/types.h/conform): Add.
12905 (test-xfail-XOPEN2K/stdlib.h/conform): Add.
12906 (test-xfail-XOPEN2K/arpa/inet.h/conform): Add.
12907 (test-xfail-XOPEN2K8/fcntl.h/conform): Add.
12908 (test-xfail-XOPEN2K8/netdb.h/conform): Add.
12909 (test-xfail-XOPEN2K8/signal.h/conform): Add.
12910 (test-xfail-XOPEN2K8/semaphore.h/conform): Add.
12911 (test-xfail-XOPEN2K8/regex.h/conform): Add.
12912 (test-xfail-XOPEN2K8/aio.h/conform): Add.
12913 (test-xfail-XOPEN2K8/ftw.h/conform): Add.
12914 (test-xfail-XOPEN2K8/mqueue.h/conform): Add.
12915 (test-xfail-XOPEN2K8/netinet/in.h/conform): Add.
12916 (test-xfail-XOPEN2K8/sys/wait.h/conform): Add.
12917 (test-xfail-XOPEN2K8/sys/sem.h/conform): Add.
12918 (test-xfail-XOPEN2K8/sys/uio.h/conform): Add.
12919 (test-xfail-XOPEN2K8/sys/socket.h/conform): Add.
12920 (test-xfail-XOPEN2K8/sys/types.h/conform): Add.
12921 (test-xfail-XOPEN2K8/stdlib.h/conform): Add.
12922 (test-xfail-XOPEN2K8/arpa/inet.h/conform): Add.
12923 * conform/data/signal.h-data (SA_SIGINFO, SA_NOCLDWAIT): XFAIL on
12925 * conform/data/sys/wait.h-data (WIFCONTINUED, WEXITED, WSTOPPED,
12926 WCONTINUED, WNOWAIT): XFAIL on i386-gnu.
12928 2018-04-18 Joseph Myers <joseph@codesourcery.com>
12930 * scripts/build-many-glibcs.py (Context.add_all_configs): Use
12931 --enable-obsolete for powerpc-linux-gnuspe.
12933 2018-04-18 Samuel Thibault <samuel.thibault@ens-lyon.org>
12935 * conform/data/sys/un.h-data: Allow sun_ prefix.
12936 * sysdeps/mach/include/lock-intern.h: Do not declare libc hidden
12938 * sysdeps/mach/include/mach.h: Likewise.
12939 * sysdeps/mach/include/mach/mig_support.h: Likewise.
12940 * sysdeps/mach/include/mach_error.h: Likewise.
12942 2018-04-16 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12944 * sysdeps/arm/armv6t2/memchr.S (memchr): Remove ARM code path.
12945 * sysdeps/arm/armv6t2/strlen.S (memchr): Likewise.
12946 * sysdeps/arm/armv7/multiarch/memchr_neon.S (memchr): Likewise.
12947 * sysdeps/arm/armv7/strcmp.S (strcmp): Likewise.
12949 2018-04-16 Andreas Schwab <schwab@suse.de>
12952 * iconvdata/gconv-modules (ARMSCII8//, ShiftJISX0213//): New aliases.
12954 2018-04-15 Patrick McGehearty <patrick.mcgehearty@oracle.com>
12956 * sysdeps/ieee754/dbl-64/e_exp.c: faster __ieee754_exp()
12957 * sysdeps/ieee754/dbl-64/eexp.tbl: New file for e_exp.c
12959 2018-04-12 DJ Delorie <dj@redhat.com>
12961 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
12964 2018-04-12 Stefan Liebler <stli@linux.vnet.ibm.com>
12966 * sysdeps/unix/sysv/linux/s390/kernel_sigaction.h
12967 (struct kernel_sigaction): Use the same definition on 31bit as is used
12970 2018-04-09 Florian Weimer <fweimer@redhat.com>
12973 * resolv/res_send.c (send_dg): Use designated initializers instead
12974 of assignment to zero-initialize other fields of struct mmsghdr.
12976 2018-04-06 Adhemerval Zanella <adhemerval.zanella@linaro.org>
12978 * sysdeps/posix/readdir.c (__READDIR, __GETDENTS, DIRENTY_TYPE,
12979 __READDIR_ALIAS): Undefine after usage.
12980 * sysdeps/posix/readdir_r.c (__READDIR_R, __GETDENTS, DIRENT_TYPE,
12981 __READDIR_R_ALIAS): Likewise.
12982 * sysdeps/unix/sysv/linux/arm/readdir64.c: Remove file.
12983 * sysdeps/unix/sysv/linux/arm/readdir64_r.c: Likewise.
12984 * sysdeps/unix/sysv/linux/m68k/readdir64.c: Likewise.
12985 * sysdeps/unix/sysv/linux/m68k/readdir64_r.c: Likewise.
12986 * sysdeps/unix/sysv/linux/powerpc/readdir64.c: Likewise.
12987 * sysdeps/unix/sysv/linux/powerpc/readdir64_r.c: Likewise.
12988 * sysdeps/unix/sysv/linux/i386/readdir64.c: Likewise.
12989 * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
12990 * sysdeps/unix/sysv/linux/s390/s390-32/readdir64.c: Likewise.
12991 * sysdeps/unix/sysv/linux/s390/s390-32/readdir64_r.c: Likewise.
12992 * sysdeps/unix/sysv/linux/sparc/sparc32/readdir64.c: Likewise.
12993 * sysdeps/unix/sysv/linux/sparc/sparc32/readdir64_r.c: Likewise.
12994 * sysdeps/unix/sysv/linux/wordsize-64/readdir.c: Likewise.
12995 * sysdeps/unix/sysv/linux/wordsize-64/readdir64.c: Likewise.
12996 * sysdeps/unix/sysv/linux/wordsize-64/readdir64_r.c: Likewise.
12997 * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Likewise.
12998 * sysdeps/unix/sysv/linux/readdir.c: New file.
12999 * sysdeps/unix/sysv/linux/readdir_r.c: Likewise.
13000 * sysdeps/unix/sysv/linux/readdir64.c: Add compat symbol if required.
13001 * sysdeps/unix/sysv/linux/readdir64_r.c: Likewise.
13003 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Update.
13005 2018-04-06 Andreas Schwab <schwab@linux-m68k.org>
13007 * manual/charset.texi (Converting a Character): Fix typo.
13009 2018-04-05 Adhemerval Zanella <adhemerval.zanella@linaro.org>
13011 * sysdeps/sparc/fpu/libm-test-ulps: Update.
13013 * sysdeps/arm/libm-test-ulps: Update.
13015 * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Use default Linux version
13016 as base implementation.
13017 * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
13018 * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
13019 * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
13020 * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
13021 * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
13022 * sysdeps/unix/sysv/linux/alpha/kernel_sigaction.h: Add include guards,
13023 remove unrequired definitions and update comments.
13024 * sysdeps/unix/sysv/linux/kernel_sigaction.h: Likewise.
13025 * sysdeps/unix/sysv/linux/mips/kernel_sigaction.h: Likewise.
13026 * sysdeps/unix/sysv/linux/ia64/kernel_sigaction.h: New file.
13027 * sysdeps/unix/sysv/linux/m68k/kernel_sigaction.h: Likewise.
13028 * sysdeps/unix/sysv/linux/nios2/kernel_sigaction.h: Likewise.
13029 * sysdeps/unix/sysv/linux/powerpc/kernel_sigaction: Likewise.
13030 * sysdeps/unix/sysv/linux/s390/kernel_sigaction.h: Likewise.
13031 * sysdeps/unix/sysv/linux/sh/kernel_sigaction.h: Likewise.
13032 * sysdeps/unix/sysv/linux/sparc/kernel_sigaction.h: Likewise.
13033 * sysdeps/unix/sysv/linux/tile/kernel_sigaction.h: Likewise.
13034 * sysdeps/unix/sysv/linux/ia64/sigaction.c: Remove file.
13035 * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
13036 * sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c: Likewise.
13037 * sysdeps/unix/sysv/linux/sigaction.c: Add STUB, SET_SA_RESTORER,
13038 and RESET_SA_RESTORER hooks.
13040 2018-04-05 Stefan Liebler <stli@linux.vnet.ibm.com>
13042 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
13044 2018-04-05 Florian Weimer <fweimer@redhat.com>
13046 * manual/examples/mbstouwcs.c (mbstouwcs): Fix loop termination,
13047 integer overflow, memory leak on error, and indeterminate errno
13048 value. Add a null wide character to terminate the result string.
13049 * manual/charset.texi (Converting a Character): Mention embedded
13050 null bytes in the mbrtowc input string. Explain what happens in
13051 the -2 result case. Do not claim that mbrtowc is simple or
13052 obvious to use. Adjust the description of the code example. Use
13053 @code, not @var, for concrete variables.
13055 2018-04-05 Florian Weimer <fweimer@redhat.com>
13057 * manual/examples/mbstouwcs.c: New file.
13058 * manual/charset.texi (Converting a Character): Include it.
13060 2018-04-05 Samuel Thibault <samuel.thibault@ens-lyon.org>
13062 * include/dirent.h (dirfd): Add hidden proto.
13063 * dirent/dirfd.c (dirfd): Add hidden def.
13064 * sysdeps/mach/hurd/dirfd.c (dirfd): Add hidden def.
13065 * sysdeps/posix/dirfd.c (dirfd): Add hidden def.
13067 2018-04-04 Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
13069 * sysdeps/powerpc/fpu/libm-test-ulps: Increase double-precision
13070 sin, cos and sincos to 1 ULP.
13072 2018-04-04 Maciej W. Rozycki <macro@mips.com>
13075 * sysdeps/generic/ldsodefs.h (SYMBOL_ADDRESS): Handle SHN_ABS
13077 * elf/dl-addr.c (determine_info): Ignore SHN_ABS symbols.
13078 * elf/tst-absolute-sym.c: New file.
13079 * elf/tst-absolute-sym-lib.c: New file.
13080 * elf/tst-absolute-sym-lib.lds: New file.
13081 * elf/Makefile (tests): Add `tst-absolute-sym'.
13082 (modules-names): Add `tst-absolute-sym-lib'.
13083 (LDLIBS-tst-absolute-sym-lib.so): New variable.
13084 ($(objpfx)tst-absolute-sym-lib.so): New dependency.
13085 ($(objpfx)tst-absolute-sym): New dependency.
13088 * sysdeps/generic/ldsodefs.h (LOOKUP_VALUE_ADDRESS): Add `set'
13090 (SYMBOL_ADDRESS): New macro.
13091 [!ELF_FUNCTION_PTR_IS_SPECIAL] (DL_SYMBOL_ADDRESS): Use
13092 SYMBOL_ADDRESS for symbol address calculation.
13093 * elf/dl-runtime.c (_dl_fixup): Likewise.
13094 (_dl_profile_fixup): Likewise.
13095 * elf/dl-symaddr.c (_dl_symbol_address): Likewise.
13096 * elf/rtld.c (dl_main): Likewise.
13097 * sysdeps/aarch64/dl-machine.h (elf_machine_rela): Likewise.
13098 * sysdeps/alpha/dl-machine.h (elf_machine_rela): Likewise.
13099 * sysdeps/arm/dl-machine.h (elf_machine_rel): Likewise.
13100 (elf_machine_rela): Likewise.
13101 * sysdeps/hppa/dl-machine.h (elf_machine_rela): Likewise.
13102 * sysdeps/hppa/dl-symaddr.c (_dl_symbol_address): Likewise.
13103 * sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
13104 (elf_machine_rela): Likewise.
13105 * sysdeps/ia64/dl-machine.h (elf_machine_rela): Likewise.
13106 * sysdeps/m68k/dl-machine.h (elf_machine_rela): Likewise.
13107 * sysdeps/microblaze/dl-machine.h (elf_machine_rela): Likewise.
13108 * sysdeps/mips/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
13110 (elf_machine_reloc): Likewise.
13111 (elf_machine_got_rel): Likewise.
13112 * sysdeps/mips/dl-trampoline.c (__dl_runtime_resolve): Likewise.
13113 * sysdeps/nios2/dl-machine.h (elf_machine_rela): Likewise.
13114 * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela):
13116 * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
13118 * sysdeps/riscv/dl-machine.h (elf_machine_rela): Likewise.
13119 * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
13121 * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
13123 * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
13124 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela):
13126 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
13128 * sysdeps/tile/dl-machine.h (elf_machine_rela): Likewise.
13129 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
13131 2018-04-04 Zack Weinberg <zackw@panix.com>
13133 * sysdeps/generic/internal-signals.h: Include signal.h,
13134 sigsetops.h, and stdbool.h.
13135 (__libc_signal_block_all): Actually block all signals.
13136 (__libc_signal_block_app): Likewise.
13137 (__libc_signal_restore_set): Actually restore the signal mask.
13139 2018-04-04 Florian Weimer <fweimer@redhat.com>
13141 inet: Actually build and run tst-deadline.
13142 * inet/Makefile (tests-internal): Add tst-deadline and do not
13143 overwrite the variable.
13144 (tests-static-internal): Remove variable.
13146 2018-04-03 H.J. Lu <hongjiu.lu@intel.com>
13149 * bits/uio-ext.h (RWF_APPEND): New.
13150 * sysdeps/unix/sysv/linux/bits/uio-ext.h (RWF_APPEND): Likewise.
13151 * manual/llio.texi: Document RWF_APPEND.
13152 * misc/tst-preadvwritev2-common.c (RWF_APPEND): New.
13153 (RWF_SUPPORTED): Add RWF_APPEND.
13155 2018-04-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
13158 * nptl/sigaction.c (__sigaction): Use __is_internal_signal to
13159 check for internal nptl signals.
13160 * nptl/sigaction.c (__sigaction): Likewise.
13161 * signal/sigaddset.c (sigaddset): Likewise.
13162 * signal/sigdelset.c (sigdelset): Likewise.
13163 * sysdeps/posix/signal.c (__bsd_signal): Likewise.
13164 * sysdeps/posix/sigset.c (sigset): Call and check sigaddset return
13166 * signal/sigfillset.c (sigfillset): User __clear_internal_signals
13167 to filter out internal nptl signals.
13168 * signal/tst-sigset.c (do_test): Check ech signal indidually and
13169 also check realtime signals using standard macros.
13170 * sysdeps/generic/internal-signals.h (__clear_internal_signals,
13171 __is_internal_signal, __libc_signal_block_all,
13172 __libc_signal_block_app, __libc_signal_restore_set): New functions.
13173 * sysdeps/nptl/sigfillset.c: Remove file.
13174 * sysdeps/unix/sysv/linux/internal-signals.h (__is_internal_signal):
13175 Change return to bool.
13176 (__clear_internal_signals): Remove SIGTIMER clean since it is
13177 equal to SIGCANEL on Linux.
13178 * sysdeps/unix/sysv/linux/sigtimedwait.c (__sigtimedwait): Assume
13179 signal set was constructed using standard functions.
13181 2018-04-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
13183 * sysdeps/mach/hurd/if_index.c (__if_nametoindex): Return ENODEV if
13184 ifname is too long.
13185 * hurd/hurdsig.c (interrupted_reply_port_location): Use
13186 DIAG_IGNORE_NEEDS_COMMENT to silence warning with GCC 6 and before.
13187 * sysdeps/mach/hurd/i386/exc2signal.c (_hurd_exception2signal): Add
13189 * mach/spin-lock.c (__mutex_unlock): Add hidden def.
13190 * signal/sigaddset.c: Include <sigsetopts.h>.
13191 * signal/sigdelset.c: Likewise.
13193 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
13195 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Cleanup ifdefs.
13197 * sysdeps/ieee754/dbl-64/s_sin.c (__sincos): Refactor using the same
13198 logic as sin and cos.
13200 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
13202 * sysdeps/ieee754/dbl-64/s_sin.c (do_sin): Use TAYLOR_SIN for small
13203 inputs. Return correct sign.
13204 (do_sincos): Remove small input check before do_sin, let do_sin set
13209 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
13211 * sysdeps/ieee754/dbl-64/s_sin.c (TAYLOR_SLOW): Remove.
13212 (do_cos_slow): Likewise.
13213 (do_sin_slow): Likewise.
13214 (reduce_and_compute): Likewise.
13219 (sloww1): Likewise.
13220 (sloww2): Likewise.
13222 (bslow1): Likewise.
13223 (bslow2): Likewise.
13224 (cslow2): Likewise.
13226 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
13228 * sysdeps/ieee754/dbl-64/s_sin.c (TAYLOR_SIN): Remove cor parameter.
13229 (do_cos): Remove corp parameter and calculations.
13230 (do_sin): Likewise.
13231 (do_sincos): Remove cor variable.
13232 (__sin): Use do_sincos for huge inputs.
13234 * sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Likewise.
13235 (reduce_and_compute_sincos): Remove unused function.
13237 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
13239 * sysdeps/ieee754/dbl-64/s_sin.c (reduce_sincos_1): Rename to
13240 reduce_sincos, improve accuracy to 136 bits.
13241 (do_sincos_1): Rename to do_sincos, remove fallbacks to slow functions.
13242 (__sin): Use improved reduction and simplified do_sincos calculation.
13244 * sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Likewise.
13246 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
13248 * sysdeps/ieee754/dbl-64/s_sin.c (reduce_sincos_2): Remove function.
13249 (do_sincos_2): Likewise.
13250 (__sin): Remove middle range reduction case.
13252 * sysdeps/ieee754/dbl-64/s_sincos.c (__sincos): Remove middle range
13255 2018-04-03 Wilco Dijkstra <wdijkstr@arm.com>
13257 * sysdeps/aarch64/libm-test-ulps: Update ULP for sin, cos, sincos.
13258 * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Remove slow paths for small
13261 * sysdeps/x86_64/fpu/libm-test-ulps: Update ULP for sin, cos, sincos.
13263 2018-04-03 Joseph Myers <joseph@codesourcery.com>
13265 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
13268 2018-04-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
13270 * sysdeps/posix/opendir.c (o_directory_works, tryopen_o_directory):
13271 Remove definitions.
13272 (opendir_oflags): Use O_DIRECTORY regardless.
13273 (__opendir, __opendirat): Remove need_isdir_precheck usage.
13274 * sysdeps/unix/sysv/linux/opendir.c: Remove file.
13276 2018-04-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
13278 * sysdeps/mach/hurd/bits/local_lim.h (_POSIX_THREAD_KEYS_MAX,
13279 _POSIX_THREAD_DESTRUCTOR_ITERATIONS, _POSIX_THREAD_THREADS_MAX): Define
13281 * sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_THREADS,
13282 _POSIX_THREAD_ATTR_STACKSIZE, _POSIX_THREAD_ATTR_STACKADDR,
13283 _POSIX_SEMAPHORES, _POSIX_READER_WRITER_LOCKS, _POSIX_TIMEOUTS,
13284 _POSIX_SPIN_LOCKS, _POSIX_BARRIERS): Define macros to 200809L.
13285 * sysdeps/mach/hurd/net/if_ppp.h: Remove file.
13286 * sysdeps/mach/hurd/Makefile (sysdep_headers): Remove net/if_ppp.h.
13288 * htl/Makefile: Bump licence to LGPL 2.1+.
13289 * htl/alloca_cutoff.c: Likewise.
13290 * htl/cthreads-compat.c: Likewise.
13291 * htl/lockfile.c: Likewise.
13292 * htl/pt-alloc.c: Likewise.
13293 * htl/pt-cancel.c: Likewise.
13294 * htl/pt-cleanup.c: Likewise.
13295 * htl/pt-create.c: Likewise.
13296 * htl/pt-dealloc.c: Likewise.
13297 * htl/pt-detach.c: Likewise.
13298 * htl/pt-exit.c: Likewise.
13299 * htl/pt-getattr.c: Likewise.
13300 * htl/pt-initialize.c: Likewise.
13301 * htl/pt-internal.h: Likewise.
13302 * htl/pt-join.c: Likewise.
13303 * htl/pt-self.c: Likewise.
13304 * htl/pt-setcancelstate.c: Likewise.
13305 * htl/pt-setcanceltype.c: Likewise.
13306 * htl/pt-sigmask.c: Likewise.
13307 * htl/pt-spin-inlines.c: Likewise.
13308 * htl/pt-testcancel.c: Likewise.
13309 * htl/pt-yield.c: Likewise.
13310 * htl/tests/test-1.c: Likewise.
13311 * htl/tests/test-10.c: Likewise.
13312 * htl/tests/test-11.c: Likewise.
13313 * htl/tests/test-12.c: Likewise.
13314 * htl/tests/test-13.c: Likewise.
13315 * htl/tests/test-14.c: Likewise.
13316 * htl/tests/test-15.c: Likewise.
13317 * htl/tests/test-16.c: Likewise.
13318 * htl/tests/test-17.c: Likewise.
13319 * htl/tests/test-2.c: Likewise.
13320 * htl/tests/test-3.c: Likewise.
13321 * htl/tests/test-4.c: Likewise.
13322 * htl/tests/test-5.c: Likewise.
13323 * htl/tests/test-6.c: Likewise.
13324 * htl/tests/test-7.c: Likewise.
13325 * htl/tests/test-8.c: Likewise.
13326 * htl/tests/test-9.c: Likewise.
13327 * htl/tests/test-__pthread_destroy_specific-skip.c: Likewise.
13328 * sysdeps/htl/bits/cancelation.h: Likewise.
13329 * sysdeps/htl/bits/pthread-np.h: Likewise.
13330 * sysdeps/htl/bits/pthread.h: Likewise.
13331 * sysdeps/htl/bits/pthreadtypes.h: Likewise.
13332 * sysdeps/htl/bits/semaphore.h: Likewise.
13333 * sysdeps/htl/bits/types/__pthread_key.h: Likewise.
13334 * sysdeps/htl/bits/types/struct___pthread_attr.h: Likewise.
13335 * sysdeps/htl/bits/types/struct___pthread_barrier.h: Likewise.
13336 * sysdeps/htl/bits/types/struct___pthread_barrierattr.h: Likewise.
13337 * sysdeps/htl/bits/types/struct___pthread_cond.h: Likewise.
13338 * sysdeps/htl/bits/types/struct___pthread_condattr.h: Likewise.
13339 * sysdeps/htl/bits/types/struct___pthread_mutex.h: Likewise.
13340 * sysdeps/htl/bits/types/struct___pthread_mutexattr.h: Likewise.
13341 * sysdeps/htl/bits/types/struct___pthread_once.h: Likewise.
13342 * sysdeps/htl/bits/types/struct___pthread_rwlock.h: Likewise.
13343 * sysdeps/htl/bits/types/struct___pthread_rwlockattr.h: Likewise.
13344 * sysdeps/htl/old_pt-atfork.c: Likewise.
13345 * sysdeps/htl/pt-atfork.c: Likewise.
13346 * sysdeps/htl/pt-attr-destroy.c: Likewise.
13347 * sysdeps/htl/pt-attr-getdetachstate.c: Likewise.
13348 * sysdeps/htl/pt-attr-getguardsize.c: Likewise.
13349 * sysdeps/htl/pt-attr-getinheritsched.c: Likewise.
13350 * sysdeps/htl/pt-attr-getschedparam.c: Likewise.
13351 * sysdeps/htl/pt-attr-getschedpolicy.c: Likewise.
13352 * sysdeps/htl/pt-attr-getscope.c: Likewise.
13353 * sysdeps/htl/pt-attr-getstack.c: Likewise.
13354 * sysdeps/htl/pt-attr-getstackaddr.c: Likewise.
13355 * sysdeps/htl/pt-attr-getstacksize.c: Likewise.
13356 * sysdeps/htl/pt-attr-init.c: Likewise.
13357 * sysdeps/htl/pt-attr-setdetachstate.c: Likewise.
13358 * sysdeps/htl/pt-attr-setguardsize.c: Likewise.
13359 * sysdeps/htl/pt-attr-setinheritsched.c: Likewise.
13360 * sysdeps/htl/pt-attr-setschedparam.c: Likewise.
13361 * sysdeps/htl/pt-attr-setschedpolicy.c: Likewise.
13362 * sysdeps/htl/pt-attr-setscope.c: Likewise.
13363 * sysdeps/htl/pt-attr-setstack.c: Likewise.
13364 * sysdeps/htl/pt-attr-setstackaddr.c: Likewise.
13365 * sysdeps/htl/pt-attr-setstacksize.c: Likewise.
13366 * sysdeps/htl/pt-attr.c: Likewise.
13367 * sysdeps/htl/pt-barrier-destroy.c: Likewise.
13368 * sysdeps/htl/pt-barrier-init.c: Likewise.
13369 * sysdeps/htl/pt-barrier-wait.c: Likewise.
13370 * sysdeps/htl/pt-barrier.c: Likewise.
13371 * sysdeps/htl/pt-barrierattr-destroy.c: Likewise.
13372 * sysdeps/htl/pt-barrierattr-getpshared.c: Likewise.
13373 * sysdeps/htl/pt-barrierattr-init.c: Likewise.
13374 * sysdeps/htl/pt-barrierattr-setpshared.c: Likewise.
13375 * sysdeps/htl/pt-cond-brdcast.c: Likewise.
13376 * sysdeps/htl/pt-cond-destroy.c: Likewise.
13377 * sysdeps/htl/pt-cond-init.c: Likewise.
13378 * sysdeps/htl/pt-cond-signal.c: Likewise.
13379 * sysdeps/htl/pt-cond-timedwait.c: Likewise.
13380 * sysdeps/htl/pt-cond-wait.c: Likewise.
13381 * sysdeps/htl/pt-cond.c: Likewise.
13382 * sysdeps/htl/pt-condattr-destroy.c: Likewise.
13383 * sysdeps/htl/pt-condattr-getclock.c: Likewise.
13384 * sysdeps/htl/pt-condattr-getpshared.c: Likewise.
13385 * sysdeps/htl/pt-condattr-init.c: Likewise.
13386 * sysdeps/htl/pt-condattr-setclock.c: Likewise.
13387 * sysdeps/htl/pt-condattr-setpshared.c: Likewise.
13388 * sysdeps/htl/pt-destroy-specific.c: Likewise.
13389 * sysdeps/htl/pt-equal.c: Likewise.
13390 * sysdeps/htl/pt-getconcurrency.c: Likewise.
13391 * sysdeps/htl/pt-getcpuclockid.c: Likewise.
13392 * sysdeps/htl/pt-getschedparam.c: Likewise.
13393 * sysdeps/htl/pt-getspecific.c: Likewise.
13394 * sysdeps/htl/pt-init-specific.c: Likewise.
13395 * sysdeps/htl/pt-key-create.c: Likewise.
13396 * sysdeps/htl/pt-key-delete.c: Likewise.
13397 * sysdeps/htl/pt-key.h: Likewise.
13398 * sysdeps/htl/pt-mutex-destroy.c: Likewise.
13399 * sysdeps/htl/pt-mutex-getprioceiling.c: Likewise.
13400 * sysdeps/htl/pt-mutex-init.c: Likewise.
13401 * sysdeps/htl/pt-mutex-lock.c: Likewise.
13402 * sysdeps/htl/pt-mutex-setprioceiling.c: Likewise.
13403 * sysdeps/htl/pt-mutex-timedlock.c: Likewise.
13404 * sysdeps/htl/pt-mutex-trylock.c: Likewise.
13405 * sysdeps/htl/pt-mutex-unlock.c: Likewise.
13406 * sysdeps/htl/pt-mutexattr-destroy.c: Likewise.
13407 * sysdeps/htl/pt-mutexattr-getprioceiling.c: Likewise.
13408 * sysdeps/htl/pt-mutexattr-getprotocol.c: Likewise.
13409 * sysdeps/htl/pt-mutexattr-getpshared.c: Likewise.
13410 * sysdeps/htl/pt-mutexattr-gettype.c: Likewise.
13411 * sysdeps/htl/pt-mutexattr-init.c: Likewise.
13412 * sysdeps/htl/pt-mutexattr-setprioceiling.c: Likewise.
13413 * sysdeps/htl/pt-mutexattr-setprotocol.c: Likewise.
13414 * sysdeps/htl/pt-mutexattr-setpshared.c: Likewise.
13415 * sysdeps/htl/pt-mutexattr-settype.c: Likewise.
13416 * sysdeps/htl/pt-mutexattr.c: Likewise.
13417 * sysdeps/htl/pt-once.c: Likewise.
13418 * sysdeps/htl/pt-rwlock-attr.c: Likewise.
13419 * sysdeps/htl/pt-rwlock-destroy.c: Likewise.
13420 * sysdeps/htl/pt-rwlock-init.c: Likewise.
13421 * sysdeps/htl/pt-rwlock-rdlock.c: Likewise.
13422 * sysdeps/htl/pt-rwlock-timedrdlock.c: Likewise.
13423 * sysdeps/htl/pt-rwlock-timedwrlock.c: Likewise.
13424 * sysdeps/htl/pt-rwlock-tryrdlock.c: Likewise.
13425 * sysdeps/htl/pt-rwlock-trywrlock.c: Likewise.
13426 * sysdeps/htl/pt-rwlock-unlock.c: Likewise.
13427 * sysdeps/htl/pt-rwlock-wrlock.c: Likewise.
13428 * sysdeps/htl/pt-rwlockattr-destroy.c: Likewise.
13429 * sysdeps/htl/pt-rwlockattr-getpshared.c: Likewise.
13430 * sysdeps/htl/pt-rwlockattr-init.c: Likewise.
13431 * sysdeps/htl/pt-rwlockattr-setpshared.c: Likewise.
13432 * sysdeps/htl/pt-setconcurrency.c: Likewise.
13433 * sysdeps/htl/pt-setschedparam.c: Likewise.
13434 * sysdeps/htl/pt-setschedprio.c: Likewise.
13435 * sysdeps/htl/pt-setspecific.c: Likewise.
13436 * sysdeps/htl/pt-spin.c: Likewise.
13437 * sysdeps/htl/pt-startup.c: Likewise.
13438 * sysdeps/htl/pthread.h: Likewise.
13439 * sysdeps/htl/sem-close.c: Likewise.
13440 * sysdeps/htl/sem-destroy.c: Likewise.
13441 * sysdeps/htl/sem-getvalue.c: Likewise.
13442 * sysdeps/htl/sem-init.c: Likewise.
13443 * sysdeps/htl/sem-open.c: Likewise.
13444 * sysdeps/htl/sem-post.c: Likewise.
13445 * sysdeps/htl/sem-timedwait.c: Likewise.
13446 * sysdeps/htl/sem-trywait.c: Likewise.
13447 * sysdeps/htl/sem-unlink.c: Likewise.
13448 * sysdeps/htl/sem-wait.c: Likewise.
13449 * sysdeps/hurd/htl/pt-kill.c: Likewise.
13450 * sysdeps/i386/htl/pt-machdep.h: Likewise.
13451 * sysdeps/mach/htl/pt-block.c: Likewise.
13452 * sysdeps/mach/htl/pt-spin.c: Likewise.
13453 * sysdeps/mach/htl/pt-stack-alloc.c: Likewise.
13454 * sysdeps/mach/htl/pt-thread-alloc.c: Likewise.
13455 * sysdeps/mach/htl/pt-thread-start.c: Likewise.
13456 * sysdeps/mach/htl/pt-thread-terminate.c: Likewise.
13457 * sysdeps/mach/htl/pt-timedblock.c: Likewise.
13458 * sysdeps/mach/htl/pt-wakeup.c: Likewise.
13459 * sysdeps/mach/hurd/htl/bits/pthread-np.h: Likewise.
13460 * sysdeps/mach/hurd/htl/bits/types/struct___pthread_mutex.h: Likewise.
13461 * sysdeps/mach/hurd/htl/pt-attr-setstackaddr.c: Likewise.
13462 * sysdeps/mach/hurd/htl/pt-attr-setstacksize.c: Likewise.
13463 * sysdeps/mach/hurd/htl/pt-docancel.c: Likewise.
13464 * sysdeps/mach/hurd/htl/pt-hurd-cond-timedwait.c: Likewise.
13465 * sysdeps/mach/hurd/htl/pt-hurd-cond-wait.c: Likewise.
13466 * sysdeps/mach/hurd/htl/pt-mutex-consistent.c: Likewise.
13467 * sysdeps/mach/hurd/htl/pt-mutex-destroy.c: Likewise.
13468 * sysdeps/mach/hurd/htl/pt-mutex-getprioceiling.c: Likewise.
13469 * sysdeps/mach/hurd/htl/pt-mutex-init.c: Likewise.
13470 * sysdeps/mach/hurd/htl/pt-mutex-lock.c: Likewise.
13471 * sysdeps/mach/hurd/htl/pt-mutex-setprioceiling.c: Likewise.
13472 * sysdeps/mach/hurd/htl/pt-mutex-timedlock.c: Likewise.
13473 * sysdeps/mach/hurd/htl/pt-mutex-transfer-np.c: Likewise.
13474 * sysdeps/mach/hurd/htl/pt-mutex-trylock.c: Likewise.
13475 * sysdeps/mach/hurd/htl/pt-mutex-unlock.c: Likewise.
13476 * sysdeps/mach/hurd/htl/pt-mutex.h: Likewise.
13477 * sysdeps/mach/hurd/htl/pt-mutexattr-destroy.c: Likewise.
13478 * sysdeps/mach/hurd/htl/pt-mutexattr-getprioceiling.c: Likewise.
13479 * sysdeps/mach/hurd/htl/pt-mutexattr-getprotocol.c: Likewise.
13480 * sysdeps/mach/hurd/htl/pt-mutexattr-getpshared.c: Likewise.
13481 * sysdeps/mach/hurd/htl/pt-mutexattr-getrobust.c: Likewise.
13482 * sysdeps/mach/hurd/htl/pt-mutexattr-gettype.c: Likewise.
13483 * sysdeps/mach/hurd/htl/pt-mutexattr-init.c: Likewise.
13484 * sysdeps/mach/hurd/htl/pt-mutexattr-setprioceiling.c: Likewise.
13485 * sysdeps/mach/hurd/htl/pt-mutexattr-setprotocol.c: Likewise.
13486 * sysdeps/mach/hurd/htl/pt-mutexattr-setpshared.c: Likewise.
13487 * sysdeps/mach/hurd/htl/pt-mutexattr-setrobust.c: Likewise.
13488 * sysdeps/mach/hurd/htl/pt-mutexattr-settype.c: Likewise.
13489 * sysdeps/mach/hurd/htl/pt-sigstate-destroy.c: Likewise.
13490 * sysdeps/mach/hurd/htl/pt-sigstate-init.c: Likewise.
13491 * sysdeps/mach/hurd/htl/pt-sigstate.c: Likewise.
13492 * sysdeps/mach/hurd/htl/pt-sysdep.c: Likewise.
13493 * sysdeps/mach/hurd/htl/pt-sysdep.h: Likewise.
13494 * sysdeps/mach/hurd/i386/htl/pt-machdep.c: Likewise.
13495 * sysdeps/mach/hurd/i386/htl/pt-setup.c: Likewise.
13497 * NEWS: Announce that glibc now builds unpatched on GNU/Hurd.
13498 * README: Remove the mention of out-of-tree patches needed for
13501 * sysdeps/mach/hurd/bits/stat.h [!__USE_MISC && __USE_ATFILE]
13502 (UTIME_NOW, UTIME_OMIT): Define macros.
13504 * htl/cthreads-compat.c (__cthread_detach): Call __pthread_detach
13505 instead of pthread_detach.
13506 (__cthread_fork): Call __pthread_create instead of pthread_create.
13507 (__cthread_keycreate): Call __pthread_key_create instead of
13508 pthread_key_create.
13509 (__cthread_getspecific): Call __pthread_getspecific instead of
13510 pthread_getspecific.
13511 (__cthread_setspecific): Call __pthread_setspecific instead of
13512 pthread_setspecific.
13513 * htl/pt-alloc.c (__pthread_alloc): Call __pthread_mutex_lock and
13514 __pthread_mutex_unlock instead of pthread_mutex_lock and
13515 pthread_mutex_unlock.
13516 * htl/pt-cleanup.c (__pthread_get_cleanup_stack): Rename to
13517 ___pthread_get_cleanup_stack.
13518 (__pthread_get_cleanup_stack): New strong alias.
13519 * htl/pt-create.c: Include <pthreadP.h>.
13520 (entry_point): Call __pthread_exit instead of pthread_exit.
13521 (pthread_create): Rename to __pthread_create.
13522 (pthread_create): New strong alias.
13523 * htl/pt-detach.c (pthread_detach): Rename to __pthread_detach.
13524 (pthread_detach): New strong alias.
13525 (__pthread_detach): Call __pthread_cond_broadcast instead of
13526 pthread_cond_broadcast.
13527 * htl/pt-exit.c: Include <pthreadP.h>.
13528 (__pthread_exit): Call __pthread_setcancelstate and
13529 ___pthread_get_cleanup_stack instead of pthread_setcancelstate and
13530 __pthread_get_cleanup_stack.
13531 * htl/pt-testcancel.c: Include <pthreadP.h>.
13532 (pthread_testcancel): Call __pthread_exit instead of pthread_exit.
13533 * sysdeps/htl/pt-attr-getstack.c: Include <pthreadP.h>
13534 (__pthread_attr_getstack): Call __pthread_attr_getstackaddr and
13535 __pthread_attr_getstacksize instead of pthread_attr_getstackaddr and
13536 pthread_attr_getstacksize.
13537 * sysdeps/htl/pt-attr-getstackaddr.c (pthread_attr_getstackaddr):
13538 Rename to __pthread_attr_getstackaddr.
13539 (pthread_attr_getstackaddr): New strong alias.
13540 * sysdeps/htl/pt-attr-getstacksize.c (pthread_attr_getstacksize):
13541 Rename to __pthread_attr_getstacksize.
13542 (pthread_attr_getstacksize): New strong alias.
13543 * sysdeps/htl/pt-attr-setstack.c: Include <pthreadP.h>.
13544 (pthread_attr_setstack): Rename to __pthread_attr_setstack.
13545 (pthread_attr_setstack): New strong alias.
13546 (__pthread_attr_setstack): Call __pthread_attr_getstacksize,
13547 __pthread_attr_setstacksize and __pthread_attr_setstackaddr instead of
13548 pthread_attr_getstacksize, pthread_attr_setstacksize and
13549 pthread_attr_setstackaddr.
13550 * sysdeps/htl/pt-attr-setstackaddr.c (pthread_attr_setstackaddr):
13551 Rename to __pthread_attr_setstackaddr.
13552 (pthread_attr_setstackaddr): New strong alias.
13553 * sysdeps/htl/pt-attr-setstacksize.c (pthread_attr_setstacksize):
13554 Rename to __pthread_attr_setstacksize.
13555 (pthread_attr_setstacksize): New strong alias.
13556 * sysdeps/htl/pt-cond-timedwait.c: Include <pthreadP.h>.
13557 (__pthread_cond_timedwait_internal): Use __pthread_exit instead of
13559 * sysdeps/htl/pt-key-create.c: Include <pthreadP.h>.
13560 (__pthread_key_create): New hidden def.
13561 * sysdeps/htl/pt-key.h: Include <pthreadP.h>.
13562 * sysdeps/htl/pthreadP.h (_pthread_mutex_init,
13563 __pthread_cond_broadcast, __pthread_create, __pthread_detach,
13564 __pthread_exit, __pthread_key_create, __pthread_getspecific,
13565 __pthread_setspecific, __pthread_setcancelstate,
13566 __pthread_attr_getstackaddr, __pthread_attr_setstackaddr,
13567 __pthread_attr_getstacksize, __pthread_attr_setstacksize,
13568 __pthread_attr_setstack, ___pthread_get_cleanup_stack): New
13570 (__pthread_key_create, _pthread_mutex_init): New hidden declarations.
13571 * sysdeps/mach/hurd/htl/pt-attr-setstackaddr.c
13572 (pthread_attr_setstackaddr): Rename to __pthread_attr_setstackaddr.
13573 (pthread_attr_setstackaddr): New strong alias.
13574 * sysdeps/mach/hurd/htl/pt-attr-setstacksize.c
13575 (pthread_attr_setstacksize): Rename to __pthread_attr_setstacksize.
13576 (pthread_attr_setstacksize): New strong alias.
13577 * sysdeps/mach/hurd/htl/pt-docancel.c: Include <pthreadP.h>.
13578 (call_exit): Call __pthread_exit instead of pthread_exit.
13579 * sysdeps/mach/hurd/htl/pt-mutex-init.c: Include <pthreadP.h>.
13580 (_pthread_mutex_init): New hidden definition.
13581 * sysdeps/mach/hurd/htl/pt-sysdep.c: Include <pthreadP.h>.
13582 (_init_routine): Call __pthread_attr_init and __pthread_attr_setstack
13583 instead of pthread_attr_init and pthread_attr_setstack.
13585 * hurd/hurdauth.c (_S_msg_add_auth): Call __vm_allocate and
13586 __vm_deallocate instead of vm_allocate and vm_deallocate.
13587 * hurd/hurdmsg.c (_S_msg_set_env_variable): Call __setenv instead of
13589 * hurd/hurdprio.c (_hurd_priority_which_map): Call __geteuid instead
13591 * hurd/path-lookup.c (file_name_path_scan): Call __strdup instead of
13593 * hurd/siginfo.c: Include <libioP.h>.
13594 (_hurd_siginfo_handler): Call _IO_puts instead of puts.
13595 * hurd/xattr.c (_hurd_xattr_get, _hurd_xattr_set): Call __munmap instead of
13597 * mach/devstream.c: Include <libioP.h>.
13598 (dealloc_ref): Call __mach_port_deallocate instead of
13599 mach_port_deallocate.
13600 (mach_open_devstream): Call _IO_fopencookie instead of fopencookie.
13601 Call __mach_port_deallocate instead of mach_port_deallocate.
13602 * stdlib/canonicalize.c (__realpath): Call __pathconf instead of
13604 * sysdeps/mach/hurd/ifreq.c (__ifreq): Call __munmap instead of
13606 * sysdeps/mach/hurd/ifreq.h (__if_freereq): Likewise.
13607 * sysdeps/mach/hurd/ptrace.c (ptrace): Call __kill instead of kill.
13608 * sysdeps/mach/hurd/sendfile64.c (sendfile64): Call __munmap instead
13610 * sysdeps/mach/hurd/socketpair.c (__socketpair): Call __close instead
13612 * sysdeps/posix/clock_getres.c (realtime_getres): Call __sysconf
13613 instead of sysconf.
13614 * sysdeps/pthread/timer_gettime.c (timer_gettime): Call
13615 __clock_gettime instead of clock_gettime.
13616 * sysdeps/pthread/timer_routines.c (thread_func): Likewise.
13617 * sysdeps/pthread/timer_settime.c (timer_settime): Likewise.
13618 * sysdeps/unix/bsd/gtty.c (gtty): Call __ioctl instead of ioctl.
13619 * sysdeps/unix/bsd/stty.c (stty): Likewise.
13620 * sysdeps/unix/bsd/tcflow.c (tcflow): Call __tcgetattr instead of
13622 * sysdeps/unix/clock_nanosleep.c (__clock_nanosleep): Call
13623 __clock_gettime and __nanosleep instead of clock_gettime and
13625 * hurd/catch-signal.c (hurd_catch_signal): Rename to
13626 __hurd_catch_signal.
13627 (hurd_catch_signal): New strong alias.
13628 (hurd_safe_memset, hurd_safe_copyout, hurd_safe_copyin): Call
13629 __hurd_catch_signal instead of hurd_catch_signal.
13630 * hurd/exc2signal.c (_hurd_exception2signal): Add hidden def.
13631 * hurd/hurdexec.c (_hurd_init): Add hidden def.
13632 * hurd/hurdinit.c (_hurd_init): Add hidden def.
13633 * hurd/hurdsig.c: Include <mach/mig_support.h>.
13634 (_hurd_thread_sigstate): Add hidden def.
13635 (_hurd_internal_post_signal): Use __mutex_unlock instead of
13637 * hurd/intern-fd.c (_hurd_intern_fd): Add hidden def.
13638 * hurd/intr-msg.c (_hurd_intr_rpc_mach_msg): Add hidden def.
13639 * hurd/path-lookup.c (hurd_file_name_path_lookup): Rename to
13640 __hurd_file_name_path_lookup.
13641 (hurd_file_name_path_lookup): New strong alias.
13642 (file_name_path_lookup): Call __hurd_file_name_path_lookup instead of
13643 hurd_file_name_path_lookup.
13644 * mach/errstring.c (mach_error_type): Add hidden def.
13645 * mach/msg-destroy.c (__mach_msg_destroy): Add hidden def.
13646 * mach/mutex-init.c (__mutex_init): Add hidden def.
13647 * mach/spin-lock.c (__spin_lock_locked, __spin_lock, __spin_unlock,
13648 __spin_try_lock, __mutex_lock, __mutex_trylock): Add hidden defs.
13649 * mach/spin-solid.c (__spin_lock_solid): Add hidden def.
13650 * sysdeps/mach/hurd/getcwd.c
13651 (_hurd_canonicalize_directory_name_internal): Rename to
13652 __hurd_canonicalize_directory_name_internal.
13653 (_hurd_canonicalize_directory_name_internal): New strong alias.
13654 (__canonicalize_directory_name_internal, __getcwd): Call
13655 __hurd_canonicalize_directory_name_internal instead of
13656 _hurd_canonicalize_directory_name_internal.
13657 * sysdeps/mach/hurd/mig-reply.c: Include <mach/mig_support.h>.
13658 (__mig_get_reply_port, __mig_dealloc_reply_port, __mig_init): Add
13660 * sysdeps/hurd/include/hurd.h: New file.
13661 * sysdeps/hurd/include/hurd/fd.h: New file.
13662 * sysdeps/hurd/include/hurd/signal.h: New file.
13663 * sysdeps/mach/include/lock-intern.h: New file.
13664 * sysdeps/mach/include/mach.h: New file.
13665 * sysdeps/mach/include/mach/mig_support.h: New file.
13666 * sysdeps/mach/include/mach_error.h: New file.
13667 * sysdeps/hurd/include/hurd/signal.h (_hurd_raise_signal): Add hidden
13669 * hurd/hurd-raise.c (_hurd_raise_signal): Add hidden def.
13670 * hurd/Makefile ($(inlines:%=$(objpfx)%.c): Define
13671 _HEADER_H_HIDDEN_DEF macro.
13672 * sysdeps/hurd/include/hurd/fd.h (_hurd_fd_error,
13673 _hurd_fd_error_signal): Add hidden prototype.
13674 [_HURD_FD_H_HIDDEN_DEF] (_hurd_fd_error, _hurd_fd_error_signal): Add
13676 * libio/iolibio.h (_IO_puts): New hidden prototype.
13677 * libio/ioputs.c (_IO_puts): New hidden def.
13678 * sysdeps/mach/hurd/localplt.data: New file.
13680 2018-04-02 Agustina Arzille <avarzille@riseup.net>
13681 Amos Jeffries <squid3@treenet.co.nz>
13682 David Michael <fedora.dm0@gmail.com>
13683 Marco Gerards <marco@gnu.org>
13684 Marcus Brinkmann <marcus@gnu.org>
13685 Neal H. Walfield <neal@gnu.org>
13686 Pino Toscano <toscano.pino@tiscali.it>
13687 Richard Braun <rbraun@sceen.net>
13688 Roland McGrath <roland@gnu.org>
13689 Samuel Thibault <samuel.thibault@ens-lyon.org>
13690 Thomas DiModica <ricinwich@yahoo.com>
13691 Thomas Schwinge <tschwinge@gnu.org>
13693 * htl: New directory.
13694 * sysdeps/htl: New directory.
13695 * sysdeps/hurd/htl: New directory.
13696 * sysdeps/i386/htl: New directory.
13697 * sysdeps/mach/htl: New directory.
13698 * sysdeps/mach/hurd/htl: New directory.
13699 * sysdeps/mach/hurd/i386/htl: New directory.
13700 * nscd/Depend, resolv/Depend, rt/Depend: Add htl dependency.
13701 * sysdeps/mach/hurd/i386/Implies: Add mach/hurd/i386/htl imply.
13702 * sysdeps/mach/hurd/i386/libpthread.abilist: New file.
13704 2018-04-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
13706 * sysdeps/pthread/timer_routines.c (__timer_thread_start): Block all
13707 signals in thread created for runing timers.
13709 2018-04-01 Florian Weimer <fweimer@redhat.com>
13711 * support/support_format_addrinfo.c (support_format_addrinfo):
13712 Include unknown error number in formatted result.
13714 2018-03-29 Florian Weimer <fweimer@redhat.com>
13716 * sysdeps/unix/sysv/linux/i386/tst-bz21269.c (do_test): Also
13719 2018-03-27 Adhemerval Zanella <adhemerval.zanella@linaro.org>
13721 * sysdeps/unix/sysv/linux/arch-fork.h [__ASSUME_CLONE_BACKWARDS]
13722 (arch_fork): Issue INLINE_CLONE_SYSCALL if defined.
13723 * sysdeps/unix/sysv/linux/sparc/kernel-features.h
13724 (__ASSUME_CLONE_BACKWARDS): Define.
13726 2018-03-27 Jesse Hathaway <jesse@mbuki-mvuki.org>
13729 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid): Return
13730 early when linux sentinel value is set.
13732 2018-03-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
13734 * sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_MEMLOCK): Define.
13736 2018-03-27 Andreas Schwab <schwab@suse.de>
13739 * resolv/res_send.c (__res_context_send): Return ENOMEM if
13740 allocation of private copy of nsaddr_list fails.
13742 2018-03-26 Joseph Myers <joseph@codesourcery.com>
13745 * sysdeps/unix/sysv/linux/generic/umount.c: Move to ....
13746 * sysdeps/unix/sysv/linux/umount.c: ... here.
13747 * sysdeps/unix/sysv/linux/arm/umount.c: Remove file.
13748 * sysdeps/unix/sysv/linux/hppa/umount.c: Likewise.
13749 * sysdeps/unix/sysv/linux/ia64/umount.c: Likewise.
13750 * sysdeps/unix/sysv/linux/mips/mips64/umount.c: Likewise.
13751 * sysdeps/unix/sysv/linux/powerpc/powerpc64/umount.c: Likewise.
13752 * sysdeps/unix/sysv/linux/umount.S: Likewise.
13753 * sysdeps/unix/sysv/linux/x86_64/umount.c: Likewise.
13755 2018-03-26 Andreas Schwab <schwab@suse.de>
13757 * elf/elf.h (R_RISCV_BRANCH, R_RISCV_JAL, R_RISCV_CALL)
13758 (R_RISCV_CALL_PLT, R_RISCV_GOT_HI20, R_RISCV_TLS_GOT_HI20)
13759 (R_RISCV_TLS_GD_HI20, R_RISCV_PCREL_HI20, R_RISCV_PCREL_LO12_I)
13760 (R_RISCV_PCREL_LO12_S, R_RISCV_HI20, R_RISCV_LO12_I)
13761 (R_RISCV_LO12_S, R_RISCV_TPREL_HI20, R_RISCV_TPREL_LO12_I)
13762 (R_RISCV_TPREL_LO12_S, R_RISCV_TPREL_ADD, R_RISCV_ADD8)
13763 (R_RISCV_ADD16, R_RISCV_ADD32, R_RISCV_ADD64, R_RISCV_SUB8)
13764 (R_RISCV_SUB16, R_RISCV_SUB32, R_RISCV_SUB64)
13765 (R_RISCV_GNU_VTINHERIT, R_RISCV_GNU_VTENTRY, R_RISCV_ALIGN)
13766 (R_RISCV_RVC_BRANCH, R_RISCV_RVC_JUMP, R_RISCV_RVC_LUI)
13767 (R_RISCV_GPREL_I, R_RISCV_GPREL_S, R_RISCV_TPREL_I)
13768 (R_RISCV_TPREL_S, R_RISCV_RELAX, R_RISCV_SUB6, R_RISCV_SET6)
13769 (R_RISCV_SET8, R_RISCV_SET16, R_RISCV_SET32, R_RISCV_32_PCREL)
13770 (R_RISCV_NUM): Define.
13772 2018-03-25 Samuel Thibault <samuel.thibault@ens-lyon.org>
13774 * include/errno.h [IS_IN(rtld) && !RTLD_PRIVATE_ERRNO]: Do not use the
13775 TLS declaration of errno.
13776 * sysdeps/generic/libc-start.h [!SHARED] (ARCH_SETUP_TLS): Define to
13778 * sysdeps/unix/sysv/linux/powerpc/libc-start.h [!SHARED]
13779 (ARCH_SETUP_TLS): Likewise.
13780 * sysdeps/mach/hurd/libc-start.h: New file copied from
13781 sysdeps/generic/libc-start.h, but define ARCH_SETUP_TLS to empty.
13782 * csu/libc-start.c [!SHARED] (LIBC_START_MAIN): Call ARCH_SETUP_TLS
13783 instead of __libc_setup_tls.
13784 * sysdeps/mach/hurd/i386/init-first.c [!SHARED] (init1): Call
13785 __libc_setup_tls before initializing libpthread and running _hurd_init
13786 which starts the signal thread.
13787 * sysdeps/generic/ldsodefs.h [SHARED] (__pthread_initialize_minimal):
13789 * sysdeps/mach/hurd/bits/errno.h: Regenerate.
13791 2018-03-24 H.J. Lu <hongjiu.lu@intel.com>
13794 * elf/Makefile (tests): Add $(tests-execstack-$(have-z-execstack))
13795 after it is defined.
13797 2018-03-23 Andrew Senkevich <andrew.senkevich@intel.com>
13798 Max Horn <max@quendi.de>
13802 * sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S: Fixed
13804 * string/test-memmove.c (do_test2): New testcase.
13806 2018-03-22 Joseph Myers <joseph@codesourcery.com>
13808 * sysdeps/generic/frame.h: Remove file.
13809 * sysdeps/arm/frame.h: Likewise.
13810 * sysdeps/hppa/frame.h: Likewise.
13811 * sysdeps/generic/sigcontextinfo.h (SIGCONTEXT_EXTRA_ARGS): Remove
13813 (GET_FRAME): Likewise.
13814 (GET_STACK): Likewise.
13815 (CALL_SIGHANDLER): Likewise.
13816 * sysdeps/mach/hurd/i386/sigcontextinfo.h (SIGCONTEXT_EXTRA_ARGS):
13818 (GET_FRAME): Likewise.
13819 (GET_STACK): Likewise.
13820 (CALL_SIGHANDLER): Likewise.
13821 * sysdeps/unix/sysv/linux/alpha/sigcontextinfo.h
13822 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13823 (GET_FRAME): Likewise.
13824 (GET_STACK): Likewise.
13825 (CALL_SIGHANDLER): Likewise.
13826 * sysdeps/unix/sysv/linux/arm/sigcontextinfo.h
13827 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13828 (GET_FRAME): Likewise.
13829 (GET_STACK): Likewise.
13830 (ADVANCE_STACK_FRAME): Likewise.
13831 (CALL_SIGHANDLER): Likewise.
13832 * sysdeps/unix/sysv/linux/i386/sigcontextinfo.h
13833 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13834 (GET_FRAME): Likewise.
13835 (GET_STACK): Likewise.
13836 (CALL_SIGHANDLER): Likewise.
13837 * sysdeps/unix/sysv/linux/ia64/sigcontextinfo.h
13838 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13839 (GET_FRAME): Likewise.
13840 (GET_STACK): Likewise.
13841 (CALL_SIGHANDLER): Likewise.
13842 * sysdeps/unix/sysv/linux/m68k/sigcontextinfo.h
13843 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13844 (GET_FRAME): Likewise.
13845 (GET_STACK): Likewise.
13846 (CALL_SIGHANDLER): Likewise.
13847 * sysdeps/unix/sysv/linux/microblaze/sigcontextinfo.h
13848 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13849 (GET_FRAME): Likewise.
13850 (GET_STACK): Likewise.
13851 (CALL_SIGHANDLER): Likewise.
13852 * sysdeps/unix/sysv/linux/mips/sigcontextinfo.h
13853 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13854 (GET_FRAME): Likewise.
13855 (GET_STACK): Likewise.
13856 (CALL_SIGHANDLER): Likewise.
13857 * sysdeps/unix/sysv/linux/powerpc/sigcontextinfo.h
13858 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13859 (GET_FRAME): Likewise.
13860 (GET_STACK): Likewise.
13861 (CALL_SIGHANDLER): Likewise.
13862 * sysdeps/unix/sysv/linux/riscv/sigcontextinfo.h
13863 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13864 (GET_FRAME): Likewise.
13865 (GET_STACK): Likewise.
13866 (CALL_SIGHANDLER): Likewise.
13867 * sysdeps/unix/sysv/linux/s390/sigcontextinfo.h
13868 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13869 (GET_FRAME): Likewise.
13870 (GET_STACK): Likewise.
13871 (CALL_SIGHANDLER): Likewise.
13872 * sysdeps/unix/sysv/linux/sh/sigcontextinfo.h
13873 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13874 (GET_FRAME): Likewise.
13875 (GET_STACK): Likewise.
13876 (CALL_SIGHANDLER): Likewise.
13877 * sysdeps/unix/sysv/linux/sparc/sparc32/sigcontextinfo.h
13878 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13879 (FIRST_FRAME_POINTER): Likewise.
13880 (ADVANCE_STACK_FRAME): Likewise.
13881 (GET_STACK): Likewise.
13882 (GET_FRAME): Likewise.
13883 (CALL_SIGHANDLER): Likewise.
13884 * sysdeps/unix/sysv/linux/sparc/sparc64/sigcontextinfo.h
13885 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13886 (ADVANCE_STACK_FRAME): Likewise.
13887 (GET_STACK): Likewise.
13888 (GET_FRAME): Likewise.
13889 (CALL_SIGHANDLER): Likewise.
13890 * sysdeps/unix/sysv/linux/tile/sigcontextinfo.h
13891 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13892 (GET_FRAME): Likewise.
13893 (GET_STACK): Likewise.
13894 (CALL_SIGHANDLER): Likewise.
13895 * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h
13896 (SIGCONTEXT_EXTRA_ARGS): Likewise.
13897 (GET_FRAME): Likewise.
13898 (GET_STACK): Likewise.
13899 (CALL_SIGHANDLER): Likewise.
13901 2018-03-21 Joseph Myers <joseph@codesourcery.com>
13903 * sysdeps/x86_64/backtrace.c: Move to ....
13904 * debug/backtrace.c: ... here.
13905 * sysdeps/aarch64/backtrace.c: Remove file.
13906 * sysdeps/alpha/backtrace.c: Likewise.
13907 * sysdeps/hppa/backtrace.c: Likewise.
13908 * sysdeps/ia64/backtrace.c: Likewise.
13909 * sysdeps/mips/backtrace.c: Likewise.
13910 * sysdeps/nios2/backtrace.c: Likewise.
13911 * sysdeps/riscv/backtrace.c: Likewise.
13912 * sysdeps/sh/backtrace.c: Likewise.
13913 * sysdeps/tile/backtrace.c: Likewise.
13915 2018-03-20 Joseph Myers <joseph@codesourcery.com>
13918 * sysdeps/powerpc/bits/mathinline.h (fdim): Remove inline
13921 * sysdeps/sparc/fpu/bits/mathinline.h: Remove file.
13924 * stdlib/random_r.c (__random_r): Use unsigned arithmetic for
13925 possibly overflowing computations.
13927 2018-03-20 Samuel Thibault <samuel.thibault@ens-lyon.org>
13929 * manual/errno.texi (EOWNERDEAD, ENOTRECOVERABLE): Remove errno
13930 values from Linux-specific section now that it is in the GNU section.
13931 * sysdeps/gnu/errlist.c: Regenerate.
13933 2018-03-20 Joseph Myers <joseph@codesourcery.com>
13935 * math/Makefile (libm-narrow-fns): Add sub.
13936 (libm-test-funcs-narrow): Likewise.
13937 * math/Versions (GLIBC_2.28): Add narrowing subtract functions.
13938 * math/bits/mathcalls-narrow.h (sub): Use __MATHCALL_NARROW.
13939 * math/gen-auto-libm-tests.c (test_functions): Add sub.
13940 * math/math-narrow.h (CHECK_NARROW_SUB): New macro.
13941 (NARROW_SUB_ROUND_TO_ODD): Likewise.
13942 (NARROW_SUB_TRIVIAL): Likewise.
13943 * sysdeps/ieee754/float128/float128_private.h (__fsubl): New
13945 (__dsubl): Likewise.
13946 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add fsub and
13948 (CFLAGS-nldbl-dsub.c): New variable.
13949 (CFLAGS-nldbl-fsub.c): Likewise.
13950 * sysdeps/ieee754/ldbl-opt/Versions (GLIBC_2.28): Add
13952 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl_dsubl): New
13954 * manual/arith.texi (Misc FP Arithmetic): Document fsub, fsubl,
13955 dsubl, fMsubfN, fMsubfNx, fMxsubfN and fMxsubfNx.
13956 * math/auto-libm-test-in: Add tests of sub.
13957 * math/auto-libm-test-out-narrow-sub: New generated file.
13958 * math/libm-test-narrow-sub.inc: New file.
13959 * sysdeps/i386/fpu/s_f32xsubf64.c: Likewise.
13960 * sysdeps/ieee754/dbl-64/s_f32xsubf64.c: Likewise.
13961 * sysdeps/ieee754/dbl-64/s_fsub.c: Likewise.
13962 * sysdeps/ieee754/float128/s_f32subf128.c: Likewise.
13963 * sysdeps/ieee754/float128/s_f64subf128.c: Likewise.
13964 * sysdeps/ieee754/float128/s_f64xsubf128.c: Likewise.
13965 * sysdeps/ieee754/ldbl-128/s_dsubl.c: Likewise.
13966 * sysdeps/ieee754/ldbl-128/s_f64xsubf128.c: Likewise.
13967 * sysdeps/ieee754/ldbl-128/s_fsubl.c: Likewise.
13968 * sysdeps/ieee754/ldbl-128ibm/s_dsubl.c: Likewise.
13969 * sysdeps/ieee754/ldbl-128ibm/s_fsubl.c: Likewise.
13970 * sysdeps/ieee754/ldbl-96/s_dsubl.c: Likewise.
13971 * sysdeps/ieee754/ldbl-96/s_fsubl.c: Likewise.
13972 * sysdeps/ieee754/ldbl-opt/nldbl-dsub.c: Likewise.
13973 * sysdeps/ieee754/ldbl-opt/nldbl-fsub.c: Likewise.
13974 * sysdeps/ieee754/soft-fp/s_dsubl.c: Likewise.
13975 * sysdeps/ieee754/soft-fp/s_fsub.c: Likewise.
13976 * sysdeps/ieee754/soft-fp/s_fsubl.c: Likewise.
13977 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
13978 * sysdeps/mach/hurd/i386/libm.abilist: Likewise.
13979 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
13980 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
13981 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
13982 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
13983 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
13984 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
13985 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
13986 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
13987 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
13988 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
13989 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
13990 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
13991 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Likewise.
13992 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Likewise.
13993 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Likewise.
13994 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Likewise.
13995 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
13996 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
13997 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
13998 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
13999 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
14000 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
14001 * sysdeps/unix/sysv/linux/tile/tilegx32/libm.abilist: Likewise.
14002 * sysdeps/unix/sysv/linux/tile/tilegx64/libm.abilist: Likewise.
14003 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
14004 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
14006 2018-03-19 Joseph Myers <joseph@codesourcery.com>
14009 * elf/elf.h (SHT_X86_64_UNWIND): New macro.
14011 2018-03-19 Wilco Dijkstra <wdijkstr@arm.com>
14013 * benchtests/bench-timing.h (attribute_hidden): Undefine.
14015 2018-03-18 Richard Braun <rbraun@sceen.net>
14017 * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Use a temporary
14020 2018-03-18 Agustina Arzille <avarzille@riseup.net>
14022 * sysdeps/mach/libc-lock.h (__libc_cleanup_frame): Define structure.
14023 (__libc_cleanup_fct): Define function.
14024 (__libc_cleanup_region_start, __libc_cleanup_region_end,
14025 __libc_cleanup_end): Rewrite implementation using
14026 __attribute__ ((__cleanup__)).
14027 (__libc_cleanup_push, __libc_cleanup_pop): New macros.
14028 * hurd/Makefile (routines): Add hurdlock.
14029 * hurd/Versions (GLIBC_PRIVATE): Added new entry to export the above
14031 (HURD_CTHREADS_0.3): Remove __libc_getspecific.
14032 * hurd/hurdpid.c: Include <lowlevellock.h>
14033 (_S_msg_proc_newids): Use lll_wait to synchronize.
14034 * hurd/hurdsig.c: (reauth_proc): Use __mutex_lock and __mutex_unlock.
14035 * hurd/setauth.c: Include <hurdlock.h>, use integer for synchronization.
14036 * mach/Makefile (lock-headers): Remove machine-lock.h.
14037 * mach/lock-intern.h: Include <lowlevellock.h> instead of
14039 (__spin_lock_t): New type.
14040 (__SPIN_LOCK_INITIALIZER): New macro.
14041 (__spin_lock, __spin_unlock, __spin_try_lock, __spin_lock_locked,
14042 __mutex_init, __mutex_lock_solid, __mutex_unlock_solid, __mutex_lock,
14043 __mutex_unlock, __mutex_trylock): Use lll to implement locks.
14044 * mach/mutex-init.c: Include <lowlevellock.h> instead of <cthreads.h>.
14045 (__mutex_init): Initialize with lll.
14046 * manual/errno.texi (EOWNERDEAD, ENOTRECOVERABLE): New errno values.
14047 * sysdeps/mach/Makefile: Add libmachuser as dependencies for libs
14049 * sysdeps/mach/hurd/bits/errno.h: Regenerate.
14050 * sysdeps/mach/hurd/cthreads.c (__libc_getspecific): Remove function.
14051 * sysdeps/mach/hurd/bits/libc-lock.h: Remove file.
14052 * sysdeps/mach/hurd/setpgid.c: Include <lowlevellock.h>.
14053 (__setpgid): Use lll for synchronization.
14054 * sysdeps/mach/hurd/setsid.c: Likewise with __setsid.
14055 * sysdeps/mach/bits/libc-lock.h: Include <tls.h> and <lowlevellock.h>
14056 instead of <cthreads.h>.
14057 (_IO_lock_inexpensive): New macro
14058 (__libc_lock_recursive_t, __rtld_lock_recursive_t): New structures.
14059 (__libc_lock_self0): New declaration.
14060 (__libc_lock_owner_self): New macro.
14061 (__libc_key_t): Remove type.
14062 (_LIBC_LOCK_INITIALIZER): New macro.
14063 (__libc_lock_define_initialized, __libc_lock_init, __libc_lock_fini,
14064 __libc_lock_fini_recursive, __rtld_lock_fini_recursive,
14065 __libc_lock_lock, __libc_lock_trylock, __libc_lock_unlock,
14066 __libc_lock_define_initialized_recursive,
14067 __rtld_lock_define_initialized_recursive,
14068 __libc_lock_init_recursive, __libc_lock_trylock_recursive,
14069 __libc_lock_lock_recursive, __libc_lock_unlock_recursive,
14070 __rtld_lock_initialize, __rtld_lock_trylock_recursive,
14071 __rtld_lock_lock_recursive, __rtld_lock_unlock_recursive
14072 __libc_once_define, __libc_mutex_unlock): Reimplement with lll.
14073 (__libc_lock_define_recursive, __rtld_lock_define_recursive,
14074 _LIBC_LOCK_RECURSIVE_INITIALIZER, _RTLD_LOCK_RECURSIVE_INITIALIZER):
14076 Include <libc-lockP.h> to reimplement libc_key* with pthread_key*.
14077 * hurd/hurdlock.c: New file.
14078 * hurd/hurdlock.h: New file.
14079 * mach/lowlevellock.h: New file
14081 2018-03-18 Samuel Thibault <samuel.thibault@ens-lyon.org>
14083 * sysdeps/mach/hurd/cthreads.c: Include <cthreads.h>.
14084 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Return ELOOP
14085 when opening a symlink with O_NOFOLLOW.
14086 * hurd/hurdlookup.c (__hurd_file_name_lookup): Do not append '/' to
14087 path when flags contains O_NOFOLLOW.
14088 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Return ENOTDIR
14089 if flags contains O_DIRECTORY and the result is a directory.
14090 * sysdeps/mach/hurd/i386/init-first.c (init): Also find ELF headers by
14091 oneself when the pointer given in D is nul (as set by ext2fs).
14092 * sysdeps/mach/hurd/mlockall.c: New file.
14093 * sysdeps/mach/hurd/munlockall.c: New file.
14095 2018-03-17 Samuel Thibault <samuel.thibault@ens-lyon.org>
14097 * hurd/hurdsig.c: Include <pthread.h>.
14098 (_hurdsig_init): Call pthread_getattr_np and pthread_attr_getstack to
14099 get the signal thread stack layout.
14100 * hurd/Makefile (headers): Remove threadvar.h.
14101 (inline-headers): Remove threadvar.h.
14102 * hurd/Versions (GLIBC_2.0: Remove __hurd_sigthread_stack_base,
14103 __hurd_sigthread_stack_end, __hurd_sigthread_variables,
14104 __hurd_threadvar_max, __hurd_errno_location.
14105 (HURD_CTHREADS_0.3): Add pthread_getattr_np, pthread_attr_getstack.
14106 * hurd/hurd/signal.h: Do not include <hurd/threadvar.h>.
14107 (_hurd_self_sigstate): Use THREAD_SELF to get _hurd_sigstate.
14108 (_HURD_SIGNAL_H_EXTERN_INLINE): Use THREAD_SELF to get _hurd_sigstate,
14109 unless TLS is not initialized yet, in which case we do not need a
14110 critical section yet anyway.
14111 * hurd/hurd/threadvar.h: Include <tls.h>, do not include
14113 (__hurd_sigthread_variables, __hurd_threadvar_max): Remove variables
14115 (__hurd_threadvar_index): Remove enum.
14116 (_HURD_THREADVAR_H_EXTERN_INLINE): Remove macro.
14117 (__hurd_threadvar_location_from_sp,__hurd_threadvar_location): Remove
14119 (__hurd_reply_port0): New variable declaration.
14120 (__hurd_local_reply_port): New macro.
14121 * hurd/hurdsig.c (__hurd_sigthread_variables): Remove variable.
14122 (interrupted_reply_port_location): Add thread_t parameter. Use it
14123 with THREAD_TCB to access thread-local variables.
14124 (_hurdsig_abort_rpcs): Pass ss->thread to
14125 interrupted_reply_port_location.
14126 (_hurd_internal_post_signal): Likewise.
14127 (_hurdsig_init): Use presence of cthread_fork instead of
14128 __hurd_threadvar_stack_mask to start signal thread by hand.
14129 Remove signal thread threadvar initialization.
14130 * hurd/hurdstartup.c: Do not include <hurd/threadvar.h>
14131 * hurd/sigunwind.c: Include <hurd/threadvar.h>
14132 (_hurdsig_longjmp_from_handler): Use __hurd_local_reply_port instead
14134 * sysdeps/mach/hurd/Versions (libc.GLIBC_PRIVATE): Add
14136 (ld.GLIBC_2.0): Remove __hurd_sigthread_stack_base,
14137 __hurd_sigthread_stack_end, __hurd_sigthread_variables.
14138 (ld.GLIBC_PRIVATE): Add __libc_lock_self0.
14139 * sysdeps/mach/hurd/cthreads.c: Add __libc_lock_self0.
14140 * sysdeps/mach/hurd/dl-sysdep.c (errno, __hurd_sigthread_stack_base,
14141 __hurd_sigthread_stack_end, __hurd_sigthread_variables, threadvars,
14142 __hurd_threadvar_stack_offset, __hurd_threadvar_stack_mask): Do not
14144 * sysdeps/mach/hurd/errno-loc.c: Do not include <errno.h> and
14145 <hurd/threadvar.h>.
14146 [IS_IN(rtld)] (rtld_errno): New variable.
14147 [IS_IN(rtld)] (__errno_location): New weak function.
14148 [!IS_IN(rtld)]: Include "../../../csu/errno-loc.c".
14149 * sysdeps/mach/hurd/errno.c: Remove file.
14150 * sysdeps/mach/hurd/fork.c: Include <hurd/threadvar.h>
14151 (__fork): Remove THREADVAR_SPACE macro and its use.
14152 * sysdeps/mach/hurd/i386/init-first.c (__hurd_threadvar_max): Remove
14154 (init): Do not initialize threadvar.
14155 * sysdeps/mach/hurd/i386/libc.abilist (__hurd_threadvar_max): Remove
14157 * sysdeps/mach/hurd/i386/sigreturn.c (__sigreturn): Use
14158 __hurd_local_reply_port instead of threadvar.
14159 * sysdeps/mach/hurd/i386/tls.h (tcbhead_t): Add reply_port and
14160 _hurd_sigstate fields.
14161 (HURD_DESC_TLS, __LIBC_NO_TLS, THREAD_TCB): New macro.
14162 * sysdeps/mach/hurd/i386/trampoline.c: Remove outdated comment.
14163 * sysdeps/mach/hurd/libc-lock.h: Do not include <hurd/threadvar.h>.
14164 (__libc_lock_owner_self): Use &__libc_lock_self0 and THREAD_SELF
14165 instead of threadvar.
14166 * sysdeps/mach/hurd/libc-tsd.h: Remove file.
14167 * sysdeps/mach/hurd/mig-reply.c (GETPORT, reply_port): Remove macros.
14168 (use_threadvar, global_reply_port): Remove variables.
14169 (__hurd_reply_port0): New variable.
14170 (__mig_get_reply_port): Use __hurd_local_reply_port and
14171 __hurd_reply_port0 instead of threadvar.
14172 (__mig_dealloc_reply_port): Likewise.
14173 (__mig_init): Do not initialize threadvar.
14174 * sysdeps/mach/hurd/profil.c: Fix comment.
14175 * hurd/Versions (HURD_CTHREADS_0.3): Rename weak refs cthread_fork,
14176 cthread_detach, pthread_getattr_np, pthread_attr_getstack,
14177 cthread_keycreate, cthread_getspecific, cthread_setspecific to
14178 __cthread_fork, __cthread_detach, __pthread_getattr_np,
14179 __pthread_attr_getstack, __cthread_keycreate, __cthread_getspecific,
14180 __cthread_setspecific.
14181 * hurd/hurdsig.c (_hurdsig_init): Use __cthread_fork,
14182 __cthread_detach, __pthread_getattr_np, __pthread_attr_getstack,
14183 __cthread_t instead of cthread_fork, cthread_detach,
14184 pthread_getattr_np, pthread_attr_getstack.
14185 * sysdeps/mach/hurd/cthreads.c (cthread_keycreate): Rename to
14186 __cthread_keycreate.
14187 (cthread_getspecific): Rename to __cthread_getspecific.
14188 (cthread_setspecific): Rename to __cthread_setspecific.
14189 (__libc_getspecific): Use __cthread_getspecific instead of
14190 cthread_getspecific.
14191 * sysdeps/mach/hurd/libc-lock.h (__libc_key_create): Use
14192 __cthread_keycreate instead of cthread_keycreate.
14193 (__libc_setspecific): Use __cthread_setspecific instead of
14194 cthread_setspecific.
14195 * sysdeps/mach/libc-lock.h (__libc_key_create, __libc_setspecific):
14197 * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Always include
14198 <dl-sysdep.h>. Test for value of RTLD_PRIVATE_ERRNO instead of
14199 testing whether it is defined.
14201 2018-03-16 Samuel Thibault <samuel.thibault@ens-lyon.org>
14203 * sysdeps/generic/thread_state.h (MACHINE_NEW_THREAD_STATE_FLAVOR):
14205 * sysdeps/mach/thread_state.h (MACHINE_THREAD_STATE_FIX_NEW): New macro.
14206 * sysdeps/mach/i386/thread_state.h
14207 (MACHINE_NEW_THREAD_STATE_FLAVOR): New macro, defined to
14209 (MACHINE_THREAD_STATE_FLAVOR): Define to i386_REGS_SEGS_STATE instead of
14211 (MACHINE_THREAD_STATE_FIX_NEW): New macro, reads segments.
14213 * sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler): Use
14214 i386_REGS_SEGS_STATE instead of i386_THREAD_STATE.
14216 * sysdeps/mach/hurd/i386/tls.h (TCB_ALIGNMENT, HURD_SEL_LDT): New
14218 (_hurd_tls_fork): Add original thread parameter, Duplicate existing LDT
14219 descriptor instead of creating a new one.
14220 (_hurd_tls_new): New function, creates a new descriptor and updates tcb.
14222 * mach/setup-thread.c: Include <ldsodefs.h>.
14223 (__mach_setup_thread): Call _dl_allocate_tls, pass
14224 MACHINE_NEW_THREAD_STATE_FLAVOR to __thread_set_state instead of
14225 MACHINE_THREAD_STATE_FLAVOR, before getting
14226 MACHINE_THREAD_STATE_FLAVOR, calling _hurd_tls_new, and setting
14227 MACHINE_THREAD_STATE_FLAVOR with the result.
14228 * hurd/hurdfault.c (_hurdsig_fault_init): Call
14229 MACHINE_THREAD_STATE_FIX_NEW.
14230 * sysdeps/mach/hurd/fork.c (__fork): Call _hurd_tls_fork for sigthread
14231 too. Add original thread parameter.
14233 2018-03-16 Joseph Myers <joseph@codesourcery.com>
14235 * sysdeps/x86/fpu/bits/mathinline.h [__USE_MISC] (__finite):
14236 Remove inline function.
14238 * sysdeps/i386/fpu/libm-test-ulps: Update.
14239 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
14241 2018-03-16 Wilco Dijkstra <wdijkstr@arm.com>
14243 * sysdeps/m68k/m680x0/fpu/mathimpl.h (__ieee754_sqrt): Revert previous
14246 2018-03-15 Joseph Myers <joseph@codesourcery.com>
14248 * sysdeps/x86/fpu/bits/mathinline.h [__FAST_MATH__]
14249 (__sincos_code): Remove define and undefine.
14250 [__FAST_MATH__] (__sincos): Remove inline function.
14251 [__FAST_MATH__] (__sincosf): Remove inline function.
14252 [__FAST_MATH__] (__sincosl): Remove inline function.
14253 (__atan2l): Remove inline functions.
14254 [!__GNUC_PREREQ (3, 4)] (__atan2_code): Remove macro.
14255 [!__GNUC_PREREQ (3, 4) && __FAST_MATH__] (atan2): Remove inline
14257 (floor): Remove inline function.
14259 [__FAST_MATH__] (__ldexp_code): Remove macro.
14260 [__FAST_MATH__] (ldexp): Remove inline function.
14261 [__FAST_MATH__ && __USE_ISOC99] (ldexpf): Likewise.
14262 [__FAST_MATH__ && __USE_ISOC99] (ldexpl): Likewise.
14263 [__FAST_MATH__ && __USE_ISOC99] (rint): Likewise.
14264 [__USE_ISOC99] (__lrint_code): Remove macro.
14265 [__USE_ISOC99] (__llrint_code): Likewise.
14266 [__USE_ISOC99] (lrintf): Remove inline function.
14267 [__USE_ISOC99] (lrint): Likewise.
14268 [__USE_ISOC99] (lrintl): Likewise.
14269 [__USE_ISOC99] (llrint): Likewise.
14270 [__USE_ISOC99] (llrintf): Likewise.
14271 [__USE_ISOC99] (llrintl): Likewise.
14273 2018-03-15 Wilco Dijkstra <wdijkstr@arm.com>
14275 * sysdeps/aarch64/fpu/math_private.h (__ieee754_sqrt): Remove.
14276 (__ieee754_sqrtf): Remove.
14277 * sysdeps/alpha/fpu/math_private.h (__ieee754_sqrt): Remove.
14278 (__ieee754_sqrtf): Remove.
14279 * sysdeps/generic/math-type-macros.h (M_SQRT): Use sqrt.
14280 * sysdeps/m68k/m680x0/fpu/mathimpl.h (__ieee754_sqrt): Remove.
14281 * sysdeps/powerpc/fpu/math_private.h (__ieee754_sqrt): Remove.
14282 (__ieee754_sqrtf): Remove.
14283 * sysdeps/s390/fpu/bits/mathinline.h: Remove file.
14284 * sysdeps/sparc/fpu/bits/mathinline.h (sqrt) Remove.
14287 (__ieee754_sqrt): Remove.
14288 (__ieee754_sqrtf): Remove.
14289 (__ieee754_sqrtl): Remove.
14290 * sysdeps/m68k/m680x0/fpu/mathimpl.h (__ieee754_sqrt): Remove.
14291 * sysdeps/x86/fpu/math_private.h (__ieee754_sqrt): Remove.
14292 * sysdeps/x86_64/fpu/math_private.h (__ieee754_sqrt): Remove.
14293 (__ieee754_sqrtf): Remove.
14294 (__ieee754_sqrtl): Remove.
14296 2018-03-15 Wilco Dijkstra <wdijkstr@arm.com>
14298 * sysdeps/ieee754/dbl-64/e_acosh.c (__ieee754_acosh): Use sqrt.
14299 * sysdeps/ieee754/dbl-64/e_gamma_r.c (gamma_positive): Likewise.
14300 * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Likewise.
14301 * sysdeps/ieee754/dbl-64/e_j0.c (__ieee754_j0): Likewise.
14302 * sysdeps/ieee754/dbl-64/e_j1.c (__ieee754_j1): Likewise.
14303 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn): Likewise.
14304 * sysdeps/ieee754/dbl-64/s_asinh.c (__asinh): Likewise.
14305 * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c (__ieee754_acosh):
14307 * sysdeps/ieee754/flt-32/e_acosf.c (__ieee754_acosf): Likewise.
14308 * sysdeps/ieee754/flt-32/e_acoshf.c (__ieee754_acoshf): Likewise.
14309 * sysdeps/ieee754/flt-32/e_asinf.c (__ieee754_asinf): Likewise.
14310 * sysdeps/ieee754/flt-32/e_gammaf_r.c (gammaf_positive): Likewise.
14311 * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf): Likewise.
14312 * sysdeps/ieee754/flt-32/e_j0f.c (__ieee754_j0f): Likewise.
14313 * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_j1f): Likewise.
14314 * sysdeps/ieee754/flt-32/e_powf.c (__ieee754_powf): Likewise.
14315 * sysdeps/ieee754/flt-32/s_asinhf.c (__asinhf): Likewise.
14316 * sysdeps/ieee754/ldbl-128/e_acoshl.c (__ieee754_acoshl): Use sqrtl.
14317 * sysdeps/ieee754/ldbl-128/e_acosl.c (__ieee754_acosl): Likewise.
14318 * sysdeps/ieee754/ldbl-128/e_asinl.c (__ieee754_asinl): Likewise.
14319 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (gammal_positive): Likewise.
14320 * sysdeps/ieee754/ldbl-128/e_hypotl.c (__ieee754_hypotl): Likewise.
14321 * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee754_j0l): Likewise.
14322 * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
14323 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_jnl): Likewise.
14324 * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Likewise.
14325 * sysdeps/ieee754/ldbl-128/s_asinhl.c (__ieee754_asinhl): Likewise.
14326 * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Likewise.
14327 * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Likewise.
14328 * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
14329 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (gammal_positive): Likewise.
14330 * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Likewise.
14331 * sysdeps/ieee754/ldbl-128ibm/e_j0l.c (__ieee754_j0l): Likewise.
14332 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c (__ieee754_j1l): Likewise
14333 * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
14334 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
14335 * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__ieee754_asinhl): Likewise.
14336 * sysdeps/ieee754/ldbl-96/e_acoshl.c (__ieee754_acoshl): Use sqrtl.
14337 * sysdeps/ieee754/ldbl-96/e_asinl.c (__ieee754_asinl): Likewise.
14338 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (gammal_positive): Likewise.
14339 * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Likewise.
14340 * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l): Likewise.
14341 * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l): Likewise.
14342 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl): Likewise.
14343 * sysdeps/ieee754/ldbl-96/s_asinhl.c (__ieee754_asinhl): Likewise.
14344 * sysdeps/m68k/m680x0/fpu/e_pow.c (__ieee754_pow): Likewise.
14345 * sysdeps/powerpc/fpu/e_hypot.c (__ieee754_hypot): Likewise.
14346 * sysdeps/powerpc/fpu/e_hypotf.c (__ieee754_hypotf): Likewise.
14348 2018-03-15 Wilco Dijkstra <wdijkstr@arm.com>
14350 * include/math.h (sqrt): Declare with asm redirect.
14353 (sqrtf128): Likewise.
14354 * Makeconfig: Add -fno-math-errno for libc/libm, but build testsuite,
14355 nonlib and libnldbl with -fmath-errno.
14356 * math/w_sqrt_compat.c: Define NO_MATH_REDIRECT.
14357 * math/w_sqrt_template.c: Likewise.
14358 * math/w_sqrtf_compat.c: Likewise.
14359 * math/w_sqrtl_compat.c: Likewise.
14360 * sysdeps/i386/fpu/w_sqrt.c: Likewise.
14361 * sysdeps/i386/fpu/w_sqrt_compat.c: Likewise.
14362 * sysdeps/generic/math-type-macros-float128.h: Remove math.h and
14365 2018-03-15 Wilco Dijkstra <wdijkstr@arm.com>
14367 * benchtests/Makefile: Define _ISOMAC.
14368 * benchtests/bench-strcoll.c: Add missing sys/stat.h include.
14369 * benchtests/bench-string.h: Define inhibit_loop_to_libcall macro.
14370 * benchtests/bench-strstr.c: Define empty libc_hidden_builtin_def.
14371 * benchtests/bench-strtok.c (oldstrtok): Use rawmemchr.
14372 * benchtests/bench-timing.h: Define attribute_hidden.
14374 2018-03-15 Siddhesh Poyarekar <siddhesh@sourceware.org>
14376 * sysdeps/aarch64/strncmp.S (strncmp): Use lsr instead of
14379 2018-03-15 Rafal Luzynski <digitalfreak@lingonborough.com>
14382 * localedata/locales/cs_CZ (mon): Rename to...
14384 (mon): Import from CLDR (genitive case).
14386 2018-03-15 Rafal Luzynski <digitalfreak@lingonborough.com>
14389 * localedata/locales/el_CY (abmon): Rename to...
14390 (ab_alt_mon): This.
14391 (abmon): Import from CLDR (abbreviated genitive case).
14392 * localedata/locales/el_GR (abmon): Rename to...
14393 (ab_alt_mon): This.
14394 (abmon): Import from CLDR (abbreviated genitive case).
14396 2018-03-15 Rafal Luzynski <digitalfreak@lingonborough.com>
14399 * localedata/locales/lt_LT (abmon): Synchronize with CLDR.
14401 2018-03-15 Robert Buj <robert.buj@gmail.com>
14404 * localedata/locales/ca_ES (abmon): Rename to...
14405 (ab_alt_mon): This, then synchronize with CLDR (nominative case).
14406 (mon): Rename to...
14408 (abmon): Import from CLDR (genitive case, month names preceded by
14411 (abday): Synchronize with CLDR.
14412 (d_t_fmt): Likewise.
14416 (LC_TIME): Improve indentation.
14417 (LC_TELEPHONE): Likewise.
14418 (LC_NAME): Likewise.
14419 (LC_ADDRESS): Likewise.
14421 2018-03-14 Joseph Myers <joseph@codesourcery.com>
14423 * sysdeps/x86/fpu/bits/mathinline.h [!__GNUC_PREREQ (3, 4)]
14424 (lrintf): Remove definitions used only with old GCC.
14425 [!__GNUC_PREREQ (3, 4)] (lrint): Likewise.
14426 [!__GNUC_PREREQ (3, 4)] (llrintf): Likewise.
14427 [!__GNUC_PREREQ (3, 4)] (llrint): Likewise.
14428 [!__GNUC_PREREQ (3, 4)] (fmaxf): Likewise.
14429 [!__GNUC_PREREQ (3, 4)] (fmax): Likewise.
14430 [!__GNUC_PREREQ (3, 4)] (fminf): Likewise.
14431 [!__GNUC_PREREQ (3, 4)] (fmin): Likewise.
14432 [!__GNUC_PREREQ (3, 4)] (rint): Likewise.
14433 [!__GNUC_PREREQ (3, 4)] (rintf): Likewise.
14434 [!__GNUC_PREREQ (3, 4)] (nearbyint): Likewise.
14435 [!__GNUC_PREREQ (3, 4)] (nearbyintf): Likewise.
14436 [!__GNUC_PREREQ (3, 4)] (ceil): Likewise.
14437 [!__GNUC_PREREQ (3, 4)] (ceilf): Likewise.
14438 [!__GNUC_PREREQ (3, 4)] (floor): Likewise.
14439 [!__GNUC_PREREQ (3, 4)] (floorf): Likewise.
14440 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (tan): Likewise.
14441 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (fmod): Likewise.
14442 [__FAST_MATH__ && !__GNUC_PREREQ (3, 4)] (sin): Likewise.
14443 [__FAST_MATH__ && !__GNUC_PREREQ (3, 4)] (cos): Likewise.
14444 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (log10): Likewise.
14445 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (asin): Likewise.
14446 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (acos): Likewise.
14447 [__FAST_MATH__ && !__GNUC_PREREQ (3, 4)] (atan): Likewise.
14448 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (log1p): Likewise.
14449 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (logb): Likewise.
14450 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (log2): Likewise.
14451 [__FAST_MATH__ && !__GNUC_PREREQ (3, 5)] (drem): Likewise.
14452 [__FAST_MATH__] (__M_SQRT2): Remove macro.
14454 2018-03-14 Siddhesh Poyarekar <siddhesh@sourceware.org>
14456 * sysdeps/aarch64/strncmp.S (strncmp): Use a separate shift
14457 instruction to unbreak builds with binutils 2.26 and older.
14459 2018-03-13 Siddhesh Poyarekar <siddhesh@sourceware.org>
14461 * sysdeps/aarch64/strncmp.S (count): New macro.
14462 (strncmp): Store misaligned length in SRC1 in COUNT.
14463 (mutual_align): Adjust.
14464 (misaligned8): Load dword at a time when it is safe.
14466 2018-03-12 Zack Weinberg <zackw@panix.com>
14470 * libio/fileops.c (_IO_new_file_underflow): Return EOF immediately
14471 if the _IO_EOF_SEEN bit is already set; update commentary.
14472 * libio/oldfileops.c (_IO_old_file_underflow): Likewise.
14473 * libio/wfileops.c (_IO_wfile_underflow): Likewise.
14475 * support/support_openpty.c, support/tty.h: New files.
14476 * support/Makefile (libsupport-routines): Add support_openpty.
14478 * libio/tst-fgetc-after-eof.c, wcsmbs/test-fgetwc-after-eof.c:
14480 * libio/Makefile (tests): Add tst-fgetc-after-eof.
14481 * wcsmbs/Makefile (tests): Add tst-fgetwc-after-eof.
14483 2018-03-12 Dmitry V. Levin <ldv@altlinux.org>
14485 * po/pt_BR.po: Update translations.
14487 2018-03-12 David Michael <fedora.dm0@gmail.com>
14489 * sysdeps/mach/hurd/reboot.c: Include <hurd/paths.h>
14490 (reboot): Lookup _SERVERS_STARTUP instead of calling proc_getmsgport to
14491 get a port to the startup server.
14493 2018-03-11 Zack Weinberg <zackw@panix.com>
14495 * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Include math.h
14496 before nldbl-compat.h.
14498 2018-03-10 Zack Weinberg <zackw@panix.com>
14500 * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Don't include
14501 math.h or math_private.h.
14503 * sysdeps/alpha/fpu/s_isnan.c
14504 * sysdeps/ieee754/ldbl-128ibm/s_ceill.c
14505 * sysdeps/ieee754/ldbl-128ibm/s_floorl.c
14506 * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c
14507 * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c
14508 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c
14509 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c
14510 * sysdeps/ieee754/ldbl-128ibm/s_rintl.c
14511 * sysdeps/ieee754/ldbl-128ibm/s_roundl.c
14512 * sysdeps/ieee754/ldbl-128ibm/s_truncl.c
14513 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot.c
14514 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf.c:
14515 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_expf.c
14516 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot.c
14517 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c:
14518 Include math_private.h.
14520 * sysdeps/ieee754/ldbl-64-128/s_finitel.c
14521 * sysdeps/ieee754/ldbl-64-128/s_fpclassifyl.c
14522 * sysdeps/ieee754/ldbl-64-128/s_isinfl.c
14523 * sysdeps/ieee754/ldbl-64-128/s_isnanl.c
14524 * sysdeps/ieee754/ldbl-64-128/s_signbitl.c
14525 * sysdeps/powerpc/power7/fpu/s_logb.c:
14526 Include math.h and math_private.h.
14528 * sysdeps/unix/sysv/linux/alpha/clone.S (__clone): Wrap manual
14529 uses of $at in .set noat / .set at.
14531 2018-03-10 H.J. Lu <hongjiu.lu@intel.com>
14533 * include/setjmp.h (__libc_longjmp): Remove libc_hidden_proto.
14534 * setjmp/longjmp.c (__libc_longjmp): Remove libc_hidden_def.
14535 * sysdeps/s390/longjmp.c (__libc_longjmp): Likewise.
14536 * sysdeps/unix/sysv/linux/sparc/sparc64/longjmp.S (__libc_longjmp):
14539 2018-03-09 Florian Weimer <fweimer@redhat.com>
14541 * malloc/malloc.c (prev_size, set_prev_size, prev_chunk): Fix typo
14544 2018-03-09 Aurelien Jarno <aurelien@aurel32.net>
14547 * sysdeps/unix/sysv/linux/sparc/sparc32/setcontext.S (__startcontext):
14548 Add nop before __startcontext, add explaining comments.
14550 2018-03-07 Adhemerval Zanella <adhemerval.zanella@linaro.org>
14553 * sysdeps/powerpc/powerpc32/sysdep.h (ABORT_TRANSACTION_IMPL): Define
14555 * sysdeps/powerpc/sysdep.h (ABORT_TRANSACTION): Likewise.
14556 * sysdeps/unix/sysv/linux/powerpc/elision-lock.c (__lll_lock_elision):
14557 Do not build hardware transactional code for __SPE__.
14558 * sysdeps/unix/sysv/linux/powerpc/elision-trylock.c
14559 (__lll_trylock_elision): Likewise.
14560 * sysdeps/unix/sysv/linux/powerpc/elision-unlock.c
14561 (__lll_unlock_elision): Likewise.
14563 * sysdeps/nptl/fork.c (ARCH_FORK): Replace by arch_fork.
14564 * sysdeps/unix/sysv/linux/alpha/arch-fork.h: Remove file.
14565 * sysdeps/unix/sysv/linux/riscv/arch-fork.h: Likewise.
14566 * sysdeps/unix/sysv/linux/aarch64/arch-fork.h: Likewise.
14567 * sysdeps/unix/sysv/linux/arm/arch-fork.h: Likewise.
14568 * sysdeps/unix/sysv/linux/hppa/arch-fork.h: Likewise.
14569 * sysdeps/unix/sysv/linux/i386/arch-fork.h: Likewise.
14570 * sysdeps/unix/sysv/linux/ia64/arch-fork.h: Likewise.
14571 * sysdeps/unix/sysv/linux/m68k/arch-fork.h: Likewise.
14572 * sysdeps/unix/sysv/linux/microblaze/arch-fork.h: Likewise.
14573 * sysdeps/unix/sysv/linux/mips/arch-fork.h: Likewise.
14574 * sysdeps/unix/sysv/linux/nios2/arch-fork.h: Likewise.
14575 * sysdeps/unix/sysv/linux/powerpc/arch-fork.h: Likewise.
14576 * sysdeps/unix/sysv/linux/s390/arch-fork.h: Likewise.
14577 * sysdeps/unix/sysv/linux/sh/arch-fork.h: Likewise.
14578 * sysdeps/unix/sysv/linux/sparc/arch-fork.h: Likewise.
14579 * sysdeps/unix/sysv/linux/tile/arch-fork.h: Likewise.
14580 * sysdeps/unix/sysv/linux/x86_64/arch-fork.h: Likewise.
14581 * sysdeps/unix/sysv/linux/arch-fork.h (arch_fork): New function.
14582 * sysdeps/unix/sysv/linux/aarch64/kernel-features.h: New file.
14583 * sysdeps/unix/sysv/linux/riscv/kernel-features.h: Likewise.
14584 * sysdeps/unix/sysv/linux/arm/kernel-features.h
14585 (__ASSUME_CLONE_BACKWARDS): Define.
14586 * sysdeps/unix/sysv/linux/createthread.c (ARCH_CLONE): Define to
14587 __clone2 if __NR_clone2 is defined.
14588 * sysdeps/unix/sysv/linux/hppa/kernel-features.h
14589 (__ASSUME_CLONE_BACKWARDS): Likewise.
14590 * sysdeps/unix/sysv/linux/i386/kernel-features.h
14591 (__ASSUME_CLONE_BACKWARDS): Likewise.
14592 * sysdeps/unix/sysv/linux/ia64/kernel-features.h
14593 (__ASSUME_CLONE2): Likewise.
14594 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
14595 (__ASSUME_CLONE_BACKWARDS3): Likewise.
14596 * sysdeps/unix/sysv/linux/kernel-features.h: Document possible clone
14597 variants and the define architecture can use.
14598 (__ASSUME_CLONE_DEFAULT): Define as default.
14599 * sysdeps/unix/sysv/linux/mips/kernel-features.h
14600 (__ASSUME_CLONE_BACKWARDS): Likewise.
14601 * sysdeps/unix/sysv/linux/powerpc/kernel-features.h
14602 (__ASSUME_CLONE_BACKWARDS): Likewise.
14603 * sysdeps/unix/sysv/linux/s390/kernel-features.h
14604 (__ASSUME_CLONE_BACKWARDS2): Likewise.
14606 2018-03-06 Siddhesh Poyarekar <siddhesh@sourceware.org>
14608 * sysdeps/aarch64/memcmp.S (more16): Fix loop16 branch target.
14610 * sysdeps/aarch64/memcmp.S: Widen comparison to 16 bytes at a
14613 * benchtests/bench-strncmp.c (test_main): Remove 0 length tests.
14614 (do_test_limit): Likewise.
14616 * benchtests/bench-strncmp.c (do_test_limit): Reallocate buffers
14617 for every implementation.
14618 (do_test): Likewise.
14620 * benchtests/bench-strncmp.c: Convert output to json.
14622 2018-03-06 Samuel Thibault <samuel.thibault@ens-lyon.org>
14624 * io/futimens.c: Add missing start-of-file descriptive comment.
14625 * io/utime.c: Likewise.
14626 * misc/futimesat.c: Likewise.
14627 * misc/utimes.c: Likewise.
14628 * sysdeps/mach/hurd/futimesat.c: Likewise.
14629 * sysdeps/mach/hurd/utimes.c: Likewise.
14630 * sysdeps/posix/utime.c: Likewise.
14631 * sysdeps/posix/utimes.c: Likewise.
14632 * sysdeps/unix/sysv/linux/futimesat.c: Likewise.
14633 * sysdeps/unix/sysv/linux/generic/futimesat.c: Likewise.
14634 * sysdeps/unix/sysv/linux/generic/utimes.c: Likewise.
14635 * sysdeps/unix/sysv/linux/utimes.c: Likewise.
14637 2018-03-05 Samuel Thibault <samuel.thibault@ens-lyon.org>
14639 * sysdeps/mach/hurd/utime-helper.c (hurd_futimens): Rename function to
14641 * sysdeps/mach/hurd/utimes.c (__utimes): Update call accordingly.
14642 * sysdeps/mach/hurd/lutimes.c (__lutimes): Likewise.
14643 * sysdeps/mach/hurd/futimens.c: Include "utime-helper.c".
14644 (__futimens): Move implementation to...
14645 * sysdeps/mach/hurd/utime-helper.c (utime_ts_from_tspec,
14646 utime_tvalue_from_tspec): ... new helper functions.
14647 (hurd_futimens): New function.
14648 * sysdeps/mach/hurd/futimesat.c: New file.
14649 * sysdeps/mach/hurd/utimensat.c: New file.
14651 2018-03-05 Flávio Cruz <flaviocruz@gmail.com>
14653 * sysdeps/mach/hurd/bits/stat.h [__USE_ATFILE] (UTIME_NOW,
14654 UTIME_OMIT): New macros.
14655 * sysdeps/mach/hurd/futimens.c (__futimens): Try to use __file_utimens
14656 before reverting to converting time spec to time value and calling
14658 * sysdeps/mach/hurd/utime-helper.c: New file.
14659 * sysdeps/mach/hurd/futimes.c: Include "utime-helper.c".
14660 (__futimes): Try to use utime_ts_from_tval and __file_utimens before
14661 reverting to utime_tvalue_from_tval and __file_utimes.
14662 * sysdeps/mach/hurd/lutimes.c: Include "utime-helper.c".
14663 (__lutimes): Just call hurd_futimens after lookup.
14664 * sysdeps/mach/hurd/utimes.c: Likewise.
14666 2018-03-05 Samuel Thibault <samuel.thibault@ens-lyon.org>
14668 * bits/sigaction.h: Add include guard.
14669 * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h: Likewise.
14670 * sysdeps/unix/sysv/linux/bits/sigaction.h: Likewise.
14671 * sysdeps/unix/sysv/linux/hppa/bits/sigaction.h: Likewise.
14672 * sysdeps/unix/sysv/linux/ia64/bits/sigaction.h: Likewise.
14673 * sysdeps/unix/sysv/linux/mips/bits/sigaction.h: Likewise.
14674 * sysdeps/unix/sysv/linux/s390/bits/sigaction.h: Likewise.
14675 * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h: Likewise.
14676 * sysdeps/unix/sysv/linux/tile/bits/sigaction.h: Likewise.
14677 * hurd/hurd/signal.h: Include <bits/sigaction.h>.
14679 2018-03-05 Joseph Myers <joseph@codesourcery.com>
14681 * iconv/loop.c (UNICODE_TAG_HANDLER): Disable
14682 -Wmaybe-uninitialized for -Os.
14683 * sysdeps/s390/multiarch/8bit-generic.c (BODY): Add comment about
14686 2018-03-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
14688 * bits/dirent.h (__INO_T_MATCHES_INO64_T): Define regardless whether
14689 __INO_T_MATCHES_INO64_T is defined.
14690 * sysdeps/unix/sysv/linux/bits/dirent.h: Likewise.
14691 * dirent/alphasort.c: Check _DIRENT_MATCHES_DIRENT64 value instead
14693 * dirent/alphasort64.c: Likewise.
14694 * dirent/scandir.c: Likewise.
14695 * dirent/scandir64-tail.c: Likewise.
14696 * dirent/scandir64.c: Likewise.
14697 * dirent/scandirat.c: Likewise.
14698 * dirent/scandirat64.c: Likewise.
14699 * dirent/versionsort.c: Likewise.
14700 * dirent/versionsort64.c: Likewise.
14701 * include/dirent.h: Likewise.
14703 * nptl/tst-cancel4-common.h (set_socket_buffer): New function.
14704 * nptl/tst-cancel4-common.c (do_test): Call set_socket_buffer
14705 for socketpair endpoint.
14706 * nptl/tst-cancel4.c (tf_send): Call set_socket_buffer and use
14707 WRITE_BUFFER_SIZE as buffer size for sending socket.
14708 (tf_sendto): Use SOCK_STREAM instead of SOCK_DGRAM and fix an
14709 issue on system where send is implemented with sendto syscall.
14710 * sysdeps/unix/sysv/linux/mips/mips64/Makefile [$(subdir) = socket]
14711 (CFLAGS-recv.c, CFLAGS-send.c): Remove rules.
14712 [$(subdir) = nptl] (CFLAGS-recv.c, CFLAGS-send.c): Likewise.
14713 * sysdeps/unix/sysv/linux/riscv/rv64/Makefile: Remove file.
14716 * sysdeps/unix/sysv/linux/i386/Makefile (tests): Add tst-bz21269.
14717 * sysdeps/unix/sysv/linux/i386/sigaction.c (SET_SA_RESTORER): Clear
14718 sa_restorer for vDSO case.
14719 * sysdeps/unix/sysv/linux/i386/tst-bz21269.c: New file.
14721 2018-03-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
14723 * scripts/check-installed-headers.sh: Ignore Hurd and Mach headers.
14724 * hurd/hurd/id.h: Include <hurd/hurd_types.h>
14725 * hurd/hurd/ioctl.h: Include <mach/port.h>
14726 * hurd/hurd/lookup.h: Include <hurd/hurd_types.h>
14727 * mach/Makefile ($(objpfx)mach-shortcuts.h): Make it include
14728 <mach/mach_types.h> and <mach/message.h>.
14729 (headers): Move mach/param.h to bits/mach/param.h.
14730 * sysdeps/mach/i386/mach/param.h: Move file to ...
14731 * sysdeps/mach/i386/bits/mach/param.h: ... here. Update path in #error.
14732 * sysdeps/mach/hurd/bits/param.h: Include <bits/mach/param.h> instead
14734 * hurd/hurd/port.h: Do not include <hurd/signal.h>.
14735 * hurd/hurd/userlink.h [!defined __USE_EXTERN_INLINES ||
14736 !defined _LIBC || !IS_IN (libc)]: Do not include <hurd/signal.h>.
14737 * hurd/hurd/fd.h (_hurd_fd_error): Fix struct initializer to be
14738 trivial, for C++ conformity.
14739 * sysdeps/mach/hurd/dl-sysdep.c: Include <mach/machine/vm_param.h>.
14740 * mach/Machrules ($(patsubst %,$(objpfx)%.h,$(user-interfaces)):
14741 Process mig output through $(migheadersed).
14742 * hurd/Makefile (migheadersed): Define variable.
14743 * mach/mach/mig_support.h [defined __USE_GNU]: Do not #error out.
14744 * scripts/check-installed-headers.sh: Do not ignore Hurd and Mach
14746 * hurd/hurd.h: Include <bits/types/sigset_t.h>
14747 * hurd/hurd/fd.h: Include <sys/select.h> and <bits/types/sigset_t.h>
14748 (_hurd_fd_read, _hurd_fd_write): Use __loff_t instead of loff_t.
14749 * hurd/hurd/signal.h: Include <bits/types/stack_t.h> and
14750 <bits/types/sigset_t.h>.
14751 [!defined __USE_GNU]: Do not #error out.
14752 (struct hurd_sigstate): Use _NSIG instead of NSIG.
14753 * hurd/hurd/sigpreempt.h (__need_size_t): Define.
14754 Include <stddef.h> and <bits/types/sigset_t.h>
14755 (struct hurd_signal_preemptor, hurd_catch_signal): Use __sighandler_t
14756 instead of sighandler_t.
14757 * stdlib/errno.h (error_t): Move definition to...
14758 * bits/types/error_t.h: ... new header.
14759 * stdlib/Makefile (headers): Add bits/types/error_t.h.
14760 * sysdeps/mach/hurd/bits/errno.h (error_t): Move definition to...
14761 * sysdeps/mach/hurd/bits/types/error_t.h: ... new header.
14762 * sysdeps/mach/hurd/errnos.awk (error_t): Likewise.
14763 * hurd/hurd.h: Include <bits/types/error_t.h>
14764 * hurd/hurd/fd.h: Include <bits/types/error_t.h>
14765 * hurd/hurd/id.h: Include <errno.h> and <bits/types/error_t.h>
14766 * hurd/hurd/lookup.h: Include <errno.h> and <bits/types/error_t.h>
14767 * hurd/hurd/resource.h: Include <bits/types/error_t.h>
14768 * hurd/hurd/signal.h: Include <bits/types/error_t.h>
14769 * hurd/hurd/sigpreempt.h: Include <bits/types/error_t.h>
14770 * sysdeps/mach/hurd/futimens.c: New file.
14772 2018-03-03 Andreas Schwab <schwab@linux-m68k.org>
14775 * nss/nsswitch.h (DEFINE_DATABASE): Don't define __nss_*_database.
14776 * nss/nsswitch.c (DEFINE_DATABASE): Define __nss_*_database here.
14777 * nscd/gai.c (__nss_hosts_database): Readd definition.
14778 * posix/tst-rfc3484.c (__nss_hosts_database): Likewise.
14779 * posix/tst-rfc3484-3.c (__nss_hosts_database): Likewise.
14780 * posix/tst-rfc3484-2.c (__nss_hosts_database): Likewise.
14782 2018-03-02 Joseph Myers <joseph@codesourcery.com>
14784 * sysdeps/powerpc/ifunc-sel.h (ifunc_sel): Make always_inline.
14785 (ifunc_one): Likewise.
14787 2018-03-01 DJ Delorie <dj@delorie.com>
14790 * nscd/netgroupcache.c (addinnetgrX): Include trailing NUL in
14793 2018-03-01 Maciej W. Rozycki <macro@mips.com>
14795 * nptl_db/td_ta_thr_iter.c (iterate_thread_list): Remove
14796 `match_pid' parameter.
14797 (td_ta_thr_iter): Update accordingly.
14799 2018-03-01 Florian Weimer <fweimer@redhat.com>
14801 * nptl/Makefile (install-lib-ldscripts): Remove.
14802 (install): Remove rule.
14803 ($(inst_libdir)/libpthread.so): Likewise.
14805 2018-03-01 Mike FABIAN <mfabian@redhat.com>
14808 * localedata/locales/an_ES: update month and day names,
14809 improve d_fmt, improve postal_fmt, add country_post,
14812 2018-03-01 Mike FABIAN <mfabian@redhat.com>
14814 * localedata/locales/bg_BG (LC_COLLATE): The comment mentioned
14815 Ukrainian instead of Bulgarian.
14817 2018-03-01 Florian Weimer <fweimer@redhat.com>
14819 * nptl/Makefile (libpthread.so): Drop libpthread_nonshared.a
14822 2018-03-01 Florian Weimer <fweimer@redhat.com>
14824 Move pthread_atfork to libc. Remove libpthread_nonshared.a.
14825 * nptl/Makefile (routines): Add pthread_atfork.
14826 (static-only-routines): Set to pthread_atfork.
14827 (libpthread-routines): Remove pthread_atfork.
14828 (libpthread-static-only-routines): Remove.
14829 (install): Update comment.
14830 (libpthread.so): Do not install libpthread_nonshared.a.
14831 (tests): Do not link with libpthread_nonshared.a.
14832 (generated): Remove libpthread_nonshared.a.
14833 * nptl/pthread_atfork.c (pthread_atfork): Turn into weak alias.
14834 * sysdeps/nptl/Makeconfig (shared-thread-library): Do not link
14835 with libpthread_nonshared.a.
14837 2018-02-28 Joseph Myers <joseph@codesourcery.com>
14840 * sysdeps/i386/fpu/fenv_private.h [!__x86_64__]
14841 (libc_feholdexcept_setroundf128): New macro.
14842 [!__x86_64__] (libc_feupdateenv_testf128): Likewise.
14845 * sysdeps/wordsize-32/strtoumax.c (strtoumax): Use
14847 * sysdeps/wordsize-64/strtoumax.c (strtoumax): Likewise.
14848 * include/inttypes.h: New file.
14850 2018-02-27 Joseph Myers <joseph@codesourcery.com>
14852 * locale/weightwc.h (findidx): Ignore -Wmaybe-uninitialized for
14853 -Os in two more places.
14855 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14857 See this bug https://sourceware.org/bugzilla/show_bug.cgi?id=22898
14858 * localedata/cmn_TW.UTF-8.in: Remove the lines which cannot
14859 be sorted correctly at the moment because of a bug.
14861 2018-02-27 Mike FABIAN <mfabian@redhat.com>
14863 [BZ #22550] - es_ES locale (and other es_* locales): collation should
14864 treat ñ as a primary different character, sync the collation
14865 for Spanish with CLDR.
14866 [BZ #21547] - Tibetan script collation broken (Dzongkha and Tibetan).
14867 * localedata/Makefile: Add new test files.
14868 * localedata/lv_LV.UTF-8.in: Adapt test file to new collation order.
14869 * localedata/sv_SE.ISO-8859-1.in: Adapt test file to new
14871 * localedata/uk_UA.UTF-8.in: Adapt test file to new collation order.
14872 * localedata/am_ET.UTF-8.in: New test file.
14873 * localedata/az_AZ.UTF-8.in: Likewise.
14874 * localedata/be_BY.UTF-8.in: Likewise.
14875 * localedata/ber_DZ.UTF-8.in: Likewise.
14876 * localedata/ber_MA.UTF-8.in: Likewise.
14877 * localedata/bg_BG.UTF-8.in: Likewise.
14878 * localedata/br_FR.UTF-8.in: Likewise.
14879 * localedata/cmn_TW.UTF-8.in: Likewise.
14880 * localedata/crh_UA.UTF-8.in: Likewise.
14881 * localedata/csb_PL.UTF-8.in: Likewise.
14882 * localedata/cv_RU.UTF-8.in: Likewise.
14883 * localedata/cy_GB.UTF-8.in: Likewise.
14884 * localedata/dz_BT.UTF-8.in: Likewise.
14885 * localedata/eo.UTF-8.in: Likewise.
14886 * localedata/es_ES.UTF-8.in: Likewise.
14887 * localedata/fa_IR.UTF-8.in: Likewise.
14888 * localedata/fi_FI.UTF-8.in: Likewise.
14889 * localedata/fil_PH.UTF-8.in: Likewise.
14890 * localedata/fur_IT.UTF-8.in: Likewise.
14891 * localedata/gez_ER.UTF-8@abegede.in: Likewise.
14892 * localedata/ha_NG.UTF-8.in: Likewise.
14893 * localedata/ig_NG.UTF-8.in: Likewise.
14894 * localedata/ik_CA.UTF-8.in: Likewise.
14895 * localedata/kk_KZ.UTF-8.in: Likewise.
14896 * localedata/ku_TR.UTF-8.in: Likewise.
14897 * localedata/ky_KG.UTF-8.in: Likewise.
14898 * localedata/ln_CD.UTF-8.in: Likewise.
14899 * localedata/mi_NZ.UTF-8.in: Likewise.
14900 * localedata/ml_IN.UTF-8.in: Likewise.
14901 * localedata/mn_MN.UTF-8.in: Likewise.
14902 * localedata/mr_IN.UTF-8.in: Likewise.
14903 * localedata/mt_MT.UTF-8.in: Likewise.
14904 * localedata/nb_NO.UTF-8.in: Likewise.
14905 * localedata/om_KE.UTF-8.in: Likewise.
14906 * localedata/os_RU.UTF-8.in: Likewise.
14907 * localedata/ps_AF.UTF-8.in: Likewise.
14908 * localedata/ro_RO.UTF-8.in: Likewise.
14909 * localedata/ru_RU.UTF-8.in: Likewise.
14910 * localedata/sc_IT.UTF-8.in: Likewise.
14911 * localedata/se_NO.UTF-8.in: Likewise.
14912 * localedata/sq_AL.UTF-8.in: Likewise.
14913 * localedata/sv_SE.UTF-8.in: Likewise.
14914 * localedata/szl_PL.UTF-8.in: Likewise.
14915 * localedata/tg_TJ.UTF-8.in: Likewise.
14916 * localedata/tk_TM.UTF-8.in: Likewise.
14917 * localedata/tt_RU.UTF-8.in: Likewise.
14918 * localedata/tt_RU.UTF-8@iqtelif.in: Likewise.
14919 * localedata/ug_CN.UTF-8.in: Likewise.
14920 * localedata/uz_UZ.UTF-8.in: Likewise.
14921 * localedata/vi_VN.UTF-8.in: Likewise.
14922 * localedata/yi_US.UTF-8.in: Likewise.
14923 * localedata/yo_NG.UTF-8.in: Likewise.
14924 * localedata/zh_CN.UTF-8.in: Likewise.
14925 * localedata/locales/am_ET: Adapt collation rules to new iso14651_t1_common
14926 file and fix bugs in the collation.
14927 * localedata/locales/az_AZ: Likewise.
14928 * localedata/locales/be_BY: Likewise.
14929 * localedata/locales/ber_DZ: Likewise.
14930 * localedata/locales/ber_MA: Likewise.
14931 * localedata/locales/bg_BG: Likewise.
14932 * localedata/locales/br_FR: Likewise.
14933 * localedata/locales/br_FR@euro: Likewise.
14934 * localedata/locales/ca_ES: Likewise.
14935 * localedata/locales/cns11643_stroke: Likewise.
14936 * localedata/locales/crh_UA: Likewise.
14937 * localedata/locales/cs_CZ: Likewise.
14938 * localedata/locales/csb_PL: Likewise.
14939 * localedata/locales/cv_RU: Likewise.
14940 * localedata/locales/cy_GB: Likewise.
14941 * localedata/locales/da_DK: Likewise.
14942 * localedata/locales/dz_BT: Likewise.
14943 * localedata/locales/en_CA: Likewise.
14944 * localedata/locales/eo: Likewise.
14945 * localedata/locales/es_CU: Likewise.
14946 * localedata/locales/es_EC: Likewise.
14947 * localedata/locales/es_ES: Likewise.
14948 * localedata/locales/es_US: Likewise.
14949 * localedata/locales/et_EE: Likewise.
14950 * localedata/locales/fa_IR: Likewise.
14951 * localedata/locales/fi_FI: Likewise.
14952 * localedata/locales/fil_PH: Likewise.
14953 * localedata/locales/fur_IT: Likewise.
14954 * localedata/locales/gez_ER@abegede: Likewise.
14955 * localedata/locales/ha_NG: Likewise.
14956 * localedata/locales/hr_HR: Likewise.
14957 * localedata/locales/hsb_DE: Likewise.
14958 * localedata/locales/hu_HU: Likewise.
14959 * localedata/locales/ig_NG: Likewise.
14960 * localedata/locales/ik_CA: Likewise.
14961 * localedata/locales/is_IS: Likewise.
14962 * localedata/locales/iso14651_t1_pinyin: Likewise.
14963 * localedata/locales/kk_KZ: Likewise.
14964 * localedata/locales/ku_TR: Likewise.
14965 * localedata/locales/ky_KG: Likewise.
14966 * localedata/locales/ln_CD: Likewise.
14967 * localedata/locales/lt_LT: Likewise.
14968 * localedata/locales/lv_LV: Likewise.
14969 * localedata/locales/mi_NZ: Likewise.
14970 * localedata/locales/ml_IN: Likewise.
14971 * localedata/locales/mn_MN: Likewise.
14972 * localedata/locales/mr_IN: Likewise.
14973 * localedata/locales/mt_MT: Likewise.
14974 * localedata/locales/nb_NO: Likewise.
14975 * localedata/locales/om_KE: Likewise.
14976 * localedata/locales/os_RU: Likewise.
14977 * localedata/locales/pl_PL: Likewise.
14978 * localedata/locales/ps_AF: Likewise.
14979 * localedata/locales/ro_RO: Likewise.
14980 * localedata/locales/ru_RU: Likewise.
14981 * localedata/locales/ru_UA: Likewise.
14982 * localedata/locales/sc_IT: Likewise.
14983 * localedata/locales/se_NO: Likewise.
14984 * localedata/locales/si_LK: Likewise.
14985 * localedata/locales/sq_AL: Likewise.
14986 * localedata/locales/sv_FI: Likewise.
14987 * localedata/locales/sv_FI@euro: Likewise.
14988 * localedata/locales/sv_SE: Likewise.
14989 * localedata/locales/szl_PL: Likewise.
14990 * localedata/locales/tg_TJ: Likewise.
14991 * localedata/locales/ti_ER: Likewise.
14992 * localedata/locales/tk_TM: Likewise.
14993 * localedata/locales/tl_PH: Likewise.
14994 * localedata/locales/tr_TR: Likewise.
14995 * localedata/locales/tt_RU: Likewise.
14996 * localedata/locales/tt_RU@iqtelif: Likewise.
14997 * localedata/locales/ug_CN: Likewise.
14998 * localedata/locales/uk_UA: Likewise.
14999 * localedata/locales/uz_UZ: Likewise.
15000 * localedata/locales/uz_UZ@cyrillic: Likewise.
15001 * localedata/locales/vi_VN: Likewise.
15002 * localedata/locales/yi_US: Likewise.
15003 * localedata/locales/yo_NG: Likewise.
15005 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15007 * gen-locales.mk: Make test files which contain @ modifiers in their
15009 * localedata/gen-locale.sh: Likewise.
15011 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15013 * posix/tst-fnmatch.input: Fix results for range expressions
15015 * posix/tst-regexloc.c: Do not use a range expression for
15016 de_DE.ISO-8859-1 locale.
15018 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15020 * posix/bug-regex5.c: Fix test case because with the new
15021 iso14651_t1_common file, the da_DK locale now has 6 collating elements
15022 in the ISO-8859-1 range instead of 4 with the old iso14651_t1_common
15025 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15027 * localedata/da_DK.ISO-8859-1.in: In the new iso14651_t1_common file
15028 downloaded from ISO, the collation order of @-. and space has changed.
15029 Therefore, this test file needed to be adapted.
15030 * localedata/fr_CA.UTF-8.in: Likewise.
15031 * localedata/fr_FR.UTF-8.in: Likewise.
15032 * localedata/uk_UA.UTF-8.in: Likewise.
15034 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15036 * localedata/cs_CZ.UTF-8.in: adapt this test file to the collation
15037 order of ȥ in the new iso14651_t1_common file.
15038 * localedata/pl_PL.UTF-8.in: Likewise.
15040 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15042 * localedata/locales/iso14651_t1_common: Add sections for various
15043 scripts to the iso14651_t1_common file.
15045 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15047 * localedata/locales/iso14651_t1_common: Use the code point of a
15048 character in the fourth collation level instead of IGNORE for all
15049 entries which have IGNORE on all 4 levels.
15051 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15053 * localedata/locales/iso14651_t1_common: Add some convenient collation
15054 symbols like <AFTER-A>, <BEFORE-A> to make tailoring easier using
15055 rules similar to those in CLDR.
15057 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15059 * localedata/locales/iso14651_t1_common: The new version of this
15060 file downloaded from ISO contained several syntax errors which
15061 are fixed by this patch.
15063 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15065 * localedata/locales/iso14651_t1_common: replace all <U.....>
15066 with <U000.....> because glibc understands only 4 digit or 8 digit
15068 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15070 * localedata/locales/iso14651_t1_common: Necessary changes
15071 to make the file downloaded from ISO usable by glibc.
15073 2018-02-27 Mike FABIAN <mfabian@redhat.com>
15076 * localedata/locales/iso14651_t1_common: Update file to
15077 latest version from ISO (ISO14651_2016_TABLE1_en.txt).
15079 2018-02-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
15081 * sysdeps/pthread/timer_routines.c: Include <timer_routines.h> instead
15082 of <nptl/pthreadP.h>
15083 (thread_attr_compare): Move function to...
15084 [!defined DELAYTIMER_MAX] (DELAYTIMER_MAX): Define to INT_MAX.
15085 * sysdeps/nptl/timer_routines.h: ... new header.
15086 * sysdeps/mach/hurd/gai_misc.h: New file.
15088 2018-02-26 Joseph Myers <joseph@codesourcery.com>
15090 * string/strcoll_l.c: Include <libc-diag.h>.
15091 (STRCOLL): Ignore -Wmaybe-uninitialized for -Os around
15092 declarations of seq1 and seq2.
15095 * stdlib/atoi.c (atoi): Use libc_hidden_def.
15096 * include/stdlib.h [!_ISOMAC] (atoi): Use libc_hidden_proto.
15098 2018-02-26 Dmitry V. Levin <ldv@altlinux.org>
15102 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (__ptrace_request): Add
15103 PTRACE_GETREGS, PTRACE_SETREGS, PTRACE_GETFPREGS, PTRACE_SETFPREGS,
15104 PTRACE_GETVRREGS, PTRACE_SETVRREGS, PTRACE_GETEVRREGS,
15105 PTRACE_SETEVRREGS, PTRACE_GETREGS64, PTRACE_SETREGS64,
15106 PTRACE_GET_DEBUGREG, PTRACE_SET_DEBUGREG, PTRACE_GETVSRREGS,
15107 PTRACE_SETVSRREGS, and PTRACE_SINGLEBLOCK.
15109 2018-02-26 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
15111 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Undefine Linux
15112 macros used in __ptrace_request.
15114 2018-02-23 H.J. Lu <hongjiu.lu@intel.com>
15117 * Makerules ($(common-objpfx)%.h): Pass -DGEN_AS_CONST_HEADERS
15119 * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Include
15120 <tcb-offsets.h> only if GEN_AS_CONST_HEADERS isn't defined.
15121 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Don't include
15124 2018-02-23 Joseph Myers <joseph@codesourcery.com>
15127 * ctype/ctype.c (tolower): Use libc_hidden_def.
15128 (toupper): Likewise.
15129 * include/ctype.h [!_ISOMAC] (tolower): Use libc_hidden_proto.
15130 [!_ISOMAC] (toupper): Likewise.
15132 2018-02-23 Mike FABIAN <mfabian@redhat.com>
15134 * localedata/Makefile: Remove --quiet argument when
15137 2018-02-23 Mike FABIAN <mfabian@redhat.com>
15140 * localedata/locales/pt_BR (LC_TIME): use / instead of -
15142 * localedata/locales/pt_PT (LC_TIME): likewise
15144 2018-02-23 Mike FABIAN <mfabian@redhat.com>
15147 * localedata/locales/es_CL (LC_TIME): copy "es_BO".
15148 * localedata/locales/es_CU (LC_TIME): copy "es_BO".
15149 * localedata/locales/es_EC (LC_TIME): copy "es_BO".
15151 2018-02-22 Adhemerval Zanella <adhemerval.zanella@linaro.org>
15153 * sysdeps/sparc/fpu/libm-test-ulps: Update.
15155 * nptl/Makefile (routines): Remove unregister-atfork.
15156 * nptl/register-atfork.c (fork_handler_pool): Remove variable.
15157 (fork_handler_alloc): Remove function.
15158 (fork_handlers, fork_handler_init): New variables.
15159 (__fork_lock): Rename to atfork_lock.
15160 (__register_atfork, __unregister_atfork, libc_freeres_fn): Rewrite
15161 to use a dynamic array to add/remove atfork handlers.
15162 * sysdeps/nptl/fork.c (__libc_fork): Likewise.
15163 * sysdeps/nptl/fork.h (__fork_lock, __fork_handlers, __linkin_atfork):
15164 Remove declaration.
15165 (fork_handler): Remove next, refcntr, and need_signal member.
15166 (__run_fork_handler_type): New enum.
15167 (__run_fork_handlers): New prototype.
15168 * nptl/register-atfork.c: Remove file.
15169 * sysdeps/nptl/libc-lockP.h (__libc_atfork): Remove declaration.
15171 * sysdeps/nptl/nptl-signals.h: Move to ...
15172 * sysdeps/generic/internal-signals.h: ... here. Adjust internal
15174 * sysdeps/unix/sysv/linux/internal-signals.h: Add include guards.
15175 (__nptl_is_internal_signal): Rename to __is_internal_signal and remove
15176 unnecessary check for SIGTIMER.
15177 (__nptl_clear_internal_signals): Rename to __clear_internal_signals and
15178 remove unnecessary removal of SIGTIMER.
15179 * sysdeps/unix/sysv/linux/raise.c: Adjust nptl-signal.h to
15180 include-signals.h rename.
15181 * nptl/pthreadP.h: Likewise.
15182 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Call
15183 __is_internal_signal instead of __nptl_is_internal_signal.
15185 2018-02-22 Andrew Waterman <andrew@sifive.com>
15188 * sysdeps/riscv/rvd/s_fmax.c (__fmax): Handle sNaNs correctly.
15189 * sysdeps/riscv/rvd/s_fmin.c (__fmin): Likewise.
15190 * sysdeps/riscv/rvf/s_fmaxf.c (__fmaxf): Likewise.
15191 * sysdeps/riscv/rvf/s_fminf.c (__fminf): Likewise.
15193 2018-02-22 DJ Delorie <dj@delorie.com>
15195 * sysdeps/riscv/tls-macros.h: Do not initialize $gp.
15197 2018-02-22 Siddhesh Poyarekar <siddhesh@sourceware.org>
15199 * sysdeps/aarch64/strcmp.S (do_misaligned): Jump back to
15200 do_misaligned, not misaligned8.
15202 2018-02-22 Steve Ellcey <sellcey@cavium.com>
15204 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines):
15205 Add memcpy_thunderx2.
15206 * sysdeps/aarch64/multiarch/ifunc-impl-list.c (MAX_IFUNC):
15208 (__libc_ifunc_impl_list): Add __memcpy_thunderx2.
15209 * sysdeps/aarch64/multiarch/memcpy.c (libc_ifunc): Add IS_THUNDERX2
15210 and IS_THUNDERX2PA checks.
15211 * sysdeps/aarch64/multiarch/memcpy_thunderx.S (USE_THUNDERX2):
15212 Use macro to set name appropriately.
15213 (memcpy): Use USE_THUNDERX2 macro to modify prefetches.
15214 * sysdeps/aarch64/multiarch/memcpy_thunderx2.S: New file.
15215 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h (IS_THUNDERX2PA):
15217 (IS_THUNDERX2): New macro.
15219 2018-02-22 Stefan Liebler <stli@linux.vnet.ibm.com>
15221 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
15223 2018-02-21 Zack Weinberg <zackw@panix.com>
15225 * libio/libio.h (_IO_pos_BAD, _IO_pos_0, _IO_pos_adjust):
15226 Define here, unconditionally.
15227 * libio/iolibio.h (_IO_pos_BAD): Don't define here.
15228 * libio/libioP.h: Remove #if 0 blocks.
15229 (_IO_pos_BAD, _IO_pos_0, _IO_pos_adjust): Don't define here.
15230 (_IO_va_start, COERCE_FILE, MAYBE_SET_EINVAL): Don't define.
15231 (CHECK_FILE): Don't use MAYBE_SET_EINVAL or COERCE_FILE. Fix style.
15233 * libio/clearerr.c, libio/fputc.c, libio/getchar.c:
15234 Assume weak_alias is always defined.
15236 * libio/fileops.c, libio/genops.c, libio/oldfileops.c
15237 * libio/oldpclose.c, libio/pclose.c, libio/wfileops.c:
15238 Remove #if 0 and #ifdef TODO blocks.
15239 Assume text_set_element is always defined.
15241 * libio/iofdopen.c, libio/iogetdelim.c, libio/oldiofdopen.c
15242 Use __set_errno (EINVAL) instead of MAYBE_SET_EINVAL.
15243 * libio/tst-mmap-eofsync.c: Make #if 1 block unconditional.
15245 * libio/libio.h (_IOS_ATEND, _IOS_APPEND, _IOS_TRUNC)
15246 (_IOS_NOCREATE, _IOS_NOREPLACE, _IOS_BIN, _OLD_STDIO_MAGIC)
15247 (_IO_SKIPWS, _IO_LEFT, _IO_RIGHT, _IO_INTERNAL, _IO_DEC)
15248 (_IO_OCT, _IO_HEX, _IO_SHOWBASE, _IO_SHOWPOINT, _IO_UPPERCASE)
15249 (_IO_SHOWPOS, _IO_SCIENTIFIC, _IO_FIXED, _IO_UNITBUF, _IO_STDIO)
15250 (_IO_DONT_CLOSE, _IO_BOOLALPHA, _IO_BAD_SEEN): Remove, unused.
15251 Reformat bit flags for _flags field to make occupancy clearer.
15253 * libio/bits/types/struct_FILE.h (_IO_EOF_SEEN, _IO_ERR_SEEN):
15254 Keep definitions consistent with those in libio/libio.h.
15256 * libio/libio.h (_IO_file_flags): Remove macro.
15257 All uses changed to _flags.
15259 * libio/libio.h (_IO_UNIFIED_JUMPTABLES, _STDIO_USES_IOSTREAM)
15260 (__HAVE_COLUMN, _IO_BE): Don't define.
15261 (_IO_peekc_unlocked, _IO_getwc_unlocked, _IO_putwc_unlocked)
15262 (_IO_fwide_maybe_incompatible): Use __glibc_unlikely.
15263 * libio/libioP.h (EOF): Don't define.
15264 * libio/iofdopen.c, libio/iofopen.c, libio/iopopen.c
15265 * libio/iovdprintf.c, libio/oldiofdopen.c, libio/oldiofopen.c
15266 * libio/oldiopopen.c, debug/vdprintf_chk.c: Remove #if block
15267 testing _IO_UNIFIED_JUMPTABLES.
15269 * libio/libio.h (_IO_FILE): Delete; all uses changed to FILE.
15270 (_IO_fpos_t): Delete; all uses changed to __fpos_t.
15271 (_IO_fpos64_t): Delete; all uses changed to __fpos64_t.
15272 (_IO_size_t): Delete; all uses changed to size_t.
15273 (_IO_ssize_t): Delete; all uses changed to ssize_t or __ssize_t.
15274 (_IO_off_t): Delete; all uses changed to off_t.
15275 (_IO_off64_t): Delete; all uses changed to off64_t.
15276 (_IO_pid_t): Delete; all uses changed to pid_t.
15277 (_IO_uid_t): Delete; all uses changed to uid_t.
15278 (_IO_wint_t): Delete; all uses changed to wint_t.
15279 (_IO_va_list): Delete; all uses changed to va_list or __gnuc_va_list.
15280 (_IO_BUFSIZ): Delete; all uses changed to BUFSIZ.
15281 (_IO_cookie_io_functions_t): Delete; all uses changed to
15282 cookie_io_functions_t.
15283 (__io_read_fn): Delete; all uses changed to cookie_read_function_t.
15284 (__io_write_fn): Delete; all uses changed to cookie_write_function_t.
15285 (__io_seek_fn): Delete; all uses changed to cookie_seek_function_t.
15286 (__io_close_fn): Delete: all uses changed to cookie_close_function_t.
15288 * libio/iofopncook.c: Remove unnecessary forward declarations.
15289 * libio/iolibio.h: Correct outdated commentary.
15290 * malloc/malloc.c (__malloc_stats): Remove unnecessary casts.
15291 * stdio-common/fxprintf.c (__fxprintf_nocancel):
15292 Remove unnecessary casts.
15293 * stdio-common/getline.c: Use _IO_getdelim directly.
15294 Don't redefine ssize_t.
15295 * stdio-common/printf_fp.c, stdio_common/printf_fphex.c
15296 * stdio-common/printf_size.c: Don't redefine size_t or FILE.
15297 Remove outdated comments.
15298 * stdio-common/vfscanf.c: Don't redefine va_list.
15300 * libio/iolibio.h, libio/libioP.h: Remove extern "C".
15301 * libio/libio.h: Remove __BEGIN_DECLS and __END_DECLS.
15302 Remove preprocessor conditionals on _LIBC and __USE_GNU,
15303 which are always true, and __cplusplus, which is always false.
15305 2018-02-21 Joseph Myers <joseph@codesourcery.com>
15309 * libio/fputc_u.c (fputc_unlocked): Use libc_hidden_def.
15310 * libio/putc_u.c (putc_unlocked): Rename to __putc_unlocked and
15311 define as weak alias of __putc_unlocked. Use libc_hidden_weak.
15312 * include/stdio.h [!_ISOMAC] (fputc_unlocked): Use
15314 [!_ISOMAC] (putc_unlocked): Likewise.
15315 [!_ISOMAC] (__putc_unlocked): Declare as hidden function, and
15316 define inline if [__USE_EXTERN_INLINES].
15317 * misc/syslog.c (__vsyslog_chk): Call __putc_unlocked instead of
15322 * libio/getc_u.c (getc_unlocked): Use libc_hidden_weak.
15323 * include/stdio.h [!_ISOMAC] (__getc_unlocked): Use
15324 attribute_hidden, and define inline if [__USE_EXTERN_INLINES].
15325 [!_ISOMAC] (getc_unlocked): Use libc_hidden_proto.
15326 * misc/getttyent.c (__getttyent): Call __getc_unlocked instead of
15328 * time/tzfile.c (__tzfile_read): Likewise.
15330 2018-02-21 Mike FABIAN <mfabian@redhat.com>
15333 * localedata/locales/et_EE (LC_COLLATE): add missing “reorder-end”
15335 2018-02-21 Rical Jasan <ricaljasan@pacific.net>
15337 * io/fcntl.h: Fix a typo in a comment.
15339 2018-02-21 Rical Jasan <ricaljasan@pacific.net>
15342 * include/features.h: Add _ISOC11_SOURCE to test for whether to
15343 define _DEFAULT_SOURCE.
15344 * manual/creature.texi (_DEFAULT_SOURCE): Improve documentation.
15346 2018-02-21 Florian Weimer <fweimer@redhat.com>
15349 * elf/cache.c (save_cache): Call fsync on temporary file before
15351 (save_aux_cache): Call fdatasync on temporary file before renaming
15354 2018-02-21 Florian Weimer <fweimer@redhat.com>
15357 * include/caller.h: Remove file.
15358 * elf/dl-caller.c: Likewise.
15359 * elf/Makefile (dl-routines): Remove dl-caller.
15360 (shared-only-routines): Do not add dl-caller.
15361 * elf/dl-load.c (_dl_map_object_from_fd): Do not call
15363 * elf/dl-open.c (struct dl_open_args): Remove caller_dl_open
15365 (dl_open_worker): Do not call __check_caller.
15366 (_dl_open): Do not set caller_dl_open member.
15367 * elf/rtld.c (_rtld_global_ro): Do not initialize
15368 _dl_check_caller member.
15369 * sysdeps/generic/ldsodefs.h (rtld_global): Remove
15370 _dl_check_caller member.
15371 (_dl_check_caller): Remove declaration.
15372 * sysdeps/unix/sysv/linux/dl-execstack.c
15373 (_dl_make_stack_executable): Do not call __check_caller.
15375 2018-02-21 Samuel Thibault <samuel.thibault@ens-lyon.org>
15377 * sysdeps/mach/hurd/dl-sysdep.c (_dl_random): New variable.
15378 * sysdeps/mach/hurd/sysdep-cancel.h: New file.
15380 2018-02-20 Rical Jasan <ricaljasan@pacific.net>
15382 * manual/creature.texi (_ISOC99_SOURCE): Update the dated
15385 2018-02-20 Rical Jasan <ricaljasan@pacific.net>
15388 * manual/creature.texi (_POSIX_C_SOURCE): Document special values
15389 of 199606L, 200112L, and 200809L.
15390 (_XOPEN_SOURCE): Document special values of 600 and 700.
15391 (_ISOC11_SOURCE): Document macro.
15392 (_ATFILE_SOURCE): Likewise.
15393 (_FORTIFY_SOURCE): Likewise.
15395 2018-02-19 Joseph Myers <joseph@codesourcery.com>
15399 * libio/ferror_u.c (ferror_unlocked): Rename to __ferror_unlocked
15400 and define as weak alias of __ferror_unlocked. Use
15402 * include/stdio.h [!_ISOMAC] (ferror_unlocked): Use
15404 [!_ISOMAC] (__ferror_unlocked) New declaration, and inline
15405 function if [__USE_EXTERN_INLINES].
15406 * time/getdate.c (__getdate_r): Call __ferror_unlocked instead of
15409 2018-02-19 Rical Jasan <ricaljasan@pacific.net>
15412 * manual/filesys.texi (get_current_dir_name): Clarify behaviour.
15414 2018-02-18 Aurelien Jarno <aurelien@aurel32.net>
15417 * posix/tst-glob_lstat_compat.c [__alpha__] (glob): Access
15418 the GLIBC_2.1 version.
15420 2018-02-18 Aurelien Jarno <aurelien@aurel32.net>
15423 * catgets/xopen-msg.awk: Ignore POT-Creation-Date line.
15424 * intl/Makefile ($(objpfx)tst-gettext-de.po): Generate
15425 intl/tst-gettext-de.po from po/de.po by removing the
15426 POT-Creation-Date line.
15427 ($(objpfx)msgs.h): Depend on $(objpfx)tst-gettext-de.po instead of
15429 * intl/tst-gettext.sh: Use ${objpfx}tst-gettext-de.po instead of
15432 2018-02-17 Samuel Thibault <samuel.thibault@ens-lyon.org>
15434 * mach/Makefile (headers): Add mach/param.h.
15435 * sysdeps/mach/hurd/bits/param.h: Include <mach/param.h>.
15436 * sysdeps/mach/i386/mach/param.h: New file, defines EXEC_PAGESIZE
15437 * sysdeps/mach/hurd/ptsname.c: Include <sys/stat.h>.
15438 (__ptsname_r): Move implementation to...
15439 (__ptsname_internal): ... new function. Add filling the STP
15442 2018-02-17 John David Anglin <danglin@gcc.gnu.org>
15444 * sysdeps/hppa/fpu/libm-test-ulps (pow): Increase double and
15447 2018-02-16 Rical Jasan <ricaljasan@pacific.net>
15449 * manual/platform.texi (__riscv_flush_icache): Fix @deftypefun
15452 2018-02-16 Stefan Liebler <stli@linux.vnet.ibm.com>
15454 * nptl/Makefile (tst-mutex8-ENV): Delete.
15455 * nptl/tst-mutex8.c (check_type):
15456 Add runtime check if mutex will be elided.
15458 2018-02-15 Joseph Myers <joseph@codesourcery.com>
15462 * manual/install.texi (Configuring and compiling): Describe
15463 passing CC and CFLAGS on configure command line, not as
15464 environment variables. Use @code markup on those variables.
15465 Specify what options go in CC and what go in CFLAGS. Note the
15466 requirement to compile with optimization.
15467 * INSTALL: Regenerated.
15470 * sysdeps/hppa/bsd-setjmp.S: Include <sysdep.h>.
15471 (setjmp): Use HIDDEN_JUMPTARGET with __sigsetjmp.
15472 * sysdeps/unix/sysv/linux/hppa/getcontext.S (__getcontext): Call
15473 __sigprocmask instead of sigprocmask.
15474 * sysdeps/unix/sysv/linux/hppa/setcontext.S (__setcontext):
15476 * sysdeps/unix/sysv/linux/hppa/localplt.data: Remove entries for
15477 __sigsetjmp and sigprocmask.
15480 * include/argz.h (argz_next): Use libc_hidden_proto.
15481 (__argz_next): Likewise.
15482 * string-argz-next.c (__argz_next): Use libc_hidden_def.
15483 (argz_next): Use libc_hidden_weak.
15486 * include/sys/socket.h [!_ISOMAC] (__cmsg_nxthdr): Use
15488 * sysdeps/unix/sysv/linux/cmsg_nxthdr.c (__cmsg_nxthdr): Use
15492 * include/stdio.h [!_ISOMAC && IS_IN (libc)] (fputs): Use
15494 * libio/iofputs.c (fputs): Use libc_hidden_weak.
15498 * libio/feof_u.c (feof_unlocked): Rename to __feof_unlocked and
15499 define as weak alias of __feof_unlocked. Use libc_hidden_weak.
15500 * include/stdio.h (feof_unlocked): Use libc_hidden_proto.
15501 (__feof_unlocked): New declaration, and inline function if
15502 [__USE_EXTERN_INLINES].
15503 * iconv/gconv_conf.c (read_conf_file): Call __feof_unlocked
15504 instead of feof_unlocked.
15505 * intl/localealias.c [_LIBC] (FEOF): Likewise.
15506 * nss/nsswitch.c (nss_parse_file): Likewise.
15507 * sysdeps/unix/sysv/linux/readonly-area.c (__readonly_area):
15509 * time/getdate.c (__getdate_r): Likewise.
15510 * sysdeps/posix/getaddrinfo.c [IS_IN (libc)] (feof_unlocked):
15511 Define as macro to call __feof_unlocked.
15513 2018-02-15 Wilco Dijkstra <wdijkstr@arm.com>
15515 * sysdeps/aarch64/fpu/fpu_control.h: Use <> in include.
15517 2018-02-15 Wilco Dijkstra <wdijkstr@arm.com>
15519 * math/Makefile: Remove mpexp.c and mplog.c
15520 * sysdeps/i386/fpu/mpexp.c: Delete file.
15521 * sysdeps/i386/fpu/mplog.c: Likewise.
15522 * sysdeps/ia64/fpu/mpexp.c: Likewise.
15523 * sysdeps/ia64/fpu/mplog.c: Likewise.
15524 * sysdeps/ieee754/dbl-64/e_exp.c: Remove mention of mpexp and mplog.
15525 * sysdeps/ieee754/dbl-64/mpa.h (__pow_mp): Remove unused function.
15526 * sysdeps/ieee754/dbl-64/mpexp.c: Delete file.
15527 * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
15528 * sysdeps/m68k/m680x0/fpu/mpexp.c: Likewise.
15529 * sysdeps/m68k/m680x0/fpu/mplog.c: Likewise.
15530 * sysdeps/x86_64/fpu/multiarch/Makefile: Remove mpexp* and mplog*.
15531 * sysdeps/x86_64/fpu/multiarch/e_log-avx.c: Remove unused defines.
15532 * sysdeps/x86_64/fpu/multiarch/e_log-fma.c: Likewise.
15533 * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: Likewise.
15534 * sysdeps/x86_64/fpu/multiarch/mpexp-avx.c: Delete file.
15535 * sysdeps/x86_64/fpu/multiarch/mpexp-fma.c: Likewise.
15536 * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: Likewise.
15537 * sysdeps/x86_64/fpu/multiarch/mplog-avx.c: Likewise.
15538 * sysdeps/x86_64/fpu/multiarch/mplog-fma.c: Likewise.
15539 * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: Likewise.
15541 2018-02-15 Stefan Liebler <stli@linux.vnet.ibm.com>
15543 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
15545 2018-02-14 Adhemerval Zanella <adhemerval.zanella@linaro.org>
15547 * sysdeps/sh/libm-test-ulps: Update.
15549 2018-02-12 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
15551 * sysdeps/powerpc/fpu/libm-test-ulps (pow): Increase double and
15554 2018-02-12 Zack Weinberg <zackw@panix.com>
15557 * posix/sys/types.h: Don't include sys/sysmacros.h.
15558 * misc/sys/sysmacros.h: Remove the conditional deprecation
15559 warnings for the macros defined by this header.
15561 2018-02-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
15563 * manual/probes.texi: Remove slowexp probes.
15564 * math/Makefile: Remove slowexp.
15565 * sysdeps/generic/math_private.h (__slowexp): Remove.
15566 * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Remove __slowexp and
15567 document error bounds.
15568 * sysdeps/i386/fpu/slowexp.c: Remove.
15569 * sysdeps/ia64/fpu/slowexp.c: Remove.
15570 * sysdeps/ieee754/dbl-64/slowexp.c: Remove.
15571 * sysdeps/ieee754/dbl-64/uexp.h (err_0): Remove.
15572 * sysdeps/m68k/m680x0/fpu/slowexp.c: Remove.
15573 * sysdeps/powerpc/power4/fpu/Makefile (CPPFLAGS-slowexp.c): Remove.
15574 * sysdeps/x86_64/fpu/multiarch/Makefile: Remove slowexp-fma.
15575 * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c (__slowexp): Remove.
15576 * sysdeps/x86_64/fpu/multiarch/e_exp-fma.c (__slowexp): Remove.
15577 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c (__slowexp): Remove.
15578 * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: Remove.
15579 * sysdeps/x86_64/fpu/multiarch/slowexp-fma.c: Remove.
15580 * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Remove.
15582 2018-02-12 Wilco Dijkstra <wdijkstr@arm.com>
15585 * sysdeps/ieee754/dbl-64/uexp.h (err_1): Remove.
15586 * benchtests/pow-inputs: Update comment for slow path cases.
15587 * manual/probes.texi (slowpow_p10): Delete removed probe.
15588 (slowpow_p10): Likewise.
15589 * math/Makefile: Remove halfulp.c and slowpow.c.
15590 * sysdeps/aarch64/libm-test-ulps: Set ULP of pow to 1.
15591 * sysdeps/generic/math_private.h (__exp1): Remove error argument.
15592 (__halfulp): Remove.
15593 (__slowpow): Remove.
15594 * sysdeps/i386/fpu/halfulp.c: Delete file.
15595 * sysdeps/i386/fpu/slowpow.c: Likewise.
15596 * sysdeps/ia64/fpu/halfulp.c: Likewise.
15597 * sysdeps/ia64/fpu/slowpow.c: Likewise.
15598 * sysdeps/ieee754/dbl-64/e_exp.c (__exp1): Remove error argument,
15599 improve comments and add error analysis.
15600 * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Add error analysis.
15601 (power1): Remove function:
15602 (log1): Remove error argument, add error analysis.
15603 (my_log2): Remove function.
15604 * sysdeps/ieee754/dbl-64/halfulp.c: Delete file.
15605 * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
15606 * sysdeps/m68k/m680x0/fpu/halfulp.c: Likewise.
15607 * sysdeps/m68k/m680x0/fpu/slowpow.c: Likewise.
15608 * sysdeps/powerpc/power4/fpu/Makefile: Remove CPPFLAGS-slowpow.c.
15609 * sysdeps/x86_64/fpu/libm-test-ulps: Set ULP of pow to 1.
15610 * sysdeps/x86_64/fpu/multiarch/Makefile: Remove slowpow-fma.c,
15611 slowpow-fma4.c, halfulp-fma.c, halfulp-fma4.c.
15612 * sysdeps/x86_64/fpu/multiarch/e_pow-fma.c (__slowpow): Remove define.
15613 * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c (__slowpow): Likewise.
15614 * sysdeps/x86_64/fpu/multiarch/halfulp-fma.c: Delete file.
15615 * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: Likewise.
15616 * sysdeps/x86_64/fpu/multiarch/slowpow-fma.c: Likewise.
15617 * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: Likewise.
15619 2018-02-11 Samuel Thibault <samuel.thibault@ens-lyon.org>
15621 * nscd/connections.c (RWLOCK_INITIALIZER): Define to
15622 PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP or
15624 2018-02-10 Dmitry V. Levin <ldv@altlinux.org>
15627 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h (__ptrace_request):
15628 Remove arm-specific PTRACE_GET_THREAD_AREA, PTRACE_GETHBPREGS,
15629 and PTRACE_SETHBPREGS.
15631 2018-02-10 Zack Weinberg <zackw@panix.com>
15634 * malloc/malloc.c (__malloc_stats): Restore stderr->_flags2
15636 * malloc/tst-malloc-stats-cancellation.c: New test case.
15637 * malloc/Makefile: Add new test case.
15639 2018-02-10 Wilco Dijkstra <wdijkstr@arm.com>
15641 * sysdeps/aarch64/fpu/fpu_control.h: Add features.h to fix build error.
15643 2018-02-10 Joseph Myers <joseph@codesourcery.com>
15645 * math/Makefile (libm-narrow-fns): Add add.
15646 (libm-test-funcs-narrow): Likewise.
15647 * math/Versions (GLIBC_2.28): Add narrowing add functions.
15648 * math/bits/mathcalls-narrow.h (add): Use __MATHCALL_NARROW .
15649 * math/gen-auto-libm-tests.c (test_functions): Add add.
15650 * math/math-narrow.h (CHECK_NARROW_ADD): New macro.
15651 (NARROW_ADD_ROUND_TO_ODD): Likewise.
15652 (NARROW_ADD_TRIVIAL): Likewise.
15653 * sysdeps/ieee754/float128/float128_private.h (__faddl): New
15655 (__daddl): Likewise.
15656 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Add fadd and
15658 (CFLAGS-nldbl-dadd.c): New variable.
15659 (CFLAGS-nldbl-fadd.c): Likewise.
15660 * sysdeps/ieee754/ldbl-opt/Versions (GLIBC_2.28): Add
15662 * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (__nldbl_daddl): New
15664 * manual/arith.texi (Misc FP Arithmetic): Document fadd, faddl,
15665 daddl, fMaddfN, fMaddfNx, fMxaddfN and fMxaddfNx.
15666 * math/auto-libm-test-in: Add tests of add.
15667 * math/auto-libm-test-out-narrow-add: New generated file.
15668 * math/libm-test-narrow-add.inc: New file.
15669 * sysdeps/i386/fpu/s_f32xaddf64.c: Likewise.
15670 * sysdeps/ieee754/dbl-64/s_f32xaddf64.c: Likewise.
15671 * sysdeps/ieee754/dbl-64/s_fadd.c: Likewise.
15672 * sysdeps/ieee754/float128/s_f32addf128.c: Likewise.
15673 * sysdeps/ieee754/float128/s_f64addf128.c: Likewise.
15674 * sysdeps/ieee754/float128/s_f64xaddf128.c: Likewise.
15675 * sysdeps/ieee754/ldbl-128/s_daddl.c: Likewise.
15676 * sysdeps/ieee754/ldbl-128/s_f64xaddf128.c: Likewise.
15677 * sysdeps/ieee754/ldbl-128/s_faddl.c: Likewise.
15678 * sysdeps/ieee754/ldbl-128ibm/s_daddl.c: Likewise.
15679 * sysdeps/ieee754/ldbl-128ibm/s_faddl.c: Likewise.
15680 * sysdeps/ieee754/ldbl-96/s_daddl.c: Likewise.
15681 * sysdeps/ieee754/ldbl-96/s_faddl.c: Likewise.
15682 * sysdeps/ieee754/ldbl-opt/nldbl-dadd.c: Likewise.
15683 * sysdeps/ieee754/ldbl-opt/nldbl-fadd.c: Likewise.
15684 * sysdeps/ieee754/soft-fp/s_daddl.c: Likewise.
15685 * sysdeps/ieee754/soft-fp/s_fadd.c: Likewise.
15686 * sysdeps/ieee754/soft-fp/s_faddl.c: Likewise.
15687 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
15688 * sysdeps/mach/hurd/i386/libm.abilist: Likewise.
15689 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
15690 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
15691 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
15692 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
15693 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
15694 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
15695 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
15696 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
15697 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
15698 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
15699 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
15700 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
15701 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: Likewise.
15702 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist: Likewise.
15703 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: Likewise.
15704 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: Likewise.
15705 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
15706 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
15707 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
15708 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
15709 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
15710 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
15711 * sysdeps/unix/sysv/linux/tile/tilegx32/libm.abilist: Likewise.
15712 * sysdeps/unix/sysv/linux/tile/tilegx64/libm.abilist: Likewise.
15713 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
15714 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
15716 * sysdeps/powerpc/powerpc64le/Makefile [$(subdir) = math]
15717 (f128-pairs): New variable.
15718 [$(subdir) = math] ($(foreach suf,$(all-object-suffixes),$(foreach
15719 pair,$(f128-pairs),$(objpfx)test-$(pair)%$(suf)))): Add -mfloat128
15721 [$(subdir) = math] ($(foreach pair,$(f128-pairs),test-$(pair)%)):
15722 Also make tests add $(f128-loader-link) to gnulib-tests.
15724 2018-02-09 DJ Delorie <dj@redhat.com>
15727 * sysdeps/unix/sysv/linux/riscv/readelflib.c (process_elf_file): Use
15728 64-bit ELF type for 64-bit ELF objects.
15730 2018-02-09 Joseph Myers <joseph@codesourcery.com>
15732 * math/libm-test-driver.c (snan_tests_arg): New variable.
15733 * math/libm-test-support.h (snan_tests_arg): New declaration.
15734 * math/libm-test-support.c (enable_test): Check snan_tests_arg.
15736 * math/Makefile (test-type-pairs): New variable.
15737 (test-type-pairs-f64xf128-yes): Likewise.
15738 (tests): Add test-narrow-macros.
15739 (libm-test-funcs-narrow): New variable.
15740 (libm-test-c-narrow): Likewise.
15741 (generated): Add $(libm-test-c-narrow).
15742 (libm-tests-base-narrow): New variable.
15743 (libm-tests-narrow): Likewise.
15744 (libm-tests): Add $(libm-tests-narrow).
15745 (libm-tests-for-type): Handle $(libm-tests-narrow).
15746 (libm-test-c-narrow-obj): New variable.
15747 ($(libm-test-c-narrow-obj)): New rule.
15748 ($(foreach t,$(libm-tests-narrow),$(objpfx)$(t).c)): Likewise.
15749 ($(foreach f,$(libm-test-funcs-narrow),$(objpfx)$(o)-$(f).o)): Use
15750 $(o-iterator) to set dependencies and CFLAGS.
15751 * math/gen-auto-libm-tests.c: Document use for narrowing
15753 (output_for_one_input_case): Take argument NARROW.
15754 (generate_output): Likewise. Update call to
15755 output_for_one_input_case.
15756 (main): Take --narrow option. Update call to generate_output.
15757 * math/gen-libm-test.pl (_apply_lit): Take macro name as argument.
15758 (apply_lit): Update call to _apply_lit.
15759 (apply_arglit): New function.
15760 (parse_args): Handle "a" arguments.
15761 (parse_auto_input): Handle format names using ":".
15762 * math/README.libm-test: Document "a" parameter type.
15763 * math/libm-test-support.h (ARG_TYPE_MIN): New macro.
15764 (ARG_TYPE_TRUE_MIN): Likewise.
15765 (ARG_TYPE_MAX): Likwise.
15766 (ARG_MIN_EXP): Likewise.
15767 (ARG_MAX_EXP): Likewise.
15768 (ARG_MANT_DIG): Likewise.
15769 (TEST_COND_arg_ibm128): Likewise.
15770 (TEST_COND_ibm128_libgcc): Define conditional on [ARG_FLOAT].
15771 (TEST_COND_arg_fmt): New macro.
15772 (init_max_error): Update prototype.
15773 * math/libm-test-support.c (test_ibm128): New variable.
15774 (init_max_error): Take argument testing_ibm128 and set test_ibm128
15775 instead of using [TEST_COND_ibm128] conditional.
15776 (test_exceptions): Use test_ibm128 instead of TEST_COND_ibm128.
15777 * math/libm-test-driver.c (STR_ARG_FLOAT): New macro.
15778 [TEST_NARROW] (TEST_MSG): New definition.
15779 (arg_plus_zero): New macro.
15780 (arg_minus_zero): Likewise.
15781 (arg_plus_infty): Likewise.
15782 (arg_minus_infty): Likewise.
15783 (arg_qnan_value_pl): Likewise.
15784 (arg_qnan_value): Likewise.
15785 (arg_snan_value_pl): Likewise.
15786 (arg_snan_value): Likewise.
15787 (arg_max_value): Likewise.
15788 (arg_min_value): Likewise.
15789 (arg_min_subnorm_value): Likewise.
15790 [ARG_FLOAT] (struct test_aa_f_data): New struct type.
15791 (RUN_TEST_LOOP_aa_f): New macro.
15792 (TEST_SUFF): New macro.
15793 (TEST_SUFF_STR): Likewise.
15794 [!TEST_MATHVEC] (VEC_SUFF): Don't define.
15795 (TEST_COND_any_ibm128): New macro.
15796 (START): Use TEST_SUFF and TEST_SUFF_STR in initializer for
15797 this_func. Update call to init_max_error.
15798 * math/test-double.h (FUNC_NARROW_PREFIX): New macro.
15799 * math/test-float.h (FUNC_NARROW_PREFIX): Likewise.
15800 * math/test-float128.h (FUNC_NARROW_PREFIX): Likewise.
15801 * math/test-float32.h (FUNC_NARROW_PREFIX): Likewise.
15802 * math/test-float32x.h (FUNC_NARROW_PREFIX): Likewise.
15803 * math/test-float64.h (FUNC_NARROW_PREFIX): Likewise.
15804 * math/test-float64x.h (FUNC_NARROW_PREFIX): Likewise.
15805 * math/test-math-scalar.h (TEST_NARROW): Likewise.
15806 * math/test-math-vector.h (TEST_NARROW): Likewise.
15807 * math/test-arg-double.h: New file.
15808 * math/test-arg-float128.h: Likewise.
15809 * math/test-arg-float32x.h: Likewise.
15810 * math/test-arg-float64.h: Likewise.
15811 * math/test-arg-float64x.h: Likewise.
15812 * math/test-arg-ldouble.h: Likewise.
15813 * math/test-math-narrow.h: Likewise.
15814 * math/test-narrow-macros.c: Likewise.
15815 * sysdeps/ieee754/ldbl-opt/test-narrow-macros-ldbl-64.c: Likewise.
15816 * sysdeps/ieee754/ldbl-opt/Makefile (tests): Add
15817 test-narrow-macros-ldbl-64.
15818 (CFLAGS-test-narrow-macros-ldbl-64.c): New variable.
15820 * math/bits/mathcalls-narrow.h: New file.
15821 * include/bits/mathcalls-narrow.h: Likewise.
15822 * math/math-narrow.h: Likewise.
15823 * math/math.h (__MATHCALL_NARROW_ARGS_1): New macro.
15824 (__MATHCALL_NARROW_ARGS_2): Likewise.
15825 (__MATHCALL_NARROW_ARGS_3): Likewise.
15826 (__MATHCALL_NARROW_NORMAL): Likewise.
15827 (__MATHCALL_NARROW_REDIR): Likewise.
15828 (__MATHCALL_NARROW): Likewise.
15829 [__GLIBC_USE (IEC_60559_BFP_EXT)]: Repeatedly include
15830 <bits/mathcalls-narrow.h> with _Mret_, _Marg_ and __MATHCALL_NAME
15832 [__GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
15833 * math/Makefile (headers): Add bits/mathcalls-narrow.h.
15834 (libm-narrow-fns): New variable.
15835 (libm-narrow-types-basic): Likewise.
15836 (libm-narrow-types-ldouble-yes): Likewise.
15837 (libm-narrow-types-float128-yes): Likewise.
15838 (libm-narrow-types-float128-alias-yes): Likewise.
15839 (libm-narrow-types): Likewise.
15840 (libm-routines): Add narrowing functions.
15841 * sysdeps/i386/fpu/fenv_private.h [__x86_64__]
15842 (libc_feholdexcept_setroundf128): New macro.
15843 [__x86_64__] (libc_feupdateenv_testf128): Likewise.
15844 * sysdeps/ieee754/float128/float128_private.h: Include
15845 <math/math-narrow.h>.
15846 [libc_feholdexcept_setroundf128] (libc_feholdexcept_setroundl):
15847 Undefine and redefine.
15848 [libc_feupdateenv_testf128] (libc_feupdateenv_testl): Likewise.
15849 (libm_alias_float_ldouble): Undefine and redefine.
15850 (libm_alias_double_ldouble): Likewise.
15852 * math/Makefile [$(PERL) != no] (libm-test-incs): Remove variable.
15854 2018-02-09 Wilco Dijkstra <wdijkstr@arm.com>
15856 * sysdeps/aarch64/fpu/fpu_control.h: Use builtins for accessing
15859 2018-02-09 Rical Jasan <ricaljasan@pacific.net>
15861 * manual/creature.texi: Convert references to gcc.info to gcc.
15862 * manual/stdio.texi: Likewise.
15863 * manual/string.texi: Likewise.
15865 2018-02-07 Joseph Myers <joseph@codesourcery.com>
15868 * posix/bits/types.h (__int_least8_t): New typedef.
15869 (__uint_least8_t): Likewise.
15870 (__int_least16_t): Likewise.
15871 (__uint_least16_t): Likewise.
15872 (__int_least32_t): Likewise.
15873 (__uint_least32_t): Likewise.
15874 (__int_least64_t): Likewise.
15875 (__uint_least64_t): Likewise.
15876 * sysdeps/generic/stdint.h (int_least8_t): Define using
15878 (int_least16_t): Define using __int_least16_t.
15879 (int_least32_t): Define using __int_least32_t.
15880 (int_least64_t): Define using __int_least64_t.
15881 (uint_least8_t): Define using __uint_least8_t.
15882 (uint_least16_t): Define using __uint_least16_t.
15883 (uint_least32_t): Define using __uint_least32_t.
15884 (uint_least64_t): Define using __uint_least64_t.
15885 * wcsmbs/uchar.h: Include <bits/types.h>.
15886 (char16_t): Define using __uint_least16_t conditional only on
15888 (char32_t): Define using __uint_least32_t conditional only on
15890 * wcsmbs/test-char-types.c: New file.
15891 * wcsmbs/Makefile (tests): Add test-char-types.
15893 * scripts/build-many-glibcs.py (Context.checkout): Default MPFR
15896 2018-02-07 Zack Weinberg <zackw@panix.com>
15898 * bits/_G_config.h: Move back to sysdeps/generic/_G_config.h.
15899 Delete all contents except for definitions of _G_HAVE_MMAP and
15900 _G_HAVE_MREMAP. Add commentary explaining those two symbols.
15901 * sysdeps/unix/sysv/linux/bits/_G_config.h: Move back to
15902 sysdeps/unix/sysv/linux/_G_config.h. Make same content
15905 * libio/libio.h: Don't include bits/_G_config.h here.
15906 Include stddef.h with __need_wchar_t defined. Include
15907 bits/types/__mbstate_t.h, bits/types/wint_t.h, and gconv.h.
15908 Define _IO_iconv_t here, directly.
15909 Don't define _IO_HAVE_ST_BLKSIZE.
15910 * libio/libioP.h: Include _G_config.h here. Move include of
15911 shlib-compat.h up with rest of includes. Simplify conditionals
15912 controlling definition of _IO_JUMPS_OFFSET.
15914 * csu/init.c: Remove always-true #if around entire file.
15915 Don't include stdio.h. Set _IO_stdin_used to hardwired
15916 constant 0x20001, and update commentary.
15917 * include/stdio.h, sysdeps/ieee754/ldbl-opt/nldbl-compat.h:
15918 Replace all uses of _G_va_list with __gnuc_va_list.
15919 * libio/filedoalloc.c: Use #if defined _STATBUF_ST_BLKSIZE
15920 instead of #if _IO_HAVE_ST_BLKSIZE.
15921 * libio/fileops.c: Test _G_HAVE_MREMAP with #if, not #ifdef.
15922 * libio/iofdopen.c, libio/iofopen.c: Test _G_HAVE_MMAP with #if,
15925 * libio/bits/libio.h: Move back to libio/libio.h and adjust
15926 multiple-include guard to match.
15927 Merge contents of libio/bits/libio-ldbl.h and include/libio.h
15929 Remove preprocessor conditionals that are always true and/or
15930 redundant to other preprocessor conditionals in the same nest.
15931 Include shlib-compat.h unconditionally.
15932 Error out if _LIBC is not defined, or if _ISOMAC is defined,
15933 or if _IO_MTSAFE_IO is defined but _IO_lock_t_defined is not
15934 defined after including stdio.h.
15935 Use __BEGIN_DECLS/__END_DECLS.
15937 * libio/bits/libio-ldbl.h, include/bits/libio.h: Delete file.
15938 * include/stdio.h, libio/iolibio.h, libio/libioP.h: Include
15939 libio.h as <libio/libio.h> rather than as <bits/libio.h>.
15941 2018-02-07 Zack Weinberg <zackw@panix.com>
15943 * libio/bits/types/__fpos_t.h, libio/bits/types/__fpos64_t.h:
15944 New single-type headers split from _G_config.h.
15945 * libio/bits/types/cookie_io_functions_t.h
15946 * libio/bits/types/struct_FILE.h
15947 New single-type headers split from libio.h.
15949 * libio/Makefile: Install the above new headers. Don't install
15950 libio.h, _G_config.h, bits/libio.h, bits/_G_config.h, or
15952 * libio/_G_config.h, libio/libio.h: Delete file.
15954 * libio/bits/libio.h: Remove improper-inclusion guard.
15955 Include stdio.h and don't repeat anything that it does.
15956 Define _IO_fpos_t as __fpos_t, _IO_fpos64_t as __fpos64_t,
15957 _IO_BUFSIZ as BUFSIZ, _IO_va_list as __gnuc_va_list,
15958 __io_read_fn as cookie_read_function_t,
15959 __io_write_fn as cookie_write_function_t,
15960 __io_seek_fn as cookie_seek_function_t,
15961 __io_close_fn as cookie_close_function_t,
15962 and _IO_cookie_io_functions_t as cookie_io_functions_t.
15963 Define _STDIO_USES_IOSTREAM, __HAVE_COLUMN, and _IO_file_flags
15964 here, in the "compatibility defines" section. Remove an #if 0
15965 block. Use the "body" macros from bits/types/struct_FILE.h to
15966 define _IO_getc_unlocked, _IO_putc_unlocked, _IO_feof_unlocked,
15967 and _IO_ferror_unlocked.
15968 Move prototypes of __uflow and __overflow...
15970 * libio/stdio.h: ...here. Don't include bits/libio.h.
15971 Don't define _STDIO_USES_IOSTREAM. Get __gnuc_va_list
15972 directly from stdarg.h. Include bits/types/__fpos_t.h,
15973 bits/types/__fpos64_t.h, bits/types/struct_FILE.h,
15974 and, when __USE_GNU, bits/types/cookie_io_functions_t.h.
15975 Use __gnuc_va_list, not _G_va_list; __fpos_t, not _G_fpos_t;
15976 __fpos64_t, not _G_fpos64_t; FILE, not struct _IO_FILE;
15977 cookie_io_functions_t, not _IO_cookie_io_functions_t;
15978 __ssize_t, not _IO_ssize_t. Unconditionally define
15979 BUFSIZ as 8192 and EOF as (-1).
15981 * libio/bits/stdio.h: Add multiple-include guard. Use the "body"
15982 macros from bits/types/struct_FILE.h instead of _IO_* macros
15983 from libio.h; use __gnuc_va_list instead of va_list and __ssize_t
15984 instead of _IO_ssize_t.
15985 * libio/bits/stdio2.h: Similarly.
15987 * libio/iolibio.h: Add multiple-include guard.
15988 Include bits/libio.h after stdio.h.
15989 * libio/libioP.h: Add multiple-include guard.
15990 Include stdio.h and bits/libio.h before iolibio.h.
15992 * include/bits/types/__fpos_t.h, include/bits/types/__fpos64_t.h
15993 * include/bits/types/cookie_io_functions_t.h
15994 * include/bits/types/struct_FILE.h: New wrappers.
15996 * bits/_G_config.h, sysdeps/unix/sysv/linux/_G_config.h:
15997 Get definitions of _G_fpos_t and _G_fpos64_t from
15998 bits/types/__fpos_t.h and bits/types/__fpos64_t.h
15999 respectively. Remove improper-inclusion guards.
16001 * conform/data/stdio.h-data: Update expectations of va_list.
16002 * scripts/check-installed-headers.sh: Remove special case for
16003 libio.h and _G_config.h.
16005 2018-02-07 Joseph Myers <joseph@codesourcery.com>
16009 * include/sys/sysmacros.h [!_ISOMAC]
16010 (__SYSMACROS_NEED_IMPLEMENTATION): Define macro.
16011 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC]
16012 (_SYS_SYSMACROS_H_WRAPPER): Likewise.
16013 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (gnu_dev_major): Use
16015 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (gnu_dev_minor): Likewise.
16016 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (gnu_dev_makedev):
16018 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (__SYSMACROS_DECL_TEMPL):
16019 Undefine and redefine to add use __gnu_dev_ prefix.
16020 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (__SYSMACROS_IMPL_TEMPL):
16022 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (__gnu_dev_major): Declare
16023 and define as hidden inline function.
16024 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (__gnu_dev_minor):
16026 [!_SYS_SYSMACROS_H_WRAPPER && !_ISOMAC] (__gnu_dev_makedev):
16028 * misc/makedev.c (OUT_OF_LINE_IMPL_TEMPL): Use __gnu_dev_ prefix.
16029 (gnu_dev_major): Use weak_alias and libc_hidden_weak.
16030 (gnu_dev_minor): Likewise.
16031 (gnu_dev_makedev): Likewise.
16032 * csu/check_fds.c (check_one_fd): Use __gnu_dev_makedev instead of
16034 * posix/wordexp.c (exec_comm_child): Likewise.
16035 * sysdeps/mach/hurd/xmknodat.c (__xmknodat): Use __gnu_dev_minor
16036 instead of minor and __gnu_dev_major instead of major.
16037 * sysdeps/unix/sysv/linux/device-nrs.h (DEV_TTY_P): Use
16038 __gnu_dev_major instead of major.
16039 * sysdeps/unix/sysv/linux/pathconf.c (distinguish_extX): Use
16040 __gnu_dev_major instead of gnu_dev_major and __gnu_dev_minor
16041 instead of gnu_dev_minor.
16042 * sysdeps/unix/sysv/linux/ptsname.c (MASTER_P): Likewise.
16043 (SLAVE_P): Likewise.
16044 (__ptsname_internal): Use __gnu_dev_minor instead of minor.
16045 * sysdeps/unix/sysv/linux/ttyname.h (is_pty): Use __gnu_dev_major
16049 * locale/weight.h (findidx): Disable -Wmaybe-uninitialized for -Os
16051 * locale/weightwc.h (findidx): Likewise.
16053 2018-02-07 Wilco Dijkstra <wdijkstr@arm.com>
16055 * manual/probes.texi (slowlog): Delete documentation of removed probe.
16056 (slowlog_inexact): Likewise
16057 * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Remove slow paths.
16058 * sysdeps/ieee754/dbl-64/ulog.h: Remove unused declarations.
16060 2018-02-07 Igor Gnatenko <ignatenko@redhat.com>
16063 * sysdeps/unix/sysv/linux/bits/mman-shared.h (pkey_get): Add
16064 missing second underscore to parameter name.
16066 2018-02-06 Joseph Myers <joseph@codesourcery.com>
16072 * bits/byteswap.h: Update file comment. Do not include
16073 <bits/byteswap-16.h>.
16074 (__bswap_constant_16): Cast result to __uint16_t. Use signed 0xff
16076 (__bswap_16): Define as inline function.
16077 (__bswap_constant_32): Reformat definition.
16078 (__bswap_32): Always define as inline function, not macro, using
16079 __uint32_t. Use __builtin_bswap32 if [__GNUC_PREREQ (4, 3)],
16080 otherwise __bswap_constant_32.
16081 (__bswap_constant_64): Reformat definition. Do not use
16082 __extension__ here.
16083 (__bswap_64): Always define as inline function, not macro. Use
16084 __extension__ on function definition. Use __builtin_bswap64 if
16085 [__GNUC_PREREQ (4, 3)], otherwise __bswap_constant_64.
16086 * string/test-endian-file-scope.c: New file.
16087 * string/test-endian-sign-conversion.c: Likewise.
16088 * string/Makefile (headers): Remove bits/byteswap-16.h.
16089 (tests): Add test-endian-file-scope and
16090 test-endian-sign-conversion.
16091 (CFLAGS-test-endian-sign-conversion.c): New variable.
16092 * bits/byteswap-16.h: Remove file.
16093 * sysdeps/ia64/bits/byteswap-16.h: Likewise.
16094 * sysdeps/ia64/bits/byteswap.h: Likewise.
16095 * sysdeps/m68k/bits/byteswap.h: Likewise.
16096 * sysdeps/s390/bits/byteswap-16.h: Likewise.
16097 * sysdeps/s390/bits/byteswap.h: Likewise.
16098 * sysdeps/tile/bits/byteswap.h: Likewise.
16099 * sysdeps/x86/bits/byteswap-16.h: Likewise.
16100 * sysdeps/x86/bits/byteswap.h: Likewise.
16103 * misc/sys/cdefs.h [!__GNUC__ && (__cplusplus || (__STDC_VERSION__
16104 && __STDC_VERSION__ >= 199901L))] (__inline): Define to inline.
16105 [!__GNUC_PREREQ (2,92) && __STDC_VERSION__ && __STDC_VERSION__ >=
16106 199901L] (__restrict): Define to restrict.
16109 * string/testcopy.c: Include <support/support.h>. Do not include
16110 <malloc.h>. Use <support/test-driver.c>.
16111 (main): Rename to do_test. Make static. Use xmalloc instead of
16115 * posix/bits/posix1_lim.h: Include <bits/wordsize.h>.
16116 [!SSIZE_MAX && !(__WORDSIZE == 64 || __WORDSIZE32_SIZE_ULONG)]
16117 (SSIZE_MAX): Define to INT_MAX.
16118 * posix/test-ssize-max.c: New file.
16119 * posix/Makefile (tests): Add test-ssize-max.
16122 * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c: Include
16123 <support/support.h>. Do not include <malloc.h>.
16124 (query_auxv): Use xmalloc instead of malloc.
16127 * posix/sys/types.h (loff_t): Only define for [__USE_MISC].
16128 * sysdeps/unix/sysv/linux/sys/quota.h (dqoff): Use __loff_t
16131 2018-02-06 Florian Weimer <fweimer@redhat.com>
16134 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
16135 Use scratch_buffer instead of extend_alloca.
16137 2018-02-06 Zack Weinberg <zackw@panix.com>
16139 * libio/stdio.h: Don't define getc or putc as macros.
16140 * libio/bits/stdio.h (getchar, putchar): Use getc and putc,
16141 not _IO_getc and _IO_putc.
16143 * stdio-common/tstgetln.c: Don't redefine FILE, va_list, or BUFSIZ.
16144 * stdio-common/tstgetln.c: Don't redefine ssize_t.
16146 2018-02-06 Joseph Myers <joseph@codesourcery.com>
16148 * sysdeps/gnu/netinet/tcp.h (TCP_FASTOPEN_KEY): New macro.
16149 (TCP_FASTOPEN_NO_COOKIE): Likewise.
16151 * sysdeps/unix/sysv/linux/bits/in.h (IPV6_FREEBIND): New macro.
16154 * elf/elf.h (NT_PRFPREG): New macro.
16155 (NT_S390_VXRS_LOW): Likewise.
16156 (NT_S390_VXRS_HIGH): Likewise.
16157 (NT_S390_GS_CB): Likewise.
16158 (NT_S390_GS_BC): Likewise.
16159 (NT_S390_RI_CB): Likewise.
16161 * sysdeps/unix/sysv/linux/aarch64/bits/mman.h [__USE_MISC]
16162 (MAP_SYNC): New macro.
16163 * sysdeps/unix/sysv/linux/arm/bits/mman.h [__USE_MISC] (MAP_SYNC):
16165 * sysdeps/unix/sysv/linux/ia64/bits/mman.h [__USE_MISC]
16166 (MAP_SYNC): Likewise.
16167 * sysdeps/unix/sysv/linux/m68k/bits/mman.h [__USE_MISC]
16168 (MAP_SYNC): Likewise.
16169 * sysdeps/unix/sysv/linux/microblaze/bits/mman.h [__USE_MISC]
16170 (MAP_SYNC): Likewise.
16171 * sysdeps/unix/sysv/linux/nios2/bits/mman.h [__USE_MISC]
16172 (MAP_SYNC): Likewise.
16173 * sysdeps/unix/sysv/linux/riscv/bits/mman.h [__USE_MISC]
16174 (MAP_SYNC): Likewise.
16175 * sysdeps/unix/sysv/linux/s390/bits/mman.h [__USE_MISC]
16176 (MAP_SYNC): Likewise.
16177 * sysdeps/unix/sysv/linux/sh/bits/mman.h [__USE_MISC] (MAP_SYNC):
16179 * sysdeps/unix/sysv/linux/x86/bits/mman.h [__USE_MISC] (MAP_SYNC):
16182 * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_MISC]
16183 (MAP_SHARED_VALIDATE): New macro.
16184 * sysdeps/unix/sysv/linux/hppa/bits/mman.h [__USE_MISC]
16185 (MAP_SHARED_VALIDATE): Likewise.
16187 2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
16189 * elf/dl-addr.c (determine_info): Use ADDRIDX with DT_GNU_HASH.
16190 * elf/dl-lookup.c (_dl_setup_hash): Likewise.
16191 * elf/get-dynamic-info.h (elf_get_dynamic_info): Likewise.
16193 2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
16195 * elf/elf.h (DT_SYMTAB_SHNDX): New. Set to 34.
16196 (DT_NUM): Updated to 35.
16198 2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
16200 * sysdeps/i386/dl-machine.h (elf_machine_rel): Replace
16201 __builtin_expect with __glibc_likely and __glibc_unlikely.
16202 (elf_machine_rela): Likewise.
16203 (elf_machine_lazy_rel): Likewise.
16205 2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
16207 * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Replace
16208 __builtin_expect with __glibc_likely and __glibc_unlikely.
16209 (elf_machine_lazy_rel): Likewise.
16211 2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
16214 * sysdeps/sparc/sparc32/start.S (_start): Check PIC instead of
16216 * sysdeps/sparc/sparc64/start.S (_start): Likewise.
16218 2018-02-05 Andreas Schwab <schwab@suse.de>
16221 * assert/assert-perr.c (__assert_perror_fail): Append %n to format
16224 2018-02-04 Samuel Thibault <samuel.thibault@ens-lyon.org>
16226 * stdlib/test-atexit-race-common.c [!defined PTHREAD_STACK_MIN]: Do
16227 not check against PTHREAD_STACK_MIN.
16229 2018-02-02 Sean McKean <smckean83@gmail.com>
16232 * time/time.h (clock): Reference CLOCKS_PER_SEC in comment.
16234 2018-02-02 Florian Weimer <fweimer@redhat.com>
16237 * sysdeps/posix/preadv2.c (preadv2): Handle offset == -1.
16238 * sysdeps/posix/preadv64v2.c (preadv64v2): Likewise.
16239 * sysdeps/posix/pwritev2.c (pwritev2): Likewise.
16240 * sysdeps/posix/pwritev64v2.c (pwritev64v2): Likweise.
16241 * sysdeps/unix/sysv/linux/preadv2.c (preadv2): Likewise.
16242 * sysdeps/unix/sysv/linux/preadv64v2.c (preadv64v2): Likewise.
16243 * sysdeps/unix/sysv/linux/pwritev2.c (pwritev2): Likewise.
16244 * sysdeps/unix/sysv/linux/pwritev64v2.c (pwritev64v2): Likweise.
16245 * manual/llio.texi (Scatter-Gather): Mention offset -1.
16246 * misc/tst-preadvwritev-common.c (do_test_without_offset): New.
16247 * misc/tst-preadvwritev2.c (do_test): Call it.
16248 * misc/tst-preadvwritev64v2.c (do_test): Likewise.
16250 2018-02-02 Siddhesh Poyarekar <siddhesh@sourceware.org>
16252 * sysdeps/aarch64/memcmp.S: Use L() macro for labels.
16254 * benchtests/bench-memcmp.c: Print json instead of plain text.
16256 * benchtests/bench-memcmp.c (do_test): Call realloc_buf for
16259 2018-02-01 Joseph Myers <joseph@codesourcery.com>
16261 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
16263 (s390_sthyi): New syscall.
16265 * sysdeps/generic/ldbl-classify-compat.h: New file.
16266 * sysdeps/arm/ldbl-classify-compat.h: Likewise.
16267 * sysdeps/m68k/coldfire/ldbl-classify-compat.h: Likewise.
16268 * sysdeps/microblaze/ldbl-classify-compat.h: Likewise.
16269 * sysdeps/mips/ldbl-classify-compat.h: Likewise.
16270 * sysdeps/nios2/ldbl-classify-compat.h: Likewise.
16271 * sysdeps/sh/ldbl-classify-compat.h: Likewise.
16272 * sysdeps/ieee754/dbl-64/s_finite.c: Include
16273 <ldbl-classify-compat.h>.
16274 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
16275 * sysdeps/ieee754/dbl-64/s_isinf.c: Include
16276 <ldbl-classify-compat.h>.
16277 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
16278 * sysdeps/ieee754/dbl-64/s_isnan.c: Include
16279 <ldbl-classify-compat.h>.
16280 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
16281 * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Include
16282 <ldbl-classify-compat.h>.
16283 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
16284 * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf.c: Include
16285 <ldbl-classify-compat.h>.
16286 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
16287 * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Include
16288 <ldbl-classify-compat.h>.
16289 [LDBL_CLASSIFY_COMPAT]: Test value, not whether defined.
16290 * sysdeps/arm/math_private.h (LDBL_CLASSIFY_COMPAT): Remove macro.
16291 * sysdeps/mips/math_private.h (LDBL_CLASSIFY_COMPAT): Likewise.
16292 * sysdeps/m68k/coldfire/math_private.h: Remove file.
16293 * sysdeps/microblaze/math_private.h: Likewise.
16294 * sysdeps/nios2/math_private.h: Likewise.
16295 * sysdeps/sh/math_private.h: Likewise.
16297 * sysdeps/m68k/coldfire/fpu/math_private.h: Move to ....
16298 * sysdeps/m68k/coldfire/math_private.h: ... here.
16299 * sysdeps/m68k/coldfire/nofpu/math_private.h: Remove file.
16300 * sysdeps/tile/math_private.h: Likewise.
16301 * sysdeps/microblaze/math_private.h (libc_feholdexcept_setround):
16303 * sysdeps/nios2/math_private.h (libc_feholdexcept_setround):
16306 * sysdeps/m68k/coldfire/nofpu/math_private.h (libc_fesetround):
16308 (libc_fetestexcept): Likewise.
16309 (libc_feupdateenv_test): Likewise.
16310 * sysdeps/microblaze/math_private.h (libc_fesetround): Likewise.
16311 (libc_fetestexcept): Likewise.
16312 (libc_feupdateenv_test): Likewise.
16313 * sysdeps/nios2/math_private.h (libc_fesetround): Likewise.
16314 (libc_fetestexcept): Likewise.
16315 (libc_feupdateenv_test): Likewise.
16316 * sysdeps/tile/math_private.h (libc_fesetround): Likewise.
16317 (libc_fetestexcept): Likewise.
16318 (libc_feupdateenv_test): Likewise.
16320 * sysdeps/generic/math_private.h
16321 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (feholdexcept):
16322 New inline function.
16323 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (__feholdexcept):
16326 * include/fenv.h [!_ISOMAC && !FE_TONEAREST]: Give #error.
16327 [!_ISOMAC] (FE_HAVE_ROUNDING_MODES): New macro.
16328 * sysdeps/generic/math_private.h
16329 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (fegetenv): New
16331 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (__fegetenv):
16333 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (fesetenv):
16335 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (__fesetenv):
16337 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (feupdateenv):
16339 [!FE_HAVE_ROUNDING_MODES && FE_ALL_EXCEPT == 0] (__feupdateenv):
16341 [!FE_HAVE_ROUNDING_MODES] (fegetround): Likewise.
16342 [!FE_HAVE_ROUNDING_MODES] (__fegetround): Likewise.
16343 [!FE_HAVE_ROUNDING_MODES] (fesetround): Likewise.
16344 [!FE_HAVE_ROUNDING_MODES] (__fesetround): Likewise.
16345 * sysdeps/tile/math_private.h (fegetenv): Remove inline function.
16346 (__fegetenv): Likewise.
16347 (fesetenv): Likewise.
16348 (__fesetenv): Likewise.
16349 (feupdateenv): Likewise.
16350 (__feupdateenv): Likewise.
16351 (fegetround): Likewise.
16352 (__fegetround): Likewise.
16353 (fesetround): Likewise.
16354 (__fesetround): Likewise.
16356 * sysdeps/generic/math_private.h [FE_ALL_EXCEPT == 0]
16357 (feraiseexcept): New macro.
16358 [FE_ALL_EXCEPT == 0] (__feraiseexcept): Likewise.
16359 * sysdeps/m68k/coldfire/nofpu/math_private.h (feraiseexcept):
16361 (__feraiseexcept): Likewise.
16362 (feclearexcept): Likewise.
16363 * sysdeps/microblaze/math_private.h (feraiseexcept): Likewise.
16364 (__feraiseexcept): Likewise.
16365 (feclearexcept): Likewise.
16366 * sysdeps/nios2/math_private.h (feraiseexcept): Likewise.
16367 (__feraiseexcept): Likewise.
16368 (feclearexcept): Likewise.
16369 * sysdeps/tile/math_private.h (feraiseexcept): Likewise.
16370 (__feraiseexcept): Likewise.
16371 (feclearexcept): Likewise.
16372 (fetestexcept): Likewise.
16374 * sysdeps/m68k/coldfire/math-tests.h: New file.
16376 * sysdeps/m68k/fpu/bits/fenv.h: Move to ....
16377 * sysdeps/m68k/bits/fenv.h: ... here.
16378 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_INEXACT): Do
16380 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_DIVBYZERO):
16382 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_UNDERFLOW):
16384 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_OVERFLOW):
16386 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_INVALID):
16388 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_ALL_EXCEPT):
16390 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__]
16391 (__FE_UNDEFINED): New enum constant.
16392 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_TOWARDZERO):
16394 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_DOWNWARD):
16396 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_UPWARD):
16398 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (fenv_t): Define
16399 to match generic bits/fenv.h.
16400 [!__HAVE_68881__ && !__HAVE_FPU__ && !__mcffpu__] (FE_NOMASK_ENV):
16403 * soft-fp/double.h (union _FP_UNION_D): Do not use attribute
16405 * soft-fp/extended.h (union _FP_UNION_E): Likewise.
16406 * soft-fp/half.h (union _FP_UNION_H): Likewise.
16407 * soft-fp/quad.h (union _FP_UNION_Q): Likewise.
16408 * soft-fp/single.h (union _FP_UNION_S): Likewise.
16410 2018-02-01 Carlos O'Donell <carlos@redhat.com>
16411 Ramin Seyed-Moussavi <lordrasmus@gmail.com>
16412 Joseph Myers <joseph@codesourcery.com>
16415 * sysdeps/ieee754/dbl-64/s_log1p.c: Include <libc-diag.h>.
16416 (__log1p): Disable -Wmaybe-uninitialized for -Os around
16417 computation using c.
16418 * sysdeps/ieee754/flt-32/s_log1pf.c: Include <libc-diag.h>.
16419 (__log1pf): Disable -Wmaybe-uninitialized for -Os around
16420 computation using c.
16422 2018-02-01 Dmitry V. Levin <ldv@altlinux.org>
16424 * version.h (RELEASE): Set to "development".
16425 (VERSION): Set to "2.27.9000".
16426 * NEWS (2.28): New section.
16428 * version.h (RELEASE): Set to "stable".
16429 (VERSION): Set to "2.27".
16430 * include/features.h (__GLIBC_MINOR__): Set to 2.27.
16432 * NEWS: Add the list of bugs fixed in 2.27.
16434 2018-02-01 Adhemerval Zanella <adhemerval.zanella@linaro.org>
16436 * stdlib/test-atexit-race-common.c (do_test): Check stack size
16437 against PTHREAD_STACK_MIN.
16439 2018-02-01 Dmitry V. Levin <ldv@altlinux.org>
16441 * manual/contrib.texi (Palmer Dabbelt, Arjun Shankar, Florian Weimer):
16443 (Rafal Luzynski, Andreas Schwab): Update.
16445 2018-02-01 Rafal Luzynski <digitalfreak@lingonborough.com>
16448 * NEWS: List the languages which actually use the alternative
16449 months feature in this release. Also explain that "alt_mon" and
16450 "ab_alt_mon" are optional.
16452 2018-01-31 Il'ya Malakhov <ilmalakhov@yandex.ru>
16455 * crypt/badsalttest.c (do_test): Set cd.initialized to 0.
16457 2018-01-31 Dmitry V. Levin <ldv@altlinux.org>
16459 * manual/install.texi (Tools for Compilation): Update the newest
16460 versions of gcc, binutils, texinfo, gawk, bison, and sed.
16461 * INSTALL: Regenerated.
16463 2018-01-30 Samuel Thibault <samuel.thibault@ens-lyon.org>
16465 * sysdeps/pthread/allocalim.h (__libc_use_alloca): Use __glibc_likely
16466 instead of __builtin_expect.
16468 2018-01-30 Florian Weimer <fweimer@redhat.com>
16470 * nss/bug17079.c (do_test): Use nss_files only for reading passwd
16472 * nss/tst-nss-getpwent.c (do_test): Likewise.
16474 2018-01-30 Rafal Luzynski <digitalfreak@lingonborough.com>
16477 * localedata/locales/hr_HR (mon): Rename to...
16479 (mon): Import from CLDR (genitive case).
16480 (d_t_fmt): Update the comment.
16482 2018-01-29 Andreas Schwab <schwab@linux-m68k.org>
16484 * sysdeps/posix/fpathconf.c (__fpathconf): Verify the values of
16485 _POSIX_CHOWN_RESTRICTED, _POSIX_NO_TRUNC, _POSIX_VDISABLE.
16486 * sysdeps/posix/pathconf.c (__pathconf): Likewise.
16488 2018-01-29 Samuel Thibault <samuel.thibault@ens-lyon.org>
16490 * mach/Versions: Fix version when __mach_host_self_ was added.
16491 * hurd/Versions: Fix version when _hurd_exec_paths was added.
16492 * sysdeps/mach/hurd/i386/ld.abilist: New file.
16493 * sysdeps/mach/hurd/i386/libBrokenLocale.abilist: New file.
16494 * sysdeps/mach/hurd/i386/libanl.abilist: New file.
16495 * sysdeps/mach/hurd/i386/libc.abilist: New file.
16496 * sysdeps/mach/hurd/i386/libcrypt.abilist: New file.
16497 * sysdeps/mach/hurd/i386/libdl.abilist: New file.
16498 * sysdeps/mach/hurd/i386/libm.abilist: New file.
16499 * sysdeps/mach/hurd/i386/libnsl.abilist: New file.
16500 * sysdeps/mach/hurd/i386/libresolv.abilist: New file.
16501 * sysdeps/mach/hurd/i386/librt.abilist: New file.
16502 * sysdeps/mach/hurd/i386/libutil.abilist: New file.
16503 * sysdeps/pthread/allocalim.h (__libc_use_alloca): Commute operands of
16504 || to respect codestyle.
16505 * libio/tst-memstream3.c (_FWRITE): Rename to FWRITE_FUNC.
16506 (do_test_bz20181): Rename accordingly.
16507 * malloc/malloc.c: Include <assert.h>.
16508 (assert): Do not define.
16509 [!defined NDEBUG] (__assert_fail): Define to __malloc_assert.
16510 * bits/fcntl.h: Fix comment for FREAD and FWRITE.
16511 * sysdeps/mach/hurd/bits/fcntl.h: Likewise.
16512 * sysdeps/mach/hurd/hp-timing.h: New file.
16513 * sysdeps/mach/hurd/i386/tlsdesc.sym: New file.
16515 2018-01-29 Darius Rad <darius@bluespec.com>
16517 * sysdeps/unix/sysv/linux/riscv/ipc_priv.h: New file.
16519 2018-01-29 Palmer Dabbelt <palmer@sifive.com>
16521 * sysdeps/init_array/crti.S (.section .init_array): Add
16522 PREINIT_FUNCTION when defined.
16523 * manual/math.texi: RISC-V supports _Float128 and _Float64x.
16524 * config.h.in: Regenerate.
16525 * manual/platform.texi: Add RISC-V documenation for
16526 __riscv_flush_icache.
16527 * sysdeps/riscv/__longjmp.S: New file.
16528 * sysdeps/riscv/backtrace.c: Likewise.
16529 * sysdeps/riscv/bits/endian.h: Likewise.
16530 * sysdeps/riscv/bits/setjmp.h: Likewise.
16531 * sysdeps/riscv/bits/wordsize.h: Likewise.
16532 * sysdeps/riscv/bsd-_setjmp.c: Likewise.
16533 * sysdeps/riscv/bsd-setjmp.c: Likewise.
16534 * sysdeps/riscv/dl-trampoline.S: Likewise.
16535 * sysdeps/riscv/gccframe.h: Likewise.
16536 * sysdeps/riscv/jmpbuf-offsets.h: Likewise.
16537 * sysdeps/riscv/jmpbuf-unwind.h: Likewise.
16538 * sysdeps/riscv/machine-gmon.h: Likewise.
16539 * sysdeps/riscv/memusage.h: Likewise.
16540 * sysdeps/riscv/setjmp.S: Likewise.
16541 * sysdeps/riscv/sys/asm.h: Likewise.
16542 * sysdeps/riscv/tls-macros.h: Likewise.
16543 * sysdeps/riscv/dl-tls.h: New file.
16544 * sysdeps/riscv/libc-tls.c: Likewise.
16545 * sysdeps/riscv/nptl/tcb-offsets.sym: Likewise.
16546 * sysdeps/riscv/nptl/tls.h: Likewise.
16547 * sysdeps/riscv/stackinfo.h: Likewise.
16548 * sysdeps/riscv/bits/fenv.h: New file.
16549 * sysdeps/riscv/e_sqrtl.c: Likewise.
16550 * sysdeps/riscv/fpu_control.h: Likewise.
16551 * sysdeps/riscv/math-tests.h: Likewise.
16552 * sysdeps/riscv/nofpu/Implies: Likewise.
16553 * sysdeps/riscv/sfp-machine.h: Likewise.
16554 * sysdeps/riscv/tininess.h: Likewise.
16555 * sysdeps/riscv/rv64/rvd/s_ceil.c: New file.
16556 * sysdeps/riscv/rv64/rvd/s_floor.c: Likewise.
16557 * sysdeps/riscv/rv64/rvd/s_llrint.c: Likewise.
16558 * sysdeps/riscv/rv64/rvd/s_llround.c: Likewise.
16559 * sysdeps/riscv/rv64/rvd/s_lrint.c: Likewise.
16560 * sysdeps/riscv/rv64/rvd/s_lround.c: Likewise.
16561 * sysdeps/riscv/rv64/rvd/s_nearbyint.c: Likewise.
16562 * sysdeps/riscv/rv64/rvd/s_rint.c: Likewise.
16563 * sysdeps/riscv/rv64/rvd/s_round.c: Likewise.
16564 * sysdeps/riscv/rv64/rvd/s_roundeven.c: Likewise.
16565 * sysdeps/riscv/rv64/rvd/s_trunc.c: Likewise.
16566 * sysdeps/riscv/rv64/rvf/s_llrintf.c: Likewise.
16567 * sysdeps/riscv/rv64/rvf/s_llroundf.c: Likewise.
16568 * sysdeps/riscv/rv64/rvf/s_lrintf.c: Likewise.
16569 * sysdeps/riscv/rv64/rvf/s_lroundf.c: Likewise.
16570 * sysdeps/riscv/rvd/e_sqrt.c: Likewise.
16571 * sysdeps/riscv/rvd/s_copysign.c: Likewise.
16572 * sysdeps/riscv/rvd/s_finite.c: Likewise.
16573 * sysdeps/riscv/rvd/s_fma.c: Likewise.
16574 * sysdeps/riscv/rvd/s_fmax.c: Likewise.
16575 * sysdeps/riscv/rvd/s_fmin.c: Likewise.
16576 * sysdeps/riscv/rvd/s_fpclassify.c: Likewise.
16577 * sysdeps/riscv/rvd/s_isinf.c: Likewise.
16578 * sysdeps/riscv/rvd/s_isnan.c: Likewise.
16579 * sysdeps/riscv/rvd/s_issignaling.c: Likewise.
16580 * sysdeps/riscv/rvf/e_sqrtf.c: Likewise.
16581 * sysdeps/riscv/rvf/fclrexcpt.c: Likewise.
16582 * sysdeps/riscv/rvf/fegetenv.c: Likewise.
16583 * sysdeps/riscv/rvf/fegetmode.c: Likewise.
16584 * sysdeps/riscv/rvf/fegetround.c: Likewise.
16585 * sysdeps/riscv/rvf/feholdexcpt.c: Likewise.
16586 * sysdeps/riscv/rvf/fesetenv.c: Likewise.
16587 * sysdeps/riscv/rvf/fesetexcept.c: Likewise.
16588 * sysdeps/riscv/rvf/fesetmode.c: Likewise.
16589 * sysdeps/riscv/rvf/fesetround.c: Likewise.
16590 * sysdeps/riscv/rvf/feupdateenv.c: Likewise.
16591 * sysdeps/riscv/rvf/fgetexcptflg.c: Likewise.
16592 * sysdeps/riscv/rvf/fraiseexcpt.c: Likewise.
16593 * sysdeps/riscv/rvf/fsetexcptflg.c: Likewise.
16594 * sysdeps/riscv/rvf/ftestexcept.c: Likewise.
16595 * sysdeps/riscv/rvf/get-rounding-mode.h: Likewise.
16596 * sysdeps/riscv/rvf/math_private.h: Likewise.
16597 * sysdeps/riscv/rvf/s_ceilf.c: Likewise.
16598 * sysdeps/riscv/rvf/s_copysignf.c: Likewise.
16599 * sysdeps/riscv/rvf/s_finitef.c: Likewise.
16600 * sysdeps/riscv/rvf/s_floorf.c: Likewise.
16601 * sysdeps/riscv/rvf/s_fmaf.c: Likewise.
16602 * sysdeps/riscv/rvf/s_fmaxf.c: Likewise.
16603 * sysdeps/riscv/rvf/s_fminf.c: Likewise.
16604 * sysdeps/riscv/rvf/s_fpclassifyf.c: Likewise.
16605 * sysdeps/riscv/rvf/s_isinff.c: Likewise.
16606 * sysdeps/riscv/rvf/s_isnanf.c: Likewise.
16607 * sysdeps/riscv/rvf/s_issignalingf.c: Likewise.
16608 * sysdeps/riscv/rvf/s_nearbyintf.c: Likewise.
16609 * sysdeps/riscv/rvf/s_rintf.c: Likewise.
16610 * sysdeps/riscv/rvf/s_roundevenf.c: Likewise.
16611 * sysdeps/riscv/rvf/s_roundf.c: Likewise.
16612 * sysdeps/riscv/rvf/s_truncf.c: Likewise.
16613 * sysdeps/riscv/nptl/bits/pthreadtypes-arch.h: New file.
16614 * sysdeps/riscv/nptl/bits/semaphore.h: Likewise.
16615 * sysdeps/riscv/nptl/libc-lowlevellock.c: Likewise.
16616 * sysdeps/unix/sysv/linux/riscv/atomic-machine.h: Likewise.
16617 * sysdeps/riscv/nptl/nptl-sysdep.S: New file.
16618 * sysdeps/unix/sysv/linux/riscv/arch-fork.h: Likewise.
16619 * sysdeps/unix/sysv/linux/riscv/clone.S: Likewise.
16620 * sysdeps/unix/sysv/linux/riscv/profil-counter.h: Likewise.
16621 * sysdeps/unix/sysv/linux/riscv/pt-vfork.S: Likewise.
16622 * sysdeps/unix/sysv/linux/riscv/syscall.c: Likewise.
16623 * sysdeps/unix/sysv/linux/riscv/sysdep.S: Likewise.
16624 * sysdeps/unix/sysv/linux/riscv/sysdep.h: Likewise.
16625 * sysdeps/unix/sysv/linux/riscv/vfork.S: Likewise.
16626 * sysdeps/riscv/nptl/pthread-offsets.h: New file.
16627 * sysdeps/riscv/nptl/pthreaddef.h: Likewise.
16628 * sysdeps/unix/sysv/linux/riscv/bits/fcntl.h: Likewise.
16629 * sysdeps/unix/sysv/linux/riscv/bits/mman.h: Likewise.
16630 * sysdeps/unix/sysv/linux/riscv/bits/sigcontext.h: Likewise.
16631 * sysdeps/unix/sysv/linux/riscv/dl-cache.h: Likewise.
16632 * sysdeps/unix/sysv/linux/riscv/flush-icache.c: Likewise.
16633 * sysdeps/unix/sysv/linux/riscv/getcontext.S: Likewise.
16634 * sysdeps/unix/sysv/linux/riscv/init-first.c: Likewise.
16635 * sysdeps/unix/sysv/linux/riscv/libc-vdso.h: Likewise.
16636 * sysdeps/unix/sysv/linux/riscv/makecontext.c: Likewise.
16637 * sysdeps/unix/sysv/linux/riscv/readelflib.c: Likewise.
16638 * sysdeps/unix/sysv/linux/riscv/register-dump.h: Likewise.
16639 * sysdeps/unix/sysv/linux/riscv/setcontext.S: Likewise.
16640 * sysdeps/unix/sysv/linux/riscv/sigcontextinfo.h: Likewise.
16641 * sysdeps/unix/sysv/linux/riscv/swapcontext.S: Likewise.
16642 * sysdeps/unix/sysv/linux/riscv/sys/cachectl.h: Likewise.
16643 * sysdeps/unix/sysv/linux/riscv/sys/procfs.h: Likewise.
16644 * sysdeps/unix/sysv/linux/riscv/sys/ucontext.h: Likewise.
16645 * sysdeps/unix/sysv/linux/riscv/sys/user.h: Likewise.
16646 * sysdeps/unix/sysv/linux/riscv/ucontext-macros.h: Likewise.
16647 * sysdeps/unix/sysv/linux/riscv/ucontext_i.sym: Likewise.
16648 * sysdeps/unix/sysv/linux/riscv/dl-static.c: New file.
16649 * sysdeps/unix/sysv/linux/riscv/ldconfig.h: Likewise.
16650 * sysdeps/unix/sysv/linux/riscv/ldsodefs.h: Likewise.
16651 * sysdeps/riscv/nofpu/libm-test-ulps: New file.
16652 * sysdeps/riscv/nofpu/libm-test-ulps-name: Likewise.
16653 * sysdeps/riscv/rv64/rvd/libm-test-ulps: Likewise.
16654 * sysdeps/riscv/rv64/rvd/libm-test-ulps-name: Likewise.
16655 * sysdeps/unix/sysv/linux/riscv/localplt.data: Likewise.
16656 * sysdeps/unix/sysv/linux/riscv/rv64/c++-types.data: Likewise.
16657 * sysdeps/unix/sysv/linux/riscv/rv64/ld.abilist: Likewise.
16658 * sysdeps/unix/sysv/linux/riscv/rv64/libanl.abilist: Likewise.
16659 * sysdeps/unix/sysv/linux/riscv/rv64/libc.abilist: Likewise.
16660 * sysdeps/unix/sysv/linux/riscv/rv64/libdl.abilist: Likewise.
16661 * sysdeps/unix/sysv/linux/riscv/rv64/libm.abilist: Likewise.
16662 * sysdeps/unix/sysv/linux/riscv/rv64/libnsl.abilist: Likewise.
16663 * sysdeps/unix/sysv/linux/riscv/rv64/librt.abilist: Likewise.
16664 * sysdeps/unix/sysv/linux/riscv/rv64/libutil.abilist: Likewise.
16665 * sysdeps/riscv/Implies: New file.
16666 * sysdeps/riscv/Makefile: Likewise.
16667 * sysdeps/riscv/configure: Likewise.
16668 * sysdeps/riscv/configure.ac: Likewise.
16669 * sysdeps/riscv/nptl/Makefile: Likewise.
16670 * sysdeps/riscv/preconfigure: Likewise.
16671 * sysdeps/riscv/rv64/Implies-after: Likewise.
16672 * sysdeps/riscv/rv64/rvd/Implies: Likewise.
16673 * sysdeps/riscv/rv64/rvf/Implies: Likewise.
16674 * sysdeps/unix/sysv/linux/riscv/Implies: Likewise.
16675 * sysdeps/unix/sysv/linux/riscv/Makefile: Likewise.
16676 * sysdeps/unix/sysv/linux/riscv/Versions: Likewise.
16677 * sysdeps/unix/sysv/linux/riscv/configure: Likewise.
16678 * sysdeps/unix/sysv/linux/riscv/configure.ac: Likewise.
16679 * sysdeps/unix/sysv/linux/riscv/ldd-rewrite.sed: Likewise.
16680 * sysdeps/unix/sysv/linux/riscv/rv64/Implies: Likewise.
16681 * sysdeps/unix/sysv/linux/riscv/rv64/Makefile: Likewise.
16682 * sysdeps/unix/sysv/linux/riscv/shlib-versions: Likewise.
16683 * scripts/build-many-glibcs.py (Context): Add RISC-V targets.
16684 (Config): Likewise.
16686 2018-01-29 Florian Weimer <fweimer@redhat.com>
16689 * include/rpcsvc/nislib.h (__nis_default_ttl): Add
16690 libnsl_hidden_proto.
16691 * include/rpcsvc/yp.h (yp_xdrall): Declare with
16692 libnsl_hidden_proto.
16693 * include/rpcsvc/ypclnt.h (yp_maplist): Likewise.
16694 * nis/Makefile (libnsl-routines): Add nss-default only for
16695 build-obsolete-nsl.
16696 * nis/nis_defaults.c (__nis_default_ttl): Add
16697 libnsl_hidden_nolink_def.
16698 * nis/rpcsvc/ypclnt.h (yp_maplist): Remove #ifdef'ed-out
16700 * nis/yp_xdr.c (xdr_ypall): Add libnsl_hidden_nolink_def.
16701 * nis/ypclnt.c (yp_maplist): Likewise.
16703 2018-01-29 Romain Naour <romain.naour@gmail.com> (tiny change)
16705 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
16706 (__ASSUME_COPY_FILE_RANGE) [__LINUX_KERNEL_VERSION < 0x040A00]: Undef.
16708 2018-01-29 Joseph Myers <joseph@codesourcery.com>
16710 * scripts/build-many-glibcs.py (Context.git_checkout): Use git
16711 clean -dxfq for git updates when replacing sources.
16713 * scripts/build-many-glibcs.py (Config.build_gcc): Use
16714 --disable-libcilkrts unconditionally, not just for the final GCC
16717 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
16720 2018-01-29 Rafal Luzynski <digitalfreak@lingonborough.com>
16723 * localedata/locales/lt_LT (alt_mon): Import from CLDR (nominative
16726 2018-01-29 Rafal Luzynski <digitalfreak@lingonborough.com>
16729 * localedata/locales/be_BY (mon): Rename to...
16730 (alt_mon): This, then synchronize with CLDR (nominative case).
16731 (abmon): Rename to...
16732 (ab_alt_mon): This, then synchronize with CLDR (nominative case).
16733 (mon): Import from CLDR (genitive case).
16735 * localedata/locales/be_BY@latin (mon): Rename to...
16737 (mon): Add, proper genitive forms provided by Viktar Siarheichyk.
16739 * localedata/locales/be_BY@latin (lang_name): Reworded to
16740 "biełaruskaja mova".
16742 2018-01-29 Rafal Luzynski <digitalfreak@lingonborough.com>
16745 * localedata/locales/el_CY (mon): Renamed to...
16747 (mon): Import from CLDR (genitive case).
16748 * localedata/locales/el_GR: Likewise.
16750 2018-01-29 Rafal Luzynski <digitalfreak@lingonborough.com>
16753 * localedata/locales/ru_RU (mon): Rename to...
16755 (abmon): Rename to...
16756 (ab_alt_mon): This.
16757 (mon): Import from CLDR (genitive case).
16758 (abmon): Copy from the old content except the 5th month which is
16759 now in the genitive case, even when abbreviated.
16760 * localedata/locales/ru_UA: Likewise.
16761 * time/tst-strptime.c (day_tests): Add an actual example of
16762 a difference between %b and %Ob in Russian.
16764 2018-01-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
16766 * sysdeps/mach/hurd/xmknodat.c: Include <sys/sysmacros.h>.
16767 * sysdeps/mach/hurd/profil.c: Reuse `a' variable instead of introducing
16769 * resolv/res-close.c: Include <stdlib.h>.
16770 * sysdeps/generic/not-cancel.h: Include <fcntl.h>, <unistd.h>,
16771 <sys/wait.h>, <time.h>, <sys/uio.h>.
16772 (NOT_CANCEL_H): Add inclusion guard.
16773 * sysdeps/generic/sigset-cvt-mask.h: Include <sigsetops.h>.
16774 * sysdeps/generic/sigsetops.h (__sigemptyset, __sigfillset,
16775 __sigandset, __sigorset, __sigaddset, __sigdelset): Make them really
16777 * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start): Cast
16778 vm_address_t * to ElfW(Addr) * for dl_main parameter.
16779 * sysdeps/pthread/posix-timer.h (timer_ptr2id): Cast to timer_t
16781 * sysdeps/pthread/timer_create.c (timer_create): Do not use
16782 timer_ptr2id to cast struct timer_node * to void *.
16783 * scripts/build-many-glibcs.py [os == gnu] (build_gcc): Pass
16784 --disable-libcilkrts to gcc configure.
16785 (checkout_vcs): Add mig and gnumach repository URLs, run autoreconf,
16786 and make them the default for now.
16787 * sysdeps/mach/hurd/Makefile [$(subdir)==nis]: Add
16788 -DUSE_BINDINGDIR=1 to CFLAGS-ypclnt.c.
16789 * mach/Machrules (MIGFLAGS): Do not set -DMACH_IPC_COMPAT=0.
16790 * mach/mach/mach_traps.h: Drop comment about MACH_IPC_COMPAT.
16791 * sysdeps/mach/hurd/fork.c (__fork): Drop special casing
16793 * sysdeps/mach/hurd/dl-sysdep.c (_exit): Call LOSE and abort() if
16794 __task_terminate would ever return successfully.
16795 * sysdeps/mach/hurd/profil.c (special_profil_failure): Move variable
16797 * sysdeps/mach/pagecopy.h (PAGE_THRESHOLD): Rename to
16798 PAGE_COPY_THRESHOLD and set to benchmarked 16384.
16799 * sysdeps/mach/hurd/getresgid.c (__getresgid): Set result from
16800 critical section to make code simpler and avoid warning.
16801 * sysdeps/mach/hurd/getresuid.c (__getresuid): Set result from
16802 critical section to make code simpler and avoid warning.
16803 * sysdeps/mach/hurd/spawni.c (__spawni): Make relpath and abspath
16804 const char * instead of char *.
16805 * hurd/hurd/lookup.h (__hurd_file_name_lookup, hurd_file_name_lookup,
16806 __hurd_file_name_split, hurd_file_name_split,
16807 __hurd_directory_name_split, hurd_directory_name_split,
16808 __hurd_file_name_lookup_retry, hurd_file_name_lookup_retry,
16809 hurd_file_name_path_lookup): Make lookup function parameter take a
16810 const char *name instead of char *name.
16811 * hurd/hurdlookup.c (__hurd_file_name_lookup, __hurd_file_name_split,
16812 __hurd_directory_name_split): Likewise.
16813 * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Likewise.
16814 * hurd/path-lookup.c (hurd_file_name_path_lookup): Likewise.
16815 * sysdeps/mach/hurd/check_native.c: New file.
16816 * sysdeps/mach/hurd/check_pf.c: New file.
16817 * nscd/gai.c (__getifaddrs): Define macro to getifaddrs.
16818 (__freeifaddrs): Define macro to freeifaddrs.
16819 * sysdeps/mach/hurd/libhurduser.abilist: New file.
16820 * sysdeps/mach/libmachuser.abilist: New file.
16821 * libio/tst-memstream3.c (FWRITE): Rename to _FWRITE.
16822 (do_test_bz20181): Rename accordingly.
16823 * libio/tst-wmemstream3.c (FWRITE): Rename accordingly.
16824 * io/tst-copy_file_range.c [!defined CLONE_NEWNS]: Do not include
16826 * hurd/hurd.h (__hurd_fail): Always declare function, and provide inline
16827 version only if __USE_EXTERN_INLINES is defined.
16828 * hurd/hurd/fd.h (_hurd_fd_error_signal, _hurd_fd_error, __hurd_dfail,
16829 __hurd_sockfail): Likewise.
16830 (_hurd_fd_get): Always declare functions, and provide inline versions
16831 only if __USE_EXTERN_INLINES and _LIBC are defined and IS_IN(libc).
16832 * hurd/hurd/port.h (_hurd_port_init, _hurd_port_locked_get,
16833 _hurd_port_get, _hurd_port_free, _hurd_port_locked_set,
16834 _hurd_port_set): Always declare functions, and provide inline versions
16835 only if __USE_EXTERN_INLINES and _LIBC are defined and
16837 * hurd/hurd/signal.h (_hurd_self_sigstate, _hurd_critical_section_lock,
16838 _hurd_critical_section_unlock): Likewise.
16839 * hurd/hurd/threadvar.h (__hurd_threadvar_location_from_sp,
16840 * __hurd_threadvar_location): Likewise.
16841 * hurd/hurd/userlink.h (_hurd_userlink_link, _hurd_userlink_unlink,
16842 _hurd_userlink_clear): Likewise.
16843 * mach/lock-intern.h (__spin_lock_init, __spin_lock, __mutex_lock,
16844 __mutex_unlock, __mutex_trylock): Always declare functions, and provide
16845 inline versions only if __USE_EXTERN_INLINES and _LIBC are defined.
16846 * mach/mach/mig_support.h (__mig_strncpy): Likewise.
16847 * sysdeps/generic/machine-lock.h (__spin_unlock, __spin_try_lock,
16848 __spin_lock_locked): Likewise.
16849 * sysdeps/mach/i386/machine-lock.h (__spin_unlock, __spin_try_lock,
16850 __spin_lock_locked): Likewise.
16851 * mach/spin-lock.c (__USE_EXTERN_INLINES): Define to 1.
16852 * hurd/Versions (libc: GLIBC_2.27): Add _hurd_fd_error_signal,
16853 _hurd_fd_error, __hurd_dfail, __hurd_sockfail, _hurd_port_locked_set,
16854 __hurd_threadvar_location_from_sp, __hurd_threadvar_location,
16855 _hurd_userlink_link, _hurd_userlink_unlink, _hurd_userlink_clear.
16856 * sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_CHOWN_RESTRICTED,
16857 _POSIX_NO_TRUNC): Define to 0.
16858 * sysdeps/pthread/allocalim.h [!defined PTHREAD_STACK_MIN]: Do not
16859 check size against PTHREAD_STACK_MIN.
16860 * hurd/hurd/signal.h [__USE_EXTERN_INLINES][_LIBC][IS_IN(libc) ||
16861 IS_IN(libpthread)]: Include <sigsetops.h>.
16862 * mach/Makefile (user-interfaces): Add mach/gnumach.
16863 * sysdeps/mach/configure.ac (mach_interface_list): Add gnumach.
16864 * sysdeps/mach/configure (mach_interface_list): Regenerate.
16865 * sysdeps/mach/hurd/bits/posix_opt.h (_POSIX_VDISABLE): Set to '\0'
16866 instead of invalid -1.
16867 * sysdeps/mach/hurd/net/ethernet.h: Include <stdint.h>.
16868 * sysdeps/mach/hurd/net/if_arp.h: Include <stdint.h>.
16869 * sysdeps/mach/hurd/net/if_ppp.h: Do not include non-existing
16872 2018-01-27 Thomas Schwinge <tschwinge@gnu.org>
16874 * hurd/fcntl-internal.h: New file.
16876 2018-01-27 James Clarke <jrtc27@jrtc27.com>
16878 * sysdeps/hppa/fpu/libm-test-ulps: Update.
16880 * sysdeps/alpha/fpu/libm-test-ulps: Update.
16882 2018-01-26 Andreas Schwab <schwab@linux-m68k.org>
16885 * nis/Makefile (libnsl-inhibit-o) [$(build-obsolete-nsl) != yes]:
16886 Build only shared objects.
16888 2018-01-26 Carlos O'Donell <carlos@redhat.com>
16890 * README: Update for hppa.
16892 2018-01-26 Patrick McGehearty <patrick.mcgehearty@oracle.com>
16894 * sysdeps/sparc/fpu/libm-test-ulps: Update
16895 cpow, ctan, ctanh, j0, j1, y0, yn ulps.
16897 2018-01-26 Carlos O'Donell <carlos@redhat.com>
16901 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
16904 * sysdeps/i386/nptl/tcb-offsets.sym (FEATURE_1_OFFSET): New.
16905 * sysdeps/i386/nptl/tls.h (tcbhead_t): Add feature_1.
16906 * sysdeps/x86_64/nptl/tcb-offsets.sym (FEATURE_1_OFFSET): New.
16907 * sysdeps/x86_64/nptl/tls.h (tcbhead_t): Rename __glibc_unused1
16910 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
16913 * bits/types/__cancel_jmp_buf_tag.h: New file.
16914 * sysdeps/unix/sysv/linux/x86/bits/types/__cancel_jmp_buf_tag.h
16915 * sysdeps/unix/sysv/linux/x86/pthreaddef.h: Likewise.
16916 * sysdeps/unix/sysv/linux/x86/nptl/pthreadP.h: Likewise.
16917 * nptl/Makefile (headers): Add
16918 bits/types/__cancel_jmp_buf_tag.h.
16919 * nptl/descr.h [NEED_SAVED_MASK_IN_CANCEL_JMP_BUF]
16920 (pthread_unwind_buf): Add saved_mask to cancel_jmp_buf.
16921 * sysdeps/nptl/pthread.h: Include
16922 <bits/types/__cancel_jmp_buf_tag.h>.
16923 (__pthread_unwind_buf_t): Use struct __cancel_jmp_buf_tag with
16925 * sysdeps/unix/sysv/linux/hppa/pthread.h: Likewise.
16927 2018-01-25 Rafal Luzynski <digitalfreak@lingonborough.com>
16930 * localedata/locales/uk_UA (mon): Renamed to...
16932 (alt_digits): "0" removed and then renamed to...
16934 (date_fmt): Definition changed not to use the alternative
16937 2018-01-25 Palmer Dabbelt <palmer@sifive.com>
16939 * elf/cache.c (print_entry): Add FLAG_RISCV_FLOAT_ABI_SOFT and
16940 FLAG_RISCV_FLOAT_ABI_DOUBLE.
16941 * elf/elf.h (EF_RISCV_RVC): New define.
16942 (EF_RISCV_FLOAT_ABI): Likewise.
16943 (EF_RISCV_FLOAT_ABI_SOFT): Likewise.
16944 (EF_RISCV_FLOAT_ABI_SINGLE): Likewise.
16945 (EF_RISCV_FLOAT_ABI_DOUBLE): Likewise.
16946 (EF_RISCV_FLOAT_ABI_QUAD): Likewise.
16947 * sysdeps/generic/ldconfig.h (FLAG_RISCV_FLOAT_ABI_SOFT): New
16949 (FLAG_RISCV_FLOAT_ABI_DOUBLE): Likewise.
16951 2018-01-25 Andreas Schwab <schwab@suse.de>
16953 * aclocal.m4 (LIBC_SLIBDIR_RTLDDIR): Consistently put arguments in
16955 * sysdeps/gnu/configure: Regenerate.
16956 * sysdeps/unix/sysv/linux/aarch64/configure: Regenerate.
16957 * sysdeps/unix/sysv/linux/mips/configure: Regenerate.
16958 * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Regenerate.
16959 * sysdeps/unix/sysv/linux/s390/s390-64/configure: Regenerate.
16960 * sysdeps/unix/sysv/linux/sparc/sparc64/configure: Regenerate.
16961 * sysdeps/unix/sysv/linux/tile/configure: Regenerate.
16962 * sysdeps/unix/sysv/linux/x86_64/64/configure: Regenerate.
16963 * sysdeps/unix/sysv/linux/x86_64/x32/configure: Regenerate.
16965 2018-01-25 Samuel Thibault <samuel.thibault@ens-lyon.org>
16967 * scripts/build-many-glibcs.py (checkout_vcs): Add hurd repository
16968 URL, and run autoconf, make it the default for now.
16970 2018-01-24 Joseph Myers <joseph@codesourcery.com>
16972 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
16973 soft-float ColdFire configuration.
16975 * sysdeps/unix/sysv/linux/m68k/localplt.data: Move to ....
16976 * sysdeps/unix/sysv/linux/m68k/m680x0/localplt.data: ... here.
16977 * sysdeps/unix/sysv/linux/m68k/coldfire/localplt.data: New file.
16979 * sysdeps/m68k/coldfire/nofpu/math_private.h: New file. Based on
16982 * sysdeps/unix/sysv/linux/m68k/coldfire/jmp_buf-macros.h: Move to
16984 * sysdeps/unix/sysv/linux/m68k/coldfire/fpu/jmp_buf-macros.h:
16986 * sysdeps/unix/sysv/linux/m68k/coldfire/nofpu/jmp_buf-macros.h:
16989 * sysdeps/unix/sysv/linux/m68k/jmp_buf-macros.h: Move to ....
16990 * sysdeps/unix/sysv/linux/m68k/m680x0/jmp_buf-macros.h: ... here.
16991 * sysdeps/unix/sysv/linux/m68k/coldfire/jmp_buf-macros.h: New
16994 2018-01-24 Szabolcs Nagy <szabolcs.nagy@arm.com>
16997 * sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h (__glibc_reserved1):
16998 Rename to __reserved and add comment.
16999 * sysdeps/unix/sysv/linux/aarch64/ucontext_i.sym (__glibc_reserved1):
17000 Rename to __reserved.
17002 2018-01-24 Joseph Myers <joseph@codesourcery.com>
17004 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
17005 i686-gnu configurations.
17006 (Context.run_builds): Include mig, gnumach and hurd in components
17008 (Context.checkout): Add mig, gnumach and hurd to components.
17009 (Context.checkout_tar): Add URL mappings for mig, gnumach and
17011 (Context.bot_cycle): Check for changes to mig, gnumach and hurd.
17012 (Config.build): Install gnumach headers, build mig and install
17013 hurd headers for 'gnu' OS.
17014 (Config.install_gnumach_headers): New function.
17015 (Config.install_hurd_headers): Likewise.
17016 (Glibc.build_glibc): Do not use /usr for 'gnu' OS. Specifiy MIG
17017 when building for 'gnu' OS.
17019 2018-01-23 Tobias Klauser <tklauser@distanz.ch>
17021 * manual/tunables.texi (Hardware Capability Tunables): Fix
17024 2018-01-22 Rical Jasan <ricaljasan@pacific.net>
17026 * manual/locale.texi (ALTMON_1, ALTMON_2, ALTMON_3, ALTMON_4)
17027 (ALTMON_5, ALTMON_6, ALTMON_7, ALTMON_8, ALTMON_9, ALTMON_10)
17028 (ALTMON_11, ALTMON_12): Improve documentation.
17029 * manual/time.texi (strftime): Likewise.
17031 2018-01-22 Rafal Luzynski <digitalfreak@lingonborough.com>
17034 * localedata/locales/pl_PL: Alternative month names added,
17035 primary month names are genitive now.
17036 * time/tst-strptime.c (day_tests): Actually use a genitive case
17037 of a month name in Polish language.
17039 2018-01-22 Rafal Luzynski <digitalfreak@lingonborough.com>
17042 * manual/locale.texi: Document ALTMON_1..12 constants for
17043 nl_langinfo. Specify when to use ALTMON instead of MON.
17044 * manual/time.texi (strftime, strptime): Document GNU extension
17045 permitting O modifier with %B and %b. Specify when to use
17048 2018-01-22 Rafal Luzynski <digitalfreak@lingonborough.com>
17051 * locale/C-time.c (_nl_C_LC_TIME): Add abbreviated alternative month
17052 names, define them as the same as abbreviated month names explicitly.
17053 * locale/categories.def (LC_TIME): Add ab_alt_mon and wide-ab_alt_mon.
17054 * locale/langinfo.h: (_NL_ABALTMON_1, _NL_ABALTMON_2, _NL_ABALTMON_3,
17055 _NL_ABALTMON_4, _NL_ABALTMON_5, _NL_ABALTMON_6, _NL_ABALTMON_7,
17056 _NL_ABALTMON_8, _NL_ABALTMON_9, _NL_ABALTMON_10, _NL_ABALTMON_11,
17057 _NL_ABALTMON_12, _NL_WABALTMON_1, _NL_WABALTMON_2, _NL_WABALTMON_3,
17058 _NL_WABALTMON_4, _NL_WABALTMON_5, _NL_WABALTMON_6, _NL_WABALTMON_7,
17059 _NL_WABALTMON_8, _NL_WABALTMON_9, _NL_WABALTMON_10, _NL_WABALTMON_11,
17060 _NL_WABALTMON_12): New enum constants.
17061 * locale/programs/ld-time.c (struct locale_time_t): Add ab_alt_mon,
17062 wab_alt_mon, and ab_alt_mon_defined members.
17063 (time_output): Output ab_alt_mon and wab_alt_mon members.
17064 (time_read): Read them, initialize them as copies of abmon and wabmon
17065 respectively if they are missing, initialize ab_alt_mon_defined.
17066 * locale/programs/locfile-kw.gperf (ab_alt_mon): Define.
17067 * locale/programs/locfile-kw.h: Regenerate.
17068 * locale/programs/locfile-token.h (tok_ab_alt_mon): New enum constant.
17069 * time/Makefile [$(run-built-tests) = yes] (LOCALES): Add es_ES.UTF-8
17071 * time/strftime_l.c (a_altmonth, aam_len): New macros.
17072 [!COMPILE_WIDE] (ABALTMON_1): New macro.
17073 (__strftime_internal): Handle %Ob and %Oh formats.
17074 * time/strptime_l.c [_LIBC] (ab_alt_month_name): New macro.
17075 (__strptime_internal): Handle %Ob and %Oh formats.
17076 * time/tst-strptime.c (day_tests): Add more tests to parse different
17077 forms of month names including the new %Ob format specifier.
17079 2018-01-22 Rafal Luzynski <digitalfreak@lingonborough.com>
17082 * locale/C-time.c (_nl_C_LC_TIME): Add alternative month names,
17083 define them as the same as primary full month names explicitly.
17084 * locale/categories.def (LC_TIME): Add alt_mon and wide-alt_mon.
17085 * locale/langinfo.h (__ALTMON_1, __ALTMON_2, __ALTMON_3, __ALTMON_4,
17086 __ALTMON_5, __ALTMON_6, __ALTMON_7, __ALTMON_8, __ALTMON_9, __ALTMON_10,
17087 __ALTMON_11, __ALTMON_12, _NL_WALTMON_1, _NL_WALTMON_2, _NL_WALTMON_3,
17088 _NL_WALTMON_4, _NL_WALTMON_5, _NL_WALTMON_6, _NL_WALTMON_7,
17089 _NL_WALTMON_8, _NL_WALTMON_9, _NL_WALTMON_10, _NL_WALTMON_11,
17090 _NL_WALTMON_12): New enum constants.
17091 [__USE_GNU] (ALTMON_1, ALTMON_2, ALTMON_3, ALTMON_4, ALTMON_5, ALTMON_6,
17092 ALTMON_7, ALTMON_8, ALTMON_9, ALTMON_10, ALTMON_11, ALTMON_12): New
17094 * locale/programs/ld-time.c (struct locale_time_t): Add alt_mon,
17095 walt_mon, and alt_mon_defined members.
17096 (time_output): Output alt_mon and walt_mon members.
17097 (time_read): Read them, initialize them as copies of mon and wmon
17098 respectively if they are missing, initialize alt_mon_defined.
17099 * locale/programs/locfile-kw.gperf (alt_mon): Define.
17100 * locale/programs/locfile-kw.h: Regenerate.
17101 * locale/programs/locfile-token.h (tok_alt_mon): New enum constant.
17102 * localedata/tst-langinfo.c (map): Add tests for the new constants
17103 ALTMON_1 .. ALTMON_12.
17104 * time/Makefile [$(run-built-tests) = yes] (LOCALES): Add fr_FR.UTF-8
17106 * time/strftime_l.c (f_altmonth): New macro.
17107 (__strftime_internal): Handle %OB format.
17108 * time/strptime_l.c [_LIBC] (alt_month_name): New macro.
17109 (__strptime_internal): Handle %OB format.
17110 * time/tst-strptime.c (day_tests): Add tests to parse different forms
17111 of month names including the new %OB format specifier.
17113 2018-01-19 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
17116 * sysdeps/powerpc/powerpc32/sysdep.h (ABORT_TRANSACTION_IMPL): Renamed
17117 from ABORT_TRANSACTION.
17118 (ABORT_TRANSACTION): Redirect to ABORT_TRANSACTION_IMPL.
17119 * sysdeps/powerpc/powerpc64/sysdep.h (ABORT_TRANSACTION,
17120 ABORT_TRANSACTION_IMPL): Likewise.
17121 * sysdeps/unix/sysv/linux/powerpc/not-errno.h: New file. Reuse
17122 Linux code, but remove the code that aborts transactions.
17124 2018-01-19 Samuel Thibault <samuel.thibault@ens-lyon.org>
17126 * sysdeps/generic/netinet/if_ether.h: Include <stdint.h>.
17128 2018-01-19 Rafal Luzynski <digitalfreak@lingonborough.com>
17130 * localedata/locales/gu_IN (LC_IDENTIFICATION): Fix an obvious typo
17131 in date: "2004-14-09" should be "2004-09-14".
17132 * localedata/locales/lo_LA: Fix an obvious typo in date in the header:
17133 "2003-15-09" should be "2003-09-15".
17135 2018-01-18 Arjun Shankar <arjun@redhat.com>
17141 * malloc/malloc.c (checked_request2size): call REQUEST_OUT_OF_RANGE
17143 (_int_memalign): check for integer overflow before calling
17145 * malloc/tst-malloc-too-large.c: New test.
17146 * malloc/Makefile: Add tst-malloc-too-large.
17148 2018-01-18 Rafal Luzynski <digitalfreak@lingonborough.com>
17150 * localedata/locales/bho_NP (LC_IDENTIFICATION): Fix an obvious typo
17151 in date: "2017-24-07" should be "2017-07-24".
17152 * localedata/locales/mai_IN: Likewise.
17153 * localedata/locales/mai_NP: Likewise.
17155 2018-01-17 Dmitry V. Levin <ldv@altlinux.org>
17157 * po/ru.po: Update translations.
17159 2018-01-17 Joseph Myers <joseph@codesourcery.com>
17162 * sysdeps/hppa/backtrace.c: New file.
17164 2018-01-17 H.J. Lu <hongjiu.lu@intel.com>
17167 * sysdeps/x86_64/dl-trampoline.h (_dl_runtime_profile): Properly
17168 align La_x86_64_retval to VEC_SIZE.
17170 2018-01-16 Joseph Myers <joseph@codesourcery.com>
17172 * sysdeps/x86_64/backtrace.c: Include <gnu/lib-names.h>.
17173 (init): Use LIBGCC_S_SO not hardcoded "libgcc_s.so.1".
17175 2018-01-16 Florian Weimer <fweimer@redhat.com>
17177 * nptl/Makefile [$(have-cxx-thread_local)] (tests-unsupported):
17178 Move tst-thread-exit-clobber ...
17179 [$(CXX)] (tests-unsupported): ... to here.
17181 2018-01-16 Szabolcs Nagy <szabolcs.nagy@arm.com>
17183 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_SHA3): Define.
17184 (HWCAP_SM3, HWCAP_SM4, HWCAP_ASIMDDP, HWCAP_SHA512, HWCAP_SVE): Define.
17185 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c
17186 (_dl_aarch64_cap_flags): Update.
17187 (_DL_HWCAP_COUNT): Update.
17189 2018-01-16 Szabolcs Nagy <szabolcs.nagy@arm.com>
17191 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h
17192 (_DL_HWCAP_LAST): Remove.
17193 (_DL_HWCAP_COUNT): Move to ...
17194 * sysdeps/unix/sysv/linux/aarch64/dl-procinfo.c
17195 (_DL_HWCAP_COUNT): ... here.
17197 2018-01-16 Florian Weimer <fweimer@redhat.com>
17199 * nptl/Makefile (CFLAGS-tst-minstack-throw.o): Compile in C++11
17200 mode with GNU extensions.
17202 2018-01-15 Alan Hayward <alan.hayward@arm.com>
17204 * elf/elf.h (NT_ARM_SVE): Define.
17206 2018-01-15 Florian Weimer <fweimer@redhat.com>
17209 * nptl/tst-minstack-throw.cc: New file.
17210 * nptl/Makefile (tests): Add tst-minstack-throw.
17211 (LDLIBS-tst-minstack-throw): Link with libstdc++.
17212 [!CXX] (tests-unsupported): Add tst-minstack-throw.
17214 2018-01-15 Joseph Myers <joseph@codesourcery.com>
17216 * scripts/build-many-glibcs.py (Context.checkout): Default
17217 binutils version to 2.30 branch, MPFR version to 4.0.0 and MPC
17220 2018-01-13 Carlos O'Donell <carlos@redhat.com>
17223 * elf/elf.h (DF_1_STUB): Define.
17224 (DF_1_PIE): Define.
17226 2018-01-12 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
17229 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S (__llround):
17230 Do not add 0.5 to integer or out-of-range arguments.
17232 2018-01-12 Dmitry V. Levin <ldv@altlinux.org>
17234 * po/bg.po: Update translations.
17235 * po/cs.po: Likewise.
17236 * po/de.po: Likewise.
17237 * po/ko.po: Likewise.
17238 * po/pl.po: Likewise.
17239 * po/sv.po: Likewise.
17240 * po/uk.po: Likewise.
17241 * po/vi.po: Likewise.
17243 2018-01-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
17245 * aarch64/start.S (_start): Use __wrap_main.
17246 (__wrap_main): New local symbol.
17248 2018-01-12 Dmitry V. Levin <ldv@altlinux.org>
17252 * sysdeps/unix/sysv/linux/getcwd.c (__getcwd): Fall back to
17253 generic_getcwd if the path returned by getcwd syscall is not absolute.
17254 * io/tst-getcwd-abspath.c: New test.
17255 * io/Makefile (tests): Add tst-getcwd-abspath.
17257 2018-01-12 Istvan Kurucsai <pistukem@gmail.com>
17259 * malloc/malloc.c (malloc_consolidate): Add size check.
17261 2018-01-12 Florian Weimer <fweimer@redhat.com>
17263 * support/write_message.c (write_message): Preserve errno.
17264 * support/check.c (print_failure): Likewise.
17265 * support/support_test_verify_impl.c (support_test_verify_impl):
17267 * support/support_test_compare_failure.c
17268 (support_test_compare_failure): Likewise.
17270 2018-01-12 Florian Weimer <fweimer@redhat.com>
17273 * nis/Makefile (install-lib-ldscripts, $(inst_libdir)/libnsl.so):
17274 Prevent installation of libnsl.so.
17275 (libnsl-inhibit-o): Do not build (or install) static libraries.
17277 2018-01-12 Egmont Koblinger <egmont@gmail.com>
17280 * localedata/locales/hu_HU (d_t_fmt): Avoid a leading space
17281 before the day number which may produce a double space.
17282 (date_fmt): Likewise.
17284 2018-01-12 Joseph Myers <joseph@codesourcery.com>
17286 * sysdeps/s390/fpu/feholdexcpt.c (__feholdexcept): Call __fegetenv
17287 instead of fegetenv.
17289 2018-01-11 Joseph Myers <joseph@codesourcery.com>
17292 * sysdeps/generic/math_private.h (libc_feresetround_noex): Update
17293 comment to say exceptions are discarded.
17294 (libc_feholdsetround_noex_ctx): Use __feholdexcept instead of
17296 (SET_RESTORE_ROUND_NOEX): Update comment to say non-stop mode must
17299 2018-01-11 Florian Weimer <fweimer@redhat.com>
17301 * sysdeps/gnu/unwind-resume.c (__libgcc_s_init): Update comment
17304 2018-01-11 Florian Weimer <fweimer@redhat.com>
17307 * nptl/Makefile (tests): Add tst-minstack-cancel, tst-minstack-exit.
17308 * nptl/tst-minstack-cancel.c, nptl/tst-minstack-exit.c: New files.
17310 2018-01-10 Joseph Myers <joseph@codesourcery.com>
17313 * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Handle
17314 negative arguments in test for NaN or infinity argument.
17316 2018-01-10 Dmitry V. Levin <ldv@altlinux.org>
17318 * po/libc.pot: Regenerate.
17320 2018-01-10 Florian Weimer <fweimer@redhat.com>
17323 * sysdeps/nptl/unwind-forcedunwind.c (pthread_cancel_init): Open
17324 libgcc.so with RTLD_NOW, to avoid lazy binding during unwind.
17326 2018-01-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
17328 * hurd/hurd/fd.h: Include <fcntl.h>
17329 (__hurd_at_flags): New function.
17330 * hurd/lookup-at.c (__file_name_lookup_at): Replace flag computation
17331 with call to __hurd_at_flags.
17332 * include/unistd.h (__faccessat, __faccessat_noerrno): Add declaration.
17333 * sysdeps/mach/hurd/access.c (access_common): Move implementation to
17335 (hurd_fail_seterrno, hurd_fail_noerrno): Move to sysdeps/mach/hurd/faccessat.c.
17336 (__access_noerrno): Use __faccessat_common instead of access_common.
17337 (__access): Likewise.
17338 * sysdeps/mach/hurd/euidaccess.c (__euidaccess): Replace implementation
17339 with a call to __faccessat.
17340 * sysdeps/mach/hurd/faccessat.c (faccessat): Rename into...
17341 (__faccessat_common): ... this. Move implementation of __access into it when
17342 AT_FLAGS does not contain AT_EACCESS. Make it call __hurd_at_flags, add
17343 reauthenticate_cwdir_at helper to implement AT mechanism.
17344 (__faccessat_noerrno): New function, just calls __faccessat_common.
17345 (__faccessat): New function, just calls __faccessat_common.
17346 (faccessat): Define weak alias.
17348 2018-01-10 Joseph Myers <joseph@codesourcery.com>
17351 * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
17352 (CFLAGS-s_fmaxmagl.c): New variable.
17353 [$(subdir) = math] (CFLAGS-s_fminmagl.c: Likewise.
17356 * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Use unsigned
17357 long int for arguments of possibly overflowing addition or
17359 * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c (__lroundl): Likewise.
17361 2018-01-09 Joseph Myers <joseph@codesourcery.com>
17364 * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
17365 (CFLAGS-e_remainderl.c): New variable.
17368 * sysdeps/powerpc/nofpu/Makefile (CFLAGS-s_cacosl.c): New
17370 (CFLAGS-s_cacoshl.c): Likewise.
17371 (CFLAGS-s_casinhl.c): Likewise.
17372 (CFLAGS-s_catanl.c): Likewise.
17373 (CFLAGS-s_catanhl.c): Likewise.
17374 (CFLAGS-s_cexpl.c): Likewise.
17375 (CFLAGS-s_ccoshl.c): Add -fsignaling-nans.
17376 (CFLAGS-s_csinhl.c): Likewise.
17377 (CFLAGS-s_clogl.c): Likewise.
17378 (CFLAGS-s_clog10l.c): Likewise.
17379 (CFLAGS-s_csinl.c): Likewise.
17380 (CFLAGS-s_csqrtl.c): Likewise.
17382 2017-01-09 Emilio Pozuelo Monfort <pochu27@gmail.com>
17383 2017-01-09 Svante Signell <svante.signell@gmail.com>
17385 * hurd/hurdexec.c (_hurd_exec): Deprecate function.
17386 (_hurd_exec_paths): New function.
17387 * hurd/hurd.h (_hurd_exec): Deprecate function.
17388 (_hurd_exec_paths): Declare function.
17389 * hurd/Versions: Export _hurd_exec_paths.
17390 * sysdeps/mach/hurd/execve.c: Include <stdlib.h> and <stdio.h>
17391 (__execve): Use __getcwd to build absolute path, and use
17392 _hurd_exec_paths instead of _hurd_exec.
17393 * sysdeps/mach/hurd/spawni.c: Likewise.
17394 * sysdeps/mach/hurd/fexecve.c: Use _hurd_exec_paths instead of
17397 2018-01-08 Dmitry V. Levin <ldv@altlinux.org>
17399 * sysdeps/unix/sysv/linux/tst-ttyname.c (do_in_chroot_1): Skip the
17400 test instead of failing in case of ENOENT returned by posix_openpt.
17402 2018-01-08 Florian Weimer <fweimer@redhat.com>
17404 resolv: Support binary labels in test framework.
17405 * support/resolv_test.c (struct to_be_freed): Remove.
17406 (struct compressed_name): New.
17407 (allocate_compressed_name, ascii_tolower)
17408 (compare_compressed_name): New functions.
17409 (struct resolv_response_builder): Update type of
17410 compression_offsets for use with tsearch. Rempve to_be_freed.
17411 (response_push_pointer_to_free): Remove function.
17412 (resolv_response_add_name): Rewrite using struct compressed_name
17413 and tsearch instead of hsearch_r.
17414 (response_builder_allocate): Remove initialization of
17415 compression_offsets.
17416 (response_builder_free): Update for removal of to_be_freed. Use
17417 tdestroy instead of hdestroy_r.
17418 * resolv/Makefile (tests): Add tst-resolv-binary.
17419 (tst-resolv-binary): Link with -lresolv -lpthread.
17421 2018-01-08 Florian Weimer <fweimer@redhat.com>
17423 * support/check.h (TEST_COMPARE): Allow sign mismatch at compile
17424 time. Pass positive flag instead of negative flag to
17425 support_test_compare_failure.
17426 (support_test_compare_failure): Change negative parameter to
17428 * support/support_test_compare_failure.c (report)
17429 (support_test_compare_failure): Likewise.
17430 * support/tst-test_compare.c (return_ssize_t, return_int): New.
17431 (do_test): Check int/size_t, ssize_t/size_t comparisons.
17433 2018-01-08 Szabolcs Nagy <szabolcs.nagy@arm.com>
17436 * nptl/descr.h (stackblock, stackblock_size): Update comments.
17437 * nptl/allocatestack.c (allocate_stack): Add guardsize to stacksize.
17438 * nptl/nptl-init.c (__pthread_get_minstack): Remove guardsize from
17440 * nptl/pthread_getattr_np.c (pthread_getattr_np): Likewise.
17442 2018-01-08 H.J. Lu <hongjiu.lu@intel.com>
17444 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
17445 Add s_sincosf-sse2 and s_sincosf-fma.
17446 (CFLAGS-s_sincosf-fma.c): New.
17447 * sysdeps/x86_64/fpu/multiarch/s_sincosf-fma.c: New file.
17448 * sysdeps/x86_64/fpu/multiarch/s_sincosf-sse2.S: Likewise.
17449 * sysdeps/x86_64/fpu/multiarch/s_sincosf.c: Likewise.
17450 * sysdeps/x86_64/fpu/s_sincosf.S: Don't add alias if
17451 __sincosf is defined.
17453 2018-01-08 Florian Weimer <fweimer@redhat.com>
17455 * nptl/tst-thread-exit-clobber.cc: New file.
17456 * nptl/Makefile (CFLAGS-tst-thread-exit-clobber.o): Compile in
17458 (LDLIBS-tst-thread-exit-clobber): Link with libstdc++.
17459 (tests): Add tst-thread-exit-clobber.
17460 [!CXX] (tests-unsupported): Add tst-thread-exit-clobber.
17462 2018-01-08 Florian Weimer <fweimer@redhat.com>
17464 * support/check.h (support_static_assert): Define.
17465 (TEST_COMPARE): Use it.
17467 2018-01-07 Aurelien Jarno <aurelien@aurel32.net>
17469 * sysdeps/unix/sysv/linux/getrlimit64 (getrlimit64)
17470 [!__RLIM_T_MATCHES_RLIM64_T]
17471 [!SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_2)]: Define as weak alias of
17472 __getrlimit64. Add libc_hidden_weak.
17474 2018-01-06 Palmer Dabbelt <palmer@sifive.com>
17476 * elf/elf.h (R_RISCV_NONE): New define.
17477 (R_RISCV_32): Likewise.
17478 (R_RISCV_64): Likewise.
17479 (R_RISCV_RELATIVE): Likewise.
17480 (R_RISCV_COPY): Likewise.
17481 (R_RISCV_JUMP_SLOT): Likewise.
17482 (R_RISCV_TLS_DTPMOD32): Likewise.
17483 (R_RISCV_TLS_DTPMOD64): Likewise.
17484 (R_RISCV_TLS_DTPREL32): Likewise.
17485 (R_RISCV_TLS_DTPREL64): Likewise.
17486 (R_RISCV_TLS_TPREL32): Likewise.
17487 (R_RISCV_TLS_TPREL64): Likewise.
17488 * Makerules (make-link-multidir): Make directories before linking into
17490 * sysdeps/unix/sysv/linux/dl-vdso.h (VDSO_NAME_LINUX_4_15): New
17492 (VDSO_HASH_LINUX_4_15): Likewise.
17493 * scripts/build-many-glibcs.py (class Glibc): Strip shared objects
17494 in subdirectories of lib.
17495 * nptl/Makefile (/librt.so): Always depend on
17496 "$(shared-thread-library)".
17498 2018-01-06 Samuel Thibault <samuel.thibault@ens-lyon.org>
17500 * sysdeps/mach/hurd/i386/jmp_buf-macros.h: New file.
17501 * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_dynamic) [NO_RTLD_HIDDEN]: Call
17502 JUMPTARGET (___tls_get_addr) instead of HIDDEN_JUMPTARGET
17504 * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Likewise.
17505 * sysdeps/i386/fpu/libm-test-ulps: Regenerated for GCC 7 with
17507 * posix/tst-glob_symlinks.c [!PATH_MAX]: Define PATH_MAX macro.
17508 * sysdeps/gnu/glob64.c (__glob): Define macro instead of glob macro.
17509 (__glob64): Define GLIBC_2_27 versioned symbol instead of glob64.
17510 * sysdeps/gnu/glob-lstat-compat.c: New file.
17511 * sysdeps/gnu/glob64-lstat-compat.c: New file.
17512 * sysdeps/posix/pwritev_common.c: Add PROT_READ to __mmap prot.
17514 2018-01-05 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
17516 * sysdeps/powerpc/powerpc64/dl-machine.c (_dl_reloc_overflow):
17517 Reserve 16 chars to reloc_addr before calling _itoa_word.
17519 2018-01-05 Aurelien Jarno <aurelien@aurel32.net>
17522 * sysdeps/unix/sysv/linux/prlimit.c (prlimit): Translate
17523 old_rlimit from RLIM64_INFINITY to RLIM_INFINITY.
17525 * sysdeps/unix/sysv/linux/tst-rlimit-infinity.c: New file.
17526 * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-rlimit-infinity.
17528 * resource/tst-getrlimit.c: Add copyright header.
17530 2018-01-05 Aurelien Jarno <aurelien@aurel32.net>
17531 Adhemerval Zanella <adhemerval.zanella@linaro.org>
17533 * sysdeps/unix/sysv/linux/getrlimit64.c [USE_VERSIONED_RLIMIT]: Do not
17534 define getrlimit and getrlimit64 as weak aliases of __getrlimit64.
17535 Define __GI_getrlimit64 as weak alias of __getrlimit64.
17536 [__RLIM_T_MATCHES_RLIM64_T]: Do not redefine SHLIB_COMPAT, use #elif
17538 * sysdeps/unix/sysv/linux/setrlimit64.c [USE_VERSIONED_RLIMIT]: Do not
17539 define setrlimit and setrlimit64 as weak aliases of __setrlimit64.
17540 * sysdeps/unix/sysv/linux/alpha/bits/resource.h (RLIM_INFINITY,
17541 RLIM64_INFINITY): Fix values to match the kernel ones.
17542 * sysdeps/unix/sysv/linux/alpha/getrlimit64.c: Define
17543 USE_VERSIONED_RLIMIT. Rename __getrlimit64 into __old_getrlimit64 and
17544 provide it as getrlimit@@GLIBC_2_0 and getrlimit64@@GLIBC_2_1. Add a
17545 __getrlimit64 function and provide it as getrlimit@@GLIBC_2_27 and
17546 getrlimit64@@GLIBC_2_27.
17547 * sysdeps/unix/sysv/linux/alpha/setrlimit64.c: Ditto with setrlimit
17549 * sysdeps/unix/sysv/linux/alpha/libc.abilist (GLIBC_2.27): Add
17550 getrlimit, setrlimit, getrlimit64 and setrlimit64.
17551 * sysdeps/unix/sysv/linux/alpha/Versions (libc): Add getrlimit,
17552 setrlimit, getrlimit64 and setrlimit64.
17554 2018-01-05 Aurelien Jarno <aurelien@aurel32.net>
17557 * sysdeps/unix/sysv/linux/alpha/getrlimit64.c: New file.
17558 * sysdeps/unix/sysv/linux/alpha/setrlimit64.c: Ditto.
17560 2018-01-04 Joseph Myers <joseph@codesourcery.com>
17562 * malloc/tst-malloc-tcache-leak.c (TIMEOUT): Define to 50.
17563 * posix/tst-glob-tilde.c (TIMEOUT): Define to 200.
17564 * resolv/tst-resolv-res_ninit.c (TIMEOUT): Define to 50.
17566 2018-01-03 Adhemerval Zanella <adhemerval.zanella@linaro.org>
17570 * sysdeps/alpha/fpu/s_trunc.c: Remove file.
17571 * sysdeps/alpha/fpu/s_truncf.c: Likewise.
17575 * sysdeps/alpha/fpu/s_ceil.c: Remove file.
17576 * sysdeps/alpha/fpu/s_ceilf.c: Likewise.
17577 * sysdeps/alpha/fpu/s_floor.c: Likewise.
17578 * sysdeps/alpha/fpu/s_floorf.c: Likewise.
17580 2018-01-04 Florian Weimer <fweimer@redhat.com>
17583 * sysdeps/unix/sysv/linux/i386/makecontext.S (__makecontext):
17584 Align the stack before calling exit.
17585 * stdlib/tst-makecontext-align.c: New file.
17586 * stdlib/Makefile (tests): Add tst-makecontext-align.
17588 2018-01-04 Florian Weimer <fweimer@redhat.com>
17590 Add support for calling dlvsym from libc.so.
17591 * include/dlfcn.h (__libc_dlvsym): Declare.
17592 * elf/Makefile (tests-static-internal): Add
17593 tst-libc_dlvsym-static.
17594 (tests-internal): Add tst-libc_dlvsym.
17595 (modules-names): Add tst-libc_dlvsym-dso.
17596 (tst-libc_dlvsym, tst-libc_dlvsym-static): Link with libdl.
17597 (tst-libc_dlvsym-dso.so): Link with libdl, libsupport.
17598 (tst-libc_dlvsym.out, tst-libc_dlvsym-static.out): The shared
17599 object tst-libc_dlvsym-dso.so needs to be built before running
17601 (tst-libc_dlvsym-static-ENV): Set LD_LIBRARY_PATH.
17602 * elf/Versions: Export __libc_dlvsym.
17603 * elf/dl-libc.c (struct do_dlvsym_args): New.
17604 (do_dlvsym, __libc_dlvsym): New functions.
17605 (struct dl_open_hook, _dl_open_hook): Add dlvsym member.
17606 (_dl_open_hook2): New variable.
17607 (__libc_register_dl_open_hook): Set it.
17608 * elf/tst-libc_dlvsym-dso.c: New file.
17609 * elf/tst-libc_dlvsym-static.c: Likewise.
17610 * elf/tst-libc_dlvsym.c: Likewise.
17611 * elf/tst-libc_dlvsym.h: Likewise.
17613 2018-01-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
17615 * support/support_enter_mount_namespace.c [!CLONE_NEWNS]: Do not
17616 include <sys/mount.h>.
17618 2018-01-02 Wilco Dijkstra <wdijkstr@arm.com>
17620 * math/math.h (math_errhandling): Set to 0 with __FAST_MATH__.
17621 Add __NO_MATH_ERRNO__ check.
17623 2018-01-02 Joseph Myers <joseph@codesourcery.com>
17625 * sysdeps/mips/mips32/libm-test-ulps: Update.
17626 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
17628 2018-01-02 Florian Weimer <fweimer@redhat.com>
17630 * misc/tst-pselect.c: Add copyright header.
17632 2018-01-02 Aurelien Jarno <aurelien@aurel32.net>
17634 * sysdeps/unix/sysv/linux/alpha/getrlimit64.c: Fix a typo in the
17636 * sysdeps/unix/sysv/linux/alpha/setrlimit64.c: Fix a typo in the
17638 (settrlimit): Rename into setrlimit.
17639 (__sttrlimit): Rename into __setrlimit.
17641 * sysdeps/unix/sysv/linux/alpha/getrlimit64.c (__old_getrlimit64):
17642 Drop __RLIM_T_MATCHES_RLIM64_T conditional as __old_getrlimit64 is
17643 never defined in that case.
17645 2018-01-02 Joseph Myers <joseph@codesourcery.com>
17647 * sysdeps/powerpc/nofpu/libm-test-ulps: Update.
17649 * sysdeps/arm/libm-test-ulps: Update.
17651 * math/Makefile (run-regen-ulps): Add $(objpfx) to test name here.
17652 (regen-ulps): Use $(libm-tests) not $^ in shell loop.
17654 2018-01-02 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
17656 * NEWS: Add cosf and sincosf to list of optimized functions.
17658 2018-01-02 Aurelien Jarno <aurelien@aurel32.net>
17661 * sysdeps/alpha/fpu/s_fmax.S: Remove file.
17662 * sysdeps/alpha/fpu/s_fmaxf.S: Likewise.
17663 * sysdeps/alpha/fpu/s_fmin.S: Likewise.
17664 * sysdeps/alpha/fpu/s_fminf.S: Likewise.
17666 2018-01-01 Dmitry V. Levin <ldv@altlinux.org>
17669 * sysdeps/unix/sysv/linux/arm/sys/ptrace.h: New file.
17671 * elf/dl-load.c (decompose_rpath): Check for rpath emptiness before
17672 making a copy of it.
17674 2018-01-01 Joseph Myers <joseph@codesourcery.com>
17676 * manual/texinfo.tex: Update to version 2017-12-26.21 with
17677 trailing whitespace removed.
17678 * scripts/config.guess: Update to version 2018-01-01.
17679 * scripts/config.sub: Update to version 2018-01-01.
17680 * scripts/move-if-change: Update from gnulib.
17682 * NEWS: Update copyright dates.
17683 * catgets/gencat.c (print_version): Likewise.
17684 * csu/version.c (banner): Likewise.
17685 * debug/catchsegv.sh: Likewise.
17686 * debug/pcprofiledump.c (print_version): Likewise.
17687 * debug/xtrace.sh (do_version): Likewise.
17688 * elf/ldconfig.c (print_version): Likewise.
17689 * elf/ldd.bash.in: Likewise.
17690 * elf/pldd.c (print_version): Likewise.
17691 * elf/sotruss.sh: Likewise.
17692 * elf/sprof.c (print_version): Likewise.
17693 * iconv/iconv_prog.c (print_version): Likewise.
17694 * iconv/iconvconfig.c (print_version): Likewise.
17695 * locale/programs/locale.c (print_version): Likewise.
17696 * locale/programs/localedef.c (print_version): Likewise.
17697 * login/programs/pt_chown.c (print_version): Likewise.
17698 * malloc/memusage.sh (do_version): Likewise.
17699 * malloc/memusagestat.c (print_version): Likewise.
17700 * malloc/mtrace.pl: Likewise.
17701 * manual/libc.texinfo: Likewise.
17702 * nptl/version.c (banner): Likewise.
17703 * nscd/nscd.c (print_version): Likewise.
17704 * nss/getent.c (print_version): Likewise.
17705 * nss/makedb.c (print_version): Likewise.
17706 * posix/getconf.c (main): Likewise.
17707 * scripts/test-installation.pl: Likewise.
17708 * sysdeps/unix/sysv/linux/lddlibc4.c (main): Likewise.
17710 * All files with FSF copyright notices: Update copyright dates
17711 using scripts/update-copyrights.
17712 * locale/programs/charmap-kw.h: Regenerated.
17713 * locale/programs/locfile-kw.h: Likewise.
17715 2017-12-31 Zack Weinberg <zackw@panix.com>
17717 * libio/bits/libio-ldbl.h: Correct check for improper
17718 inclusion. Add own multiple include guard.
17720 2017-12-30 Aurelien Jarno <aurelien@aurel32.net>
17721 Dmitry V. Levin <ldv@altlinux.org>
17725 * elf/dl-load.c (fillin_rpath): Check for empty tokens before dynamic
17726 string token expansion. Check for NULL pointer or empty string possibly
17727 returned by expand_dynamic_string_token.
17728 (decompose_rpath): Check for empty path after dynamic string
17731 2017-12-29 Dmitry V. Levin <ldv@altlinux.org>
17734 * sysdeps/unix/sysv/linux/x86/sys/ptrace.h: New file.
17736 * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_request): Add comments
17737 about PTRACE_PEEKSIGINFO, PTRACE_GETSIGMASK, PTRACE_SETSIGMASK, and
17738 PTRACE_SECCOMP_GET_FILTER. Update comments about PTRACE_SINGLESTEP
17739 and PTRACE_SYSCALL.
17740 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h: Likewise.
17741 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
17742 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
17743 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
17744 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
17745 * sysdeps/unix/sysv/linux/tile/sys/ptrace.h: Likewise.
17747 * sysdeps/unix/sysv/linux/sys/ptrace.h: Include <bits/ptrace-shared.h>.
17748 (__ptrace_setoptions, __ptrace_eventcodes, __ptrace_peeksiginfo_args,
17749 __ptrace_peeksiginfo_flags, ptrace): Move to ...
17750 * sysdeps/unix/sysv/linux/bits/ptrace-shared.h: ... new file.
17751 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
17752 bits/ptrace-shared.h.
17753 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h: Include
17754 <bits/ptrace-shared.h>.
17755 (__ptrace_setoptions, __ptrace_eventcodes, __ptrace_peeksiginfo_args,
17756 __ptrace_peeksiginfo_flags, ptrace): Remove.
17757 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
17758 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
17759 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
17760 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
17761 * sysdeps/unix/sysv/linux/tile/sys/ptrace.h: Likewise.
17763 2017-12-29 Aurelien Jarno <aurelien@aurel32.net>
17766 * dirent/scandir-tail.c (SCANDIR_TAIL): Move __set_errno (0) at the
17767 end of the loop. Improve comments.
17769 2017-12-29 Zack Weinberg <zackw@panix.com>
17772 * manual/errno.texi (Checking for Errors): Explicitly say that errno
17773 might be set on success.
17775 2017-12-29 Aurelien Jarno <aurelien@aurel32.net>
17778 * malloc/tst-realloc.c (do_test): Remove the test checking that errno
17779 is unchanged on success.
17781 2017-12-27 Dmitry V. Levin <ldv@altlinux.org>
17783 * elf/dl-dst.h (DL_DST_COUNT): Remove is_path argument, all callers
17785 * elf/dl-load.c (is_dst, _dl_dst_count, _dl_dst_substitute,
17786 expand_dynamic_string_token): Likewise.
17787 * sysdeps/generic/ldsodefs.h (_dl_dst_count, _dl_dst_substitute): Remove
17790 * elf/dl-load.c (is_dst): Remove checks that is_path is set and name
17793 * elf/dl-load.c (_dl_dst_substitute): Remove checks that is_path
17794 is set and name contains ':', and all code depending on these checks.
17796 2017-12-24 Zack Weinberg <zackw@panix.com>
17798 * libio/libio.h, libio/_G_config.h: New stub headers which issue a
17799 deprecation warning and then include <bits/libio.h>, <bits/_G_config.h>
17801 * libio/libio.h: Rename the original version of this file to
17802 libio/bits/libio.h. Error out if not included by stdio.h or the
17804 * include/libio.h: Move to include/bits. Forward to libio/bits/libio.h.
17805 * sysdeps/generic/_G_config.h: Move to top-level bits/. Error out
17806 if not included by bits/libio.h or the stub _G_config.h.
17807 * sysdeps/unix/sysv/linux/_G_config.h: Move to
17808 sysdeps/unix/sysv/linux/bits. Error out if not included by
17809 bits/libio.h or the stub _G_config.h.
17810 * libio/stdio.h: Include bits/libio.h, not libio.h.
17811 * libio/Makefile: Install bits/libio.h and bits/_G_config.h as
17812 well as libio.h and _G_config.h.
17814 * csu/init.c, libio/fmemopen.c, libio/iolibio.h, libio/oldfmemopen.c
17815 * libio/strfile.h, stdio-common/vfscanf.c
17816 * sysdeps/pthread/flockfile.c, sysdeps/pthread/funlockfile.c
17817 Include stdio.h, not _G_config.h nor libio.h.
17818 * libio/iofgetpos.c: Also rename fgetpos64 out of the way.
17819 * libio/iofsetpos.c: Also rename fsetpos64 out of the way.
17821 * scripts/check-installed-headers.sh: Skip libio.h and _G_config.h.
17823 2017-12-23 Dmitry V. Levin <ldv@altlinux.org>
17826 * stdlib/getrandom.c (getrandom): Fix comment.
17827 * sysdeps/unix/sysv/linux/getrandom.c (getrandom): Likewise.
17829 2017-12-23 Aurelien Jarno <aurelien@aurel32.net>
17832 * manual/arith.texi (strtoul): Fix a typo.
17835 * manual/arith.texi (finite): Fix the description of the return
17838 2017-12-22 Eric Blake <ebb9@byu.net>
17840 Avoid gcc warnings on cygwin
17841 * posix/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
17842 * posix/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
17843 Avoid unused variable.
17845 2017-12-22 Florian Weimer <fweimer@redhat.com>
17847 * io/Makefile (routines): Add copy_file_range.
17848 (tests): Add tst-copy_file_range.
17849 (tests-static, tests-internal): Add tst-copy_file_range-compat.
17850 * io/Versions (GLIBC_2.27): Export copy_file_range.
17851 * io/copy_file_range-compat.c: New file.
17852 * io/copy_file_range.c: Likewise.
17853 * io/tst-copy_file_range-compat.c: Likewise.
17854 * io/tst-copy_file_range.c: Likewise.
17855 * manual/llio.texi (Copying File Data): New section.
17856 * posix/unistd.h [__USE_GNU] (copy_file_range): Declare.
17857 * support/Makefile (libsupport-routines): Add support-xfstat,
17858 xftruncate, xlseek.
17859 * support/support-xfstat.c: New file.
17860 * support/xftruncate.c: Likewise.
17861 * support/xlseek.c: Likewise.
17862 * support/xunistd.h (xfstat, xftruncate, xlseek): Declare.
17863 * sysdeps/unix/sysv/linux/**.abilist: Update.
17864 * sysdeps/unix/sysv/linux/copy_file_range.c: New file.
17866 2017-12-21 Szabolcs Nagy <szabolcs.nagy@arm.com>
17868 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
17869 disable-multi-arch variant to aarch64-linux-gnu.
17871 2017-12-20 Joseph Myers <joseph@codesourcery.com>
17873 * manual/texinfo.tex: Update to version 2017-12-18.20 with
17874 trailing whitespace removed.
17875 * scripts/config.guess: Update to version 2017-12-17.
17876 * scripts/config.sub: Update to version 2017-11-23.
17877 * scripts/install-sh: Update to version 2017-09-23.17.
17878 * scripts/move-if-change: Update to version 2017-09-13 06:45.
17880 2017-12-20 Adhemerval Zanella <adhemerval.zanella@linaro.org>
17882 * sysdeps/tile/__longjmp.S (__longjmp): Use lowercase instructions.
17883 * sysdeps/tile/__tls_get_addr.S (__tls_get_addr): Likewise.
17884 * sysdeps/tile/_mcount.S (__mcount): Likewise.
17885 * sysdeps/tile/crti.S (_init, _fini): Likewise.
17886 * sysdeps/tile/crtn.S: Likewise.
17887 * sysdeps/tile/dl-start.S (_start): Likewise.
17888 * sysdeps/tile/dl-trampoline.S: Likewise.
17889 * sysdeps/tile/setjmp.S (__sigsetjmp): Likewise.
17890 * sysdeps/tile/start.S (_start): Likewise.
17891 * sysdeps/unix/sysv/linux/tile/clone.S (_clone): Likewise.
17892 * sysdeps/unix/sysv/linux/tile/getcontext.S (__getcontext): Likewise.
17893 * sysdeps/unix/sysv/linux/tile/ioctl.S (__ioctl): Likewise.
17894 * sysdeps/unix/sysv/linux/tile/setcontext.S (__setcontext): Likewise.
17895 * sysdeps/unix/sysv/linux/tile/swapcontext.S (__swapcontext): Likewise.
17896 * sysdeps/unix/sysv/linux/tile/syscall.S (syscall): Likewise.
17897 * sysdeps/unix/sysv/linux/tile/vfork.S (__vfork): Likewise.
17899 * stdlib/bug-getcontext.c (do_test): Remove tilepro mention in
17901 * sysdeps/tile/preconfigure: Remove tilegx folder.
17902 * sysdeps/tile/tilegx/Implies: Move definitions to ...
17903 * sysdeps/tile/Implies: ... here.
17904 * sysdeps/tile/tilegx/Makefile: Move rules to ...
17905 * sysdeps/tile/Makefile: ... here.
17906 * sysdeps/tile/tilegx/atomic-machine.h: Move definitions to ...
17907 * sysdeps/tile/atomic-machine.h: ... here. Add include guards.
17908 * sysdeps/tile/tilegx/bits/wordsize.h: Move to ...
17909 * sysdeps/tile/bits/wordsize.h: ... here.
17910 * sysdeps/tile/tilegx/*: Move to ...
17911 * sysdeps/tile/*: ... here.
17912 * sysdeps/tile/tilegx/tilegx32/Implies: Move to ...
17913 * sysdeps/tile/tilegx32/Implies: ... here.
17914 * sysdeps/tile/tilegx/tilegx64/Implies: Move to ...
17915 * sysdeps/tile/tilegx64/Implies: ... here.
17916 * sysdeps/unix/sysv/linux/tile/tilegx/Makefile: Move definitions
17918 * sysdeps/unix/sysv/linux/tile/Makefile: ... here.
17919 * sysdeps/unix/sysv/linux/tile/tilegx/*: Move to ...
17920 * sysdeps/unix/sysv/linux/tile/*: ... here.
17921 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/*: Move to ...
17922 * sysdeps/unix/sysv/linux/tile/tilegx32/*: ... here.
17923 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/*: Move to ...
17924 * sysdeps/unix/sysv/linux/tile/tilegx64/*: ... here.
17926 * README: Remove tilepro-*-linux-gnu from supported architecture.
17927 * scripts/build-many-glibcs.py: Likewise.
17928 * sysdeps/tile/__tls_get_addr.S (__tls_get_addr): Likewise.
17929 * sysdeps/tile/crti.S (PREINIT_FUNCTION): Likewise.
17930 * sysdeps/tile/dl-machine.h (ELF_MACHINE_NAME,
17931 elf_machine_matches_host, elf_machine_dynamic,
17932 elf_machine_load_address, elf_machine_runtime_setup, reloc_howto
17933 howto, elf_machine_rela): Likewise.
17934 * sysdeps/tile/dl-start.S (_start): Likewise.
17935 * sysdeps/tile/memcmp.c (DBLALIGN, REVBYTES): Likewise.
17936 * sysdeps/tile/memcopy.h (MEMCPY_OK_FOR_FWD_MEMMOVE,
17937 MEMCPY_OK_FOR_FWD_MEMMOVE, op_t): Likewise.
17938 * sysdeps/tile/nptl/pthread_spin_lock.c (TNS, CMPTNS): Likewise.
17939 * sysdeps/tile/nptl/pthread_spin_trylock.c (TNS): Likewise.
17940 * sysdeps/tile/nptl/pthread_spin_unlock.c (pthread_spin_unlock):
17942 * sysdeps/tile/nptl/tls.h (DB_THREAD_SELF): Likewise.
17943 * sysdeps/tile/preconfigure: Likewise.
17944 * sysdeps/tile/stackguard-macros.h (STACK_CHK_GUARD,
17945 POINTER_CHK_GUARD): Likewise.
17946 * sysdeps/tile/stackinfo.h (__stackinfo_sub): Likewise.
17947 * sysdeps/tile/start.S (_start): Likewise.
17948 * sysdeps/tile/tls-macros.h (TLS_GD_OFFSET, TLS_IE_OFFSET, _TLS_LE):
17950 * sysdeps/tile/sysdep.h (REGSIZE): Likewise.
17951 (LD, LD4U, ST, ST4, BNEZ, BEQZ, BEQZT, BGTZ, CMPEQI, CMPEQ, CMOVEQZ,
17953 * sysdeps/unix/sysv/linux/tile/bits/environments.h
17954 (__ILP32_OFF32_CFLAGS, __ILP32_OFFBIG_CFLAGS, __ILP32_OFF32_LDFLAGS,
17955 __ILP32_OFFBIG_LDFLAGS, __LP64_OFF64_CFLAGS, __LP64_OFF64_LDFLAGS):
17957 * sysdeps/tile/wordcopy.c (DBLALIGN): Likewise.
17958 * sysdeps/tile/tilepro/Implies: Remove file.
17959 * sysdeps/tile/tilepro/atomic-machine.h: Likewise.
17960 * sysdeps/tile/tilepro/bits/wordsize.h: Likewise.
17961 * sysdeps/tile/tilepro/memchr.c: Likewise.
17962 * sysdeps/tile/tilepro/memcpy.S: Likewise.
17963 * sysdeps/tile/tilepro/memset.c: Likewise.
17964 * sysdeps/tile/tilepro/memusage.h: Likewise.
17965 * sysdeps/tile/tilepro/rawmemchr.c: Likewise.
17966 * sysdeps/tile/tilepro/strchr.c: Likewise.
17967 * sysdeps/tile/tilepro/strchrnul.c: Likewise.
17968 * sysdeps/tile/tilepro/strlen.c: Likewise.
17969 * sysdeps/tile/tilepro/strrchr.c: Likewise.
17970 * sysdeps/unix/sysv/linux/tile/tilepro/Implies: Likewise.
17971 * sysdeps/unix/sysv/linux/tile/tilepro/c++-types.data: Likewise.
17972 * sysdeps/unix/sysv/linux/tile/tilepro/jmp_buf-macros.h: Likewise.
17973 * sysdeps/unix/sysv/linux/tile/tilepro/ld.abilist: Likewise.
17974 * sysdeps/unix/sysv/linux/tile/tilepro/ldconfig.h: Likewise.
17975 * sysdeps/unix/sysv/linux/tile/tilepro/libBrokenLocale.abilist:
17977 * sysdeps/unix/sysv/linux/tile/tilepro/libanl.abilist: Likewise.
17978 * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: Likewise.
17979 * sysdeps/unix/sysv/linux/tile/tilepro/libcrypt.abilist: Likewise.
17980 * sysdeps/unix/sysv/linux/tile/tilepro/libdl.abilist: Likewise.
17981 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
17982 * sysdeps/unix/sysv/linux/tile/tilepro/libnsl.abilist: Likewise.
17983 * sysdeps/unix/sysv/linux/tile/tilepro/libpthread.abilist: Likewise.
17984 * sysdeps/unix/sysv/linux/tile/tilepro/libresolv.abilist: Likewise.
17985 * sysdeps/unix/sysv/linux/tile/tilepro/librt.abilist: Likewise.
17986 * sysdeps/unix/sysv/linux/tile/tilepro/libthread_db.abilist: Likewise.
17987 * sysdeps/unix/sysv/linux/tile/tilepro/libutil.abilist: Likewise.
17988 * sysdeps/unix/sysv/linux/tile/tilepro/register-dump.h: Likewise.
17989 * sysdeps/unix/sysv/linux/tile/sysconf.c (linux_sysconf): Remove
17990 tilepro mention in comment.
17992 * nptl/Makefile (libpthread-routines): Add pthread_join_common.
17993 * nptl/pthreadP.h (__pthread_timedjoin_ex): New prototype.
17994 * nptl/pthread_join_common.c: New file: common function used on
17995 pthread_join, pthread_timedjoin_np, pthread_tryjoin_np.
17996 * nptl/pthread_join.c (pthread_join): Use __pthread_timedjoin_ex.
17997 * nptl/pthread_tryjoin.c (pthread_tryjoin): Likewise.
17998 * nptl/pthread_timedjoin.c (pthread_timedjoin_np): Likewise.
17999 (cleanup): Move definition to pthread_join_common.c.
18000 * sysdeps/unix/sysv/linux/i386/lowlevellock.h (__lll_timedwait_tid):
18001 Remove superflous checks.
18002 * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (__lll_timedwait_tid):
18005 2017-12-20 Szabolcs Nagy <szabolcs.nagy@arm.com>
18007 * sysdeps/aarch64/libm-test-ulps: Update.
18009 2017-12-20 Adhemerval Zanella <adhemerval.zanella@linaro.org>
18011 * sysdeps/aarch64/memset.S (MEMSET): Define.
18013 2017-12-20 Florian Weimer <fweimer@redhat.com>
18016 nptl: Provide full implementation of pthread_self in libc.so.
18017 * nptl/Makefile (routines): Add pthread_self.
18018 (libpthread-routines): Replace pthread_self with
18019 compat-pthread_self.
18020 * nptl/forward.c (pthread_self): Remove.
18021 * nptl/nptl-init.c (pthread_functions): Do not initialize
18023 * nptl/pthread_self.c (pthread_self): Remove weak alias.
18024 * nptl/compat-pthread_self.c: New file.
18025 * sysdeps/nptl/pthread-functions.h (struct pthread_functions):
18026 Remove ptr_pthread_self.
18028 2017-12-19 Arnold D. Robbins <arnold@skeeve.com>
18030 * posix/regcomp.c: Fix spelling in comments.
18031 * posix/regex.h: Likewise.
18032 * posix/regex_internal.c: Likewise.
18033 * posix/regexec.c: Likewise.
18035 2017-12-19 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
18038 * math/Makefile [C++] (tests): Add test for iseqsig.
18039 * math/math.h [C++] (iseqsig): New implementation, which does
18040 not rely on __MATH_TG/__builtin_types_compatible_p.
18041 * math/test-math-iseqsig.cc: New file.
18042 * sysdeps/powerpc/powerpc64le/Makefile
18043 (CFLAGS-test-math-iseqsig.cc): New variable.
18045 2017-12-19 Dmitry V. Levin <ldv@altlinux.org>
18047 * elf/dl-load.c (is_trusted_path): Remove.
18048 (fillin_rpath): Remove check_trusted argument and its use,
18049 all callers changed.
18051 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
18054 * Makeconfig (link-pie-before-libc): Replace -pie with
18055 $(if $($(@F)-no-pie),$(no-pie-ldflag),-pie).
18056 * elf/Makefile (LDFLAGS-tst-dlopen-aout): Removed.
18057 (tst-dlopen-aout-no-pie): New.
18058 (LDFLAGS-tst-prelink): Removed.
18059 (tst-prelink-no-pie): New.
18060 (LDFLAGS-tst-main1): Removed.
18061 (tst-main1-no-pie): New.
18062 * gmon/Makefile (LDFLAGS-tst-gmon): Removed.
18063 (tst-gmon-no-pie): New.
18065 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
18067 * manual/install.texi: Document that --enable-static-pie
18069 * INSTALL: Regenerated.
18071 2017-12-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
18074 * sysdeps/ieee754/dbl-64/e_pow.c (checkint): Make m and n
18077 2017-12-19 Joseph Myers <joseph@codesourcery.com>
18081 2017-12-19 Joseph Myers <joseph@codesourcery.com>
18083 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
18085 2017-12-19 Patrick McGehearty <patrick.mcgehearty@oracle.com>
18087 * sysdeps/ieee754/dbl-64/e_exp.c: Include <math-svid-compat.h> and
18088 <errno.h>. Include "eexp.tbl".
18089 (half): New constant.
18091 (__ieee754_exp): Rewrite.
18092 (__slowexp): Remove prototype.
18093 * sysdeps/ieee754/dbl-64/eexp.tbl: New file.
18094 * sysdeps/ieee754/dbl-64/slowexp.c: Remove file.
18095 * sysdeps/i386/fpu/slowexp.c: Likewise.
18096 * sysdeps/ia64/fpu/slowexp.c: Likewise.
18097 * sysdeps/m68k/m680x0/fpu/slowexp.c: Likewise.
18098 * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: Likewise.
18099 * sysdeps/x86_64/fpu/multiarch/slowexp-fma.c: Likewise.
18100 * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Likewise.
18101 * sysdeps/generic/math_private.h (__slowexp): Remove prototype.
18102 * sysdeps/ieee754/dbl-64/e_pow.c: Remove mention of slowexp.c in
18104 * sysdeps/powerpc/power4/fpu/Makefile [$(subdir) = math]
18105 (CPPFLAGS-slowexp.c): Remove variable.
18106 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
18107 Remove slowexp-fma, slowexp-fma4 and slowexp-avx.
18108 (CFLAGS-slowexp-fma.c): Remove variable.
18109 (CFLAGS-slowexp-fma4.c): Likewise.
18110 (CFLAGS-slowexp-avx.c): Likewise.
18111 * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c (__slowexp): Do not
18113 * sysdeps/x86_64/fpu/multiarch/e_exp-fma.c (__slowexp): Likewise.
18114 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c (__slowexp): Likewise.
18115 * math/Makefile (type-double-routines): Remove slowexp.
18116 * manual/probes.texi (slowexp_p6): Remove.
18117 (slowexp_p32): Likewise.
18119 2017-12-19 Adhemerval Zanella <adhemerval.zanella@linaro.org>
18121 * lib/glob.c (glob): Use a 'char *', not a 'void *', in pointer
18124 * lib/glob.c (glob): Do not pass NULL to mempcpy.
18126 2017-12-19 Joseph Myers <joseph@codesourcery.com>
18128 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
18130 2017-12-19 Patrick McGehearty <patrick.mcgehearty@oracle.com>
18132 * sysdeps/ieee754/dbl-64/e_exp.c: Include <math-svid-compat.h> and
18133 <errno.h>. Include "eexp.tbl".
18134 (half): New constant.
18136 (__ieee754_exp): Rewrite.
18137 (__slowexp): Remove prototype.
18138 * sysdeps/ieee754/dbl-64/eexp.tbl: New file.
18139 * sysdeps/ieee754/dbl-64/slowexp.c: Remove file.
18140 * sysdeps/i386/fpu/slowexp.c: Likewise.
18141 * sysdeps/ia64/fpu/slowexp.c: Likewise.
18142 * sysdeps/m68k/m680x0/fpu/slowexp.c: Likewise.
18143 * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: Likewise.
18144 * sysdeps/x86_64/fpu/multiarch/slowexp-fma.c: Likewise.
18145 * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Likewise.
18146 * sysdeps/generic/math_private.h (__slowexp): Remove prototype.
18147 * sysdeps/ieee754/dbl-64/e_pow.c: Remove mention of slowexp.c in
18149 * sysdeps/powerpc/power4/fpu/Makefile [$(subdir) = math]
18150 (CPPFLAGS-slowexp.c): Remove variable.
18151 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
18152 Remove slowexp-fma, slowexp-fma4 and slowexp-avx.
18153 (CFLAGS-slowexp-fma.c): Remove variable.
18154 (CFLAGS-slowexp-fma4.c): Likewise.
18155 (CFLAGS-slowexp-avx.c): Likewise.
18156 * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c (__slowexp): Do not
18158 * sysdeps/x86_64/fpu/multiarch/e_exp-fma.c (__slowexp): Likewise.
18159 * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c (__slowexp): Likewise.
18160 * math/Makefile (type-double-routines): Remove slowexp.
18161 * manual/probes.texi (slowexp_p6): Remove.
18162 (slowexp_p32): Likewise.
18164 2017-12-19 Adhemerval Zanella <adhemerval.zanella@linaro.org>
18165 James Clarke <jrtc27@jrtc27.com>
18168 * sysdeps/ia64/memchr.S (__memchr): Avoid overflow in pointer
18171 2017-12-19 Adhemerval Zanella <adhemerval.zanella@linaro.org>
18174 * sysdeps/unix/sysv/linux/sh/clone.S (__clone): Fix exit return
18177 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
18180 * sysdeps/i386/nptl/tcb-offsets.sym (FEATURE_1_OFFSET): New.
18181 * sysdeps/i386/nptl/tls.h (tcbhead_t): Add feature_1.
18182 * sysdeps/x86_64/nptl/tcb-offsets.sym (FEATURE_1_OFFSET): New.
18183 * sysdeps/x86_64/nptl/tls.h (tcbhead_t): Rename __glibc_unused1
18186 2017-12-19 H.J. Lu <hongjiu.lu@intel.com>
18189 * bits/types/__cancel_jmp_buf_tag.h: New file.
18190 * sysdeps/unix/sysv/linux/x86/bits/types/__cancel_jmp_buf_tag.h
18191 * sysdeps/unix/sysv/linux/x86/pthreaddef.h: Likewise.
18192 * sysdeps/unix/sysv/linux/x86/nptl/pthreadP.h: Likewise.
18193 * nptl/Makefile (headers): Add
18194 bits/types/__cancel_jmp_buf_tag.h.
18195 * nptl/descr.h [NEED_SAVED_MASK_IN_CANCEL_JMP_BUF]
18196 (pthread_unwind_buf): Add saved_mask to cancel_jmp_buf.
18197 * sysdeps/nptl/pthread.h: Include
18198 <bits/types/__cancel_jmp_buf_tag.h>.
18199 (__pthread_unwind_buf_t): Use struct __cancel_jmp_buf_tag with
18201 * sysdeps/unix/sysv/linux/hppa/pthread.h: Likewise.
18203 2017-12-18 H.J. Lu <hongjiu.lu@intel.com>
18205 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
18206 --enable-static-pie variants to x86_64, x32 and i686.
18208 2017-12-19 Joseph Myers <joseph@codesourcery.com>
18211 * sysdeps/m68k/m680x0/fpu/bits/mathinline.h (__m81_defun): Add
18212 argument for attrubutes. All callers changed.
18213 (__inline_mathop1): Likewise. All callers changed.
18214 (__inline_mathop): Likewise. All callers changed.
18215 [__USE_MISC] (scalbn): Use __inline_forward instead of
18216 __inline_forward_c.
18217 [__USE_ISOC99] (scalbln): Likewise.
18218 [__USE_ISOC99] (nearbyint): Likewise.
18219 [__USE_ISOC99] (lrint): Likewise.
18220 [__USE_MISC] (scalbnf): Likewise.
18221 [__USE_ISOC99] (scalblnf): Likewise.
18222 [__USE_ISOC99] (nearbyintf): Likewise.
18223 [__USE_ISOC99] (lrintf): Likewise.
18224 [__USE_MISC] (scalbnl): Likewise.
18225 [__USE_ISOC99] (scalblnl): Likewise.
18226 [__USE_ISOC99] (nearbyintl): Likewise.
18227 [__USE_ISOC99] (lrintl): Likewise.
18228 * sysdeps/m68k/m680x0/fpu/mathimpl.h: All callers of
18229 __inline_mathop and __m81_defun changed.
18231 * scripts/build-many-glibcs.py (Context.add_all_configs): Specify
18232 CPU or FPU for ARM hard-float configurations.
18234 2017-12-18 Joseph Myers <joseph@codesourcery.com>
18236 * nptl/tst-attr3.c: Include <libc-diag.h>.
18237 (do_test) [__GNUC_PREREQ (7, 0)]: Ignore -Wrestrict for two tests.
18239 * posix/tst-glob_symlinks.c (do_test): Increase size of buf.
18241 * string/tester.c (test_strncat): Also disable -Warray-bounds
18242 warnings for two tests.
18244 2017-12-18 H.J. Lu <hongjiu.lu@intel.com>
18247 * Makeconfig (no-pie-ldflag): Set to -no-pie only if
18248 $(cc-pie-default) == yes.
18249 * config.make.in (cc-pie-default): New.
18250 * configure.ac (libc_cv_pie_default): Renamed to ...
18251 (libc_cv_cc_pie_default): This.
18252 (libc_cv_pie_default): Set to $libc_cv_cc_pie_default.
18253 * configure: Regenerated.
18255 2017-12-18 Florian Weimer <fweimer@redhat.com>
18258 ld.so: Harden dl-libc/libdl hooks.
18259 * sysdeps/generic/ldsodefs.h (_dl_init_all_dirs): Update comment.
18260 (rtld_active): New function.
18261 * dlfcn/dladdr.c (__dladdr): Call it.
18262 * dlfcn/dladdr1.c (__dladdr1): Likewise.
18263 * dlfcn/dlclose.c (__dlcose): Likewise.
18264 * dlfcn/dlerror.c (__dlerror): Likewise.
18265 * dlfcn/dlinfo.c (__dlinfo): Likewise.
18266 * dlfcn/dlmopen.c (__dlmopen): Likewise.
18267 * dlfcn/dlopen.c (__dlopen): Likewise.
18268 * dlfcn/dlopenold.c (__dlopen_nocheck): Likewise.
18269 * dlfcn/dlsym.c (__dlsym): Likewise.
18270 * dlfcn/dlvsym.c (__dlvsym): Likewise.
18271 * libio/vtables.c (_IO_vtable_check): Likewise.
18272 * elf/dl-libc.c (__libc_dlopen_mode, __libc_dlsym)
18273 (__libc_dlclose): Likewise.
18274 * elf/rtld.c (dl_main): Update comment on the _dl_init_all_dirs
18277 2017-12-18 Joseph Myers <joseph@codesourcery.com>
18280 * nscd/connections.c (handle_request) [SO_PEERCRED]: Use separate
18281 buffers for readlink input and output.
18283 2017-12-18 Sergei Trofimovich <slyfox@gentoo.org>
18286 * sysdeps/mips/setjmp_aux.c (__sigsetjmp_aux): Use
18287 inhibit_stack_protector.
18290 * sysdeps/mips/mips64/setjmp_aux.c (__sigsetjmp_aux): Use
18291 inhibit_stack_protector.
18293 2017-12-18 Dmitry V. Levin <ldv@altlinux.org>
18296 * elf/dl-load.c (_dl_init_paths): Remove _dl_dst_substitute preparatory
18297 code and invocation.
18299 2017-12-18 Szabolcs Nagy <szabolcs.nagy@arm.com>
18301 * sysdeps/aarch64/start.S (_start): Handle PIC && !SHARED case.
18303 2017-12-16 Aurelien Jarno <aurelien@aurel32.net>
18306 * elf/ldconfig.c (main): Call setlocale to force LC_COLLATE to C.
18308 2017-12-16 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
18310 * sysdeps/s390/fpu/libm-test-ulps: Update.
18312 2017-12-16 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
18314 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18316 2017-12-16 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
18318 * sysdeps/ieee754/flt-32/s_cosf.c: Move reduced() and
18319 constants to s_sincosf.h file.
18320 * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
18321 * sysdeps/ieee754/flt-32/s_sincosf.c: New
18323 * sysdeps/ieee754/flt-32/s_sincosf.h:
18326 2017-12-12 Carlos O'Donell <carlos@redhat.com>
18329 * elf/tst-leaks1.c (do_test): Call one dlopen with $ORIGIN expansion
18332 2017-12-15 H.J. Lu <hongjiu.lu@intel.com>
18335 * INSTALL: Regenerated.
18336 * Makeconfig (real-static-start-installed-name): New.
18337 (pic-default): Updated for --enable-static-pie.
18338 (pie-default): New for --enable-static-pie.
18339 (default-pie-ldflag): Likewise.
18340 (+link-static-before-libc): Replace $(DEFAULT-LDFLAGS-$(@F))
18341 with $(if $($(@F)-no-pie),$(no-pie-ldflag),$(default-pie-ldflag)).
18342 Replace $(static-start-installed-name) with
18343 $(real-static-start-installed-name).
18344 (+prectorT): Updated for --enable-static-pie.
18345 (+postctorT): Likewise.
18346 (CFLAGS-.o): Add $(pie-default).
18347 (CFLAGS-.op): Likewise.
18348 * NEWS: Mention --enable-static-pie.
18349 * config.h.in (ENABLE_STATIC_PIE): New.
18350 * configure.ac (--enable-static-pie): New configure option.
18351 (have-no-dynamic-linker): New LIBC_CONFIG_VAR.
18352 (have-static-pie): Likewise.
18353 Enable static PIE if linker supports --no-dynamic-linker.
18354 (ENABLE_STATIC_PIE): New AC_DEFINE.
18355 (enable-static-pie): New LIBC_CONFIG_VAR.
18356 * configure: Regenerated.
18357 * csu/Makefile (omit-deps): Add r$(start-installed-name) and
18358 gr$(start-installed-name) for --enable-static-pie.
18359 (extra-objs): Likewise.
18360 (install-lib): Likewise.
18361 (extra-objs): Add static-reloc.o and static-reloc.os
18362 ($(objpfx)$(start-installed-name)): Also depend on
18363 $(objpfx)static-reloc.o.
18364 ($(objpfx)r$(start-installed-name)): New.
18365 ($(objpfx)g$(start-installed-name)): Also depend on
18366 $(objpfx)static-reloc.os.
18367 ($(objpfx)gr$(start-installed-name)): New.
18368 * csu/libc-start.c (LIBC_START_MAIN): Call _dl_relocate_static_pie
18370 * csu/libc-tls.c (__libc_setup_tls): Add main_map->l_addr to
18372 * csu/static-reloc.c: New file.
18373 * elf/Makefile (routines): Add dl-reloc-static-pie.
18374 (elide-routines.os): Likewise.
18375 (DEFAULT-LDFLAGS-tst-tls1-static-non-pie): Removed.
18376 (tst-tls1-static-non-pie-no-pie): New.
18377 * elf/dl-reloc-static-pie.c: New file.
18378 * elf/dl-support.c (_dl_get_dl_main_map): New function.
18379 * elf/dynamic-link.h (ELF_DURING_STARTUP): Also check
18380 STATIC_PIE_BOOTSTRAP.
18381 * elf/get-dynamic-info.h (elf_get_dynamic_info): Likewise.
18382 * gmon/Makefile (tests): Add tst-gmon-static-pie.
18383 (tests-static): Likewise.
18384 (DEFAULT-LDFLAGS-tst-gmon-static): Removed.
18385 (tst-gmon-static-no-pie): New.
18386 (CFLAGS-tst-gmon-static-pie.c): Likewise.
18387 (CRT-tst-gmon-static-pie): Likewise.
18388 (tst-gmon-static-pie-ENV): Likewise.
18389 (tests-special): Likewise.
18390 ($(objpfx)tst-gmon-static-pie.out): Likewise.
18391 (clean-tst-gmon-static-pie-data): Likewise.
18392 ($(objpfx)tst-gmon-static-pie-gprof.out): Likewise.
18393 * gmon/tst-gmon-static-pie.c: New file.
18394 * manual/install.texi: Document --enable-static-pie.
18395 * sysdeps/generic/ldsodefs.h (_dl_relocate_static_pie): New.
18396 (_dl_get_dl_main_map): Likewise.
18397 * sysdeps/i386/configure.ac: Check if linker supports static PIE.
18398 * sysdeps/x86_64/configure.ac: Likewise.
18399 * sysdeps/i386/configure: Regenerated.
18400 * sysdeps/x86_64/configure: Likewise.
18401 * sysdeps/mips/Makefile (ASFLAGS-.o): Add $(pie-default).
18402 (ASFLAGS-.op): Likewise.
18404 2017-12-15 Joseph Myers <joseph@codesourcery.com>
18406 * io/Makefile (tst-open-tmpfile-ARGS): New variable.
18407 * posix/tst-mmap-offset.c (fname): Use /tmp.
18408 * stdlib/tst-setcontext3.sh (tempfile): Use ${objpfx}.
18410 2017-12-15 Steve Ellcey <sellcey@cavium.com>
18412 * nscd/dbg_log.c (dbg_log): Increase msg buffer size.
18414 2017-12-15 Thomas Schwinge <thomas@codesourcery.com>
18416 * sysdeps/mach/hurd/dl-sysdep.c (__access_noerrno): Don't set
18419 2017-12-15 Joseph Myers <joseph@codesourcery.com>
18421 * scripts/build-many-glibcs.py (Context.add_all_configs): Use
18422 --with-float=hard for arm-linux-gnueabihf configurations.
18425 * po/Makefile (generated): Add $(ALL_LINGUAS:%=%.mo).
18426 (%.mo): Change to $(objpfx)%.mo. Use $(make-target-directory).
18427 ($(mo-installed)): Use $(objpfx)%.mo.
18428 (realclean): Remove rule.
18430 * po/Makefile (linguas): Remove rule and dependencies.
18431 (linguas.mo): Likewise.
18432 (.PHONY): Do not depend on linguas and linguas.mo.
18433 (podir): Remove variable.
18434 (pofiles): Likewise.
18435 [$(pofiles)] (%.po): Remove rule.
18437 * sysdeps/sparc/sparc32/Makefile
18438 ($(divrem:%=$(sysdep_dir)/sparc/sparc32/%.S)): Do not include
18439 start-of-line whitespace in argument of echo.
18440 * sysdeps/sparc/sparc32/divrem.m4: Avoid generating lines starting
18441 with whitespace. Generate __wrap_.udiv alias.
18442 * sysdeps/sparc/sparc32/rem.S: Regenerated.
18443 * sysdeps/sparc/sparc32/sdiv.S: Likewise.
18444 * sysdeps/sparc/sparc32/udiv.S: Likewise.
18445 * sysdeps/sparc/sparc32/urem.S: Likewise.
18447 2017-12-15 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
18449 * sysdeps/powerpc/powerpc64/power8/strcpy.S: Use vectors
18450 for aligned inputs.
18452 2017-12-14 Siddhesh Poyarekar <siddhesh@sourceware.org>
18454 * benchtests/bench-strcmp.c: Print output in JSON format.
18456 * elf/dl-tunables.list: Remove redundant SXID_ERASE.
18458 2017-12-14 Florian Weimer <fweimer@redhat.com>
18462 * elf/dl-load.c (_dl_init_paths): Compute number of components in
18463 the expanded path string.
18465 2017-12-14 Florian Weimer <fweimer@redhat.com>
18469 * elf/dl-load.c (system_dirs): Update comment.
18470 (nsystem_dirs_len): Use array_length.
18471 (_dl_init_paths): Use nsystem_dirs_len to compute the array size.
18473 2017-12-14 Florian Weimer <fweimer@redhat.com>
18475 Simplify compiling most of support/ outside of glibc.
18476 * support/check_addrinfo.c: Include <string.h>.
18477 * support/check_dns_packet.c: Likewise.
18478 * support/check_hostent.c: Likewise.
18479 * support/support_can_chroot.c: Include <support/xunistd.h>.
18480 * support/support_format_addrinfo.c: Include <stdlib.h>
18481 * support/support_format_dns_packet.c: Include <stdbool.h>.
18482 * support/support_format_hostent.c: Include <stdlib.h>.
18483 * support/support_format_netent.c: Likewise.
18484 * support/support_write_string.c: Include <support/xunistd.h>.
18485 * support/xdlfcn.c: Include <stddef.h>.
18487 2017-12-14 H.J. Lu <hongjiu.lu@intel.com>
18489 * sysdeps/x86_64/fpu/s_cosf.S: Removed.
18491 2017-12-14 Patrick McGehearty <patrick.mcgehearty@oracle.com>
18492 Adhemerval Zanella <adhemerval.zanella@linaro.org>
18494 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile
18495 (sysdeps_routines): Add memset-niagara7.
18496 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdes_rotuines):
18498 * sysdeps/sparc/sparc32/sparcv9/multiarch/memset-niagara7.S: New
18500 * sysdeps/sparc/sparc64/multiarch/memset-niagara7.S: Likewise.
18501 * sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c
18502 (__libc_ifunc_impl_list): Add __bzero_niagara7 and __memset_niagara7.
18503 * sysdeps/sparc/sparc64/multiarch/ifunc-memset.h (IFUNC_SELECTOR):
18504 Add niagara7 option.
18505 * NEWS: Mention sparc m7 optimized memcpy, mempcpy, memmove, and
18508 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile
18509 (sysdeps_routines): Add memcpy-memmove-niagara7 and memmove-ultra1.
18510 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdeps_routines):
18512 * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy-memmove-niagara7.S:
18514 * sysdeps/sparc/sparc32/sparcv9/multiarch/memmove-ultra1.S: Likewise.
18515 * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memmove.c: Likewise.
18516 * sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c
18517 (__libc_ifunc_impl_list): Add __memcpy_niagara7, __mempcpy_niagara7,
18518 and __memmove_niagara7.
18519 * sysdeps/sparc/sparc64/multiarch/ifunc-memcpy.h (IFUNC_SELECTOR):
18520 Add niagara7 option.
18521 * sysdeps/sparc/sparc64/multiarch/memmove.c: New file.
18522 * sysdeps/sparc/sparc64/multiarch/ifunc-memmove.h: Likewise.
18523 * sysdeps/sparc/sparc64/multiarch/memcpy-memmove-niagara7.S: Likewise.
18524 * sysdeps/sparc/sparc64/multiarch/memmove-ultra1.S: Likewise.
18525 * sysdeps/sparc/sparc64/multiarch/rtld-memmove.c: Likewise.
18527 2017-12-14 Jose E. Marchesi <jose.marchesi@oracle.com>
18529 * sysdeps/sparc/sparc32/sparcv9/memmove.S: New file.
18530 * sysdeps/sparc/sparc32/sparcv9/rtld-memmove.c: Likewise.
18531 * sysdeps/sparc/sparc64/memmove.S: Likewise.
18532 * sysdeps/sparc/sparc64/rtld-memmove.c: Likewise.
18534 * sysdeps/sparc/bits/hwcap.h (HWCAP_SPARC_ADP): Defined.
18535 * sysdeps/sparc/dl-procinfo.c: Added "adp" to the
18536 _dl_sparc_cap_flags array.
18537 * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Increment.
18539 2017-12-13 Siddhesh Poyarekar <siddhesh@sourceware.org>
18541 * sysdeps/aarch64/strcmp.S (misaligned8): Compare dword at a
18542 time whenever possible.
18544 2017-12-12 Carlos O'Donell <carlos@redhat.com>
18546 * elf/Makefile [$(nss-crypt)$(static-nss-crypt) == yesno]
18547 (CFLAGS-tst-linkall-static.c): Undefine USE_CRYPT first.
18549 2017-12-12 Joseph Myers <joseph@codesourcery.com>
18551 * soft-fp/fmadf4.c: Move to ....
18552 * sysdeps/ieee754/soft-fp/s_fma.c: ... here.
18553 * soft-fp/fmasf4.c: Move to ....
18554 * sysdeps/ieee754/soft-fp/s_fmaf.c: ... here.
18555 * soft-fp/fmatf4.c: Move to ....
18556 * sysdeps/ieee754/soft-fp/s_fmal.c: ... here.
18557 * sysdeps/ieee754/soft-fp/Makefile: New file.
18558 * sysdeps/arm/preconfigure.ac: Define with_fp_cond.
18559 * sysdeps/arm/preconfigure: Regenerated.
18560 * sysdeps/arm/nofpu/Implies: New file.
18561 * sysdeps/arm/s_fma.c: Remove file.
18562 * sysdeps/arm/s_fmaf.c: Likewise.
18563 * sysdeps/m68k/coldfire/nofpu/Implies: New file.
18564 * sysdeps/m68k/coldfire/nofpu/s_fma.c: Remove file.
18565 * sysdeps/m68k/coldfire/nofpu/s_fmaf.c: Likewise.
18566 * sysdeps/microblaze/Implies: Add ieee754/soft-fp.
18567 * sysdeps/microblaze/s_fma.c: Remove file.
18568 * sysdeps/microblaze/s_fmaf.c: Likewise.
18569 * sysdeps/mips/mips32/nofpu/Implies: New file.
18570 * sysdeps/mips/mips64/n32/fpu/s_fma.c: Likewise.
18571 * sysdeps/mips/mips64/n32/nofpu/Implies: Likewise.
18572 * sysdeps/mips/mips64/n64/fpu/s_fma.c: Likewise.
18573 * sysdeps/mips/mips64/n64/nofpu/Implies: Likewise.
18574 * sysdeps/mips/ieee754/s_fma.c: Remove file.
18575 * sysdeps/mips/ieee754/s_fmaf.c: Likewise.
18576 * sysdeps/mips/ieee754/s_fmal.c: Update include for move of fmal
18578 * sysdeps/nios2/Implies: Add ieee754/soft-fp.
18579 * sysdeps/nios2/s_fma.c: Remove file.
18580 * sysdeps/nios2/s_fmaf.c: Likewise.
18581 * sysdeps/sh/nofpu/Implies: New file.
18582 * sysdeps/sh/s_fma.c: Remove file.
18583 * sysdeps/sh/s_fmaf.c: Likewise.
18584 * sysdeps/tile/Implies: Add ieee754/soft-fp.
18585 * sysdeps/tile/s_fma.c: Remove file.
18586 * sysdeps/tile/s_fmaf.c: Likewise.
18588 2017-12-12 H.J. Lu <hongjiu.lu@intel.com>
18590 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
18591 Add s_cosf-sse2 and s_cosf-fma.
18592 (CFLAGS-s_cosf-fma.c): New.
18593 * sysdeps/x86_64/fpu/multiarch/s_cosf-fma.c: New file.
18594 * sysdeps/x86_64/fpu/multiarch/s_cosf-sse2.c: Likewise.
18595 * sysdeps/x86_64/fpu/multiarch/s_cosf.c: Likewise.
18597 2017-12-12 Steve Ellcey <sellcey@cavium.com>
18599 * nscd/nscd.h (init_traced_file): Change strncpy to memcpy.
18601 2017-12-12 Adhemerval Zanella <adhemerval.zanella@linaro.org>
18603 * libio/Makefile (tests): Add tst-bz22415.
18604 (tst-bz22415-ENV): New rule.
18605 (generated): Add tst-bz22415.mtrace and tst-bz22415.check.
18606 (tests-special): Add tst-bz22415-mem.out.
18607 ($(objpfx)tst-bz22415-mem.out): New rule.
18608 * libio/fileops.c (_IO_new_file_seekoff): Call _IO_free_backup_area
18609 in case of a successful seek operation.
18610 * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
18611 (_IO_wfile_overflow): Call _IO_free_wbackup_area in case a write
18612 buffer is required.
18613 * libio/tst-bz22415.c: New test.
18615 * sysdeps/ia64/fpu/libm-test-ulps: Update.
18617 2017-12-12 James Clarke <jrtc27@jrtc27.com>
18619 * sysdeps/unix/sysv/linux/ia64/ipc_priv.h: New file defining
18620 __IPC_64 to 0 to avoid IPC_64 being set.
18622 2017-12-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
18625 * math/bits/mathcalls.h (nextafter): Remove const.
18626 (nexttoward): Likewise.
18628 2017-12-12 Joseph Myers <joseph@codesourcery.com>
18630 * configure.ac (--with-fp): Remove configure option.
18631 (with_fp_cond): New variable.
18632 (libc_cv_with_fp): New configure test. Use this variable instead
18634 * configure: Regenerated.
18635 * config.make.in (with-fp): Use @libc_cv_with_fp@.
18636 * manual/install.texi (Configuring and compiling): Remove
18638 * INSTALL: Regenerated.
18639 * sysdeps/m68k/preconfigure (with_fp_cond): Define for ColdFire.
18640 * sysdeps/mips/preconfigure (with_fp_cond): Define.
18641 * sysdeps/powerpc/preconfigure (with_fp_cond): Define for 32-bit.
18642 * sysdeps/sh/preconfigure (with_fp_cond): Define.
18643 * scripts/build-many-glibcs.py (Context.add_all_configs): Do not
18644 use --without-fp to configure glibc.
18646 2017-12-12 Rical Jasan <ricaljasan@pacific.net>
18648 * manual/locale.texi (nl_langinfo): Fix a typo.
18650 2017-12-12 Aurelien Jarno <aurelien@aurel32.net>
18653 * manual/conf.texi (SC_SSIZE_MAX): Rename into _SC_SSIZE_MAX.
18655 2017-12-11 H.J. Lu <hongjiu.lu@intel.com>
18657 * argp/Makefile (CFLAGS-argp-help.c): Replace = with +=.
18658 (CFLAGS-argp-parse.c): Likewise.
18659 (CFLAGS-argp-fmtstream.c): Likewise.
18660 * crypt/Makefile (CPPFLAGS-sha256-crypt.c): Likewise.
18661 (CPPFLAGS-sha512-crypt.c): Likewise.
18662 (CPPFLAGS-md5-crypt.c): Likewise.
18663 * debug/Makefile (CFLAGS-stack_chk_fail.c): Likewise.
18664 (CFLAGS-stack_chk_fail_local.c): Likewise.
18665 (CFLAGS-backtrace.c): Likewise.
18666 (CFLAGS-sprintf_chk.c): Likewise.
18667 (CFLAGS-snprintf_chk.c): Likewise.
18668 (CFLAGS-vsprintf_chk.c): Likewise.
18669 (CFLAGS-vsnprintf_chk.c): Likewise.
18670 (CFLAGS-asprintf_chk.c): Likewise.
18671 (CFLAGS-vasprintf_chk.c): Likewise.
18672 (CFLAGS-obprintf_chk.c): Likewise.
18673 (CFLAGS-dprintf_chk.c): Likewise.
18674 (CFLAGS-vdprintf_chk.c): Likewise.
18675 (CFLAGS-printf_chk.c): Likewise.
18676 (CFLAGS-fprintf_chk.c): Likewise.
18677 (CFLAGS-vprintf_chk.c): Likewise.
18678 (CFLAGS-vfprintf_chk.c): Likewise.
18679 (CFLAGS-gets_chk.c): Likewise.
18680 (CFLAGS-fgets_chk.c): Likewise.
18681 (CFLAGS-fgets_u_chk.c): Likewise.
18682 (CFLAGS-fread_chk.c): Likewise.
18683 (CFLAGS-fread_u_chk.c): Likewise.
18684 (CFLAGS-swprintf_chk.c): Likewise.
18685 (CFLAGS-vswprintf_chk.c): Likewise.
18686 (CFLAGS-wprintf_chk.c): Likewise.
18687 (CFLAGS-fwprintf_chk.c): Likewise.
18688 (CFLAGS-vwprintf_chk.c): Likewise.
18689 (CFLAGS-vfwprintf_chk.c): Likewise.
18690 (CFLAGS-fgetws_chk.c): Likewise.
18691 (CFLAGS-fgetws_u_chk.c): Likewise.
18692 (CFLAGS-read_chk.c): Likewise.
18693 (CFLAGS-pread_chk.c): Likewise.
18694 (CFLAGS-pread64_chk.c): Likewise.
18695 (CFLAGS-recv_chk.c): Likewise.
18696 (CFLAGS-recvfrom_chk.c): Likewise.
18697 (CFLAGS-tst-longjmp_chk.c): Likewise.
18698 (CPPFLAGS-tst-longjmp_chk.c): Likewise.
18699 (CFLAGS-tst-longjmp_chk2.c): Likewise.
18700 (CPPFLAGS-tst-longjmp_chk2.c): Likewise.
18701 (CFLAGS-tst-longjmp_chk3.c): Likewise.
18702 (CPPFLAGS-tst-longjmp_chk3.c): Likewise.
18703 (CFLAGS-tst-chk1.c): Likewise.
18704 (CFLAGS-tst-chk2.c): Likewise.
18705 (CFLAGS-tst-chk3.c): Likewise.
18706 (CFLAGS-tst-chk4.cc): Likewise.
18707 (CFLAGS-tst-chk5.cc): Likewise.
18708 (CFLAGS-tst-chk6.cc): Likewise.
18709 (CFLAGS-tst-lfschk1.c): Likewise.
18710 (CFLAGS-tst-lfschk2.c): Likewise.
18711 (CFLAGS-tst-lfschk3.c): Likewise.
18712 (CFLAGS-tst-lfschk4.cc): Likewise.
18713 (CFLAGS-tst-lfschk5.cc): Likewise.
18714 (CFLAGS-tst-lfschk6.cc): Likewise.
18715 (CFLAGS-tst-ssp-1.c): Likewise.
18716 * dirent/Makefile (CFLAGS-scandir.c): Likewise.
18717 (CFLAGS-scandir64.c): Likewise.
18718 (CFLAGS-scandir-tail.c): Likewise.
18719 (CFLAGS-scandir64-tail.c): Likewise.
18720 * elf/Makefile (CPPFLAGS-dl-tunables.c): Likewise.
18721 (CFLAGS-dl-tunables.c): Likewise.
18722 (CFLAGS-dl-runtime.c): Likewise.
18723 (CFLAGS-dl-lookup.c): Likewise.
18724 (CFLAGS-dl-iterate-phdr.c): Likewise.
18725 (CFLAGS-vismain.c): Likewise.
18726 (CFLAGS-tst-linkall-static.c): Likewise.
18727 (CFLAGS-tst-linkall-static.c): Likewise.
18728 (CPPFLAGS-dl-load.c): Likewise.
18729 (CFLAGS-ldconfig.c): Likewise.
18730 (CFLAGS-dl-cache.c): Likewise.
18731 (CFLAGS-cache.c): Likewise.
18732 (CFLAGS-rtld.c): Likewise.
18733 (CFLAGS-multiload.c): Likewise.
18734 (CFLAGS-filtmod1.c): Likewise.
18735 (CFLAGS-tst-align.c): Likewise.
18736 (CFLAGS-tst-align2.c): Likewise.
18737 (CFLAGS-tst-alignmod.c): Likewise.
18738 (CFLAGS-tst-alignmod2.c): Likewise.
18739 (CPPFLAGS-tst-execstack.c): Likewise.
18740 (CFLAGS-tst-ptrguard1-static.c): Likewise.
18741 (CFLAGS-tst-latepthreadmod.c): Likewise.
18742 * grp/Makefile (CFLAGS-getgrgid_r.c): Likewise.
18743 (CFLAGS-getgrnam_r.c): Likewise.
18744 (CFLAGS-getgrent_r.c): Likewise.
18745 (CFLAGS-getgrent.c): Likewise.
18746 (CFLAGS-fgetgrent.c): Likewise.
18747 (CFLAGS-fgetgrent_r.c): Likewise.
18748 (CFLAGS-putgrent.c): Likewise.
18749 (CFLAGS-initgroups.c): Likewise.
18750 (CFLAGS-getgrgid.c): Likewise.
18751 * gshadow/Makefile (CFLAGS-getsgent_r.c): Likewise.
18752 (CFLAGS-getsgent.c): Likewise.
18753 (CFLAGS-fgetsgent.c): Likewise.
18754 (CFLAGS-fgetsgent_r.c): Likewise.
18755 (CFLAGS-putsgent.c): Likewise.
18756 (CFLAGS-getsgnam.c): Likewise.
18757 (CFLAGS-getsgnam_r.c): Likewise.
18758 * iconv/Makefile (CFLAGS-iconv_prog.c): Likewise.
18759 (CFLAGS-iconv_charmap.c): Likewise.
18760 (CFLAGS-dummy-repertoire.c): Likewise.
18761 (CFLAGS-charmap.c): Likewise.
18762 (CFLAGS-linereader.c): Likewise.
18763 (CFLAGS-simple-hash.c): Likewise.
18764 (CFLAGS-gconv_conf.c): Likewise.
18765 (CFLAGS-iconvconfig.c): Likewise.
18766 * inet/Makefile (CFLAGS-gethstbyad_r.c): Likewise.
18767 (CFLAGS-gethstbyad.c): Likewise.
18768 (CFLAGS-gethstbynm_r.c): Likewise.
18769 (CFLAGS-gethstbynm.c): Likewise.
18770 (CFLAGS-gethstbynm2_r.c): Likewise.
18771 (CFLAGS-gethstbynm2.c): Likewise.
18772 (CFLAGS-gethstent_r.c): Likewise.
18773 (CFLAGS-gethstent.c): Likewise.
18774 (CFLAGS-rcmd.c): Likewise.
18775 (CFLAGS-getnetbynm_r.c): Likewise.
18776 (CFLAGS-getnetbynm.c): Likewise.
18777 (CFLAGS-getnetbyad_r.c): Likewise.
18778 (CFLAGS-getnetbyad.c): Likewise.
18779 (CFLAGS-getnetent_r.c): Likewise.
18780 (CFLAGS-getnetent.c): Likewise.
18781 (CFLAGS-getaliasent_r.c): Likewise.
18782 (CFLAGS-getaliasent.c): Likewise.
18783 (CFLAGS-getrpcent_r.c): Likewise.
18784 (CFLAGS-getrpcent.c): Likewise.
18785 (CFLAGS-getservent_r.c): Likewise.
18786 (CFLAGS-getservent.c): Likewise.
18787 (CFLAGS-getprtent_r.c): Likewise.
18788 (CFLAGS-getprtent.c): Likewise.
18789 (CFLAGS-either_ntoh.c): Likewise.
18790 (CFLAGS-either_hton.c): Likewise.
18791 (CFLAGS-getnetgrent.c): Likewise.
18792 (CFLAGS-getnetgrent_r.c): Likewise.
18793 (CFLAGS-tst-checks-posix.c): Likewise.
18794 (CFLAGS-tst-sockaddr.c): Likewise.
18795 * intl/Makefile (CFLAGS-tst-gettext.c): Likewise.
18796 (CFLAGS-tst-translit.c): Likewise.
18797 (CFLAGS-tst-gettext2.c): Likewise.
18798 (CFLAGS-tst-codeset.c): Likewise.
18799 (CFLAGS-tst-gettext3.c): Likewise.
18800 (CFLAGS-tst-gettext4.c): Likewise.
18801 (CFLAGS-tst-gettext5.c): Likewise.
18802 (CFLAGS-tst-gettext6.c): Likewise.
18803 * io/Makefile (CFLAGS-open.c): Likewise.
18804 (CFLAGS-open64.c): Likewise.
18805 (CFLAGS-creat.c): Likewise.
18806 (CFLAGS-creat64.c): Likewise.
18807 (CFLAGS-fcntl.c): Likewise.
18808 (CFLAGS-poll.c): Likewise.
18809 (CFLAGS-ppoll.c): Likewise.
18810 (CFLAGS-lockf.c): Likewise.
18811 (CFLAGS-statfs.c): Likewise.
18812 (CFLAGS-fstatfs.c): Likewise.
18813 (CFLAGS-statvfs.c): Likewise.
18814 (CFLAGS-fstatvfs.c): Likewise.
18815 (CFLAGS-fts.c): Likewise.
18816 (CFLAGS-fts64.c): Likewise.
18817 (CFLAGS-ftw.c): Likewise.
18818 (CFLAGS-ftw64.c): Likewise.
18819 (CFLAGS-lockf.c): Likewise.
18820 (CFLAGS-posix_fallocate.c): Likewise.
18821 (CFLAGS-posix_fallocate64.c): Likewise.
18822 (CFLAGS-fallocate.c): Likewise.
18823 (CFLAGS-fallocate64.c): Likewise.
18824 (CFLAGS-read.c): Likewise.
18825 (CFLAGS-write.c): Likewise.
18826 (CFLAGS-test-stat.c): Likewise.
18827 (CFLAGS-test-lfs.c): Likewise.
18828 * libio/Makefile (CFLAGS-fileops.c): Likewise.
18829 (CFLAGS-fputc.c): Likewise.
18830 (CFLAGS-fputwc.c): Likewise.
18831 (CFLAGS-freopen64.c): Likewise.
18832 (CFLAGS-freopen.c): Likewise.
18833 (CFLAGS-fseek.c): Likewise.
18834 (CFLAGS-fseeko64.c): Likewise.
18835 (CFLAGS-fseeko.c): Likewise.
18836 (CFLAGS-ftello64.c): Likewise.
18837 (CFLAGS-ftello.c): Likewise.
18838 (CFLAGS-fwide.c): Likewise.
18839 (CFLAGS-genops.c): Likewise.
18840 (CFLAGS-getc.c): Likewise.
18841 (CFLAGS-getchar.c): Likewise.
18842 (CFLAGS-getwc.c): Likewise.
18843 (CFLAGS-getwchar.c): Likewise.
18844 (CFLAGS-iofclose.c): Likewise.
18845 (CFLAGS-iofflush.c): Likewise.
18846 (CFLAGS-iofgetpos64.c): Likewise.
18847 (CFLAGS-iofgetpos.c): Likewise.
18848 (CFLAGS-iofgets.c): Likewise.
18849 (CFLAGS-iofgetws.c): Likewise.
18850 (CFLAGS-iofputs.c): Likewise.
18851 (CFLAGS-iofputws.c): Likewise.
18852 (CFLAGS-iofread.c): Likewise.
18853 (CFLAGS-iofsetpos64.c): Likewise.
18854 (CFLAGS-iofsetpos.c): Likewise.
18855 (CFLAGS-ioftell.c): Likewise.
18856 (CFLAGS-iofwrite.c): Likewise.
18857 (CFLAGS-iogetdelim.c): Likewise.
18858 (CFLAGS-iogetline.c): Likewise.
18859 (CFLAGS-iogets.c): Likewise.
18860 (CFLAGS-iogetwline.c): Likewise.
18861 (CFLAGS-ioputs.c): Likewise.
18862 (CFLAGS-ioseekoff.c): Likewise.
18863 (CFLAGS-ioseekpos.c): Likewise.
18864 (CFLAGS-iosetbuffer.c): Likewise.
18865 (CFLAGS-iosetvbuf.c): Likewise.
18866 (CFLAGS-ioungetc.c): Likewise.
18867 (CFLAGS-ioungetwc.c): Likewise.
18868 (CFLAGS-oldfileops.c): Likewise.
18869 (CFLAGS-oldiofclose.c): Likewise.
18870 (CFLAGS-oldiofgetpos64.c): Likewise.
18871 (CFLAGS-oldiofgetpos.c): Likewise.
18872 (CFLAGS-oldiofsetpos64.c): Likewise.
18873 (CFLAGS-oldiofsetpos.c): Likewise.
18874 (CFLAGS-peekc.c): Likewise.
18875 (CFLAGS-putc.c): Likewise.
18876 (CFLAGS-putchar.c): Likewise.
18877 (CFLAGS-putwc.c): Likewise.
18878 (CFLAGS-putwchar.c): Likewise.
18879 (CFLAGS-rewind.c): Likewise.
18880 (CFLAGS-wfileops.c): Likewise.
18881 (CFLAGS-wgenops.c): Likewise.
18882 (CFLAGS-oldiofopen.c): Likewise.
18883 (CFLAGS-iofopen.c): Likewise.
18884 (CFLAGS-iofopen64.c): Likewise.
18885 (CFLAGS-oldtmpfile.c): Likewise.
18886 (CFLAGS-tst_putwc.c): Likewise.
18887 * locale/Makefile (CFLAGS-md5.c): Likewise.
18888 (CFLAGS-charmap.c): Likewise.
18889 (CFLAGS-locfile.c): Likewise.
18890 (CFLAGS-charmap-dir.c): Likewise.
18891 * login/Makefile (CFLAGS-grantpt.c): Likewise.
18892 (CFLAGS-getpt.c): Likewise.
18893 (CFLAGS-pt_chown.c): Likewise.
18894 * malloc/Makefile (CFLAGS-mcheck-init.c): Likewise.
18895 (CFLAGS-obstack.c): Likewise.
18896 * math/Makefile (CFLAGS-test-tgmath3.c): Likewise.
18897 (CFLAGS-test-double-vlen4-wrappers.c): Likewise.
18898 (CFLAGS-test-double-vlen8-wrappers.c): Likewise.
18899 (CFLAGS-test-float-vlen8-wrappers.c): Likewise.
18900 (CFLAGS-test-float-vlen16-wrappers.c): Likewise.
18901 (CFLAGS-test-tgmath.c): Likewise.
18902 (CFLAGS-test-tgmath2.c): Likewise.
18903 (CFLAGS-test-tgmath-ret.c): Likewise.
18904 (CFLAGS-test-powl.c): Likewise.
18905 (CFLAGS-test-snan.c): Likewise.
18906 (CFLAGS-test-signgam-finite.c): Likewise.
18907 (CFLAGS-test-signgam-finite-c99.c): Likewise.
18908 (CFLAGS-test-signgam-finite-c11.c): Likewise.
18909 (CFLAGS-test-signgam-uchar.c): Likewise.
18910 (CFLAGS-test-signgam-uchar-init.c): Likewise.
18911 (CFLAGS-test-signgam-uchar-static.c): Likewise.
18912 (CFLAGS-test-signgam-uchar-init-static.c): Likewise.
18913 (CFLAGS-test-signgam-uint.c): Likewise.
18914 (CFLAGS-test-signgam-uint-init.c): Likewise.
18915 (CFLAGS-test-signgam-uint-static.c): Likewise.
18916 (CFLAGS-test-signgam-uint-init-static.c): Likewise.
18917 (CFLAGS-test-signgam-ullong.c): Likewise.
18918 (CFLAGS-test-signgam-ullong-init.c): Likewise.
18919 (CFLAGS-test-signgam-ullong-static.c): Likewise.
18920 (CFLAGS-test-signgam-ullong-init-static.c): Likewise.
18921 (CFLAGS-test-math-cxx11.cc): Likewise.
18922 (CFLAGS-test-math-isinff.cc): Likewise.
18923 (CFLAGS-test-math-iszero.cc): Likewise.
18924 (CFLAGS-test-math-issignaling.cc): Likewise.
18925 (CFLAGS-test-math-iscanonical.cc): Likewise.
18926 (CFLAGS-test-iszero-excess-precision.c): Likewise.
18927 (CFLAGS-test-iseqsig-excess-precision.c): Likewise.
18928 (CFLAGS-test-flt-eval-method.c): Likewise.
18929 (CFLAGS-test-fe-snans-always-signal.c): Likewise.
18930 (CFLAGS-test-finite-macros.c): Likewise.
18931 * misc/Makefile (CFLAGS-select.c): Likewise.
18932 (CFLAGS-tsearch.c): Likewise.
18933 (CFLAGS-lsearch.c): Likewise.
18934 (CFLAGS-pselect.c): Likewise.
18935 (CFLAGS-readv.c): Likewise.
18936 (CFLAGS-writev.c): Likewise.
18937 (CFLAGS-preadv.c): Likewise.
18938 (CFLAGS-preadv64.c): Likewise.
18939 (CFLAGS-pwritev.c): Likewise.
18940 (CFLAGS-pwritev64.c): Likewise.
18941 (CFLAGS-preadv2.c): Likewise.
18942 (CFLAGS-preadv64v2.c): Likewise.
18943 (CFLAGS-pwritev2.c): Likewise.
18944 (CFLAGS-pwritev64v2.c): Likewise.
18945 (CFLAGS-usleep.c): Likewise.
18946 (CFLAGS-syslog.c): Likewise.
18947 (CFLAGS-error.c): Likewise.
18948 (CFLAGS-getpass.c): Likewise.
18949 (CFLAGS-mkstemp.c): Likewise.
18950 (CFLAGS-mkstemp64.c): Likewise.
18951 (CFLAGS-getsysstats.c): Likewise.
18952 (CFLAGS-getusershell.c): Likewise.
18953 (CFLAGS-err.c): Likewise.
18954 (CFLAGS-tst-tsearch.c): Likewise.
18955 (CFLAGS-msync.c): Likewise.
18956 (CFLAGS-fdatasync.c): Likewise.
18957 (CFLAGS-fsync.c): Likewise.
18958 * nptl/Makefile (CFLAGS-nptl-init.c): Likewise.
18959 (CFLAGS-unwind.c): Likewise.
18960 (CFLAGS-unwind-forcedunwind.c): Likewise.
18961 (CFLAGS-pthread_cancel.c): Likewise.
18962 (CFLAGS-pthread_setcancelstate.c): Likewise.
18963 (CFLAGS-pthread_setcanceltype.c): Likewise.
18964 (CFLAGS-cancellation.c): Likewise.
18965 (CFLAGS-libc-cancellation.c): Likewise.
18966 (CFLAGS-pthread_exit.c): Likewise.
18967 (CFLAGS-forward.c): Likewise.
18968 (CFLAGS-pthread_testcancel.c): Likewise.
18969 (CFLAGS-pthread_join.c): Likewise.
18970 (CFLAGS-pthread_timedjoin.c): Likewise.
18971 (CFLAGS-pthread_once.c): Likewise.
18972 (CFLAGS-pthread_cond_wait.c): Likewise.
18973 (CFLAGS-sem_wait.c): Likewise.
18974 (CFLAGS-sem_timedwait.c): Likewise.
18975 (CFLAGS-fcntl.c): Likewise.
18976 (CFLAGS-lockf.c): Likewise.
18977 (CFLAGS-pread.c): Likewise.
18978 (CFLAGS-pread64.c): Likewise.
18979 (CFLAGS-pwrite.c): Likewise.
18980 (CFLAGS-pwrite64.c): Likewise.
18981 (CFLAGS-wait.c): Likewise.
18982 (CFLAGS-waitpid.c): Likewise.
18983 (CFLAGS-sigwait.c): Likewise.
18984 (CFLAGS-msgrcv.c): Likewise.
18985 (CFLAGS-msgsnd.c): Likewise.
18986 (CFLAGS-tcdrain.c): Likewise.
18987 (CFLAGS-open.c): Likewise.
18988 (CFLAGS-open64.c): Likewise.
18989 (CFLAGS-pause.c): Likewise.
18990 (CFLAGS-recv.c): Likewise.
18991 (CFLAGS-send.c): Likewise.
18992 (CFLAGS-accept.c): Likewise.
18993 (CFLAGS-sendto.c): Likewise.
18994 (CFLAGS-connect.c): Likewise.
18995 (CFLAGS-recvfrom.c): Likewise.
18996 (CFLAGS-recvmsg.c): Likewise.
18997 (CFLAGS-sendmsg.c): Likewise.
18998 (CFLAGS-close.c): Likewise.
18999 (CFLAGS-read.c): Likewise.
19000 (CFLAGS-write.c): Likewise.
19001 (CFLAGS-nanosleep.c): Likewise.
19002 (CFLAGS-sigsuspend.c): Likewise.
19003 (CFLAGS-msync.c): Likewise.
19004 (CFLAGS-fdatasync.c): Likewise.
19005 (CFLAGS-fsync.c): Likewise.
19006 (CFLAGS-pt-system.c): Likewise.
19007 (CFLAGS-tst-cleanup2.c): Likewise.
19008 (CFLAGS-tst-cleanupx2.c): Likewise.
19009 (CFLAGS-flockfile.c): Likewise.
19010 (CFLAGS-ftrylockfile.c): Likewise.
19011 (CFLAGS-funlockfile.c): Likewise.
19012 (CFLAGS-tst-initializers1.c): Likewise.
19013 (CFLAGS-tst-initializers1-c89.c): Likewise.
19014 (CFLAGS-tst-initializers1-c99.c): Likewise.
19015 (CFLAGS-tst-initializers1-c11.c): Likewise.
19016 (CFLAGS-tst-initializers1-gnu89.c): Likewise.
19017 (CFLAGS-tst-initializers1-gnu99.c): Likewise.
19018 (CFLAGS-tst-initializers1-gnu11.c): Likewise.
19019 * nscd/Makefile (CFLAGS-nscd_getpw_r.c): Likewise.
19020 (CFLAGS-nscd_getgr_r.c): Likewise.
19021 (CFLAGS-nscd_gethst_r.c): Likewise.
19022 (CFLAGS-nscd_getai.c): Likewise.
19023 (CFLAGS-nscd_initgroups.c): Likewise.
19024 * posix/Makefile (CFLAGS-getaddrinfo.c): Likewise.
19025 (CFLAGS-pause.c): Likewise.
19026 (CFLAGS-pread.c): Likewise.
19027 (CFLAGS-pread64.c): Likewise.
19028 (CFLAGS-pwrite.c): Likewise.
19029 (CFLAGS-pwrite64.c): Likewise.
19030 (CFLAGS-sleep.c): Likewise.
19031 (CFLAGS-wait.c): Likewise.
19032 (CFLAGS-waitid.c): Likewise.
19033 (CFLAGS-waitpid.c): Likewise.
19034 (CFLAGS-getopt.c): Likewise.
19035 (CFLAGS-wordexp.c): Likewise.
19036 (CFLAGS-sysconf.c): Likewise.
19037 (CFLAGS-pathconf.c): Likewise.
19038 (CFLAGS-fpathconf.c): Likewise.
19039 (CFLAGS-spawn.c): Likewise.
19040 (CFLAGS-spawnp.c): Likewise.
19041 (CFLAGS-spawni.c): Likewise.
19042 (CFLAGS-glob.c): Likewise.
19043 (CFLAGS-glob64.c): Likewise.
19044 (CFLAGS-getconf.c): Likewise.
19045 (CFLAGS-nanosleep.c): Likewise.
19046 * pwd/Makefile (CFLAGS-getpwent_r.c): Likewise.
19047 (CFLAGS-getpwent.c): Likewise.
19048 (CFLAGS-getpw.c): Likewise.
19049 (CFLAGS-fgetpwent_r.c): Likewise.
19050 * resolv/Makefile (CFLAGS-res_hconf.c): Likewise.
19051 * rt/Makefile (CFLAGS-aio_suspend.c): Likewise.
19052 (CFLAGS-mq_timedreceive.c): Likewise.
19053 (CFLAGS-mq_timedsend.c): Likewise.
19054 (CFLAGS-clock_nanosleep.c): Likewise.
19055 (CFLAGS-librt-cancellation.c): Likewise.
19056 * shadow/Makefile (CFLAGS-getspent_r.c): Likewise.
19057 (CFLAGS-getspent.c): Likewise.
19058 (CFLAGS-fgetspent.c): Likewise.
19059 (CFLAGS-fgetspent_r.c): Likewise.
19060 (CFLAGS-putspent.c): Likewise.
19061 (CFLAGS-getspnam.c): Likewise.
19062 (CFLAGS-getspnam_r.c): Likewise.
19063 * signal/Makefile (CFLAGS-sigpause.c): Likewise.
19064 (CFLAGS-sigsuspend.c): Likewise.
19065 (CFLAGS-sigtimedwait.c): Likewise.
19066 (CFLAGS-sigwait.c): Likewise.
19067 (CFLAGS-sigwaitinfo.c): Likewise.
19068 (CFLAGS-sigreturn.c): Likewise.
19069 * stdio-common/Makefile (CFLAGS-vfprintf.c): Likewise.
19070 (CFLAGS-vfwprintf.c): Likewise.
19071 (CFLAGS-tmpfile.c): Likewise.
19072 (CFLAGS-tmpfile64.c): Likewise.
19073 (CFLAGS-tempname.c): Likewise.
19074 (CFLAGS-psignal.c): Likewise.
19075 (CFLAGS-vprintf.c): Likewise.
19076 (CFLAGS-cuserid.c): Likewise.
19077 (CFLAGS-errlist.c): Likewise.
19078 (CFLAGS-siglist.c): Likewise.
19079 (CFLAGS-scanf15.c): Likewise.
19080 (CFLAGS-scanf17.c): Likewise.
19081 * stdlib/Makefile (CFLAGS-bsearch.c): Likewise.
19082 (CFLAGS-msort.c): Likewise.
19083 (CFLAGS-qsort.c): Likewise.
19084 (CFLAGS-system.c): Likewise.
19085 (CFLAGS-fmtmsg.c): Likewise.
19086 (CFLAGS-strfmon.c): Likewise.
19087 (CFLAGS-strfmon_l.c): Likewise.
19088 (CFLAGS-strfromd.c): Likewise.
19089 (CFLAGS-strfromf.c): Likewise.
19090 (CFLAGS-strfroml.c): Likewise.
19091 (CFLAGS-tst-bsearch.c): Likewise.
19092 (CFLAGS-tst-qsort.c): Likewise.
19093 (CFLAGS-tst-makecontext2.c): Likewise.
19094 * sunrpc/Makefile (CFLAGS-xbootparam_prot.c): Likewise.
19095 (CFLAGS-xnlm_prot.c): Likewise.
19096 (CFLAGS-xrstat.c): Likewise.
19097 (CFLAGS-xyppasswd.c): Likewise.
19098 (CFLAGS-xklm_prot.c): Likewise.
19099 (CFLAGS-xrex.c): Likewise.
19100 (CFLAGS-xsm_inter.c): Likewise.
19101 (CFLAGS-xmount.c): Likewise.
19102 (CFLAGS-xrusers.c): Likewise.
19103 (CFLAGS-xspray.c): Likewise.
19104 (CFLAGS-xnfs_prot.c): Likewise.
19105 (CFLAGS-xrquota.c): Likewise.
19106 (CFLAGS-xkey_prot.c): Likewise.
19107 (CFLAGS-auth_unix.c): Likewise.
19108 (CFLAGS-key_call.c): Likewise.
19109 (CFLAGS-pmap_rmt.c): Likewise.
19110 (CFLAGS-clnt_perr.c): Likewise.
19111 (CFLAGS-openchild.c): Likewise.
19112 * sysvipc/Makefile (CFLAGS-msgrcv.c): Likewise.
19113 (CFLAGS-msgsnd.c): Likewise.
19114 * termios/Makefile (CFLAGS-tcdrain.c): Likewise.
19115 * time/Makefile (CFLAGS-tzfile.c): Likewise.
19116 (CFLAGS-tzset.c): Likewise.
19117 (CFLAGS-getdate.c): Likewise.
19118 (CFLAGS-test_time.c): Likewise.
19119 (CPPFLAGS-tst-tzname.c): Likewise.
19120 * timezone/Makefile (CFLAGS-zdump.c): Likewise.
19121 (CFLAGS-zic.c): Likewise.
19122 * wcsmbs/Makefile (CFLAGS-wcwidth.c): Likewise.
19123 (CFLAGS-wcswidth.c): Likewise.
19124 (CFLAGS-wcstol.c): Likewise.
19125 (CFLAGS-wcstoul.c): Likewise.
19126 (CFLAGS-wcstoll.c): Likewise.
19127 (CFLAGS-wcstoull.c): Likewise.
19128 (CFLAGS-wcstod.c): Likewise.
19129 (CFLAGS-wcstold.c): Likewise.
19130 (CFLAGS-wcstof128.c): Likewise.
19131 (CFLAGS-wcstof.c): Likewise.
19132 (CFLAGS-wcstol_l.c): Likewise.
19133 (CFLAGS-wcstoul_l.c): Likewise.
19134 (CFLAGS-wcstoll_l.c): Likewise.
19135 (CFLAGS-wcstoull_l.c): Likewise.
19136 (CFLAGS-wcstod_l.c): Likewise.
19137 (CFLAGS-wcstold_l.c): Likewise.
19138 (CFLAGS-wcstof128_l.c): Likewise.
19139 (CFLAGS-wcstof_l.c): Likewise.
19140 (CPPFLAGS-tst-wchar-h.c): Likewise.
19141 (CPPFLAGS-wcstold_l.c): Likewise.
19143 2017-12-11 Paul A. Clarke <pc@us.ibm.com>
19145 * sysdeps/ieee754/flt-32/s_cosf.c: New implementation.
19147 2017-12-11 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
19148 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
19150 * manual/tunables.texi (Hardware Capability Tunables): Document
19151 glibc.tune.cached_memopt.
19152 * sysdeps/powerpc/cpu-features.c: New file.
19153 * sysdeps/powerpc/cpu-features.h: New file.
19154 * sysdeps/powerpc/dl-procinfo.c [!IS_IN(ldconfig)]: Add
19155 _dl_powerpc_cpu_features.
19156 * sysdeps/powerpc/dl-tunables.list: New file.
19157 * sysdeps/powerpc/ldsodefs.h: Include cpu-features.h.
19158 * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h
19159 (INIT_ARCH): Initialize use_aligned_memopt.
19160 * sysdeps/powerpc/powerpc64/dl-machine.h [defined(SHARED &&
19161 IS_IN(rtld))]: Restrict dl_platform_init availability and
19162 initialize CPU features used by tunables.
19163 * sysdeps/powerpc/powerpc64/multiarch/Makefile (sysdep_routines):
19164 Add memcpy-power8-cached.
19165 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Add
19166 __memcpy_power8_cached.
19167 * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: Likewise.
19168 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power8-cached.S:
19171 2017-12-11 H.J. Lu <hongjiu.lu@intel.com>
19173 * string/Makefile (CFLAGS-inl-tester.c): Replace = with +=.
19174 (CFLAGS-noinl-tester.c): Likewise.
19175 (CFLAGS-tst-strlen.c): Likewise.
19176 (CFLAGS-stratcliff.c): Likewise.
19177 (CFLAGS-test-ffs.c): Likewise.
19178 (CFLAGS-tst-inlcall.c): Likewise.
19179 (CFLAGS-tst-xbzero-opt.c): Likewise.
19180 (CFLAGS-memcpy.c): Likewise.
19181 (CFLAGS-wordcopy.c): Likewise.
19183 2017-12-11 Stefan Liebler <stli@linux.vnet.ibm.com>
19185 * sysdeps/s390/s390-64/dl-trampoline.h (_dl_runtime_resolve):
19186 Store r15 on stack and add cfi rule.
19187 * sysdeps/s390/s390-32/dl-trampoline.h (_dl_runtime_resolve):
19190 2017-12-10 Aurelien Jarno <aurelien@aurel32.net>
19193 * elf/rtld.c (init_tls): Add missing new line to the _dl_fatal_printf
19196 2017-12-07 H.J. Lu <hongjiu.lu@intel.com>
19198 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
19199 Add s_sinf-sse2 and s_sinf-fma.
19200 (CFLAGS-s_sinf-fma.c): New.
19201 * sysdeps/x86_64/fpu/multiarch/s_sinf-fma.c: New file.
19202 * sysdeps/x86_64/fpu/multiarch/s_sinf-sse2.c: Likewise.
19203 * sysdeps/x86_64/fpu/multiarch/s_sinf.c: Likewise.
19205 2017-12-07 H.J. Lu <hongjiu.lu@intel.com>
19207 * sysdeps/x86_64/fpu/s_sinf.S: Removed.
19209 2017-12-07 Joseph Myers <joseph@codesourcery.com>
19212 * math/s_ctan_template.c (M_DECL_FUNC (__ctan)): Set imaginary
19213 part of result to imaginary part of argument if it is zero and the
19214 real part of the argument is not finite.
19215 * math/s_ctanh_template.c (M_DECL_FUNC (__ctanh)): Set real part
19216 of result to real part of argument if it is zero and the imaginary
19217 part of the argument is not finite.
19219 2017-12-07 Mike FABIAN <mfabian@redhat.com>
19222 * localedata/Makefile: Add lt_LT.UTF-8 to test-input
19223 and to the list of locales to be built for testing.
19224 * localedata/lt_LT.UTF-8.in: New file for testing the collation.
19225 * localedata/locales/lt_LT (LC_COLLATE): Use “copy "iso14651_t1"”
19226 and build the collation rules upon that.
19228 2017-12-07 Joseph Myers <joseph@codesourcery.com>
19230 * bits/floatn-common.h (__HAVE_FLOAT32): Define to 1.
19231 * manual/math.texi (Mathematics): Document support for _Float32.
19232 * math/Makefile (test-types): Add float32.
19233 * math/Versions (GLIBC_2.27): Add _Float32 functions.
19234 * stdlib/Versions (GLIBC_2.27): Likewise.
19235 * wcsmbs/Versions (GLIBC_2.27): Likewise.
19236 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Update.
19237 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
19238 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
19239 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
19240 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
19241 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
19242 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
19243 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
19244 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
19245 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
19246 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
19247 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
19248 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
19249 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
19250 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
19251 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
19252 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
19253 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
19254 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
19255 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
19256 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist:
19258 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
19259 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
19260 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
19261 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
19262 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
19263 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
19265 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist:
19267 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
19269 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
19272 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist:
19274 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist:
19276 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
19278 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist:
19280 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
19281 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
19282 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
19283 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
19284 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
19285 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
19286 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
19287 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
19288 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
19289 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
19290 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist:
19292 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist:
19294 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist:
19296 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist:
19298 * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: Likewise.
19299 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
19300 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
19301 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
19302 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
19303 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
19304 * sysdeps/i386/fpu/libm-test-ulps: Likewise.
19305 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
19307 2017-12-06 Joseph Myers <joseph@codesourcery.com>
19309 * stdlib/strtof.c: Include <bits/floatn.h>
19310 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (strtof32): Define
19311 and later undefine as macro. Define as weak alias if
19313 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (wcstof32): Define
19314 and later undefine as macro. Define as weak alias if
19316 * stdlib/strtof_l.c: Include <bits/floatn.h>
19317 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (strtof32_l): Define
19318 and later undefine as macro. Define as weak alias if
19320 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (wcstof32_l): Define
19321 and later undefine as macro. Define as weak alias if
19324 * stdlib/strfromf.c: Include <bits/floatn.h>.
19325 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32] (strfromf32): Define
19326 and later undefine as macro and define as weak alias.
19328 * math/test-float32.h: New file.
19330 * sysdeps/generic/libm-alias-float.h: Include <bits/floatn.h>.
19331 [__HAVE_FLOAT32 && !__HAVE_DISTINCT_FLOAT32]
19332 (libm_alias_float_other_r): Create f32 alias.
19333 (libm_alias_float_r): Use semicolon before call to
19334 libm_alias_float_other_r.
19336 * sysdeps/ia64/fpu/e_exp2f.S (__exp2f): Use exp2 not __exp2 as
19337 second argument to libm_alias_float_other.
19338 * sysdeps/ia64/fpu/e_log2f.S (__log2f): Use log2 not __log2 as
19339 second argument to libm_alias_float_other.
19340 * sysdeps/ia64/fpu/e_powf.S (__powf): Use pow not __pow as second
19341 argument to libm_alias_float_other.
19344 * math/s_cacosh_template.c (M_DECL_FUNC (__cacosh)): Use pi/2 for
19345 real part of result for argument 0 + i * NaN.
19346 * math/libm-test-cacosh.inc (cacosh_test_data): Update expected
19347 results for tests of 0 + i * NaN.
19349 2017-12-06 Adhemerval Zanella <adhemerval.zanella@linaro.org>
19351 * sysdeps/alpha/fpu/libm-test-ulps: Update.
19353 2017-12-06 David S. Miller <davem@davemloft.net>
19355 * sysdeps/sparc/fpu/libm-test-ulps: Update
19356 exp_{downward,towardzero,upward} ulps.
19358 2017-12-06 Joseph Myers <joseph@codesourcery.com>
19360 * sysdeps/ieee754/ldbl-96/e_j1l.c (qone): Don't make local
19363 * sysdeps/ieee754/ldbl-128/e_j0l.c (Y0_2N): Make const.
19365 * sysdeps/ieee754/ldbl-128/e_j1l.c (Y0_2N): Likewise.
19367 * sysdeps/ieee754/ldbl-128ibm/e_j0l.c (Y0_2N): Likewise.
19369 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c (Y0_2N): Likewise.
19372 2017-12-06 Mike FABIAN <mfabian@redhat.com>
19375 * localedata/Makefile: Add hsb_DE.UTF-8 to test-input
19376 and to the list of locales to be built for testing.
19377 * localedata/hsb_DE.UTF-8.in: New file for testing the collation.
19378 * localedata/locales/hsb_DE (LC_COLLATE): Use “copy "iso14651_t1"”
19379 and build the collation rules upon that.
19381 2017-12-06 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
19383 * NEWS: Add sinf to list of optimized functions.
19385 2017-12-06 Joseph Myers <joseph@codesourcery.com>
19387 * bits/floatn-common.h (__HAVE_FLOAT64): Define to 1.
19388 (__HAVE_FLOAT32X): Likewise.
19389 * manual/math.texi (Mathematics): Document support for _Float64
19391 * math/Makefile (test-types): Add float64 and float32x.
19392 * math/Versions (GLIBC_2.27): Add _Float64 and _Float32x
19394 * stdlib/Versions (GLIBC_2.27): Likewise.
19395 * wcsmbs/Versions (GLIBC_2.27): Likewise.
19396 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Update.
19397 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
19398 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
19399 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
19400 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
19401 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
19402 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
19403 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
19404 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
19405 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
19406 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
19407 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
19408 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
19409 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
19410 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
19411 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
19412 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
19413 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
19414 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
19415 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
19416 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist:
19418 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
19419 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
19420 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
19421 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
19422 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
19423 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
19425 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist:
19427 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
19429 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
19431 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist:
19433 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist:
19435 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
19437 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist:
19439 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
19440 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
19441 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
19442 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
19443 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
19444 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
19445 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
19446 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
19447 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
19448 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
19449 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist:
19451 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist:
19453 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist:
19455 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist:
19457 * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: Likewise.
19458 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
19459 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
19460 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
19461 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
19462 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
19463 * sysdeps/i386/fpu/libm-test-ulps: Likewise.
19464 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
19466 2017-12-05 Joseph Myers <joseph@codesourcery.com>
19468 * bits/floatn-common.h: Include <bits/long-double.h>.
19469 [__HAVE_FLOAT64 && (!__GNUC_PREREQ (7, 0) || defined __cplusplus)
19470 && __NO_LONG_DOUBLE_MATH] (__f64): Use suffix 'l'.
19471 [__HAVE_FLOAT64 && (!__GNUC_PREREQ (7, 0) || defined __cplusplus)
19472 && __NO_LONG_DOUBLE_MATH] (__CFLOAT64): Use _Complex long double.
19473 [__HAVE_FLOAT64 && (!__GNUC_PREREQ (7, 0) || defined __cplusplus)
19474 && __NO_LONG_DOUBLE_MATH] (_Float64): Use long double.
19475 [__HAVE_FLOAT64 && !__GNUC_PREREQ (7, 0) && __NO_LONG_DOUBLE_MATH]
19476 (__builtin_huge_valf64): Use __builtin_huge_vall.
19477 [__HAVE_FLOAT64 && !__GNUC_PREREQ (7, 0) && __NO_LONG_DOUBLE_MATH]
19478 (__builtin_inff64): Use __builtin_infl.
19479 [__HAVE_FLOAT64 && !__GNUC_PREREQ (7, 0) && __NO_LONG_DOUBLE_MATH]
19480 (__builtin_nanf64): Use __builtin_nanl.
19481 [__HAVE_FLOAT64 && !__GNUC_PREREQ (7, 0) && __NO_LONG_DOUBLE_MATH]
19482 (__builtin_nansf64): Use __builtin_nansl.
19484 2017-12-05 Rogerio A. Cardoso <rcardoso@linux.vnet.ibm.com>
19485 Paul E. Murphy <murphyp@linux.vnet.ibm.com>
19486 Carlos O'Donnell <carlos@redhat.com>
19488 * elf/dl-tunables.list: Add elision parameters.
19489 * manual/tunables.texi: Add entries about elision tunable.
19490 * sysdeps/unix/sysv/linux/powerpc/elision-conf.c:
19491 Add callback functions to dynamically enable/disable elision.
19492 Add multiple callbacks functions to set elision parameters.
19493 Deleted __libc_enable_secure check.
19494 * sysdeps/unix/sysv/linux/s390/elision-conf.c: Likewise.
19495 * sysdeps/unix/sysv/linux/x86/elision-conf.c: Likewise.
19496 * configure: Regenerated.
19497 * configure.ac: Option enable_lock_elision was deleted.
19498 * config.h.in: ENABLE_LOCK_ELISION flag was deleted.
19499 * config.make.in: Remove references to enable_lock_elision.
19500 * manual/install.texi: Elision configure option was removed.
19501 * INSTALL: Regenerated to remove enable_lock_elision.
19503 Disable elision so it can verify error case for destroying a mutex.
19504 * sysdeps/powerpc/nptl/elide.h:
19505 Cleanup ENABLE_LOCK_ELISION check.
19506 Deleted macros for the case when ENABLE_LOCK_ELISION was not defined.
19507 * sysdeps/s390/configure: Regenerated.
19508 * sysdeps/s390/configure.ac: Remove references to enable_lock_elision..
19509 * nptl/tst-mutex8.c:
19510 Deleted all #ifndef ENABLE_LOCK_ELISION from the test.
19511 * sysdeps/powerpc/powerpc32/sysdep.h:
19512 Deleted all ENABLE_LOCK_ELISION checks.
19513 * sysdeps/powerpc/powerpc64/sysdep.h: Likewise.
19514 * sysdeps/powerpc/sysdep.h: Likewise.
19515 * sysdeps/s390/nptl/bits/pthreadtypes-arch.h: Likewise.
19516 * sysdeps/unix/sysv/linux/powerpc/force-elision.h: Likewise.
19517 * sysdeps/unix/sysv/linux/s390/elision-conf.h: Likewise.
19518 * sysdeps/unix/sysv/linux/s390/force-elision.h: Likewise.
19519 * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
19520 * sysdeps/unix/sysv/linux/s390/Makefile: Remove references to
19521 enable-lock-elision.
19523 2017-12-05 Joseph Myers <joseph@codesourcery.com>
19525 * stdlib/strtod.c: Include <bits/floatn.h>.
19526 (BUILD_DOUBLE): New macro.
19527 [BUILD_DOUBLE && __HAVE_FLOAT64 && !__HAVE_DISTINCT_FLOAT64]
19528 (strtof64): Define and later undefine as macro. Define as weak
19529 alias if [!USE_WIDE_CHAR].
19530 [BUILD_DOUBLE && __HAVE_FLOAT64 && !__HAVE_DISTINCT_FLOAT64]
19531 (wcstof64): Define and later undefine as macro. Define as weak
19532 alias if [USE_WIDE_CHAR].
19533 [BUILD_DOUBLE && __HAVE_FLOAT32X && !__HAVE_DISTINCT_FLOAT32X]
19534 (strtof32x): Define and later undefine as macro. Define as weak
19535 alias if [!USE_WIDE_CHAR].
19536 [BUILD_DOUBLE && __HAVE_FLOAT32X && !__HAVE_DISTINCT_FLOAT32X]
19537 (wcstof32x): Define and later undefine as macro. Define as weak
19538 alias if [USE_WIDE_CHAR].
19539 * stdlib/strtod_l.c: Include <bits/floatn.h>.
19540 (BUILD_DOUBLE): New macro.
19541 [BUILD_DOUBLE && __HAVE_FLOAT64 && !__HAVE_DISTINCT_FLOAT64]
19542 (strtof64_l): Define and later undefine as macro. Define as weak
19543 alias if [!USE_WIDE_CHAR].
19544 [BUILD_DOUBLE && __HAVE_FLOAT64 && !__HAVE_DISTINCT_FLOAT64]
19545 (wcstof64_l): Define and later undefine as macro. Define as weak
19546 alias if [USE_WIDE_CHAR].
19547 [BUILD_DOUBLE && __HAVE_FLOAT32X && !__HAVE_DISTINCT_FLOAT32X]
19548 (strtof32x_l): Define and later undefine as macro. Define as weak
19549 alias if [!USE_WIDE_CHAR].
19550 [BUILD_DOUBLE && __HAVE_FLOAT32X && !__HAVE_DISTINCT_FLOAT32X]
19551 (wcstof32x_l): Define and later undefine as macro. Define as weak
19552 alias if [USE_WIDE_CHAR].
19554 2017-12-05 Adhemerval Zanella <adhemerval.zanella@linaro.org>
19556 * sysdeps/ieee754/flt-32/s_sinf.c (ones): Define as double.
19557 (reduced): Use ones as double instead of integer.
19559 2017-12-05 Szabolcs Nagy <szabolcs.nagy@arm.com>
19561 * sysdeps/ieee754/flt-32/s_sinf.c (sinf): Use isless.
19563 2017-12-05 Joseph Myers <joseph@codesourcery.com>
19565 * stdlib/strfromd.c: Include <bits/floatn.h>.
19566 [__HAVE_FLOAT64 && !__HAVE_DISTINCT_FLOAT64] (strfromf64): Define
19567 and later undefine as macro and define as weak alias.
19568 [__HAVE_FLOAT32X && !__HAVE_DISTINCT_FLOAT32X] (strfromf32x):
19571 * math/test-float32x.h: New file.
19572 * math/test-float64.h: Likewise.
19574 * sysdeps/generic/libm-alias-double.h: Include <bits/floatn.h>.
19575 (libm_alias_double_other_r_f64): New macro.
19576 (libm_alias_double_other_r_f32x): Likewise.
19577 (libm_alias_double_other_r): Use libm_alias_double_other_r_f64 and
19578 libm_alias_double_other_r_f32x.
19579 (libm_alias_double_r): Use semicolon before call to
19580 libm_alias_double_other_r.
19581 * sysdeps/ieee754/ldbl-opt/libm-alias-double.h: Include
19583 (libm_alias_double_other_r_f64): New macro.
19584 (libm_alias_double_other_r_f32x): Likewise.
19585 (libm_alias_double_other_r): Use libm_alias_double_other_r_f64 and
19586 libm_alias_double_other_r_f32x.
19588 2017-12-05 H.J. Lu <hongjiu.lu@intel.com>
19590 * sysdeps/ieee754/flt-32/s_sinf.c (reduced): Replace long with
19592 (SINF_FUNC): Likewise. Replace floor with simple casts.
19594 2017-12-05 Mike FABIAN <mfabian@redhat.com>
19597 * localedata/Makefile: Add et_EE.UTF-8 to test-input
19598 and to the list of locales to be built for testing.
19599 * localedata/et_EE.UTF-8.in: New file for testing the collation.
19600 * localedata/locales/et_EE (LC_COLLATE): Use “copy "iso14651_t1"”
19601 and build the collation rules upon that.
19603 2017-12-05 Chris Metcalf <cmetcalf@mellanox.com>
19605 * sysdeps/tile/tilegx/string-endian.h (VECOP): Provide working
19606 replacements for __insn_xxx builtins for v1cmpeq, v1cmpltu,
19607 v1cmpne, v1add, v1shru, v1shl (register and immediate versions).
19608 * sysdeps/tile/tilegx/memchr.c (__memchr): Use VECOP function
19609 instead of __insn__xxx.
19610 * sysdeps/tile/tilegx/rawmemchr.c (__rawmemchr): Likewise.
19611 * sysdeps/tile/tilegx/strstr.c (strcasechr): Likewise.
19612 * sysdeps/tile/tilegx/strrchr.c (strrchr): Likewise.
19613 * sysdeps/tile/tilegx/strlen.c (strlen): Likewise.
19614 * sysdeps/tile/tilegx/strchrnul.c (__strchrnul): Likewise.
19615 * sysdeps/tile/tilegx/strchr.c (strchr): Likewise.
19617 2017-12-05 Florian Weimer <fweimer@redhat.com>
19619 Linux: Implement interfaces for memory protection keys
19620 * support/Makefile (libsupport-routines): Add xraise, xsigaction,
19622 * support/xsignal.h (xraise, xsignal, xsigaction): Declare.
19623 * support/xunistd.h (xsysconf): Declare.
19624 * support/xraise.c: New file.
19625 * support/xsigaction.c: Likewise.
19626 * support/xsignal.c: Likewise.
19627 * support/xsysconf.c: Likewise.
19628 * sysdeps/unix/sysv/linux/Makefile [misc] (routines): Add
19629 pkey_set, pkey_get, pkey_mprotect.
19630 [misc] (tests): Add tst-pkey.
19631 (tst-pkey): Link with -lpthread.
19632 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.27): Add pkey_alloc,
19633 pkey_free, pkey_set, pkey_get, pkey_mprotect.
19634 * sysdeps/unix/sysv/linux/bits/mman-linux.h (PKEY_DISABLE_ACCESS)
19635 (PKEY_DISABLE_WRITE): Define.
19636 (pkey_alloc, pkey_free, pkey_set, pkey_get, pkey_mprotect):
19638 * sysdeps/unix/sysv/linux/bits/siginfo-consts.h (SEGV_BNDERR)
19639 (SEGV_PKUERR): Add.
19640 * sysdeps/unix/sysv/linux/pkey_get.c: New file.
19641 * sysdeps/unix/sysv/linux/pkey_set.c: Likewise.
19642 * sysdeps/unix/sysv/linux/pkey_mprotect.c: Likewise.
19643 * sysdeps/unix/sysv/linux/syscalls.list (pkey_alloc, pkey_free):
19645 * sysdeps/unix/sysv/linux/tst-pkey.c: New file.
19646 * sysdeps/unix/sysv/linux/x86/arch-pkey.h: Likewise.
19647 * sysdeps/unix/sysv/linux/x86/pkey_get.c: Likewise.
19648 * sysdeps/unix/sysv/linux/x86/pkey_set.c: Likewise.
19649 * sysdeps/unix/sysv/linux/**.abilist: Update.
19651 2017-12-05 Florian Weimer <fweimer@redhat.com>
19653 * support/tst-test_compare.c (subprocess): Use long long instead
19654 of long argument for consistent type width across 32-bit and
19655 64-bit architectures.
19656 (do_test): Adjust expected output.
19658 2017-12-05 Joseph Myers <joseph@codesourcery.com>
19660 * sysdeps/powerpc/fpu/s_cosf.c: Include <libm-alias-float.h>.
19661 (cosf): Define using libm_alias_float.
19662 * sysdeps/powerpc/fpu/s_fabs.S: Include <libm-alias-float.h>.
19663 (fabsf): Define using libm_alias_float.
19664 * sysdeps/powerpc/fpu/s_fmaf.S: Include <libm-alias-float.h>.
19665 (fmaf): Define using libm_alias_float.
19666 * sysdeps/powerpc/fpu/s_rintf.c: Include <libm-alias-float.h>.
19667 (rintf): Define using libm_alias_float.
19668 * sysdeps/powerpc/fpu/s_sinf.c: Include <libm-alias-float.h>.
19669 (sinf): Define using libm_alias_float.
19670 * sysdeps/powerpc/power5+/fpu/s_modff.c: Include
19671 <libm-alias-float.h>.
19672 (modff): Define using libm_alias_float.
19673 * sysdeps/powerpc/power7/fpu/s_logbf.c: Include
19674 <libm-alias-float.h>.
19675 (logbf): Define using libm_alias_float.
19676 * sysdeps/powerpc/powerpc32/fpu/s_ceilf.S: Include
19677 <libm-alias-float.h>.
19678 (ceilf): Define using libm_alias_float.
19679 * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Include
19680 <libm-alias-float.h>.
19681 (copysignf): Define using libm_alias_float.
19682 * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: Include
19683 <libm-alias-float.h>.
19684 (floorf): Define using libm_alias_float.
19685 * sysdeps/powerpc/powerpc32/fpu/s_llrintf.c: Include
19686 <libm-alias-float.h>.
19687 (llrintf): Define using libm_alias_float.
19688 * sysdeps/powerpc/powerpc32/fpu/s_llroundf.c: Include
19689 <libm-alias-float.h>.
19690 (llroundf): Define using libm_alias_float.
19691 * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: Include
19692 <libm-alias-float.h>.
19693 (lrintf): Define using libm_alias_float.
19694 * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Include
19695 <libm-alias-float.h>.
19696 (lroundf): Define using libm_alias_float.
19697 * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S: Include
19698 <libm-alias-float.h>.
19699 (nearbyintf): Define using libm_alias_float.
19700 * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: Include
19701 <libm-alias-float.h>.
19702 (rintf): Define using libm_alias_float.
19703 * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Include
19704 <libm-alias-float.h>.
19705 (roundf): Define using libm_alias_float.
19706 * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Include
19707 <libm-alias-float.h>.
19708 (truncf): Define using libm_alias_float.
19709 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c:
19710 Include <libm-alias-float.h>.
19711 (ceilf): Define using libm_alias_float.
19712 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c:
19713 Include <libm-alias-float.h>.
19714 (copysignf): Define using libm_alias_float.
19715 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c:
19716 Include <libm-alias-float.h>.
19717 (floorf): Define using libm_alias_float.
19718 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf.c:
19719 Include <libm-alias-float.h>.
19720 (llrintf): Define using libm_alias_float.
19721 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llroundf.c:
19722 Include <libm-alias-float.h>.
19723 (llroundf): Define using libm_alias_float.
19724 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf.c:
19725 Include <libm-alias-float.h>.
19726 (logbf): Define using libm_alias_float.
19727 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrintf.c:
19728 Include <libm-alias-float.h>.
19729 (lrintf): Define using libm_alias_float.
19730 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lroundf.c:
19731 Include <libm-alias-float.h>.
19732 (lroundf): Define using libm_alias_float.
19733 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff.c:
19734 Include <libm-alias-float.h>.
19735 (modff): Define using libm_alias_float.
19736 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c:
19737 Include <libm-alias-float.h>.
19738 (roundf): Define using libm_alias_float.
19739 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c:
19740 Include <libm-alias-float.h>.
19741 (truncf): Define using libm_alias_float.
19742 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Include
19743 <libm-alias-float.h>.
19744 (llrintf): Define using libm_alias_float.
19745 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Include
19746 <libm-alias-float.h>.
19747 (llroundf): Define using libm_alias_float.
19748 * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceilf.S: Include
19749 <libm-alias-float.h>.
19750 (ceilf): Define using libm_alias_float.
19751 * sysdeps/powerpc/powerpc32/power5+/fpu/s_floorf.S: Include
19752 <libm-alias-float.h>.
19753 (floorf): Define using libm_alias_float.
19754 * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Include
19755 <libm-alias-float.h>.
19756 (llroundf): Define using libm_alias_float.
19757 * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Include
19758 <libm-alias-float.h>.
19759 (lroundf): Define using libm_alias_float.
19760 * sysdeps/powerpc/powerpc32/power5+/fpu/s_roundf.S: Include
19761 <libm-alias-float.h>.
19762 (roundf): Define using libm_alias_float.
19763 * sysdeps/powerpc/powerpc32/power5+/fpu/s_truncf.S: Include
19764 <libm-alias-float.h>.
19765 (truncf): Define using libm_alias_float.
19766 * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Include
19767 <libm-alias-float.h>.
19768 (copysignf): Define using libm_alias_float.
19769 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Include
19770 <libm-alias-float.h>.
19771 (llrintf): Define using libm_alias_float.
19772 * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Include
19773 <libm-alias-float.h>.
19774 (llroundf): Define using libm_alias_float.
19775 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S: Include
19776 <libm-alias-float.h>.
19777 (lrintf): Define using libm_alias_float.
19778 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: Include
19779 <libm-alias-float.h>.
19780 (lroundf): Define using libm_alias_float.
19781 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c: Include
19782 <libm-alias-float.h>.
19783 (ceilf): Define using libm_alias_float.
19784 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c: Include
19785 <libm-alias-float.h>.
19786 (copysignf): Define using libm_alias_float.
19787 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf.c: Include
19788 <libm-alias-float.h>.
19789 (cosf): Define using libm_alias_float.
19790 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c: Include
19791 <libm-alias-float.h>.
19792 (floorf): Define using libm_alias_float.
19793 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrintf.c: Include
19794 <libm-alias-float.h>.
19795 (llrintf): Define using libm_alias_float.
19796 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llroundf.c: Include
19797 <libm-alias-float.h>.
19798 (llroundf): Define using libm_alias_float.
19799 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf.c: Include
19800 <libm-alias-float.h>.
19801 (logbf): Define using libm_alias_float.
19802 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c: Include
19803 <libm-alias-float.h>.
19804 (modff): Define using libm_alias_float.
19805 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c: Include
19806 <libm-alias-float.h>.
19807 (roundf): Define using libm_alias_float.
19808 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf.c: Include
19809 <libm-alias-float.h>.
19810 (sinf): Define using libm_alias_float.
19811 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c: Include
19812 <libm-alias-float.h>.
19813 (truncf): Define using libm_alias_float.
19814 * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Include
19815 <libm-alias-float.h>.
19816 (ceilf): Define using libm_alias_float.
19817 * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Include
19818 <libm-alias-float.h>.
19819 (copysignf): Define using libm_alias_float.
19820 * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Include
19821 <libm-alias-float.h>.
19822 (floorf): Define using libm_alias_float.
19823 * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Include
19824 <libm-alias-float.h>.
19825 (llrintf): Define using libm_alias_float.
19826 * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: Include
19827 <libm-alias-float.h>.
19828 (llroundf): Define using libm_alias_float.
19829 * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: Include
19830 <libm-alias-float.h>.
19831 (nearbyintf): Define using libm_alias_float.
19832 * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Include
19833 <libm-alias-float.h>.
19834 (rintf): Define using libm_alias_float.
19835 * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Include
19836 <libm-alias-float.h>.
19837 (roundf): Define using libm_alias_float.
19838 * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Include
19839 <libm-alias-float.h>.
19840 (truncf): Define using libm_alias_float.
19841 * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceilf.S: Include
19842 <libm-alias-float.h>.
19843 (ceilf): Define using libm_alias_float.
19844 * sysdeps/powerpc/powerpc64/power5+/fpu/s_floorf.S: Include
19845 <libm-alias-float.h>.
19846 (floorf): Define using libm_alias_float.
19847 * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: Include
19848 <libm-alias-float.h>.
19849 (llroundf): Define using libm_alias_float.
19850 * sysdeps/powerpc/powerpc64/power5+/fpu/s_roundf.S: Include
19851 <libm-alias-float.h>.
19852 (roundf): Define using libm_alias_float.
19853 * sysdeps/powerpc/powerpc64/power5+/fpu/s_truncf.S: Include
19854 <libm-alias-float.h>.
19855 (truncf): Define using libm_alias_float.
19856 * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Include
19857 <libm-alias-float.h>.
19858 (copysignf): Define using libm_alias_float.
19859 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: Include
19860 <libm-alias-float.h>.
19861 (llrintf): Define using libm_alias_float.
19862 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: Include
19863 <libm-alias-float.h>.
19864 (llroundf): Define using libm_alias_float.
19865 * sysdeps/powerpc/powerpc64/power8/fpu/s_cosf.S: Include
19866 <libm-alias-float.h>.
19867 (cosf): Define using libm_alias_float.
19868 * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S: Include
19869 <libm-alias-float.h>.
19870 (llrintf): Define using libm_alias_float.
19871 * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S: Include
19872 <libm-alias-float.h>.
19873 (llroundf): Define using libm_alias_float.
19874 * sysdeps/powerpc/powerpc64/power8/fpu/s_sinf.S: Include
19875 <libm-alias-float.h>.
19876 (sinf): Define using libm_alias_float.
19878 2017-12-04 Florian Weimer <fweimer@redhat.com>
19880 * support/check.h (TEST_COMPARE): Define.
19881 (support_test_compare_failure): Declare.
19882 * support/Makefile (libsupport-routines): Add
19883 support_test_compare_failure.
19884 (tests): Add tst-test_compare.
19885 * support /support_test_compare_failure.c: New file.
19886 * support/tst-test_compare.c: Likewise.
19888 2017-12-04 Mike FABIAN <mfabian@redhat.com>
19891 * localedata/locales/tr_TR (LC_COLLATE): Base collation rules
19892 on iso14651_t1. A test file localedata/tr_TR.UTF-8.in is already
19893 available, this rewrite of the collation rules does reproduce
19894 the test file in the same order.
19896 2017-12-04 Mike FABIAN <mfabian@redhat.com>
19899 * localedata/locales/hr_HR (LC_TIME): Use two letters for the
19900 digraphs in the month and day names. Using single code points for
19901 digraphs is deprecated. While there are dedicated Unicode
19902 codepoints, for the digraphs, these are included for backwards
19903 compatibility and modern texts use a sequence of Basic Latin
19904 characters. See: https://www.unicode.org/faq/ligature_digraph.html
19905 This makes the month and day names agree exactly with CLDR now,
19906 CLDR does not use the single code points for the digraphs either.
19908 2017-12-04 Chris Metcalf <cmetcalf@mellanox.com>
19910 * sysdeps/tile/libm-test-ulps: Update ca{cos,sin,tan}{,h} ulps.
19912 2017-12-04 Joseph Myers <joseph@codesourcery.com>
19914 * sysdeps/ieee754/flt-32/s_sinf.c (SINF_FUNC): Use __floor instead
19917 2017-12-04 Siddhesh Poyarekar <siddhesh@sourceware.org>
19919 * sysdeps/aarch64/multiarch/memcpy_generic.S (__GI_memcpy):
19920 Define only for libc.so.
19922 2017-12-04 Stefan Liebler <stli@linux.vnet.ibm.com>
19924 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
19925 (INTERNAL_VSYSCALL_CALL, CLOBBER_0, CLOBBER_1, CLOBBER_2,
19926 CLOBBER_3, CLOBBER_4, CLOBBER_5, CLOBBER_6,
19927 INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK): Remove.
19928 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
19930 2017-12-04 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
19933 * sysdeps/ieee754/flt-32/s_sinf.c: New implementation.
19935 2017-12-02 John David Anglin <danglin@gcc.gnu.org>
19938 * sysdeps/hppa/crti.S: Declare PREINIT_FUNCTION weak_extern when
19939 PREINIT_FUNCTION_WEAK is nonzero.
19940 (gmon_initializer): New function. Put procedure label for it in
19941 .init_array section.
19942 (_init): Don't call PREINIT_FUNCTION.
19943 * sysdeps/hppa/crtn.S (__gmon_start__): Remove.
19944 * sysdeps/hppa/dl-lookupcfg.h (DL_FIXUP_MAKE_VALUE): Create null fixup
19945 value when map argument is null.
19947 * sysdeps/hppa/dl-fptr.c (elf_machine_resolve): Remove unnecessary
19948 depi instruction from PIC pc-relative sequence.
19949 * sysdeps/hppa/dl-fptr.h (ELF_MACHINE_LOAD_ADDRESS): Likewise.
19950 * sysdeps/hppa/dl-machine.h (elf_machine_dynamic): Likewise.
19951 (elf_machine_load_address): Likewise.
19952 (elf_machine_runtime_setup): Likewise.
19954 2017-12-02 Joseph Myers <joseph@codesourcery.com>
19956 * sysdeps/powerpc/power7/fpu/s_logb.c: Include
19957 <libm-alias-double.h>.
19958 (logb): Define using libm_alias_double.
19959 * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Include
19960 <libm-alias-double.h>.
19961 (copysign): Define using libm_alias_double.
19962 * sysdeps/powerpc/powerpc32/fpu/s_llrint.c: Include
19963 <libm-alias-double.h>.
19964 (llrint): Define using libm_alias_double.
19965 * sysdeps/powerpc/powerpc32/fpu/s_llround.c: Include
19966 <libm-alias-double.h>.
19967 (llround): Define using libm_alias_double.
19968 * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: Include
19969 <libm-alias-double.h>.
19970 (lrint): Define using libm_alias_double.
19971 * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Include
19972 <libm-alias-double.h>.
19973 (lround): Define using libm_alias_double.
19974 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c:
19975 Include <libm-alias-double.h>.
19976 (copysign): Define using libm_alias_double.
19977 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint.c:
19978 Include <libm-alias-double.h>.
19979 (llrint): Define using libm_alias_double.
19980 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround.c:
19981 Include <libm-alias-double.h>.
19982 (llround): Define using libm_alias_double.
19983 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c: Include
19984 <libm-alias-double.h>.
19985 (logb): Define using libm_alias_double.
19986 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint.c:
19987 Include <libm-alias-double.h>.
19988 (lrint): Define using libm_alias_double.
19989 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround.c:
19990 Include <libm-alias-double.h>.
19991 (lround): Define using libm_alias_double.
19992 * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Include
19993 <libm-alias-double.h>.
19994 (llrint): Define using libm_alias_double.
19995 * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Include
19996 <libm-alias-double.h>.
19997 (llround): Define using libm_alias_double.
19998 * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Include
19999 <libm-alias-double.h>.
20000 (llround): Define using libm_alias_double.
20001 * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Include
20002 <libm-alias-double.h>.
20003 (lround): Define using libm_alias_double.
20004 * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Include
20005 <libm-alias-double.h>.
20006 (copysign): Define using libm_alias_double.
20007 * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Include
20008 <libm-alias-double.h>.
20009 (llrint): Define using libm_alias_double.
20010 * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Include
20011 <libm-alias-double.h>.
20012 (llround): Define using libm_alias_double.
20013 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lrint.S: Include
20014 <libm-alias-double.h>.
20015 (lrint): Define using libm_alias_double.
20016 * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: Include
20017 <libm-alias-double.h>.
20018 (lround): Define using libm_alias_double.
20019 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: Include
20020 <libm-alias-double.h>.
20021 (copysign): Define using libm_alias_double.
20022 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c: Include
20023 <libm-alias-double.h>.
20024 (llrint): Define using libm_alias_double.
20026 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c: Include
20027 <libm-alias-double.h>.
20028 (llround): Define using libm_alias_double.
20029 (lround): Likewise.
20030 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c: Include
20031 <libm-alias-double.h>.
20032 (logb): Define using libm_alias_double.
20033 * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Include
20034 <libm-alias-double.h>.
20035 (copysign): Define using libm_alias_double.
20036 * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Include
20037 <libm-alias-double.h>.
20038 (llrint): Define using libm_alias_double.
20040 * sysdeps/powerpc/powerpc64/fpu/s_llround.S: Include
20041 <libm-alias-double.h>.
20042 (llround): Define using libm_alias_double.
20043 (lround): Likewise.
20044 * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: Include
20045 <libm-alias-double.h>.
20046 (llround): Define using libm_alias_double.
20047 (lround): Likewise.
20048 * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Include
20049 <libm-alias-double.h>.
20050 (copysign): Define using libm_alias_double.
20051 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: Include
20052 <libm-alias-double.h>.
20053 (llrint): Define using libm_alias_double.
20055 * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: Include
20056 <libm-alias-double.h>.
20057 (llround): Define using libm_alias_double.
20058 (lround): Likewise.
20059 * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S: Include
20060 <libm-alias-double.h>.
20061 (llrint): Define using libm_alias_double.
20063 * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S: Include
20064 <libm-alias-double.h>.
20065 (llround): Define using libm_alias_double.
20066 (lround): Likewise.
20068 2017-12-01 Joseph Myers <joseph@codesourcery.com>
20070 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c
20071 [LONG_DOUBLE_COMPAT(libm, GLIBC_2_1)] (lroundl): Do not define
20072 compat symbol based on llround.
20074 * sysdeps/powerpc/power7/fpu/s_logb.c
20075 [LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)] (logbl): Define as compat
20076 symbol based on __logb, not on logb.
20077 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c
20078 [LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)] (logbl): Likewise.
20079 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c
20080 [LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)] (logbl): Likewise.
20082 * sysdeps/powerpc/fpu/s_rint.c: Include <libm-alias-double.h>.
20083 (rint): Define using libm_alias_double.
20084 * sysdeps/powerpc/power5+/fpu/s_modf.c: Include
20085 <libm-alias-double.h>.
20086 (modf): Define using libm_alias_double.
20087 * sysdeps/powerpc/powerpc32/fpu/s_ceil.S: Include
20088 <libm-alias-double.h>.
20089 (ceil): Define using libm_alias_double.
20090 * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Include
20091 <libm-alias-double.h>.
20092 (floor): Define using libm_alias_double.
20093 * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S: Include
20094 <libm-alias-double.h>.
20095 (nearbyint): Define using libm_alias_double.
20096 * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Include
20097 <libm-alias-double.h>.
20098 (rint): Define using libm_alias_double.
20099 * sysdeps/powerpc/powerpc32/fpu/s_round.S: Include
20100 <libm-alias-double.h>.
20101 (round): Define using libm_alias_double.
20102 * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Include
20103 <libm-alias-double.h>.
20104 (trunc): Define using libm_alias_double.
20105 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c: Include
20106 <libm-alias-double.h>.
20107 (ceil): Define using libm_alias_double.
20108 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c:
20109 Include <libm-alias-double.h>.
20110 (floor): Define using libm_alias_double.
20111 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c: Include
20112 <libm-alias-double.h>.
20113 (modf): Define using libm_alias_double.
20114 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c:
20115 Include <libm-alias-double.h>.
20116 (round): Define using libm_alias_double.
20117 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c:
20118 Include <libm-alias-double.h>.
20119 (trunc): Define using libm_alias_double.
20120 * sysdeps/powerpc/powerpc32/power5+/fpu/s_ceil.S: Include
20121 <libm-alias-double.h>.
20122 (ceil): Define using libm_alias_double.
20123 * sysdeps/powerpc/powerpc32/power5+/fpu/s_floor.S: Include
20124 <libm-alias-double.h>.
20125 (floor): Define using libm_alias_double.
20126 * sysdeps/powerpc/powerpc32/power5+/fpu/s_round.S: Include
20127 <libm-alias-double.h>.
20128 (round): Define using libm_alias_double.
20129 * sysdeps/powerpc/powerpc32/power5+/fpu/s_trunc.S: Include
20130 <libm-alias-double.h>.
20131 (trunc): Define using libm_alias_double.
20132 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c: Include
20133 <libm-alias-double.h>.
20134 (ceil): Define using libm_alias_double.
20135 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c: Include
20136 <libm-alias-double.h>.
20137 (floor): Define using libm_alias_double.
20138 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: Include
20139 <libm-alias-double.h>.
20140 (modf): Define using libm_alias_double.
20141 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c: Include
20142 <libm-alias-double.h>.
20143 (round): Define using libm_alias_double.
20144 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c: Include
20145 <libm-alias-double.h>.
20146 (trunc): Define using libm_alias_double.
20147 * sysdeps/powerpc/powerpc64/fpu/s_ceil.S: Include
20148 <libm-alias-double.h>.
20149 (ceil): Define using libm_alias_double.
20150 * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Include
20151 <libm-alias-double.h>.
20152 (floor): Define using libm_alias_double.
20153 * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S: Include
20154 <libm-alias-double.h>.
20155 (nearbyint): Define using libm_alias_double.
20156 * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Include
20157 <libm-alias-double.h>.
20158 (rint): Define using libm_alias_double.
20159 * sysdeps/powerpc/powerpc64/fpu/s_round.S: Include
20160 <libm-alias-double.h>.
20161 (round): Define using libm_alias_double.
20162 * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Include
20163 <libm-alias-double.h>.
20164 (trunc): Define using libm_alias_double.
20165 * sysdeps/powerpc/powerpc64/power5+/fpu/s_ceil.S: Include
20166 <libm-alias-double.h>.
20167 (ceil): Define using libm_alias_double.
20168 * sysdeps/powerpc/powerpc64/power5+/fpu/s_floor.S: Include
20169 <libm-alias-double.h>.
20170 (floor): Define using libm_alias_double.
20171 * sysdeps/powerpc/powerpc64/power5+/fpu/s_round.S: Include
20172 <libm-alias-double.h>.
20173 (round): Define using libm_alias_double.
20174 * sysdeps/powerpc/powerpc64/power5+/fpu/s_trunc.S: Include
20175 <libm-alias-double.h>.
20176 (trunc): Define using libm_alias_double.
20178 * sysdeps/powerpc/fpu/s_fabs.S: Include <libm-alias-double.h>.
20179 (fabs): Define using libm_alias_double.
20180 * sysdeps/powerpc/fpu/s_fma.S: Include <libm-alias-double.h>.
20181 (fma): Define using libm_alias_double.
20182 * sysdeps/powerpc/powerpc32/fpu/s_fabs.S: Remove file.
20183 * sysdeps/powerpc/powerpc32/fpu/s_fma.S: Likewise.
20184 * sysdeps/powerpc/powerpc64/fpu/s_fabs.S: Likewise.
20185 * sysdeps/powerpc/powerpc64/fpu/s_fma.S: Likewise.
20187 2017-12-01 Adhemerval Zanella <adhemerval.zanella@linaro.org>
20189 * sysdeps/unix/sysv/linux/x86_64/x32/getcpu.c: Remove file.
20191 * sysdeps/sparc/sparc-ifunc.h (SPARC_ASM_IFUNC_DFLT,
20192 SPARC_ASM_IFUNC1, SPARC_ASM_IFUNC2, SET, SPARC_ASM_VIS2_IFUNC,
20193 SPARC_ASM_VIS3_IFUNC, SPARC_ASM_VIS3_VIS2_IFUNC): Remove macros.
20195 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.c: Fix build
20196 due redirect macro.
20198 2017-12-01 Andreas Schwab <schwab@linux-m68k.org>
20200 * intl/Makefile ($(objpfx)plural.c): Add $(make-target-directory).
20202 2017-12-01 Adhemerval Zanella <adhemerval.zanella@linaro.org>
20204 * sysdeps/sparc/sparc64/cpu_relax.c: New file.
20205 * sysdeps/sparc/sparc32/sparcv9/cpu_relax.c: Likewise.
20206 * sysdeps/sparc/sparc64/cpu_relax.S: Remove file.
20207 * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: Likewise.
20209 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
20210 (libm-sysdep_routines): Add s_nearbyintf-generic and
20211 s_nearbyint-generic.
20212 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint-generic.S:
20214 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.c: Likewise.
20215 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf-generic.S:
20217 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.c:
20219 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.S: Remove
20221 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.S:
20224 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
20225 (libm-sysdep_routines): Add s_rintf-generic and s_rint-generic.
20226 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint-generic.S: New
20228 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.c: Likewise.
20229 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf-generic.S:
20231 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.c: Likewise.
20232 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Remove file.
20233 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: Likewise.
20235 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
20236 (libm-sysdep_routines): Add s_llrintf-generic and s_llrint-generic.
20237 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint-generic.S: New
20239 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.c: Likewise.
20240 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf-generic.S:
20242 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.c: Likewise.
20243 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: Remove file.
20244 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S: Likewise.
20246 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
20247 (libm-sysdep_routines): Add s_fabsf-generic and s_fabs-generic.
20248 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs-generic.S: New
20250 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.c: Likewise.
20251 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf-generic.S:
20253 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.c: Likewise.
20254 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Remove file.
20255 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: Likewise.
20257 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
20258 (sysdep_calls): New rule.
20259 (sysdep_routines): Use sysdep_calls as base.
20260 (libm-sysdep_routines): Add generic rule for symbols shared with
20261 libc. Add s_copysign-generic and s_copysign-generic objects.
20262 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign-generic.S:
20264 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.c: Likewise.
20265 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf-generic.S:
20267 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.c: Likewise.
20268 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S: Remove file.
20269 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S: Likewise.
20271 2017-12-01 Mike FABIAN <mfabian@redhat.com>
20274 * localedata/Makefile: Add is_IS.UTF-8 to test-input and to
20275 the list of locales to be built for testing.
20276 * localedata/is_IS.UTF-8.in: New file.
20277 * localedata/locales/is_IS (LC_COLLATE): Base collation rules
20280 2017-12-01 Joseph Myers <joseph@codesourcery.com>
20282 * sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S: Include
20283 <libm-alias-float.h>.
20284 (fabsf): Define using libm_alias_float.
20286 2017-11-30 H.J. Lu <hongjiu.lu@intel.com>
20288 * sysdeps/mips/dl-machine.h (elf_machine_reloc): Expand MIN.
20290 2017-11-30 Joseph Myers <joseph@codesourcery.com>
20292 * sysdeps/m68k/coldfire/fpu/s_fabsf.c: Include
20293 <libm-alias-float.h>.
20294 (fabsf): Define using libm_alias_float.
20295 * sysdeps/m68k/coldfire/fpu/s_lrintf.c: Include
20296 <libm-alias-float.h>.
20297 (lrintf): Define using libm_alias_float.
20298 * sysdeps/m68k/coldfire/fpu/s_rintf.c: Include
20299 <libm-alias-float.h>.
20300 (rintf): Define using libm_alias_float.
20302 * sysdeps/m68k/coldfire/fpu/s_fabs.c: Include
20303 <libm-alias-double.h>.
20304 (fabs): Define using libm_alias_double.
20305 * sysdeps/m68k/coldfire/fpu/s_lrint.c: Include
20306 <libm-alias-double.h>.
20307 (lrint): Define using libm_alias_double.
20308 * sysdeps/m68k/coldfire/fpu/s_rint.c: Include
20309 <libm-alias-double.h>.
20310 (rint): Define using libm_alias_double.
20312 * sysdeps/m68k/m680x0/fpu/s_atan_template.c: New file.
20313 * sysdeps/m68k/m680x0/fpu/s_ceil_template.c: Likewise.
20314 * sysdeps/m68k/m680x0/fpu/s_cos_template.c: Likewise.
20315 * sysdeps/m68k/m680x0/fpu/s_expm1_template.c: Likewise.
20316 * sysdeps/m68k/m680x0/fpu/s_fabs_template.c: Likewise.
20317 * sysdeps/m68k/m680x0/fpu/s_floor_template.c: Likewise.
20318 * sysdeps/m68k/m680x0/fpu/s_frexp_template.c: Likewise.
20319 * sysdeps/m68k/m680x0/fpu/s_lrint_template.c: Likewise.
20320 * sysdeps/m68k/m680x0/fpu/s_modf_template.c: Likewise.
20321 * sysdeps/m68k/m680x0/fpu/s_nearbyint_template.c: Likewise.
20322 * sysdeps/m68k/m680x0/fpu/s_remquo_template.c: Likewise.
20323 * sysdeps/m68k/m680x0/fpu/s_rint_template.c: Likewise.
20324 * sysdeps/m68k/m680x0/fpu/s_sin_template.c: Likewise.
20325 * sysdeps/m68k/m680x0/fpu/s_sincos_template.c: Likewise.
20326 * sysdeps/m68k/m680x0/fpu/s_tan_template.c: Likewise.
20327 * sysdeps/m68k/m680x0/fpu/s_tanh_template.c: Likewise.
20328 * sysdeps/m68k/m680x0/fpu/s_trunc_template.c: Likewise.
20329 * sysdeps/m68k/m680x0/fpu/s_atan.c: Reimplement to use
20331 * sysdeps/m68k/m680x0/fpu/s_atanf.c: Likewise.
20332 * sysdeps/m68k/m680x0/fpu/s_atanl.c: Likewise.
20333 * sysdeps/m68k/m680x0/fpu/s_ceil.c: Reimplement to use
20335 * sysdeps/m68k/m680x0/fpu/s_ceilf.c: Likewise.
20336 * sysdeps/m68k/m680x0/fpu/s_ceill.c: Likewise.
20337 * sysdeps/m68k/m680x0/fpu/s_cos.c: Reimplement to use
20339 * sysdeps/m68k/m680x0/fpu/s_cosf.c: Likewise.
20340 * sysdeps/m68k/m680x0/fpu/s_cosl.c: Likewise.
20341 * sysdeps/m68k/m680x0/fpu/s_expm1.c: Reimplement to use
20342 s_expm1_template.c.
20343 * sysdeps/m68k/m680x0/fpu/s_expm1f.c: Likewise.
20344 * sysdeps/m68k/m680x0/fpu/s_expm1l.c: Likewise.
20345 * sysdeps/m68k/m680x0/fpu/s_fabs.c: Reimplement to use
20347 * sysdeps/m68k/m680x0/fpu/s_fabsf.c: Likewise.
20348 * sysdeps/m68k/m680x0/fpu/s_fabsl.c: Likewise.
20349 * sysdeps/m68k/m680x0/fpu/s_floor.c: Reimplement to use
20350 s_floor_template.c.
20351 * sysdeps/m68k/m680x0/fpu/s_floorf.c: Likewise.
20352 * sysdeps/m68k/m680x0/fpu/s_floorl.c: Likewise.
20353 * sysdeps/m68k/m680x0/fpu/s_frexp.c: Reimplement to use
20354 s_frexp_template.c.
20355 * sysdeps/m68k/m680x0/fpu/s_frexpf.c: Likewise.
20356 * sysdeps/m68k/m680x0/fpu/s_lrint.c: Reimplement to use
20357 s_lrint_template.c.
20358 * sysdeps/m68k/m680x0/fpu/s_lrintf.c: Likewise.
20359 * sysdeps/m68k/m680x0/fpu/s_lrintl.c: Likewise.
20360 * sysdeps/m68k/m680x0/fpu/s_modf.c: Reimplement to use
20362 * sysdeps/m68k/m680x0/fpu/s_modff.c: Likewise.
20363 * sysdeps/m68k/m680x0/fpu/s_modfl.c: Likewise.
20364 * sysdeps/m68k/m680x0/fpu/s_nearbyint.c: Reimplement to use
20365 s_nearbyint_template.c.
20366 * sysdeps/m68k/m680x0/fpu/s_nearbyintf.c: Likewise.
20367 * sysdeps/m68k/m680x0/fpu/s_nearbyintl.c: Likewise.
20368 * sysdeps/m68k/m680x0/fpu/s_remquo.c: Reimplement to use
20369 s_remquo_template.c.
20370 * sysdeps/m68k/m680x0/fpu/s_remquof.c: Likewise.
20371 * sysdeps/m68k/m680x0/fpu/s_remquol.c: Likewise.
20372 * sysdeps/m68k/m680x0/fpu/s_rint.c: Reimplement to use
20374 * sysdeps/m68k/m680x0/fpu/s_rintf.c: Likewise.
20375 * sysdeps/m68k/m680x0/fpu/s_rintl.c: Likewise.
20376 * sysdeps/m68k/m680x0/fpu/s_sin.c: Reimplement to use
20378 * sysdeps/m68k/m680x0/fpu/s_sinf.c: Likewise.
20379 * sysdeps/m68k/m680x0/fpu/s_sinl.c: Likewise.
20380 * sysdeps/m68k/m680x0/fpu/s_sincos.c: Reimplement to use
20381 s_sincos_template.c.
20382 * sysdeps/m68k/m680x0/fpu/s_sincosf.c: Likewise.
20383 * sysdeps/m68k/m680x0/fpu/s_sincosl.c: Likewise.
20384 * sysdeps/m68k/m680x0/fpu/s_tan.c: Reimplement to use
20386 * sysdeps/m68k/m680x0/fpu/s_tanf.c: Likewise.
20387 * sysdeps/m68k/m680x0/fpu/s_tanl.c: Likewise.
20388 * sysdeps/m68k/m680x0/fpu/s_tanh.c: Reimplement to use
20390 * sysdeps/m68k/m680x0/fpu/s_tanhf.c: Likewise.
20391 * sysdeps/m68k/m680x0/fpu/s_tanhl.c: Likewise.
20392 * sysdeps/m68k/m680x0/fpu/s_trunc.c: Reimplement to use
20393 s_trunc_template.c.
20394 * sysdeps/m68k/m680x0/fpu/s_truncf.c: Likewise.
20395 * sysdeps/m68k/m680x0/fpu/s_truncl.c: Likewise.
20396 * sysdeps/m68k/m680x0/fpu/s_significand.c: Reimplement based on
20397 s_atan.c instead of including s_atan.c.
20398 * sysdeps/m68k/m680x0/fpu/s_significandf.c: Reimplement based on
20399 s_atanf.c instead of including s_atanf.c.
20400 * sysdeps/m68k/m680x0/fpu/s_significandl.c: Reimplement based on
20401 s_atanl.c instead of including s_atanl.c.
20402 * sysdeps/m68k/m680x0/fpu/s_log1p.c: Include s_significand.c
20403 instead of s_atan.c.
20404 * sysdeps/m68k/m680x0/fpu/s_log1pf.c: Include s_significandf.c
20405 instead of s_atanf.c.
20406 * sysdeps/m68k/m680x0/fpu/s_log1pl.c: Include s_significandl.c
20407 instead of s_atanl.c.
20409 * scripts/update-copyrights: Do not handle intl/plural.c
20412 2017-11-30 Juro Bystricky <juro.bystricky@linux.intel.com>
20415 * configure.ac (BISON): Require to be present.
20416 * configure: Regenerated.
20417 * intl/Makefile (generated): Add plural.c.
20418 [$(BISON) != no]: Make code unconditional.
20419 (plural.c): Change rule to $(objpfx)plural.c.
20420 ($(objpfx)plural.o): Depend on $(objpfx)plural.c.
20421 * intl/plural.c: Remove.
20422 * manual/install.texi (Tools for Compilation): Document bison as
20424 * INSTALL: Regenerated.
20426 2017-11-30 Joseph Myers <joseph@codesourcery.com>
20428 * sysdeps/m68k/m680x0/fpu/s_llrint.c: Include
20429 <libm-alias-double.h>.
20430 (llrint): Define using libm_alias_double.
20431 * sysdeps/m68k/m680x0/fpu/s_llrintf.c: Include
20432 <libm-alias-float.h>.
20433 (llrintf): Define using libm_alias_float.
20434 * sysdeps/m68k/m680x0/fpu/s_llrintl.c: Include
20435 <libm-alias-ldouble.h>.
20436 (llrintl): Define using libm_alias_ldouble.
20438 * sysdeps/m68k/m680x0/fpu/s_ccosh_template.c (ccosh): Use
20439 declare_mgen_alias instead of weak_alias.
20440 * sysdeps/m68k/m680x0/fpu/s_cexp_template.c (cexp): Likewise.
20441 * sysdeps/m68k/m680x0/fpu/s_csin_template.c (csin): Likewise.
20442 * sysdeps/m68k/m680x0/fpu/s_csinh_template.c (csinh): Likewise.
20444 2017-11-30 Adhemerval Zanella <adhemerval.zanella@linaro.org>
20446 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines):
20448 * sysdeps/sparc/sparc64/multiarch/add_n-generic.S: New file.
20449 * sysdeps/sparc/sparc64/multiarch/add_n.c: Likewise.
20450 * sysdeps/sparc/sparc64/multiarch/add_n.S: Remove file.
20452 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines):
20453 Add submul_1-generic.
20454 * sysdeps/sparc/sparc64/multiarch/submul_1-generic.S: New file.
20455 * sysdeps/sparc/sparc64/multiarch/submul_1.c: Likewise.
20456 * sysdeps/sparc/sparc64/multiarch/submul_1.S: Remove file.
20458 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines):
20459 Add addmul_1-generic.
20460 * sysdeps/sparc/sparc64/multiarch/addmul_1-generic.S: New file.
20461 * sysdeps/sparc/sparc64/multiarch/addmul_1.c: Likewise.
20462 * sysdeps/sparc/sparc64/multiarch/addmul_1.S: Remove file.
20464 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines):
20466 * sysdeps/sparc/sparc64/multiarch/sub_n-generic.S: New file.
20467 * sysdeps/sparc/sparc64/multiarch/sub_n.c: Likewise.
20468 * sysdeps/sparc/sparc64/multiarch/sub_n.S: Remove file.
20470 * sysdeps/sparc/sparc64/multiarch/Makefile (sysdep_routines):
20472 * sysdeps/sparc/sparc64/multiarch/mul_1-generic.S: New file.
20473 * sysdeps/sparc/sparc64/multiarch/mul_1.c: Likewise.
20474 * sysdeps/sparc/sparc64/multiarch/mul_1.S: Remove file.
20476 2017-11-30 Mike FABIAN <mfabian@redhat.com>
20478 According to CLDR, collation rules for Serbian and Bosnian
20479 should be the same as for Croatian.
20482 * localedata/Makefile: Add sr_RS.UTF-8 and bs_BA.UTF-8 to test-input
20483 and to the list of locales to be built for testing.
20484 * localedata/bs_BA.UTF-8.in: New file (same as hr_HR.UTF-8.in).
20485 * localedata/sr_RS.UTF-8.in: New file (same as hr_HR.UTF-8.in).
20486 * localedata/locales/bs_BA (LC_COLLATE): Use “copy "hr_HR"”.
20487 * localedata/locales/sr_RS (LC_COLLATE): Use “copy "hr_HR"”.
20489 2017-11-30 Mike FABIAN <mfabian@redhat.com>
20491 * localedata/locales/hr_HR (LC_COLLATE): Fix collation
20492 to make test case pass.
20493 * localedata/hr_HR.UTF-8.in: Add more test strings.
20495 2017-11-30 Mike FABIAN <mfabian@redhat.com>
20497 * stdlib/tst-strfmon_l.c: Fix testcase. Needed because of [BZ #10580]
20499 2017-11-30 Dragan Stanojević - Nevidljivi <invisible@hidden-city.net>
20501 * localedata/Makefile: Add hr_HR.UTF-8 to test-input and to
20502 the list of locales to built for testing.
20503 * localedata/hr_HR.UTF-8.in: New file.
20505 2017-11-30 Dragan Stanojević - Nevidljivi <invisible@hidden-city.net>
20508 * localedata/locales/hr_HR (LC_COLLATE): Base collation rules on
20510 * localedata/locales/hr_HR (LC_TIME): Sync month and day names with
20511 CLDR (except use ligatures for the digraphs, CLDR does not use
20512 the ligatures), add first_workday, some fixes in the date and time
20514 * localedata/locales/hr_HR (LC_CTYPE): Add transliteration rules
20516 * localedata/locales/hr_HR (LC_MONETARY): Change currency_symbol to
20517 lower case. p_cs_precedes and n_cs_precedes should be 0 instead of 1.
20518 Add int_p_cs_precedes and int_n_cs_precedes.
20519 * localedata/locales/hr_HR (LC_NUMERIC): Change thousands_sep to
20520 "<U202F>" (NARROW NO-BREAK SPACE) and grouping to 3;3 (Agrees with
20522 * localedata/locales/hr_HR (LC_TELEPHONE): Add tel_dom_fmt.
20523 * localedata/locales/hr_HR (LC_NAME): Add name_mr, name_mrs, and
20525 * localedata/locales/hr_HR (LC_ADDRESS): Add country_post, country_isbn,
20526 and lang_lib. Change postal_fmt.
20528 2017-11-30 H.J. Lu <hongjiu.lu@intel.com>
20530 * debug/longjmp_chk.c: Include <setjmpP.h> instead of
20532 * setjmp/longjmp.c: Include <setjmpP.h> instead of <setjmp.h>.
20533 (__libc_siglongjmp): Cast &env[0].__saved_mask to "sigset_t *".
20534 * setjmp/sigjmp.c: Include <setjmpP.h> instead of <setjmp.h>.
20535 (__sigjmp_save): Cast &env[0].__saved_mask to "sigset_t *".
20536 * sysdeps/generic/setjmpP.h: New file.
20537 * sysdeps/unix/sysv/linux/x86/jmp_buf-ssp.sym: Likewise.
20538 * sysdeps/unix/sysv/linux/x86/setjmpP.h: Likewise.
20539 * sysdeps/unix/sysv/linux/x86/tst-saved_mask-1.c: Likewise.
20540 * sysdeps/unix/sysv/linux/x86/Makefile (gen-as-const-headers):
20541 Add jmp_buf-ssp.sym.
20542 (tests): Add tst-saved_mask-1.
20544 2017-11-30 Arjun Shankar <arjun@redhat.com>
20548 * malloc/malloc.c (__libc_malloc): Use checked_request2size
20549 instead of request2size.
20551 2017-11-30 Joseph Myers <joseph@codesourcery.com>
20553 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S
20554 (__lllrint): Remove alias.
20555 (lllrint): Likewise.
20556 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S
20557 (__lllrintf): Likewise.
20558 (lllrintf): Likewise.
20560 * sysdeps/sparc/sparc32/fpu/s_copysignf.S: Include
20561 <libm-alias-float.h>.
20562 (copysignf): Define using libm_alias_float.
20563 * sysdeps/sparc/sparc32/fpu/s_fabsf.S: Include
20564 <libm-alias-float.h>.
20565 (fabsf): Define using libm_alias_float.
20566 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S:
20567 Include <libm-alias-float.h>.
20568 (copysignf): Define using libm_alias_float.
20569 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: Include
20570 <libm-alias-float.h>.
20571 (fabsf): Define using libm_alias_float.
20572 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf.c: Include
20573 <libm-alias-float.h>.
20574 (fdimf): Define using libm_alias_float.
20575 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf.c: Include
20576 <libm-alias-float.h>.
20577 (fmaf): Define using libm_alias_float.
20578 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S: Include
20579 <libm-alias-float.h>.
20580 (llrintf): Define using libm_alias_float.
20581 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.S:
20582 Include <libm-alias-float.h>.
20583 (nearbyintf): Define using libm_alias_float.
20584 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: Include
20585 <libm-alias-float.h>.
20586 (rintf): Define using libm_alias_float.
20587 * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrintf.S: Include
20588 <libm-alias-float.h>.
20589 (llrintf): Define using libm_alias_float.
20590 * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrintf.S: Include
20591 <libm-alias-float.h>.
20592 (lrintf): Define using libm_alias_float.
20593 * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyintf.S: Include
20594 <libm-alias-float.h>.
20595 (nearbyintf): Define using libm_alias_float.
20596 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: Include
20597 <libm-alias-float.h>.
20598 (rintf): Define using libm_alias_float.
20599 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.c: Include
20600 <libm-alias-float.h>.
20601 (ceilf): Define using libm_alias_float.
20602 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.c: Include
20603 <libm-alias-float.h>.
20604 (floorf): Define using libm_alias_float.
20605 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf.c: Include
20606 <libm-alias-float.h>.
20607 (fmaf): Define using libm_alias_float.
20608 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.c: Include
20609 <libm-alias-float.h>.
20610 (lrintf): Define using libm_alias_float.
20611 (llrintf): Likewise.
20612 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.c: Include
20613 <libm-alias-float.h>.
20614 (nearbyintf): Define using libm_alias_float.
20615 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.c: Include
20616 <libm-alias-float.h>.
20617 (rintf): Define using libm_alias_float.
20618 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.c: Include
20619 <libm-alias-float.h>.
20620 (truncf): Define using libm_alias_float.
20621 * sysdeps/sparc/sparc64/fpu/s_copysignf.S: Include
20622 <libm-alias-float.h>.
20623 (copysignf): Define using libm_alias_float.
20624 * sysdeps/sparc/sparc64/fpu/s_fabsf.c: Include
20625 <libm-alias-float.h>.
20626 (fabsf): Define using libm_alias_float.
20627 * sysdeps/sparc/sparc64/fpu/s_lrintf.S: Include
20628 <libm-alias-float.h>.
20629 (lrintf): Define using libm_alias_float.
20630 (llrintf): Likewise.
20631 * sysdeps/sparc/sparc64/fpu/s_nearbyintf.S: Include
20632 <libm-alias-float.h>.
20633 (nearbyintf): Define using libm_alias_float.
20634 * sysdeps/sparc/sparc64/fpu/s_rintf.S: Include
20635 <libm-alias-float.h>.
20636 (rintf): Define using libm_alias_float.
20638 2017-11-29 Joseph Myers <joseph@codesourcery.com>
20640 * sysdeps/sparc/sparc32/fpu/s_copysign.S: Include
20641 <libm-alias-double.h>.
20642 (copysign): Define using libm_alias_double.
20643 * sysdeps/sparc/sparc32/fpu/s_fabs.S: Include
20644 <libm-alias-double.h>.
20645 (fabs): Define using libm_alias_double.
20646 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S:
20647 Include <libm-alias-double.h>.
20648 (copysign): Define using libm_alias_double.
20649 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Include
20650 <libm-alias-double.h>.
20651 (fabs): Define using libm_alias_double.
20652 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.c: Include
20653 <libm-alias-double.h>.
20654 (fdim): Define using libm_alias_double.
20655 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c: Include
20656 <libm-alias-double.h>.
20657 (fma): Define using libm_alias_double.
20658 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: Include
20659 <libm-alias-double.h>.
20660 (llrint): Define using libm_alias_double.
20661 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.S:
20662 Include <libm-alias-double.h>.
20663 (nearbyint): Define using libm_alias_double.
20664 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Include
20665 <libm-alias-double.h>.
20666 (rint): Define using libm_alias_double.
20667 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S: Include
20668 <libm-alias-double.h>.
20669 (fabs): Define using libm_alias_double.
20670 * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: Include
20671 <libm-alias-double.h>.
20672 (llrint): Define using libm_alias_double.
20673 * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyint.S: Include
20674 <libm-alias-double.h>.
20675 (nearbyint): Define using libm_alias_double.
20676 * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Include
20677 <libm-alias-double.h>.
20678 (rint): Define using libm_alias_double.
20679 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.c: Include
20680 <libm-alias-double.h>.
20681 (ceil): Define using libm_alias_double.
20682 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.c: Include
20683 <libm-alias-double.h>.
20684 (floor): Define using libm_alias_double.
20685 * sysdeps/sparc/sparc64/fpu/multiarch/s_fma.c: Include
20686 <libm-alias-double.h>.
20687 (fma): Define using libm_alias_double.
20688 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.c: Include
20689 <libm-alias-double.h>.
20690 (lrint): Define using libm_alias_double.
20691 (llrint): Likewise.
20692 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.c: Include
20693 <libm-alias-double.h>.
20694 (nearbyint): Define using libm_alias_double.
20695 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.c: Include
20696 <libm-alias-double.h>.
20697 (rint): Define using libm_alias_double.
20698 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.c: Include
20699 <libm-alias-double.h>.
20700 (trunc): Define using libm_alias_double.
20701 * sysdeps/sparc/sparc64/fpu/s_copysign.S: Include
20702 <libm-alias-double.h>.
20703 (copysign): Define using libm_alias_double.
20704 * sysdeps/sparc/sparc64/fpu/s_fabs.c: Include
20705 <libm-alias-double.h>.
20706 (fabs): Define using libm_alias_double.
20707 * sysdeps/sparc/sparc64/fpu/s_lrint.S: Include
20708 <libm-alias-double.h>.
20709 (lrint): Define using libm_alias_double.
20710 (llrint): Likewise.
20711 * sysdeps/sparc/sparc64/fpu/s_nearbyint.S: Include
20712 <libm-alias-double.h>.
20713 (nearbyint): Define using libm_alias_double.
20714 * sysdeps/sparc/sparc64/fpu/s_rint.S: Include
20715 <libm-alias-double.h>.
20716 (rint): Define using libm_alias_double.
20719 * sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S: Include
20721 (fabsl): Define as compat symbol at version GLIBC_2_0 for libm.
20723 * scripts/build-many-glibcs.py (Context.add_all_configs): Add
20724 SPARC --disable-multi-arch glibc variants.
20726 * sysdeps/x86_64/fpu/multiarch/e_exp2f.c: Include
20727 <libm-alias-float.h>.
20728 (exp2f): Define using libm_alias_float, or libm_alias_float_other
20730 * sysdeps/x86_64/fpu/multiarch/e_expf.c: Include
20731 <libm-alias-float.h>.
20732 (exp2f): Define using libm_alias_float, or libm_alias_float_other
20734 * sysdeps/x86_64/fpu/multiarch/e_log2f.c: Include
20735 <libm-alias-float.h>.
20736 (exp2f): Define using libm_alias_float, or libm_alias_float_other
20738 * sysdeps/x86_64/fpu/multiarch/e_logf.c: Include
20739 <libm-alias-float.h>.
20740 (exp2f): Define using libm_alias_float, or libm_alias_float_other
20742 * sysdeps/x86_64/fpu/multiarch/e_powf.c: Include
20743 <libm-alias-float.h>.
20744 (exp2f): Define using libm_alias_float, or libm_alias_float_other
20746 * sysdeps/x86_64/fpu/multiarch/s_ceilf.c: Include
20747 <libm-alias-float.h>.
20748 (ceilf): Define using libm_alias_float.
20749 * sysdeps/x86_64/fpu/multiarch/s_floorf.c: Include
20750 <libm-alias-float.h>.
20751 (floorf): Define using libm_alias_float.
20752 * sysdeps/x86_64/fpu/multiarch/s_fmaf.c: Include
20753 <libm-alias-float.h>.
20754 (fmaf): Define using libm_alias_float.
20755 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.c: Include
20756 <libm-alias-float.h>.
20757 (nearbyintf): Define using libm_alias_float.
20758 * sysdeps/x86_64/fpu/multiarch/s_rintf.c: Include
20759 <libm-alias-float.h>.
20760 (rintf): Define using libm_alias_float.
20761 * sysdeps/x86_64/fpu/multiarch/s_truncf.c: Include
20762 <libm-alias-float.h>.
20763 (truncf): Define using libm_alias_float.
20764 * sysdeps/x86_64/fpu/s_copysignf.S: Include <libm-alias-float.h>.
20765 (copysignf): Define using libm_alias_float.
20766 * sysdeps/x86_64/fpu/s_cosf.S: Include <libm-alias-float.h>.
20767 (cosf): Define using libm_alias_float.
20768 * sysdeps/x86_64/fpu/s_fabsf.c: Include <libm-alias-float.h>.
20769 (fabsf): Define using libm_alias_float.
20770 * sysdeps/x86_64/fpu/s_fmaxf.S: Include <libm-alias-float.h>.
20771 (fmaxf): Define using libm_alias_float.
20772 * sysdeps/x86_64/fpu/s_fminf.S: Include <libm-alias-float.h>.
20773 (fminf): Define using libm_alias_float.
20774 * sysdeps/x86_64/fpu/s_llrintf.S: Include <libm-alias-float.h>.
20775 (llrintf): Define using libm_alias_float.
20776 [!__ILP32__] (lrintf): Likewise.
20777 * sysdeps/x86_64/fpu/s_sincosf.S: Include <libm-alias-float.h>.
20778 (sincosf): Define using libm_alias_float.
20779 * sysdeps/x86_64/fpu/s_sinf.S: Include <libm-alias-float.h>.
20780 (sinf): Define using libm_alias_float.
20781 * sysdeps/x86_64/x32/fpu/s_lrintf.S: Include <libm-alias-float.h>.
20782 (lrintf): Define using libm_alias_float.
20784 * sysdeps/x86_64/fpu/multiarch/s_atan.c: Include
20785 <libm-alias-double.h>.
20786 (atan): Define using libm_alias_double.
20787 * sysdeps/x86_64/fpu/multiarch/s_ceil.c: Include
20788 <libm-alias-double.h>.
20789 (ceil): Define using libm_alias_double.
20790 * sysdeps/x86_64/fpu/multiarch/s_floor.c: Include
20791 <libm-alias-double.h>.
20792 (floor): Define using libm_alias_double.
20793 * sysdeps/x86_64/fpu/multiarch/s_fma.c: Include
20794 <libm-alias-double.h>.
20795 (fma): Define using libm_alias_double.
20796 * sysdeps/x86_64/fpu/multiarch/s_nearbyint.c: Include
20797 <libm-alias-double.h>.
20798 (nearbyint): Define using libm_alias_double.
20799 * sysdeps/x86_64/fpu/multiarch/s_rint.c: Include
20800 <libm-alias-double.h>.
20801 (rint): Define using libm_alias_double.
20802 * sysdeps/x86_64/fpu/multiarch/s_sin.c: Include
20803 <libm-alias-double.h>.
20804 (sin): Define using libm_alias_double.
20806 * sysdeps/x86_64/fpu/multiarch/s_tan.c: Include
20807 <libm-alias-double.h>.
20808 (tan): Define using libm_alias_double.
20809 * sysdeps/x86_64/fpu/multiarch/s_trunc.c: Include
20810 <libm-alias-double.h>.
20811 (trunc): Define using libm_alias_double.
20812 * sysdeps/x86_64/fpu/s_copysign.S: Include <libm-alias-double.h>.
20813 (copysign): Define using libm_alias_double.
20814 * sysdeps/x86_64/fpu/s_fabs.c: Include <libm-alias-double.h>.
20815 (fabs): Define using libm_alias_double.
20816 * sysdeps/x86_64/fpu/s_fmax.S: Include <libm-alias-double.h>.
20817 (fmax): Define using libm_alias_double.
20818 * sysdeps/x86_64/fpu/s_fmin.S: Include <libm-alias-double.h>.
20819 (fmin): Define using libm_alias_double.
20820 * sysdeps/x86_64/fpu/s_llrint.S: Include <libm-alias-double.h>.
20821 (llrint): Define using libm_alias_double.
20822 [!__ILP32__] (lrint): Likewise.
20823 * sysdeps/x86_64/x32/fpu/s_lrint.S: Include <libm-alias-double.h>.
20824 (lrint): Define using libm_alias_double.
20826 2017-11-29 Adhemerval Zanella <adhemerval.zanella@linaro.org>
20828 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile
20829 (libm-sysdep_routines): Add s_rintf-generic and s_rint-generic
20831 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint-generic.S: New file.
20832 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.c: Likewise.
20833 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf-generic.S: Likewise.
20834 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.c: Likewise.
20835 * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: Remove file.
20836 * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: Likewise.
20838 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile
20839 (libm-sysdep_routines): Add s_lrint-generic and s_lrintf-generic
20841 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint-generic.S: New file.
20842 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.c: Likewise.
20843 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf-generic.S: Likewise.
20844 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.c: Likewise.
20845 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: Remove file.
20846 * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: Likewise.
20848 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile
20849 (libm-sysdep_routines): Add s_nearbyint-generic and
20850 s_nearbyintf-generic objects.
20851 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint-generic.S: New file.
20852 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.c: Likewise.
20853 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf-generic.S: Likewise.
20854 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.c: Likewise.
20855 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.S: Remove file.
20856 * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.S: Likewise.
20858 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile (sysdeps_calls):
20859 Add s_finitef-generic and s_finite-generic objects.
20860 * sysdeps/sparc/sparc64/fpu/multiarch/s_finite-generic.S: New file.
20861 * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.c: Likewise.
20862 * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef-generic.S: Likewise.
20863 * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.c: Likewise.
20864 * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: Remove file.
20865 * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: Remove file.
20867 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile (sysdeps_calls):
20868 Add s_isinff-generic and s_isinf-generic objects.
20869 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf-generic.S: New file.
20870 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.c: Likewise.
20871 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff-generic.S: Likewise.
20872 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.c: Likewise.
20873 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: Remove file.
20874 * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: Likewise.
20876 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile (sysdeps_calls):
20877 Add s_isnanf-generic and s_isnan-generic objects.
20878 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan-generic.S: New file.
20879 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf-generic.S: Likewise.
20880 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.c: Likewise.
20881 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.c: Likewise.
20882 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: Remove file.
20883 * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: Likewise.
20885 * sysdeps/sparc/sparc-ifunc.h (sparc_libm_ifunc_redirected): New
20887 * sysdeps/sparc/sparc64/fpu/multiarch/Makefile (sysdep_calls): New
20889 (sysdep_routines): Use sysdep_calls as base.
20890 (libm-sysdep_routines): Add generic rule for symbols shared with
20891 libc. Add s_signbit-generic and s_signbitf-generic objects.
20892 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.c: New file.
20893 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.c: Likewise.
20894 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit-generic.S: Likewise.
20895 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf-generic.S: Likewise.
20896 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: Remove file.
20897 * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: Likewise.
20899 2017-11-29 Joseph Myers <joseph@codesourcery.com>
20901 * sysdeps/ia64/fpu/libm-symbols.h: Include <libm-alias-float.h>.
20902 * sysdeps/ia64/fpu/e_acosf.S (acosf): Use libm_alias_float_other.
20903 * sysdeps/ia64/fpu/e_acoshf.S (acoshf): Likewise.
20904 * sysdeps/ia64/fpu/e_asinf.S (asinf): Likewise.
20905 * sysdeps/ia64/fpu/e_atan2f.S (atan2f): Likewise.
20906 * sysdeps/ia64/fpu/e_atanhf.S (atanhf): Likewise.
20907 * sysdeps/ia64/fpu/e_coshf.S (coshf): Likewise.
20908 * sysdeps/ia64/fpu/e_exp10f.S (exp10f): Likewise.
20909 * sysdeps/ia64/fpu/e_exp2f.S (exp2f): Likewise.
20910 * sysdeps/ia64/fpu/e_expf.S (expf): Likewise.
20911 * sysdeps/ia64/fpu/e_fmodf.S (fmodf): Likewise.
20912 * sysdeps/ia64/fpu/e_hypotf.S (hypotf): Likewise.
20913 * sysdeps/ia64/fpu/e_lgammaf_r.c (lgammaf_r): Define using
20914 libm_alias_float_r.
20915 * sysdeps/ia64/fpu/e_log2f.S (log2f): Use libm_alias_float_other.
20916 * sysdeps/ia64/fpu/e_logf.S (log10f): Likewise.
20918 * sysdeps/ia64/fpu/e_powf.S (powf): Likewise.
20919 * sysdeps/ia64/fpu/e_remainderf.S (remainderf): Likewise.
20920 * sysdeps/ia64/fpu/e_sinhf.S (sinhf): Likewise.
20921 * sysdeps/ia64/fpu/e_sqrtf.S (sqrtf): Likewise.
20922 * sysdeps/ia64/fpu/libm_sincosf.S (sincosf): Likewise.
20923 * sysdeps/ia64/fpu/s_asinhf.S (asinhf): Likewise.
20924 * sysdeps/ia64/fpu/s_atanf.S (atanf): Likewise.
20925 * sysdeps/ia64/fpu/s_cbrtf.S (cbrtf): Likewise.
20926 * sysdeps/ia64/fpu/s_ceilf.S (ceilf): Likewise.
20927 * sysdeps/ia64/fpu/s_copysign.S (copysignf): Define using
20929 * sysdeps/ia64/fpu/s_cosf.S (sinf): Use libm_alias_float_other.
20931 * sysdeps/ia64/fpu/s_erfcf.S (erfcf): Likewise.
20932 * sysdeps/ia64/fpu/s_erff.S (erff): Likewise.
20933 * sysdeps/ia64/fpu/s_expm1f.S (expm1f): Likewise.
20934 * sysdeps/ia64/fpu/s_fabsf.S (fabsf): Likewise.
20935 * sysdeps/ia64/fpu/s_fdimf.S (fdimf): Likewise.
20936 * sysdeps/ia64/fpu/s_floorf.S (floorf): Likewise.
20937 * sysdeps/ia64/fpu/s_fmaf.S (fmaf): Likewise.
20938 * sysdeps/ia64/fpu/s_fmaxf.S (fmaxf): Likewise.
20939 * sysdeps/ia64/fpu/s_frexpf.c (frexpf): Likewise.
20940 * sysdeps/ia64/fpu/s_ldexpf.c (ldexpf): Likewise.
20941 * sysdeps/ia64/fpu/s_log1pf.S (log1pf): Likewise.
20942 * sysdeps/ia64/fpu/s_logbf.S (logbf): Likewise.
20943 * sysdeps/ia64/fpu/s_modff.S (modff): Likewise.
20944 * sysdeps/ia64/fpu/s_nearbyintf.S (nearbyintf): Likewise.
20945 * sysdeps/ia64/fpu/s_nextafterf.S (nextafterf): Likewise.
20946 * sysdeps/ia64/fpu/s_rintf.S (rintf): Likewise.
20947 * sysdeps/ia64/fpu/s_roundf.S (roundf): Likewise.
20948 * sysdeps/ia64/fpu/s_scalblnf.c (scalblnf): Likewise.
20949 * sysdeps/ia64/fpu/s_scalbnf.c (scalbnf): Define using
20951 * sysdeps/ia64/fpu/s_tanf.S (tanf): Use libm_alias_float_other.
20952 * sysdeps/ia64/fpu/s_tanhf.S (tanhf): Likewise.
20953 * sysdeps/ia64/fpu/s_truncf.S (truncf): Likewise.
20954 * sysdeps/ia64/fpu/w_lgammaf_main.c
20955 [BUILD_LGAMMA && !USE_AS_COMPAT] (lgammaf): Likewise.
20956 * sysdeps/ia64/fpu/w_tgammaf_compat.S (tgammaf): Likewise.
20958 2017-11-28 Mike FABIAN <mfabian@redhat.com>
20959 Alexandre Oliva <aoliva@redhat.com>
20962 * Makefile: add fr_CA.UTF-8 to test-input and LOCALES.
20963 * localedata/fr_CA.UTF-8.in: New file with test data for backward
20965 * localedata/fr_FR.UTF-8.in: Fix test data for forward accents
20967 * localedata/locales/cs_CZ (LC_COLLATE): Remove “define DIACRIT_FORWARD”
20968 * localedata/locales/de_DE (LC_COLLATE): Likewise.
20969 * localedata/locales/hu_HU (LC_COLLATE): Likewise.
20970 * localedata/locales/lb_LU (LC_COLLATE): Likewise.
20971 * localedata/locales/yuw_PG (LC_COLLATE): Likewise.
20972 * localedata/locales/fr_CA (LC_COLLATE): Add “define DIACRIT_BACKWARD”
20973 * localedata/locales/iso14651_t1_common: Use “ifdef DIACRIT_FORWARD”
20974 instead of “ifdef DIACRIT_BACKWARD”.
20976 2017-11-29 Adhemerval Zanella <adhemerval.zanella@linaro.org>
20978 * config.h.in (HAVE_AS_VIS3_SUPPORT): Remove check for VIS3 support.
20979 * sysdeps/sparc/configure.ac (HAVE_AS_VIS3_SUPPORT): Likewise.
20980 * sysdeps//sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.c: Likewise.
20981 * sysdeps//sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf.c: Likewise.
20982 * sysdeps//sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c: Likewise.
20983 * sysdeps//sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf.c: Likewise.
20984 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.c: Likewise.
20985 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.c: Likewise.
20986 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.c: Likewise.
20987 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.c: Likewise.
20988 * sysdeps/sparc/sparc64/fpu/multiarch/s_fma.c: Likewise.
20989 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf.c: Likewise.
20990 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.c: Likewise.
20991 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.c: Likewise.
20992 * sysdeps/sparc/sparc-ifunc.h [!HAVE_AS_VIS3_SUPPORT]
20993 (SPARC_ASM_VIS3_IFUNC, SPARC_ASM_VIS3_VIS2_IFUNC): Remove macros.
20994 * sysdeps/sparc/sparc32/sparcv9/Makefile [$(have-as-vis3) != yes]
20995 (ASFLAGS.o, ASFLAGS-.os, ASFLAGS-.op, ASFLAGS-.oS): Remove rules.
20996 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile
20997 ($(have-as-vis3) == yes): Remove conditional.
20998 * sysdeps/sparc/sparc64/Makefile (($(have-as-vis3) == yes)):
21000 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-generic.c: New
21002 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf-generic.c: New
21004 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma-generic.c: New
21006 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf-generic.c: New
21008 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-generic.c: New file.
21009 * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-generic.c: New file.
21010 * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-generic.c: New file.
21011 * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-generic.c: New file.
21012 * sysdeps/sparc/sparc64/fpu/multiarch/s_fma-generic.c: New file.
21013 * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf-generic.c: New file.
21014 * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc-generic.c: New file.
21015 * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf-generic.c: New file.
21017 2017-11-29 Joseph Myers <joseph@codesourcery.com>
21019 * sysdeps/ia64/fpu/libm-symbols.h: Include <libm-alias-double.h>.
21020 * sysdeps/ia64/fpu/e_acos.S (acos): Use libm_alias_double_other.
21021 * sysdeps/ia64/fpu/e_acosh.S (acosh): Likewise.
21022 * sysdeps/ia64/fpu/e_asin.S (asin): Likewise.
21023 * sysdeps/ia64/fpu/e_atan2.S (atan2): Likewise.
21024 * sysdeps/ia64/fpu/e_atanh.S (atanh): Likewise.
21025 * sysdeps/ia64/fpu/e_cosh.S (cosh): Likewise.
21026 * sysdeps/ia64/fpu/e_exp.S (exp): Likewise.
21027 * sysdeps/ia64/fpu/e_exp10.S (exp10): Likewise.
21028 * sysdeps/ia64/fpu/e_exp2.S (exp2): Likewise.
21029 * sysdeps/ia64/fpu/e_fmod.S (fmod): Likewise.
21030 * sysdeps/ia64/fpu/e_hypot.S (hypot): Likewise.
21031 * sysdeps/ia64/fpu/e_lgamma_r.c (lgamma_r): Define using
21032 libm_alias_double_r.
21033 * sysdeps/ia64/fpu/e_log.S (log10): Use libm_alias_double_other.
21035 * sysdeps/ia64/fpu/e_log2.S (log2): Likewise.
21036 * sysdeps/ia64/fpu/e_pow.S (pow): Likewise.
21037 * sysdeps/ia64/fpu/e_remainder.S (remainder): Likewise.
21038 * sysdeps/ia64/fpu/e_sinh.S (sinh): Likewise.
21039 * sysdeps/ia64/fpu/e_sqrt.S (sqrt): Likewise.
21040 * sysdeps/ia64/fpu/libm_sincos.S (sincos): Likewise.
21041 * sysdeps/ia64/fpu/s_asinh.S (asinh): Likewise.
21042 * sysdeps/ia64/fpu/s_atan.S (atan): Likewise.
21043 * sysdeps/ia64/fpu/s_cbrt.S (cbrt): Likewise.
21044 * sysdeps/ia64/fpu/s_ceil.S (ceil): Likewise.
21045 * sysdeps/ia64/fpu/s_copysign.S (copysign): Define using
21047 * sysdeps/ia64/fpu/s_cos.S (sin): Use libm_alias_double_other.
21049 * sysdeps/ia64/fpu/s_erf.S (erf): Likewise.
21050 * sysdeps/ia64/fpu/s_erfc.S (erfc): Likewise.
21051 * sysdeps/ia64/fpu/s_expm1.S (expm1): Likewise.
21052 * sysdeps/ia64/fpu/s_fabs.S (fabs): Likewise.
21053 * sysdeps/ia64/fpu/s_fdim.S (fdim): Likewise.
21054 * sysdeps/ia64/fpu/s_floor.S (floor): Likewise.
21055 * sysdeps/ia64/fpu/s_fma.S (fma): Likewise.
21056 * sysdeps/ia64/fpu/s_fmax.S (fmax): Likewise.
21057 * sysdeps/ia64/fpu/s_frexp.c (frexp): Likewise.
21058 * sysdeps/ia64/fpu/s_ldexp.c (ldexp): Likewise.
21059 * sysdeps/ia64/fpu/s_log1p.S (log1p): Likewise.
21060 * sysdeps/ia64/fpu/s_logb.S (logb): Likewise.
21061 * sysdeps/ia64/fpu/s_modf.S (modf): Likewise.
21062 * sysdeps/ia64/fpu/s_nearbyint.S (nearbyint): Likewise.
21063 * sysdeps/ia64/fpu/s_nextafter.S (nextafter): Likewise.
21064 * sysdeps/ia64/fpu/s_rint.S (rint): Likewise.
21065 * sysdeps/ia64/fpu/s_round.S (round): Likewise.
21066 * sysdeps/ia64/fpu/s_scalbn.c (scalbn): Define using
21068 * sysdeps/ia64/fpu/s_tan.S (tan): Use libm_alias_double_other.
21069 * sysdeps/ia64/fpu/s_tanh.S (tanh): Likewise.
21070 * sysdeps/ia64/fpu/s_trunc.S (trunc): Likewise.
21071 * sysdeps/ia64/fpu/w_lgamma_main.c
21072 [BUILD_LGAMMA && !USE_AS_COMPAT] (lgamma): Likewise.
21073 * sysdeps/ia64/fpu/w_tgamma_compat.S (tgamma): Likewise.
21075 2017-11-28 John David Anglin <danglin@gcc.gnu.org>
21077 * sysdeps/hppa/start.S (_start): Check PIC instead of SHARED. Load
21078 address of $global$ into %dp register earlier. Use pc-relative
21079 instruction sequence for PIC case.
21081 2017-11-28 Joseph Myers <joseph@codesourcery.com>
21083 * sysdeps/i386/fpu/s_asinhf.S: Include <libm-alias-float.h>.
21084 (asinhf): Define using libm_alias_float.
21085 * sysdeps/i386/fpu/s_atanf.S: Include <libm-alias-float.h>.
21086 (atanf): Define using libm_alias_float.
21087 * sysdeps/i386/fpu/s_cbrtf.S: Include <libm-alias-float.h>.
21088 (cbrtf): Define using libm_alias_float.
21089 * sysdeps/i386/fpu/s_ceilf.S: Include <libm-alias-float.h>.
21090 (ceilf): Define using libm_alias_float.
21091 * sysdeps/i386/fpu/s_copysignf.S: Include <libm-alias-float.h>.
21092 (copysignf): Define using libm_alias_float.
21093 * sysdeps/i386/fpu/s_expm1f.S: Include <libm-alias-float.h>.
21094 (expm1f): Define using libm_alias_float.
21095 * sysdeps/i386/fpu/s_fabsf.S: Include <libm-alias-float.h>.
21096 (fabsf): Define using libm_alias_float.
21097 * sysdeps/i386/fpu/s_floorf.S: Include <libm-alias-float.h>.
21098 (floorf): Define using libm_alias_float.
21099 * sysdeps/i386/fpu/s_fmaxf.S: Include <libm-alias-float.h>.
21100 (fmaxf): Define using libm_alias_float.
21101 * sysdeps/i386/fpu/s_fminf.S: Include <libm-alias-float.h>.
21102 (fminf): Define using libm_alias_float.
21103 * sysdeps/i386/fpu/s_frexpf.S: Include <libm-alias-float.h>.
21104 (frexpf): Define using libm_alias_float.
21105 * sysdeps/i386/fpu/s_llrintf.S: Include <libm-alias-float.h>.
21106 (llrintf): Define using libm_alias_float.
21107 * sysdeps/i386/fpu/s_logbf.S: Include <libm-alias-float.h>.
21108 (logbf): Define using libm_alias_float.
21109 * sysdeps/i386/fpu/s_lrintf.S: Include <libm-alias-float.h>.
21110 (lrintf): Define using libm_alias_float.
21111 * sysdeps/i386/fpu/s_nearbyintf.S: Include <libm-alias-float.h>.
21112 (nearbyintf): Define using libm_alias_float.
21113 * sysdeps/i386/fpu/s_remquof.S: Include <libm-alias-float.h>.
21114 (remquof): Define using libm_alias_float.
21115 * sysdeps/i386/fpu/s_rintf.S: Include <libm-alias-float.h>.
21116 (rintf): Define using libm_alias_float.
21117 * sysdeps/i386/fpu/s_truncf.S: Include <libm-alias-float.h>.
21118 (truncf): Define using libm_alias_float.
21119 * sysdeps/i386/i686/fpu/multiarch/e_exp2f.c: Include
21120 <libm-alias-float.h>.
21121 (exp2f): Define using libm_alias_float, or libm_alias_float_other
21123 * sysdeps/i386/i686/fpu/multiarch/e_expf.c: Include
21124 <libm-alias-float.h>.
21125 (expf): Define using libm_alias_float, or libm_alias_float_other
21127 * sysdeps/i386/i686/fpu/multiarch/e_log2f.c: Include
21128 <libm-alias-float.h>.
21129 (log2f): Define using libm_alias_float, or libm_alias_float_other
21131 * sysdeps/i386/i686/fpu/multiarch/e_logf.c: Include
21132 <libm-alias-float.h>.
21133 (logf): Define using libm_alias_float, or libm_alias_float_other
21135 * sysdeps/i386/i686/fpu/multiarch/e_powf.c: Include
21136 <libm-alias-float.h>.
21137 (powf): Define using libm_alias_float, or libm_alias_float_other
21139 * sysdeps/i386/i686/fpu/multiarch/s_cosf.c: Include
21140 <libm-alias-float.h>.
21141 (cosf): Define using libm_alias_float.
21142 * sysdeps/i386/i686/fpu/multiarch/s_sincosf.c: Include
21143 <libm-alias-float.h>.
21144 (sincosf): Define using libm_alias_float.
21145 * sysdeps/i386/i686/fpu/multiarch/s_sinf.c: Include
21146 <libm-alias-float.h>.
21147 (sinf): Define using libm_alias_float.
21148 * sysdeps/i386/i686/fpu/s_fmaxf.S: Include <libm-alias-float.h>.
21149 (fmaxf): Define using libm_alias_float.
21150 * sysdeps/i386/i686/fpu/s_fminf.S: Include <libm-alias-float.h>.
21151 (fminf): Define using libm_alias_float.
21152 * sysdeps/i386/i686/multiarch/s_fmaf.c: Include
21153 <libm-alias-float.h>.
21154 (fmaf): Define using libm_alias_float.
21156 * sysdeps/i386/fpu/s_asinh.S: Include <libm-alias-double.h>.
21157 (asinh): Define using libm_alias_double.
21158 * sysdeps/i386/fpu/s_atan.S: Include <libm-alias-double.h>.
21159 (atan): Define using libm_alias_double.
21160 * sysdeps/i386/fpu/s_cbrt.S: Include <libm-alias-double.h>.
21161 (cbrt): Define using libm_alias_double.
21162 * sysdeps/i386/fpu/s_ceil.S: Include <libm-alias-double.h>.
21163 (ceil): Define using libm_alias_double.
21164 * sysdeps/i386/fpu/s_copysign.S: Include <libm-alias-double.h>.
21165 (copysign): Define using libm_alias_double.
21166 * sysdeps/i386/fpu/s_expm1.S: Include <libm-alias-double.h>.
21167 (expm1): Define using libm_alias_double.
21168 * sysdeps/i386/fpu/s_fabs.S: Include <libm-alias-double.h>.
21169 (fabs): Define using libm_alias_double.
21170 * sysdeps/i386/fpu/s_fdim.c: Include <libm-alias-double.h>.
21171 (fdim): Define using libm_alias_double.
21172 * sysdeps/i386/fpu/s_floor.S: Include <libm-alias-double.h>.
21173 (floor): Define using libm_alias_double.
21174 * sysdeps/i386/fpu/s_fmax.S: Include <libm-alias-double.h>.
21175 (fmax): Define using libm_alias_double.
21176 * sysdeps/i386/fpu/s_fmin.S: Include <libm-alias-double.h>.
21177 (fmin): Define using libm_alias_double.
21178 * sysdeps/i386/fpu/s_frexp.S: Include <libm-alias-double.h>.
21179 (frexp): Define using libm_alias_double.
21180 * sysdeps/i386/fpu/s_llrint.S: Include <libm-alias-double.h>.
21181 (llrint): Define using libm_alias_double.
21182 * sysdeps/i386/fpu/s_logb.S: Include <libm-alias-double.h>.
21183 (logb): Define using libm_alias_double.
21184 * sysdeps/i386/fpu/s_lrint.S: Include <libm-alias-double.h>.
21185 (lrint): Define using libm_alias_double.
21186 * sysdeps/i386/fpu/s_nearbyint.S: Include <libm-alias-double.h>.
21187 (nearbyint): Define using libm_alias_double.
21188 * sysdeps/i386/fpu/s_remquo.S: Include <libm-alias-double.h>.
21189 (remquo): Define using libm_alias_double.
21190 * sysdeps/i386/fpu/s_rint.S: Include <libm-alias-double.h>.
21191 (rint): Define using libm_alias_double.
21192 * sysdeps/i386/fpu/s_trunc.S: Include <libm-alias-double.h>.
21193 (trunc): Define using libm_alias_double.
21194 * sysdeps/i386/i686/fpu/s_fmax.S: Include <libm-alias-double.h>.
21195 (fmax): Define using libm_alias_double.
21196 * sysdeps/i386/i686/fpu/s_fmin.S: Include <libm-alias-double.h>.
21197 (fmin): Define using libm_alias_double.
21198 * sysdeps/i386/i686/multiarch/s_fma.c: Include <libm-alias-double.h>.
21199 (fma): Define using libm_alias_double.
21201 2017-11-28 H.J. Lu <hongjiu.lu@intel.com>
21204 * elf/dl-hwcaps.c (ROUND): Removed.
21205 (_dl_important_hwcaps): Replace ROUND with ELF_NOTE_DESC_OFFSET
21206 and ELF_NOTE_NEXT_OFFSET.
21207 * elf/dl-load.c (ROUND): Removed.
21208 (open_verify): Replace ROUND with ELF_NOTE_NEXT_OFFSET.
21209 * elf/readelflib.c (ROUND): Removed.
21210 (process_elf_file): Replace ROUND with ELF_NOTE_NEXT_OFFSET.
21211 * include/elf.h [!_ISOMAC]: Include <libc-pointer-arith.h>.
21212 [!_ISOMAC] (ELF_NOTE_DESC_OFFSET): New.
21213 [!_ISOMAC] (ELF_NOTE_NEXT_OFFSET): Likewise.
21215 2017-11-28 Joseph Myers <joseph@codesourcery.com>
21217 * sysdeps/s390/fpu/s_fmaf.c: Include <libm-alias-float.h>.
21218 [!__fmaf] (fmaf): Define using libm_alias_float.
21220 * sysdeps/s390/fpu/s_fma.c: Include <libm-alias-double.h>.
21221 [!__fma] (fma): Define using libm_alias_double.
21222 * sysdeps/unix/sysv/linux/s390/fpu/s_fma.c: Remove.
21224 2017-11-28 Mike FABIAN <mfabian@redhat.com>
21227 * localedata/locales/cs_CZ (LC_COLLATE): Use “copy "iso14651_t1"”
21228 and implement the collation rules for cs from CLDR on top of that.
21229 * Makefile: Add cs_CZ.UTF-8 to test-input.
21230 * cs_CZ.UTF-8.in: New file with test data to test the Czech sorting.
21232 2017-11-28 Siddhesh Poyarekar <siddhesh@sourceware.org>
21234 * localedata/Makefile (LOCALES): Remove duplicate cs_CZ.UTF-8.
21236 2017-11-28 Victor Rodriguez <victor.rodriguez.bahena@intel.com>
21237 Icarus Sparry <icarus.w.sparry@intel.com>
21239 * benchtests/Makefile:Add BENCHSET to allow subsets of
21240 benchmarks to be run.
21241 * benchtests/README: Add documentation for: Running subsets of
21244 2017-11-28 Victor Rodriguez <victor.rodriguez.bahena@intel.com>
21246 * benchtests/scripts/benchout.schema.json: Fix regex to accept a wider
21247 range of tests names.
21249 * benchtests/scripts/benchout.schema.json: Add throughput as accepted
21250 result from property and remove "max", min" and "mean" from
21251 required properties based on benchtests/bench-skeleton.c.
21253 2017-11-28 Florian Weimer <fweimer@redhat.com>
21256 Turn posix/tst-getaddrinfo4, posix/tst-getaddrinfo5 into xtests
21257 due to Internet requirement.
21258 * posix/Makefile (tests): Remove tst-getaddrinfo4,
21260 (xtests): Add tst-getaddrinfo4, tst-getaddrinfo5.
21262 2017-11-28 Adhemerval Zanella <adhemerval.zanella@linaro.org>
21264 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile
21265 [$(subdir) = string] (sysdep_routines): Add memset-ultra1.
21266 * sysdeps/sparc/sparc64/multiarch/Makefile [$(subdir) = string]
21267 (sysdep_routines): Add memset-ultra1.
21268 * sysdeps/sparc/sparc32/sparcv9/multiarch/memset-ultra1.S: New
21270 * sysdeps/sparc/sparc32/sparcv9/multiarch/memset.c: Likewise.
21271 * sysdeps/sparc/sparc32/sparcv9/multiarch/bzero.c: Likewise.
21272 * sysdeps/sparc/sparc64/multiarch/ifunc-memset.h: Likewise.
21273 * sysdeps/sparc/sparc64/multiarch/memset-ultra1.S: Likewise.
21274 * sysdeps/sparc/sparc64/multiarch/memset.c: Likewise.
21275 * sysdeps/sparc/sparc64/multiarch/bzero.c: Likewise.
21276 * sysdeps/sparc/sparc32/sparcv9/multiarch/memset.S: Remove file.
21277 * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
21279 * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy-ultra1.S: New
21281 * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy.c: Likewise.
21282 * sysdeps/sparc/sparc32/sparcv9/multiarch/mempcpy.c: Likewise.
21283 * sysdeps/sparc/sparc64/multiarch/ifunc-memcpy.h: Likewise.
21284 * sysdeps/sparc/sparc64/multiarch/memcpy-ultra1.S: Likewise.
21285 * sysdeps/sparc/sparc64/multiarch/memcpy.c: Likewise.
21286 * sysdeps/sparc/sparc64/multiarch/mempcpy.c: Likewise.
21287 * sysdeps/sparc/sparc-ifunc.h (sparc_libc_ifunc_redirected): New
21289 * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile
21290 [$(subdir) = string] (sysdep_routines): Add memcpy-ultra1.
21291 * sysdeps/sparc/sparc64/multiarch/Makefile [$(subdir) = string]
21292 (sysdep_routines): Add memcpy-ultra1.
21293 * sysdeps/sparc/sparc64/multiarch/memcpy.S: Remove file.
21294 * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy.S: Likewise.
21296 2017-11-28 Joseph Myers <joseph@codesourcery.com>
21298 * sysdeps/alpha/fpu/cfloat-compat.h: Include <libm-alias-float.h>.
21299 (cfloat_versions): Take function argument without trailing 'f'.
21300 Call libm_alias_float_other.
21301 * sysdeps/alpha/fpu/cabsf.c: Update call to cfloat_versions.
21302 * sysdeps/alpha/fpu/cargf.c: Likewise.
21303 * sysdeps/alpha/fpu/cimagf.c: Likewise.
21304 * sysdeps/alpha/fpu/conjf.c: Likewise.
21305 * sysdeps/alpha/fpu/crealf.c: Likewise.
21306 * sysdeps/alpha/fpu/s_cacosf.c: Likewise.
21307 * sysdeps/alpha/fpu/s_cacoshf.c: Likewise.
21308 * sysdeps/alpha/fpu/s_casinf.c: Likewise.
21309 * sysdeps/alpha/fpu/s_casinhf.c: Likewise.
21310 * sysdeps/alpha/fpu/s_catanf.c: Likewise.
21311 * sysdeps/alpha/fpu/s_catanhf.c: Likewise.
21312 * sysdeps/alpha/fpu/s_ccosf.c: Likewise.
21313 * sysdeps/alpha/fpu/s_ccoshf.c: Likewise.
21314 * sysdeps/alpha/fpu/s_cexpf.c: Likewise.
21315 * sysdeps/alpha/fpu/s_clogf.c: Likewise.
21316 * sysdeps/alpha/fpu/s_cpowf.c: Likewise.
21317 * sysdeps/alpha/fpu/s_cprojf.c: Likewise.
21318 * sysdeps/alpha/fpu/s_csinf.c: Likewise.
21319 * sysdeps/alpha/fpu/s_csinhf.c: Likewise.
21320 * sysdeps/alpha/fpu/s_csqrtf.c: Likewise.
21321 * sysdeps/alpha/fpu/s_ctanf.c: Likewise.
21322 * sysdeps/alpha/fpu/s_ctanhf.c: Likewise.
21323 * sysdeps/alpha/fpu/s_clog10f.c: Include <libm-alias-float.h>.
21324 (clog10f): Use libm_alias_float_other.
21325 * sysdeps/alpha/fpu/s_ceilf.c: Include <libm-alias-float.h>.
21326 (ceilf): Define using libm_alias_float.
21327 * sysdeps/alpha/fpu/s_copysignf.c: Include <libm-alias-float.h>.
21328 (copysignf): Define using libm_alias_float.
21329 * sysdeps/alpha/fpu/s_fabsf.c: Include <libm-alias-float.h>.
21330 (fabsf): Define using libm_alias_float.
21331 * sysdeps/alpha/fpu/s_floorf.c: Include <libm-alias-float.h>.
21332 (floorf): Define using libm_alias_float.
21333 * sysdeps/alpha/fpu/s_fmax.S: Include <libm-alias-float.h>.
21334 (fmaxf): Define using libm_alias_float.
21335 * sysdeps/alpha/fpu/s_fmin.S: Include <libm-alias-float.h>.
21336 (fminf): Define using libm_alias_float.
21337 * sysdeps/alpha/fpu/s_lrintf.c: Include <libm-alias-float.h>.
21338 (lrintf): Define using libm_alias_float.
21339 (llrintf): Likewise.
21340 * sysdeps/alpha/fpu/s_lroundf.c: Include <libm-alias-float.h>.
21341 (lroundf): Define using libm_alias_float.
21342 (llroundf): Likewise.
21343 * sysdeps/alpha/fpu/s_rintf.c: Include <libm-alias-float.h>.
21344 (rintf): Define using libm_alias_float.
21345 * sysdeps/alpha/fpu/s_truncf.c: Include <libm-alias-float.h>.
21346 (truncf): Define using libm_alias_float.
21348 * sysdeps/aarch64/fpu/s_ceilf.c: Include <libm-alias-float.h>.
21349 (ceilf): Define using libm_alias_float.
21350 * sysdeps/aarch64/fpu/s_floorf.c: Include <libm-alias-float.h>.
21351 (floorf): Define using libm_alias_float.
21352 * sysdeps/aarch64/fpu/s_fmaf.c: Include <libm-alias-float.h>.
21353 (fmaf): Define using libm_alias_float.
21354 * sysdeps/aarch64/fpu/s_fmaxf.c: Include <libm-alias-float.h>.
21355 (fmaxf): Define using libm_alias_float.
21356 * sysdeps/aarch64/fpu/s_fminf.c: Include <libm-alias-float.h>.
21357 (fminf): Define using libm_alias_float.
21358 * sysdeps/aarch64/fpu/s_llrintf.c: Include <libm-alias-float.h>.
21359 (llrintf): Define using libm_alias_float.
21360 * sysdeps/aarch64/fpu/s_llroundf.c: Include <libm-alias-float.h>.
21361 (llroundf): Define using libm_alias_float.
21362 * sysdeps/aarch64/fpu/s_lrintf.c: Include <libm-alias-float.h>.
21363 (lrintf): Define using libm_alias_float.
21364 * sysdeps/aarch64/fpu/s_lroundf.c: Include <libm-alias-float.h>.
21365 (lroundf): Define using libm_alias_float.
21366 * sysdeps/aarch64/fpu/s_nearbyintf.c: Include
21367 <libm-alias-float.h>.
21368 (nearbyintf): Define using libm_alias_float.
21369 * sysdeps/aarch64/fpu/s_rintf.c: Include <libm-alias-float.h>.
21370 (rintf): Define using libm_alias_float.
21371 * sysdeps/aarch64/fpu/s_roundf.c: Include <libm-alias-float.h>.
21372 (roundf): Define using libm_alias_float.
21373 * sysdeps/aarch64/fpu/s_truncf.c: Include <libm-alias-float.h>.
21374 (truncf): Define using libm_alias_float.
21376 * sysdeps/alpha/fpu/s_ceil.c: Include <libm-alias-double.h>.
21377 (ceil): Define using libm_alias_double.
21378 * sysdeps/alpha/fpu/s_copysign.c: Include <libm-alias-double.h>.
21379 (copysign): Define using libm_alias_double.
21380 * sysdeps/alpha/fpu/s_fabs.c: Include <libm-alias-double.h>.
21381 (fabs): Define using libm_alias_double.
21382 * sysdeps/alpha/fpu/s_floor.c: Include <libm-alias-double.h>.
21383 (floor): Define using libm_alias_double.
21384 * sysdeps/alpha/fpu/s_fmax.S: Include <libm-alias-double.h>.
21385 (fmax): Define using libm_alias_double.
21386 * sysdeps/alpha/fpu/s_fmin.S: Include <libm-alias-double.h>.
21387 (fmin): Define using libm_alias_double.
21388 * sysdeps/alpha/fpu/s_lrint.c: Include <libm-alias-double.h>.
21389 (lrint): Define using libm_alias_double.
21390 (llrint): Likewise.
21391 * sysdeps/alpha/fpu/s_lround.c: Include <libm-alias-double.h>.
21392 (lround): Define using libm_alias_double.
21393 (llround): Likewise.
21394 * sysdeps/alpha/fpu/s_rint.c: Include <libm-alias-double.h>.
21395 (rint): Define using libm_alias_double.
21396 * sysdeps/alpha/fpu/s_trunc.c: Include <libm-alias-double.h>.
21397 (trunc): Define using libm_alias_double.
21399 * sysdeps/ieee754/ldbl-opt/libm-alias-double.h
21400 (libm_alias_double_r): Add semicolon after weak_alias call.
21402 2017-11-27 Joseph Myers <joseph@codesourcery.com>
21404 * sysdeps/aarch64/fpu/s_ceil.c: Include <libm-alias-double.h>.
21405 (ceil): Define using libm_alias_double.
21406 * sysdeps/aarch64/fpu/s_floor.c: Include <libm-alias-double.h>.
21407 (floor): Define using libm_alias_double.
21408 * sysdeps/aarch64/fpu/s_fma.c: Include <libm-alias-double.h>.
21409 (fma): Define using libm_alias_double.
21410 * sysdeps/aarch64/fpu/s_fmax.c: Include <libm-alias-double.h>.
21411 (fmax): Define using libm_alias_double.
21412 * sysdeps/aarch64/fpu/s_fmin.c: Include <libm-alias-double.h>.
21413 (fmin): Define using libm_alias_double.
21414 * sysdeps/aarch64/fpu/s_llrint.c: Include <libm-alias-double.h>.
21415 (llrint): Define using libm_alias_double.
21416 * sysdeps/aarch64/fpu/s_llround.c: Include <libm-alias-double.h>.
21417 (llround): Define using libm_alias_double.
21418 * sysdeps/aarch64/fpu/s_lrint.c: Include <libm-alias-double.h>.
21419 (lrint): Define using libm_alias_double.
21420 * sysdeps/aarch64/fpu/s_lround.c: Include <libm-alias-double.h>.
21421 (lround): Define using libm_alias_double.
21422 * sysdeps/aarch64/fpu/s_nearbyint.c: Include <libm-alias-double.h>.
21423 (nearbyint): Define using libm_alias_double.
21424 * sysdeps/aarch64/fpu/s_rint.c: Include <libm-alias-double.h>.
21425 (rint): Define using libm_alias_double.
21426 * sysdeps/aarch64/fpu/s_round.c: Include <libm-alias-double.h>.
21427 (round): Define using libm_alias_double.
21428 * sysdeps/aarch64/fpu/s_trunc.c: Include <libm-alias-double.h>.
21429 (trunc): Define using libm_alias_double.
21431 2017-11-27 Florian Weimer <fweimer@redhat.com>
21433 * sysdeps/unix/sysv/linux/mlock2.c: New file.
21434 * sysdeps/unix/sysv/linux/tst-mlock2.c: Likewise.
21435 * sysdeps/unix/sysv/linux/Makefile (routines): Add mlock2.
21436 (tests): Add tst-mlock2.
21437 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.27): Export mlock2.
21438 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_MLOCK2)
21439 [__LINUX_KERNEL_VERSION >= 4.4]: Define.
21440 * sysdeps/unix/sysv/linux/libc**.abilist: Update.
21441 * manual/memory.texi (Page Lock Functions): Move @end deftypefun
21442 for mlock. Document mlock2.
21444 2017-11-27 Joseph Myers <joseph@codesourcery.com>
21446 * sysdeps/ia64/Makeconfig (float64x-alias-fcts): New variable.
21447 * sysdeps/ieee754/float128/Makeconfig (float64x-alias-fcts):
21449 * sysdeps/ieee754/ldbl-128/Makeconfig (float64x-alias-fcts):
21451 * sysdeps/x86/Makeconfig: New file.
21452 * bits/floatn-common.h (__HAVE_FLOAT64X): Remove macro.
21453 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
21454 * bits/floatn.h (__HAVE_FLOAT64X): New macro.
21455 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
21456 * sysdeps/ia64/bits/floatn.h (__HAVE_FLOAT64X): Likewise.
21457 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
21458 * sysdeps/ieee754/ldbl-128/bits/floatn.h (__HAVE_FLOAT64X):
21460 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
21461 * sysdeps/mips/ieee754/bits/floatn.h (__HAVE_FLOAT64X): Likewise.
21462 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
21463 * sysdeps/powerpc/bits/floatn.h (__HAVE_FLOAT64X): Likewise.
21464 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
21465 * sysdeps/x86/bits/floatn.h (__HAVE_FLOAT64X): Likewise.
21466 (__HAVE_FLOAT64X_LONG_DOUBLE): Likewise.
21467 * manual/math.texi (Mathematics): Document support for _Float64x.
21468 * math/Versions (GLIBC_2.27): Add _Float64x functions.
21469 * stdlib/Versions (GLIBC_2.27): Likewise.
21470 * wcsmbs/Versions (GLIBC_2.27): Likewise.
21471 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Update.
21472 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
21473 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
21474 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
21475 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
21476 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
21477 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
21478 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
21479 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
21480 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
21481 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
21482 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist:
21484 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
21486 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
21487 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
21488 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
21489 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
21490 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
21491 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
21492 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
21493 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
21494 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
21495 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
21496 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
21497 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
21498 * sysdeps/i386/fpu/libm-test-ulps: Likewise.
21499 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
21501 2017-11-27 Andreas Schwab <schwab@suse.de>
21503 * elf/Makefile (dl-routines): Add dl-sort-maps.
21504 * elf/dl-sort-maps.c: New file.
21505 * sysdeps/generic/ldsodefs.h (_dl_sort_fini): Don't declare.
21506 (_dl_sort_maps): Declare.
21507 * elf/dl-fini.c (_dl_sort_fini): Remove.
21508 (_dl_fini): Use _dl_sort_maps instead of _dl_sort_fini.
21509 * elf/dl-close.c (_dl_close_worker): Likewise.
21510 * elf/dl-deps.c (_dl_map_object_deps): Use _dl_sort_maps instead of
21512 * elf/dl-open.c (dl_open_worker): Likewise.
21514 2017-11-24 Joseph Myers <joseph@codesourcery.com>
21516 * sysdeps/ieee754/float128/s_fromfpf128.c (fromfpf128): Define
21517 using libm_alias_float128.
21518 * sysdeps/ieee754/float128/s_fromfpxf128.c (fromfpxf128):
21520 * sysdeps/ieee754/float128/s_setpayloadf128.c (setpayloadf128):
21522 * sysdeps/ieee754/float128/s_setpayloadsigf128.c
21523 (setpayloadsigf128): Likewise.
21524 * sysdeps/ieee754/float128/s_ufromfpf128.c (ufromfpf128):
21526 * sysdeps/ieee754/float128/s_ufromfpxf128.c (ufromfpxf128):
21529 * sysdeps/powerpc/powerpc64le/Makefile ($(foreach
21530 suf,$(all-object-suffixes),$(objpfx)test-float64x%$(suf))): Add
21531 -mfloat128 to CFLAGS.
21533 suf,$(all-object-suffixes),$(objpfx)test-ifloat64x%$(suf))):
21535 (CFLAGS-libm-test-support-float64x.c): New variable.
21536 ($(objpfx)test-float64x% $(objpfx)test-ifloat64x%): Add
21537 $(f128-loader-link) to gnulib-tests.
21539 * sysdeps/generic/libm-alias-float128.h: Include <bits/floatn.h>.
21540 (libm_alias_float128_other_r): If
21541 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE], define f64x
21543 (libm_alias_float128_r): Add semicolon after weak_alias call.
21544 * sysdeps/generic/libm-alias-ldouble.h
21545 (libm_alias_ldouble_other_r_f128): New macro.
21546 (libm_alias_ldouble_other_r_f64x): Likewise.
21547 (libm_alias_ldouble_other_r): Use libm_alias_ldouble_other_r_f128
21548 and libm_alias_ldouble_other_r_f64x.
21549 (libm_alias_ldouble_r): Add semicolon after weak_alias call.
21550 * sysdeps/ieee754/ldbl-opt/libm-alias-ldouble.h
21551 (libm_alias_ldouble_other_r_f128): New macro.
21552 (libm_alias_ldouble_other_r_f64x): Likewise.
21553 (libm_alias_ldouble_other_r): Use libm_alias_ldouble_other_r_f128
21554 and libm_alias_ldouble_other_r_f64x.
21556 * stdlib/strfroml.c: Always include <stdlib.h>.
21557 [__HAVE_FLOAT64X_LONG_DOUBLE] (strfromf64x): Define and later
21558 undefine as macro and define as weak alias.
21559 * sysdeps/ieee754/float128/strfromf128.c: Include <bits/floatn.h>.
21560 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE]: Include
21562 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE] (strfromf64x):
21563 Define and later undefine as macro and define as weak alias.
21565 * stdlib/strtold.c [__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x):
21566 Define and later undefine as macro. Define as weak alias if
21568 [__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x): Define and later
21569 undefine as macro. Define as weak alias if [USE_WIDE_CHAR].
21570 * sysdeps/ieee754/float128/strtof128.c: Include <bits/floatn.h>.
21571 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x):
21572 Define and later undefine as macro. Define as weak alias if
21574 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x):
21575 Define and later undefine as macro. Define as weak alias if
21577 * sysdeps/ieee754/float128/strtof128_l.c
21578 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x_l):
21579 Define and later undefine as macro. Define as weak alias if
21581 [__HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x_l):
21582 Define and later undefine as macro. Define as weak alias if
21584 * sysdeps/ieee754/ldbl-128/strtold_l.c
21585 [__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x_l): Define and later
21586 undefine as macro. Define as weak alias if [!USE_WIDE_CHAR].
21587 [__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x_l): Define and later
21588 undefine as macro. Define as weak alias if [USE_WIDE_CHAR].
21589 * sysdeps/ieee754/ldbl-64-128/strtold_l.c
21590 [__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x_l): Define and later
21591 undefine as macro. Define as weak alias if [!USE_WIDE_CHAR].
21592 [__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x_l): Define and later
21593 undefine as macro. Define as weak alias if [USE_WIDE_CHAR].
21594 * sysdeps/ieee754/ldbl-96/strtold_l.c
21595 [__HAVE_FLOAT64X_LONG_DOUBLE] (strtof64x_l): Define and later
21596 undefine as macro. Define as weak alias if [!USE_WIDE_CHAR].
21597 [__HAVE_FLOAT64X_LONG_DOUBLE] (wcstof64x_l): Define and later
21598 undefine as macro. Define as weak alias if [USE_WIDE_CHAR].
21600 * math/test-float64x.h: New file.
21601 * math/Makefile (type-float64x-yes): New variable.
21602 (test-types): Add $(type-float64x-$(float64x-alias-fcts)).
21604 * sysdeps/generic/math_private.h (min_of_type_f): Make into a
21605 function-like macro.
21606 (min_of_type_): Likewise.
21607 (min_of_type_l): Likewise.
21608 (min_of_type_f128): Likewise.
21609 (min_of_type): Pass () as last argument of __MATH_TG.
21611 * stdlib/tst-strtod-round-skeleton.c
21612 (__STDC_WANT_IEC_60559_TYPES_EXT__): Define before including
21615 * math/gen-tgmath-tests.py (Type.init_types): Pass suffix argument
21616 for combinations of long double with _Float64 and _Float64x.
21618 * bits/libm-simd-decl-stubs.h (__DECL_SIMD_cosf16): New macro.
21619 (__DECL_SIMD_cosf32): Likewise.
21620 (__DECL_SIMD_cosf64): Likewise.
21621 (__DECL_SIMD_cosf32x): Likewise.
21622 (__DECL_SIMD_cosf64x): Likewise.
21623 (__DECL_SIMD_cosf128x): Likewise.
21624 (__DECL_SIMD_sinf16): Likewise.
21625 (__DECL_SIMD_sinf32): Likewise.
21626 (__DECL_SIMD_sinf64): Likewise.
21627 (__DECL_SIMD_sinf32x): Likewise.
21628 (__DECL_SIMD_sinf64x): Likewise.
21629 (__DECL_SIMD_sinf128x): Likewise.
21630 (__DECL_SIMD_sincosf16): Likewise.
21631 (__DECL_SIMD_sincosf32): Likewise.
21632 (__DECL_SIMD_sincosf64): Likewise.
21633 (__DECL_SIMD_sincosf32x): Likewise.
21634 (__DECL_SIMD_sincosf64x): Likewise.
21635 (__DECL_SIMD_sincosf128x): Likewise.
21636 (__DECL_SIMD_logf16): Likewise.
21637 (__DECL_SIMD_logf32): Likewise.
21638 (__DECL_SIMD_logf64): Likewise.
21639 (__DECL_SIMD_logf32x): Likewise.
21640 (__DECL_SIMD_logf64x): Likewise.
21641 (__DECL_SIMD_logf128x): Likewise.
21642 (__DECL_SIMD_expf16): Likewise.
21643 (__DECL_SIMD_expf32): Likewise.
21644 (__DECL_SIMD_expf64): Likewise.
21645 (__DECL_SIMD_expf32x): Likewise.
21646 (__DECL_SIMD_expf64x): Likewise.
21647 (__DECL_SIMD_expf128x): Likewise.
21648 (__DECL_SIMD_powf16): Likewise.
21649 (__DECL_SIMD_powf32): Likewise.
21650 (__DECL_SIMD_powf64): Likewise.
21651 (__DECL_SIMD_powf32x): Likewise.
21652 (__DECL_SIMD_powf64x): Likewise.
21653 (__DECL_SIMD_powf128x): Likewise.
21655 * stdlib/Versions (libc): Move entries for wcstof128 and
21656 wcstof128_l to ....
21657 * wcsmbs/Versions (libc): ... here.
21658 Include <float128-abi.h>.
21660 2017-11-24 Florian Weimer <fweimer@redhat.com>
21662 * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
21663 bits/mman-shared.h.
21664 * sysdeps/unix/sysv/linux/bits/mman-linux.h: Include
21665 <bits/mman-shared.h>.
21666 (MFD_CLOEXEC, MFD_ALLOW_SEALING, MFD_HUGETLB, memfd_create): Move
21668 * sysdeps/unix/sysv/linux/bits/mman-shared.h: ... this new file.
21669 Add #ifndef guard for the MFD_* constants based on MFD_CLOEXEC.
21670 * sysdeps/unix/sysv/linux/hppa/bits/mman.h: Include
21671 <bits/mman-shared.h>.
21673 2017-11-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
21676 * sysdeps/posix/preadv_common.c (PREADV): Use mmap/munmap instead of
21677 posix_memalign/free.
21678 * sysdeps/posix/pwritev_common.c (PWRITEV): Likewise.
21680 2017-11-22 Mike FABIAN <mfabian@redhat.com>
21683 * localedata/locales/pl_PL (LC_COLLATE): Use “copy "iso14651_t1"”
21684 and implement the collation rules for pl from CLDR on top of that.
21685 * Makefile: Add pl_PL.UTF-8 to test-input and to the list
21686 of locales to be built for testing.
21687 * pl_PL.UTF-8.in: New file with test data to test the Polish sorting.
21689 2017-11-23 Joseph Myers <joseph@codesourcery.com>
21691 * sysdeps/ia64/fpu/libm-symbols.h: Include <libm-alias-ldouble.h>.
21692 * sysdeps/ia64/fpu/e_acoshl.S (acoshl): Use
21693 libm_alias_ldouble_other.
21694 * sysdeps/ia64/fpu/e_acosl.S (acosl): Likewise.
21695 * sysdeps/ia64/fpu/e_asinl.S (asinl): Likewise.
21696 * sysdeps/ia64/fpu/e_atanhl.S (atanhl): Likewise.
21697 * sysdeps/ia64/fpu/e_coshl.S (coshl): Likewise.
21698 * sysdeps/ia64/fpu/e_exp10l.S (exp10l): Likewise.
21699 * sysdeps/ia64/fpu/e_exp2l.S (exp2l): Likewise.
21700 * sysdeps/ia64/fpu/e_fmodl.S (fmodl): Likewise.
21701 * sysdeps/ia64/fpu/e_hypotl.S (hypotl): Likewise.
21702 * sysdeps/ia64/fpu/e_lgammal_r.c (lgammal_r): Define using
21703 libm_alias_ldouble_r.
21704 * sysdeps/ia64/fpu/e_log2l.S (log2l): Use
21705 libm_alias_ldouble_other.
21706 * sysdeps/ia64/fpu/e_logl.S (logl): Likewise.
21707 (log10l): Likewise.
21708 * sysdeps/ia64/fpu/e_powl.S (powl): Likewise.
21709 * sysdeps/ia64/fpu/e_remainderl.S (remainderl): Likewise.
21710 * sysdeps/ia64/fpu/e_sinhl.S (sinhl): Likewise.
21711 * sysdeps/ia64/fpu/e_sqrtl.S (sqrtl): Likewise.
21712 * sysdeps/ia64/fpu/libm_sincosl.S (sincosl): Likewise.
21713 * sysdeps/ia64/fpu/s_asinhl.S (asinhl): Likewise.
21714 * sysdeps/ia64/fpu/s_atanl.S (atanl): Likewise.
21715 (atan2l): Likewise.
21716 * sysdeps/ia64/fpu/s_cbrtl.S (cbrtl): Likewise.
21717 * sysdeps/ia64/fpu/s_ceill.S (ceill): Likewise.
21718 * sysdeps/ia64/fpu/s_copysign.S (copysignl): Define using
21719 libm_alias_ldouble.
21720 * sysdeps/ia64/fpu/s_cosl.S (sinl): Use libm_alias_ldouble_other.
21722 * sysdeps/ia64/fpu/s_erfcl.S (erfcl): Likewise.
21723 * sysdeps/ia64/fpu/s_erfl.S (erfl): Likewise.
21724 * sysdeps/ia64/fpu/s_expm1l.S (expm1l): Likewise.
21726 * sysdeps/ia64/fpu/s_fabsl.S (fabsl): Likewise.
21727 * sysdeps/ia64/fpu/s_fdiml.S (fdiml): Likewise.
21728 * sysdeps/ia64/fpu/s_floorl.S (floorl): Likewise.
21729 * sysdeps/ia64/fpu/s_fmal.S (fmal): Likewise.
21730 * sysdeps/ia64/fpu/s_fmaxl.S (fmaxl): Likewise.
21731 * sysdeps/ia64/fpu/s_frexpl.c (frexpl): Likewise.
21732 * sysdeps/ia64/fpu/s_ldexpl.c (ldexpl): Likewise.
21733 * sysdeps/ia64/fpu/s_log1pl.S (log1pl): Likewise.
21734 * sysdeps/ia64/fpu/s_logbl.S (logbl): Likewise.
21735 * sysdeps/ia64/fpu/s_modfl.S (modfl): Likewise.
21736 * sysdeps/ia64/fpu/s_nearbyintl.S (nearbyintl): Define using
21737 libm_alias_ldouble.
21738 * sysdeps/ia64/fpu/s_nextafterl.S (nextafterl): Use
21739 libm_alias_ldouble_other.
21740 * sysdeps/ia64/fpu/s_rintl.S (rintl): Likewise.
21741 * sysdeps/ia64/fpu/s_roundl.S (roundl): Likewise.
21742 * sysdeps/ia64/fpu/s_scalbnl.c (scalbnl): Define using
21743 libm_alias_ldouble.
21744 * sysdeps/ia64/fpu/s_tanhl.S (tanhl): Use
21745 libm_alias_ldouble_other.
21746 * sysdeps/ia64/fpu/s_tanl.S (tanl): Likewise.
21747 * sysdeps/ia64/fpu/s_truncl.S (truncl): Likewise.
21748 * sysdeps/ia64/fpu/w_lgammal_main.c
21749 [BUILD_LGAMMA && !USE_AS_COMPAT] (lgammal): Likewise.
21750 * sysdeps/ia64/fpu/w_tgammal_compat.S (tgammal): Likewise.
21752 2017-11-23 Florian Weimer <fweimer@redhat.com>
21754 * malloc/malloc.c (tcache_thread_shutdown): Rename from
21755 tcache_thread_freeres. Define for USE_TCACHE and !USE_TCACHE
21756 alike. Remove freeres marker.
21757 * malloc/arena.c (arena_thread_freeres): Call
21758 tcache_thread_shutdown.
21760 2017-11-23 Florian Weimer <fweimer@redhat.com>
21763 Export nscd hash function as __nss_hash.
21764 * include/nss.h (__nss_hash): Declare.
21765 * nis/nis_hash.c (__nis_hash): Call __nss_hash. Turn into compat
21767 * nscd/Makefile (aux, nscd-modules): Remove nscd_hash.
21768 * nscd/cache.c (cache_search, cache_add): Call __nss_hash instead
21770 * nscd/nscd_helper.c (__nscd_cache_search): Likewise.
21771 * nscd/nscd_hash.h, nscd/nscd_hash.c: Remove files.
21772 * nss/Makefiles (routines): Add nss_hash.
21773 * nss/Versions (GLIBC_PRIVATE): Export __nss_hash.
21774 * nss/nss_hash.c: Rename from nis/nis_hash.c.
21775 (__nss_hash): Rename from __nis_hash. Define hidden alias.
21776 * nis/rpcsvc/nislib.h (__nis_hash): Remove declaration.
21778 2017-11-23 Florian Weimer <fweimer@redhat.com>
21781 * sysdeps/unix/sysv/linux/sigwait.c (__sigwait): Retry on EINTR.
21782 Return error code, not -1.
21783 * signal/tst-sigwait-eintr.c: New file.
21784 * signal/Makefile (tests): Add tst-sigwait-eintr.
21786 2017-11-23 Florian Weimer <fweimer@redhat.com>
21788 Linux: Add memfd_create system call wrapper
21789 * sysdeps/unix/sysv/linux/Makefile [misc] (tests): Add
21791 * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_GNU]
21792 (MFD_CLOEXEC, MFD_ALLOW_SEALING): Define.
21793 [__USE_GNU] (memfd_create): Declare.
21794 * sysdeps/unix/sysv/linux/Versions (GLIBC_2.27): Add memfd_create.
21795 * sysdeps/unix/sysv/linux/syscalls.list (memfd_create): Add.
21796 * sysdeps/unix/sysv/linux/tst-memfd_create.c: New file.
21797 * sysdeps/unix/sysv/linux/**.abilist: Update.
21798 * manual/llio.texi (Memory-mapped I/O): Document memfd_create.
21800 2017-11-22 Joseph Myers <joseph@codesourcery.com>
21802 * localedata/gen-locale.sh: Fix typo in variable name.
21804 * resolv/res_debug.c (p_secstodate): Condition definition on
21805 [SHLIB_COMPAT (libresolv, GLIBC_2_0, GLIBC_2_27)]. Define
21806 directly as __p_secstodate, and as a compat symbol. Do not use
21807 libresolv_hidden_def.
21808 * resolv/resolv.h (p_secstodate): Remove macro and function
21810 * resolv/ns_print.c (ns_sprintrrf): Print times with %lu, not
21811 using p_secstodate.
21812 * include/resolv.h (__p_secstodate): Do not use
21813 libresolv_hidden_proto.
21814 * resolv/Makefile (tests): Move tst-p_secstodate to ....
21815 (tests-internal): ... here.
21816 * resolv/tst-p_secstodate.c: Include <shlib-compat.h>. Condition
21817 all contents on [TEST_COMPAT (libresolv, GLIBC_2_0, GLIBC_2_27)]
21818 and declare and use __p_secstodate and use compat_symbol_reference
21820 [!TEST_COMPAT (libresolv, GLIBC_2_0, GLIBC_2_27)] (do_test): Add
21821 implementation returning 77.
21824 * resolv/res_debug.c: Include <libc-diag.h>.
21825 (p_secstodate): Assert time_t at least as wide as u_long. On
21826 overflow, use integer seconds since the epoch as output, or use
21827 "<overflow>" as output and set errno to EOVERFLOW if integer
21828 seconds since the epoch would be 14 or more characters.
21829 (p_secstodate) [__GNUC_PREREQ (7, 0)]: Disable -Wformat-overflow=
21831 * resolv/tst-p_secstodate.c: New file.
21832 * resolv/Makefile (tests): Add tst-p_secstodate.
21833 ($(objpfx)tst-p_secstodate): Depend on $(objpfx)libresolv.so.
21835 * sysdeps/sparc/sparc64/soft-fp/s_frexpl.c: Remove file.
21836 * sysdeps/sparc/sparc64/soft-fp/s_scalblnl.c: Likewise.
21837 * sysdeps/sparc/sparc64/soft-fp/s_scalbnl.c: Likewise.
21839 2017-11-22 Paul Eggert <eggert@cs.ucla.edu>
21841 * posix/regcomp.c (init_word_char): Add comments.
21843 2017-11-22 Joseph Myers <joseph@codesourcery.com>
21846 * sysdeps/unix/getlogin_r.c (__getlogin_r): Use __strnlen not
21847 strlen to compute length of ut_user and set trailing NUL byte of
21850 2017-11-21 Mike FABIAN <mfabian@redhat.com>
21853 * localedata/locales/lv_LV (LC_COLLATE): Fix collation by
21854 using “copy "iso14651_t1"” and then implementing the
21855 collation rules for lv from CLDR on top of that.
21856 * Makefile: Add lv_LV.UTF-8 to test-input and to the list
21857 of locales to be built for testing.
21858 * lv_LV.UTF-8.in: New file with test data to test the Latvian
21861 2017-11-21 Joseph Myers <joseph@codesourcery.com>
21863 * sysdeps/unix/sysv/linux/hppa/bits/mman.h
21864 [__USE_MISC] (MADV_SPACEAVAIL): Remove macro.
21865 [__USE_MISC] (MADV_VPS_PURGE): Likewise.
21866 [__USE_MISC] (MADV_VPS_INHERIT): Likewise.
21867 [__USE_MISC] (MADV_HWPOISON): New macro.
21868 [__USE_MISC] (MADV_SOFT_OFFLINE): Likewise.
21870 2017-11-21 Adhemerval Zanella <adhemerval.zanella@linaro.org>
21872 * nptl/pthreadP.h (ASSERT_PTHREAD_INTERNAL_SIZE): Add workarond for
21873 -Wmissing-braces on GCC 4.9.
21875 2017-11-21 Stefan Liebler <stli@linux.vnet.ibm.com>
21877 * sysdeps/s390/s390-64/start.S (_start): Add cfi information for r14.
21878 * sysdeps/s390/s390-32/start.S (_start): Likewise
21879 * sysdeps/unix/sysv/linux/s390/s390-64/clone.S
21880 (thread_start): Likewise.
21881 * sysdeps/unix/sysv/linux/s390/s390-32/clone.S
21882 (thread_start): Likewise.
21883 * sysdeps/unix/sysv/linux/s390/s390-64/__makecontext_ret.S
21884 (__makecontext_ret): Likewise.
21885 * sysdeps/unix/sysv/linux/s390/s390-32/__makecontext_ret.S
21886 (__makecontext_ret): Likewise.
21888 2017-11-21 Stefan Liebler <stli@linux.vnet.ibm.com>
21890 * include/wchar.h (__wcsnlen, __wcscat, __wcsncpy, __wcpncpy,
21891 __wcschrnul): Remove attribute_hidden.
21893 2017-11-20 Paul Eggert <eggert@cs.ucla.edu>
21895 regex: don't assume uint64_t or uint32_t
21896 This avoids -Werror=overflow errors for 32-bit systems in
21897 the 64-bit case. Problem reported by Joseph Myers in:
21898 https://sourceware.org/ml/libc-alpha/2017-11/msg00694.html
21899 Also, when this code is used in Gnulib it ports to platforms
21900 that lack uint64_t and uint32_t. The C standard doesn't guarantee
21901 them, and on some 32-bit compilers there is no uint64_t.
21902 Problem reported by Gianluigi Tiesi in:
21903 http://lists.gnu.org/archive/html/bug-gnulib/2012-03/msg00154.html
21904 * posix/regcomp.c (init_word_char): Don't assume that the types
21905 uint64_t and uint32_t exist. Adapted from Gnulib patch
21906 2012-05-27T06:40:00!eggert@cs.ucla.edu. See:
21907 https://git.savannah.gnu.org/cgit/gnulib.git/commit/?id=252b52457da7887667c036d18cc5169777615bb0
21909 2017-11-20 Siddhesh Poyarekar <siddhesh@sourceware.org>
21911 * sysdeps/aarch64/memset-reg.h: New file.
21912 * sysdeps/aarch64/memset.S: Use it.
21913 (__memset): Rename to MEMSET macro.
21914 [ZVA_MACRO]: Use zva_macro.
21915 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines):
21916 Add memset_generic and memset_falkor.
21917 * sysdeps/aarch64/multiarch/ifunc-impl-list.c
21918 (__libc_ifunc_impl_list): Add memset ifuncs.
21919 * sysdeps/aarch64/multiarch/init-arch.h (INIT_ARCH): New
21920 local variable zva_size.
21921 * sysdeps/aarch64/multiarch/memset.c: New file.
21922 * sysdeps/aarch64/multiarch/memset_generic.S: New file.
21923 * sysdeps/aarch64/multiarch/memset_falkor.S: New file.
21924 * sysdeps/aarch64/multiarch/rtld-memset.S: New file.
21925 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c
21926 (DCZID_DZP_MASK): New macro.
21927 (DCZID_BS_MASK): Likewise.
21928 (init_cpu_features): Read and set zva_size.
21929 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h
21930 (struct cpu_features): New member zva_size.
21932 * benchtests/bench-memcpy-walk.c (START_SIZE): Set to 128.
21933 * benchtests/bench-memmove-walk.c (START_SIZE): Likewise.
21934 * benchtests/bench-memset-walk.c (START_SIZE): Likewise.
21936 * benchtests/bench-memcpy-walk.c (do_one_test): Copy only
21937 backwards. Fix timing computation.
21938 * benchtests/bench-memmove-walk.c (do_one_test): Likewise.
21939 * benchtests/bench-memset-walk.c (do_one_test): Walk backwards
21940 on memset by N at a time. Fix timing computation.
21942 2017-11-20 Florian Weimer <fweimer@redhat.com>
21944 * manual/llio.texi (Memory-mapped I/O): Document MAP_HUGETLB,
21945 MADV_HUGEPAGE, MADV_NOHUGEPAGE.
21947 2017-11-19 Florian Weimer <fweimer@redhat.com>
21949 manual: Document mprotect
21950 * manual/memory.texi (Memory Protection): New section.
21951 * manual/llio.texi (Memory-mapped I/O): Remove duplicate
21952 documentation of PROT_* flags and reference the Memory Protection
21955 2017-11-19 Florian Weimer <fweimer@redhat.com>
21957 * manual/llio.texi (I/O Primitives): Move preadv, preadv64,
21958 pwritev, pwritev64, preadv2, preadv64v2, pwritev2, pwritev64v2 ...
21959 (Scatter-Gather): ... to here. Remove misleading comment.
21961 2017-11-18 Christian Brauner <christian.brauner@ubuntu.com>
21963 * support/support_become_root.c (setup_uid_gid_mapping): Fix comment
21966 * support/support_become_root.c (setup_uid_gid_mapping): Don't fail
21967 when /proc/<pid>/setgroups does not exist.
21969 2017-11-18 Florian Weimer <fweimer@redhat.com>
21971 * sysdeps/unix/sysv/linux/tst-ttyname.c
21972 (become_root_in_mount_ns): Remove.
21973 (do_in_chroot_1): Call support_enter_mount_namespace.
21974 (do_in_chroot_2): Likewise.
21975 (do_test): Call support_become_root early.
21977 2017-11-18 Florian Weimer <fweimer@redhat.com>
21979 * support/namespace.h (support_enter_mount_namespace): Declare.
21980 * support/support_enter_mount_namespace.c: New file.
21981 * support/Makefile (libsupport-routines): Add
21982 support_enter_mount_namespace.
21984 2017-11-18 Florian Weimer <fweimer@redhat.com>
21986 * support/temp_file.c (support_create_temp_directory): Use
21987 test_dir and do not rely on the presence of the XXXXXX suffix.
21988 * support/temp_file.h (support_create_temp_directory): Update
21990 * support/tst-xreadlink.c (do_test): Adjust.
21991 * support/support_chroot.c (support_chroot_create): Likewise.
21993 2017-11-17 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
21995 * sysdeps/powerpc/bits/hwcap.h (PPC_FEATURE2_HTM_NO_SUSPEND): New
21997 * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add
22000 2017-11-17 Joseph Myers <joseph@codesourcery.com>
22002 * sysdeps/x86_64/fpu/e_expl.S: Include <libm-alias-ldouble.h>.
22003 [USE_AS_EXPM1L] (expm1l): Define using libm_alias_ldouble.
22004 * sysdeps/x86_64/fpu/s_ceill.S: Include <libm-alias-ldouble.h>.
22005 (ceill): Define using libm_alias_ldouble.
22006 * sysdeps/x86_64/fpu/s_copysignl.S: Include
22007 <libm-alias-ldouble.h>.
22008 (copysignl): Define using libm_alias_ldouble.
22009 * sysdeps/x86_64/fpu/s_fabsl.S: Include <libm-alias-ldouble.h>.
22010 (fabsl): Define using libm_alias_ldouble.
22011 * sysdeps/x86_64/fpu/s_floorl.S: Include <libm-alias-ldouble.h>.
22012 (floorl): Define using libm_alias_ldouble.
22013 * sysdeps/x86_64/fpu/s_fmaxl.S: Include <libm-alias-ldouble.h>.
22014 (fmaxl): Define using libm_alias_ldouble.
22015 * sysdeps/x86_64/fpu/s_fminl.S: Include <libm-alias-ldouble.h>.
22016 (fminl): Define using libm_alias_ldouble.
22017 * sysdeps/x86_64/fpu/s_llrintl.S: Include <libm-alias-ldouble.h>.
22018 (llrintl): Define using libm_alias_ldouble.
22019 (lrintl): Likewise.
22020 * sysdeps/x86_64/fpu/s_nearbyintl.S: Include
22021 <libm-alias-ldouble.h>.
22022 (nearbyintl): Define using libm_alias_ldouble.
22023 * sysdeps/x86_64/fpu/s_truncl.S: Include <libm-alias-ldouble.h>.
22024 (truncl): Define using libm_alias_ldouble.
22025 * sysdeps/x86_64/x32/fpu/s_lrintl.S: Include
22026 <libm-alias-ldouble.h>.
22027 (lrintl): Define using libm_alias_ldouble.
22029 * sysdeps/i386/fpu/e_expl.S: Include <libm-alias-ldouble.h>.
22030 [USE_AS_EXPM1L] (expm1l): Define using libm_alias_ldouble.
22031 * sysdeps/i386/fpu/s_asinhl.S: Include <libm-alias-ldouble.h>.
22032 (asinhl): Define using libm_alias_ldouble.
22033 * sysdeps/i386/fpu/s_atanl.c: Include <libm-alias-ldouble.h>.
22034 (atanl): Define using libm_alias_ldouble.
22035 * sysdeps/i386/fpu/s_cbrtl.S: Include <libm-alias-ldouble.h>.
22036 (cbrtl): Define using libm_alias_ldouble.
22037 * sysdeps/i386/fpu/s_ceill.S: Include <libm-alias-ldouble.h>.
22038 (ceill): Define using libm_alias_ldouble.
22039 * sysdeps/i386/fpu/s_copysignl.S: Include <libm-alias-ldouble.h>.
22040 (copysignl): Define using libm_alias_ldouble.
22041 * sysdeps/i386/fpu/s_fabsl.S: Include <libm-alias-ldouble.h>.
22042 (fabsl): Define using libm_alias_ldouble.
22043 * sysdeps/i386/fpu/s_floorl.S: Include <libm-alias-ldouble.h>.
22044 (floorl): Define using libm_alias_ldouble.
22045 * sysdeps/i386/fpu/s_fmaxl.S: Include <libm-alias-ldouble.h>.
22046 (fmaxl): Define using libm_alias_ldouble.
22047 * sysdeps/i386/fpu/s_fminl.S: Include <libm-alias-ldouble.h>.
22048 (fminl): Define using libm_alias_ldouble.
22049 * sysdeps/i386/fpu/s_frexpl.S: Include <libm-alias-ldouble.h>.
22050 (frexpl): Define using libm_alias_ldouble.
22051 * sysdeps/i386/fpu/s_llrintl.S: Include <libm-alias-ldouble.h>.
22052 (llrintl): Define using libm_alias_ldouble.
22053 * sysdeps/i386/fpu/s_logbl.c: Include <libm-alias-ldouble.h>.
22054 (logbl): Define using libm_alias_ldouble.
22055 * sysdeps/i386/fpu/s_lrintl.S: Include <libm-alias-ldouble.h>.
22056 (lrintl): Define using libm_alias_ldouble.
22057 * sysdeps/i386/fpu/s_nearbyintl.S: Include <libm-alias-ldouble.h>.
22058 (nearbyintl): Define using libm_alias_ldouble.
22059 * sysdeps/i386/fpu/s_nextafterl.c: Include <libm-alias-ldouble.h>.
22060 (nextafterl): Define using libm_alias_ldouble.
22061 * sysdeps/i386/fpu/s_remquol.S: Include <libm-alias-ldouble.h>.
22062 (remquol): Define using libm_alias_ldouble.
22063 * sysdeps/i386/fpu/s_rintl.c: Include <libm-alias-ldouble.h>.
22064 (rintl): Define using libm_alias_ldouble.
22065 * sysdeps/i386/fpu/s_truncl.S: Include <libm-alias-ldouble.h>.
22066 (truncl): Define using libm_alias_ldouble.
22067 * sysdeps/i386/i686/fpu/s_fmaxl.S: Include <libm-alias-ldouble.h>.
22068 (fmaxl): Define using libm_alias_ldouble.
22069 * sysdeps/i386/i686/fpu/s_fminl.S: Include <libm-alias-ldouble.h>.
22070 (fminl): Define using libm_alias_ldouble.
22072 * bits/floatn-common.h [!__ASSEMBLER]: Disable everything related
22073 to C syntax instead of availability and properties of types.
22074 * bits/floatn.h [!__ASSEMBLER]: Likewise.
22075 * sysdeps/ia64/bits/floatn.h [!__ASSEMBLER]: Likewise.
22076 * sysdeps/ieee754/ldbl-128/bits/floatn.h [!__ASSEMBLER]: Likewise.
22077 * sysdeps/mips/ieee754/bits/floatn.h [!__ASSEMBLER]: Likewise.
22078 * sysdeps/powerpc/bits/floatn.h [!__ASSEMBLER]: Likewise.
22079 * sysdeps/x86/bits/floatn.h [!__ASSEMBLER]: Likewise.
22081 2017-11-17 Florian Weimer <fweimer@redhat.com>
22083 support_become_root: Enable file creation in namespaces.
22084 * support/support_become_root.c (setup_mapping): New function.
22085 (support_become_root): Call it.
22087 2017-11-17 Joseph Myers <joseph@codesourcery.com>
22089 * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_DCPOP): New
22092 2017-11-16 Adhemerval Zanella <adhemerval.zanella@linaro.org>
22094 * sysdeps/aarch64/fpu/Makefile (CFLAGS-s_fmax.c, CFLAGS-s_fmaxf.c,
22095 CFLAGS-s_fmin.c, CFLAGS-s_fminf.c): New rule: add -ffinite-math-only.
22097 2017-11-16 Joseph Myers <joseph@codesourcery.com>
22099 * sysdeps/unix/sysv/linux/net/if_arp.h (ARPHRD_RAWIP): New macro.
22101 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
22104 2017-11-16 Siddhesh Poyarekar <siddhesh@sourceware.org>
22106 * INSTALL: Fix botched up regeneration.
22108 * NEWS: Update sourceare link to https.
22109 * configure.ac: Likewise.
22110 * crypt/md5test-giant.c: Likewise.
22111 * dlfcn/bug-atexit1.c: Likewise.
22112 * dlfcn/bug-atexit2.c: Likewise.
22113 * localedata/README: Likewise.
22114 * malloc/tst-mallocfork.c: Likewise.
22115 * manual/install.texi: Likewise.
22116 * nptl/tst-pthread-getattr.c: Likewise.
22117 * stdio-common/tst-fgets.c: Likewise.
22118 * stdio-common/tst-fwrite.c: Likewise.
22119 * sunrpc/Makefile: Likewise.
22120 * sysdeps/arm/armv7/multiarch/memcpy_impl.S: Likewise.
22121 * wcsmbs/tst-mbrtowc2.c: Likewise.
22122 * configure: Regenerate.
22123 * INSTALL: Regenerate.
22125 2017-11-15 Martin Sebor <msebor@redhat.com>
22127 * misc/sys/cdefs.h (__attribute_nonstring__): New macro.
22128 * sysdeps/gnu/bits/utmp.h (struct utmp): Use it.
22129 * sysdeps/unix/sysv/linux/s390/bits/utmp.h (struct utmp): Same.
22131 2017-11-15 Luke Shumaker <lukeshu@parabola.nu>
22134 * sysdeps/unix/sysv/linux/tst-ttyname.c: New file.
22135 * sysdeps/unix/sysv/linux/Makefile: Add tst-ttyname to tests.
22138 * sysdeps/unix/sysv/linux/ttyname.c (ttyname):
22139 Defer is_pty check until end of the function.
22140 * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
22143 * sysdeps/unix/sysv/linux/ttyname.h (is_mytty): New function.
22144 * sysdeps/unix/sysv/linux/ttyname.c (getttyname): Call is_mytty.
22145 (ttyname): Likewise.
22146 * sysdeps/unix/sysv/linux/ttyname_r.c (getttyname_r): Likewise.
22147 (__ttyname_r): Likewise.
22149 * sysdeps/unix/sysv/linux/ttyname.h (is_pty): Change return type from
22152 * sysdeps/unix/sysv/linux/ttyname.h (is_pty): Update doc reference.
22154 * manual/terminal.texi (Is It a Terminal):
22155 Mention ENODEV for ttyname and ttyname_r.
22157 2017-11-15 Joseph Myers <joseph@codesourcery.com>
22159 * sysdeps/unix/sysv/linux/bits/socket.h (MSG_ZEROCOPY): New enum
22160 constant and macro.
22162 * sysdeps/unix/sysv/linux/bits/mman-linux.h
22163 [__USE_MISC] (MADV_WIPEONFORK): New macro.
22164 [__USE_MISC] (MADV_KEEPONFORK): Likewise.
22165 * sysdeps/unix/sysv/linux/hppa/bits/mman.h
22166 [__USE_MISC] (MADV_WIPEONFORK): Likewise.
22167 [__USE_MISC] (MADV_KEEPONFORK): Likewise.
22169 2017-11-15 Adhemerval Zanella <adhemerval.zanella@linaro.org>
22171 * signal/sigrelse.c (sigrelse): Optimize implementation.
22173 * sysdeps/posix/sigpause.c (do_sigpause): Remove.
22174 (__sigpause): Rely on __sigsuspend to implement single thread
22175 optimization. Add LIBC_CANCEL_HANDLED for cancellation marking.
22177 2017-11-15 Joseph Myers <joseph@codesourcery.com>
22179 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
22180 kernel version to 4.14.
22182 2017-11-15 Steve Ellcey <sellcey@cavium.com>
22185 * sysdeps/unix/sysv/linux/if_index.c (__if_nametoindex):
22186 Check if ifname is too long.
22188 2017-11-15 Luke Shumaker <lukeshu@parabola.nu>
22190 * sysdeps/unix/sysv/linux/epoll_wait.c: Include <sysdep-cancel.h>.
22192 2017-11-15 Mike FABIAN <mfabian@redhat.com>
22194 * localedata/locales/ka_GE (LC_MESSAGES): Add “X” back to yesexpr,
22195 was accidentally lost.
22197 2017-11-15 Mike FABIAN <mfabian@redhat.com>
22199 * localedata/locales/az_IR: Add standard copyright header.
22201 2017-11-15 Florian Weimer <fweimer@redhat.com>
22204 * malloc/malloc.c (__malloc_info): Count all heaps in an arena,
22205 not just the top one. Output a new "subheaps" statistic.
22207 2017-11-15 Florian Weimer <fweimer@redhat.com>
22210 * malloc/malloc.c (__malloc_info): Obtain arena heap statistics
22211 under the per-arena lock.
22212 * malloc/Makefile (tests): Add tst-malloc_info.
22213 (tst-malloc_info): Link with libpthread.
22214 * malloc/tst-malloc_info.c: New file.
22216 2017-11-15 Joseph Myers <joseph@codesourcery.com>
22219 * math/tgmath.h (__HAVE_BUILTIN_TGMATH): New macro.
22220 [__HAVE_BUILTIN_TGMATH] (__TG_F16_ARG): Likewise.
22221 [__HAVE_BUILTIN_TGMATH] (__TG_F32_ARG): Likewise.
22222 [__HAVE_BUILTIN_TGMATH] (__TG_F64_ARG): Likewise.
22223 [__HAVE_BUILTIN_TGMATH] (__TG_F128_ARG): Likewise.
22224 [__HAVE_BUILTIN_TGMATH] (__TG_F32X_ARG): Likewise.
22225 [__HAVE_BUILTIN_TGMATH] (__TG_F64X_ARG): Likewise.
22226 [__HAVE_BUILTIN_TGMATH] (__TG_F128X_ARG): Likewise.
22227 [__HAVE_BUILTIN_TGMATH] (__TGMATH_FUNCS): Likewise.
22228 [__HAVE_BUILTIN_TGMATH] (__TGMATH_RCFUNCS): Likewise.
22229 [__HAVE_BUILTIN_TGMATH] (__TGMATH_1): Likewise.
22230 [__HAVE_BUILTIN_TGMATH] (__TGMATH_2): Likewise.
22231 [__HAVE_BUILTIN_TGMATH] (__TGMATH_2STD): Likewise.
22232 [__HAVE_BUILTIN_TGMATH] (__TGMATH_3): Likewise.
22233 [__HAVE_BUILTIN_TGMATH] (__TGMATH_1C): Likewise.
22234 [__HAVE_BUILTIN_TGMATH] (__TGMATH_2C): Likewise.
22235 (__tgml): Make conditional on [!__HAVE_BUILTIN_TGMATH].
22236 (__floating_type): Likewise.
22237 (__real_integer_type): Likewise.
22238 (__complex_integer_type): Likewise.
22239 (__expr_is_real): Likewise.
22240 (__tgmath_real_type_sub): Likewise.
22241 (__tgmath_real_type): Likewise.
22242 (__tgmath_complex_type_sub): Likewise.
22243 (__tgmath_complex_type): Likewise.
22244 (__TGMATH_F128): Likewise.
22245 (__TGMATH_CF128): Likewise.
22246 [__HAVE_BUILTIN_TGMATH] (__TGMATH_UNARY_REAL_ONLY): Define using
22248 [__HAVE_BUILTIN_TGMATH] (__TGMATH_UNARY_REAL_RET_ONLY): Likewise.
22249 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_FIRST_REAL_ONLY):
22251 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_FIRST_REAL_STD_ONLY):
22253 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_REAL_ONLY): Likewise.
22254 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_REAL_STD_ONLY): Likewise.
22255 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_REAL_RET_ONLY): Likewise.
22256 [__HAVE_BUILTIN_TGMATH] (__TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY):
22258 [__HAVE_BUILTIN_TGMATH] (__TGMATH_TERNARY_REAL_ONLY): Likewise.
22259 [__HAVE_BUILTIN_TGMATH] (__TGMATH_TERNARY_FIRST_REAL_RET_ONLY):
22261 [__HAVE_BUILTIN_TGMATH] (__TGMATH_UNARY_REAL_IMAG): Likewise.
22262 [__HAVE_BUILTIN_TGMATH] (__TGMATH_UNARY_IMAG): Likewise.
22263 [__HAVE_BUILTIN_TGMATH] (__TGMATH_UNARY_REAL_IMAG_RET_REAL):
22265 [__HAVE_BUILTIN_TGMATH] (__TGMATH_BINARY_REAL_IMAG): Likewise.
22266 (__TGMATH_UNARY_REAL_IMAG_RET_REAL_SAME): New macro.
22267 (carg): Use __TGMATH_UNARY_REAL_IMAG_RET_REAL_SAME.
22271 2017-11-14 Joseph Myers <joseph@codesourcery.com>
22273 * string/tester.c (test_stpncpy): Disable -Wstringop-truncation
22274 for stpncpy calls for GCC 8.
22275 (test_strncat): Disable -Wstringop-truncation warning for strncat
22276 calls for GCC 8. Disable -Wstringop-overflow= warning for one
22277 strncat call for GCC 7.
22278 (test_strncpy): Disable -Wstringop-truncation warning for strncpy
22280 (test_memcmp): Use memcpy instead of strncpy for calls not copying
22283 * string/bug-strncat1.c: Include <libc-diag.h>.
22284 (main): Disable -Wstringop-truncation for strncat call for GCC 8.
22286 2017-11-13 Claude Paroz <claude@2xlibre.net>
22289 * localedata/locales/aa_DJ: Improved readibility by replacing
22290 <Uxxxx> sequences in the ASCII printable range by their ASCII
22291 character equivalents.
22292 * localedata/locales/aa_ER: Likewise.
22293 * localedata/locales/aa_ER@saaho: Likewise.
22294 * localedata/locales/aa_ET: Likewise.
22295 * localedata/locales/af_ZA: Likewise.
22296 * localedata/locales/agr_PE: Likewise.
22297 * localedata/locales/ak_GH: Likewise.
22298 * localedata/locales/am_ET: Likewise.
22299 * localedata/locales/anp_IN: Likewise.
22300 * localedata/locales/ar_AE: Likewise.
22301 * localedata/locales/ar_BH: Likewise.
22302 * localedata/locales/ar_DZ: Likewise.
22303 * localedata/locales/ar_EG: Likewise.
22304 * localedata/locales/ar_IN: Likewise.
22305 * localedata/locales/ar_IQ: Likewise.
22306 * localedata/locales/ar_JO: Likewise.
22307 * localedata/locales/ar_KW: Likewise.
22308 * localedata/locales/ar_LB: Likewise.
22309 * localedata/locales/ar_LY: Likewise.
22310 * localedata/locales/ar_MA: Likewise.
22311 * localedata/locales/ar_OM: Likewise.
22312 * localedata/locales/ar_QA: Likewise.
22313 * localedata/locales/ar_SA: Likewise.
22314 * localedata/locales/ar_SD: Likewise.
22315 * localedata/locales/ar_SS: Likewise.
22316 * localedata/locales/ar_SY: Likewise.
22317 * localedata/locales/ar_TN: Likewise.
22318 * localedata/locales/ar_YE: Likewise.
22319 * localedata/locales/as_IN: Likewise.
22320 * localedata/locales/ast_ES: Likewise.
22321 * localedata/locales/ayc_PE: Likewise.
22322 * localedata/locales/az_AZ: Likewise.
22323 * localedata/locales/az_IR: Likewise.
22324 * localedata/locales/be_BY: Likewise.
22325 * localedata/locales/be_BY@latin: Likewise.
22326 * localedata/locales/bem_ZM: Likewise.
22327 * localedata/locales/ber_DZ: Likewise.
22328 * localedata/locales/ber_MA: Likewise.
22329 * localedata/locales/bg_BG: Likewise.
22330 * localedata/locales/bhb_IN: Likewise.
22331 * localedata/locales/bho_IN: Likewise.
22332 * localedata/locales/bi_VU: Likewise.
22333 * localedata/locales/bn_BD: Likewise.
22334 * localedata/locales/bn_IN: Likewise.
22335 * localedata/locales/bo_CN: Likewise.
22336 * localedata/locales/bo_IN: Likewise.
22337 * localedata/locales/br_FR: Likewise.
22338 * localedata/locales/brx_IN: Likewise.
22339 * localedata/locales/bs_BA: Likewise.
22340 * localedata/locales/byn_ER: Likewise.
22341 * localedata/locales/ca_AD: Likewise.
22342 * localedata/locales/ca_ES: Likewise.
22343 * localedata/locales/ca_FR: Likewise.
22344 * localedata/locales/ca_IT: Likewise.
22345 * localedata/locales/ce_RU: Likewise.
22346 * localedata/locales/chr_US: Likewise.
22347 * localedata/locales/cmn_TW: Likewise.
22348 * localedata/locales/crh_UA: Likewise.
22349 * localedata/locales/cs_CZ: Likewise.
22350 * localedata/locales/csb_PL: Likewise.
22351 * localedata/locales/cv_RU: Likewise.
22352 * localedata/locales/cy_GB: Likewise.
22353 * localedata/locales/da_DK: Likewise.
22354 * localedata/locales/de_AT: Likewise.
22355 * localedata/locales/de_BE: Likewise.
22356 * localedata/locales/de_CH: Likewise.
22357 * localedata/locales/de_DE: Likewise.
22358 * localedata/locales/de_IT: Likewise.
22359 * localedata/locales/de_LI: Likewise.
22360 * localedata/locales/de_LU: Likewise.
22361 * localedata/locales/doi_IN: Likewise.
22362 * localedata/locales/dv_MV: Likewise.
22363 * localedata/locales/dz_BT: Likewise.
22364 * localedata/locales/el_CY: Likewise.
22365 * localedata/locales/el_GR: Likewise.
22366 * localedata/locales/en_AG: Likewise.
22367 * localedata/locales/en_AU: Likewise.
22368 * localedata/locales/en_BW: Likewise.
22369 * localedata/locales/en_CA: Likewise.
22370 * localedata/locales/en_DK: Likewise.
22371 * localedata/locales/en_GB: Likewise.
22372 * localedata/locales/en_HK: Likewise.
22373 * localedata/locales/en_IE: Likewise.
22374 * localedata/locales/en_IL: Likewise.
22375 * localedata/locales/en_IN: Likewise.
22376 * localedata/locales/en_NG: Likewise.
22377 * localedata/locales/en_NZ: Likewise.
22378 * localedata/locales/en_PH: Likewise.
22379 * localedata/locales/en_SG: Likewise.
22380 * localedata/locales/en_US: Likewise.
22381 * localedata/locales/en_ZA: Likewise.
22382 * localedata/locales/en_ZM: Likewise.
22383 * localedata/locales/en_ZW: Likewise.
22384 * localedata/locales/eo: Likewise.
22385 * localedata/locales/es_AR: Likewise.
22386 * localedata/locales/es_BO: Likewise.
22387 * localedata/locales/es_CL: Likewise.
22388 * localedata/locales/es_CO: Likewise.
22389 * localedata/locales/es_CR: Likewise.
22390 * localedata/locales/es_CU: Likewise.
22391 * localedata/locales/es_DO: Likewise.
22392 * localedata/locales/es_EC: Likewise.
22393 * localedata/locales/es_ES: Likewise.
22394 * localedata/locales/es_GT: Likewise.
22395 * localedata/locales/es_HN: Likewise.
22396 * localedata/locales/es_MX: Likewise.
22397 * localedata/locales/es_NI: Likewise.
22398 * localedata/locales/es_PA: Likewise.
22399 * localedata/locales/es_PE: Likewise.
22400 * localedata/locales/es_PR: Likewise.
22401 * localedata/locales/es_PY: Likewise.
22402 * localedata/locales/es_SV: Likewise.
22403 * localedata/locales/es_US: Likewise.
22404 * localedata/locales/es_UY: Likewise.
22405 * localedata/locales/es_VE: Likewise.
22406 * localedata/locales/et_EE: Likewise.
22407 * localedata/locales/eu_ES: Likewise.
22408 * localedata/locales/eu_ES@euro: Likewise.
22409 * localedata/locales/fa_IR: Likewise.
22410 * localedata/locales/ff_SN: Likewise.
22411 * localedata/locales/fi_FI: Likewise.
22412 * localedata/locales/fil_PH: Likewise.
22413 * localedata/locales/fo_FO: Likewise.
22414 * localedata/locales/fr_BE: Likewise.
22415 * localedata/locales/fr_CA: Likewise.
22416 * localedata/locales/fr_CH: Likewise.
22417 * localedata/locales/fr_FR: Likewise.
22418 * localedata/locales/fr_LU: Likewise.
22419 * localedata/locales/fur_IT: Likewise.
22420 * localedata/locales/fy_DE: Likewise.
22421 * localedata/locales/fy_NL: Likewise.
22422 * localedata/locales/ga_IE: Likewise.
22423 * localedata/locales/gd_GB: Likewise.
22424 * localedata/locales/gez_ER: Likewise.
22425 * localedata/locales/gez_ET: Likewise.
22426 * localedata/locales/gl_ES: Likewise.
22427 * localedata/locales/gu_IN: Likewise.
22428 * localedata/locales/gv_GB: Likewise.
22429 * localedata/locales/ha_NG: Likewise.
22430 * localedata/locales/hak_TW: Likewise.
22431 * localedata/locales/he_IL: Likewise.
22432 * localedata/locales/hi_IN: Likewise.
22433 * localedata/locales/hif_FJ: Likewise.
22434 * localedata/locales/hne_IN: Likewise.
22435 * localedata/locales/hr_HR: Likewise.
22436 * localedata/locales/hsb_DE: Likewise.
22437 * localedata/locales/ht_HT: Likewise.
22438 * localedata/locales/hu_HU: Likewise.
22439 * localedata/locales/hy_AM: Likewise.
22440 * localedata/locales/i18n: Likewise.
22441 * localedata/locales/ia_FR: Likewise.
22442 * localedata/locales/id_ID: Likewise.
22443 * localedata/locales/ig_NG: Likewise.
22444 * localedata/locales/ik_CA: Likewise.
22445 * localedata/locales/is_IS: Likewise.
22446 * localedata/locales/it_CH: Likewise.
22447 * localedata/locales/it_IT: Likewise.
22448 * localedata/locales/iu_CA: Likewise.
22449 * localedata/locales/ja_JP: Likewise.
22450 * localedata/locales/ka_GE: Likewise.
22451 * localedata/locales/kk_KZ: Likewise.
22452 * localedata/locales/kl_GL: Likewise.
22453 * localedata/locales/kn_IN: Likewise.
22454 * localedata/locales/ko_KR: Likewise.
22455 * localedata/locales/kok_IN: Likewise.
22456 * localedata/locales/ks_IN: Likewise.
22457 * localedata/locales/ks_IN@devanagari: Likewise.
22458 * localedata/locales/ku_TR: Likewise.
22459 * localedata/locales/kw_GB: Likewise.
22460 * localedata/locales/ky_KG: Likewise.
22461 * localedata/locales/lb_LU: Likewise.
22462 * localedata/locales/lg_UG: Likewise.
22463 * localedata/locales/li_BE: Likewise.
22464 * localedata/locales/li_NL: Likewise.
22465 * localedata/locales/lij_IT: Likewise.
22466 * localedata/locales/ln_CD: Likewise.
22467 * localedata/locales/lo_LA: Likewise.
22468 * localedata/locales/lt_LT: Likewise.
22469 * localedata/locales/lv_LV: Likewise.
22470 * localedata/locales/lzh_TW: Likewise.
22471 * localedata/locales/mag_IN: Likewise.
22472 * localedata/locales/mai_IN: Likewise.
22473 * localedata/locales/mg_MG: Likewise.
22474 * localedata/locales/mhr_RU: Likewise.
22475 * localedata/locales/mi_NZ: Likewise.
22476 * localedata/locales/mk_MK: Likewise.
22477 * localedata/locales/ml_IN: Likewise.
22478 * localedata/locales/mn_MN: Likewise.
22479 * localedata/locales/mni_IN: Likewise.
22480 * localedata/locales/mr_IN: Likewise.
22481 * localedata/locales/ms_MY: Likewise.
22482 * localedata/locales/mt_MT: Likewise.
22483 * localedata/locales/my_MM: Likewise.
22484 * localedata/locales/nan_TW: Likewise.
22485 * localedata/locales/nan_TW@latin: Likewise.
22486 * localedata/locales/nb_NO: Likewise.
22487 * localedata/locales/nds_DE: Likewise.
22488 * localedata/locales/nds_NL: Likewise.
22489 * localedata/locales/ne_NP: Likewise.
22490 * localedata/locales/nhn_MX: Likewise.
22491 * localedata/locales/niu_NU: Likewise.
22492 * localedata/locales/niu_NZ: Likewise.
22493 * localedata/locales/nl_AW: Likewise.
22494 * localedata/locales/nl_BE: Likewise.
22495 * localedata/locales/nl_NL: Likewise.
22496 * localedata/locales/nn_NO: Likewise.
22497 * localedata/locales/nr_ZA: Likewise.
22498 * localedata/locales/nso_ZA: Likewise.
22499 * localedata/locales/oc_FR: Likewise.
22500 * localedata/locales/om_ET: Likewise.
22501 * localedata/locales/om_KE: Likewise.
22502 * localedata/locales/or_IN: Likewise.
22503 * localedata/locales/os_RU: Likewise.
22504 * localedata/locales/pa_IN: Likewise.
22505 * localedata/locales/pa_PK: Likewise.
22506 * localedata/locales/pap_AW: Likewise.
22507 * localedata/locales/pap_CW: Likewise.
22508 * localedata/locales/pl_PL: Likewise.
22509 * localedata/locales/ps_AF: Likewise.
22510 * localedata/locales/pt_BR: Likewise.
22511 * localedata/locales/pt_PT: Likewise.
22512 * localedata/locales/quz_PE: Likewise.
22513 * localedata/locales/raj_IN: Likewise.
22514 * localedata/locales/ro_RO: Likewise.
22515 * localedata/locales/ru_RU: Likewise.
22516 * localedata/locales/ru_UA: Likewise.
22517 * localedata/locales/rw_RW: Likewise.
22518 * localedata/locales/sa_IN: Likewise.
22519 * localedata/locales/sat_IN: Likewise.
22520 * localedata/locales/sc_IT: Likewise.
22521 * localedata/locales/sd_IN: Likewise.
22522 * localedata/locales/sd_IN@devanagari: Likewise.
22523 * localedata/locales/se_NO: Likewise.
22524 * localedata/locales/sgs_LT: Likewise.
22525 * localedata/locales/shs_CA: Likewise.
22526 * localedata/locales/si_LK: Likewise.
22527 * localedata/locales/sid_ET: Likewise.
22528 * localedata/locales/sk_SK: Likewise.
22529 * localedata/locales/sl_SI: Likewise.
22530 * localedata/locales/sm_WS: Likewise.
22531 * localedata/locales/so_DJ: Likewise.
22532 * localedata/locales/so_ET: Likewise.
22533 * localedata/locales/so_KE: Likewise.
22534 * localedata/locales/so_SO: Likewise.
22535 * localedata/locales/sq_AL: Likewise.
22536 * localedata/locales/sq_MK: Likewise.
22537 * localedata/locales/sr_ME: Likewise.
22538 * localedata/locales/sr_RS: Likewise.
22539 * localedata/locales/sr_RS@latin: Likewise.
22540 * localedata/locales/ss_ZA: Likewise.
22541 * localedata/locales/st_ZA: Likewise.
22542 * localedata/locales/sv_FI: Likewise.
22543 * localedata/locales/sv_SE: Likewise.
22544 * localedata/locales/sw_KE: Likewise.
22545 * localedata/locales/sw_TZ: Likewise.
22546 * localedata/locales/szl_PL: Likewise.
22547 * localedata/locales/ta_IN: Likewise.
22548 * localedata/locales/ta_LK: Likewise.
22549 * localedata/locales/tcy_IN: Likewise.
22550 * localedata/locales/te_IN: Likewise.
22551 * localedata/locales/tg_TJ: Likewise.
22552 * localedata/locales/th_TH: Likewise.
22553 * localedata/locales/the_NP: Likewise.
22554 * localedata/locales/ti_ER: Likewise.
22555 * localedata/locales/ti_ET: Likewise.
22556 * localedata/locales/tig_ER: Likewise.
22557 * localedata/locales/tk_TM: Likewise.
22558 * localedata/locales/tl_PH: Likewise.
22559 * localedata/locales/tn_ZA: Likewise.
22560 * localedata/locales/to_TO: Likewise.
22561 * localedata/locales/tpi_PG: Likewise.
22562 * localedata/locales/tr_CY: Likewise.
22563 * localedata/locales/tr_TR: Likewise.
22564 * localedata/locales/ts_ZA: Likewise.
22565 * localedata/locales/tt_RU: Likewise.
22566 * localedata/locales/tt_RU@iqtelif: Likewise.
22567 * localedata/locales/ug_CN: Likewise.
22568 * localedata/locales/uk_UA: Likewise.
22569 * localedata/locales/unm_US: Likewise.
22570 * localedata/locales/ur_IN: Likewise.
22571 * localedata/locales/ur_PK: Likewise.
22572 * localedata/locales/uz_UZ: Likewise.
22573 * localedata/locales/uz_UZ@cyrillic: Likewise.
22574 * localedata/locales/ve_ZA: Likewise.
22575 * localedata/locales/vi_VN: Likewise.
22576 * localedata/locales/wa_BE: Likewise.
22577 * localedata/locales/wae_CH: Likewise.
22578 * localedata/locales/wal_ET: Likewise.
22579 * localedata/locales/wo_SN: Likewise.
22580 * localedata/locales/xh_ZA: Likewise.
22581 * localedata/locales/yi_US: Likewise.
22582 * localedata/locales/yo_NG: Likewise.
22583 * localedata/locales/yue_HK: Likewise.
22584 * localedata/locales/yuw_PG: Likewise.
22585 * localedata/locales/zh_CN: Likewise.
22586 * localedata/locales/zh_HK: Likewise.
22587 * localedata/locales/zh_SG: Likewise.
22588 * localedata/locales/zh_TW: Likewise.
22589 * localedata/locales/zu_ZA: Likewise.
22591 2017-11-13 Florian Weimer <fweimer@redhat.com>
22593 * support/next_to_fault.h, support/next_to_fault.c: New files.
22594 * support/Makefile (libsupport-routines): Add next_to_fault.
22595 * resolv/tst-inet_pton.c (struct next_to_fault)
22596 (next_to_fault_allocate, next_to_fault_free): Remove.
22597 (run_one_test): Switch to <support/next_to_fault.h> interfaces.
22599 2017-11-13 H.J. Lu <hongjiu.lu@intel.com>
22601 * elf/dl-support.c: Include <dl-procruntime.c>.
22602 * include/link.h: Include <link_map.h>.
22603 * sysdeps/generic/dl-procruntime.c: New file.
22604 * sysdeps/generic/link_map.h: Likewise.
22605 * sysdeps/generic/ldsodefs.h: Include <dl-procruntime.c> in
22606 the writable ld.so namespace.
22608 2017-11-12 Paul Eggert <eggert@cs.ucla.edu>
22610 timezone: pacify GCC -Wstringop-truncation
22611 Problem reported by Martin Sebor in:
22612 https://sourceware.org/ml/libc-alpha/2017-11/msg00336.html
22613 * timezone/zic.c (writezone): Use memcpy, not strncpy.
22615 2017-11-12 Florian Weimer <fweimer@redhat.com>
22617 * support/Makefile (libsupport-routines): Add xreadlink, xstrndup,
22619 (tests): Add tst-xreadlink.
22620 * support/support.h (xstrndup): Declare.
22621 * support/xunistd.h (xunlink, xreadlink): Declare.
22622 * support/temp_file.h (support_create_temp_directory): Declare.
22623 * support/temp_file.c (support_create_temp_directory): New function.
22624 * support/support_chroot.c (support_chroot_create): Use it.
22625 * support/xreadlink.c: New file.
22626 * support/xstrndup.c: Likewise.
22627 * support/xunlink.c: Likewise.
22628 * support/tst-xreadlink.c: Likewise.
22630 2017-11-11 John David Anglin <danglin@gcc.gnu.org>
22632 * sysdeps/hppa/fpu/libm-test-ulps: Update clog10_downward ulps.
22634 2017-11-11 Florian Weimer <fweimer@redhat.com>
22638 * resolv/res_comp.c (printable_string, binary_hnok)
22639 (binary_leading_dash): New functions.
22640 (res_hnok): Reimplement using these functions and ns_name_pton.
22641 (res_ownok): Likewise.
22642 (res_mailok): Reimplement using printable_string, ns_name_pton and
22644 (res_dnok): Reimplement using printable_string and ns_name_pton.
22645 * resolv/tst-res_hnok.c (tests): Add additional tests.
22646 (LETTERDIGITS, PRINTABLE): Define.
22647 (do_test): Adjust one_char results.
22649 2017-11-11 Florian Weimer <fweimer@redhat.com>
22652 * resolv/ns_name.c (ns_name_pton): Treat trailing backslash as error.
22653 * resolv/tst-ns_name_pton.c (tests): Add trailing backslash tests.
22655 2017-11-11 Florian Weimer <fweimer@redhat.com>
22657 * resolv/tst-ns_name_pton.c: New file.
22658 * resolv/Makefile (tests): Add tst-ns_name_pton.
22659 (tst-ns_name_pton): Link against libresolv.
22661 2017-11-11 Florian Weimer <fweimer@redhat.com>
22663 * resolv/tst-res_hnok.c: New file.
22664 * resolv/Makefile (tests): Add tst-res_hnok.
22665 (tst-res_hnok): Link against libresolv.
22667 2017-11-11 Florian Weimer <fweimer@redhat.com>
22669 * resolv/tst-resolv-network.c: Use test framework instead explicit
22672 2017-11-09 H.J. Lu <hongjiu.lu@intel.com>
22674 * include/setjmp.h [!_ISOMAC]: Include <stddef.h> and
22675 <jmp_buf-macros.h>.
22676 [!_ISOMAC] (STR_HELPER): New.
22677 [!_ISOMAC] (STR): Likewise.
22678 [!_ISOMAC] (TEST_SIZE): Likewise.
22679 [!_ISOMAC] (TEST_ALIGN): Likewise.
22680 [!_ISOMAC] (TEST_OFFSET): Likewise.
22681 [!_ISOMAC] Add _Static_assert to check sizes, alignments and
22682 field offsets of jmp_buf as well as sigjmp_buf.
22683 * sysdeps/unix/sysv/linux/aarch64/jmp_buf-macros.h: Likewise.
22684 * sysdeps/unix/sysv/linux/alpha/jmp_buf-macros.h: Likewise.
22685 * sysdeps/unix/sysv/linux/arm/jmp_buf-macros.h: Likewise.
22686 * sysdeps/unix/sysv/linux/hppa/jmp_buf-macros.h: Likewise.
22687 * sysdeps/unix/sysv/linux/i386/jmp_buf-macros.h: Likewise.
22688 * sysdeps/unix/sysv/linux/ia64/jmp_buf-macros.h: Likewise.
22689 * sysdeps/unix/sysv/linux/m68k/jmp_buf-macros.h: Likewise.
22690 * sysdeps/unix/sysv/linux/microblaze/jmp_buf-macros.h: Likewise.
22691 * sysdeps/unix/sysv/linux/mips/mips32/jmp_buf-macros.h: Likewise.
22692 * sysdeps/unix/sysv/linux/mips/mips64/n32/jmp_buf-macros.h:
22694 * sysdeps/unix/sysv/linux/mips/mips64/n64/jmp_buf-macros.h:
22696 * sysdeps/unix/sysv/linux/nios2/jmp_buf-macros.h: Likewise.
22697 * sysdeps/unix/sysv/linux/powerpc/powerpc32/jmp_buf-macros.h:
22699 * sysdeps/unix/sysv/linux/powerpc/powerpc64/jmp_buf-macros.h:
22701 * sysdeps/unix/sysv/linux/s390/s390-32/jmp_buf-macros.h: Likewise.
22702 * sysdeps/unix/sysv/linux/s390/s390-64/jmp_buf-macros.h: Likewise.
22703 * sysdeps/unix/sysv/linux/sh/jmp_buf-macros.h: Likewise.
22704 * sysdeps/unix/sysv/linux/sparc/sparc32/jmp_buf-macros.h: Likewise.
22705 * sysdeps/unix/sysv/linux/sparc/sparc64/jmp_buf-macros.h: Likewise.
22706 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/jmp_buf-macros.h:
22708 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/jmp_buf-macros.h:
22710 * sysdeps/unix/sysv/linux/tile/tilepro/jmp_buf-macros.h: Likewise.
22711 * sysdeps/unix/sysv/linux/x86_64/64/jmp_buf-macros.h: Likewise.
22712 * sysdeps/unix/sysv/linux/x86_64/x32/jmp_buf-macros.h: Likewise.
22714 2017-11-07 Joseph Myers <joseph@codesourcery.com>
22717 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22718 && __HAVE_FLOAT32] (FLT32_MANT_DIG): New macro.
22719 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22720 && __HAVE_FLOAT32] (FLT32_DECIMAL_DIG): Likewise.
22721 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22722 && __HAVE_FLOAT32] (FLT32_DIG): Likewise.
22723 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22724 && __HAVE_FLOAT32] (FLT32_MIN_EXP): Likewise.
22725 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22726 && __HAVE_FLOAT32] (FLT32_MIN_10_EXP): Likewise.
22727 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22728 && __HAVE_FLOAT32] (FLT32_MAX_EXP): Likewise.
22729 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22730 && __HAVE_FLOAT32] (FLT32_MAX_10_EXP): Likewise.
22731 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22732 && __HAVE_FLOAT32] (FLT32_MAX): Likewise.
22733 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22734 && __HAVE_FLOAT32] (FLT32_EPSILON): Likewise.
22735 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22736 && __HAVE_FLOAT32] (FLT32_MIN): Likewise.
22737 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22738 && __HAVE_FLOAT32] (FLT32_TRUE_MIN): Likewise.
22739 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22740 && __HAVE_FLOAT64] (FLT64_MANT_DIG): Likewise.
22741 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22742 && __HAVE_FLOAT64] (FLT64_DECIMAL_DIG): Likewise.
22743 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22744 && __HAVE_FLOAT64] (FLT64_DIG): Likewise.
22745 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22746 && __HAVE_FLOAT64] (FLT64_MIN_EXP): Likewise.
22747 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22748 && __HAVE_FLOAT64] (FLT64_MIN_10_EXP): Likewise.
22749 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22750 && __HAVE_FLOAT64] (FLT64_MAX_EXP): Likewise.
22751 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22752 && __HAVE_FLOAT64] (FLT64_MAX_10_EXP): Likewise.
22753 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22754 && __HAVE_FLOAT64] (FLT64_MAX): Likewise.
22755 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22756 && __HAVE_FLOAT64] (FLT64_EPSILON): Likewise.
22757 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22758 && __HAVE_FLOAT64] (FLT64_MIN): Likewise.
22759 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22760 && __HAVE_FLOAT64] (FLT64_TRUE_MIN): Likewise.
22761 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22762 && __HAVE_FLOAT32X] (FLT32X_MANT_DIG): Likewise.
22763 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22764 && __HAVE_FLOAT32X] (FLT32X_DECIMAL_DIG): Likewise.
22765 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22766 && __HAVE_FLOAT32X] (FLT32X_DIG): Likewise.
22767 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22768 && __HAVE_FLOAT32X] (FLT32X_MIN_EXP): Likewise.
22769 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22770 && __HAVE_FLOAT32X] (FLT32X_MIN_10_EXP): Likewise.
22771 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22772 && __HAVE_FLOAT32X] (FLT32X_MAX_EXP): Likewise.
22773 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22774 && __HAVE_FLOAT32X] (FLT32X_MAX_10_EXP): Likewise.
22775 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22776 && __HAVE_FLOAT32X] (FLT32X_MAX): Likewise.
22777 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22778 && __HAVE_FLOAT32X] (FLT32X_EPSILON): Likewise.
22779 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22780 && __HAVE_FLOAT32X] (FLT32X_MIN): Likewise.
22781 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22782 && __HAVE_FLOAT32X] (FLT32X_TRUE_MIN): Likewise.
22783 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22784 && __HAVE_FLOAT64X] (FLT64X_MANT_DIG): Likewise.
22785 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22786 && __HAVE_FLOAT64X] (FLT64X_DECIMAL_DIG): Likewise.
22787 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22788 && __HAVE_FLOAT64X] (FLT64X_DIG): Likewise.
22789 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22790 && __HAVE_FLOAT64X] (FLT64X_MIN_EXP): Likewise.
22791 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22792 && __HAVE_FLOAT64X] (FLT64X_MIN_10_EXP): Likewise.
22793 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22794 && __HAVE_FLOAT64X] (FLT64X_MAX_EXP): Likewise.
22795 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22796 && __HAVE_FLOAT64X] (FLT64X_MAX_10_EXP): Likewise.
22797 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22798 && __HAVE_FLOAT64X] (FLT64X_MAX): Likewise.
22799 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22800 && __HAVE_FLOAT64X] (FLT64X_EPSILON): Likewise.
22801 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22802 && __HAVE_FLOAT64X] (FLT64X_MIN): Likewise.
22803 [!__GNUC_PREREQ (7, 0) && __GLIBC_USE (IEC_60559_TYPES_EXT)
22804 && __HAVE_FLOAT64X] (FLT64X_TRUE_MIN): Likewise.
22806 * stdlib/tst-strtod.h (F16): New macro.
22812 (IF_FLOAT16): Likewise.
22813 (IF_FLOAT32): Likewise.
22814 (IF_FLOAT64): Likewise.
22815 (IF_FLOAT32X): Likewise.
22816 (IF_FLOAT64X): Likewise.
22817 (IF_FLOAT128X): Likewise.
22818 (GEN_TEST_STRTOD_FOREACH): Conditionally call macros for _Float16,
22819 _Float32, _Float64, _Float32x, _Float64x and _Float128x.
22820 (STRTOD_TEST_FOREACH): Likewise.
22821 * stdlib/tst-strtod-round-skeleton.c (CHOOSE_f32): New macro.
22822 (CHOOSE_f64): Likewise.
22823 (CHOOSE_f32x): Likewise.
22824 (CHOOSE_f64x): Likewise.
22826 2017-11-07 Andreas Schwab <schwab@suse.de>
22828 * nptl/Makefile (tests-internal): Remove tst-typesizes.
22830 2017-11-07 Mike FABIAN <mfabian@redhat.com>
22833 * localedata/locales/mfe_MU (LC_TIME): Fix wrong d_fmt, / needs
22835 * localedata/locales/miq_NI (LC_TIME): Fix wrong d_fmt, / needs
22838 2017-11-07 Claude Paroz <claude@2xlibre.net>
22841 * localedata/locales/an_ES (LC_TIME): Fix wrong d_fmt, / needs
22843 * localedata/locales/kab_DZ (LC_TIME): Fix wrong d_fmt, / needs
22845 * localedata/locales/om_ET (LC_TIME): Fix wrong d_fmt, / needs
22848 2017-11-07 Adhemerval Zanella <adhemerval.zanella@linaro.org>
22851 * nptl/allocatestack.c (allocate_stack): Check if
22852 __PTHREAD_MUTEX_HAVE_PREV is non-zero, instead if
22853 __PTHREAD_MUTEX_HAVE_PREV is defined.
22854 * nptl/descr.h (pthread): Likewise.
22855 * nptl/nptl-init.c (__pthread_initialize_minimal_internal):
22857 * nptl/pthread_create.c (START_THREAD_DEFN): Likewise.
22858 * sysdeps/nptl/fork.c (__libc_fork): Likewise.
22859 * sysdeps/nptl/pthread.h (PTHREAD_MUTEX_INITIALIZER): Likewise.
22860 * sysdeps/nptl/bits/thread-shared-types.h
22861 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION): New
22863 (__pthread_internal_list): Check __PTHREAD_MUTEX_USE_UNION instead
22864 of __WORDSIZE for internal layout.
22865 (__pthread_mutex_s): Check __PTHREAD_MUTEX_NUSERS_AFTER_KIND instead
22866 of __WORDSIZE for internal __nusers layout and __PTHREAD_MUTEX_USE_UNION
22867 instead of __WORDSIZE whether to use an union for __spins and __list
22869 (__PTHREAD_MUTEX_HAVE_PREV): Define also for __PTHREAD_MUTEX_USE_UNION
22871 * sysdeps/aarch64/nptl/bits/pthreadtypes-arch.h
22872 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION): New
22874 * sysdeps/alpha/nptl/bits/pthreadtypes-arch.h
22875 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22877 * sysdeps/arm/nptl/bits/pthreadtypes-arch.h
22878 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22880 * sysdeps/hppa/nptl/bits/pthreadtypes-arch.h
22881 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22883 * sysdeps/ia64/nptl/bits/pthreadtypes-arch.h
22884 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22886 * sysdeps/m68k/nptl/bits/pthreadtypes-arch.h
22887 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22889 * sysdeps/microblaze/nptl/bits/pthreadtypes-arch.h
22890 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22892 * sysdeps/mips/nptl/bits/pthreadtypes-arch.h
22893 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22895 * sysdeps/nios2/nptl/bits/pthreadtypes-arch.h
22896 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22898 * sysdeps/powerpc/nptl/bits/pthreadtypes-arch.h
22899 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22901 * sysdeps/s390/nptl/bits/pthreadtypes-arch.h
22902 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22904 * sysdeps/sh/nptl/bits/pthreadtypes-arch.h
22905 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22907 * sysdeps/sparc/nptl/bits/pthreadtypes-arch.h
22908 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22910 * sysdeps/tile/nptl/bits/pthreadtypes-arch.h
22911 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22913 * sysdeps/x86/nptl/bits/pthreadtypes-arch.h
22914 (__PTHREAD_MUTEX_NUSERS_AFTER_KIND, __PTHREAD_MUTEX_USE_UNION):
22917 * nptl/pthreadP.h (ASSERT_TYPE_SIZE, ASSERT_PTHREAD_INTERNAL_SIZE):
22919 * nptl/pthread_attr_init.c (__pthread_mutex_init): Add build time
22920 checks for expected input type size.
22921 * nptl/pthread_barrier_init.c (__pthread_barrier_init): Likewise.
22922 * nptl/pthread_barrierattr_init.c (pthread_barrierattr_init):
22924 * nptl/pthread_cond_init.c (__pthread_cond_init): Likewise.
22925 * nptl/pthread_condattr_init.c (__pthread_condattr_init): Likewise.
22926 * nptl/pthread_mutex_init.c (__pthread_mutex_init): Likewise.
22927 * nptl/pthread_mutexattr_init.c (__pthread_mutexattr_init): Likewise.
22928 * nptl/pthread_rwlock_init.c (__pthread_rwlock_init): Likewise.
22929 * nptl/pthread_rwlockattr_init.c (pthread_rwlockattr_init): Likewise.
22930 * nptl/sem_init.c (__new_sem_init, __old_sem_init): Likewise
22931 * nptl/pthread_attr_destroy.c (__pthread_attr_destroy): Remove
22932 superflous runtime assert check.
22933 * nptl/pthread_attr_getaffinity.c (__pthread_attr_getaffinity_new):
22935 * nptl/pthread_attr_getdetachstate.c (__pthread_attr_getdetachstate):
22937 * nptl/pthread_attr_getguardsize.c (pthread_attr_getguardsize):
22939 * nptl/pthread_attr_getinheritsched.c (__pthread_attr_getinheritsched):
22941 * nptl/pthread_attr_getschedparam.c (__pthread_attr_getschedparam):
22943 * nptl/pthread_attr_getschedpolicy.c (__pthread_attr_getschedpolicy):
22945 * nptl/pthread_attr_getscope.c (__pthread_attr_getscope): Likewise.
22946 * nptl/pthread_attr_getstack.c (__pthread_attr_getstack): Likewise.
22947 * nptl/pthread_attr_getstackaddr.c (__pthread_attr_getstackaddr):
22949 * nptl/pthread_attr_getstacksize.c (__pthread_attr_getstacksize):
22951 * nptl/pthread_attr_setaffinity.c (__pthread_attr_setaffinity_new):
22953 * nptl/pthread_attr_setdetachstate.c (__pthread_attr_setdetachstate):
22955 * nptl/pthread_attr_setguardsize.c (pthread_attr_setguardsize):
22957 * nptl/pthread_attr_setinheritsched.c
22958 (__pthread_attr_setinheritsched): Likewise.
22959 * nptl/pthread_attr_setschedparam.c (__pthread_attr_setschedparam):
22961 * nptl/pthread_attr_setschedpolicy.c (__pthread_attr_setschedpolicy):
22963 * nptl/pthread_attr_setscope.c (__pthread_attr_setscope): Likewise.
22964 * nptl/pthread_attr_setstack.c (__pthread_attr_setstack,
22965 __old_pthread_attr_setstack): Likewise.
22966 * nptl/pthread_attr_setstackaddr.c (__pthread_attr_setstackaddr):
22968 * nptl/pthread_attr_setstacksize.c (__pthread_attr_setstacksize):
22970 * nptl/pthread_getattr_default_np.c (pthread_getattr_default_np):
22972 * nptl/pthread_mutex_lock.c (__pthread_mutex_lock): Likewise.
22973 * nptl/pthread_setattr_default_np.c (pthread_setattr_default_np):
22975 * nptl/tst-typesizes.c: Remove file.
22977 * nptl/pthreadP.h (ASSERT_PTHREAD_STRING,
22978 ASSERT_PTHREAD_INTERNAL_OFFSET): New macro.
22979 * nptl/pthread_mutex_init.c (__pthread_mutex_init): Add build time
22980 checks for internal pthread_mutex_t offsets.
22981 * sysdeps/aarch64/nptl/pthread-offsets.h
22982 (__PTHREAD_MUTEX_NUSERS_OFFSET, __PTHREAD_MUTEX_KIND_OFFSET,
22983 __PTHREAD_MUTEX_SPINS_OFFSET, __PTHREAD_MUTEX_ELISION_OFFSET,
22984 __PTHREAD_MUTEX_LIST_OFFSET): New macro.
22985 * sysdeps/alpha/nptl/pthread-offsets.h: Likewise.
22986 * sysdeps/arm/nptl/pthread-offsets.h: Likewise.
22987 * sysdeps/hppa/nptl/pthread-offsets.h: Likewise.
22988 * sysdeps/i386/nptl/pthread-offsets.h: Likewise.
22989 * sysdeps/ia64/nptl/pthread-offsets.h: Likewise.
22990 * sysdeps/m68k/nptl/pthread-offsets.h: Likewise.
22991 * sysdeps/microblaze/nptl/pthread-offsets.h: Likewise.
22992 * sysdeps/mips/nptl/pthread-offsets.h: Likewise.
22993 * sysdeps/nios2/nptl/pthread-offsets.h: Likewise.
22994 * sysdeps/powerpc/nptl/pthread-offsets.h: Likewise.
22995 * sysdeps/s390/nptl/pthread-offsets.h: Likewise.
22996 * sysdeps/sh/nptl/pthread-offsets.h: Likewise.
22997 * sysdeps/sparc/nptl/pthread-offsets.h: Likewise.
22998 * sysdeps/tile/nptl/pthread-offsets.h: Likewise.
22999 * sysdeps/x86_64/nptl/pthread-offsets.h: Likewise.
23001 2017-11-07 Florian Weimer <fweimer@redhat.com>
23003 * bits/mman-linux.h: Move ...
23004 * sysdeps/unix/sysv/linux/bits/mman-linux.h: ... here. Update
23006 * sysdeps/unix/sysv/linux/bits/Makefile (sysdep_headers): Remove
23009 2017-11-07 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
23011 * sysdeps/powerpc/powerpc64/multiarch/strcasestr-power8.S (STRNLEN):
23012 Redefine STRNLEN as __strnlen_power8.
23014 2017-11-06 Adhemerval Zanella <adhemerval.zanella@linaro.org>
23016 * signal/sighold.c (sighold): Optimize implementation.
23018 * sysdeps/unix/sysv/linux/sigqueue.c (__sigqueue): Asssume
23019 __NR_rt_sigqueueinfo.
23021 * sysdeps/unix/sysv/linux/Versions (libc) [GLIBC_PRIVATE]: Add
23023 * sysdeps/unix/sysv/linux/sigtimedwait.c: Simplify includes and
23024 assume __NR_rt_sigtimedwait.
23025 * sysdeps/unix/sysv/linux/sigwait.c (__sigwait): Call __sigtimedwait
23026 and add LIBC_CANCEL_HANDLED for cancellation marking.
23027 * sysdeps/unix/sysv/linux/sigwaitinfo.c (__sigwaitinfo): Likewise.
23029 * sysdeps/arm/armv7/multiarch/Makefile [$(subdir) = string]
23030 (sysdeps_routines): Add memchr_noneon.
23031 * sysdeps/arm/armv7/multiarch/ifunc-memchr.h: New file.
23032 * sysdeps/arm/armv7/multiarch/memchr_noneon.S: Likewise.
23033 * sysdeps/arm/armv7/multiarch/rtld-memchr.S: Likewise.
23034 * sysdeps/arm/armv7/multiarch/memchr.S: Remove file.
23035 * sysdeps/arm/armv7/multiarch/memchr.c: New file.
23036 * sysdeps/arm/armv7/multiarch/memchr_impl.S: Move to ...
23037 * sysdeps/arm/armv7/multiarch/memchr_neon.S: ... here.
23039 * sysdeps/arm/arm-ifunc.h: New file.
23040 * sysdeps/arm/armv7/multiarch/ifunc-memcpy.h: Likewise.
23041 * sysdeps/arm/armv7/multiarch/memcpy.c: Likewise.
23042 * sysdeps/arm/armv7/multiarch/memcpy_arm.S: Likewise.
23043 * sysdeps/arm/armv7/multiarch/rtld-memcpy.S: Likewise.
23044 * sysdeps/arm/armv7/multiarch/memcpy_neon.S [!__ARM_NEON__]
23045 (__memcpy_neon): Avoid create hidden alias.
23046 * sysdeps/arm/armv7/multiarch/memcpy_vfp.S [!__ARM_NEON_]
23047 (__memcpy_vfp): Likewise.
23048 * sysdeps/arm/armv7/multiarch/Makefile [$(subdir) = string]
23049 (sysdep_routines): Add memcpy_arm.
23050 * sysdeps/arm/armv7/multiarch/memcpy.S: Remove file.
23052 2017-11-06 H.J. Lu <hongjiu.lu@intel.com>
23055 * Makerules (make-link-multidir): New.
23056 * config.make.in (multidir): New.
23057 * configure.ac (libc_cv_multidir): New. AC_SUBST.
23058 * configure: Regenerated.
23059 * csu/Makefile [$(multidir) != .](multilib-extra-objs): New.
23060 [$(multidir) != .](extra-objs): Add $(multilib-extra-objs).
23061 [$(multidir) != .]($(addprefix $(objpfx)$(multidir)/, $(install-lib))):
23064 2017-11-06 Joseph Myers <joseph@codesourcery.com>
23067 * sysdeps/powerpc/bits/floatn.h: Include <bits/long-double.h>.
23068 [__NO_LONG_DOUBLE_MATH] (__HAVE_FLOAT128): Define to 0.
23070 2017-11-04 Mike FABIAN <mfabian@redhat.com>
23072 * localedata/locales/tpi_PG (LC_TIME): Fix wrong d_fmt, / needs
23075 2017-11-04 Florian Weimer <fweimer@redhat.com>
23077 * manual/llio.texi (Open-time Flags): Document O_TMPFILE.
23079 2017-11-03 Joseph Myers <joseph@codesourcery.com>
23081 * math/math.h [__HAVE_DISTINCT_FLOAT16
23082 || __HAVE_DISTINCT_FLOAT32 || __HAVE_DISTINCT_FLOAT64
23083 || __HAVE_DISTINCT_FLOAT32X || __HAVE_DISTINCT_FLOAT64X
23084 || __HAVE_DISTINCT_FLOAT128X]: Use #error.
23085 [__NO_LONG_DOUBLE_MATH && __HAVE_DISTINCT_FLOAT128]: Likewise.
23086 [__HAVE_DISTINCT_FLOAT128 && !__HAVE_GENERIC_SELECTION
23087 && __HAVE_FLOATN_NOT_TYPEDEF]: Likewise.
23088 [__HAVE_DISTINCT_FLOAT128 && __HAVE_GENERIC_SELECTION]
23089 (__MATH_TG_F32): New macro.
23090 [__HAVE_DISTINCT_FLOAT128 && __HAVE_GENERIC_SELECTION]
23091 (__MATH_TG_F64X): Likewise.
23092 [__HAVE_DISTINCT_FLOAT128 && __HAVE_GENERIC_SELECTION]
23093 (__MATH_TG): Use __MATH_TG_F32 and __MATH_TG_F64X.
23095 2017-11-03 Dmitry V. Levin <ldv@altlinux.org>
23097 * po/de.po: Update translations.
23098 * po/ru.po: Likewise.
23100 2017-11-03 Florian Weimer <fweimer@redhat.com>
23102 * manual/filesys.texi (Hard Links): Document linkat.
23104 2017-11-03 Joseph Myers <joseph@codesourcery.com>
23106 * math/tgmath.h [__HAVE_DISTINCT_FLOAT16
23107 || __HAVE_DISTINCT_FLOAT32 || __HAVE_DISTINCT_FLOAT64
23108 || __HAVE_DISTINCT_FLOAT32X || __HAVE_DISTINCT_FLOAT64X
23109 || __HAVE_DISTINCT_FLOAT128X]: Use #error.
23110 [__HAVE_DISTINCT_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)
23111 && __HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE
23112 && __HAVE_FLOATN_NOT_TYPEDEF] (__TGMATH_F128): Handle _Float64x
23113 the same as _Float128.
23114 [__HAVE_DISTINCT_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)
23115 && __HAVE_FLOAT64X && !__HAVE_FLOAT64X_LONG_DOUBLE
23116 && __HAVE_FLOATN_NOT_TYPEDEF] (__TGMATH_CF128): Likewise.
23119 [__HAVE_FLOAT16 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (strtof16):
23121 [__HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (strtof32):
23123 [__HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (strtof64):
23125 [__HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23126 (strtof32x): Likewise.
23127 [__HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23128 (strtof64x): Likewise.
23129 [__HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23130 (strtof128x): Likewise.
23131 [__HAVE_FLOAT16 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23132 (strfromf16): Likewise.
23133 [__HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23134 (strfromf32): Likewise.
23135 [__HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23136 (strfromf64): Likewise.
23137 [__HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23138 (strfromf32x): Likewise.
23139 [__HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23140 (strfromf64x): Likewise.
23141 [__HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23142 (strfromf128x): Likewise.
23143 [__USE_GNU && __HAVE_FLOAT16] (strtof16_l): Likewise.
23144 [__USE_GNU && __HAVE_FLOAT32] (strtof32_l): Likewise.
23145 [__USE_GNU && __HAVE_FLOAT64] (strtof64_l): Likewise.
23146 [__USE_GNU && __HAVE_FLOAT32X] (strtof32x_l): Likewise.
23147 [__USE_GNU && __HAVE_FLOAT64X] (strtof64x_l): Likewise.
23148 [__USE_GNU && __HAVE_FLOAT128X] (strtof128x_l): Likewise.
23150 2017-11-03 Richard Henderson <rth@twiddle.net>
23152 * sysdeps/unix/sysv/linux/aarch64/sysconf.c: New file.
23154 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23156 * sysdeps/aarch64/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Optimize.
23158 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23160 * sysdeps/arm/dl-machine.h (elf_machine_runtime_setup): Remove
23161 DT_TLSDESC_GOT initialization.
23162 * sysdeps/arm/dl-tlsdesc.S (_dl_tlsdesc_lazy_resolver): Remove.
23163 (_dl_tlsdesc_resolve_hold): Likewise.
23164 * sysdeps/aarch64/dl-tlsdesc.h (_dl_tlsdesc_lazy_resolver): Remove.
23165 (_dl_tlsdesc_resolve_hold): Likewise.
23166 * sysdeps/aarch64/tlsdesc.c (_dl_tlsdesc_lazy_resolver_fixup): Remove.
23167 (_dl_tlsdesc_resolve_hold_fixup): Likewise.
23169 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23171 * sysdeps/arm/dl-machine.h (elf_machine_rel): Remove volatile.
23173 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23176 * sysdeps/arm/dl-machine.h (elf_machine_lazy_rel): Do symbol binding
23177 non-lazily for R_ARM_TLS_DESC.
23179 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23182 * sysdeps/arm/dl-machine.h (elf_machine_rela): Remove the
23183 R_ARM_TLS_DESC case.
23184 (elf_machine_lazy_rel): Remove the prelink check.
23186 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23188 * sysdeps/aarch64/dl-machine.h (elf_machine_runtime_setup): Remove
23189 DT_TLSDESC_GOT initialization.
23190 * sysdeps/aarch64/dl-tlsdesc.S (_dl_tlsdesc_return_lazy): Remove.
23191 (_dl_tlsdesc_resolve_rela): Likewise.
23192 (_dl_tlsdesc_resolve_hold): Likewise.
23193 (_dl_tlsdesc_undefweak): Remove ldar.
23194 (_dl_tlsdesc_dynamic): Likewise.
23195 * sysdeps/aarch64/dl-tlsdesc.h (_dl_tlsdesc_return_lazy): Remove.
23196 (_dl_tlsdesc_resolve_rela): Likewise.
23197 (_dl_tlsdesc_resolve_hold): Likewise.
23198 * sysdeps/aarch64/tlsdesc.c (_dl_tlsdesc_resolve_rela_fixup): Remove.
23199 (_dl_tlsdesc_resolve_hold_fixup): Likewise.
23200 (_dl_tlsdesc_resolve_rela): Likewise.
23201 (_dl_tlsdesc_resolve_hold): Likewise.
23203 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23205 * sysdeps/aarch64/dl-machine.h (elf_machine_lazy_rel): Do symbol
23206 binding and initialization non-lazily for R_AARCH64_TLSDESC.
23208 2017-11-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
23210 * elf/tlsdeschtab.h (_dl_tls_resolve_early_return_p): Mark unused.
23211 (_dl_tlsdesc_wake_up_held_fixups): Likewise.
23213 2017-11-02 Joseph Myers <joseph@codesourcery.com>
23215 * wcsmbs/wchar.h [__HAVE_FLOAT16 && __USE_GNU] (wcstof16):
23217 [__HAVE_FLOAT32 && __USE_GNU] (wcstof32): Likewise.
23218 [__HAVE_FLOAT64 && __USE_GNU] (wcstof64): Likewise.
23219 [__HAVE_FLOAT32X && __USE_GNU] (wcstof32x): Likewise.
23220 [__HAVE_FLOAT64X && __USE_GNU] (wcstof64x): Likewise.
23221 [__HAVE_FLOAT128X && __USE_GNU] (wcstof128x): Likewise.
23222 [__HAVE_FLOAT16 && __USE_GNU] (wcstof16_l): Likewise.
23223 [__HAVE_FLOAT32 && __USE_GNU] (wcstof32_l): Likewise.
23224 [__HAVE_FLOAT64 && __USE_GNU] (wcstof64_l): Likewise.
23225 [__HAVE_FLOAT32X && __USE_GNU] (wcstof32x_l): Likewise.
23226 [__HAVE_FLOAT64X && __USE_GNU] (wcstof64x_l): Likewise.
23227 [__HAVE_FLOAT128X && __USE_GNU] (wcstof128x_l): Likewise.
23229 2017-11-02 Mike FABIAN <mfabian@redhat.com>
23232 * localedata/locales/tpi_PG (LC_TIME): Fix syntax error.
23233 * localedata/locales/tpi_PG: Add standard header.
23235 2017-11-02 Florian Weimer <fweimer@redhat.com>
23237 test-errno-linux: quotactl can fail with EPERM in containers.
23238 * sysdeps/unix/sysv/linux/test-errno-linux.c
23239 (LIST, LIST_FORWARD): New macros.
23240 (check_error_in_list): New function.
23241 (test_wrp_rv): Accept list of permitted error codes.
23242 (test_wrp_rv2): Remove.
23243 (test_wrp): Call test_wrp_rv with list of error codes.
23244 (test_wrp2): Accept list of error codes.
23245 (do_test): Adjust. Allow EPERM for quotactl.
23247 2017-11-02 Florian Weimer <fweimer@redhat.com>
23249 * stdio-common/bug16.c (do_test): Use array_length.
23250 * stdio-common/errlist.c (_sys_nerr): Likewise.
23251 * stdio-common/printf_fp.c (PRINTF_FP_FETCH): Likewise.
23252 * stdio-common/printf_fphex.c (__printf_fphex): Use array_end.
23253 * stdio-common/psiginfo.c (psiginfo): Use array_length.
23254 * stdio-common/test-vfprintf.c (nlocs): Remove definition.
23255 (do_test): Use array_length.
23256 * stdio-common/tst-fphex.c (do_test): Use array_end, array_length.
23257 * stdio-common/tst-long-dbl-fphex.c (do_test): Use array_length.
23258 * stdio-common/tst-printf-round.c (do_test): Likewise.
23259 * stdio-common/tst-swprintf.c (nbuf): Remove definition.
23260 (CHECK): Use array_length.
23261 * stdio-common/tstdiomisc.c (t3, F): Likewise.
23262 * stdio-common/tstscanf.c (main): Likewise.
23263 * stdio-common/vfprintf.c (process_string_arg): Likewise.
23265 2017-11-02 Florian Weimer <fweimer@redhat.com>
23267 Add array_length and array_end macros.
23268 * include/array_length.h: New file.
23270 2017-11-02 Florian Weimer <fweimer@redhat.com>
23273 * posix/tst-glob-tilde.c (do_noescape): New variable.
23274 (one_test): Process it.
23275 (do_test): Set do_noescape. Add unescaping test case.
23277 2017-11-01 Joseph Myers <joseph@codesourcery.com>
23280 [(__HAVE_DISTINCT_FLOAT16 || (__HAVE_FLOAT16 && !_LIBC))
23281 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Include <bits/cmathcalls.h>
23282 with appropriate macros defined and undefined.
23283 [(__HAVE_DISTINCT_FLOAT32 || (__HAVE_FLOAT32 && !_LIBC))
23284 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
23285 [(__HAVE_DISTINCT_FLOAT64 || (__HAVE_FLOAT64 && !_LIBC))
23286 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
23287 [(__HAVE_DISTINCT_FLOAT32X || (__HAVE_FLOAT32X && !_LIBC))
23288 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
23289 [(__HAVE_DISTINCT_FLOAT64X || (__HAVE_FLOAT64X && !_LIBC))
23290 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
23291 [(__HAVE_DISTINCT_FLOAT128X || (__HAVE_FLOAT128X && !_LIBC))
23292 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Likewise.
23295 [(__HAVE_DISTINCT_FLOAT128 || (__HAVE_FLOAT128 && !LIBC))
23296 && __GLIBC_USE (IEC_60559_TYPES_EXT)]: Move conditional code after
23297 that for long double. Do not condition define and undefine of
23298 _Mdouble_complex_ on [__CFLOAT128].
23300 2017-11-01 H.J. Lu <hongjiu.lu@intel.com>
23302 * sysdeps/i386/sysdep.h: Include <sysdeps/x86/sysdep.h> instead
23303 of <sysdeps/generic/sysdep.h>.
23304 (ALIGNARG): Removed.
23305 (ASM_SIZE_DIRECTIVE): Likewise.
23308 (ENTRY_CHK): Likewise.
23309 (END_CHK): Likewise.
23310 (syscall_error): Likewise.
23311 (mcount): Likewise.
23312 (PSEUDO_END): Likewise.
23314 (atom_text_section): Likewise.
23315 * sysdeps/x86/sysdep.h: New file.
23316 * sysdeps/x86_64/sysdep.h: Include <sysdeps/x86/sysdep.h> instead
23317 of <sysdeps/generic/sysdep.h>.
23318 (ALIGNARG): Removed.
23319 (ASM_SIZE_DIRECTIVE): Likewise.
23322 (ENTRY_CHK): Likewise.
23323 (END_CHK): Likewise.
23324 (syscall_error): Likewise.
23325 (mcount): Likewise.
23326 (PSEUDO_END): Likewise.
23328 (atom_text_section): Likewise.
23330 2017-10-31 Rafal Luzynski <digitalfreak@lingonborough.com>
23332 * localedata/unicode-gen/gen_unicode_ctype.py (output_head):
23333 category of LC_CTYPE set to "i18n:2012".
23334 * localedata/locales/i18n_ctype: Regenerate.
23336 2017-10-31 Yury Norov <ynorov@caviumnetworks.com>
23338 * sysdeps/unix/sysv/linux/sigprocmask.c: Remove useless #ifdefs.
23339 * sysdeps/unix/sysv/linux/sigtimedwait.c: Likewise.
23340 * sysdeps/unix/sysv/linux/sigwait.c: Likewise.
23341 * sysdeps/unix/sysv/linux/sigwaitinfo.c: Likewise.
23343 * sysdeps/unix/sysv/linux/ia64/sigpending.c: Remove file.
23344 * sysdeps/unix/sysv/linux/s390/s390-64/sigpending.c: Likewise.
23345 * sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c: Likewise.
23346 * sysdeps/unix/sysv/linux/x86_64/sigpending.c: Likewise.
23348 2017-10-31 Joseph Myers <joseph@codesourcery.com>
23351 [__HAVE_FLOAT16 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (CMPLXF16):
23353 [__HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (CMPLXF32):
23355 [__HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (CMPLXF64):
23357 [__HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23358 (CMPLXF32X): Likewise.
23359 [__HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23360 (CMPLXF64X): Likewise.
23361 [__HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23362 (CMPLXF128X): Likewise.
23365 [__FLT_EVAL_METHOD__ == 0 || __FLT_EVAL_METHOD__ == 32]
23366 (__MATH_EVAL_FMT2): Define to add 0.0f.
23368 2017-10-31 Alan Modra <amodra@gmail.com>
23370 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_expf-power8.S: Don't
23372 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-power5+.S: Likewise.
23373 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-ppc64.S: Likewise.
23374 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf-power8.S: Likewise.
23375 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_cosf-ppc64.c: Likewise.
23376 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power7.S: Likewise.
23377 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power8.S: Likewise.
23378 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-power5+.S: Likewise.
23379 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-ppc64.S: Likewise.
23380 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-power5+.S: Likewise.
23381 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-ppc64.S: Likewise.
23382 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-power8.S: Likewise.
23383 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_sinf-ppc64.c: Likewise.
23384 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-power5+.S: Likewise.
23385 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-ppc64.S: Likewise.
23386 * sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S: Likewise.
23387 * sysdeps/powerpc/powerpc64/multiarch/memchr-power8.S: Likewise.
23388 * sysdeps/powerpc/powerpc64/multiarch/memcmp-power4.S: Likewise.
23389 * sysdeps/powerpc/powerpc64/multiarch/memcmp-power7.S: Likewise.
23390 * sysdeps/powerpc/powerpc64/multiarch/memcmp-power8.S: Likewise.
23391 * sysdeps/powerpc/powerpc64/multiarch/memcpy-a2.S: Likewise.
23392 * sysdeps/powerpc/powerpc64/multiarch/memcpy-cell.S: Likewise.
23393 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power4.S: Likewise.
23394 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power6.S: Likewise.
23395 * sysdeps/powerpc/powerpc64/multiarch/memcpy-power7.S: Likewise.
23396 * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: Likewise.
23397 * sysdeps/powerpc/powerpc64/multiarch/memmove-power7.S: Likewise.
23398 * sysdeps/powerpc/powerpc64/multiarch/mempcpy-power7.S: Likewise.
23399 * sysdeps/powerpc/powerpc64/multiarch/memrchr-power7.S: Likewise.
23400 * sysdeps/powerpc/powerpc64/multiarch/memrchr-power8.S: Likewise.
23401 * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S: Likewise.
23402 * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: Likewise.
23403 * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: Likewise.
23404 * sysdeps/powerpc/powerpc64/multiarch/memset-power8.S: Likewise.
23405 * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S: Likewise.
23406 * sysdeps/powerpc/powerpc64/multiarch/stpcpy-power8.S: Likewise.
23407 * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power7.S: Likewise.
23408 * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S: Likewise.
23409 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: Likewise.
23410 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power8.S: Likewise.
23411 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: Likewise.
23412 * sysdeps/powerpc/powerpc64/multiarch/strcasestr-power8.S: Likewise.
23413 * sysdeps/powerpc/powerpc64/multiarch/strchr-power7.S: Likewise.
23414 * sysdeps/powerpc/powerpc64/multiarch/strchr-power8.S: Likewise.
23415 * sysdeps/powerpc/powerpc64/multiarch/strchr-ppc64.S: Likewise.
23416 * sysdeps/powerpc/powerpc64/multiarch/strchrnul-power7.S: Likewise.
23417 * sysdeps/powerpc/powerpc64/multiarch/strchrnul-power8.S: Likewise.
23418 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power7.S: Likewise.
23419 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power8.S: Likewise.
23420 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power9.S: Likewise.
23421 * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: Likewise.
23422 * sysdeps/powerpc/powerpc64/multiarch/strcpy-power8.S: Likewise.
23423 * sysdeps/powerpc/powerpc64/multiarch/strcspn-power8.S: Likewise.
23424 * sysdeps/powerpc/powerpc64/multiarch/strlen-power7.S: Likewise.
23425 * sysdeps/powerpc/powerpc64/multiarch/strlen-power8.S: Likewise.
23426 * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: Likewise.
23427 * sysdeps/powerpc/powerpc64/multiarch/strncase-power8.S: Likewise.
23428 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power4.S: Likewise.
23429 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power7.S: Likewise.
23430 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power8.S: Likewise.
23431 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power9.S: Likewise.
23432 * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: Likewise.
23433 * sysdeps/powerpc/powerpc64/multiarch/strncpy-power7.S: Likewise.
23434 * sysdeps/powerpc/powerpc64/multiarch/strncpy-power8.S: Likewise.
23435 * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: Likewise.
23436 * sysdeps/powerpc/powerpc64/multiarch/strnlen-power8.S: Likewise.
23437 * sysdeps/powerpc/powerpc64/multiarch/strrchr-power7.S: Likewise.
23438 * sysdeps/powerpc/powerpc64/multiarch/strrchr-power8.S: Likewise.
23439 * sysdeps/powerpc/powerpc64/multiarch/strspn-power8.S: Likewise.
23440 * sysdeps/powerpc/powerpc64/multiarch/strstr-power7.S: Likewise.
23442 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-ppc64.S: Don't
23443 include sysdep.h and math_ldbl_opt.h.
23445 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-power5+.S: Don't
23446 include sysdep.h and math_ldbl_opt.h. Include shlib-compat.h.
23447 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-ppc64.S: Likewise.
23448 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-power6.S: Likewise.
23449 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-ppc64.S: Likewise.
23450 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-power5+.S: Likewise.
23451 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S: Likewise.
23452 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power8.S: Likewise.
23453 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power5.S: Likewise.
23454 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6.S: Likewise.
23455 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6x.S: Likewise.
23456 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power7.S: Likewise.
23457 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power8.S: Likewise.
23458 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S: Likewise.
23459 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power6x.S: Likewise.
23460 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power8.S: Likewise.
23461 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-ppc64.S: Likewise.
23462 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S: Likewise.
23463 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S: Likewise.
23464 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power8.S: Likewise.
23465 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S: Likewise.
23466 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llroundf-ppc64.S: Likewise.
23467 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-power5+.S: Likewise.
23468 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-ppc64.S: Likewise.
23469 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-power5+.S: Likewise.
23470 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-ppc64.S: Likewise.
23472 2017-10-31 Alan Modra <amodra@gmail.com>
23474 * sysdeps/powerpc/powerpc64/multiarch/strncase_l-power7.c: Include
23475 string/strncase_l.c, not string/strncase.c.
23476 (USE_IN_EXTENDED_LOCALE_MODEL): Don't define.
23477 (libc_hidden_def): Redefine.
23479 2017-10-31 Alan Modra <amodra@gmail.com>
23481 * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S:
23482 (__STRCMP, STRCMP, __strcasecmp_l): Define.
23483 (__strcasecmp): Don't define.
23485 2017-10-31 Alan Modra <amodra@gmail.com>
23487 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power8.S: Wrap in
23489 * sysdeps/powerpc/powerpc64/multiarch/strcmp-power9.S: Likewise.
23490 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power8.S: Likewise.
23491 * sysdeps/powerpc/powerpc64/multiarch/strncmp-power9.S: Likewise.
23493 2017-10-31 Alan Modra <amodra@gmail.com>
23495 * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power8.S: Don't define
23498 2017-10-31 Alan Modra <amodra@gmail.com>
23500 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S (hidden_def):
23501 Redefine only when SHARED.
23503 2017-10-30 Joseph Myers <joseph@codesourcery.com>
23505 * math/math.h [__HAVE_DISTINCT_FLOAT16 || (__HAVE_FLOAT16 && !_LIBC)]:
23506 Include <bits/math-finite.h> with appropriate macros defined and
23508 [__HAVE_DISTINCT_FLOAT32 || (__HAVE_FLOAT32 && !_LIBC)]: Likewise.
23509 [__HAVE_DISTINCT_FLOAT64 || (__HAVE_FLOAT64 && !_LIBC)]: Likewise.
23510 [__HAVE_DISTINCT_FLOAT32X || (__HAVE_FLOAT32X && !_LIBC)]: Likewise.
23511 [__HAVE_DISTINCT_FLOAT64X || (__HAVE_FLOAT64X && !_LIBC)]: Likewise.
23512 [__HAVE_DISTINCT_FLOAT128X || (__HAVE_FLOAT128X && !_LIBC)]: Likewise.
23514 * math/math.h [!_Mfloat_] (_Mfloat_): Do not define.
23515 [!_Mlong_double_] (_Mlong_double_): Likewise.
23516 [!_Mfloat16_] (_Mfloat16_): Likewise.
23517 [!_Mfloat32_] (_Mfloat32_): Likewise.
23518 [!_Mfloat64_] (_Mfloat64_): Likewise.
23519 [!_Mfloat128_] (_Mfloat128_): Likewise.
23520 [!_Mfloat32x_] (_Mfloat32x_): Likewise.
23521 [!_Mfloat64x_] (_Mfloat64x_): Likewise.
23522 [!_Mfloat128x_] (_Mfloat128x_): Likewise.
23523 (_Mdouble_): Define without indirection through those macros.
23524 * math/complex.h [!_Mfloat_] (_Mfloat_): Do not define.
23525 [!_Mfloat128_] (_Mfloat128_): Likewise.
23526 [_Mlong_double_] (_Mlong_double_): Likewise.
23527 (_Mdouble_): Define without indirection through those macros.
23528 * math/Makefile [$(long-double-fcts) != yes] (math-CPPFLAGS): Do
23529 not add -D_Mlong_double_=double.
23530 * include/math.h [_ISOMAC] (_Mlong_double_): Do not undefine.
23531 * math/test-signgam-finite-c99.c (_Mlong_double_): Likewise.
23533 2017-10-30 H.J. Lu <hongjiu.lu@intel.com>
23535 * sysdeps/x86/libc-start.c: Add /* !SHARED */.
23537 2017-10-30 H.J. Lu <hongjiu.lu@intel.com>
23539 * sysdeps/x86/libc-start.c: Reformat.
23541 2017-10-30 H.J. Lu <hongjiu.lu@intel.com>
23544 * sysdeps/i386/i586/strcpy.S (STRCPY): Use conditional branches.
23545 (1): Renamed to ...
23548 (L(Src2)): Likewise.
23549 (L(1)): Renamed to ...
23552 2017-10-30 Joseph Myers <joseph@codesourcery.com>
23554 * math/math.h [__HAVE_FLOAT16 && __USE_GNU] (M_Ef16): New macro.
23555 [__HAVE_FLOAT16 && __USE_GNU] (M_LOG2Ef16): Likewise.
23556 [__HAVE_FLOAT16 && __USE_GNU] (M_LOG10Ef16): Likewise.
23557 [__HAVE_FLOAT16 && __USE_GNU] (M_LN2f16): Likewise.
23558 [__HAVE_FLOAT16 && __USE_GNU] (M_LN10f16): Likewise.
23559 [__HAVE_FLOAT16 && __USE_GNU] (M_PIf16): Likewise.
23560 [__HAVE_FLOAT16 && __USE_GNU] (M_PI_2f16): Likewise.
23561 [__HAVE_FLOAT16 && __USE_GNU] (M_PI_4f16): Likewise.
23562 [__HAVE_FLOAT16 && __USE_GNU] (M_1_PIf16): Likewise.
23563 [__HAVE_FLOAT16 && __USE_GNU] (M_2_PIf16): Likewise.
23564 [__HAVE_FLOAT16 && __USE_GNU] (M_2_SQRTPIf16): Likewise.
23565 [__HAVE_FLOAT16 && __USE_GNU] (M_SQRT2f16): Likewise.
23566 [__HAVE_FLOAT16 && __USE_GNU] (M_SQRT1_2f16): Likewise.
23567 [__HAVE_FLOAT32 && __USE_GNU] (M_Ef32): Likewise.
23568 [__HAVE_FLOAT32 && __USE_GNU] (M_LOG2Ef32): Likewise.
23569 [__HAVE_FLOAT32 && __USE_GNU] (M_LOG10Ef32): Likewise.
23570 [__HAVE_FLOAT32 && __USE_GNU] (M_LN2f32): Likewise.
23571 [__HAVE_FLOAT32 && __USE_GNU] (M_LN10f32): Likewise.
23572 [__HAVE_FLOAT32 && __USE_GNU] (M_PIf32): Likewise.
23573 [__HAVE_FLOAT32 && __USE_GNU] (M_PI_2f32): Likewise.
23574 [__HAVE_FLOAT32 && __USE_GNU] (M_PI_4f32): Likewise.
23575 [__HAVE_FLOAT32 && __USE_GNU] (M_1_PIf32): Likewise.
23576 [__HAVE_FLOAT32 && __USE_GNU] (M_2_PIf32): Likewise.
23577 [__HAVE_FLOAT32 && __USE_GNU] (M_2_SQRTPIf32): Likewise.
23578 [__HAVE_FLOAT32 && __USE_GNU] (M_SQRT2f32): Likewise.
23579 [__HAVE_FLOAT32 && __USE_GNU] (M_SQRT1_2f32): Likewise.
23580 [__HAVE_FLOAT64 && __USE_GNU] (M_Ef64): Likewise.
23581 [__HAVE_FLOAT64 && __USE_GNU] (M_LOG2Ef64): Likewise.
23582 [__HAVE_FLOAT64 && __USE_GNU] (M_LOG10Ef64): Likewise.
23583 [__HAVE_FLOAT64 && __USE_GNU] (M_LN2f64): Likewise.
23584 [__HAVE_FLOAT64 && __USE_GNU] (M_LN10f64): Likewise.
23585 [__HAVE_FLOAT64 && __USE_GNU] (M_PIf64): Likewise.
23586 [__HAVE_FLOAT64 && __USE_GNU] (M_PI_2f64): Likewise.
23587 [__HAVE_FLOAT64 && __USE_GNU] (M_PI_4f64): Likewise.
23588 [__HAVE_FLOAT64 && __USE_GNU] (M_1_PIf64): Likewise.
23589 [__HAVE_FLOAT64 && __USE_GNU] (M_2_PIf64): Likewise.
23590 [__HAVE_FLOAT64 && __USE_GNU] (M_2_SQRTPIf64): Likewise.
23591 [__HAVE_FLOAT64 && __USE_GNU] (M_SQRT2f64): Likewise.
23592 [__HAVE_FLOAT64 && __USE_GNU] (M_SQRT1_2f64): Likewise.
23593 [__HAVE_FLOAT32X && __USE_GNU] (M_Ef32x): Likewise.
23594 [__HAVE_FLOAT32X && __USE_GNU] (M_LOG2Ef32x): Likewise.
23595 [__HAVE_FLOAT32X && __USE_GNU] (M_LOG10Ef32x): Likewise.
23596 [__HAVE_FLOAT32X && __USE_GNU] (M_LN2f32x): Likewise.
23597 [__HAVE_FLOAT32X && __USE_GNU] (M_LN10f32x): Likewise.
23598 [__HAVE_FLOAT32X && __USE_GNU] (M_PIf32x): Likewise.
23599 [__HAVE_FLOAT32X && __USE_GNU] (M_PI_2f32x): Likewise.
23600 [__HAVE_FLOAT32X && __USE_GNU] (M_PI_4f32x): Likewise.
23601 [__HAVE_FLOAT32X && __USE_GNU] (M_1_PIf32x): Likewise.
23602 [__HAVE_FLOAT32X && __USE_GNU] (M_2_PIf32x): Likewise.
23603 [__HAVE_FLOAT32X && __USE_GNU] (M_2_SQRTPIf32x): Likewise.
23604 [__HAVE_FLOAT32X && __USE_GNU] (M_SQRT2f32x): Likewise.
23605 [__HAVE_FLOAT32X && __USE_GNU] (M_SQRT1_2f32x): Likewise.
23606 [__HAVE_FLOAT64X && __USE_GNU] (M_Ef64x): Likewise.
23607 [__HAVE_FLOAT64X && __USE_GNU] (M_LOG2Ef64x): Likewise.
23608 [__HAVE_FLOAT64X && __USE_GNU] (M_LOG10Ef64x): Likewise.
23609 [__HAVE_FLOAT64X && __USE_GNU] (M_LN2f64x): Likewise.
23610 [__HAVE_FLOAT64X && __USE_GNU] (M_LN10f64x): Likewise.
23611 [__HAVE_FLOAT64X && __USE_GNU] (M_PIf64x): Likewise.
23612 [__HAVE_FLOAT64X && __USE_GNU] (M_PI_2f64x): Likewise.
23613 [__HAVE_FLOAT64X && __USE_GNU] (M_PI_4f64x): Likewise.
23614 [__HAVE_FLOAT64X && __USE_GNU] (M_1_PIf64x): Likewise.
23615 [__HAVE_FLOAT64X && __USE_GNU] (M_2_PIf64x): Likewise.
23616 [__HAVE_FLOAT64X && __USE_GNU] (M_2_SQRTPIf64x): Likewise.
23617 [__HAVE_FLOAT64X && __USE_GNU] (M_SQRT2f64x): Likewise.
23618 [__HAVE_FLOAT64X && __USE_GNU] (M_SQRT1_2f64x): Likewise.
23619 [__HAVE_FLOAT128X && __USE_GNU]: Use #error.
23621 2017-10-30 Florian Weimer <fweimer@redhat.com>
23623 * elf/ldconfig.c (search_dir): Assume that _DIRENT_HAVE_D_TYPE is
23625 * io/tst-mkdirat.c (do_test): Likewise.
23626 * io/tst-mkfifoat.c (do_test): Likewise.
23627 * io/tst-mknodat.c (do_test): Likewise.
23628 * locale/programs/charmap-dir.c (charmap_readdir): Likewise.
23629 * locale/programs/locale.c (select_dirs): Likewise.
23630 * locale/programs/locarchive.c (add_locales_to_archive): Likewise.
23631 * posix/bug-glob2.c (my_readdir): Likewise.
23632 * posix/tst-dir.c (main): Likewise.
23633 * posix/tst-glob_lstat_compat.c (my_readdir): Likewise.
23634 * posix/tst-gnuglob-skeleton.c (my_readdir): Likewise.
23636 2017-10-30 Florian Weimer <fweimer@redhat.com>
23638 * string/strings.h (ffsl, ffsll): Declare under __USE_MISC, not
23641 2017-10-30 Florian Weimer <fweimer@redhat.com>
23643 * posix/tst-gnuglob-skeleton.c: Renamed from tst-gnuglob.c.
23644 Convert to support/test-driver.c.
23645 (GLOB_FUNC, GLOB_TYPE, GLOBFREE_FUNC, DIRENT_STRUCT, STAT_STRUCT):
23646 New macro parameters.
23647 (PRINTF): Remove macro. Use test_verbose conditionals instead.
23648 * posix/tst-gnuglob.c: New file.
23649 * posix/tst-gnuglob64.c: Likewise.
23650 * posix/Makefile (tests): Add tst-gnuglob64.
23652 2017-10-30 Michal Ostrowski <ostrowski.michal@gmail.com>
23655 * localedata/locales/csb_PL (LC_TIME): Fix “abmon” for March
23656 and use a better translation for March in “mon”.
23657 * localedata/locales/csb_PL: Use more ASCII to improve the
23658 readability of the source.
23660 2017-10-30 Mike FABIAN <mfabian@redhat.com>
23663 * localedata/locales/km_KH: Use ASCII as much
23664 as possible for better readability of the source and
23665 remove useless comments.
23666 * localedata/locales/km_KH (LC_TIME): Remove era stuff, it
23667 was commented out and apparently wrong anyway because it was
23668 using Lao characters. If Buddhist era should be used
23669 for km_KH, a native speaker should write the correct formaat
23671 * localedata/locales/km_KH (LC_TIME): Add first_weekday 1
23672 (According to CLDR, the first weekday for Cambodia is Sunday).
23673 * localedata/locales/km_KH (LC_NAME): Remove name_mr and name_mrs
23674 (These were using Lao characters which must be wrong. If we get
23675 the correct data from a native speaker, we could add it back, until
23676 then it is better not to have name_mr and name_mrs at all than
23679 2017-10-27 Rafal Luzynski <digitalfreak@lingonborough.com>
23681 * locale/loadlocale.c: Correct size of
23682 _nl_value_type_LC_<category> arrays.
23684 2017-10-27 Joseph Myers <joseph@codesourcery.com>
23686 * math/math.h [__HAVE_DISTINCT_FLOAT16 || (__HAVE_FLOAT16 && !_LIBC)]:
23687 Include <bits/mathcalls-helper-functions.h> and <bits/mathcalls.h>
23688 with appropriate macros defined and undefined.
23689 [__HAVE_DISTINCT_FLOAT32 || (__HAVE_FLOAT32 && !_LIBC)]: Likewise.
23690 [__HAVE_DISTINCT_FLOAT64 || (__HAVE_FLOAT64 && !_LIBC)]: Likewise.
23691 [__HAVE_DISTINCT_FLOAT32X || (__HAVE_FLOAT32X && !_LIBC)]: Likewise.
23692 [__HAVE_DISTINCT_FLOAT64X || (__HAVE_FLOAT64X && !_LIBC)]: Likewise.
23693 [__HAVE_DISTINCT_FLOAT128X || (__HAVE_FLOAT128X && !_LIBC)]: Likewise.
23695 2017-10-27 H.J. Lu <hongjiu.lu@intel.com>
23697 * sysdeps/i386/fpu/libm-test-ulps: Regenerated for GCC 7 with
23700 2017-10-27 Mike FABIAN <mfabian@redhat.com>
23702 * localedata/locales/tt_RU (LC_MESSAGES): Start yesstr and nostr
23703 with lowercase letters to make it agree with CLDR.
23705 2017-10-27 Mike FABIAN <mfabian@redhat.com>
23708 * localedata/locales/doi_IN (LC_MESSAGES): Match only for the
23709 first letters of yesstr and nostr in yesexpr and noexpr,
23710 not for the full words.
23711 * localedata/locales/hne_IN (LC_MESSAGES): Likewise.
23712 * localedata/locales/kok_IN (LC_MESSAGES): Likewise.
23713 * localedata/locales/mr_IN (LC_MESSAGES): Likewise.
23714 * localedata/locales/sat_IN (LC_MESSAGES): Likewise.
23715 * localedata/locales/km_KH (LC_MESSAGES): Match also for the
23716 first letters of yesstr and nostr in yesexpr and noexpr,
23717 until now only English was matched in yesexpr and noexpr.
23718 * localedata/locales/tl_PH (LC_MESSAGES): Use “copy "fil_PH"”
23719 instead of “copy "en_US"”. CLDR has yesstr and nostr data for
23720 fil but not for tl. As tl and fil are very similar, using fil
23721 is probably better than using English.
23723 2017-10-27 Thierry Vignaud <thierry.vignaud@gmail.com>
23726 * localedata/locales/br_FR (LC_MESSAGES): Use all lowercase
23727 in yesstr and nostr.
23729 2017-10-26 Joseph Myers <joseph@codesourcery.com>
23731 * math/math.h [__HAVE_FLOAT16 && __GLIBC_USE
23732 (IEC_60559_TYPES_EXT)] (SNANF16): New macro.
23733 [__HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (SNANF32):
23735 [__HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)] (SNANF64):
23737 [__HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)] (SNANF32X):
23739 [__HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)] (SNANF64X):
23741 [__HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23742 (SNANF128X): Likewise.
23744 * math/math.h [__HAVE_FLOAT16 && __GLIBC_USE
23745 (IEC_60559_TYPES_EXT)] (HUGE_VAL_F16): New macro.
23746 [__HAVE_FLOAT32 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23747 (HUGE_VAL_F32): Likewise.
23748 [__HAVE_FLOAT64 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23749 (HUGE_VAL_F64): Likewise.
23750 [__HAVE_FLOAT32X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23751 (HUGE_VAL_F32X): Likewise.
23752 [__HAVE_FLOAT64X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23753 (HUGE_VAL_F64X): Likewise.
23754 [__HAVE_FLOAT128X && __GLIBC_USE (IEC_60559_TYPES_EXT)]
23755 (HUGE_VAL_F128X): Likewise.
23757 2017-10-26 Thierry Vignaud <thierry.vignaud@gmail.com>
23759 * localedata/locales/br_FR (LC_IDENTIFICATON): Add
23760 Thierry Vignaud <thierry.vignaud@gmail.com> as the contact
23761 for the br_FR locale.
23763 2017-10-26 Thierry Vignaud <thierry.vignaud@gmail.com>
23766 * localedata/locales/br_FR (LC_MESSAGES): Fix nostr.
23768 2017-10-25 Carlos O'Donell <carlos@redhat.com>
23770 * locale/programs/record-status.h: Define globals, and function
23771 prototypes. Move function bodies...
23772 * locale/programs/record-status.c: ... to here. New file.
23773 * iconv/Makefile (iconv_prog-modules): Add record-status.
23774 * locale/Makefile (lib-modules): Likewise.
23775 * iconv/iconv_prog.c: Remove verbose.
23776 * iconv/iconv_prog.h: Include record-status.h (defines verbose).
23777 * locale/programs/charmap.c (charmap_read): If warn_ascii is true then
23778 record a warning about ASCII compatibility.
23779 * locale/programs/ld-monetary.c (monetary_finish): If
23780 warn_int_curr_symbol is true then record a warning about the symbol
23781 not being in our ISO 4217 list.
23782 * locale/programs/locale.c: Include record-status.h. Remove verbose.
23783 * locale/programs/localedef.c: Include ctype.h. Remove delcaration of
23784 verbose, recorded_warning_count, recorded_error_count, and be_quiet.
23785 (OPT_NO_WARN): Define.
23786 (OPT_WARN): Define.
23787 (options): Add entry for --no-warnings, and --warnings.
23788 (set_warnings): New function to enable/disable warnings.
23789 (parse_opt): Call set_warnings for OPT_NO_WARN and OPT_WARN.
23790 * locale/programs/localedef.h: Remove warn_int_curr_symbol.
23791 * localedata/gen-locale.sh: Default flags to `--quiet -c'.
23792 Add `--no-warnings=ascii' to locales using SHIFT_JIS or SHIFT_JIXX0213.
23793 Pass flags to generate_locale.
23794 (generate_locale): Accept new flag argument and pass it to localedef
23796 * localedata/Makefile (INSTALL-SUPPORTED-LOCALES): Use
23797 --no-warnings=ascii for SHIFT_JIS and SHIFT_JISX0213 charmaps.
23799 * localedata/Makefile (test-input-data): Use full file name.
23800 * localedata/da_DK.in: Rename to...
23801 * localedata/da_DK.ISO-8859-1.in: ...this.
23802 * localedata/de_DE.in: Rename to...
23803 * localedata/de_DE.ISO-8859-1.in: ...this.
23804 * localedata/en_US.in: Rename to...
23805 * localedata/en_US.ISO-8859-1.in: ...this.
23806 * localedata/fr_FR.in: Rename to...
23807 * localedata/fr_FR.UTF-8.in: ... this.
23808 * localedata/hr_HR.in: Rename to...
23809 * localedata/hr_HR.ISO-8859-2.in: ...this.
23810 * localedata/hu_HU.in: Rename to...
23811 * localedata/hu_HU.UTF-8.in: ...this.
23812 * localedata/si_LK.in: Rename to...
23813 * localedata/si_LK.UTF-8.in: ...this.
23814 * localedata/sv_SE.in: Rename to...
23815 * localedata/sv_SE.ISO-8859-1.in: ...this.
23816 * localedata/tr_TR.in: Rename to...
23817 * localedata/tr_TR.UTF-8.in: ...this.
23818 * localedata/uk_UA.in: Rename to...
23819 * localedata/uk_UA.UTF-8.in: ...this.
23820 * localedata/sort-test.sh: Test file is locale name with the
23823 * localedata/unicode-gen/Makefile (check_i18n): Rename to
23824 check_i18n_ctype. Depend on i18n_ctype-report. Check i18n_ctype-report
23826 * localedata/locales/i18n_ctype: Regenerate.
23827 * localedata/locales/tr_TR: Likewise.
23828 * localedata/locales/translit_circle: Likewise.
23829 * localedata/locales/translit_cjk_compat: Likewise.
23830 * localedata/locales/translit_combining: Likewise.
23831 * localedata/locales/translit_compat: Likewise.
23832 * localedata/locales/translit_font: Likewise.
23833 * localedata/locales/translit_fraction: Likewise.
23835 2017-10-25 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
23837 * sysdeps/powerpc/powerpc64/power7/memcpy.S: Replace
23838 lxvd2x/stxvd2x with lvx/stvx.
23839 * sysdeps/powerpc/powerpc64/power7/memmove.S: Likewise.
23841 2017-10-25 H.J. Lu <hongjiu.lu@intel.com>
23843 * include/alloc_buffer.h: Replace "if if " with "if " in
23845 * sysdeps/mips/memcpy.S: Likkewise.
23846 * sysdeps/mips/memset.S: Likewise.
23847 * sysdeps/x86_64/fpu/multiarch/svml_s_sincosf16_core_avx512.S:
23849 * sysdeps/x86_64/fpu/multiarch/svml_s_sincosf4_core_sse4.S:
23851 * sysdeps/x86_64/fpu/multiarch/svml_s_sincosf8_core_avx2.S:
23854 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23857 * localedata/locales/cmn_TW (LC_MESSAGES): Add fullwidth yYnN to
23858 yesexpr and noexpr.
23859 * localedata/locales/hak_TW (LC_MESSAGES): Likewise.
23860 * localedata/locales/ko_KR (LC_MESSAGES): Likewise.
23861 * localedata/locales/lzh_TW (LC_MESSAGES): Likewise.
23862 * localedata/locales/nan_TW (LC_MESSAGES): Likewise.
23863 * localedata/locales/zh_CN (LC_MESSAGES): Likewise.
23864 * localedata/locales/zh_HK (LC_MESSAGES): Likewise.
23865 * localedata/locales/zh_TW (LC_MESSAGES): Likewise.
23867 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23869 * localedata/locales/am_ET (LC_MESSAGES): Sync with CLDR.
23870 * localedata/locales/az_AZ (LC_MESSAGES): Likewise.
23871 * localedata/locales/el_GR (LC_MESSAGES): Likewise.
23872 * localedata/locales/ha_NG (LC_MESSAGES): Likewise.
23873 * localedata/locales/ln_CD (LC_MESSAGES): Likewise.
23874 * localedata/locales/mfe_MU (LC_MESSAGES): Likewise.
23875 * localedata/locales/ml_IN (LC_MESSAGES): Likewise.
23876 * localedata/locales/mt_MT (LC_MESSAGES): Likewise.
23877 * localedata/locales/os_RU (LC_MESSAGES): Likewise.
23878 * localedata/locales/tg_TJ (LC_MESSAGES): Likewise.
23879 * localedata/locales/tt_RU (LC_MESSAGES): Likewise.
23880 * localedata/locales/wo_SN (LC_MESSAGES): Likewise.
23882 2017-10-25 Mike FABIAN <mfabian@redhat.com>
23884 * localedata/locales/aa_ET (LC_MESSAGES): Use ASCII as much
23885 as possible for better readability of the source.
23886 * localedata/locales/af_ZA (LC_MESSAGES): Likewise.
23887 * localedata/locales/ak_GH (LC_MESSAGES): Likewise.
23888 * localedata/locales/am_ET (LC_MESSAGES): Likewise.
23889 * localedata/locales/anp_IN (LC_MESSAGES): Likewise.
23890 * localedata/locales/ar_EG (LC_MESSAGES): Likewise.
23891 * localedata/locales/as_IN (LC_MESSAGES): Likewise.
23892 * localedata/locales/ast_ES (LC_MESSAGES): Likewise.
23893 * localedata/locales/ayc_PE (LC_MESSAGES): Likewise.
23894 * localedata/locales/az_AZ (LC_MESSAGES): Likewise.
23895 * localedata/locales/az_IR (LC_MESSAGES): Likewise.
23896 * localedata/locales/be_BY (LC_MESSAGES): Likewise.
23897 * localedata/locales/be_BY@latin (LC_MESSAGES): Likewise.
23898 * localedata/locales/bem_ZM (LC_MESSAGES): Likewise.
23899 * localedata/locales/ber_MA (LC_MESSAGES): Likewise.
23900 * localedata/locales/bg_BG (LC_MESSAGES): Likewise.
23901 * localedata/locales/bhb_IN (LC_MESSAGES): Likewise.
23902 * localedata/locales/bi_VU (LC_MESSAGES): Likewise.
23903 * localedata/locales/bo_CN (LC_MESSAGES): Likewise.
23904 * localedata/locales/br_FR (LC_MESSAGES): Likewise.
23905 * localedata/locales/bs_BA (LC_MESSAGES): Likewise.
23906 * localedata/locales/ca_ES (LC_MESSAGES): Likewise.
23907 * localedata/locales/ce_RU (LC_MESSAGES): Likewise.
23908 * localedata/locales/crh_UA (LC_MESSAGES): Likewise.
23909 * localedata/locales/cs_CZ (LC_MESSAGES): Likewise.
23910 * localedata/locales/csb_PL (LC_MESSAGES): Likewise.
23911 * localedata/locales/cv_RU (LC_MESSAGES): Likewise.
23912 * localedata/locales/cy_GB (LC_MESSAGES): Likewise.
23913 * localedata/locales/da_DK (LC_MESSAGES): Likewise.
23914 * localedata/locales/de_DE (LC_MESSAGES): Likewise.
23915 * localedata/locales/dv_MV (LC_MESSAGES): Likewise.
23916 * localedata/locales/dz_BT (LC_MESSAGES): Likewise.
23917 * localedata/locales/el_GR (LC_MESSAGES): Likewise.
23918 * localedata/locales/en_CA (LC_MESSAGES): Likewise.
23919 * localedata/locales/en_US (LC_MESSAGES): Likewise.
23920 * localedata/locales/es_ES (LC_MESSAGES): Likewise.
23921 * localedata/locales/et_EE (LC_MESSAGES): Likewise.
23922 * localedata/locales/eu_ES (LC_MESSAGES): Likewise.
23923 * localedata/locales/fa_IR (LC_MESSAGES): Likewise.
23924 * localedata/locales/ff_SN (LC_MESSAGES): Likewise.
23925 * localedata/locales/fi_FI (LC_MESSAGES): Likewise.
23926 * localedata/locales/fil_PH (LC_MESSAGES): Likewise.
23927 * localedata/locales/fo_FO (LC_MESSAGES): Likewise.
23928 * localedata/locales/fr_BE (LC_MESSAGES): Likewise.
23929 * localedata/locales/fr_CH (LC_MESSAGES): Likewise.
23930 * localedata/locales/fr_FR (LC_MESSAGES): Likewise.
23931 * localedata/locales/fr_LU (LC_MESSAGES): Likewise.
23932 * localedata/locales/fur_IT (LC_MESSAGES): Likewise.
23933 * localedata/locales/fy_DE (LC_MESSAGES): Likewise.
23934 * localedata/locales/ga_IE (LC_MESSAGES): Likewise.
23935 * localedata/locales/gd_GB (LC_MESSAGES): Likewise.
23936 * localedata/locales/gl_ES (LC_MESSAGES): Likewise.
23937 * localedata/locales/gu_IN (LC_MESSAGES): Likewise.
23938 * localedata/locales/gv_GB (LC_MESSAGES): Likewise.
23939 * localedata/locales/ha_NG (LC_MESSAGES): Likewise.
23940 * localedata/locales/hak_TW (LC_MESSAGES): Likewise.
23941 * localedata/locales/he_IL (LC_MESSAGES): Likewise.
23942 * localedata/locales/hif_FJ (LC_MESSAGES): Likewise.
23943 * localedata/locales/hne_IN (LC_MESSAGES): Likewise.
23944 * localedata/locales/hr_HR (LC_MESSAGES): Likewise.
23945 * localedata/locales/hsb_DE (LC_MESSAGES): Likewise.
23946 * localedata/locales/ht_HT (LC_MESSAGES): Likewise.
23947 * localedata/locales/hu_HU (LC_MESSAGES): Likewise.
23948 * localedata/locales/hy_AM (LC_MESSAGES): Likewise.
23949 * localedata/locales/ia_FR (LC_MESSAGES): Likewise.
23950 * localedata/locales/id_ID (LC_MESSAGES): Likewise.
23951 * localedata/locales/ig_NG (LC_MESSAGES): Likewise.
23952 * localedata/locales/ik_CA (LC_MESSAGES): Likewise.
23953 * localedata/locales/is_IS (LC_MESSAGES): Likewise.
23954 * localedata/locales/it_CH (LC_MESSAGES): Likewise.
23955 * localedata/locales/it_IT (LC_MESSAGES): Likewise.
23956 * localedata/locales/iu_CA (LC_MESSAGES): Likewise.
23957 * localedata/locales/ja_JP (LC_MESSAGES): Likewise.
23958 * localedata/locales/kk_KZ (LC_MESSAGES): Likewise.
23959 * localedata/locales/kl_GL (LC_MESSAGES): Likewise.
23960 * localedata/locales/ko_KR (LC_MESSAGES): Likewise.
23961 * localedata/locales/ks_IN (LC_MESSAGES): Likewise.
23962 * localedata/locales/ku_TR (LC_MESSAGES): Likewise.
23963 * localedata/locales/kw_GB (LC_MESSAGES): Likewise.
23964 * localedata/locales/ky_KG (LC_MESSAGES): Likewise.
23965 * localedata/locales/lb_LU (LC_MESSAGES): Likewise.
23966 * localedata/locales/lg_UG (LC_MESSAGES): Likewise.
23967 * localedata/locales/li_NL (LC_MESSAGES): Likewise.
23968 * localedata/locales/lij_IT (LC_MESSAGES): Likewise.
23969 * localedata/locales/ln_CD (LC_MESSAGES): Likewise.
23970 * localedata/locales/lo_LA (LC_MESSAGES): Likewise.
23971 * localedata/locales/lt_LT (LC_MESSAGES): Likewise.
23972 * localedata/locales/lv_LV (LC_MESSAGES): Likewise.
23973 * localedata/locales/lzh_TW (LC_MESSAGES): Likewise.
23974 * localedata/locales/mg_MG (LC_MESSAGES): Likewise.
23975 * localedata/locales/mhr_RU (LC_MESSAGES): Likewise.
23976 * localedata/locales/mi_NZ (LC_MESSAGES): Likewise.
23977 * localedata/locales/mk_MK (LC_MESSAGES): Likewise.
23978 * localedata/locales/ml_IN (LC_MESSAGES): Likewise.
23979 * localedata/locales/mn_MN (LC_MESSAGES): Likewise.
23980 * localedata/locales/ms_MY (LC_MESSAGES): Likewise.
23981 * localedata/locales/mt_MT (LC_MESSAGES): Likewise.
23982 * localedata/locales/my_MM (LC_MESSAGES): Likewise.
23983 * localedata/locales/nan_TW (LC_MESSAGES): Likewise.
23984 * localedata/locales/nan_TW@latin (LC_MESSAGES): Likewise.
23985 * localedata/locales/nb_NO (LC_MESSAGES): Likewise.
23986 * localedata/locales/nds_DE (LC_MESSAGES): Likewise.
23987 * localedata/locales/nds_NL (LC_MESSAGES): Likewise.
23988 * localedata/locales/ne_NP (LC_MESSAGES): Likewise.
23989 * localedata/locales/nhn_MX (LC_MESSAGES): Likewise.
23990 * localedata/locales/niu_NU (LC_MESSAGES): Likewise.
23991 * localedata/locales/nl_NL (LC_MESSAGES): Likewise.
23992 * localedata/locales/nn_NO (LC_MESSAGES): Likewise.
23993 * localedata/locales/nr_ZA (LC_MESSAGES): Likewise.
23994 * localedata/locales/nso_ZA (LC_MESSAGES): Likewise.
23995 * localedata/locales/oc_FR (LC_MESSAGES): Likewise.
23996 * localedata/locales/om_ET (LC_MESSAGES): Likewise.
23997 * localedata/locales/or_IN (LC_MESSAGES): Likewise.
23998 * localedata/locales/os_RU (LC_MESSAGES): Likewise.
23999 * localedata/locales/pa_IN (LC_MESSAGES): Likewise.
24000 * localedata/locales/pa_PK (LC_MESSAGES): Likewise.
24001 * localedata/locales/pap_AW (LC_MESSAGES): Likewise.
24002 * localedata/locales/pap_CW (LC_MESSAGES): Likewise.
24003 * localedata/locales/pl_PL (LC_MESSAGES): Likewise.
24004 * localedata/locales/ps_AF (LC_MESSAGES): Likewise.
24005 * localedata/locales/pt_BR (LC_MESSAGES): Likewise.
24006 * localedata/locales/quz_PE (LC_MESSAGES): Likewise.
24007 * localedata/locales/raj_IN (LC_MESSAGES): Likewise.
24008 * localedata/locales/ro_RO (LC_MESSAGES): Likewise.
24009 * localedata/locales/ru_RU (LC_MESSAGES): Likewise.
24010 * localedata/locales/ru_UA (LC_MESSAGES): Likewise.
24011 * localedata/locales/rw_RW (LC_MESSAGES): Likewise.
24012 * localedata/locales/sa_IN (LC_MESSAGES): Likewise.
24013 * localedata/locales/sc_IT (LC_MESSAGES): Likewise.
24014 * localedata/locales/sd_IN@devanagari (LC_MESSAGES): Likewise.
24015 * localedata/locales/se_NO (LC_MESSAGES): Likewise.
24016 * localedata/locales/sgs_LT (LC_MESSAGES): Likewise.
24017 * localedata/locales/si_LK (LC_MESSAGES): Likewise.
24018 * localedata/locales/sk_SK (LC_MESSAGES): Likewise.
24019 * localedata/locales/sl_SI (LC_MESSAGES): Likewise.
24020 * localedata/locales/sm_WS (LC_MESSAGES): Likewise.
24021 * localedata/locales/so_DJ (LC_MESSAGES): Likewise.
24022 * localedata/locales/sq_AL (LC_MESSAGES): Likewise.
24023 * localedata/locales/sr_RS (LC_MESSAGES): Likewise.
24024 * localedata/locales/sr_RS@latin (LC_MESSAGES): Likewise.
24025 * localedata/locales/ss_ZA (LC_MESSAGES): Likewise.
24026 * localedata/locales/st_ZA (LC_MESSAGES): Likewise.
24027 * localedata/locales/sv_SE (LC_MESSAGES): Likewise.
24028 * localedata/locales/sw_KE (LC_MESSAGES): Likewise.
24029 * localedata/locales/szl_PL (LC_MESSAGES): Likewise.
24030 * localedata/locales/tcy_IN (LC_MESSAGES): Likewise.
24031 * localedata/locales/tg_TJ (LC_MESSAGES): Likewise.
24032 * localedata/locales/th_TH (LC_MESSAGES): Likewise.
24033 * localedata/locales/the_NP (LC_MESSAGES): Likewise.
24034 * localedata/locales/ti_ER (LC_MESSAGES): Likewise.
24035 * localedata/locales/tk_TM (LC_MESSAGES): Likewise.
24036 * localedata/locales/tn_ZA (LC_MESSAGES): Likewise.
24037 * localedata/locales/to_TO (LC_MESSAGES): Likewise.
24038 * localedata/locales/tr_TR (LC_MESSAGES): Likewise.
24039 * localedata/locales/ts_ZA (LC_MESSAGES): Likewise.
24040 * localedata/locales/tt_RU (LC_MESSAGES): Likewise.
24041 * localedata/locales/tt_RU@iqtelif (LC_MESSAGES): Likewise.
24042 * localedata/locales/uk_UA (LC_MESSAGES): Likewise.
24043 * localedata/locales/unm_US (LC_MESSAGES): Likewise.
24044 * localedata/locales/ur_IN (LC_MESSAGES): Likewise.
24045 * localedata/locales/ur_PK (LC_MESSAGES): Likewise.
24046 * localedata/locales/uz_UZ (LC_MESSAGES): Likewise.
24047 * localedata/locales/uz_UZ@cyrillic (LC_MESSAGES): Likewise.
24048 * localedata/locales/ve_ZA (LC_MESSAGES): Likewise.
24049 * localedata/locales/vi_VN (LC_MESSAGES): Likewise.
24050 * localedata/locales/wa_BE (LC_MESSAGES): Likewise.
24051 * localedata/locales/wo_SN (LC_MESSAGES): Likewise.
24052 * localedata/locales/xh_ZA (LC_MESSAGES): Likewise.
24053 * localedata/locales/yi_US (LC_MESSAGES): Likewise.
24054 * localedata/locales/yo_NG (LC_MESSAGES): Likewise.
24055 * localedata/locales/yue_HK (LC_MESSAGES): Likewise.
24056 * localedata/locales/zh_CN (LC_MESSAGES): Likewise.
24057 * localedata/locales/zh_HK (LC_MESSAGES): Likewise.
24058 * localedata/locales/zh_TW (LC_MESSAGES): Likewise.
24059 * localedata/locales/zu_ZA (LC_MESSAGES): Likewise.
24061 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24063 * localedata/locales/brx_IN (LC_MESSAGES): Fix yesexpr and noexpr
24064 (Use first letters of yesstr and nostr correctly instead of using
24067 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24069 * localedata/locales/ta_IN (LC_MESSAGES): Fix yesexpr and noexpr
24070 (Use first letters of yesstr and nostr correctly).
24072 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24074 * localedata/locales/hi_IN (LC_MESSAGES): In yesexpr and noexpr,
24075 also check for the first characters of yesstr and nostr.
24076 * localedata/locales/kn_IN (LC_MESSAGES): Likewise.
24077 * localedata/locales/ks_IN@devanagari (LC_MESSAGES): Likewise.
24079 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24081 * localedata/locales/cmn_TW (LC_MESSAGES): In yesexpr and noexpr,
24082 also check for Chinese characters.
24084 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24086 * localedata/locales/chr_US (LC_MESSAGES): In yesexpr and noexpr,
24087 match also for the contents of yesstr and nostr. As the first letter
24088 of yesstr and nostr is equal, checking only for the first letter
24091 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24093 * localedata/locales/ber_DZ (LC_MESSAGES): Use copy "kab_DZ",
24094 it is the same according to Belkacem Mohammed <belkacem77@gmail.com>.
24096 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24098 * localedata/locales/kab_DZ (LC_IDENTIFICATION): Add e-mail
24099 of main contributor.
24101 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24103 * localedata/locales/zh_SG (LC_MESSAGES): Use copy "zh_CN"
24104 instead of using English.
24106 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24108 * localedata/locales/ug_CN (LC_MESSAGES): Fix noexpr and yesexpr
24109 by including the first letters of nostr and yesexpr in the regexp.
24110 Also make it more readable by using ASCII where possible.
24112 2017-10-25 Mike FABIAN <mfabian@redhat.com>
24114 * localedata/locales/te_IN (LC_MESSAGES): Fix noexpr by including
24115 the first letter of nostr in the regexp. It agrees with CLDR now.
24116 Also make it more readable by using ASCII where possible.
24118 2017-10-24 Mike FABIAN <mfabian@redhat.com>
24120 * localedata/locales/km_KH (LC_MESSAGES): Fix yestr and nostr.
24121 The yesstr and nostr apparently came from CLDR. And CLDR has a bug there:
24122 these strings contain a U+17D6 (which somewhat looks like a colon)
24123 instead of a real colon to separate the full words for “yes”
24124 and “no” from the single letter responses.
24126 2017-10-24 Mike FABIAN <mfabian@redhat.com>
24128 * localedata/locales/ka_GE (LC_MESSAGES): Fix yesexp to make
24129 it agree with CLDR (include the first letter of yesstr).
24130 Also make it more readable by using ASCII where possible.
24132 2017-10-24 Mike FABIAN <mfabian@redhat.com>
24134 * localedata/locales/mr_IN (LC_MESSAGES): Fix yesstr and nostr
24135 and improve yesexpr and noexpr. The yesstr and nostr apparently
24136 came from CLDR. And CLDR has a bug there: these strings contain
24137 a U+0903 (which looks like a colon) instead of a real colon
24138 to separate the full words for “yes” and “no” from the single
24141 2017-10-24 Mike FABIAN <mfabian@redhat.com>
24143 * localedata/locales/bn_BD (LC_MESSAGES): Use only the first
24144 letters of the full yesstr and nostr in yesexpr and noexpr.
24146 2017-10-24 Mike FABIAN <mfabian@redhat.com>
24148 * localedata/locales/an_ES (LC_MESSAGES): Add yesstr and nostr.
24149 * localedata/locales/an_ES (LC_ADDRESS): Add lang_term and lang_lib.
24150 * localedata/locales/an_ES: Make source more readable by using ASCII
24153 2017-10-24 Mike FABIAN <mfabian@redhat.com>
24156 * localedata/locales/yuw_PG: New file.
24157 * localedata/SUPPORTED: Add yuw_PG/UTF-8.
24158 * locale/iso-639.def: Add Yau (Uruwa).
24160 2017-10-23 Wilco Dijkstra <wdijkstr@arm.com>
24162 * malloc/malloc.c (_int_malloc): Add SINGLE_THREAD_P path.
24164 2017-10-23 Wilco Dijkstra <wdijkstr@arm.com>
24166 * malloc/malloc.c (__libc_malloc): Add SINGLE_THREAD_P path.
24167 (__libc_realloc): Likewise.
24168 (_mid_memalign): Likewise.
24169 (__libc_calloc): Likewise.
24171 2017-10-23 Mike FABIAN <mfabian@redhat.com>
24173 * localedata/locales/tpi_PG (LC_MESSAGES): Fix yesexpr and noexpr
24174 by adding the generic +1 and -0 as in all other locales.
24175 * localedata/locales/tpi_PG (LC_TIME): Fix some typos in the month and
24176 day names and make it more readable by using ASCII where possible.
24178 2017-10-24 Joseph Myers <joseph@codesourcery.com>
24180 * sysdeps/x86/fpu/fix-fp-int-compare-invalid.h
24181 (FIX_COMPARE_INVALID): Define to 0 if [__GNUC_PREREQ (8, 0)].
24183 2017-10-23 Adhemerval Zanella <adhemerval.zanella@linaro.org>
24185 * sysdeps/unix/sysv/linux/spawni.c (__spawnix): Use 0 instead of
24186 WNOHANG in waitpid call.
24188 2017-10-23 Siddhesh Poyarekar <siddhesh@sourceware.org>
24190 * manual/conf.texi (_SC_LEVEL1_DCACHE_LINESIZE,
24191 _SC_LEVEL1_ICACHE_LINESIZE): Document aarch64 caveat.
24193 * manual/conf.texi (_SC_LEVEL1_ICACHE_SIZE,
24194 _SC_LEVEL1_ICACHE_ASSOC, _SC_LEVEL1_ICACHE_LINESIZE,
24195 _SC_LEVEL1_DCACHE_SIZE, _SC_LEVEL1_DCACHE_ASSOC,
24196 _SC_LEVEL1_DCACHE_LINESIZE, _SC_LEVEL2_CACHE_SIZE,
24197 _SC_LEVEL2_CACHE_ASSOC, _SC_LEVEL2_CACHE_LINESIZE,
24198 _SC_LEVEL3_CACHE_SIZE, _SC_LEVEL3_CACHE_ASSOC,
24199 _SC_LEVEL3_CACHE_LINESIZE, _SC_LEVEL4_CACHE_SIZE,
24200 _SC_LEVEL4_CACHE_ASSOC, _SC_LEVEL4_CACHE_LINESIZE): New
24203 2017-10-23 Michael Collison <michael.collison@arm.com>
24205 * sysdeps/aarch64/fpu/e_sqrt.c (ieee754_sqrt): Replace asm statements
24206 with __builtin_sqrt.
24207 * sysdeps/aarch64/fpu/e_sqrtf.c (ieee754_sqrtf): Replace asm statements
24208 with __builtin_sqrtf.
24209 * sysdeps/aarch64/fpu/s_ceil.c (__ceil): Replace asm statements
24210 with __builtin_ceil.
24211 * sysdeps/aarch64/fpu/s_ceilf.c (__ceilf): Replace asm statements
24212 with __builtin_ceilf.
24213 * sysdeps/aarch64/fpu/s_floor.c (__floor): Replace asm statements
24214 with __builtin_floor.
24215 * sysdeps/aarch64/fpu/s_floorf.c (__floorf): Replace asm statements
24216 with __builtin_floorf.
24217 * sysdeps/aarch64/fpu/s_fma.c (__fma): Replace asm statements
24218 with __builtin_fma.
24219 * sysdeps/aarch64/fpu/s_fmaf.c (__fmaf): Replace asm statements
24220 with __builtin_fmaf.
24221 * sysdeps/aarch64/fpu/s_fmax.c (__fmax): Replace asm statements
24222 with __builtin_fmax.
24223 * sysdeps/aarch64/fpu/s_fmaxf.c (__fmaxf): Replace asm statements
24224 with __builtin_fmaxf.
24225 * sysdeps/aarch64/fpu/s_fmin.c (__fmin): Replace asm statements
24226 with __builtin_fmin.
24227 * sysdeps/aarch64/fpu/s_fminf.c (__fminf): Replace asm statements
24228 with __builtin_fminf.
24229 * sysdeps/aarch64/fpu/s_frint.c: Delete file.
24230 * sysdeps/aarch64/fpu/s_frintf.c: Delete file.
24231 * sysdeps/aarch64/fpu/s_llrint.c (__llrint): Replace asm statements
24232 with builtin_rint and conversion to int.
24233 * sysdeps/aarch64/fpu/s_llrintf.c (__llrintf): Likewise.
24234 * sysdeps/aarch64/fpu/s_llround.c (__llround): Replace asm statements
24235 with builtin_llround.
24236 * sysdeps/aarch64/fpu/s_llroundf.c (__llroundf): Likewise.
24237 * sysdeps/aarch64/fpu/s_lrint.c (__lrint): Replace asm statements
24238 with builtin_rint and conversion to long int.
24239 * sysdeps/aarch64/fpu/s_lrintf.c (__lrintf): Likewise.
24240 * sysdeps/aarch64/fpu/s_lround.c (__lround): Replace asm statements
24241 with builtin_lround.
24242 * sysdeps/aarch64/fpu/s_lroundf.c (__lroundf): Replace asm statements
24243 with builtin_lroundf.
24244 * sysdeps/aarch64/fpu/s_nearbyint.c (__nearbyint): Replace asm
24245 statements with __builtin_nearbyint.
24246 * sysdeps/aarch64/fpu/s_nearbyintf.c (__nearbyintf): Replace asm
24247 statements with __builtin_nearbyintf.
24248 * sysdeps/aarch64/fpu/s_rint.c (__rint): Replace asm statements
24249 with __builtin_rint.
24250 * sysdeps/aarch64/fpu/s_rintf.c (__rintf): Replace asm statements
24251 with __builtin_rintf.
24252 * sysdeps/aarch64/fpu/s_round.c (__round): Replace asm statements
24253 with __builtin_round.
24254 * sysdeps/aarch64/fpu/s_roundf.c (__roundf): Replace asm statements
24255 with __builtin_roundf.
24256 * sysdeps/aarch64/fpu/s_trunc.c (__trunc): Replace asm statements
24257 with __builtin_trunc.
24258 * sysdeps/aarch64/fpu/s_truncf.c (__truncf): Replace asm statements
24259 with __builtin_truncf.
24260 * sysdeps/aarch64/fpu/Makefile: Build e_sqrt[f].c with -fno-math-errno,
24261 and s_l[l]round[f].c too.
24263 2017-10-23 Alan Modra <amodra@gmail.com>
24265 * sysdeps/powerpc/powerpc64/power8/strncpy.S: Move LR cfi.
24266 Adjust stack after restoring regs. Add missing LR cfi_restore.
24268 2017-10-23 Alan Modra <amodra@gmail.com>
24270 * sysdeps/powerpc/powerpc64/power7/strncpy.S: Decrease FRAMESIZE.
24271 Move LR save and frame setup/teardown and LR restore to
24272 immediately around memset call. Provide cfi.
24274 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24276 * sysdeps/i386/fpu/e_powf.S: Removed.
24277 * sysdeps/i386/fpu/e_powf_log2_data.c: Likewise.
24278 * sysdeps/i386/fpu/w_powf.c: Likewise.
24279 * sysdeps/i386/fpu/libm-test-ulps: Updated for generic e_powf.c.
24280 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
24281 * sysdeps/i386/i686/fpu/multiarch/Makefile (libm-sysdep_routines):
24283 (CFLAGS-e_powf-sse2.c): New.
24284 * sysdeps/i386/i686/fpu/multiarch/e_powf-sse2.c: New file.
24285 * sysdeps/i386/i686/fpu/multiarch/e_powf.c: Likewise.
24287 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24289 * sysdeps/i386/fpu/e_log2f.S: Removed.
24290 * sysdeps/i386/fpu/e_log2f_data.c: Likewise.
24291 * sysdeps/i386/fpu/w_log2f.c: Likewise.
24292 * sysdeps/i386/fpu/libm-test-ulps: Updated for generic e_log2f.c.
24293 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
24294 * sysdeps/i386/i686/fpu/multiarch/Makefile (libm-sysdep_routines):
24296 (CFLAGS-e_log2f-sse2.c): New.
24297 * sysdeps/i386/i686/fpu/multiarch/e_log2f-sse2.c: New file.
24298 * sysdeps/i386/i686/fpu/multiarch/e_log2f.c: Likewise.
24300 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24302 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
24304 (CFLAGS-e_powf-fma.c): New.
24305 * sysdeps/x86_64/fpu/multiarch/e_powf-fma.c: New file.
24306 * sysdeps/x86_64/fpu/multiarch/e_powf.c: Likewise.
24308 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24310 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
24312 (CFLAGS-e_log2f-fma.c): New.
24313 * sysdeps/x86_64/fpu/multiarch/e_log2f-fma.c: New file.
24314 * sysdeps/x86_64/fpu/multiarch/e_log2f.c: Likewise.
24316 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24318 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
24320 (CFLAGS-e_logf-fma.c): New.
24321 * sysdeps/x86_64/fpu/multiarch/e_logf-fma.c: New file.
24322 * sysdeps/x86_64/fpu/multiarch/e_logf.c: Likewise.
24324 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24326 * sysdeps/i386/fpu/e_logf.S: Removed.
24327 * sysdeps/i386/fpu/e_logf_data.c: Likewise.
24328 * sysdeps/i386/fpu/w_logf.c: Likewise.
24329 * sysdeps/i386/i686/fpu/e_logf.S: Likewise.
24330 * sysdeps/i386/fpu/libm-test-ulps: Updated for generic e_logf.c.
24331 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
24332 * sysdeps/i386/i686/fpu/multiarch/Makefile (libm-sysdep_routines):
24334 (CFLAGS-e_logf-sse2.c): New.
24335 * sysdeps/i386/i686/fpu/multiarch/e_logf-sse2.c: New file.
24336 * sysdeps/i386/i686/fpu/multiarch/e_logf.c: Likewise.
24338 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24340 * sysdeps/i386/fpu/e_exp2f.S: Removed.
24341 * sysdeps/i386/fpu/w_exp2f.c: Likewise.
24342 * sysdeps/i386/fpu/libm-test-ulps: Updated for generic e_exp2f.c.
24343 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
24344 * sysdeps/i386/i686/fpu/multiarch/Makefile (libm-sysdep_routines):
24346 (CFLAGS-e_exp2f-sse2.c): New.
24347 * sysdeps/i386/i686/fpu/multiarch/e_exp2f-sse2.c: New file.
24348 * sysdeps/i386/i686/fpu/multiarch/e_exp2f.c: Likewise.
24350 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24352 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
24354 (CFLAGS-e_exp2f-fma.c): New.
24355 * sysdeps/x86_64/fpu/multiarch/e_exp2f-fma.c: New file.
24356 * sysdeps/x86_64/fpu/multiarch/e_exp2f.c: Likewise.
24358 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24360 * sysdeps/i386/fpu/e_exp2f_data.c: Removed.
24361 * sysdeps/i386/fpu/e_expf.S: Likewise.
24362 * sysdeps/i386/fpu/math_errf.c: Likewise.
24363 * sysdeps/i386/fpu/w_expf.c: Likewise.
24364 * sysdeps/i386/i686/fpu/multiarch/e_expf-ia32.S: Likewise.
24365 * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Likewise.
24366 * sysdeps/i386/i686/fpu/multiarch/w_expf.c: Likewise.
24367 * sysdeps/i386/fpu/libm-test-ulps: Updated for generic e_expf.c.
24368 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
24369 * sysdeps/i386/i686/fpu/multiarch/Makefile (libm-sysdep_routines):
24370 Remove e_expf-ia32.
24371 (CFLAGS-e_expf-sse2.c): New.
24372 * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.c: New file.
24373 * sysdeps/i386/i686/fpu/multiarch/e_expf.c: Rewritten.
24375 2017-10-22 H.J. Lu <hongjiu.lu@intel.com>
24377 * sysdeps/x86_64/fpu/e_expf.S: Removed.
24378 * sysdeps/x86_64/fpu/multiarch/e_expf-fma.S: Likewise.
24379 * sysdeps/x86_64/fpu/w_expf.c: Likewise.
24380 * sysdeps/x86_64/fpu/libm-test-ulps: Updated for generic
24382 * sysdeps/x86_64/fpu/multiarch/Makefile (CFLAGS-e_expf-fma.c):
24384 * sysdeps/x86_64/fpu/multiarch/e_expf-fma.c: New file.
24385 * sysdeps/x86_64/fpu/multiarch/e_expf.c (__redirect_ieee754_expf):
24387 (__redirect_expf): This.
24388 (SYMBOL_NAME): Changed to expf.
24389 (__ieee754_expf): Renamed to ...
24391 (__GI___expf): This.
24392 (__ieee754_expf): Add strong_alias.
24393 (__expf_finite): Likewise.
24395 Include <sysdeps/ieee754/flt-32/e_expf.c>.
24397 2017-10-22 Paul Eggert <eggert@cs.ucla.edu>
24400 * posix/glob.c (__glob): Fix buffer overflow during GLOB_TILDE
24403 2017-10-21 Florian Weimer <fweimer@redhat.com>
24405 * posix/Makefile (tests): Add tst-glob-tilde.
24406 (tests-special): Add tst-glob-tilde-mem.out
24407 (tst-glob-tilde-ENV): Set MALLOC_TRACE.
24408 (tst-glob-tilde-mem.out): Add mtrace check.
24409 * posix/tst-glob-tilde.c: New file.
24411 2017-10-20 Joseph Myers <joseph@codesourcery.com>
24413 * bits/floatn-common.h: New file.
24414 * math/Makefile (headers): Add bits/floatn-common.h.
24415 * bits/floatn.h: Include <bits/floatn-common.h>.
24416 * sysdeps/ia64/bits/floatn.h: Likewise.
24417 * sysdeps/ieee754/ldbl-128/bits/floatn.h: Likewise.
24418 * sysdeps/mips/ieee754/bits/floatn.h: Likewise.
24419 * sysdeps/powerpc/bits/floatn.h: Likewise.
24420 * sysdeps/x86/bits/floatn.h: Likewise.
24422 2017-10-20 Adhemerval Zanella <adhemerval.zanella@linaro.org>
24424 * configure.ac (libc_cv_gcc_incompatbile_alias): New define:
24425 indicates whether compiler emits an warning for alias for
24426 functions with incompatible types.
24429 * sysdeps/unix/sysv/linux/spawni.c (__spawnix): Handle the case where
24430 the auxiliary process is terminated by a signal before calling _exit
24433 2017-10-20 H.J. Lu <hongjiu.lu@intel.com>
24436 * sysdeps/x86/cpu-features-offsets.sym (XSAVE_STATE_SIZE_OFFSET):
24438 * sysdeps/x86/cpu-features.c: Include <libc-pointer-arith.h>.
24439 (get_common_indeces): Set xsave_state_size, xsave_state_full_size
24440 and bit_arch_XSAVEC_Usable if needed.
24441 (init_cpu_features): Remove bit_arch_Use_dl_runtime_resolve_slow
24442 and bit_arch_Use_dl_runtime_resolve_opt.
24443 * sysdeps/x86/cpu-features.h (bit_arch_Use_dl_runtime_resolve_opt):
24445 (bit_arch_Use_dl_runtime_resolve_slow): Likewise.
24446 (bit_arch_Prefer_No_AVX512): Updated.
24447 (bit_arch_MathVec_Prefer_No_AVX512): Likewise.
24448 (bit_arch_XSAVEC_Usable): New.
24449 (STATE_SAVE_OFFSET): Likewise.
24450 (STATE_SAVE_MASK): Likewise.
24451 [__ASSEMBLER__]: Include <cpu-features-offsets.h>.
24452 (cpu_features): Add xsave_state_size and xsave_state_full_size.
24453 (index_arch_Use_dl_runtime_resolve_opt): Removed.
24454 (index_arch_Use_dl_runtime_resolve_slow): Likewise.
24455 (index_arch_XSAVEC_Usable): New.
24456 * sysdeps/x86/cpu-tunables.c (TUNABLE_CALLBACK (set_hwcaps)):
24457 Support XSAVEC_Usable. Remove Use_dl_runtime_resolve_slow.
24458 * sysdeps/x86_64/Makefile (tst-x86_64-1-ENV): New if tunables
24460 * sysdeps/x86_64/dl-machine.h (elf_machine_runtime_setup):
24461 Replace _dl_runtime_resolve_sse, _dl_runtime_resolve_avx,
24462 _dl_runtime_resolve_avx_slow, _dl_runtime_resolve_avx_opt,
24463 _dl_runtime_resolve_avx512 and _dl_runtime_resolve_avx512_opt
24464 with _dl_runtime_resolve_fxsave, _dl_runtime_resolve_xsave and
24465 _dl_runtime_resolve_xsavec.
24466 * sysdeps/x86_64/dl-trampoline.S (DL_RUNTIME_UNALIGNED_VEC_SIZE):
24468 (DL_RUNTIME_RESOLVE_REALIGN_STACK): Check STATE_SAVE_ALIGNMENT
24469 instead of VEC_SIZE.
24470 (REGISTER_SAVE_BND0): Removed.
24471 (REGISTER_SAVE_BND1): Likewise.
24472 (REGISTER_SAVE_BND3): Likewise.
24473 (REGISTER_SAVE_RAX): Always defined to 0.
24475 (_dl_runtime_resolve_avx): Likewise.
24476 (_dl_runtime_resolve_avx_slow): Likewise.
24477 (_dl_runtime_resolve_avx_opt): Likewise.
24478 (_dl_runtime_resolve_avx512): Likewise.
24479 (_dl_runtime_resolve_avx512_opt): Likewise.
24480 (_dl_runtime_resolve_sse): Likewise.
24481 (_dl_runtime_resolve_sse_vex): Likewise.
24483 (_dl_runtime_resolve_fxsave): Likewise.
24484 (USE_XSAVE): Likewise.
24485 (_dl_runtime_resolve_xsave): Likewise.
24486 (USE_XSAVEC): Likewise.
24487 (_dl_runtime_resolve_xsavec): Likewise.
24488 * sysdeps/x86_64/dl-trampoline.h (_dl_runtime_resolve_avx512):
24490 (_dl_runtime_resolve_avx512_opt): Likewise.
24491 (_dl_runtime_resolve_avx): Likewise.
24492 (_dl_runtime_resolve_avx_opt): Likewise.
24493 (_dl_runtime_resolve_sse): Likewise.
24494 (_dl_runtime_resolve_sse_vex): Likewise.
24495 (_dl_runtime_resolve_fxsave): New.
24496 (_dl_runtime_resolve_xsave): Likewise.
24497 (_dl_runtime_resolve_xsavec): Likewise.
24499 2017-10-20 Paul Eggert <eggert@cs.ucla.edu>
24503 * posix/glob.c (__glob): Fix one-byte overflow.
24505 2017-10-20 Wilco Dijkstra <wdijkstr@arm.com>
24507 * malloc/malloc.c (sysdep-cancel.h): Add include.
24509 2017-10-20 Wilco Dijkstra <wdijkstr@arm.com>
24511 * malloc/malloc.c (_int_free): Add SINGLE_THREAD_P fast paths.
24513 2017-10-20 Will Hawkins <hawkinsw@borlaugic.com>
24515 * resolv/Makefile [$(build-shared)$(have-thread-library) == yesyes]
24516 (tests): Remove $(objpfx)ga_test depdendency.
24517 * resolv/ga_test.c: Remove file.
24519 2017-10-20 Mike FABIAN <mfabian@redhat.com>
24522 * localedata/SUPPORTED: Add kab_DZ/UTF-8.
24523 * localedata/locales/kab_DZ: New file.
24525 2017-10-20 H.J. Lu <hongjiu.lu@intel.com>
24527 * sysdeps/m68k/dl-machine.h (elf_machine_load_address): Use
24528 _dl_relocate_static_pie instead of _dl_start to compute load
24529 address in static PIE.
24531 2017-10-20 H.J. Lu <hongjiu.lu@intel.com>
24533 * sysdeps/m68k/start.S (_start): Check PIC instead of SHARED.
24535 2017-10-20 Mike FABIAN <mfabian@redhat.com>
24538 * localedata/SUPPORTED: Add shn_MM/UTF-8.
24539 * localedata/locales/shn_MM: New file.
24541 2017-10-20 Florian Weimer <fweimer@redhat.com>
24544 sysconf: Fix missing definition of UIO_MAXIOV on Linux.
24545 * sysdeps/posix/sysconf.c: Include <sys/uio.h>.
24546 * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-sysconf-iov_max.
24547 (tst-sysconf-iov_max): Link with tst-sysconf-iov_max-uapi.o.
24548 * sysdeps/unix/sysv/linux/tst-sysconf-iov_max.c: New file.
24549 * sysdeps/unix/sysv/linux/tst-sysconf-iov_max-uapi.c: Likewise.
24551 2017-10-19 H.J. Lu <hongjiu.lu@intel.com>
24553 * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
24555 2017-10-19 Joseph Myers <joseph@codesourcery.com>
24557 * sysdeps/mips/ieee754/bits/floatn.h: New file.
24560 * sysdeps/mips/bits/long-double.h: Move to ....
24561 * sysdeps/mips/ieee754/bits/long-double.h: ... here.
24563 2017-10-19 Wilco Dijkstra <wdijkstr@arm.com>
24565 * malloc/malloc.c (_int_free): Fix deadlock bug in consistency check.
24567 2017-10-19 Valery Reznic <valery_reznic@yahoo.com>
24568 H.J. Lu <hongjiu.lu@intel.com>
24571 * sysdeps/x86/cpu-features.c (init_cpu_features): Don't set
24572 GLRO(dl_platform) to NULL.
24573 * sysdeps/x86_64/Makefile (tests): Add tst-platform-1.
24574 (modules-names): Add tst-platformmod-1 and
24575 x86_64/tst-platformmod-2.
24576 (CFLAGS-tst-platform-1.c): New.
24577 (CFLAGS-tst-platformmod-1.c): Likewise.
24578 (CFLAGS-tst-platformmod-2.c): Likewise.
24579 (LDFLAGS-tst-platformmod-2.so): Likewise.
24580 ($(objpfx)tst-platform-1): Likewise.
24581 ($(objpfx)tst-platform-1.out): Likewise.
24582 (tst-platform-1-ENV): Likewise.
24583 ($(objpfx)x86_64/tst-platformmod-2.os): Likewise.
24584 * sysdeps/x86_64/tst-platform-1.c: New file.
24585 * sysdeps/x86_64/tst-platformmod-1.c: Likewise.
24586 * sysdeps/x86_64/tst-platformmod-2.c: Likewise.
24588 2017-10-19 Mike FABIAN <mfabian@redhat.com>
24591 * locale/iso-639.def: Add Karbi.
24592 * localedata/SUPPORTED: Add mjw_IN/UTF-8.
24593 * localedata/locales/mjw_IN: New file.
24595 2017-10-18 Joseph Myers <joseph@codesourcery.com>
24597 * sysdeps/ieee754/ldbl-128/Makeconfig: New file.
24598 * sysdeps/ieee754/ldbl-128/bits/floatn.h: Likewise.
24599 * sysdeps/ieee754/ldbl-128/float128-abi.h: Likewise.
24600 * sysdeps/generic/libm-alias-ldouble.h: Include <bits/floatn.h>.
24601 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128]
24602 (libm_alias_ldouble_other_r): Also create _Float128 alias.
24603 * sysdeps/ieee754/ldbl-opt/libm-alias-ldouble.h: Include
24605 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128]
24606 (libm_alias_ldouble_other_r): Also create _Float128 alias.
24607 * manual/math.texi (Mathematics): Document additional architecture
24608 support for _Float128.
24609 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Update.
24610 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Likewise.
24611 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
24612 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
24613 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
24614 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
24615 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
24616 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
24617 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
24618 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
24619 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
24620 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
24621 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
24622 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
24623 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
24625 2017-10-18 Renlin Li <renlin.li@arm.com>
24627 * sysdeps/aarch64/dl-machine.h (elf_machine_load_address): Use
24628 _DYNAMIC symbol to calculate load address.
24630 2017-10-18 Paul A. Clarke <pc@us.ibm.com>
24632 * sysdeps/powerpc/fpu/fenv_private.h (_FPU_MASK_TRAPS_RN):
24633 (_FPU_MASK_FRAC_INEX_RET_CC): Fix masks to more properly handle
24635 (_FPU_MASK_RN): Expand _FPU_MASK_RN to 64bit hex.
24636 (_FPU_MASK_NOT_RN_NI): Treat bit 52 (left-to-right) as reserved.
24638 2017-10-18 Mike FABIAN <mfabian@redhat.com>
24641 * localedata/locales/pl_PL (LC_MONETARY): Use U+202F as mon_thousands_sep
24642 and improve readability by using more ASCII.
24643 * localedata/locales/pl_PL (LC_NUMERIC): Use U+202F as thousands_sep
24644 and improve readability by using more ASCII.
24646 2017-10-18 Wilco Dijkstra <wdijkstr@arm.com>
24648 * malloc/malloc.c (malloc_state): Use int for have_fastchunks since
24649 not all targets support atomics on bool.
24651 2017-10-17 Joseph Myers <joseph@codesourcery.com>
24653 * include/float.h [!__GNUC_PREREQ (7, 0) && __HAVE_FLOAT128 &&
24654 __GLIBC_USE (IEC_60559_TYPES_EXT)] (FLT128_MAX): Define using
24656 [!__GNUC_PREREQ (7, 0) && __HAVE_FLOAT128 && __GLIBC_USE
24657 (IEC_60559_TYPES_EXT)] (FLT128_EPSILON): Likewise.
24658 [!__GNUC_PREREQ (7, 0) && __HAVE_FLOAT128 && __GLIBC_USE
24659 (IEC_60559_TYPES_EXT)] (FLT128_MIN): Likewise.
24660 [!__GNUC_PREREQ (7, 0) && __HAVE_FLOAT128 && __GLIBC_USE
24661 (IEC_60559_TYPES_EXT)] (FLT128_TRUE_MIN): Likewise.
24663 2017-10-17 Adhemerval Zanella <adhemerval.zanella@linaro.org>
24665 * bits/uio-ext.h (RWF_HIPRI, RWF_DSYNC, RWF_SYNC, RWF_NOWAIT): New
24668 2017-10-17 Wilco Dijkstra <wdijkstr@arm.com>
24671 * malloc/arena.c (ptmalloc_init): Call malloc_init_state.
24672 * malloc/malloc.c (do_check_free_chunk): Fix build bug.
24673 (do_check_remalloced_chunk): Fix build bug.
24674 (do_check_malloc_state): Add assert that checks arena->top.
24675 (malloc_consolidate): Remove initialization.
24676 (int_mallinfo): Remove call to malloc_consolidate.
24677 (__libc_mallopt): Clarify why malloc_consolidate is needed.
24679 2017-10-17 Wilco Dijkstra <wdijkstr@arm.com>
24681 * malloc/malloc.c (FASTCHUNKS_BIT): Remove.
24682 (have_fastchunks): Remove.
24683 (clear_fastchunks): Remove.
24684 (set_fastchunks): Remove.
24685 (malloc_state): Add have_fastchunks.
24686 (malloc_init_state): Use have_fastchunks.
24687 (do_check_malloc_state): Remove incorrect invariant checks.
24688 (_int_malloc): Use have_fastchunks.
24689 (_int_free): Likewise.
24690 (malloc_consolidate): Likewise.
24692 2017-10-17 Wilco Dijkstra <wdijkstr@arm.com>
24694 * malloc/malloc.c (tcache_put): Inline.
24695 (tcache_get): Inline.
24697 2017-10-17 Jordi Mallach <jordi@gnu.org>
24699 Aurelien Jarno <aurelien@aurel32.net>
24701 * localedata/locales/ca_ES@valencia: New file.
24702 * localedata/SUPPORTED: Add ca_ES@valencia/UTF-8.
24704 2017-10-17 Romain Naour <romain.naour@gmail.com> (tiny change)
24707 * math/math.h: Let signbit use the builtin in C++ mode with gcc
24710 2017-10-17 Adhemerval Zanella <adhemerval.zanella@linaro.org>
24712 * scripts/build-many-glibcs.py (Context.add_all_configs):
24713 Add arm-linux-gnueabihf multiarch extra_glibcs.
24715 * sysdeps/generic/ifunc-init.h: New file.
24716 * sysdeps/x86/init-arch.h: Use generic ifunc-init.h.
24718 2017-10-17 Mike FABIAN <mfabian@redhat.com>
24721 * localedata/locales/el_GR: Set n_cs_precedes to 0.
24722 * localedata/locales/el_CY: copy "el_GR" because it is identical.
24723 * stdlib/tst-strfmon_l.c: adapt test case.
24725 2017-10-16 Joseph Myers <joseph@codesourcery.com>
24727 * sysdeps/generic/float128-abi.h: New file.
24728 * sysdeps/ieee754/float128/Versions (FLOAT128_VERSION): Move
24729 non-__prefixed symbols to ....
24730 * math/Versions: ... here. Include <float128-abi.h>.
24731 * stdlib/Versions ... and here. Include <float128-abi.h>
24733 2017-10-16 Florian Weimer <fweimer@redhat.com>
24735 * version.h (VERSION): Switch to ".9000" as the development
24738 2017-10-16 Florian Weimer <fweimer@redhat.com>
24741 * malloc/mcheck-init.c (__malloc_initialize_hook): Use
24742 compat_symbol_reference to access non-default version.
24744 2017-10-16 Florian Weimer <fweimer@redhat.com>
24746 * malloc/Makefile (others-extras): Set to mcheck-init.o.
24748 2017-10-16 Carlos O'Donell <carlos@redhat.com>
24750 * include/shlib-compat.h (compat_symbol_reference): Update
24753 2017-10-16 Joseph Myers <joseph@codesourcery.com>
24755 * math/Makefile (test-types): Add
24756 $(type-float128-$(float128-alias-fcts)).
24757 * math/test-float128.h (TYPE_STR): Define conditional on
24758 [FLT128_MANT_DIG == LDBL_MANT_DIG].
24759 (ULP_IDX): Likewise.
24760 (ULP_I_IDX): Likewise.
24762 * stdlib/strtold.c: Include <bits/floatn.h>
24763 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (strtof128): Define
24764 and later undefine as macro. Define as weak alias if
24766 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (wcstof128): Define
24767 and later undefine as macro. Define as weak alias if
24769 * sysdeps/ieee754/ldbl-128/strtold_l.c [__HAVE_FLOAT128 &&
24770 !__HAVE_DISTINCT_FLOAT128] (strtof128_l): Define and later
24771 undefine as macro. Define as weak alias if [!USE_WIDE_CHAR].
24772 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (wcstof128_l):
24773 Define and later undefine as macro. Define as weak alias if
24775 * sysdeps/ieee754/ldbl-64-128/strtold_l.c: Include
24777 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (strtof128_l):
24778 Define and later undefine as macro. Define as weak alias if
24780 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (wcstof128_l):
24781 Define and later undefine as macro. Define as weak alias if
24784 2017-10-15 Carlos O'Donell <carlos@redhat.com>
24786 * localedata/collate-test.c (allocate_arrays): Don't use \n in
24787 record_verbose messages.
24789 2017-10-15 H.J. Lu <hongjiu.lu@intel.com>
24792 * malloc/hooks.c (realloc_check): Use DIAG_IGNORE_NEEDS_COMMENT
24793 to silence -O3 -Wall warning with GCC 7.
24795 2017-10-14 H.J. Lu <hongjiu.lu@intel.com>
24797 * Makeconfig (+link-static-before-libc): Use the first of
24798 $(CRT-$(@F)) and $(csu-objpfx)$(static-start-installed-name).
24799 * gmon/Makefile (tests): Add tst-gmon-static.
24800 (tests-static): Likewise.
24801 (CFLAGS-tst-gmon-static.c): New.
24802 (CRT-tst-gmon-static): Likewise.
24803 (DEFAULT-LDFLAGS-tst-gmon-static): Likewise.
24804 (tst-gmon-static-ENV): Likewise.
24805 (tests-special): Likewise.
24806 ($(objpfx)tst-gmon-static.out): Likewise.
24807 (clean-tst-gmon-static-data): Likewise.
24808 ($(objpfx)tst-gmon-static-gprof.out): Likewise.
24809 * gmon/tst-gmon-static-gprof.sh: New file.
24810 * gmon/tst-gmon-static.c: Likewise.
24812 2017-10-13 Carlos O'Donell <carlos@redhat.com>
24815 * locale/programs/linereader.c (get_string): Don't warn on
24816 non-symbolic character.
24819 * locale/programs/ld-monetary.c (monetary_finish): Allow ""
24823 * locale/programs/record-status.h: New file
24824 * locale/programs/locale.c: Add comment.
24825 * locale/programs/charmap-dir.c: Don't include error.h.
24826 (charmap_opendir): Use record_error.
24827 * locale/programs/charmap.c: Don't include error.h.
24828 (charmap_read): Use record_error, and record_warning.
24829 (parse_charmap): Likewise.
24830 * locale/programs/ld-address.c: Don't include error.h.
24831 (address_finish): Use record_error, and record_warning.
24832 * locale/programs/ld-collate.c: Don't include error.h.
24833 (collate_finish): Use record_error, and record_error_at_line.
24834 * locale/programs/ld-ctype.c (ctype_finish): Use record_error.
24835 (ctype_class_new): Likewise.
24836 (ctype_map_new): Likewise.
24837 (set_one_default): Likewise.
24838 (set_class_defaults): Likewise.
24839 (translit_flatten): Likewise.
24840 (allocate_arrays): Use record_error, and record_verbose.
24841 * locale/programs/ld-identification.c: Don't include error.h.
24842 (indentation_finish): Use record_error and record_warning.
24843 * locale/programs/ld-measurement.c: Don't include error.h.
24844 (measurement_finish): Use record_error.
24845 * locale/programs/ld-messages.c
24846 (message_finish): Likewise.
24847 * locale/programs/ld-monetary.c
24848 (monetary_finish): Likewise.
24849 * locale/programs/ld-name.c (name_finish): Use record_error
24850 and record_warning.
24851 * locale/programs/ld-numeric.c
24852 (numeric_finish): Use record_error.
24853 * locale/programs/ld-paper.c: Don't include error.h.
24854 (paper_finish): Use record_error.
24855 * locale/programs/ld-telephone.c: Don't include error.h.
24856 (telephone_finish): Use record_error.
24857 * locale/programs/ld-time.c (time_finish): Likewise.
24858 * locale/programs/linereader.h (lr_error): Make inline func.
24859 * locale/programs/localedef.c: Define recorded_warning_count,
24860 and recorded_error_count.
24861 (main): Use record_error. Use recorded_error_count and
24862 recorded_warning_count to issue correct error returns.
24863 (add_to_readlist): Use record_error.
24864 (find_locale): Likewise.
24865 (load_locale): Likewise.
24866 * locale/programs/localedef.h: Remove be_quiet
24867 and WITH_CUR_LOCALE.
24868 * locale/programs/locarchive.c (compare_from_file): Use
24870 * locale/programs/locfile.c (write_locale_data): Use
24872 * locale/programs/repertoire.c: Dont include error.h.
24873 (repertoire_complain): Use record_error.
24874 * localedata/tst-fmon.sh: Expect failures from localedef.
24875 * localedata/tst-locale.sh: Likewise.
24876 * localedata/gen-locale.sh: Expect failures from SHIFT_JIS.
24878 * localedata/unicode-gen/Makefile (GENERATED): Use i18n_ctype.
24879 (REPORTS): Likewise.
24881 (i18n): Rename to...
24882 (i18n_ctype): ...this.
24883 (i18n-report): Rename to...
24884 (i18n_ctype-report): ...this.
24885 * localedata/locales/i18n_ctype: Regenerate.
24886 * localedata/locales/i18n: copy i18n_ctype.
24888 2017-10-13 Joseph Myers <joseph@codesourcery.com>
24890 * stdlib/strfroml.c: Include <bits/floatn.h>.
24891 [__HAVE_FLOAT128 && !__HAVE_DISTINCT_FLOAT128] (strfromf128):
24892 Define before include of <stdlib.h> and undefine afterwards, then
24893 define as weak alias.
24895 * sysdeps/ieee754/ldbl-64-128/s_nextafterl.c (weak_alias):
24896 Undefine and restore default definition. Use
24897 libm_alias_ldouble_other.
24899 2017-10-13 Peter Zelezny <peter.zelezny@dektech.com.au>
24902 * nptl/allocatestack.c (__nptl_setxid_error): Preserve error code
24905 2017-10-13 James Clarke <jrtc27@jrtc27.com>
24907 * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela):
24908 Assign sym_map to be map for local symbols, as TLS relocations
24909 use sym_map to determine whether the symbol is defined and to
24910 extract the TLS information.
24911 * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Likewise.
24912 * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
24914 2017-10-13 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
24917 * sysdeps/powerpc/fpu/math_private.h (math_opt_barrier):
24918 (math_force_eval): Add powerpc version.
24921 * stdio-common/tst-printf.c (fp_test): Add tests for DBL_MAX and
24923 (do_test): Likewise.
24924 * stdio-common/tst-printf.sh: Likewise.
24925 * sysdeps/powerpc/powerpc64/power7/add_n.S: Invert the initial
24926 ifdef clause in order to set the carry bit right. Replace r0 by
24927 0 without changing the behavior.
24929 2017-10-13 Joseph Myers <joseph@codesourcery.com>
24931 * sysdeps/sparc/sparc32/fpu/s_fabsl.c: Include
24932 <libm-alias-ldouble.h>.
24933 (fabsl): Define using libm_alias_ldouble.
24934 * sysdeps/sparc/sparc64/fpu/s_fabsl.c: Include
24935 <libm-alias-ldouble.h>.
24936 (fabsl): Define using libm_alias_ldouble.
24938 * sysdeps/ieee754/ldbl-opt/w_lgamma_compatl.c [BUILD_LGAMMA]:
24939 Remove conditional code.
24941 * sysdeps/ieee754/ldbl-opt/s_clog10l.c (__clog10l__internal):
24942 Rename to __clog10_internal_l.
24943 (__clog10_internal_l): Define aliases using
24944 libm_alias_ldouble_other instead of using libm_alias_ldouble_other
24947 2017-10-13 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
24949 * benchtests/Makefile (bench-math): Add sinf, cosf and sincosf.
24950 * benchtests/sincosf-inputs: New file.
24951 * benchtests/cosf-inputs: New file.
24952 * benchtests/sinf-inputs: New file.
24954 2017-10-12 Szabolcs Nagy <szabolcs.nagy@arm.com>
24956 * posix/tst-spawn.c (do_test): Wait for both children.
24958 2017-10-12 H.J. Lu <hongjiu.lu@intel.com>
24961 * gmon/Makefile [$(have-fpie)$(build-shared) == yesyes] (tests,
24962 tests-pie): Add tst-gmon-pie.
24963 (CFLAGS-tst-gmon-pie.c): New.
24964 (CRT-tst-gmon-pie): Likewise.
24965 (tst-gmon-pie-ENV): Likewise.
24966 [$(have-fpie)$(build-shared) == yesyes] (tests-special): Likewise.
24967 ($(objpfx)tst-gmon-pie.out): Likewise.
24968 (clean-tst-gmon-pie-data): Likewise.
24969 ($(objpfx)tst-gmon-pie-gprof.out): Likewise.
24970 * gmon/gmon.c [PIC]: Include <link.h>.
24971 [PIC] (callback): New function.
24972 (write_hist): Add an argument for load address. Subtract load
24974 (write_call_graph): Likewise.
24975 (write_gmon): Call __dl_iterate_phdr to get load address, pass
24976 it to write_hist and write_call_graph.
24977 * gmon/tst-gmon-pie.c: New file.
24979 2017-10-11 Joseph Myers <joseph@codesourcery.com>
24981 * math/Makefile (test-types-basic): New variable.
24982 (test-types): Likewise.
24983 (libm-test-support): Use $(test-types) instead of $(types).
24984 (libm-tests-base-normal): Likewise.
24985 (libm-tests-base-finite): Likewise.
24986 (libm-tests-base-inline): Likewise.
24987 (generated): Likewise.
24988 ($(objpfx)libm-test-support-$(t).c): Likewise.
24989 (libm-tests-for-type iterator): Likewise.
24990 (libm-test-support iterator): Likewise.
24991 * math/libm-test-support.c (ulp_i_idx): Use ULP_I_IDX.
24992 (ulp_idx): Use ULP_IDX.
24993 * math/test-ldouble.h: Include <float.h>.
24994 (TYPE_STR): Define conditional on [LDBL_MANT_DIG == DBL_MANT_DIG].
24995 (ULP_IDX): New macro.
24996 (ULP_I_IDX): Likewise.
24997 * math/test-double.h (ULP_IDX): Likewise.
24998 (ULP_I_IDX): Likewise.
24999 * math/test-float.h (ULP_IDX): Likewise.
25000 (ULP_I_IDX): Likewise.
25001 * math/test-float128.h (ULP_IDX): Likewise.
25002 (ULP_I_IDX): Likewise.
25004 2017-10-11 Adhemerval Zanella <adhemerval.zanella@linaro.org>
25006 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Remove file.
25007 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
25008 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
25009 * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h: Likewise.
25010 * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
25011 * sysdeps/unix/sysv/linux/nios2/sysdep-cancel.h: Likewise.
25012 * sysdeps/unix/sysv/linux/powerpc/sysdep-cancel.h: Likewise.
25013 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
25014 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
25015 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
25016 * sysdeps/unix/sysv/linux/sparc/sysdep-cancel.h: Likewise.
25017 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
25018 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
25019 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
25020 (SINGLE_THREAD_BY_GLOBAL): Define.
25021 * sysdeps/unix/sysv/linux/aarch64/sysdep.h (SINGLE_THREAD_BY_GLOBAL):
25023 * sysdeps/unix/sysv/linux/alpha/sysdep.h (SINGLE_THREAD_BY_GLOBAL):
25025 * sysdeps/unix/sysv/linux/arm/sysdep.h (SINGLE_THREAD_BY_GLOBAL):
25027 * sysdeps/unix/sysv/linux/hppa/sysdep.h (SINGLE_THREAD_BY_GLOBAL):
25029 * sysdeps/unix/sysv/linux/microblaze/sysdep.h
25030 (SINGLE_THREAD_BY_GLOBAL): Likewise.
25031 * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SINGLE_THREAD_BY_GLOBAL):
25034 2017-10-11 Andreas Schwab <schwab@suse.de>
25036 * nis/Makefile (aux): Remove.
25037 * nscd/Makefile (aux): Add nscd_hash.
25038 (nscd-modules): Likewise.
25039 ($(objpfx)nscd): Don't depend on libnsl.
25040 * nscd/nscd_hash.c: New file.
25041 * nscd/nscd_hash.h: Likewise.
25042 * nscd/cache.c: Include "nscd_hash.h" instead of <rpcsvc/nis.h>.
25043 (cache_search, cache_add): Use __nscd_hash instead of __nis_hash.
25044 * nscd/nscd_helper.c: Include <sys/param.h> and "nscd_hash.h"
25045 instead of <nis/rpcsvc/nis.h>.
25046 (__nscd_cache_search): Use __nscd_hash instead of __nis_hash.
25048 2017-10-11 Florian Weimer <fweimer@redhat.com>
25051 Avoid large NSS buffers with many addresses, aliases.
25052 * nss/nss_files/files-hosts.c (gethostbyname3_multi): Rewrite
25053 using dynarrays and struct alloc_buffer.
25054 * nss/Makefile (tests): Add tst-nss-files-hosts-multi.
25055 (tst-nss-files-hosts-multi): Link with -ldl.
25056 * nss/tst-nss-files-hosts-multi.c: New file.
25058 2017-10-11 Florian Weimer <fweimer@redhat.com>
25061 * nss/nss_files/files-hosts.c (gethostbyname3_multi): Use struct
25062 scratch_buffer. Eliminate gotos.
25064 2017-10-11 Joseph Myers <joseph@codesourcery.com>
25066 * sysdeps/ieee754/ldbl-opt/s_clog10l.c: Use
25067 libm_alias_ldouble_other.
25068 * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c (weak_alias): Do not
25069 undefine and redefine.
25070 [LIBM_SVID_COMPAT && !LONG_DOUBLE_COMPAT (libm, GLIBC_2_1)]
25071 (exp10l): Do not define here.
25072 * sysdeps/ieee754/ldbl-opt/w_lgamma_compatl.c [BUILD_LGAMMA]
25073 (weak_alias): Undefine and redefine.
25074 [BUILD_LGAMMA]: Use libm_alias_ldouble_other.
25075 * sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c
25076 [LIBM_SVID_COMPAT] (weak_alias): Undefine and redefine here.
25077 [LIBM_SVID_COMPAT]: Use libm_alias_ldouble_other.
25079 * soft-fp/fmadf4.c: Include <libm-alias-double.h>.
25080 [!__fma] (fma): Define using libm_alias_double.
25081 * soft-fp/fmasf4.c: Include <libm-alias-float.h>.
25082 [!__fmaf] (fmaf): Define using libm_alias_float.
25083 * soft-fp/fmatf4.c: Include <libm-alias-ldouble.h>.
25084 (fmal): Define using libm_alias_ldouble.
25086 2017-10-10 Joseph Myers <joseph@codesourcery.com>
25088 * sysdeps/generic/libm-alias-double.h (libm_alias_double_other_r):
25090 (libm_alias_double_other): Likewise.
25091 (libm_alias_double_r): Use libm_alias_double_other_r.
25092 * sysdeps/generic/libm-alias-float.h (libm_alias_float_other_r):
25094 (libm_alias_float_other): Likewise.
25095 (libm_alias_float_r): Use libm_alias_float_other_r.
25096 * sysdeps/generic/libm-alias-float128.h
25097 (libm_alias_float128_other_r): New macro.
25098 (libm_alias_float128_other): Likewise.
25099 (libm_alias_float128_r): Use libm_alias_float128_other_r.
25100 * sysdeps/generic/libm-alias-ldouble.h
25101 (libm_alias_ldouble_other_r): New macro.
25102 (libm_alias_ldouble_other): Likewise.
25103 (libm_alias_ldouble_r): Use libm_alias_ldouble_other_r.
25104 * sysdeps/ieee754/ldbl-opt/libm-alias-double.h
25105 (libm_alias_double_other_r): New macro.
25106 (libm_alias_double_other): Likewise.
25107 (libm_alias_double_r): Use libm_alias_double_other_r.
25108 * sysdeps/ieee754/ldbl-opt/libm-alias-ldouble.h
25109 (libm_alias_ldouble_other_r): New macro.
25110 (libm_alias_ldouble_other): Likewise.
25111 (libm_alias_ldouble_r): Use libm_alias_ldouble_other_r.
25112 * math/w_lgamma_main.c: Include <libm-alias-double.h>.
25113 [!USE_AS_COMPAT]: Use libm_alias_double_other.
25114 * math/w_lgammaf_main.c: Include <libm-alias-float.h>.
25115 [!USE_AS_COMPAT]: Use libm_alias_float_other.
25116 * math/w_lgammal_main.c: Include <libm-alias-ldouble.h>.
25117 [!USE_AS_COMPAT]: Use libm_alias_ldouble_other.
25118 * math/w_exp2f.c: Use libm_alias_float_other.
25119 * math/w_expf.c: Likewise.
25120 * math/w_log2f.c: Likewise.
25121 * math/w_logf.c: Likewise.
25122 * math/w_powf.c: Likewise.
25123 * sysdeps/ieee754/flt-32/e_exp2f.c: Include <libm-alias-float.h>.
25124 [!__exp2f]: Use libm_alias_float_other.
25125 * sysdeps/ieee754/flt-32/e_expf.c: Include <libm-alias-float.h>.
25126 [!__expf]: Use libm_alias_float_other.
25127 * sysdeps/ieee754/flt-32/e_log2f.c: Include <libm-alias-float.h>.
25128 [!__log2f]: Use libm_alias_float_other.
25129 * sysdeps/ieee754/flt-32/e_logf.c: Include <libm-alias-float.h>.
25130 [!__logf]: Use libm_alias_float_other.
25131 * sysdeps/ieee754/flt-32/e_powf.c: Include <libm-alias-float.h>.
25132 [!__powf]: Use libm_alias_float_other.
25134 2017-10-10 Florian Weimer <fweimer@redhat.com>
25136 * nss/nss_files/files-hosts.c (gethostbyname3_multi): New
25138 (_nss_files_gethostbyname3_r): Call it.
25140 2017-10-09 Joseph Myers <joseph@codesourcery.com>
25142 * sysdeps/generic/math-type-macros.h [!declare_mgen_alias]: Give
25143 error. Remove default definition of declare_mgen_alias.
25144 [!declare_mgen_alias_r]: Likewise.
25145 * sysdeps/generic/math-type-macros-double.h
25146 [!declare_mgen_alias_r] (declare_mgen_alias_r): New macro.
25147 * sysdeps/generic/math-type-macros-float.h [!declare_mgen_alias_r]
25148 (declare_mgen_alias_r): Likewise.
25149 * sysdeps/generic/math-type-macros-float128.h
25150 [!declare_mgen_alias_r] (declare_mgen_alias_r): Likewise.
25151 * sysdeps/generic/math-type-macros-ldouble.h
25152 [!declare_mgen_alias_r] (declare_mgen_alias_r): Likewise.
25153 * math/w_lgamma_r_template.c (declare_mgen_alias_r_x): Remove
25155 (declare_mgen_alias_r_s): Likewise.
25156 (declare_mgen_alias_r): Likewise.
25157 * math/w_lgamma_r_compat.c: Include <libm-alias-double.h>.
25158 (lgamma_r): Define using libm_alias_double_r.
25159 * math/w_lgammaf_r_compat.c: Include <libm-alias-float.h>.
25160 (lgammaf_r): Define using libm_alias_float_r.
25161 * math/w_lgammal_r_compat.c: Include <libm-alias-ldouble.h>.
25162 (lgammal_r): Define using libm_alias_ldouble_r.
25163 * sysdeps/ieee754/ldbl-opt/w_lgamma_r_compat.c: Remove file.
25164 * sysdeps/ieee754/ldbl-opt/w_lgammal_r_compat.c: Likewise.
25166 2017-10-09 Adhemerval Zanella <adhemerval.zanella@linaro.org>
25168 * lib/glob.c (__glob_pattern_type): Remove now-spurious
25169 extern declaration.
25171 2017-10-09 Joseph Myers <joseph@codesourcery.com>
25173 * sysdeps/ieee754/ldbl-opt/w_scalbln.c: Remove file.
25175 2017-10-09 Jonathan Wakely <jwakely@redhat.com>
25178 * include/features.h [__cplusplus >= 201703] (__USE_ISOC11): Define.
25179 [__cplusplus >= 201103] (__USE_ISOC99): Define.
25180 * math/Makefile (test-math-cxx11): New test.
25181 * math/test-math-cxx11.cc: New file.
25183 2017-10-08 Christian Brauner <christian.brauner@ubuntu.com>
25185 * login/openpty.c (openpty): Close slave pty file descriptor on error.
25187 * login/openpty.c (openpty): If defined, use the TIOCGPTPEER ioctl()
25188 call to allocate the slave pty file descriptor.
25190 2017-10-06 Joseph Myers <joseph@codesourcery.com>
25192 * sysdeps/ieee754/ldbl-128/s_fma.c: Include <libm-alias-double.h>.
25193 [!__fma] (fma): Define using libm_alias_double.
25194 * sysdeps/ieee754/ldbl-96/s_fma.c: Include <libm-alias-double.h>.
25195 [!__fma] (fma): Define using libm_alias_double.
25197 * sysdeps/ieee754/float128/float128_private.h: Include
25198 <libm-alias-ldouble.h> and <libm-alias-float128.h>.
25199 (libm_alias_ldouble_r): Undefine and redefine.
25200 * sysdeps/ieee754/ldbl-128/s_asinhl.c: Include
25201 <libm-alias-ldouble.h>.
25202 (asinhl): Define using libm_alias_ldouble.
25203 * sysdeps/ieee754/ldbl-128/s_atanl.c: Include
25204 <libm-alias-ldouble.h>.
25205 (atanl): Define using libm_alias_ldouble.
25206 * sysdeps/ieee754/ldbl-128/s_cbrtl.c: Include
25207 <libm-alias-ldouble.h>.
25208 (cbrtl): Define using libm_alias_ldouble.
25209 * sysdeps/ieee754/ldbl-128/s_ceill.c: Include
25210 <libm-alias-ldouble.h>.
25211 (ceill): Define using libm_alias_ldouble.
25212 * sysdeps/ieee754/ldbl-128/s_copysignl.c: Include
25213 <libm-alias-ldouble.h>.
25214 (copysignl): Define using libm_alias_ldouble.
25215 * sysdeps/ieee754/ldbl-128/s_cosl.c: Include
25216 <libm-alias-ldouble.h>.
25217 (cosl): Define using libm_alias_ldouble.
25218 * sysdeps/ieee754/ldbl-128/s_erfl.c: Include
25219 <libm-alias-ldouble.h>.
25220 (erfl): Define using libm_alias_ldouble.
25222 * sysdeps/ieee754/ldbl-128/s_expm1l.c: Include
25223 <libm-alias-ldouble.h>.
25224 (expm1l): Define using libm_alias_ldouble.
25225 * sysdeps/ieee754/ldbl-128/s_fabsl.c: Include
25226 <libm-alias-ldouble.h>.
25227 (fabsl): Define using libm_alias_ldouble.
25228 * sysdeps/ieee754/ldbl-128/s_floorl.c: Include
25229 <libm-alias-ldouble.h>.
25230 (floorl): Define using libm_alias_ldouble.
25231 * sysdeps/ieee754/ldbl-128/s_fmal.c: Include
25232 <libm-alias-ldouble.h>.
25233 (fmal): Define using libm_alias_ldouble.
25234 * sysdeps/ieee754/ldbl-128/s_frexpl.c: Include
25235 <libm-alias-ldouble.h>.
25236 (frexpl): Define using libm_alias_ldouble.
25237 * sysdeps/ieee754/ldbl-128/s_fromfpl.c (fromfpl): Define using
25238 libm_alias_ldouble.
25239 * sysdeps/ieee754/ldbl-128/s_fromfpl_main.c: Include
25240 <libm-alias-ldouble.h>.
25241 * sysdeps/ieee754/ldbl-128/s_fromfpxl.c (fromfpxl): Define using
25242 libm_alias_ldouble.
25243 * sysdeps/ieee754/ldbl-128/s_getpayloadl.c: Include
25244 <libm-alias-ldouble.h>.
25245 (getpayloadl): Define using libm_alias_ldouble.
25246 * sysdeps/ieee754/ldbl-128/s_llrintl.c: Include
25247 <libm-alias-ldouble.h>.
25248 (llrintl): Define using libm_alias_ldouble.
25249 * sysdeps/ieee754/ldbl-128/s_llroundl.c: Include
25250 <libm-alias-ldouble.h>.
25251 (llroundl): Define using libm_alias_ldouble.
25252 * sysdeps/ieee754/ldbl-128/s_logbl.c: Include
25253 <libm-alias-ldouble.h>.
25254 (logbl): Define using libm_alias_ldouble.
25255 * sysdeps/ieee754/ldbl-128/s_lrintl.c: Include
25256 <libm-alias-ldouble.h>.
25257 (lrintl): Define using libm_alias_ldouble.
25258 * sysdeps/ieee754/ldbl-128/s_lroundl.c: Include
25259 <libm-alias-ldouble.h>.
25260 (lroundl): Define using libm_alias_ldouble.
25261 * sysdeps/ieee754/ldbl-128/s_modfl.c: Include
25262 <libm-alias-ldouble.h>.
25263 (modfl): Define using libm_alias_ldouble.
25264 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Include
25265 <libm-alias-ldouble.h>.
25266 (nearbyintl): Define using libm_alias_ldouble.
25267 * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Include
25268 <libm-alias-ldouble.h>.
25269 (nextafterl): Define using libm_alias_ldouble.
25270 * sysdeps/ieee754/ldbl-128/s_nextupl.c: Include
25271 <libm-alias-ldouble.h>.
25272 (nextupl): Define using libm_alias_ldouble.
25273 * sysdeps/ieee754/ldbl-128/s_remquol.c: Include
25274 <libm-alias-ldouble.h>.
25275 (remquol): Define using libm_alias_ldouble.
25276 * sysdeps/ieee754/ldbl-128/s_rintl.c: Include
25277 <libm-alias-ldouble.h>.
25278 (rintl): Define using libm_alias_ldouble.
25279 * sysdeps/ieee754/ldbl-128/s_roundevenl.c: Include
25280 <libm-alias-ldouble.h>.
25281 (roundevenl): Define using libm_alias_ldouble.
25282 * sysdeps/ieee754/ldbl-128/s_roundl.c: Include
25283 <libm-alias-ldouble.h>.
25284 (roundl): Define using libm_alias_ldouble.
25285 * sysdeps/ieee754/ldbl-128/s_setpayloadl.c (setpayloadl): Define
25286 using libm_alias_ldouble.
25287 * sysdeps/ieee754/ldbl-128/s_setpayloadl_main.c: Include
25288 <libm-alias-ldouble.h>.
25289 * sysdeps/ieee754/ldbl-128/s_setpayloadsigl.c (setpayloadsigl):
25290 Define using libm_alias_ldouble.
25291 * sysdeps/ieee754/ldbl-128/s_sincosl.c: Include
25292 <libm-alias-ldouble.h>.
25293 (sincosl): Define using libm_alias_ldouble.
25294 * sysdeps/ieee754/ldbl-128/s_sinl.c: Include
25295 <libm-alias-ldouble.h>.
25296 (sinl): Define using libm_alias_ldouble.
25297 * sysdeps/ieee754/ldbl-128/s_tanhl.c: Include
25298 <libm-alias-ldouble.h>.
25299 (tanhl): Define using libm_alias_ldouble.
25300 * sysdeps/ieee754/ldbl-128/s_tanl.c: Include
25301 <libm-alias-ldouble.h>.
25302 (tanl): Define using libm_alias_ldouble.
25303 * sysdeps/ieee754/ldbl-128/s_totalorderl.c: Include
25304 <libm-alias-ldouble.h>.
25305 (totalorderl): Define using libm_alias_ldouble.
25306 * sysdeps/ieee754/ldbl-128/s_totalordermagl.c: Include
25307 <libm-alias-ldouble.h>.
25308 (totalordermagl): Define using libm_alias_ldouble.
25309 * sysdeps/ieee754/ldbl-128/s_truncl.c: Include
25310 <libm-alias-ldouble.h>.
25311 (truncl): Define using libm_alias_ldouble.
25312 * sysdeps/ieee754/ldbl-128/s_ufromfpl.c (ufromfpl): Define using
25313 libm_alias_ldouble.
25314 * sysdeps/ieee754/ldbl-128/s_ufromfpxl.c (ufromfpxl): Define using
25315 libm_alias_ldouble.
25316 * sysdeps/ieee754/ldbl-64-128/s_copysignl.c: Include
25317 <libm-alias-ldouble.h>.
25318 (weak_alias): Do not undefine and redefine.
25319 [IS_IN (libc)] (libm_alias_ldouble): Undefine and redefine.
25320 (copysignl): Define with long_double_symbol only if [IS_IN
25322 * sysdeps/ieee754/ldbl-64-128/s_frexpl.c: Include
25323 <libm-alias-ldouble.h>.
25324 (weak_alias): Do not undefine and redefine.
25325 [IS_IN (libc)] (libm_alias_ldouble): Undefine and redefine.
25326 (frexpl): Define with long_double_symbol only if [IS_IN (libc)].
25327 * sysdeps/ieee754/ldbl-64-128/s_modfl.c: Include
25328 <libm-alias-ldouble.h>.
25329 (weak_alias): Do not undefine and redefine.
25330 [IS_IN (libc)] (libm_alias_ldouble): Undefine and redefine.
25331 (modfl): Define with long_double_symbol only if [IS_IN (libc)].
25332 * sysdeps/ieee754/ldbl-64-128/s_asinhl.c: Remove file.
25333 * sysdeps/ieee754/ldbl-64-128/s_atanl.c: Likewise.
25334 * sysdeps/ieee754/ldbl-64-128/s_cbrtl.c: Likewise.
25335 * sysdeps/ieee754/ldbl-64-128/s_ceill.c: Likewise.
25336 * sysdeps/ieee754/ldbl-64-128/s_cosl.c: Likewise.
25337 * sysdeps/ieee754/ldbl-64-128/s_erfl.c: Likewise.
25338 * sysdeps/ieee754/ldbl-64-128/s_expm1l.c: Likewise.
25339 * sysdeps/ieee754/ldbl-64-128/s_fabsl.c: Likewise.
25340 * sysdeps/ieee754/ldbl-64-128/s_floorl.c: Likewise.
25341 * sysdeps/ieee754/ldbl-64-128/s_fmal.c: Likewise.
25342 * sysdeps/ieee754/ldbl-64-128/s_llrintl.c: Likewise.
25343 * sysdeps/ieee754/ldbl-64-128/s_llroundl.c: Likewise.
25344 * sysdeps/ieee754/ldbl-64-128/s_logbl.c: Likewise.
25345 * sysdeps/ieee754/ldbl-64-128/s_lrintl.c: Likewise.
25346 * sysdeps/ieee754/ldbl-64-128/s_lroundl.c: Likewise.
25347 * sysdeps/ieee754/ldbl-64-128/s_nearbyintl.c: Likewise.
25348 * sysdeps/ieee754/ldbl-64-128/s_remquol.c: Likewise.
25349 * sysdeps/ieee754/ldbl-64-128/s_rintl.c: Likewise.
25350 * sysdeps/ieee754/ldbl-64-128/s_roundl.c: Likewise.
25351 * sysdeps/ieee754/ldbl-64-128/s_sincosl.c: Likewise.
25352 * sysdeps/ieee754/ldbl-64-128/s_sinl.c: Likewise.
25353 * sysdeps/ieee754/ldbl-64-128/s_tanhl.c: Likewise.
25354 * sysdeps/ieee754/ldbl-64-128/s_tanl.c: Likewise.
25355 * sysdeps/ieee754/ldbl-64-128/s_truncl.c: Likewise.
25357 2017-10-06 Carlos O'Donell <carlos@redhat.com>
25360 * malloc/malloc.c (tcache_shutting_down): Use bool type.
25361 (tcache_thread_freeres): Set tcache_shutting_down before
25362 freeing the tcache.
25363 * malloc/Makefile (tests): Add tst-malloc-tcache-leak.
25364 * malloc/tst-malloc-tcache-leak.c: New file.
25366 2017-10-06 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
25368 * sysdeps/powerpc/powerpc64/multiarch/memrchr-ppc64.c: Revert
25369 back to powerpc32 file.
25370 * sysdeps/powerpc/powerpc64/multiarch/memrchr.c
25371 (memrchr): Add __memrchr_power8 to ifunc list.
25372 * sysdeps/powerpc/powerpc64/power8/memrchr.S: Mask
25373 extra bytes for unaligned inputs.
25375 2017-10-06 Joseph Myers <joseph@codesourcery.com>
25377 * sysdeps/ieee754/ldbl-64-128/e_ilogbl.c: Remove file.
25378 * sysdeps/ieee754/ldbl-64-128/s_log1pl.c: Likewise.
25379 * sysdeps/ieee754/ldbl-64-128/s_scalblnl.c: Likewise.
25380 * sysdeps/ieee754/ldbl-64-128/s_scalbnl.c: Likewise.
25381 * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: Likewise.
25383 2017-10-05 Joseph Myers <joseph@codesourcery.com>
25385 * sysdeps/arm/libm-test-ulps: Update.
25387 * sysdeps/ieee754/ldbl-96/s_asinhl.c: Include
25388 <libm-alias-ldouble.h>.
25389 (asinhl): Define using libm_alias_ldouble.
25390 * sysdeps/ieee754/ldbl-96/s_cbrtl.c: Include
25391 <libm-alias-ldouble.h>.
25392 (cbrtl): Define using libm_alias_ldouble.
25393 * sysdeps/ieee754/ldbl-96/s_copysignl.c: Include
25394 <libm-alias-ldouble.h>.
25395 (copysignl): Define using libm_alias_ldouble.
25396 * sysdeps/ieee754/ldbl-96/s_cosl.c: Include
25397 <libm-alias-ldouble.h>.
25398 (cosl): Define using libm_alias_ldouble.
25399 * sysdeps/ieee754/ldbl-96/s_erfl.c: Include
25400 <libm-alias-ldouble.h>.
25401 (erfl): Define using libm_alias_ldouble.
25403 * sysdeps/ieee754/ldbl-96/s_fmal.c: Include
25404 <libm-alias-ldouble.h>.
25405 (fmal): Define using libm_alias_ldouble.
25406 * sysdeps/ieee754/ldbl-96/s_frexpl.c: Include
25407 <libm-alias-ldouble.h>.
25408 (frexpl): Define using libm_alias_ldouble.
25409 * sysdeps/ieee754/ldbl-96/s_fromfpl.c (fromfpl): Define using
25410 libm_alias_ldouble.
25411 * sysdeps/ieee754/ldbl-96/s_fromfpl_main.c: Include
25412 <libm-alias-ldouble.h>.
25413 * sysdeps/ieee754/ldbl-96/s_fromfpxl.c (fromfpxl): Define using
25414 libm_alias_ldouble.
25415 * sysdeps/ieee754/ldbl-96/s_getpayloadl.c: Include
25416 <libm-alias-ldouble.h>.
25417 (getpayloadl): Define using libm_alias_ldouble.
25418 * sysdeps/ieee754/ldbl-96/s_llrintl.c: Include
25419 <libm-alias-ldouble.h>.
25420 (llrintl): Define using libm_alias_ldouble.
25421 * sysdeps/ieee754/ldbl-96/s_llroundl.c: Include
25422 <libm-alias-ldouble.h>.
25423 (llroundl): Define using libm_alias_ldouble.
25424 * sysdeps/ieee754/ldbl-96/s_lrintl.c: Include
25425 <libm-alias-ldouble.h>.
25426 (lrintl): Define using libm_alias_ldouble.
25427 * sysdeps/ieee754/ldbl-96/s_lroundl.c: Include
25428 <libm-alias-ldouble.h>.
25429 (lroundl): Define using libm_alias_ldouble.
25430 * sysdeps/ieee754/ldbl-96/s_modfl.c: Include
25431 <libm-alias-ldouble.h>.
25432 (modfl): Define using libm_alias_ldouble.
25433 * sysdeps/ieee754/ldbl-96/s_nextupl.c: Include
25434 <libm-alias-ldouble.h>.
25435 (nextupl): Define using libm_alias_ldouble.
25436 * sysdeps/ieee754/ldbl-96/s_remquol.c: Include
25437 <libm-alias-ldouble.h>.
25438 (remquol): Define using libm_alias_ldouble.
25439 * sysdeps/ieee754/ldbl-96/s_roundevenl.c: Include
25440 <libm-alias-ldouble.h>.
25441 (roundevenl): Define using libm_alias_ldouble.
25442 * sysdeps/ieee754/ldbl-96/s_roundl.c: Include
25443 <libm-alias-ldouble.h>.
25444 (roundl): Define using libm_alias_ldouble.
25445 * sysdeps/ieee754/ldbl-96/s_setpayloadl.c (setpayloadl): Define
25446 using libm_alias_ldouble.
25447 * sysdeps/ieee754/ldbl-96/s_setpayloadl_main.c: Include
25448 <libm-alias-ldouble.h>.
25449 * sysdeps/ieee754/ldbl-96/s_setpayloadsigl.c: Include
25450 <libm-alias-ldouble.h>.
25451 (setpayloadsigl): Define using libm_alias_ldouble.
25452 * sysdeps/ieee754/ldbl-96/s_sincosl.c: Include
25453 <libm-alias-ldouble.h>.
25454 (sincosl): Define using libm_alias_ldouble.
25455 * sysdeps/ieee754/ldbl-96/s_sinl.c: Include
25456 <libm-alias-ldouble.h>.
25457 (sinl): Define using libm_alias_ldouble.
25458 * sysdeps/ieee754/ldbl-96/s_tanhl.c: Include
25459 <libm-alias-ldouble.h>.
25460 (tanhl): Define using libm_alias_ldouble.
25461 * sysdeps/ieee754/ldbl-96/s_tanl.c: Include
25462 <libm-alias-ldouble.h>.
25463 (tanl): Define using libm_alias_ldouble.
25464 * sysdeps/ieee754/ldbl-96/s_totalorderl.c: Include
25465 <libm-alias-ldouble.h>.
25466 (totalorderl): Define using libm_alias_ldouble.
25467 * sysdeps/ieee754/ldbl-96/s_totalordermagl.c: Include
25468 <libm-alias-ldouble.h>.
25469 (totalordermagl): Define using libm_alias_ldouble.
25470 * sysdeps/ieee754/ldbl-96/s_ufromfpl.c (ufromfpl): Define using
25471 libm_alias_ldouble.
25472 * sysdeps/ieee754/ldbl-96/s_ufromfpxl.c (ufromfpxl): Define using
25473 libm_alias_ldouble.
25475 2017-10-05 Siddhesh Poyarekar <siddhesh@sourceware.org>
25477 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines): Add
25479 * sysdeps/aarch64/multiarch/ifunc-impl-list.c
25480 (__libc_ifunc_impl_list): Likewise.
25481 * sysdeps/aarch64/multiarch/memmove.c: Likewise.
25482 * sysdeps/aarch64/multiarch/memmove_falkor.S: New file.
25484 * benchtests/bench-memmove-walk.c: New file.
25485 * benchtests/Makefile (string-benchset): Add it.
25487 * benchtests/bench-memset-walk.c: New file.
25488 * benchtests/Makefile (string-benchset): Add it.
25490 * benchtests/bench-memcpy-walk.c: New file.
25491 * benchtests/Makefile (string-benchset): Add it.
25493 2017-10-05 Florian Weimer <fweimer@redhat.com>
25495 nscd: Eliminate compilation time dependency in the build output.
25496 * nscd/nscd_stat.c (STATDATA_VERSION)
25497 (STATDATA_VERSION_SELINUX_FLAG, STATDATA_VERSION_FLAGS)
25498 (STATDATA_VERSION_FULL): New macro definitions.
25499 (compilation): Remove.
25500 (struct statdata): Adjust version member.
25501 (send_stats): Set version from STATDATA_VERSION_FULL.
25502 (receive_print_stats): Verify version against STATDATA_VERSION_FULL.
25504 2017-10-05 Joseph Myers <joseph@codesourcery.com>
25506 * configure.ac (--enable-add-ons): Remove option.
25507 (machine): Do not mention add-ons in comment.
25508 (LIBC_PRECONFIGURE): Likewise.
25509 (add_ons): Remove variable and sanity checks and logic to locate
25511 (add_ons_automatic): Remove variable.
25512 (configured_add_ons): Likewise.
25513 (add_ons_sfx): Likewise.
25514 (add_ons_pfx): Likewise.
25515 (add_on_subdirs): Likewise.
25516 (sysnames_add_ons): Likewise. Remove loop over add-ons and
25517 consideration of add-ons in Implies handling.
25518 (sysdeps_add_ons): Likewise.
25519 * configure: Regenerated.
25520 * libidn/configure.ac: Remove.
25521 * libidn/configure: Likewise.
25522 * sysdeps/unix/inet/configure.ac: New file.
25523 * sysdeps/unix/inet/configure: New generated file.
25524 * sysdeps/unix/inet/Subdirs: Add libidn.
25525 * Makeconfig (sysdeps-srcdirs): Remove variable.
25526 (+sysdep_dirs): Do not include $(sysdeps-srcdirs).
25527 ($(common-objpfx)config.status): Do not depend on add-on files.
25528 ($(common-objpfx)shlib-versions.v.i): Do not mention add-ons in
25530 (all-subdirs): Do not include $(add-on-subdirs).
25531 * Makefile (dist-prepare): Do not use $(sysdeps-add-ons).
25532 * config.make.in (add-ons): Remove variable.
25533 (add-on-subdirs): Likewise.
25534 (sysdeps-add-ons): Likewise.
25535 * manual/Makefile (add-chapters): Remove.
25536 ($(objpfx)texis): Do not depend on $(add-chapters).
25537 (nonexamples): Do not handle $(add-chapters).
25538 (examples): Do not handle $(add-ons).
25539 (chapters.% top-menu.%): Do not pass '$(add-chapters)' to
25541 * manual/install.texi (Installation): Do not mention add-ons.
25542 (--enable-add-ons): Do not document configure option.
25543 * INSTALL: Regenerated.
25544 * manual/libc-texinfo.sh: Do not handle $2 add-ons argument.
25545 * manual/maint.texi (Hierarchy Conventions): Do not mention
25547 * scripts/build-many-glibcs.py (Glibc.build_glibc): Do not use
25549 * scripts/gen-sorted.awk: Do not handle Subdirs files from
25551 * scripts/test-installation.pl: Do not handle glibc-compat add-on.
25552 * sysdeps/nptl/Makeconfig: Do not mention add-ons in comment.
25554 2017-10-05 Andreas Schwab <schwab@suse.de>
25557 * libio/genops.c (_IO_list_all_stamp): Delete. All uses removed.
25558 (_IO_flush_all_lockp): Always lock list_all_lock.
25559 (_IO_flush_all_linebuffered): Likewise.
25560 (_IO_unbuffer_all): Likewise.
25562 2017-10-05 Florian Weimer <fweimer@redhat.com>
25565 Do not flush stdio streams on abort.
25566 * stdlib/abort.c (fflush): Remove macro definition.
25567 (abort): Remove stages related to stdio flushing.
25569 2017-10-05 Florian Weimer <fweimer@redhat.com>
25571 * gmon/Makefile (CFLAGS-tst-gmon.c): Add -fno-omit-frame-pointer.
25573 2017-10-05 Stefan Liebler <stli@linux.vnet.ibm.com>
25575 * sysdeps/s390/fpu/libm-test-ulps: Regenerated.
25577 2017-10-05 Florian Weimer <fweimer@redhat.com>
25579 * support/support_format_hostent.c (support_format_hostent): Add
25580 more error information for NETDB_INTERNAL.
25582 2017-10-04 H.J. Lu <hongjiu.lu@intel.com>
25584 * config.h.in (NO_HIDDEN_EXTERN_FUNC_IN_PIE): New.
25585 * include/libc-symbols.h (__hidden_proto_hiddenattr): Add check
25586 for PIC and NO_HIDDEN_EXTERN_FUNC_IN_PIE.
25587 * sysdeps/i386/configure.ac (NO_HIDDEN_EXTERN_FUNC_IN_PIE): New
25588 AC_DEFINE if multi-arch is enabled.
25589 * sysdeps/i386/configure: Regenerated.
25591 2017-10-04 H.J. Lu <hongjiu.lu@intel.com>
25593 * Makeconfig (+link-static-before-libc): Use
25594 $(DEFAULT-LDFLAGS-$(@F)).
25595 * elf/Makefile (CRT-tst-tls1-static-non-pie): New.
25596 (LDFLAGS-tst-tls1-static-non-pie): Renamed to ...
25597 (DEFAULT-LDFLAGS-tst-tls1-static-non-pie): This.
25599 2017-10-04 H.J. Lu <hongjiu.lu@intel.com>
25601 * elf/Makefile (tests): Add tst-main1.
25602 (modules-names): Add tst-main1mod.
25603 ($(objpfx)tst-main1): New.
25604 (CRT-tst-main1): Likewise.
25605 (LDFLAGS-tst-main1): Likewise.
25606 (LDLIBS-tst-main1): Likewise.
25607 (tst-main1mod.so-no-z-defs): Likewise.
25608 * elf/tst-main1.c: New file.
25609 * elf/tst-main1mod.c: Likewise.
25611 2017-10-04 H.J. Lu <hongjiu.lu@intel.com>
25613 * math/test-math-iscanonical.cc (do_test): Return errors != 0.
25615 2017-10-04 Joseph Myers <joseph@codesourcery.com>
25617 * sysdeps/ieee754/dbl-64/s_fma.c: Include <libm-alias-double.h>.
25618 (fma): Define using libm_alias_double.
25619 * sysdeps/ieee754/ldbl-opt/s_fma.c: Remove file.
25620 * sysdeps/sparc/sparc32/fpu/s_fma.c: Do not include
25622 (fmal): Do not define as compat symbol here.
25623 * sysdeps/alpha/fpu/s_fma.c: New file.
25625 2017-10-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
25627 * sysdeps/aarch64/dl-machine.h (elf_machine_rela): Expand MIN.
25629 2017-10-04 Joseph Myers <joseph@codesourcery.com>
25632 * sysdeps/sparc/sparc32/fpu/s_copysign.S: Include
25634 (copysignl): Define as compat symbol at version GLIBC_2_0 for libm
25636 * sysdeps/sparc/sparc32/fpu/s_fabs.S: Include <math_ldbl_opt.h>.
25637 (fabsl): Define as compat symbol at version GLIBC_2_0 for libm.
25638 * sysdeps/sparc/sparc32/fpu/s_fma.c: Include <math_ldbl_opt.h>.
25639 (fmal): Define as compat symbol at version GLIBC_2_1 for libm.
25640 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S:
25641 Include <math_ldbl_opt.h>
25642 (copysignl): Define as compat symbol at version GLIBC_2_0 for libm
25644 (compat_symbol): Undefine and redefine.
25645 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Include
25647 (fabsl): Define as compat symbol at version GLIBC_2_0 for libm.
25648 (compat_symbol): Undefine and redefine.
25649 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c
25650 [HAVE_AS_VIS3_SUPPORT]: Include <math_ldbl_opt.h>.
25651 [HAVE_AS_VIS3_SUPPORT] (fmal): Define as compat symbol at version
25652 GLIBC_2_1 for libm.
25653 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Add
25654 GLIBC_2.0 copysignl symbol.
25655 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Add
25656 GLIBC_2.0 copysignl and fabsl and GLIBC_2.1 fmal symbols.
25658 * sysdeps/alpha/fpu/s_nearbyint.c: Remove file.
25660 2017-10-04 Florian Weimer <fweimer@redhat.com>
25662 * scripts/check-local-headers.sh: Ignore nspr4 header file
25663 directory in addition to nspr.
25665 2017-10-04 Guido Trentalancia <guido@trentalancia.net>
25668 * configure.ac (--enable-nss-crypt): Use NSPR include directory.
25669 * configure: Regenerate.
25670 * crypt/Makefile (nss-cpp-flags): New variable.
25671 (CPPFLAGS-sha256-crypt.c, CPPFLAGS-sha512-crypt.c)
25672 (CPPFLAGS-md5-crypt.c): Use it.
25673 * scripts/check-local-headers.sh: Ignore nspr header file
25676 2017-10-04 Andreas Schwab <schwab@suse.de>
25678 * nis/Makefile (services): Remove compat.
25679 (libnss_compat-routines, libnss_compat-inhibit-o): Don't define.
25680 ($(objpfx)libnss_compat.so): Remove rule.
25681 * nis/Versions (libnss_compat): Remove.
25682 * nss/Makefile (services): Add compat.
25683 (libnss_compat-routines, libnss_compat-inhibit-o): Define.
25684 * nss/Versions (libnss_compat): Define.
25685 * nss/nss_compat/compat-grp.c: Moved here from nis/nss_compat.
25686 Don't include <rpc/types.h>. Replace bool_t by bool.
25687 * nss/nss_compat/compat-initgroups.c: Likewise.
25688 * nss/nss_compat/compat-pwd.c: Likewise. Include "nisdomain.h"
25689 instead of <rpcsrv/ypclnt.h>.
25690 (getpwent_next_nss_netgr): Use __nss_get_default_domain instead of
25691 yp_get_default_domain.
25692 * nss/nss_compat/compat-pwd.c: Likewise.
25693 (getspent_next_nss_netgr): Use __nss_get_default_domain instead of
25694 yp_get_default_domain.
25695 * nss/nss_compat/nisdomain.c: New file.
25696 * nss/nss_compat/nisdomain.h: Likewise.
25698 2017-10-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
25701 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_yn): Fix x == 0 case.
25702 * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_ynf): Likewise.
25704 2017-10-04 Szabolcs Nagy <szabolcs.nagy@arm.com>
25707 * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c (__ieee754_log10): Use fabs.
25708 * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c (__ieee754_log2): Likewise.
25710 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
25712 * sysdeps/i386/start.S: Replace "leal main@GOT(%ebx), %eax" with
25713 "movl main@GOTOFF(%ebx), %eax".
25715 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
25717 * sysdeps/i386/dl-machine.h (elf_machine_load_address): Don't
25718 allow undefined _DYNAMIC in PIE libc.a.
25719 * sysdeps/x86_64/dl-machine.h (elf_machine_load_address):
25722 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
25724 * sysdeps/mips/dl-machine.h (elf_machine_load_address): Don't
25727 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
25729 * sysdeps/arm/dl-machine.h (elf_machine_load_address): Don't
25732 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
25734 * math/test-math-iscanonical.cc (error): Replace bool with int.
25736 2017-10-03 Joseph Myers <joseph@codesourcery.com>
25738 * sysdeps/ieee754/dbl-64/s_modf.c: Include <libm-alias-double.h>.
25739 (modf): Define using libm_alias_double, only if [!__modf].
25740 * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Include
25741 <libm-alias-double.h>.
25742 (modf): Define using libm_alias_double, only if [!__modf].
25743 * sysdeps/ieee754/ldbl-opt/s_modf.c (modfl): Only define libc
25744 compat symbol here.
25745 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-ppc32.c
25746 (weak_alias): Do not undefine and redefine.
25747 (strong_alias): Likewise.
25748 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c
25749 (weak_alias): Likewise.
25750 (strong_alias): Likewise.
25752 * sysdeps/ieee754/dbl-64/s_logb.c: Include <libm-alias-double.h>.
25753 (logb): Define using libm_alias_double, only if [!__logb].
25754 * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: Include
25755 <libm-alias-double.h>.
25756 (logb): Define using libm_alias_double, only if [!__logb].
25757 * sysdeps/ieee754/ldbl-opt/s_logb.c: Remove file.
25758 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-ppc32.c
25759 (weak_alias): Do not undefine and redefine.
25760 (strong_alias): Likewise.
25761 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-ppc64.c
25762 (weak_alias): Likewise.
25763 (strong_alias): Likewise.
25765 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
25767 * sysdeps/unix/sysv/linux/tile/sysdep.h (SYSCALL_ERROR_NAME):
25768 Check SHARED instead PIC.
25770 2017-10-03 Joseph Myers <joseph@codesourcery.com>
25772 * sysdeps/ieee754/dbl-64/s_fmaf.c: Include <libm-alias-float.h>.
25773 [!__fmaf] (fmaf): Define using libm_alias_float.
25775 * sysdeps/ieee754/dbl-64/s_frexp.c: Include <libm-alias-double.h>.
25776 (frexp): Define using libm_alias_double.
25777 * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: Include
25778 <libm-alias-double.h>.
25779 (frexp): Define using libm_alias_double.
25780 * sysdeps/ieee754/ldbl-opt/s_frexp.c (frexpl): Only define libc
25781 compat symbol here.
25783 2017-10-03 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
25786 * math/math.h: Trivial fix for unbalanced parentheses in comment.
25787 * math/Makefile [CXX] (tests): Add test-math-iscanonical.cc.
25788 (CFLAGS-test-math-iscanonical.cc): New variable.
25789 * math/test-math-iscanonical.cc: New file.
25790 * sysdeps/ieee754/ldbl-96/bits/iscanonical.h (iscanonical):
25791 Provide a C++ implementation based on function overloading,
25792 rather than using __MATH_TG, which uses C-only builtins.
25793 * sysdeps/ieee754/ldbl-128ibm/bits/iscanonical.h (iscanonical):
25795 * sysdeps/powerpc/powerpc64le/Makefile
25796 (CFLAGS-test-math-iscanonical.cc): New variable.
25798 2017-10-03 Joseph Myers <joseph@codesourcery.com>
25800 * sysdeps/ieee754/dbl-64/s_ceil.c: Include <libm-alias-double.h>.
25801 (ceil): Define using libm_alias_double.
25802 * sysdeps/ieee754/dbl-64/s_floor.c: Include <libm-alias-double.h>.
25803 (floor): Define using libm_alias_double.
25804 * sysdeps/ieee754/dbl-64/s_llround.c: Include
25805 <libm-alias-double.h>.
25806 (llround): Define using libm_alias_double.
25807 * sysdeps/ieee754/dbl-64/s_lround.c: Include
25808 <libm-alias-double.h>.
25809 (lround): Define using libm_alias_double.
25810 * sysdeps/ieee754/dbl-64/s_nearbyint.c: Include
25811 <libm-alias-double.h>.
25812 (nearbyint): Define using libm_alias_double.
25813 * sysdeps/ieee754/dbl-64/s_remquo.c: Include
25814 <libm-alias-double.h>.
25815 (remquo): Define using libm_alias_double.
25816 * sysdeps/ieee754/dbl-64/s_rint.c: Include <libm-alias-double.h>.
25817 (rint): Define using libm_alias_double.
25818 * sysdeps/ieee754/dbl-64/s_round.c: Include <libm-alias-double.h>.
25819 (round): Define using libm_alias_double.
25820 * sysdeps/ieee754/dbl-64/s_trunc.c: Include <libm-alias-double.h>.
25821 (trunc): Define using libm_alias_double.
25822 * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Include
25823 <libm-alias-double.h>.
25824 (ceil): Define using libm_alias_double.
25825 * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Include
25826 <libm-alias-double.h>.
25827 (floor): Define using libm_alias_double.
25828 * sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c: Include
25829 <libm-alias-double.h>.
25830 (llround): Define using libm_alias_double.
25831 [_LP64] (lround): Likewise.
25832 * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Include
25833 <libm-alias-double.h>.
25834 [!_LP64] (lround): Define using libm_alias_double.
25835 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Include
25836 <libm-alias-double.h>.
25837 (nearbyint): Define using libm_alias_double.
25838 * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Include
25839 <libm-alias-double.h>.
25840 (remquo): Define using libm_alias_double.
25841 * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Include
25842 <libm-alias-double.h>.
25843 (rint): Define using libm_alias_double.
25844 * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Include
25845 <libm-alias-double.h>.
25846 (round): Define using libm_alias_double.
25847 * sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c: Include
25848 <libm-alias-double.h>.
25849 (trunc): Define using libm_alias_double.
25850 * sysdeps/ieee754/ldbl-opt/s_ceil.c: Remove file.
25851 * sysdeps/ieee754/ldbl-opt/s_floor.c: Likewise.
25852 * sysdeps/ieee754/ldbl-opt/s_llround.c: Likewise.
25853 * sysdeps/ieee754/ldbl-opt/s_lround.c: Likewise.
25854 * sysdeps/ieee754/ldbl-opt/s_nearbyint.c: Likewise.
25855 * sysdeps/ieee754/ldbl-opt/s_remquo.c: Likewise.
25856 * sysdeps/ieee754/ldbl-opt/s_rint.c: Likewise.
25857 * sysdeps/ieee754/ldbl-opt/s_round.c: Likewise.
25858 * sysdeps/ieee754/ldbl-opt/s_trunc.c: Likewise.
25860 2017-10-03 Szabolcs Nagy <szabolcs.nagy@arm.com>
25862 * math/w_remainder.c: New file.
25863 * math/w_remainderf.c: New file.
25864 * math/w_remainderl.c: New file.
25866 2017-10-03 H.J. Lu <hongjiu.lu@intel.com>
25868 * elf/rtld.c (BOOTSTRAP_MAP): New.
25869 (RESOLVE_MAP): Replace (&bootstrap_map) with BOOTSTRAP_MAP.
25870 * sysdeps/hppa/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
25872 * sysdeps/ia64/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
25874 * sysdeps/mips/dl-machine.h (ELF_MACHINE_BEFORE_RTLD_RELOC):
25877 2017-10-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
25879 * include/libc-symbols.h [NO_RTLD_HIDDEN] (rtld_hidden_proto,
25880 rtld_hidden_tls_proto, rtld_hidden_def, rtld_hidden_weak,
25881 rtld_hidden_rtld_hidden_ver, data_def, rtld_hidden_data_weak,
25882 rtld_hidden_data_ver): Define to empty.
25883 * include/assert.h [IS_IN(rtld) && NO_RTLD_HIDDEN] (__assert_fail,
25884 __assert_perror_fail): Likewise.
25885 * include/dirent.h [IS_IN(rtld) && NO_RTLD_HIDDEN]
25886 (__rewinddir): Likewise.
25887 * include/libc-internal.h [IS_IN(rtld) && NO_RTLD_HIDDEN]
25888 (__profile_frequency): Likewise.
25889 * include/setjmp.h (__sigsetjmp): Likewise.
25890 * include/signal.h [IS_IN(rtld) && NO_RTLD_HIDDEN] (__sigaction,
25891 __libc_sigaction): Likewise.
25892 * include/stdlib.h [NO_RTLD_HIDDEN] (unsetenv, __strtoul_internal): Do
25893 not set hidden attribute.
25894 * include/string.h [IS_IN(rtld) && NO_RTLD_HIDDEN] (__stpcpy, __strdup,
25895 __strerror_t, __strsep_g, memchr, memcmp, memcpy, memmove, memset,
25896 rawmemchr, stpcpy, strchr, strcmp, strlen, strnlen, strsep): Likewise.
25897 * include/sys/stat.h [IS_IN(rtld) && NO_RTLD_HIDDEN] (__fxstat,
25898 __fxstat64, __lxstat, __lxstat64, __xstat, __xstat64,
25899 __fxstatat64): Likewise.
25900 * include/sys/utsname.h [IS_IN(rtld) && NO_RTLD_HIDDEN]
25901 (__uname): Likewise.
25902 * include/sysdeps/generic/_itoa.h [IS_IN(rtld) && NO_RTLD_HIDDEN]
25903 (_itoa_upper_digits, _itoa_lower_digits): Likewise.
25904 * sysdeps/mach/hurd/configure.ac (NO_HIDDEN): Do not set.
25905 (NO_RTLD_HIDDEN): Set.
25906 * sysdeps/mach/hurd/configure: Refresh.
25907 * config.h.in: Refresh.
25909 2017-10-02 Joseph Myers <joseph@codesourcery.com>
25911 * sysdeps/ieee754/dbl-64/s_atan.c: Include <libm-alias-double.h>.
25912 (atan): Define using libm_alias_double.
25913 * sysdeps/ieee754/dbl-64/s_tan.c: Include <libm-alias-double.h>.
25914 (tan): Define using libm_alias_double.
25915 * sysdeps/ieee754/ldbl-opt/s_atan.c: Remove file.
25916 * sysdeps/ieee754/ldbl-opt/s_tan.c: Likewise.
25918 * sysdeps/ieee754/dbl-64/s_atan.c (atan): Rename to __atan and
25919 define as weak alias of __atan. Do not define any aliases if
25921 [NO_LONG_DOUBLE] (__atanl): Define as strong alias of __atan.
25922 [NO_LONG_DOUBLE] (atanl): Define as weak alias of __atanl.
25923 * sysdeps/ieee754/dbl-64/s_tan.c (tan): Rename to __tan and define
25924 as weak alias of __tan. Do not define any aliases if [__tan].
25925 [NO_LONG_DOUBLE] (__tanl): Define as strong alias of __tan.
25926 [NO_LONG_DOUBLE] (tanl): Define as weak alias of __tanl.
25927 * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c (atan): Rename to
25929 * sysdeps/x86_64/fpu/multiarch/s_atan-fma.c (atan): Likewise.
25930 * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c (atan): Likewise.
25931 * sysdeps/x86_64/fpu/multiarch/s_atan.c (atan): Rename to __atan
25932 and define as weak alias of __atan.
25933 * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c (tan): Rename to
25935 * sysdeps/x86_64/fpu/multiarch/s_tan-fma.c (tan): Likewise.
25936 * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c (tan): Likewise.
25937 * sysdeps/x86_64/fpu/multiarch/s_tan.c (tan): Rename to __tan and
25938 define as weak alias of __tan.
25940 2017-10-02 Szabolcs Nagy <szabolcs.nagy@arm.com>
25942 * math/w_lgamma.c: New file.
25943 * math/w_lgammaf.c: New file.
25944 * math/w_lgammal.c: New file.
25946 2017-10-02 Szabolcs Nagy <szabolcs.nagy@arm.com>
25948 * sysdeps/ieee754/flt-32/e_log2f.c (__log2f): Define without wrapper.
25949 * sysdeps/ieee754/flt-32/e_logf.c (__logf): Likewise
25950 * sysdeps/ieee754/flt-32/e_powf.c (__powf): Likewise
25951 * sysdeps/ieee754/flt-32/w_log2f.c: New file.
25952 * sysdeps/ieee754/flt-32/w_logf.c: New file.
25953 * sysdeps/ieee754/flt-32/w_powf.c: New file.
25954 * sysdeps/i386/fpu/w_log2f.c: New file.
25955 * sysdeps/i386/fpu/w_logf.c: New file.
25956 * sysdeps/i386/fpu/w_powf.c: New file.
25957 * sysdeps/m68k/m680x0/fpu/w_log2f.c: New file.
25958 * sysdeps/m68k/m680x0/fpu/w_logf.c: New file.
25959 * sysdeps/m68k/m680x0/fpu/w_powf.c: New file.
25961 2017-10-02 Szabolcs Nagy <szabolcs.nagy@arm.com>
25962 H.J. Lu <hongjiu.lu@intel.com>
25964 * sysdeps/ieee754/flt-32/e_exp2f.c (__exp2f): Define without wrapper.
25965 * sysdeps/ieee754/flt-32/e_expf.c (__expf): Likewise
25966 * sysdeps/ieee754/flt-32/w_exp2f.c: New file.
25967 * sysdeps/ieee754/flt-32/w_expf.c: New file.
25968 * sysdeps/powerpc/powerpc64/fpu/multiarch/e_expf-ppc64.c: Update for
25970 * sysdeps/powerpc/powerpc64/fpu/multiarch/w_expf.c: New file.
25971 * sysdeps/powerpc/powerpc64/power8/fpu/w_expf.c: New file.
25972 * sysdeps/m68k/m680x0/fpu/w_exp2f.c: New file.
25973 * sysdeps/m68k/m680x0/fpu/w_expf.c: New file.
25974 * sysdeps/i386/fpu/w_exp2f.c: New file.
25975 * sysdeps/i386/fpu/w_expf.c: New file.
25976 * sysdeps/i386/i686/fpu/multiarch/w_expf.c: New file.
25977 * sysdeps/x86_64/fpu/w_expf.c: New file.
25979 2017-10-02 Szabolcs Nagy <szabolcs.nagy@arm.com>
25981 * math/Versions (logf): New libm symbol at GLIBC_2.27.
25984 * math/w_log2f.c: New file.
25985 * math/w_logf.c: New file.
25986 * math/w_powf.c: New file.
25987 * math/w_log2f_compat.c (__log2f_compat): For compat symbol only.
25988 * math/w_logf_compat.c (__logf_compat): Likewise.
25989 * math/w_powf_compat.c (__powf_compat): Likewise.
25990 * sysdeps/ia64/fpu/e_log2f.S: Add versioned symbols.
25991 * sysdeps/ia64/fpu/e_logf.S: Likewise.
25992 * sysdeps/ia64/fpu/e_powf.S: Likewise.
25993 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
25994 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
25995 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
25996 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
25997 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
25998 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
25999 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
26000 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
26001 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
26002 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
26003 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
26004 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
26005 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist:
26007 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
26009 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
26011 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist:
26013 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
26014 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
26015 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
26016 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
26017 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
26018 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist:
26020 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist:
26022 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
26023 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
26024 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
26026 2017-10-02 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
26028 * sysdeps/powerpc/powerpc64/multiarch/Makefile
26029 (sysdep_routines): Add memrchr_power8.
26030 * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
26031 (memrchr): Add __memrchr_power8 to list of memrchr functions.
26032 * sysdeps/powerpc/powerpc64/multiarch/memrchr-power8.S:
26034 * sysdeps/powerpc/powerpc64/multiarch/memrchr.c
26035 (memrchr): Add __memrchr_power8 to ifunc list.
26036 * sysdeps/powerpc/powerpc64/power8/memrchr.S: New file.
26038 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26041 * sysdeps/unix/sysv/linux/posix_fadvise64.c
26042 (__posix_fadvise64_l64): Add Add libc_hidden_proto and
26044 * sysdeps/unix/sysv/linux/posix_fallocate64.c
26045 (__posix_fallocate64_l64): Likewise.
26047 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26050 * sysdeps/unix/sysv/linux/sched_setaffinity.c
26051 (__sched_setaffinity_new): Add libc_hidden_proto and
26054 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26057 * include/glob.h (__glob64): Add libc_hidden_proto.
26058 * sysdeps/unix/sysv/linux/glob64.c (__glob64): Add
26061 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26064 * sysdeps/unix/sysv/linux/getrlimit64.c (__new_getrlimit): Add
26067 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26070 * stdlib/exit.h (__new_exitfn): Add attribute_hidden.
26072 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26075 * mon/gmon.c (__moncontrol): Add libc_hidden_proto and
26078 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26081 * csu/version.c (__libc_print_version): Add attribute_hidden.
26083 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26086 * include/libc-internal.h (__init_misc): Add attribute_hidden.
26088 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26091 * include/fpu_control.h (__setfpucw): Add attribute_hidden.
26093 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26096 * nscd/nscd_helper.c (__nis_hash): New prototype.
26098 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26101 * include/termios.h (__tcgetattr): Add libc_hidden_proto.
26102 * sysdeps/unix/bsd/tcgetattr.c (__tcgetattr): Add
26104 * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Likewise.
26105 * termios/tcgetattr.c (__tcgetattr): Likewise.
26107 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26110 * include/sys/resource.h (__setrlimit): Add libc_hidden_proto.
26111 * resource/setrlimit.c (__setrlimit): Add libc_hidden_def.
26112 * sysdeps/mach/hurd/setrlimit.c (__setrlimit): Likewise.
26113 * sysdeps/unix/sysv/linux/setrlimit.c (__setrlimit): Likewise.
26114 * sysdeps/unix/sysv/linux/setrlimit64.c (__GI___setrlimit): New.
26116 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26119 * include/monetary.h (__vstrfmon_l): Add attribute_hidden.
26121 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26124 * include/sched.h (__sched_setparam): Add libc_hidden_proto.
26125 * posix/sched_setp.c (__sched_setparam): Add libc_hidden_def.
26127 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26130 * intl/hash-string.h (__hash_string): Add attribute_hidden.
26132 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26135 * include/mntent.h (__hasmntopt): Add libc_hidden_proto.
26136 * misc/mntent_r.c (__hasmntopt): Add libc_hidden_def.
26138 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26141 * include/ifreq.h: New file.
26142 * sysdeps/generic/ifreq.h (__if_nextreq): Removed.
26143 (__ifreq): Likewise.
26144 * sysdeps/mach/hurd/ifreq.h (__if_nextreq): Removed.
26145 (__ifreq): Likewise.
26147 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26150 * include/idna.h: New file.
26151 * inet/getnameinfo.c: Include <idna.h> instead of
26153 (__idna_to_unicode_lzlz): Removed.
26154 * sysdeps/posix/getaddrinfo.c: Include <idna.h> instead of
26156 (__idna_to_ascii_lz): Removed.
26157 (__idna_to_unicode_lzlz): Likewise.
26159 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26162 * include/plural-exp.h: New file.
26163 * intl/plural-exp.c: Include <plural-exp.h> instead of
26166 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26169 * sysdeps/unix/sysv/linux/getsourcefilter.c: Include
26170 "getsourcefilter.h".
26171 * sysdeps/unix/sysv/linux/getsourcefilter.h: New file.
26172 * sysdeps/unix/sysv/linux/setsourcefilter.c: Include
26173 "getsourcefilter.h".
26174 (__get_sol): Removed.
26176 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26179 * elf/dl-iteratephdr.c (hidden_proto (__dl_iterate_phdr)): Moved
26181 * include/link.h (hidden_proto (__dl_iterate_phdr)): Here.
26183 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26186 * sysdeps/unix/sysv/linux/getpt.c (__bsd_getpt): Add
26189 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26192 * libio/iolibio.h (__fopen_maybe_mmap): Add attribute_hidden.
26194 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26197 * include/search.h (__tdestroy): Add libc_hidden_proto.
26198 * misc/tsearch.c (__tdestroy): Add libc_hidden_def.
26200 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26203 * include/assert.h (__assert_fail_base): Add attribute_hidden.
26205 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26208 * sysdeps/unix/sysv/linux/include/sys/sysinfo.h (__sysinfo): Add
26211 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26214 * include/signal.h (__kill): Add libc_hidden_proto.
26215 (__sigblock): Likewise.
26216 (__sigprocmask): Likewise.
26217 (__sigaltstack): Likewise.
26218 * signal/kill.c (__kill): Add libc_hidden_def.
26219 * signal/sigblock.c (__sigblock): Likewise.
26220 * signal/sigprocmask.c (__sigprocmask): Likewise.
26221 * sysdeps/mach/hurd/kill.c (__kill): Likewise.
26222 * sysdeps/mach/hurd/sigaltstack.c (__sigaltstack): Likewise.
26223 * sysdeps/mach/hurd/sigprocmask.c (__sigprocmask): Likewise.
26224 * sysdeps/posix/sigblock.c (__sigblock): Likewise.
26225 * sysdeps/unix/sysv/linux/alpha/sigprocmask.c (__sigprocmask):
26227 * sysdeps/unix/sysv/linux/ia64/sigprocmask.c (__sigprocmask):
26229 * sysdeps/unix/sysv/linux/s390/s390-64/sigprocmask.c
26230 (__sigprocmask): Likewise.
26231 * sysdeps/unix/sysv/linux/sigprocmask.c (__sigprocmask):
26233 * /sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c
26234 (__sigprocmask): Likewise.
26235 * sysdeps/unix/sysv/linux/x86_64/sigprocmask.c (__sigprocmask):
26238 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26241 * include/string.h (__strsep): Add libc_hidden_proto.
26242 * string/strsep.c (__strsep): Add libc_hidden_def.
26244 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26247 * posix/spawn_int.h (__posix_spawn_file_actions_realloc): Add
26249 (__spawni): Likewise.
26251 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26254 * include/sys/mman.h (__mremap): Add libc_hidden_proto.
26255 * sysdeps/unix/sysv/linux/m68k/mremap.S (__mremap): Add
26258 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26261 * include/malloc.h (__malloc_check_init): Add attribute_hidden.
26263 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26266 * include/sys/ioctl.h (__ioctl): Add libc_hidden_proto.
26267 * misc/ioctl.c (__ioctl): Add libc_hidden_def.
26268 * sysdeps/mach/hurd/ioctl.c (__ioctl): Likewise.
26269 * sysdeps/unix/sysv/linux/aarch64/ioctl.S (__ioctl): Likewise.
26270 * sysdeps/unix/sysv/linux/mips/mips64/n64/ioctl.S (__ioctl):
26272 * sysdeps/unix/sysv/linux/powerpc/ioctl.c (__ioctl): Likewise.
26273 * sysdeps/unix/sysv/linux/tile/tilegx/ioctl.S (__ioctl): Likewise.
26275 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26278 * intl/gettextP.h (__dcngettext): Add attribute_hidden.
26279 (__dcigettext): Likewise.
26281 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26284 * include/sys/sysinfo.h (__get_nprocs_conf): Add
26286 (__get_nprocs): Likewise.
26287 (__get_phys_pages): Likewise.
26288 (__get_avphys_pages): Likewise.
26289 (__get_child_max): Add attribute_hidden.
26290 * misc/getsysstats.c (__get_nprocs_conf): Add libc_hidden_def.
26291 (__get_nprocs): Likewise.
26292 (__get_phys_pages): Likewise.
26293 (__get_avphys_pages): Likewise.
26294 * sysdeps/mach/getsysstats.c (__get_nprocs_conf): Add
26296 (__get_nprocs): Likewise.
26297 (__get_phys_pages): Likewise.
26298 (__get_avphys_pages): Likewise.
26299 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Add
26301 (__get_nprocs_conf): Likewise.
26302 (__get_phys_pages): Likewise.
26303 (__get_avphys_pages): Likewise.
26305 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26308 * sysdeps/unix/sysv/linux/netlinkaccess.h (__netlink_open): Add
26310 (__netlink_close): Likewise.
26311 (__netlink_free_handle): Likewise.
26312 (__netlink_request): Likewise.
26314 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26317 * include/rpc/rpc.h (__rpc_thread_variables): Add
26319 (__rpc_thread_svc_cleanup): Likewise.
26320 (__rpc_thread_clnt_cleanup): Likewise.
26321 (__rpc_thread_key_cleanup): Likewise.
26323 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26326 * include/sys/uio.h (__readv): Add libc_hidden_proto.
26327 (__writev): Likewise.
26328 * misc/readv.c (__readv): Add libc_hidden_def.
26329 * misc/writev.c (__writev): Likewise.
26330 * sysdeps/posix/readv.c (__readv): Likewise.
26331 * sysdeps/posix/writev.c (__writev): Likewise.
26332 * sysdeps/unix/sysv/linux/readv.c: Include <sys/uio.h>.
26333 (__readv): Likewise.
26334 * sysdeps/unix/sysv/linux/writev.c: Include <sys/uio.h>.
26335 (__writev): Likewise.
26337 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26340 * include/regex.h (__re_compile_fastmap): Add attribute_hidden.
26341 (__regcomp): Add libc_hidden_proto.
26342 (__regexec): Likewise.
26343 (__regfree): Likewise.
26344 * posix/regcomp.c (__regcomp): Add libc_hidden_def.
26345 (__regfree): Likewise.
26346 * posix/regexec.c (__regexec): Likewise.
26348 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26351 * include/utmp.h (__updwtmp): Add libc_hidden_proto.
26352 (__getutent): Likewise.
26353 (__getutid): Likewise.
26354 (__getutline): Likewise.
26355 (__pututline): Likewise.
26356 (__getutent_r): Likewise.
26357 (__getutid_r): Likewise.
26358 (__getutline_r): Likewise.
26359 (__utmpname): Add attribute_hidden.
26360 (__setutent): Likewise.
26361 (__endutent): Likewise.
26362 * login/getutent.c (__getutent): Add libc_hidden_def.
26363 * login/getutent_r.c (__getutent_r): Likewise.
26364 (__pututline): Likewise.
26365 * login/getutid.c (__getutid): Likewise.
26366 * login/getutid_r.c (__getutid_r): Likewise.
26367 * login/getutline.c (__getutline): Likewise.
26368 * login/getutline_r.c (__getutline_r): Likewise.
26369 * login/updwtmp.c (__updwtmp): Likewise.
26371 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26374 * include/dirent.h (__opendir): Always add attribute_hidden.
26375 (__fdopendir): Likewise.
26376 (__closedir): Likewise.
26377 (__readdir): Likewise.
26378 (__readdir64): Add libc_hidden_proto.
26379 * sysdeps/mach/hurd/readdir64.c (__readdir64): Add libc_hidden_def.
26380 * sysdeps/unix/sysv/linux/i386/readdir64.c (__readdir64): Likewise.
26381 * sysdeps/unix/sysv/linux/readdir64.c (__readdir64): Likewise.
26382 * sysdeps/unix/sysv/linux/wordsize-64/readdir.c (__GI___readdir64):
26385 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26388 * include/aliases.h (__getaliasbyname_r): Add attribute_hidden.
26389 * include/netdb.h (__gethostbyaddr_r): Likewise.
26390 (__gethostbyname_r): Likewise.
26391 (__gethostbyname2_r): Likewise.
26392 (__getnetbyaddr_r): Likewise.
26393 (__getnetbyname_r): Likewise.
26394 (__getservbyname_r): Likewise.
26395 (__getservbyport_r): Likewise.
26396 (__getprotobyname_r): Likewise.
26397 (__getprotobynumber_r): Likewise.
26398 (__getnetgrent_r): Likewise.
26399 * include/rpc/netdb.h (__getrpcbyname_r): Likewise.
26400 (__getrpcbynumber_r): Likewise.
26401 * nss/getXXbyYY.c (INTERNAL (REENTRANT_NAME)): Likewise.
26403 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26406 * include/stdio.h (__fcloseall): Add attribute_hidden.
26407 (__getline): Likewise.
26408 (__path_search): Likewise.
26409 (__gen_tempname): Likewise.
26410 (__libc_message): Likewise.
26411 (__flockfile): Likewise.
26412 (__funlockfile): Likewise.
26413 (__fxprintf): Likewise.
26414 (__fxprintf_nocancel): Likewise.
26416 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26419 * include/gshadow.h (__fgetsgent_r): Add attribute_hidden.
26420 (__sgetsgent_r): Likewise.
26422 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26425 * include/sys/statfs.h (__fstatfs): Add attribute_hidden.
26426 (__statfs64): Likewise.
26427 (__fstatfs64): Likewise.
26428 * include/sys/statvfs.h (__statvfs64): Likewise.
26429 (__fstatvfs64): Likewise.
26430 * sysdeps/unix/sysv/linux/pathconf.h (__statfs_link_max): Likewise.
26431 (__statfs_filesize_max): Likewise.
26432 (__statfs_symlinks): Likewise.
26433 (__statfs_chown_restricted): Likewise.
26435 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26438 * include/time.h (__tzstring): Add attribute_hidden.
26439 (__tzfile_read): Likewise.
26440 (__tzfile_compute): Likewise.
26441 (__tzfile_default): Likewise.
26442 (__tzset_parse_tz): Likewise.
26443 (__offtime): Likewise.
26444 (__asctime_r): Likewise.
26445 (__tzset): Likewise.
26446 (__tz_convert): Likewise.
26447 (__getdate_r): Likewise.
26448 (__getclktck): Likewise.
26450 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26453 * nscd/nscd-client.h (__nscd_get_map_ref): Add attribute_hidden.
26454 (__nscd_unmap): Likewise.
26455 (__nscd_cache_search): Likewise.
26456 (__nscd_get_nl_timestamp): Likewise.
26457 (__nscd_getpwnam_r): Likewise.
26458 (__nscd_getpwuid_r): Likewise.
26459 (__nscd_getgrnam_r): Likewise.
26460 (__nscd_getgrgid_r): Likewise.
26461 (__nscd_gethostbyname_r): Likewise.
26462 (__nscd_gethostbyname2_r): Likewise.
26463 (__nscd_gethostbyaddr_r): Likewise.
26464 (__nscd_getai): Likewise.
26465 (__nscd_getgrouplist): Likewise.
26466 (__nscd_getservbyname_r): Likewise.
26467 (__nscd_getservbyport_r): Likewise.
26468 (__nscd_innetgr): Likewise.
26469 (__nscd_setnetgrent): Likewise.
26471 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26474 * include/gmp.h: Declare internal functions only if _ISOMAC is
26476 (__mpn_extract_double): Add attribute_hidden.
26477 (__mpn_extract_long_double): Likewise.
26478 (__mpn_extract_float128): Likewise.
26479 (__mpn_construct_float): Likewise.
26480 (__mpn_construct_double): Likewise.
26481 (__mpn_construct_long_double): Likewise.
26482 (__mpn_construct_float128): Likewise.
26483 (mpn_add_1): Likewise.
26484 (mpn_addmul_1): Likewise.
26485 (mpn_add_n): Likewise.
26486 (mpn_cmp): Likewise.
26487 (mpn_divrem): Likewise.
26488 (mpn_lshift): Likewise.
26489 (mpn_mul): Likewise.
26490 (mpn_mul_1): Likewise.
26491 (mpn_rshift): Likewise.
26492 (mpn_sub_1): Likewise.
26493 (mpn_submul_1): Likewise.
26494 (mpn_sub_n): Likewise.
26496 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26499 * include/wchar.h (__wcsnlen): Add attribute_hidden.
26500 (__wcscat): Likewise.
26501 (__btowc): Likewise.
26502 (__wcrtomb): Likewise.
26503 (__mbsrtowcs): Likewise.
26504 (__wcsrtombs): Likewise.
26505 (__mbsnrtowcs): Likewise.
26506 (__wcsnrtombs): Likewise.
26507 (__wcsncpy): Likewise.
26508 (__wcpncpy): Likewise.
26509 (__wmemcpy): Likewise.
26510 (__wmempcpy): Likewise.
26511 (__wmemmove): Likewise.
26512 (__wcschrnul): Likewise.
26513 (__vfwscanf): Likewise.
26514 (__vswprintf): Likewise.
26515 (__fwprintf): Likewise.
26516 (__vfwprintf): Likewise.
26518 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26521 * include/grp.h (__fgetgrent_r): Add attribute_hidden.
26522 (__getgrgid_r): Likewise.
26523 (__getgrnam_r): Likewise.
26524 * include/pwd.h (__getpwuid_r): Likewise.
26525 (__getpwnam_r): Likewise.
26526 (__fgetpwent_r): Likewise.
26527 * include/shadow.h (__getspnam_r): Likewise.
26528 (__sgetspent_r): Likewise.
26529 (__fgetspent_r): Likewise.
26531 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26534 * include/unistd.h (__access): Add attribute_hidden.
26535 (__lseek64): Likewise.
26536 (__libc_pread64): Likewise.
26537 (__pipe2): Likewise.
26538 (__sleep): Likewise.
26539 (__chdir): Likewise.
26540 (__fchdir): Likewise.
26541 (__getcwd): Likewise.
26542 (__rmdir): Likewise.
26543 (__execvpe): Likewise.
26544 (__execve): Likewise.
26545 (__setsid): Likewise.
26546 (__getuid): Likewise.
26547 (__geteuid): Likewise.
26548 (__getgid): Likewise.
26549 (__getegid): Likewise.
26550 (__getgroups): Likewise.
26551 (__group_member): Likewise.
26552 (__ttyname_r): Likewise.
26553 (__isatty): Likewise.
26554 (__readlink): Likewise.
26555 (__unlink): Likewise.
26556 (__gethostname): Likewise.
26557 (__profil): Likewise.
26558 (__getdtablesize): Likewise.
26560 (__ftruncate): Likewise.
26561 (__ftruncate64): Likewise.
26563 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26566 * argp/argp-fmtstream.c: Include <argp-fmtstream.h>.
26567 * argp/argp-fs-xinl.c: Likewise.
26568 * argp/argp-help.c: Include <argp.h> and <argp-fmtstream.h>.
26569 * argp/argp-parse.c: Include <argp.h>.
26570 * argp/argp-xinl.c: Likewise.
26571 * include/argp-fmtstream.h: New file.
26572 * include/argp.h (__argp_error): Add attribute_hidden.
26573 (__argp_failure): Likewise.
26574 (__argp_input): Likewise.
26575 (__argp_state_help): Likewise.
26577 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26580 * include/wchar.h (____wcstof_l_internal): New prototype.
26581 (____wcstod_l_internal): Likewise.
26582 (____wcstold_l_internal): Likewise.
26583 (____wcstol_l_internal): Likewise.
26584 (____wcstoul_l_internal): Likewise.
26585 (____wcstoll_l_internal): Likewise.
26586 (____wcstoull_l_internal): Likewise.
26587 (____wcstof128_l_internal): Likewise.
26588 * sysdeps/ieee754/float128/wcstof128.c
26589 (____wcstof128_l_internal): Removed.
26590 * sysdeps/ieee754/float128/wcstof128_l.c
26591 (____wcstof128_l_internal): Likewise.
26592 * wcsmbs/wcstod.c (____wcstod_l_internal): Likewise.
26593 * wcsmbs/wcstod_l.c (____wcstod_l_internal): Likewise.
26594 * wcsmbs/wcstof.c (____wcstof_l_internal): Likewise.
26595 * wcsmbs/wcstof_l.c (____wcstof_l_internal): Likewise.
26596 * wcsmbs/wcstol_l.c (____wcstol_l_internal): Likewise.
26597 * wcsmbs/wcstold.c (____wcstold_l_internal): Likewise.
26598 * wcsmbs/wcstold_l.c (____wcstold_l_internal): Likewise.
26599 * wcsmbs/wcstoll_l.c (____wcstoll_l_internal): Likewise.
26600 * wcsmbs/wcstoul_l.c (____wcstoul_l_internal): Likewise.
26601 * wcsmbs/wcstoull_l.c (____wcstoull_l_internal): Likewise.
26603 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26606 * sysdeps/unix/sysv/linux/fstatvfs.c: Include "internal_statvfs.h"
26607 instead of <sys/statvfs.h>.
26608 (__internal_statvfs): Removed.
26609 * sysdeps/unix/sysv/linux/fstatvfs64.c Include "internal_statvfs.h"
26610 instead of <sys/statvfs.h>.
26611 (__internal_statvfs64): Removed.
26612 * sysdeps/unix/sysv/linux/internal_statvfs.c: Include
26613 "internal_statvfs.h" instead of <sys/statvfs.h>.
26614 * sysdeps/unix/sysv/linux/internal_statvfs.h: New file.
26615 * sysdeps/unix/sysv/linux/statvfs.c Include "internal_statvfs.h"
26616 instead of <sys/statvfs.h>.
26617 (__internal_statvfs): Removed.
26618 * sysdeps/unix/sysv/linux/statvfs64.c Include "internal_statvfs.h"
26619 instead of <sys/statvfs.h>.
26620 (__internal_statvfs64): Removed.
26622 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26625 * iconv/gconv_int.h (__gconv_open): Add attribute_hidden.
26626 (__gconv_close): Likewise.
26627 (__gconv): Likewise.
26628 (__gconv_find_transform): Likewise.
26629 (__gconv_lookup_cache): Likewise.
26630 (__gconv_compare_alias_cache): Likewise.
26631 (__gconv_load_cache): Likewise.
26632 (__gconv_get_path): Likewise.
26633 (__gconv_close_transform): Likewise.
26634 (__gconv_release_cache): Likewise.
26635 (__gconv_find_shlib): Likewise.
26636 (__gconv_release_shlib): Likewise.
26637 (__gconv_get_builtin_trans): Likewise.
26638 (__gconv_compare_alias): Likewise.
26639 * include/dlfcn.h (_dlerror_run): Likewise.
26640 * include/stdio.h (__fortify_fail_abort): Likewise.
26641 * include/time.h (__tz_compute): Likewise.
26642 (__strptime_internal): Likewise.
26643 * intl/gettextP.h (_nl_find_domain): Likewise.
26644 (_nl_load_domain): Likewise.
26645 (_nl_find_msg): Likewise.
26646 * intl/plural-exp.h (FREE_EXPRESSION): Likewise.
26647 (EXTRACT_PLURAL_EXPRESSION): Likewise.
26648 * locale/coll-lookup.h (__collidx_table_lookup): Likewise.
26649 * resolv/gai_misc.h (__gai_enqueue_request): Likewise.
26650 (__gai_find_request): Likewise.
26651 (__gai_remove_request): Likewise.
26652 (__gai_notify): Likewise.
26653 (__gai_notify_only): Likewise.
26654 * sysdeps/generic/aio_misc.h (__aio_sigqueue): Likewise.
26655 * sysdeps/generic/ldsodefs.h (_dl_fini): Likewise.
26656 (_dl_non_dynamic_init): Likewise.
26657 (_dl_aux_init): Likewise.
26658 * sysdeps/i386/machine-gmon.h (mcount_internal): Likewise.
26659 * sysdeps/unix/sysv/linux/i386/olddirent.h (__old_getdents64):
26661 * wcsmbs/wcsmbsload.h (__wcsmbs_load_conv): Likewise.
26662 (__wcsmbs_clone_conv): Likewise.
26663 (__wcsmbs_named_conv): Likewise.
26665 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26668 * include/stdlib.h (__random): Add attribute_hidden.
26669 (__random_r): Likewise.
26670 (__srandom_r): Likewise.
26671 (__initstate_r): Likewise.
26672 (__setstate_r): Likewise.
26673 (__erand48_r): Likewise.
26674 (__nrand48_r): Likewise.
26675 (__jrand48_r): Likewise.
26676 (__srand48_r): Likewise.
26677 (__seed48_r): Likewise.
26678 (__lcong48_r): Likewise.
26679 (__drand48_iterate): Likewise.
26680 (__setenv): Likewise.
26681 (__unsetenv): Likewise.
26682 (__clearenv): Likewise.
26683 (__ptsname_r): Likewise.
26684 (__posix_openpt): Likewise.
26685 (__add_to_environ): Likewise.
26686 (__realpath): Add libc_hidden_proto.
26687 (__ecvt_r): Likewise.
26688 (__fcvt_r): Likewise.
26689 (__qecvt_r): Likewise.
26690 (__qfcvt_r): Likewise.
26691 * misc/efgcvt_r.c (cvt_symbol_1): Add libc_hidden_def (local).
26692 * stdlib/canonicalize.c (__realpath): Add libc_hidden_def.
26694 2017-10-01 H.J. Lu <hongjiu.lu@intel.com>
26697 * include/stdlib.h (__ptsname_internal): Add attribute_hidden.
26698 * include/time.h (__mktime_internal): Likewise.
26699 * libio/iolibio.h (__fopen_internal): Likewise.
26701 2017-10-01 John David Anglin <danglin@gcc.gnu.org>
26703 * sysdeps/unix/sysv/linux/hppa/getcontext.S (__getcontext): Save return
26705 * sysdeps/unix/sysv/linux/hppa/setcontext.S (__setcontext): Likewise.
26706 Correct offset used to restore PIC register.
26708 2017-09-30 John David Anglin <danglin@gcc.gnu.org>
26711 * sysdeps/unix/sysv/linux/hppa/getcontext.S (__getcontext): Use PIC
26712 code to load address of __getcontext_ret when generating PIC code.
26714 2017-09-30 H.J. Lu <hongjiu.lu@intel.com>
26716 * elf/Makefile (tests-static-internal): Add
26717 tst-tls1-static-non-pie.
26718 (LDFLAGS-tst-tls1-static-non-pie): New.
26719 * elf/tst-tls1-static-non-pie.c: New file.
26721 2017-09-29 Joseph Myers <joseph@codesourcery.com>
26723 * sysdeps/ieee754/dbl-64/s_asinh.c: Include <libm-alias-double.h>.
26724 (asinh): Define using libm_alias_double.
26725 * sysdeps/ieee754/dbl-64/s_cbrt.c: Include <libm-alias-double.h>.
26726 (cbrt): Define using libm_alias_double.
26727 * sysdeps/ieee754/dbl-64/s_copysign.c: Include
26728 <libm-alias-double.h>.
26729 (copysign): Define using libm_alias_double.
26730 * sysdeps/ieee754/dbl-64/s_erf.c: Include <libm-alias-double.h>.
26731 (erf): Define using libm_alias_double.
26733 * sysdeps/ieee754/dbl-64/s_expm1.c: Include <libm-alias-double.h>.
26734 (expm1): Define using libm_alias_double.
26735 * sysdeps/ieee754/dbl-64/s_fabs.c: Include <libm-alias-double.h>.
26736 (fabs): Define using libm_alias_double.
26737 * sysdeps/ieee754/dbl-64/s_fromfp.c (fromfp): Define using
26739 * sysdeps/ieee754/dbl-64/s_fromfp_main.c: Include
26740 <libm-alias-double.h>.
26741 * sysdeps/ieee754/dbl-64/s_fromfpx.c (fromfpx): Define using
26743 * sysdeps/ieee754/dbl-64/s_getpayload.c: Include
26744 <libm-alias-double.h>.
26745 (getpayload): Define using libm_alias_double.
26746 * sysdeps/ieee754/dbl-64/s_llrint.c: Include
26747 <libm-alias-double.h>.
26748 (llrint): Define using libm_alias_double.
26749 * sysdeps/ieee754/dbl-64/s_lrint.c: Include <libm-alias-double.h>.
26750 (lrint): Define using libm_alias_double.
26751 * sysdeps/ieee754/dbl-64/s_nextup.c: Include
26752 <libm-alias-double.h>.
26753 (nextup): Define using libm_alias_double.
26754 * sysdeps/ieee754/dbl-64/s_roundeven.c: Include
26755 <libm-alias-double.h>.
26756 (roundeven): Define using libm_alias_double.
26757 * sysdeps/ieee754/dbl-64/s_setpayload.c (setpayload): Define using
26759 * sysdeps/ieee754/dbl-64/s_setpayload_main.c: Include
26760 <libm-alias-double.h>.
26761 * sysdeps/ieee754/dbl-64/s_setpayloadsig.c (setpayloadsig): Define
26762 using libm_alias_double.
26763 * sysdeps/ieee754/dbl-64/s_sin.c: Include <libm-alias-double.h>.
26764 (cos): Define using libm_alias_double.
26766 * sysdeps/ieee754/dbl-64/s_sincos.c: Include
26767 <libm-alias-double.h>.
26768 (sincos): Define using libm_alias_double.
26769 * sysdeps/ieee754/dbl-64/s_tanh.c: Include <libm-alias-double.h>.
26770 (tanh): Define using libm_alias_double.
26771 * sysdeps/ieee754/dbl-64/s_totalorder.c: Include
26772 <libm-alias-double.h>.
26773 (totalorder): Define using libm_alias_double.
26774 * sysdeps/ieee754/dbl-64/s_totalordermag.c: Include
26775 <libm-alias-double.h>.
26776 (totalordermag): Define using libm_alias_double.
26777 * sysdeps/ieee754/dbl-64/s_ufromfp.c (ufromfp): Define using
26779 * sysdeps/ieee754/dbl-64/s_ufromfpx.c (ufromfpx): Define using
26781 * sysdeps/ieee754/dbl-64/wordsize-64/s_getpayload.c: Include
26782 <libm-alias-double.h>.
26783 (getpayload): Define using libm_alias_double.
26784 * sysdeps/ieee754/dbl-64/wordsize-64/s_roundeven.c: Include
26785 <libm-alias-double.h>.
26786 (roundeven): Define using libm_alias_double.
26787 * sysdeps/ieee754/dbl-64/wordsize-64/s_setpayload_main.c: Include
26788 <libm-alias-double.h>.
26789 * sysdeps/ieee754/dbl-64/wordsize-64/s_totalorder.c: Include
26790 <libm-alias-double.h>.
26791 (totalorder): Define using libm_alias_double.
26792 * sysdeps/ieee754/dbl-64/wordsize-64/s_totalordermag.c: Include
26793 <libm-alias-double.h>.
26794 (totalordermag): Define using libm_alias_double.
26795 * sysdeps/ieee754/ldbl-opt/s_copysign.c (copysignl): Only define
26796 libc compat symbol here.
26797 * sysdeps/ieee754/ldbl-opt/s_asinh.c: Remove file.
26798 * sysdeps/ieee754/ldbl-opt/s_cbrt.c: Likewise.
26799 * sysdeps/ieee754/ldbl-opt/s_erf.c: Likewise.
26800 * sysdeps/ieee754/ldbl-opt/s_expm1.c: Likewise.
26801 * sysdeps/ieee754/ldbl-opt/s_fabs.c: Likewise.
26802 * sysdeps/ieee754/ldbl-opt/s_llrint.c: Likewise.
26803 * sysdeps/ieee754/ldbl-opt/s_lrint.c: Likewise.
26804 * sysdeps/ieee754/ldbl-opt/s_sin.c: Likewise.
26805 * sysdeps/ieee754/ldbl-opt/s_sincos.c: Likewise.
26806 * sysdeps/ieee754/ldbl-opt/s_tanh.c: Likewise.
26808 2017-09-29 H.J. Lu <hongjiu.lu@intel.com>
26810 * sysdeps/arm/dl-machine.h (elf_machine_load_address): Use
26811 _dl_relocate_static_pie instead of _dl_start to compute load
26812 address in static PIE. Return 0 if _DYNAMIC is undefined for
26815 2017-09-29 H.J. Lu <hongjiu.lu@intel.com>
26817 * sysdeps/mips/dl-machine.h (elf_machine_dynamic): Return 0 if
26818 _DYNAMIC is undefined for static executable.
26820 2017-09-29 H.J. Lu <hongjiu.lu@intel.com>
26822 * sysdeps/arm/start.S (_start): Check PIC instead of SHARED.
26824 2017-09-29 Joseph Myers <joseph@codesourcery.com>
26826 * sysdeps/x86_64/fpu/libm-test-ulps: Update.
26828 2017-09-29 Wilco Dijkstra <wdijkstr@arm.com>
26830 * sysdeps/ieee754/dbl-64/e_lgamma_r.c
26831 (__ieee754_lgamma_r): Use fabs rather than __fabs.
26832 * sysdeps/ieee754/dbl-64/e_log10.c (__ieee754_log10): Likewise.
26833 * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Likewise.
26834 * sysdeps/ieee754/flt-32/e_lgammaf_r.c
26835 (__ieee754_lgammaf_r): Use fabsf rather than __fabsf.
26836 * sysdeps/ieee754/flt-32/e_log10f.c (__ieee754_log10f): Likewise.
26837 * sysdeps/ieee754/flt-32/e_log2f.c (__ieee754_log2f): Likewise.
26838 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c
26839 (__ieee754_lgammal_r): Use fabsl rather than __fabsl.
26840 * sysdeps/ieee754/ldbl-128/e_log10l.c (__ieee754_log10l): Likewise.
26841 * sysdeps/ieee754/ldbl-128/e_log2l.c (__ieee754_log2l): Likewise.
26842 * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c
26843 (__ieee754_lgammal_r): Use fabsl rather than __fabsl.
26844 * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l): Likewise.
26845 * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l): Likewise.
26846 * sysdeps/powerpc/nofpu/Makefile: Add -fno-builtin-fabsl for BZ #29253.
26848 2017-09-29 Wilco Dijkstra <wdijkstr@arm.com>
26850 * math/bits/cmathcalls.h (cimag): Remove inline.
26851 (creal): Remove inline.
26852 (conj): Remove inline.
26854 2017-09-29 Szabolcs Nagy <szabolcs.nagy@arm.com>
26856 * math/Makefile (type-float-routines): Add e_powf_log2_data.
26857 * sysdeps/ieee754/flt-32/e_powf.c: New implementation.
26858 * sysdeps/ieee754/flt-32/e_powf_log2_data.c: New file.
26859 * sysdeps/ieee754/flt-32/math_config.h (__powf_log2_data): Define.
26860 (issignalingf_inline): Likewise.
26861 (POWF_LOG2_TABLE_BITS): Likewise.
26862 (POWF_LOG2_POLY_ORDER): Likewise.
26863 (POWF_SCALE_BITS): Likewise.
26864 (POWF_SCALE): Likewise.
26865 * sysdeps/i386/fpu/e_powf_log2_data.c: New file.
26866 * sysdeps/ia64/fpu/e_powf_log2_data.c: New file.
26867 * sysdeps/m68k/m680x0/fpu/e_powf_log2_data.c: New file.
26869 2017-09-29 Szabolcs Nagy <szabolcs.nagy@arm.com>
26871 * math/Makefile (type-float-routines): Add e_log2f_data.
26872 * sysdeps/ieee754/flt-32/e_log2f.c: New implementation.
26873 * sysdeps/ieee754/flt-32/e_log2f_data.c: New file.
26874 * sysdeps/ieee754/flt-32/math_config.h (__log2f_data): Define.
26875 (LOG2F_TABLE_BITS, LOG2F_POLY_ORDER): Define.
26876 * sysdeps/i386/fpu/e_log2f_data.c: New file.
26877 * sysdeps/ia64/fpu/e_log2f_data.c: New file.
26878 * sysdeps/m68k/m680x0/fpu/e_log2f_data.c: New file.
26880 2017-09-29 Szabolcs Nagy <szabolcs.nagy@arm.com>
26882 * math/Makefile (type-float-routines): Add e_logf_data.
26883 * sysdeps/ieee754/flt-32/e_logf.c: New implementation.
26884 * sysdeps/ieee754/flt-32/e_logf_data.c: New file.
26885 * sysdeps/ieee754/flt-32/math_config.h (__logf_data): Define.
26886 (LOGF_TABLE_BITS, LOGF_POLY_ORDER): Define.
26887 * sysdeps/i386/fpu/e_logf_data.c: New file.
26888 * sysdeps/ia64/fpu/e_logf_data.c: New file.
26889 * sysdeps/m68k/m680x0/fpu/e_logf_data.c: New file.
26891 2017-09-28 H.J. Lu <hongjiu.lu@intel.com>
26893 * sysdeps/i386/dl-machine.h (elf_machine_load_address): Allow
26894 undefined _DYNAMIC in PIE libc.a.
26895 * sysdeps/x86_64/dl-machine.h (elf_machine_load_address):
26898 2017-09-28 Wilco Dijkstra <wdijkstr@arm.com>
26900 * sysdeps/alpha/fpu/bits/mathinline.h: Delete file.
26901 * sysdeps/ia64/fpu/bits/mathinline.h: Delete file.
26902 * sysdeps/m68k/coldfire/fpu/bits/mathinline.h: Delete file.
26903 * sysdeps/m68k/m680x0/fpu/bits/mathinline.h: (__signbitf): Remove.
26904 (__signbit): Remove.
26905 (__signbitl): Remove.
26906 * sysdeps/powerpc/bits/mathinline.h (__signbitf): Remove.
26907 (__signbit): Remove.
26908 (__signbitl): Remove.
26909 * sysdeps/s390/fpu/bits/mathinline.h: (__signbitf): Remove.
26910 (__signbit): Remove.
26911 (__signbitl): Remove.
26912 * sysdeps/sparc/fpu/bits/mathinline.h (__signbitf): Remove.
26913 (__signbit): Remove.
26914 (__signbitl): Remove.
26915 * sysdeps/tile/bits/mathinline.h: Delete file.
26916 * sysdeps/x86/fpu/bits/mathinline.h (__signbitf): Remove.
26917 (__signbit): Remove.
26918 (__signbitl): Remove.
26920 2017-09-28 Wilco Dijkstra <wdijkstr@arm.com>
26922 * math/math.h: Improve handling of C99 isgreater macros.
26923 * sysdeps/alpha/fpu/bits/mathinline.h: Remove isgreater macros.
26924 * sysdeps/m68k/m680x0/fpu/bits/mathinline.h: Likewise.
26925 * sysdeps/powerpc/bits/mathinline.h: Likewise.
26926 * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
26927 * sysdeps/x86/fpu/bits/mathinline.h: Likewise.
26929 2017-09-28 Szabolcs Nagy <szabolcs.nagy@arm.com>
26931 * sysdeps/aarch64/libm-test-ulps: Update.
26933 2017-09-28 Joseph Myers <joseph@codesourcery.com>
26936 * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
26937 math_opt_barrier on argument when doing arithmetic on it.
26938 * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c (__nearbyint):
26939 Likewise. Use math_force_eval not math_opt_barrier after
26941 * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Use
26942 math_opt_barrier on argument when doing arithmetic on it.
26943 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl):
26946 2017-09-27 H.J. Lu <hongjiu.lu@intel.com>
26948 * sysdeps/unix/sysv/linux/ifaddrs.c (__getifaddrs): Add
26950 (__freeifaddrs): Likewise.
26952 2017-09-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
26954 * include/dirent.h (__dirfd): New declaration.
26955 * dirent/dirfd.c (dirfd): Rename to __dirfd, and redefine as weak
26957 * sysdeps/posix/dirfd/dirfd.c (dirfd): Likewise.
26958 * sysdeps/mach/hurd/dirfd.c (dirfd): Likewise.
26959 * io/ftw.c (open_dir_stream, ftw_dir): Use __dirfd instead of dirfd.
26960 * include/unistd.h (__revoke): New declaration.
26961 * misc/revoke.c (revoke): Rename to __revoke, and redefine as weak
26963 * sysdeps/mach/hurd/revoke.c (revoke): Likewise.
26964 * sysdeps/unix/bsd/unlockpt.c (unlockpt): Use __revoke instead of
26966 * include/dirent.h (__seekdir): New declaration.
26967 * sysdeps/mach/hurd/seekdir.c (seekdir): Rename to __seekdir and
26968 redefine as weak alias.
26969 * sysdeps/mach/hurd/rewinddir.c (__rewinddir): Use __seekdir instead
26971 * include/ifaddrs.h (__getifaddrs, __freeifaddrs): New declarations,
26972 and use libc_hidden_def on them.
26973 * inet/ifaddrs.c (__getifaddrs, __freeifaddrs): Use libc_hidden_def on
26975 * sysdeps/gnu/ifaddrs.c (__getifaddrs, __freeifaddrs): Likewise.
26976 * inet/check_pf.c (__check_pf): Use __getifaddrs and __freeifaddrs
26977 instead of getifaddrs and freeifaddrs.
26979 2017-09-26 H.J. Lu <hongjiu.lu@intel.com>
26982 * dlfcn/modatexit.c (foo): Remove __dso_handle check.
26983 * dlfcn/modcxaatexit.c: Include <dso_handle.h>.
26984 (__dso_handle): Remove declaration.
26985 * dlfcn/tstatexit.c (__dso_handle): Removed.
26986 (main): Don't check __dso_handle.
26987 * dlfcn/tstcxaatexit.c (__dso_handle): Removed.
26988 (main): Don't check __dso_handle.
26989 * include/dso_handle.h: New file.
26990 * malloc/mtrace.c: Include <dso_handle.h>.
26991 (mtrace): Pass __dso_handle directly.
26992 * nptl/pthread_atfork.c: Include <dso_handle.h>.
26993 (__dso_handle): Remove declaration.
26994 (__pthread_atfork): Pass __dso_handle directly.
26995 * nptl/tst-atfork2mod.c: Include <dso_handle.h>.
26996 (__dso_handle): Removed.
26997 * posix/wordexp-test.c: Include <dso_handle.h>.
26998 (__dso_handle): Remove declaration.
26999 (__app_register_atfork): Pass __dso_handle directly.
27000 * stdlib/at_quick_exit.c: Include <dso_handle.h>.
27001 (__dso_handle): Remove declaration.
27002 (at_quick_exit): Pass __dso_handle directly.
27003 * stdlib/atexit.c: Include <dso_handle.h>.
27004 (__dso_handle): Remove declaration.
27005 (atexit): Pass __dso_handle directly.
27006 * stdlib/tst-tls-atexit-lib.c: Include <dso_handle.h>.
27007 (__dso_handle): Removed.
27009 2017-09-26 Joseph Myers <joseph@codesourcery.com>
27011 * sysdeps/unix/make-syscalls.sh: Use __ifunc to define symbols
27014 2017-09-26 Alexey Makhalov <amakhalov@vmware.com>
27016 * elf/dl-tunables.c (do_tunable_update_val): Range checking fix.
27017 * scripts/gen-tunables.awk: Set unspecified minval and/or maxval
27018 values to correct default value for given type.
27020 2017-09-26 H.J. Lu <hongjiu.lu@intel.com>
27023 * elf/Makefile (tests): Add tst-debug1.
27024 ($(objpfx)tst-debug1): New.
27025 ($(objpfx)tst-debug1.out): Likewise.
27026 ($(objpfx)tst-debug1mod1.so): Likewise.
27027 * elf/dl-load.c (_dl_map_object_from_fd): Skip PT_DYNAMIC segment
27028 with p_filesz == 0.
27029 * elf/tst-debug1.c: New file.
27031 2017-09-26 Joseph Myers <joseph@codesourcery.com>
27033 * sysdeps/sparc/sparc-ifunc.h [!__ASSEMBLER__] (sparc_libm_ifunc):
27034 Define using __ifunc.
27036 2017-09-26 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
27038 * sysdeps/powerpc/fpu/libm-test-ulps: Regenerate expf() and
27041 2017-09-26 Joseph Myers <joseph@codesourcery.com>
27044 * sysdeps/ia64/stackinfo.h (DEFAULT_STACK_PERMS): Likewise.
27046 2017-09-26 Florian Weimer <fweimer@redhat.com>
27048 * resolv/Makefile (tests-internal): Fix typo in comment.
27050 2017-09-26 Florian Weimer <fweimer@redhat.com>
27052 * resolv/nss_dns/dns-host.c: Fix typo in comment.
27054 2017-09-25 Adhemerval Zanella <adhemerval.zanella@linaro.org>
27056 * lib/malloc/scratch_buffer.h (struct scratch_buffer):
27057 Use an union instead of a max_align_t array for __space,
27058 so that __space is the same size on all platforms.
27059 * malloc/scratch_buffer_grow_preserve.c
27060 (__libc_scratch_buffer_grow_preserve): Likewise.
27063 * include/gnu-versions.h (_GNU_GLOB_INTERFACE_VERSION): Increase
27065 * posix/Makefile (routines): Add glob-lstat-compat and
27066 glob64-lstat-compat.
27067 * posix/Versions (GLIBC_2.27, glob, glob64): Add symbol version.
27068 * posix/glob-lstat-compat.c: New file.
27069 * posix/glob64-lstat-compat.c: Likewise.
27070 * posix/tst-glob_lstat_compat.c: Likewise.
27071 * sysdeps/unix/sysv/linux/glob-lstat-compat.c: Likewise.
27072 * sysdeps/unix/sysv/linux/alpha/glob-lstat-compat.c: Likewise.
27073 * sysdeps/unix/sysv/linux/glob64-lstat-compat.c: Likewise.
27074 * sysdeps/unix/sysv/linux/s390/s390-32/glob64-lstat-compat.c:
27076 * sysdeps/unix/sysv/linux/alpha/glob.c: Remove file.
27077 * sysdeps/unix/sysv/linux/s390/s390-32/glob64.c: Likewise.
27078 * posix/glob.c (glob_lstat): New function.
27079 (glob): Rename to __glob and add versioned symbol to 2.27.
27080 (glob_in_dir): Use glob_lstat.
27081 * posix/glob64.c (glob64): Add GLOB_ATTRIBUTE.
27082 * sysdeps/unix/sysv/linux/arm/libc.abilist: Likewise.
27083 * sysdeps/unix/sysv/linux/glob.c (glob): Add versioned symbol for
27085 * sysdeps/unix/sysv/linux/glob64.c (glob64): Likewise.
27086 * sysdeps/unix/sysv/linux/oldglob.c (GLOB_NO_LSTAT): Define.
27087 * sysdeps/unix/sysv/linux/alpha/oldglob.c (__old_glob): Do not use
27088 gl_lstat on glob call.
27089 * sysdeps/unix/sysv/linux/aarch64/libc.abilist: Add GLIBC_2.27 glob
27090 and glob64 symbols.
27091 * sysdeps/unix/sysv/linux/alpha/libc.abilist: Likewise.
27092 * sysdeps/unix/sysv/linux/hppa/libc.abilist: Likewise.
27093 * sysdeps/unix/sysv/linux/i386/libc.abilist: Likewise.
27094 * sysdeps/unix/sysv/linux/ia64/libc.abilist: Likewise.
27095 * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: Likewise.
27096 * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: Likewise.
27097 * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Likewise.
27098 * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: Likewise.
27099 * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: Likewise.
27100 * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: Likewise.
27101 * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: Likewise.
27102 * sysdeps/unix/sysv/linux/nios2/libc.abilist: Likewise.
27103 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist:
27105 * sysdeps/unix/linux/powerpc/powerpc32/nofpu/libc.abilist: Likewise.
27106 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: Likewise.
27107 * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: Likewise.
27108 * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: Likewise.
27109 * sysdeps/unix/sysv/linux/sh/libc.abilist: Likewise.
27110 * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: Likewise.
27111 * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: Likewise.
27112 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist: Likewise.
27113 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist: Likewise.
27114 * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: Likewise.
27115 * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: Likewise.
27116 * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: Likewise.
27118 2017-09-25 H.J. Lu <hongjiu.lu@intel.com>
27120 * configure.ac (AS): Require binutils 2.25 or later.
27121 * configure: Regenerated.
27123 2017-09-25 Paul Pluzhnikov <ppluzhnikov@google.com>
27126 * stdlib/test-atexit-race-common.c (do_test): Minimize required
27129 2017-09-25 DJ Delorie <dj@redhat.com>
27132 * nscd/netgroupcache.c (addinnetgrX): Release read lock after
27135 2017-09-25 Stefan Liebler <stli@linux.vnet.ibm.com>
27137 * sysdeps/ieee754/dbl-64/sincos32.h
27138 [SINCCOS32_H]: Remove define.
27139 [SINCOS32_H]: Define.
27141 2017-09-25 Szabolcs Nagy <szabolcs.nagy@arm.com>
27143 * math/Versions (expf): New libm symbol at GLIBC_2.27.
27145 * math/w_exp2f.c: New file.
27146 * math/w_expf.c: New file.
27147 * math/w_exp2f_compat.c (__exp2f_compat): For compat symbol only.
27148 * math/w_expf_compat.c (__expf_compat): Likewise.
27149 * sysdeps/ia64/fpu/e_exp2f.S: Add versioned symbols.
27150 * sysdeps/ia64/fpu/e_expf.S: Likewise.
27151 * sysdeps/unix/sysv/linux/aarch64/libm.abilist: Update.
27152 * sysdeps/unix/sysv/linux/alpha/libm.abilist: Likewise.
27153 * sysdeps/unix/sysv/linux/arm/libm.abilist: Likewise.
27154 * sysdeps/unix/sysv/linux/hppa/libm.abilist: Likewise.
27155 * sysdeps/unix/sysv/linux/i386/libm.abilist: Likewise.
27156 * sysdeps/unix/sysv/linux/ia64/libm.abilist: Likewise.
27157 * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: Likewise.
27158 * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: Likewise.
27159 * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Likewise.
27160 * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: Likewise.
27161 * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: Likewise.
27162 * sysdeps/unix/sysv/linux/nios2/libm.abilist: Likewise.
27163 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist:
27165 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
27167 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist:
27169 * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist:
27171 * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: Likewise.
27172 * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: Likewise.
27173 * sysdeps/unix/sysv/linux/sh/libm.abilist: Likewise.
27174 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Likewise.
27175 * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: Likewise.
27176 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist:
27178 * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist:
27180 * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: Likewise.
27181 * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: Likewise.
27182 * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: Likewise.
27184 2017-09-25 Szabolcs Nagy <szabolcs.nagy@arm.com>
27186 * math/Makefile (type-float-routines): Add math_errf and e_exp2f_data.
27187 * sysdeps/aarch64/fpu/math_private.h (TOINT_INTRINSICS): Define.
27188 (roundtoint, converttoint): Likewise.
27189 * sysdeps/ieee754/flt-32/e_expf.c: New implementation.
27190 * sysdeps/ieee754/flt-32/e_exp2f.c: New implementation.
27191 * sysdeps/ieee754/flt-32/e_exp2f_data.c: New file.
27192 * sysdeps/ieee754/flt-32/math_config.h: New file.
27193 * sysdeps/ieee754/flt-32/math_errf.c: New file.
27194 * sysdeps/ieee754/flt-32/t_exp2f.h: Remove.
27195 * sysdeps/i386/fpu/e_exp2f_data.c: New file.
27196 * sysdeps/i386/fpu/math_errf.c: New file.
27197 * sysdeps/ia64/fpu/e_exp2f_data.c: New file.
27198 * sysdeps/ia64/fpu/math_errf.c: New file.
27199 * sysdeps/m68k/m680x0/fpu/e_exp2f_data.c: New file.
27200 * sysdeps/m68k/m680x0/fpu/math_errf.c: New file.
27202 2017-09-24 Samuel Thibault <samuel.thibault@ens-lyon.org>
27204 * sysdeps/mach/hurd/dl-sysdep.c (check_no_hidden): New macro.
27205 (__open, __close, __libc_read, __libc_write, __writev, __libc_lseek64,
27206 __mmap, __fxstat64, __xstat64, __access, __access_noerrno, __getpid,
27207 __getcwd, __sbrk, __strtoul_internal, _exit, abort): Use check_no_hidden
27208 to make sure that these symbols are defined.
27209 * sysdeps/mach/hurd/bits/socket.h: Include <bits/wordsize.h> instead
27211 (__need_NULL): Do not define.
27212 (__ss_aligntype): Use __WORDSIZE instead of ULONG_MAX to determine
27214 [!__USE_MISC] (pseudo_AF_XTP, pseudo_AF_RTIP, pseudo_AF_PIP,
27215 CMGROUP_MAX, cmsgcred): Do not define.
27216 (CMSG_FIRSTHDR, __cmsg_nxthdr): Use (struct cmsghdr *) 0 instead of
27218 * bits/socket.h: Likewise.
27219 * sysdeps/unix/clock_gettime.c (realtime_gettime, __clock_gettime): Use
27220 __gettimeofday instead of gettimeofday.
27221 * sysdeps/unix/clock_settime.c (__clock_settime): Use __settimeofday
27222 instead of settimeofday.
27224 2017-09-22 Joseph Myers <joseph@codesourcery.com>
27226 * sysdeps/ieee754/flt-32/s_asinhf.c: Include <libm-alias-float.h>.
27227 (asinhf): Define using libm_alias_float.
27228 * sysdeps/ieee754/flt-32/s_atanf.c: Include <libm-alias-float.h>.
27229 (atanf): Define using libm_alias_float.
27230 * sysdeps/ieee754/flt-32/s_cbrtf.c: Include <libm-alias-float.h>.
27231 (cbrtf): Define using libm_alias_float.
27232 * sysdeps/ieee754/flt-32/s_ceilf.c: Include <libm-alias-float.h>.
27233 (ceilf): Define using libm_alias_float.
27234 * sysdeps/ieee754/flt-32/s_copysignf.c: Include
27235 <libm-alias-float.h>.
27236 (copysignf): Define using libm_alias_float.
27237 * sysdeps/ieee754/flt-32/s_cosf.c: Include <libm-alias-float.h>.
27238 (cosf): Define using libm_alias_float.
27239 * sysdeps/ieee754/flt-32/s_erff.c: Include <libm-alias-float.h>.
27240 (erff): Define using libm_alias_float.
27242 * sysdeps/ieee754/flt-32/s_expm1f.c: Include <libm-alias-float.h>.
27243 (expm1f): Define using libm_alias_float.
27244 * sysdeps/ieee754/flt-32/s_fabsf.c: Include <libm-alias-float.h>.
27245 (fabsf): Define using libm_alias_float.
27246 * sysdeps/ieee754/flt-32/s_floorf.c: Include <libm-alias-float.h>.
27247 (floorf): Define using libm_alias_float.
27248 * sysdeps/ieee754/flt-32/s_frexpf.c: Include <libm-alias-float.h>.
27249 (frexpf): Define using libm_alias_float.
27250 * sysdeps/ieee754/flt-32/s_fromfpf.c (fromfpf): Define using
27252 * sysdeps/ieee754/flt-32/s_fromfpf_main.c: Include
27253 <libm-alias-float.h>.
27254 * sysdeps/ieee754/flt-32/s_fromfpxf.c (fromfpxf): Define using
27256 * sysdeps/ieee754/flt-32/s_getpayloadf.c: Include
27257 <libm-alias-float.h>.
27258 (getpayloadf): Define using libm_alias_float.
27259 * sysdeps/ieee754/flt-32/s_llrintf.c: Include
27260 <libm-alias-float.h>.
27261 (llrintf): Define using libm_alias_float.
27262 * sysdeps/ieee754/flt-32/s_llroundf.c: Include
27263 <libm-alias-float.h>.
27264 (llroundf): Define using libm_alias_float.
27265 * sysdeps/ieee754/flt-32/s_logbf.c: Include <libm-alias-float.h>.
27266 (logbf): Define using libm_alias_float.
27267 * sysdeps/ieee754/flt-32/s_lrintf.c: Include <libm-alias-float.h>.
27268 (lrintf): Define using libm_alias_float.
27269 * sysdeps/ieee754/flt-32/s_lroundf.c: Include <libm-alias-float.h>.
27270 (lroundf): Define using libm_alias_float.
27271 * sysdeps/ieee754/flt-32/s_modff.c: Include <libm-alias-float.h>.
27272 (modff): Define using libm_alias_float.
27273 * sysdeps/ieee754/flt-32/s_nearbyintf.c: Include
27274 <libm-alias-float.h>.
27275 (nearbyintf): Define using libm_alias_float.
27276 * sysdeps/ieee754/flt-32/s_nextafterf.c: Include
27277 <libm-alias-float.h>.
27278 (nextafterf): Define using libm_alias_float.
27279 * sysdeps/ieee754/flt-32/s_nextupf.c: Include
27280 <libm-alias-float.h>.
27281 (nextupf): Define using libm_alias_float.
27282 * sysdeps/ieee754/flt-32/s_remquof.c: Include
27283 <libm-alias-float.h>.
27284 (remquof): Define using libm_alias_float.
27285 * sysdeps/ieee754/flt-32/s_rintf.c: Include <libm-alias-float.h>.
27286 (rintf): Define using libm_alias_float.
27287 * sysdeps/ieee754/flt-32/s_roundevenf.c: Include
27288 <libm-alias-float.h>.
27289 (roundevenf): Define using libm_alias_float.
27290 * sysdeps/ieee754/flt-32/s_roundf.c: Include <libm-alias-float.h>.
27291 (roundf): Define using libm_alias_float.
27292 * sysdeps/ieee754/flt-32/s_setpayloadf.c (setpayloadf): Define
27293 using libm_alias_float.
27294 * sysdeps/ieee754/flt-32/s_setpayloadf_main.c: Include
27295 <libm-alias-float.h>.
27296 * sysdeps/ieee754/flt-32/s_setpayloadsigf.c (setpayloadsigf):
27297 Define using libm_alias_float.
27298 * sysdeps/ieee754/flt-32/s_sincosf.c: Include
27299 <libm-alias-float.h>.
27300 (sincosf): Define using libm_alias_float.
27301 * sysdeps/ieee754/flt-32/s_sinf.c: Include <libm-alias-float.h>.
27302 (sinf): Define using libm_alias_float.
27303 * sysdeps/ieee754/flt-32/s_tanf.c: Include <libm-alias-float.h>.
27304 (tanf): Define using libm_alias_float.
27305 * sysdeps/ieee754/flt-32/s_tanhf.c: Include <libm-alias-float.h>.
27306 (tanhf): Define using libm_alias_float.
27307 * sysdeps/ieee754/flt-32/s_totalorderf.c: Include
27308 <libm-alias-float.h>.
27309 (totalorderf): Define using libm_alias_float.
27310 * sysdeps/ieee754/flt-32/s_totalordermagf.c: Include
27311 <libm-alias-float.h>.
27312 (totalordermagf): Define using libm_alias_float.
27313 * sysdeps/ieee754/flt-32/s_truncf.c: Include <libm-alias-float.h>.
27314 (truncf): Define using libm_alias_float.
27315 * sysdeps/ieee754/flt-32/s_ufromfpf.c (ufromfpf): Define using
27317 * sysdeps/ieee754/flt-32/s_ufromfpxf.c (ufromfpxf): Define using
27320 2017-09-22 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
27323 math/math.h: Let fpclassify use the builtin in C++ mode, even
27324 when optimazing for size.
27326 2017-09-22 Joseph Myers <joseph@codesourcery.com>
27328 * csu/Makefile (generated): Do not add version-info.h.
27329 (before-compile): Likewise.
27330 (all-Banner-files): Remove variable.
27331 ($(objpfx)version-info.h): Remove rule.
27332 * csu/version.c (banner): Do not include "version-info.h".
27333 * libidn/Banner: Remove.
27334 * manual/contrib.texi (Simon Josefsson): New entry.
27336 2017-09-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
27338 * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
27339 Remove conditionals on LDBL_MANT_DIG.
27340 * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c
27341 (__ieee754_lgammal_r): Likewise.
27343 2017-09-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
27345 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Remove definitions of
27347 * sysdeps/ieee754/ldbl-128ibm/e_j0l.c: Remove definitions of
27348 _Float128 and L(). Replace _Float128 with long double and L(x)
27349 with xL, throughout the file.
27350 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c: Likewise.
27351 * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c: Likewise.
27352 * sysdeps/ieee754/ldbl-128ibm/s_cbrtl.c: Likewise.
27353 * sysdeps/ieee754/ldbl-128ibm/t_expl.h: Likewise.
27355 2017-09-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
27357 * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Include tables from
27358 sysdeps/ieee754/ldbl-128ibm.
27359 * sysdeps/ieee754/ldbl-128ibm/e_j0l.c: Copy contents from the
27360 equivalent implementation in sysdeps/ieee754/ldbl-128/ instead
27361 of including it. Keep _Float128 and L() intact. These will be
27362 reviewed by a separate patch.
27363 * sysdeps/ieee754/ldbl-128ibm/e_j1l.c: Likewise.
27364 * sysdeps/ieee754/ldbl-128ibm/e_lgammal_r.c: Likewise.
27365 * sysdeps/ieee754/ldbl-128ibm/s_cbrtl.c: Likewise.
27366 * sysdeps/ieee754/ldbl-128ibm/t_expl.h: Likewise.
27368 2017-09-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
27370 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c
27371 (__finitef128): Define to __redirect___finitef128.
27372 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c
27373 (__isinff128): Define to __redirect___isinff128.
27374 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c
27375 (__isnanf128): Define to __redirect___isnanf128.
27377 2017-09-21 Gabriel F. T. Gomes <gabriel@inconstante.eti.br>
27379 * sysdeps/powerpc/powerpc64le/Makefile
27380 (CFLAGS-tst-strtod-nan-locale.c): New variable.
27381 (CFLAGS-tst-wcstod-nan-locale.c): New variable.
27383 2017-09-21 Paul Pluzhnikov <ppluzhnikov@google.com>
27384 Carlos O'Donell <carlos@redhat.com>
27387 * stdlib/Makefile (tests): Add test-dlclose-exit-race.
27388 * stdlib/test-dlclose-exit-race.c: New file.
27389 * stdlib/test-dlclose-exit-race-helper.c: New file.
27390 * stdlib/exit.c (__run_exit_handlers): Mark slot as free.
27392 2017-09-21 Joseph Myers <joseph@codesourcery.com>
27394 * crypt/Banner: Remove file.
27395 * nptl/Banner: Likewise.
27396 * resolv/Banner: Likewise.
27397 * soft-fp/Banner: Likewise.
27398 * nptl/Makefile ($(objpfx)banner.h): Remove rule.
27399 ($(objpfx)version.d): Remove dependency on banner.h.
27400 ($(objpfx)version.os): Likewise.
27401 * nptl/version.c (banner): Do not include banner.h.
27402 * manual/contrib.texi: Update entries for Richard Henderson, Jakub
27403 Jelinek and BIND code.
27405 2017-09-20 Paul Pluzhnikov <ppluzhnikov@google.com>
27406 Carlos O'Donell <carlos@redhat.com>
27408 * support/xdlfcn.h: New file.
27409 * support/xdlfcn.c: New file.
27410 * support/Makefile (libsupport-routines): Add xdlfcn.
27411 * stdlib/tst-tls-atexit.c: Use xdlopen, xdlsym, xdlclose.
27413 2017-09-20 Joseph Myers <joseph@codesourcery.com>
27416 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
27417 Add s_trunc-c, s_truncf-c, s_trunc-sse4_1 and s_truncf-sse4_1.
27418 * sysdeps/x86_64/fpu/multiarch/s_trunc-c.c: New file.
27419 * sysdeps/x86_64/fpu/multiarch/s_trunc-sse4_1.S: Likewise.
27420 * sysdeps/x86_64/fpu/multiarch/s_trunc.c: Likewise.
27421 * sysdeps/x86_64/fpu/multiarch/s_truncf-c.c: Likewise.
27422 * sysdeps/x86_64/fpu/multiarch/s_truncf-sse4_1.S: Likewise.
27423 * sysdeps/x86_64/fpu/multiarch/s_truncf.c: Likewise.
27425 2017-09-20 Paul Pluzhnikov <ppluzhnikov@google.com>
27426 Ricky Zhou <rickyz@google.com>
27427 Anoop V Chakkalakkal <anoop.vijayan@in.ibm.com>
27430 * stdlib/cxa_atexit.c (__internal_atexit): Use __exit_funcs_lock.
27432 (__new_exitfn): Fail registration when we finished at_exit processing.
27433 * stdlib/cxa_finalize.c (__cxa_finalize): Likewise.
27434 * stdlib/on_exit.c (__on_exit): Likewise.
27435 * stdlib/exit.c (__exit_funcs_done): New variable.
27436 (__run_exit_handlers): Use __exit_funcs_lock.
27437 * stdlib/exit.h (__exit_funcs_lock, __exit_funcs_done): New
27439 * stdlib/Makefile (test-atexit-race, test-quick_at_exit-race)
27440 (test-cxa_atexit-race, test-on_exit-race): New tests.
27441 * stdlib/test-atexit-race-common.c: New file.
27442 * stdlib/test-atexit-race.c: New file.
27443 * stdlib/test-at_quick_exit-race.c: New file.
27444 * stdlib/test-cxa_atexit-race.c: New file.
27445 * stdlib/test-on_exit-race.c: New file.
27447 2017-09-20 Szabolcs Nagy <szabolcs.nagy@arm.com>
27449 * benchtests/Makefile: Add exp2f and log2f benchmarks.
27450 * benchtests/exp2f-inputs: Copy of expf-inputs.
27451 * benchtests/log2f-inputs: Copy of logf-inputs.
27453 2017-09-19 Joseph Myers <joseph@codesourcery.com>
27455 * sysdeps/unix/sysv/linux/fexecve.c (fexecve) [__NR_execveat]:
27456 Explicitly take address of first element of array arguments in
27457 call to INLINE_SYSCALL.
27459 2017-09-19 Andreas Schwab <schwab@suse.de>
27462 * sysdeps/unix/sysv/linux/fexecve.c (fexecve) [__NR_execveat]: Try
27464 [!__ASSUME_EXECVEAT]: Fall back to /proc if execveat is
27466 * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_EXECVEAT)
27467 [__LINUX_KERNEL_VERSION >= 0x031300]: Define.
27468 * sysdeps/unix/sysv/linux/alpha/kernel-features.h
27469 (__ASSUME_EXECVEAT) [__LINUX_KERNEL_VERSION < 0x040200]: Undef.
27470 * sysdeps/unix/sysv/linux/hppa/kernel-features.h
27471 (__ASSUME_EXECVEAT) [__LINUX_KERNEL_VERSION < 0x040000]: Undef.
27472 * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
27473 (__ASSUME_EXECVEAT) [__LINUX_KERNEL_VERSION < 0x040000]: Undef.
27474 * posix/Makefile (tests): Add tst-fexecve.
27475 * posix/tst-fexecve.c: New file.
27477 2017-09-19 Wilco Dijkstra <wdijkstr@arm.com>
27479 * benchtests/Makefile: Add logf benchmark.
27480 * benchtests/logf-inputs: Add reduced trace from wrf_r.
27482 2017-09-19 Wilco Dijkstra <wdijkstr@arm.com>
27484 * benchtests/Makefile: Add expf benchmark.
27485 * benchtests/expf-inputs: Add reduced trace from wrf_r.
27487 2017-09-19 Wilco Dijkstra <wdijkstr@arm.com>
27489 * csu/Makefile: Add -funwind-tables to libc-start.c.
27490 * debug/Makefile: Add -funwind-tables to backtrace.c.
27491 * sysdeps/aarch64/Makefile: Remove CFLAGS-backtrace.c.
27492 * sysdeps/arm/Makefile: Likewise.
27493 * sysdeps/i386/Makefile: Likewise.
27494 * sysdeps/m68k/Makefile: Likewise.
27495 * sysdeps/mips/Makefile: Likewise.
27496 * sysdeps/nios2/Makefile: Likewise.
27497 * sysdeps/sh/Makefile: Likewise.
27498 * sysdeps/sparc/Makefile: Likewise.
27500 2017-09-19 Joseph Myers <joseph@codesourcery.com>
27502 * benchtests/Makefile (bench-math): Add trunc and truncf.
27503 (CFLAGS-bench-trunc.c): New variable.
27504 (CFLAGS-bench-truncf.c): Likewise.
27505 * benchtests/trunc-inputs: New file.
27506 * benchtests/truncf-inputs: Likewise.
27508 2017-09-19 Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
27510 * sysdeps/powerpc/powerpc64/power8/memset.S: Avoid misaligned stores.
27512 2017-09-18 Joseph Myers <joseph@codesourcery.com>
27514 * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c [LIBM_SVID_COMPAT &&
27515 !LONG_DOUBLE_COMPAT (libm, GLIBC_2_1)] (weak_alias): Undefine and
27517 [LIBM_SVID_COMPAT && !LONG_DOUBLE_COMPAT (libm, GLIBC_2_1)]
27518 (exp10l): Define as weak alias.
27519 * sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c [LIBM_SVID_COMPAT
27520 && !LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)] (weak_alias): Undefine
27522 [LIBM_SVID_COMPAT && !LONG_DOUBLE_COMPAT (libm, GLIBC_2_0)]
27523 (remainderl): Define as weak alias.
27525 * math/s_fmal.c: Include <libm-alias-ldouble.h>.
27526 (fmal): Define using libm_alias_ldouble.
27527 * math/w_acoshl_compat.c: Include <libm-alias-ldouble.h>.
27528 (acoshl): Define using libm_alias_ldouble.
27529 * math/w_acosl_compat.c: Include <libm-alias-ldouble.h>.
27530 (acosl): Define using libm_alias_ldouble.
27531 * math/w_asinl_compat.c: Include <libm-alias-ldouble.h>.
27532 (asinl): Define using libm_alias_ldouble.
27533 * math/w_atan2l_compat.c: Include <libm-alias-ldouble.h>.
27534 (atan2l): Define using libm_alias_ldouble.
27535 * math/w_atanhl_compat.c: Include <libm-alias-ldouble.h>.
27536 (atanhl): Define using libm_alias_ldouble.
27537 * math/w_coshl_compat.c: Include <libm-alias-ldouble.h>.
27538 (coshl): Define using libm_alias_ldouble.
27539 * math/w_exp10l_compat.c: Include <libm-alias-ldouble.h>.
27540 (exp10l): Define using libm_alias_ldouble.
27541 * math/w_exp2l_compat.c: Include <libm-alias-ldouble.h>.
27542 (exp2l): Define using libm_alias_ldouble.
27543 * math/w_expl_compat.c: Include <libm-alias-ldouble.h>.
27544 (expl): Define using libm_alias_ldouble.
27545 * math/w_fmodl_compat.c: Include <libm-alias-ldouble.h>.
27546 (fmodl): Define using libm_alias_ldouble.
27547 * math/w_hypotl_compat.c: Include <libm-alias-ldouble.h>.
27548 (hypotl): Define using libm_alias_ldouble.
27549 * math/w_j0l_compat.c: Include <libm-alias-ldouble.h>.
27550 (j0l): Define using libm_alias_ldouble.
27552 * math/w_j1l_compat.c: Include <libm-alias-ldouble.h>.
27553 (j1l): Define using libm_alias_ldouble.
27555 * math/w_jnl_compat.c: Include <libm-alias-ldouble.h>.
27556 (jnl): Define using libm_alias_ldouble.
27558 * math/w_log10l_compat.c: Include <libm-alias-ldouble.h>.
27559 (log10l): Define using libm_alias_ldouble.
27560 * math/w_log2l_compat.c: Include <libm-alias-ldouble.h>.
27561 (log2l): Define using libm_alias_ldouble.
27562 * math/w_logl_compat.c: Include <libm-alias-ldouble.h>.
27563 (logl): Define using libm_alias_ldouble.
27564 * math/w_powl_compat.c: Include <libm-alias-ldouble.h>.
27565 (powl): Define using libm_alias_ldouble.
27566 * math/w_remainderl_compat.c: Include <libm-alias-ldouble.h>.
27567 (remainderl): Define using libm_alias_ldouble.
27568 * math/w_sinhl_compat.c: Include <libm-alias-ldouble.h>.
27569 (sinhl): Define using libm_alias_ldouble.
27570 * math/w_sqrtl_compat.c: Include <libm-alias-ldouble.h>.
27571 (sqrtl): Define using libm_alias_ldouble.
27572 * math/w_tgammal_compat.c: Include <libm-alias-ldouble.h>.
27573 (tgammal): Define using libm_alias_ldouble.
27574 * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c [LIBM_SVID_COMPAT]
27575 (exp10l): Do not use long_double_symbol here.
27576 * sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c
27577 [LIBM_SVID_COMPAT] (remainderl): Likewise.
27578 * sysdeps/ieee754/ldbl-opt/s_fmal.c: Remove.
27579 * sysdeps/ieee754/ldbl-opt/w_acoshl_compat.c: Likewise.
27580 * sysdeps/ieee754/ldbl-opt/w_acosl_compat.c: Likewise.
27581 * sysdeps/ieee754/ldbl-opt/w_asinl_compat.c: Likewise.
27582 * sysdeps/ieee754/ldbl-opt/w_atan2l_compat.c: Likewise.
27583 * sysdeps/ieee754/ldbl-opt/w_atanhl_compat.c: Likewise.
27584 * sysdeps/ieee754/ldbl-opt/w_coshl_compat.c: Likewise.
27585 * sysdeps/ieee754/ldbl-opt/w_expl_compat.c: Likewise.
27586 * sysdeps/ieee754/ldbl-opt/w_fmodl_compat.c: Likewise.
27587 * sysdeps/ieee754/ldbl-opt/w_hypotl_compat.c: Likewise.
27588 * sysdeps/ieee754/ldbl-opt/w_j0l_compat.c: Likewise.
27589 * sysdeps/ieee754/ldbl-opt/w_j1l_compat.c: Likewise.
27590 * sysdeps/ieee754/ldbl-opt/w_jnl_compat.c: Likewise.
27591 * sysdeps/ieee754/ldbl-opt/w_log10l_compat.c: Likewise.
27592 * sysdeps/ieee754/ldbl-opt/w_log2l_compat.c: Likewise.
27593 * sysdeps/ieee754/ldbl-opt/w_logl_compat.c: Likewise.
27594 * sysdeps/ieee754/ldbl-opt/w_powl_compat.c: Likewise.
27595 * sysdeps/ieee754/ldbl-opt/w_sinhl_compat.c: Likewise.
27596 * sysdeps/ieee754/ldbl-opt/w_sqrtl_compat.c: Likewise.
27597 * sysdeps/ieee754/ldbl-opt/w_tgammal_compat.c: Likewise.
27599 2017-09-18 Wang Boshi <wangboshi@huawei.com> (tiny change)
27601 * sysdeps/aarch64/start.S: Use MOVL instead of literal pools.
27602 * sysdeps/aarch64/sysdep.h (MOVL): Add MOVL macro.
27604 2017-09-17 Samuel Thibault <samuel.thibault@ens-lyon.org>
27606 * io/read.c (read): Add libc_hidden_weak.
27607 * sysdeps/mach/hurd/read.c (read): Likewise.
27608 * io/write.c (write): Likewise.
27609 * sysdeps/mach/hurd/write.c (write): Likewise.
27610 * io/pread64.c (__pread64): Likewise.
27611 * sysdeps/mach/hurd/pread64.c (__pread64): Likewise.
27612 * posix/pread64.c (__pread64): Add libc_hidden_def.
27614 2017-09-16 Siddhesh Poyarekar <siddhesh@sourceware.org>
27616 * benchtests/scripts/compare_strings.py: New option -g.
27617 (draw_graph): Print a message that a graph is being generated.
27618 (process_results): Generate graph only if -g is passed.
27619 (main): Process option -g.
27621 * benchtests/scripts/compare_strings.py (process_results):
27622 Better spacing for output.
27624 * benchtests/scripts/compare_strings.py: Use argparse.
27625 * benchtests/README: Document existence of compare_strings.py.
27627 2017-09-15 Joseph Myers <joseph@codesourcery.com>
27629 * math/s_fma.c: Include <libm-alias-double.h>.
27630 (fma): Define using libm_alias_double.
27631 * math/s_nextafter.c: Include <libm-alias-double.h>.
27632 (nextafter): Define using libm_alias_double.
27633 * math/w_acos_compat.c: Include <libm-alias-double.h>.
27634 (acos): Define using libm_alias_double.
27635 * math/w_acosh_compat.c: Include <libm-alias-double.h>.
27636 (aocsh): Define using libm_alias_double.
27637 * math/w_asin_compat.c: Include <libm-alias-double.h>.
27638 (asin): Define using libm_alias_double.
27639 * math/w_atan2_compat.c: Include <libm-alias-double.h>.
27640 (atan2): Define using libm_alias_double.
27641 * math/w_atanh_compat.c: Include <libm-alias-double.h>.
27642 (atanh): Define using libm_alias_double.
27643 * math/w_cosh_compat.c: Include <libm-alias-double.h>.
27644 (cosh): Define using libm_alias_double.
27645 * math/w_exp10_compat.c: Include <libm-alias-double.h>.
27646 (exp10): Define using libm_alias_double.
27647 * math/w_exp2_compat.c: Include <libm-alias-double.h>.
27648 (exp2): Define using libm_alias_double.
27649 * math/w_exp_compat.c: Include <libm-alias-double.h>.
27650 (exp): Define using libm_alias_double.
27651 * math/w_fmod_compat.c: Include <libm-alias-double.h>.
27652 (fmod): Define using libm_alias_double.
27653 * math/w_hypot_compat.c: Include <libm-alias-double.h>.
27654 (hypot): Define using libm_alias_double.
27655 * math/w_j0_compat.c: Include <libm-alias-double.h>.
27656 (j0): Define using libm_alias_double.
27658 * math/w_j1_compat.c: Include <libm-alias-double.h>.
27659 (j1): Define using libm_alias_double.
27661 * math/w_jn_compat.c: Include <libm-alias-double.h>.
27662 (jn): Define using libm_alias_double.
27664 * math/w_log10_compat.c: Include <libm-alias-double.h>.
27665 (log10): Define using libm_alias_double.
27666 * math/w_log2_compat.c: Include <libm-alias-double.h>.
27667 (log2): Define using libm_alias_double.
27668 * math/w_log_compat.c: Include <libm-alias-double.h>.
27669 (log): Define using libm_alias_double.
27670 * math/w_pow_compat.c: Include <libm-alias-double.h>.
27671 (pow): Define using libm_alias_double.
27672 * math/w_remainder_compat.c: Include <libm-alias-double.h>.
27673 (remainder): Define using libm_alias_double.
27674 * math/w_sinh_compat.c: Include <libm-alias-double.h>.
27675 (sinh): Define using libm_alias_double.
27676 * math/w_sqrt_compat.c: Include <libm-alias-double.h>.
27677 (sqrt): Define using libm_alias_double.
27678 * math/w_tgamma_compat.c: Include <libm-alias-double.h>.
27679 (tgamma): Define using libm_alias_double.
27680 * sysdeps/ieee754/ldbl-opt/s_nextafter.c [LONG_DOUBLE_COMPAT(libm,
27681 GLIBC_2_0)] (nextafterl): Do not define compat symbol here.
27682 * sysdeps/ieee754/ldbl-opt/w_exp10_compat.c
27683 [LONG_DOUBLE_COMPAT(libm, GLIBC_2_1)] (exp10l): Likewise.
27684 * sysdeps/ieee754/ldbl-opt/w_remainder_compat.c
27685 [LONG_DOUBLE_COMPAT(libm, GLIBC_2_0)] (remainderl): Likewise.
27686 * sysdeps/ieee754/ldbl-opt/w_acos_compat.c: Remove.
27687 * sysdeps/ieee754/ldbl-opt/w_acosh_compat.c: Likewise.
27688 * sysdeps/ieee754/ldbl-opt/w_asin_compat.c: Likewise.
27689 * sysdeps/ieee754/ldbl-opt/w_atan2_compat.c: Likewise.
27690 * sysdeps/ieee754/ldbl-opt/w_atanh_compat.c: Likewise.
27691 * sysdeps/ieee754/ldbl-opt/w_cosh_compat.c: Likewise.
27692 * sysdeps/ieee754/ldbl-opt/w_exp_compat.c: Likewise.
27693 * sysdeps/ieee754/ldbl-opt/w_fmod_compat.c: Likewise.
27694 * sysdeps/ieee754/ldbl-opt/w_hypot_compat.c: Likewise.
27695 * sysdeps/ieee754/ldbl-opt/w_j0_compat.c: Likewise.
27696 * sysdeps/ieee754/ldbl-opt/w_j1_compat.c: Likewise.
27697 * sysdeps/ieee754/ldbl-opt/w_jn_compat.c: Likewise.
27698 * sysdeps/ieee754/ldbl-opt/w_log10_compat.c: Likewise.
27699 * sysdeps/ieee754/ldbl-opt/w_log2_compat.c: Likewise.
27700 * sysdeps/ieee754/ldbl-opt/w_log_compat.c: Likewise.
27701 * sysdeps/ieee754/ldbl-opt/w_pow_compat.c: Likewise.
27702 * sysdeps/ieee754/ldbl-opt/w_sinh_compat.c: Likewise.
27703 * sysdeps/ieee754/ldbl-opt/w_sqrt_compat.c: Likewise.
27704 * sysdeps/ieee754/ldbl-opt/w_tgamma_compat.c: Likewise.
27706 * math/e_acoshl.c: Remove.
27707 * math/e_acosl.c: Likewise.
27708 * math/e_asinl.c: Likewise.
27709 * math/e_atan2l.c: Likewise.
27710 * math/e_atanhl.c: Likewise.
27711 * math/e_coshl.c: Likewise.
27712 * math/e_expl.c: Likewise.
27713 * math/e_fmodl.c: Likewise.
27714 * math/e_gammal_r.c: Likewise.
27715 * math/e_hypotl.c: Likewise.
27716 * math/e_j0l.c: Likewise.
27717 * math/e_j1l.c: Likewise.
27718 * math/e_jnl.c: Likewise.
27719 * math/e_lgammal_r.c: Likewise.
27720 * math/e_log10l.c: Likewise.
27721 * math/e_log2l.c: Likewise.
27722 * math/e_logl.c: Likewise.
27723 * math/e_powl.c: Likewise.
27724 * math/e_rem_pio2l.c: Likewise.
27725 * math/e_sinhl.c: Likewise.
27726 * math/e_sqrtf128.c: Likewise.
27727 * math/e_sqrtl.c: Likewise.
27728 * math/k_cosl.c: Likewise.
27729 * math/k_sinl.c: Likewise.
27730 * math/k_tanl.c: Likewise.
27731 * math/s_asinhl.c: Likewise.
27732 * math/s_atanl.c: Likewise.
27733 * math/s_cbrtl.c: Likewise.
27734 * math/s_erfl.c: Likewise.
27735 * math/s_expm1l.c: Likewise.
27736 * math/s_log1pl.c: Likewise.
27737 * math/s_tanhl.c: Likewise.
27739 2017-09-15 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
27742 * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile:
27743 [$(subdir) = math] (sysdep_calls): New variable. Has the
27744 previous contents of sysdep_routines, but re-sorted..
27745 [$(subdir) = math] (sysdep_routines): Re-use the contents from
27747 [$(subdir) = math] (libm-sysdep_routines): Remove the functions
27748 defined in sysdep_calls and replace by the respective m_* names.
27749 * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S:
27750 (compat_symbol): Undefine to avoid duplicated compat symbols in
27753 2017-09-15 Joseph Myers <joseph@codesourcery.com>
27755 * math/s_fmaf.c: Include <libm-alias-float.h>.
27756 (fmaf): Define using libm_alias_float.
27757 * math/w_acosf_compat.c: Include <libm-alias-float.h>.
27758 (acosf): Define using libm_alias_float.
27759 * math/w_acoshf_compat.c: Include <libm-alias-float.h>.
27760 (acoshf): Define using libm_alias_float.
27761 * math/w_asinf_compat.c: Include <libm-alias-float.h>.
27762 (asinf): Define using libm_alias_float.
27763 * math/w_atan2f_compat.c: Include <libm-alias-float.h>.
27764 (atan2f): Define using libm_alias_float.
27765 * math/w_atanhf_compat.c: Include <libm-alias-float.h>.
27766 (atanhf): Define using libm_alias_float.
27767 * math/w_coshf_compat.c: Include <libm-alias-float.h>.
27768 (coshf): Define using libm_alias_float.
27769 * math/w_exp10f_compat.c: Include <libm-alias-float.h>.
27770 (exp10f): Define using libm_alias_float.
27771 * math/w_fmodf_compat.c: Include <libm-alias-float.h>.
27772 (fmodf): Define using libm_alias_float.
27773 * math/w_hypotf_compat.c: Include <libm-alias-float.h>.
27774 (hypotf): Define using libm_alias_float.
27775 * math/w_j0f_compat.c: Include <libm-alias-float.h>.
27776 (j0f): Define using libm_alias_float.
27778 * math/w_j1f_compat.c: Include <libm-alias-float.h>.
27779 (j1f): Define using libm_alias_float.
27781 * math/w_jnf_compat.c: Include <libm-alias-float.h>.
27782 (jnf): Define using libm_alias_float.
27784 * math/w_log10f_compat.c: Include <libm-alias-float.h>.
27785 (log10f): Define using libm_alias_float.
27786 * math/w_log2f_compat.c: Include <libm-alias-float.h>.
27787 (log2f): Define using libm_alias_float.
27788 * math/w_logf_compat.c: Include <libm-alias-float.h>.
27789 (logf): Define using libm_alias_float.
27790 * math/w_powf_compat.c: Include <libm-alias-float.h>.
27791 (powf): Define using libm_alias_float.
27792 * math/w_remainderf_compat.c: Include <libm-alias-float.h>.
27793 (remainderf): Define using libm_alias_float.
27794 * math/w_sinhf_compat.c: Include <libm-alias-float.h>.
27795 (sinhf): Define using libm_alias_float.
27796 * math/w_sqrtf_compat.c: Include <libm-alias-float.h>.
27797 (sqrtf): Define using libm_alias_float.
27798 * math/w_tgammaf_compat.c: Include <libm-alias-float.h>.
27799 (tgammaf): Define using libm_alias_float.
27801 2017-09-14 Joseph Myers <joseph@codesourcery.com>
27803 * include/math.h (roundeven): Change hidden_proto call to
27805 * math/w_j0_compat.c (j0): Rename to __j0 and define as weak
27807 [NO_LONG_DOUBLE] (__j0l): New strong alias.
27808 (y0): Rename to __y0 and define as weak alias.
27809 [NO_LONG_DOUBLE] (__y0l): New strong alias.
27810 * math/w_j0f_compat.c (j0f): Rename to __j0f and define as weak
27812 (y0f): Rename to __y0f and define as weak alias.
27813 * math/w_j1_compat.c (j1): Rename to __j1 and define as weak
27815 [NO_LONG_DOUBLE] (__j1l): New strong alias.
27816 (y1): Rename to __y1 and define as weak alias.
27817 [NO_LONG_DOUBLE] (__y1l): New strong alias.
27818 * math/w_j1f_compat.c (j1f): Rename to __j1f and define as weak
27820 (y1f): Rename to __y1f and define as weak alias.
27821 * math/w_jn_compat.c (jn): Rename to __jn and define as weak
27823 [NO_LONG_DOUBLE] (__jnl): New strong alias.
27824 (yn): Rename to __yn and define as weak alias.
27825 [NO_LONG_DOUBLE] (__ynl): New strong alias.
27826 * math/w_jnf_compat.c (jnf): Rename to __jnf and define as weak
27828 (ynf): Rename to __ynf and define as weak alias.
27829 * sysdeps/ieee754/dbl-64/s_fromfp.c (FUNC): Define to __fromfp.
27830 (fromfp): Define as weak alias.
27831 [NO_LONG_DOUBLE] (__fromfpl): New strong alias.
27832 * sysdeps/ieee754/dbl-64/s_fromfpx.c (FUNC): Define to __fromfpx.
27833 (fromfpx): Define as weak alias.
27834 [NO_LONG_DOUBLE] (__fromfpxl): New strong alias.
27835 * sysdeps/ieee754/dbl-64/s_getpayload.c (getpayload): Rename to
27836 __getpayload and define as weak alias.
27837 [NO_LONG_DOUBLE] (__getpayloadl): New strong alias.
27838 * sysdeps/ieee754/dbl-64/s_roundeven.c (roundeven): Rename to
27839 __roundeven and define as weak alias.
27840 [NO_LONG_DOUBLE] (__roundevenl): New strong alias.
27841 * sysdeps/ieee754/dbl-64/s_setpayload.c (FUNC): Define to
27843 (setpayload): Define as weak alias.
27844 [NO_LONG_DOUBLE] (__setpayloadl): New strong alias.
27845 * sysdeps/ieee754/dbl-64/s_setpayloadsig.c (FUNC): Define to
27847 (setpayloadsig): Define as weak alias.
27848 [NO_LONG_DOUBLE] (__setpayloadsigl): New strong alias.
27849 * sysdeps/ieee754/dbl-64/s_totalorder.c (totalorder): Rename to
27850 __totalorder and define as weak alias.
27851 [NO_LONG_DOUBLE] (__totalorderl): New strong alias.
27852 * sysdeps/ieee754/dbl-64/s_totalordermag.c (totalordermag): Rename
27853 to __totalordermag and define as weak alias.
27854 [NO_LONG_DOUBLE] (__totalordermagl): New strong alias.
27855 * sysdeps/ieee754/dbl-64/s_ufromfp.c (FUNC): Define to __ufromfp.
27856 (ufromfp): Define as weak alias.
27857 [NO_LONG_DOUBLE] (__ufromfpl): New strong alias.
27858 * sysdeps/ieee754/dbl-64/s_ufromfpx.c (FUNC): Define to
27860 (ufromfpx): Define as weak alias.
27861 [NO_LONG_DOUBLE] (__ufromfpxl): New strong alias.
27862 * sysdeps/ieee754/dbl-64/wordsize-64/s_getpayload.c (getpayload):
27863 Rename to __getpayload and define as weak alias.
27864 [NO_LONG_DOUBLE] (__getpayloadl): New strong alias.
27865 * sysdeps/ieee754/dbl-64/wordsize-64/s_roundeven.c (roundeven):
27866 Rename to __roundeven and define as weak alias.
27867 [NO_LONG_DOUBLE] (__roundevenl): New strong alias.
27868 * sysdeps/ieee754/dbl-64/wordsize-64/s_totalorder.c (totalorder):
27869 Rename to __totalorder and define as weak alias.
27870 [NO_LONG_DOUBLE] (__totalorderl): New strong alias.
27871 * sysdeps/ieee754/dbl-64/wordsize-64/s_totalordermag.c
27872 (totalordermag): Rename to __totalordermag and define as weak
27874 [NO_LONG_DOUBLE] (__totalordermagl): New strong alias.
27875 * sysdeps/ieee754/float128/float128_private.h (__getpayloadl): New
27877 (__roundevenl): Likewise.
27878 (__totalorderl): Likewise.
27879 (__totalordermagl): Likewise
27880 * sysdeps/ieee754/float128/s_fromfpf128.c (FUNC): Define to
27882 (fromfpf128): Define as weak alias.
27883 * sysdeps/ieee754/float128/s_fromfpxf128.c (FUNC): Define to
27885 (fromfpxf128): Define as weak alias.
27886 * sysdeps/ieee754/float128/s_setpayloadf128.c (FUNC): Define to
27888 (setpayloadf128): Define as weak alias.
27889 * sysdeps/ieee754/float128/s_setpayloadsigf128.c (FUNC): Define to
27890 __setpayloadsigf128.
27891 (setpayloadsigf128): Define as weak alias.
27892 * sysdeps/ieee754/float128/s_ufromfpf128.c (FUNC): Define to
27894 (ufromfpf128): Define as weak alias.
27895 * sysdeps/ieee754/float128/s_ufromfpxf128.c (FUNC): Define to
27897 (ufromfpxf128): Define as weak alias.
27898 * sysdeps/ieee754/flt-32/s_fromfpf.c (FUNC): Define to __fromfpf.
27899 (fromfpf): Define as weak alias.
27900 * sysdeps/ieee754/flt-32/s_fromfpxf.c (FUNC): Define to
27902 (fromfpxf): Define as weak alias.
27903 * sysdeps/ieee754/flt-32/s_getpayloadf.c (getpayloadf): Rename to
27904 __getpayloadf and define as weak alias.
27905 * sysdeps/ieee754/flt-32/s_roundevenf.c (roundevenf): Rename to
27906 __roundevenf and define as weak alias.
27907 * sysdeps/ieee754/flt-32/s_setpayloadf.c (FUNC): Define to
27909 (setpayloadf): Define as weak alias.
27910 * sysdeps/ieee754/flt-32/s_setpayloadsigf.c (FUNC): Define to
27912 (setpayloadsigf): Define as weak alias.
27913 * sysdeps/ieee754/flt-32/s_totalorderf.c (totalorderf): Rename to
27914 __totalorderf and define as weak alias.
27915 * sysdeps/ieee754/flt-32/s_totalordermagf.c (totalordermagf):
27916 Rename to __totalordermagf and define as weak alias.
27917 * sysdeps/ieee754/flt-32/s_ufromfpf.c (FUNC): Define to
27919 (ufromfpf): Define as weak alias.
27920 * sysdeps/ieee754/flt-32/s_ufromfpxf.c (FUNC): Define to
27922 (ufromfpxf): Define as weak alias.
27923 * sysdeps/ieee754/ldbl-128/s_fromfpl.c (FUNC): Define to
27925 (fromfpl): Define as weak alias.
27926 * sysdeps/ieee754/ldbl-128/s_fromfpxl.c (FUNC): Define to
27928 (fromfpxl): Define as weak alias.
27929 * sysdeps/ieee754/ldbl-128/s_getpayloadl.c (getpayloadl): Rename
27930 to __getpayloadl and define as weak alias.
27931 * sysdeps/ieee754/ldbl-128/s_roundevenl.c (roundevenl): Rename to
27932 __roundevenl and define as weak alias.
27933 * sysdeps/ieee754/ldbl-128/s_setpayloadl.c (FUNC): Define to
27935 (setpayloadl): Define as weak alias.
27936 * sysdeps/ieee754/ldbl-128/s_setpayloadsigl.c (FUNC): Define to
27938 (setpayloadsigl): Define as weak alias.
27939 * sysdeps/ieee754/ldbl-128/s_totalorderl.c (totalorderl): Rename
27940 to __totalorderl and define as weak alias.
27941 * sysdeps/ieee754/ldbl-128/s_totalordermagl.c (totalordermagl):
27942 Rename to __totalordermagl and define as weak alias.
27943 * sysdeps/ieee754/ldbl-128/s_ufromfpl.c (FUNC): Define to
27945 (ufromfpl): Define as weak alias.
27946 * sysdeps/ieee754/ldbl-128/s_ufromfpxl.c (FUNC): Define to
27948 (ufromfpxl): Define as weak alias.
27949 * sysdeps/ieee754/ldbl-128ibm/s_fromfpl.c (FUNC): Define to
27951 (fromfpl): Define as weak alias.
27952 * sysdeps/ieee754/ldbl-128ibm/s_fromfpxl.c (FUNC): Define to
27954 (fromfpxl): Define as weak alias.
27955 * sysdeps/ieee754/ldbl-128ibm/s_getpayloadl.c (getpayloadl):
27956 Rename to __getpayloadl and define as weak alias.
27957 * sysdeps/ieee754/ldbl-128ibm/s_roundevenl.c (roundevenl): Rename
27958 to __roundevenl and define as weak alias. Call __roundeven
27959 instead of roundeven.
27960 * sysdeps/ieee754/ldbl-128ibm/s_setpayloadl.c (FUNC): Define to
27962 (setpayloadl): Define as weak alias.
27963 * sysdeps/ieee754/ldbl-128ibm/s_setpayloadsigl.c (FUNC): Define to
27965 (setpayloadsigl): Define as weak alias.
27966 * sysdeps/ieee754/ldbl-128ibm/s_totalorderl.c (totalorderl):
27967 Rename to __totalorderl and define as weak alias.
27968 * sysdeps/ieee754/ldbl-128ibm/s_totalordermagl.c (totalordermagl):
27969 Rename to __totalordermagl and define as weak alias.
27970 * sysdeps/ieee754/ldbl-128ibm/s_ufromfpl.c (FUNC): Define to
27972 (ufromfpl): Define as weak alias.
27973 * sysdeps/ieee754/ldbl-128ibm/s_ufromfpxl.c (FUNC): Define to
27975 (ufromfpxl): Define as weak alias.
27976 * sysdeps/ieee754/ldbl-96/s_fromfpl.c (FUNC): Define to
27978 (fromfpl): Define as weak alias.
27979 * sysdeps/ieee754/ldbl-96/s_fromfpxl.c (FUNC): Define to
27981 (fromfpxl): Define as weak alias.
27982 * sysdeps/ieee754/ldbl-96/s_getpayloadl.c (getpayloadl): Rename to
27983 __getpayloadl and define as weak alias.
27984 * sysdeps/ieee754/ldbl-96/s_roundevenl.c (roundevenl): Rename to
27985 __roundevenl and define as weak alias.
27986 * sysdeps/ieee754/ldbl-96/s_setpayloadl.c (FUNC): Define to
27988 (setpayloadl): Define as weak alias.
27989 * sysdeps/ieee754/ldbl-96/s_setpayloadsigl.c (FUNC): Define to
27991 (setpayloadsigl): Define as weak alias.
27992 * sysdeps/ieee754/ldbl-96/s_totalorderl.c (totalorderl): Rename to
27993 __totalorderl and define as weak alias.
27994 * sysdeps/ieee754/ldbl-96/s_totalordermagl.c (totalordermagl):
27995 Rename to __totalordermagl and define as weak alias.
27996 * sysdeps/ieee754/ldbl-96/s_ufromfpl.c (FUNC): Define to
27998 (ufromfpl): Define as weak alias.
27999 * sysdeps/ieee754/ldbl-96/s_ufromfpxl.c (FUNC): Define to
28001 (ufromfpxl): Define as weak alias.
28003 2017-09-14 Siddhesh Poyarekar <siddhesh@sourceware.org>
28005 * benchtests/bench-string.h (realloc_bufs): New function.
28006 (test_init): Call it.
28007 * benchtests/bench-memset-large.c (do_test): Likewise.
28008 * benchtests/bench-memset.c (do_test): Likewise.
28010 * benchtests/bench-memset-large.c: Print output in JSON
28012 * benchtests/bench-memset.c: Likewise.
28014 2017-09-14 Mike FABIAN <mfabian@redhat.com>
28017 * benchtests/strcoll-inputs/filelist#en_US.UTF-8: Add IBM858 and ibm858.c.
28018 * iconvdata/Makefile: Add IBM858.
28019 * iconvdata/gconv-modules: Likewise.
28020 * iconvdata/tst-tables.sh: Likewise.
28021 * iconvdata/ibm858.c: New file.
28022 * localedata/charmaps/IBM858: Likewise.
28024 2017-09-14 Akhilesh Kumar <akhilesh.k@samsung.com>
28027 * locales/niu_NZ (LC_TIME): copy "niu_NU".
28028 * locales/niu_NZ (LC_MESSAGES): copy "niu_NU".
28030 2017-09-14 Mike FABIAN <mfabian@redhat.com>
28033 * localedata/locales/az_AZ(LC_TELEPHONE): Fix int_select
28034 and add tel_int_fmt.
28036 2017-09-14 Joseph Myers <joseph@codesourcery.com>
28038 * sysdeps/generic/libm-alias-float128.h: New file.
28039 * sysdeps/generic/math-type-macros-float128.h: Include
28040 <libm-alias-float128.h>.
28041 [!declare_mgen_alias] (declare_mgen_alias): Define macro.
28043 2017-09-13 Joseph Myers <joseph@codesourcery.com>
28045 * sysdeps/generic/libm-alias-ldouble.h: New file.
28046 * sysdeps/ieee754/ldbl-opt/libm-alias-ldouble.h: Likewise.
28047 * sysdeps/ieee754/ldbl-opt/math-type-macros-ldouble.h: Remove.
28048 * sysdeps/generic/math-type-macros-ldouble.h: Include
28049 <libm-alias-ldouble.h>.
28050 [!declare_mgen_alias] (declare_mgen_alias): Define to use
28051 libm_alias_ldouble.
28053 2017-09-13 Szabolcs Nagy <szabolcs.nagy@arm.com>
28055 * sysdeps/ieee754/dbl-64/w_exp_compat.c: Move to...
28056 * math/w_exp_compat.c: ... here.
28057 * sysdeps/ieee754/flt-32/w_expf_compat.c: Move to...
28058 * math/w_expf_compat.c: ... here.
28059 * sysdeps/ieee754/ldbl-128/w_expl_compat.c: Move to...
28060 * math/w_expl_compat.c: ... here.
28061 * sysdeps/ieee754/ldbl-128ibm/w_expl_compat.c: Remove.
28062 * sysdeps/ieee754/ldbl-96/w_expl_compat.c: Remove.
28063 * sysdeps/ieee754/ldbl-opt/w_exp_compat.c: Use the new path.
28064 * sysdeps/ieee754/ldbl-opt/w_expl_compat.c: Likewise.
28066 2017-09-13 Joseph Myers <joseph@codesourcery.com>
28068 * math/w_scalbln_template.c (strong_alias): Do not undefine and
28070 * sysdeps/ieee754/ldbl-opt/s_ldexp.c (declare_mgen_alias): Remove
28072 (ldexpl): Only define as compat symbol for libc, not libm.
28073 (scalbnl): Define as compat symbol for libc here.
28074 * sysdeps/ieee754/ldbl-opt/s_ldexpl.c (declare_mgen_alias): Only
28075 define for [IS_IN (libc)].
28076 (__ldexpl_2): Remove alias.
28077 (ldexpl): Only define with long_double_symbol if [IS_IN (libc)].
28078 (scalbnl): Likewise. Use __wrap_scalbnl not __ldexpl_2 as base
28079 name in long_double_symbol call.
28080 * sysdeps/ieee754/ldbl-opt/s_log1p.c: Remove file.
28081 * sysdeps/ieee754/ldbl-opt/s_scalbln.c: Likewise.
28082 * sysdeps/ieee754/ldbl-opt/s_scalbn.c: Likewise.
28083 * sysdeps/ieee754/ldbl-opt/w_log1p.c: Likewise.
28084 * sysdeps/ieee754/ldbl-opt/w_scalbln.c (declare_mgen_alias):
28086 [IS_IN (libc) && LONG_DOUBLE_COMPAT (libc, GLIBC_2_1)] (scalblnl):
28087 Define as compat symbol.
28089 2017-09-13 Adhemerval Zanella <adhemerval.zanella@linaro.org>
28091 * sysdeps/unix/sysv/linux/s390/s390-32/oldglob.c: New file.
28092 * sysdeps/unix/sysv/linux/alpha/Makefile
28093 [$(subdir) = csu] (sysdep_routines): Remove rule.
28095 2017-09-13 Joseph Myers <joseph@codesourcery.com>
28097 * sysdeps/generic/libm-alias-double.h: New file.
28098 * sysdeps/ieee754/ldbl-opt/libm-alias-double.h: Likewise.
28099 * sysdeps/generic/math-type-macros-double.h: Include
28100 <libm-alias-double.h>.
28101 [declare_mgen_alias] (declare_mgen_alias): Define to use
28103 * sysdeps/generic/math-type-macros.h [!M_LIBM_NEED_COMPAT]
28104 (M_LIBM_NEED_COMPAT): Remove macro.
28105 [!M_LIBM_NEED_COMPAT] (declare_mgen_libm_compat): Likewise.
28106 * sysdeps/ieee754/ldbl-opt/math-type-macros-double.h: Remove.
28107 * math/cabs_template.c [M_LIBM_NEED_COMPAT]: Remove conditional
28109 * math/carg_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28110 * math/cimag_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28111 * math/conj_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28112 * math/creal_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28113 * math/s_cacos_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28114 * math/s_cacosh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28115 * math/s_casin_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28116 * math/s_casinh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28117 * math/s_catan_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28118 * math/s_catanh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28119 * math/s_ccos_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28120 * math/s_ccosh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28121 * math/s_cexp_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28122 * math/s_clog10_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28123 * math/s_clog_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28124 * math/s_cpow_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28125 * math/s_cproj_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28126 * math/s_csin_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28127 * math/s_csinh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28128 * math/s_csqrt_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28129 * math/s_ctan_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28130 * math/s_ctanh_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28131 * math/s_fdim_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28132 * math/s_fmax_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28133 * math/s_fmin_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28134 * math/s_nan_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28135 * math/w_ilogb_template.c [M_LIBM_NEED_COMPAT]: Likewise.
28136 * sysdeps/ieee754/ldbl-opt/s_clog10.c: New file.
28137 * sysdeps/ieee754/ldbl-opt/s_ldexp.c (M_LIBM_NEED_COMPAT): Remove
28139 (declare_mgen_alias): New macro.
28140 * sysdeps/ieee754/ldbl-opt/w_log1p.c: New file.
28141 * sysdeps/ieee754/ldbl-opt/w_scalbln.c: Likewise.
28142 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-vis3.c
28143 (M_LIBM_NEED_COMPAT): Remove macro.
28144 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.c
28145 [HAVE_AS_VIS3_SUPPORT]: Include <math_ldbl_opt.h> and
28146 <first-versions.h>.
28147 [HAVE_AS_VIS3_SUPPORT && LONG_DOUBLE_COMPAT (libm,
28148 FIRST_VERSION_libm_fdiml)]: Define fdiml as compat symbol.
28150 2017-09-12 Joseph Myers <joseph@codesourcery.com>
28152 * sysdeps/generic/math-type-macros.h [!declare_mgen_alias_2]
28153 (declare_mgen_alias_2): Remove.
28154 * sysdeps/generic/math-type-macros-double.h
28155 [NO_LONG_DOUBLE && !declare_mgen_alias_2] (declare_mgen_alias_2):
28157 * math/s_ldexp_template.c (M_SUF (__wrap_scalbn)): Define strong
28159 (ldexp): Define with declare_mgen_alias.
28160 (scalbn): Likewise.
28162 2017-09-12 Steve Ellcey <sellcey@cavium.com>
28164 * grp/initgroups.c: Include config.h.
28165 (DEFAULT_CONFIG): New macro.
28166 (internal_getgrouplist): Use DEFAULT_CONFIG.
28167 * nscd/initgrcache.c (addinitgroupsX): Likewise.
28168 * nss/nsswitch.c (__nss_disable_nscd): Likewise.
28169 (DEFAULT_DEFCONFIG): New macro.
28170 (__nss_database_lookup): Use DEFAULT_DEFCONFIG.
28171 * nss/grp-lookup.c: Include config.h
28172 (DEFAULT_CONFIG): Set definition based on LINK_OBSOLETE_NSL.
28173 * nss/pwd-lookup.c (DEFAULT_CONFIG): Likewise.
28174 * nss/spwd-lookup.c (DEFAULT_CONFIG): Likewise.
28175 * manual/nss.texi: Update default values section.
28177 2017-09-12 H.J. Lu <hongjiu.lu@intel.com>
28180 * sysdeps/x86/cpu-features.h (bit_arch_MathVec_Prefer_No_AVX512):
28182 (index_arch_MathVec_Prefer_No_AVX512): Likewise.
28183 * sysdeps/x86/cpu-tunables.c (TUNABLE_CALLBACK (set_hwcaps)):
28184 Handle MathVec_Prefer_No_AVX512.
28185 * sysdeps/x86_64/fpu/multiarch/ifunc-mathvec-avx512.h
28186 (IFUNC_SELECTOR): Return AVX2 version if MathVec_Prefer_No_AVX512
28189 2017-09-12 Samuel Thibault <samuel.thibault@ens-lyon.org>
28191 * posix/sched_primax.c (__sched_get_priority_max): Add
28193 * posix/sched_primin.c (__sched_get_priority_min): Likewise.
28194 * sysdeps/mach/hurd/mmap.c (__mmap): Likewise.
28195 * sysdeps/mach/hurd/mmap64.c (__mmap64): Likewise.
28196 * sysdeps/mach/hurd/mprotect.c (__mprotect): Likewise.
28197 * sysdeps/mach/hurd/munmap.c (__munmap): Likewise.
28198 * sysdeps/mach/hurd/dl-sysdep.c (__GI___getpid,
28199 __GI___strtoul_internal, __GI_____strtoul_internal, __GI___chk_fail,
28200 __GI___fortify_fail, __GI___assert_fail, __GI___assert_perror_fail):
28203 2017-09-11 Joseph Myers <joseph@codesourcery.com>
28205 * sysdeps/generic/libm-alias-float.h: New file.
28206 * sysdeps/generic/math-type-macros-float.h: Include
28207 <libm-alias-float.h>.
28208 [!declare_mgen_alias] (declare_mgen_alias): Define macro.
28210 2017-09-11 H.J. Lu <hongjiu.lu@intel.com>
28213 * sysdeps/x86/cpu-features.c (init_cpu_features): Initialize
28214 GLRO(dl_hwcap) to HWCAP_X86_64 for x86-64.
28215 * sysdeps/x86/dl-hwcap.h (HWCAP_COUNT): Updated.
28216 (HWCAP_IMPORTANT): Likewise.
28217 (HWCAP_X86_64): New enum.
28218 (HWCAP_X86_AVX512_1): Updated.
28219 * sysdeps/x86/dl-procinfo.c (_dl_x86_hwcap_flags): Add "x86_64".
28220 * sysdeps/x86_64/Makefile (tests): Add tst-x86_64-1.
28221 (modules-names): Add x86_64/tst-x86_64mod-1.
28222 (LDFLAGS-tst-x86_64mod-1.so): New.
28223 ($(objpfx)tst-x86_64-1): Likewise.
28224 ($(objpfx)x86_64/tst-x86_64mod-1.os): Likewise.
28225 (tst-x86_64-1-clean): Likewise.
28226 * sysdeps/x86_64/tst-x86_64-1.c: New file.
28227 * sysdeps/x86_64/tst-x86_64mod-1.c: Likewise.
28229 2017-09-11 Siddhesh Poyarekar <siddhesh@sourceware.org>
28231 * po/sv.po: Update translations.
28232 * po/fr.po: Likewise.
28234 2017-09-10 Samuel Thibault <samuel.thibault@ens-lyon.org>
28236 * sunrpc/tst-udp-timeout.c (test_udp_server): Increase timeout to 2.5
28238 * sunrpc/tst-udp-nonblocking.c (do_test): Increase timeout to 0.75
28240 * elf/rtld-Rules: Fix $(error) use.
28242 2017-09-09 Mike FABIAN <mfabian@redhat.com>
28245 * libio/tst-widetext.input: Change “Bengali” to “Bangla”.
28246 * locale/iso-639.def: Change “Bengali” to “Bangla”.
28247 * localedata/locales/bn_BD: “Bengali” was still used in some
28248 comments. Change it to “Bangla”.
28250 2017-09-08 Markus Trippelsdorf <markus@trippelsdorf.de>
28252 * sysdeps/x86_64/fpu/libm-test-ulps: Update for AMD Ryzen.
28254 2017-09-08 Steve Ellcey <sellcey@cavium.com>
28256 * manual/tunables.texi (glibc.tune.cpu): Add thunderx2t99 and
28257 thunderx2t99p1 to list of cpu names.
28258 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (cpu_list):
28259 Add thunderx2t99 and thunderx2t99p1 entries to cpu_list.
28261 2017-09-08 Steve Ellcey <sellcey@cavium.com>
28263 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (get_midr_from_mcpu):
28264 Use strcmp instead of tunable_is_name.
28266 2017-09-08 Joseph Myers <joseph@codesourcery.com>
28268 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_GNU]
28269 (F_GET_RW_HINT): New macro.
28270 [__USE_GNU] (F_SET_RW_HINT): Likewise.
28271 [__USE_GNU] (F_GET_FILE_RW_HINT): Likewise.
28272 [__USE_GNU] (F_SET_FILE_RW_HINT): Likewise.
28273 [__USE_GNU] (RWF_WRITE_LIFE_NOT_SET): Likewise.
28274 [__USE_GNU] (RWH_WRITE_LIFE_NONE): Likewise.
28275 [__USE_GNU] (RWH_WRITE_LIFE_SHORT): Likewise.
28276 [__USE_GNU] (RWH_WRITE_LIFE_MEDIUM): Likewise.
28277 [__USE_GNU] (RWH_WRITE_LIFE_LONG): Likewise.
28278 [__USE_GNU] (RWH_WRITE_LIFE_EXTREME): Likewise.
28280 * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_GNU]
28281 (F_ADD_SEALS): New macro.
28282 [__USE_GNU] (F_GET_SEALS): Likewise.
28283 [__USE_GNU] (F_SEAL_SEAL): Likewise.
28284 [__USE_GNU] (F_SEAL_SHRINK): Likewise.
28285 [__USE_GNU] (F_SEAL_GROW): Likewise.
28286 [__USE_GNU] (F_SEAL_WRITE): Likewise.
28288 2017-09-08 Adhemerval Zanella <adhemerval.zanella@linaro.org>
28290 * posix/glob_internal.h (GLOBPAT_NONE, GLOBPAT_SPECIAL)
28291 (GLOBPAT_BACKSLASH, GLOBPAT_BRACKET): New constants.
28292 * posix/glob_internal.h (__glob_pattern_type):
28293 * posix/glob.c (glob):
28294 * posix/glob_pattern_p.c (__glob_pattern_p):
28297 * sysdeps/unix/sysv/linux/arm/glob64.c: Remove file.
28298 * sysdeps/unix/sysv/linux/i386/glob64.c: Likewise.
28299 * sysdeps/unix/sysv/linux/m68k/glob64.c: Likewise.
28300 * sysdeps/unix/sysv/linux/mips/mips64/n64/glob64.c: Likewise.
28301 * sysdeps/unix/sysv/linux/mips/mips64/n64/globfree64.c: Likewise.
28302 * sysdeps/unix/sysv/linux/powerpc/powerpc32/glob64.c: Likewise.
28303 * sysdeps/unix/sysv/linux/sparc/sparc32/glob64.c: Likewise.
28304 * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: Likewise.
28305 * sysdeps/unix/sysv/linux/wordsize-64/globfree64.c: Likewise.
28306 * sysdeps/unix/sysv/linux/x86_64/x32/glob.c: Likewise.
28307 * sysdeps/unix/sysv/linux/x86_64/x32/globfree.c: Likewise.
28308 * sysdeps/wordsize-64/glob.c: Likewise.
28309 * sysdeps/wordsize-64/glob64.c: Likewise.
28310 * sysdeps/wordsize-64/globfree.c: Likewise.
28311 * sysdeps/wordsize-64/globfree64.c: Likewise.
28312 * sysdeps/unix/sysv/linux/glob.c: New file.
28313 * sysdeps/unix/sysv/linux/glob64.c: Likewise.
28314 * sysdeps/unix/sysv/linux/globfree.c: Likewise.
28315 * sysdeps/unix/sysv/linux/globfree64.c: Likewise.
28316 * sysdeps/unix/sysv/linux/s390/s390-32/glob64.c: Likewise.
28317 * sysdeps/unix/sysv/linux/oldglob.c [SHLIB_COMPAT]: Also
28318 adds !GLOB_NO_OLD_VERSION as an extra condition.
28319 * sysdeps/unix/sysv/linux/i386/alphasort64.c: Include olddirent.h
28320 using relative path instead of absolute one.
28321 * sysdeps/unix/sysv/linux/i386/getdents64.c: Likewise.
28322 * sysdeps/unix/sysv/linux/i386/readdir64.c: Likewise.
28323 * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
28324 * sysdeps/unix/sysv/linux/i386/versionsort64.c: Likewise.
28325 * sysdeps/unix/sysv/linux/i386/olddirent.h: Move to ...
28326 * sysdeps/unix/sysv/linux//olddirent.h: ... here.
28329 * posix/glob.c (GET_LOGIN_NAME_MAX): Remove.
28330 (glob): Use the same scratch buffer for both getlogin_r and
28331 getpwnam_r. Don’t require preallocation of the login name. This
28332 simplifies storage allocation, and corrects the handling of
28336 * posix/glob.c (glob): Port recent patches to platforms
28337 lacking getpwnam_r.
28338 (glob): Fix longstanding misuse of errno after getpwnam_r, which
28339 returns an error number rather than setting errno.
28341 * include/scratch_buffer.h (scratch_buffer): Use a C99 align method
28342 instead of GCC extension.
28343 * malloc/scratch_buffer_grow.c [!_LIBC]: Include libc-config.h.
28344 * malloc/scratch_buffer_grow_preserve.c [!_LIBC]: Likewise.
28345 * malloc/scratch_buffer_set_array_size.c [!_LIBC]: Likewise.
28349 * posix/Makefile (tests): Remove bug-glob1 and tst-glob_symlinks.
28350 * posix/bug-glob1.c: Remove file.
28351 * posix/tst-glob_symlinks.c: New file.
28352 * posix/glob.c (__lstat64): New macro.
28353 (is_dir): New function.
28354 (glob, glob_in_dir): Match symlinks even if they are dangling.
28355 (link_stat, link_exists_p): Remove. All uses removed.
28359 * posix/glob.c (struct readdir_result): Remove skip_entry member.
28360 (readdir_result_skip_entry, D_INO_TO_RESULT): Remove.
28365 * posix/Makefile (routines): Add globfree, globfree64, and
28367 * posix/flexmember.h: New file.
28368 * posix/glob_internal.h: Likewise.
28369 * posix/glob_pattern_p.c: Likewise.
28370 * posix/globfree.c: Likewise.
28371 * posix/globfree64.c: Likewise.
28372 * sysdeps/gnu/globfree64.c: Likewise.
28373 * sysdeps/unix/sysv/linux/alpha/globfree.c: Likewise.
28374 * sysdeps/unix/sysv/linux/mips/mips64/n64/globfree64.c: Likewise.
28375 * sysdeps/unix/sysv/linux/oldglob.c: Likewise.
28376 * sysdeps/unix/sysv/linux/wordsize-64/globfree64.c: Likewise.
28377 * sysdeps/unix/sysv/linux/x86_64/x32/globfree.c: Likewise.
28378 * sysdeps/wordsize-64/globfree.c: Likewise.
28379 * sysdeps/wordsize-64/globfree64.c: Likewise.
28380 * posix/glob.c (HAVE_CONFIG_H): Use !_LIBC instead.
28381 [NDEBUG): Remove comments.
28382 (GLOB_ONLY_P, _AMIGA, VMS): Remove define.
28383 (dirent_type): New type. Use uint_fast8_t not
28384 uint8_t, as C99 does not require uint8_t.
28385 (DT_UNKNOWN, DT_DIR, DT_LNK): New macros.
28386 (struct readdir_result): Use dirent_type. Do not define skip_entry
28387 unless it is needed; this saves a byte on platforms lacking d_ino.
28388 (readdir_result_type, readdir_result_skip_entry):
28389 New functions, replacing ...
28390 (readdir_result_might_be_symlink, readdir_result_might_be_dir):
28391 these functions, which were removed. This makes the callers
28392 easier to read. All callers changed.
28393 (D_INO_TO_RESULT): Now empty if there is no d_ino.
28394 (size_add_wrapv, glob_use_alloca): New static functions.
28395 (glob, glob_in_dir): Check for size_t overflow in several places,
28396 and fix some size_t checks that were not quite right.
28397 Remove old code using SHELL since Bash no longer
28399 (glob, prefix_array): Separate MS code better.
28400 (glob_in_dir): Remove old Amiga and VMS code.
28401 (globfree, __glob_pattern_type, __glob_pattern_p): Move to
28403 (glob_in_dir): Do not rely on undefined behavior in accessing
28404 struct members beyond their bounds. Use a flexible array member
28406 (link_stat): Rename from link_exists2_p and return -1/0 instead of
28407 0/1. Caller changed.
28408 (glob): Fix memory leaks.
28409 * posix/glob64 (globfree64): Move to separate file.
28410 * sysdeps/gnu/glob64.c (NO_GLOB_PATTERN_P): Remove define.
28411 (globfree64): Remove hidden alias.
28412 * sysdeps/unix/sysv/linux/Makefile (sysdeps_routines): Add
28414 * sysdeps/unix/sysv/linux/alpha/glob.c (__new_globfree): Move to
28416 * sysdeps/unix/sysv/linux/i386/glob64.c (NO_GLOB_PATTERN_P): Remove
28418 Move compat code to separate file.
28419 * sysdeps/wordsize-64/glob.c (globfree): Move definitions to
28422 2017-09-07 H.J. Lu <hongjiu.lu@intel.com>
28424 * resolv/tst-resolv-qtypes.c (domain): Changed to
28425 "const char domain[] =".
28427 2017-09-07 Joseph Myers <joseph@codesourcery.com>
28429 * scripts/build-many-glibcs.py (Context.checkout): Default MPFR
28432 * sysdeps/gnu/netinet/tcp.h (TCP_ULP): New macro.
28433 (TCP_MD5SIG_EXT): Likewise.
28434 (TCP_MD5SIG_FLAG_PREFIX): Likewise.
28435 (struct tcp_md5sig): Replace __tcpm_pad1 by tcpm_flags and
28436 tcpm_prefixlen. Rename __tcpm_pad2 to __tcpm_pad.
28438 * sysdeps/unix/sysv/linux/bits/socket.h (SOL_TLS): New macro.
28440 2017-09-07 Mike FABIAN <mfabian@redhat.com>
28442 * localedata/locales/om_ET (LC_TIME): use ASCII for better readability.
28444 2017-09-07 Akhilesh Kumar <akhilesh.k@samsung.com>
28447 * localedata/locales/om_KE (LC_TIME): copy "om_ET".
28449 2017-09-07 Samuel Thibault <samuel.thibault@ens-lyon.org>
28451 * hurd/get-host.c (_hurd_get_host_config): Also check that more == 0
28452 before assuming that the file is empty. Avoid testing buffer content
28455 2017-09-06 Adhemerval Zanella <adhemerval.zanella@linaro.org>
28458 * sysdeps/i386/i686/multiarch/strncpy.c (_HAVE_STRING_ARCH_strncpy):
28460 * sysdeps/x86_64/multiarch/stpcpy.c (_HAVE_STRING_ARCH_stpcpy):
28462 * sysdeps/x86_64/multiarch/strcspn.c (_HAVE_STRING_ARCH_strcspn):
28464 * sysdeps/x86_64/multiarch/strncat.c (_HAVE_STRING_ARCH_strncat):
28466 * sysdeps/x86_64/multiarch/strncpy.c (_HAVE_STRING_ARCH_strncpy):
28468 * sysdeps/x86_64/multiarch/strpbrk.c (_HAVE_STRING_ARCH_strpbrk):
28470 * sysdeps/x86_64/multiarch/strspn.c (_HAVE_STRING_ARCH_strspn):
28473 2017-09-06 Florian Weimer <fweimer@redhat.com>
28475 * malloc/dynarray_emplace_enlarge.c
28476 (__libc_dynarray_emplace_enlarge): Add missing else.
28478 2017-09-06 Florian Weimer <fweimer@redhat.com>
28481 * resolv/resolv_conf.c (__resolv_conf_attach): Do not free conf in
28482 case of failure to obtain the global conf object.
28484 2017-09-06 Florian Weimer <fweimer@redhat.com>
28487 * resolv/res_init.c (res_vinit_1): Avoid memory leak in case of
28488 dynarray allocation failure.
28490 2017-09-06 Florian Weimer <fweimer@redhat.com>
28492 Remove dead PTR IPv4-to-IPv6 mapping code from nss_dns.
28493 * resolv/nss_dns/dns-host.c (getanswer_r): Remove dead code.
28494 * resolv/tst-res_use_inet6.c (response_ptr_v4, response_ptr_v6):
28496 (response): Call them. Add 'p', '6' flag processing.
28497 (test_reverse): New function.
28498 (test_get2_any): Call it.
28499 (test_no_inet6): Add 'p' test.
28500 (test_inet6): Likewise.
28502 2017-09-06 Florian Weimer <fweimer@redhat.com>
28504 Enhance tst-res_use_inet6 to test IPv4-to-IPv6 address mapping.
28505 * resolv/tst-res_use_inet6.c (response): Process flags embedded in
28507 (test_gai): Adjust query names. Add additional tests.
28508 (test_get2_any, test_get2_no_inet6, test_get2_inet6): Split from
28509 test_get2. Adjust query names. Add additional tests.
28510 (test_no_inet6): New function, extracted from threadfunc.
28511 (threadfunc): Call test_get2_any, test_get2_inet6, test_no_inet6.
28512 Add additional tests.
28514 2017-09-06 Mike FABIAN <mfabian@redhat.com>
28517 * localedata/unicode-gen/utf8_gen.py: Set the width for
28518 characters with Prepended_Concatenation_Mark property to 1
28519 * localedata/charmaps/UTF-8: Updated using the improved script.
28521 2017-09-06 Mike FABIAN <mfabian@redhat.com>
28524 * localedata/unicode-gen/utf8_gen.py: Improve the script to
28525 use the range notation for all ranges of neighbouring characters
28526 with the same width.
28528 2017-09-05 Joseph Myers <joseph@codesourcery.com>
28530 * sysdeps/generic/math-type-macros-double.h: Include
28531 <math-svid-compat.h>.
28532 (__USE_WRAPPER_TEMPLATE): Define to !LIBM_SVID_COMPAT.
28533 * sysdeps/generic/math-type-macros-float.h: Include
28534 <math-svid-compat.h>.
28535 (__USE_WRAPPER_TEMPLATE): Define to !LIBM_SVID_COMPAT.
28536 * sysdeps/generic/math-type-macros-ldouble.h: Include
28537 <math-svid-compat.h>.
28538 (__USE_WRAPPER_TEMPLATE): Define to !LIBM_SVID_COMPAT.
28539 * math/lgamma-compat.h (BUILD_LGAMMA): Include LIBM_SVID_COMPAT
28541 * math/w_acos_compat.c: Condition contents on [LIBM_SVID_COMPAT].
28542 * math/w_acosf_compat.c: Likewise.
28543 * math/w_acosh_compat.c: Likewise.
28544 * math/w_acoshf_compat.c: Likewise.
28545 * math/w_acoshl_compat.c: Likewise.
28546 * math/w_acosl_compat.c: Likewise.
28547 * math/w_asin_compat.c: Likewise.
28548 * math/w_asinf_compat.c: Likewise.
28549 * math/w_asinl_compat.c: Likewise.
28550 * math/w_atan2_compat.c: Likewise.
28551 * math/w_atan2f_compat.c: Likewise.
28552 * math/w_atan2l_compat.c: Likewise.
28553 * math/w_atanh_compat.c: Likewise.
28554 * math/w_atanhf_compat.c: Likewise.
28555 * math/w_atanhl_compat.c: Likewise.
28556 * math/w_cosh_compat.c: Likewise.
28557 * math/w_coshf_compat.c: Likewise.
28558 * math/w_coshl_compat.c: Likewise.
28559 * math/w_exp10_compat.c: Likewise.
28560 * math/w_exp10f_compat.c: Likewise.
28561 * math/w_exp10l_compat.c: Likewise.
28562 * math/w_exp2_compat.c: Likewise.
28563 * math/w_exp2f_compat.c: Likewise.
28564 * math/w_exp2l_compat.c: Likewise.
28565 * math/w_fmod_compat.c: Likewise.
28566 * math/w_fmodf_compat.c: Likewise.
28567 * math/w_fmodl_compat.c: Likewise.
28568 * math/w_hypot_compat.c: Likewise.
28569 * math/w_hypotf_compat.c: Likewise.
28570 * math/w_hypotl_compat.c: Likewise.
28571 * math/w_j0_compat.c: Likewise.
28572 * math/w_j0f_compat.c: Likewise.
28573 * math/w_j0l_compat.c: Likewise.
28574 * math/w_j1_compat.c: Likewise.
28575 * math/w_j1f_compat.c: Likewise.
28576 * math/w_j1l_compat.c: Likewise.
28577 * math/w_jn_compat.c: Likewise.
28578 * math/w_jnf_compat.c: Likewise.
28579 * math/w_jnl_compat.c: Likewise.
28580 * math/w_lgamma_r_compat.c: Likewise.
28581 * math/w_lgammaf_r_compat.c: Likewise.
28582 * math/w_lgammal_r_compat.c: Likewise.
28583 * math/w_log10_compat.c: Likewise.
28584 * math/w_log10f_compat.c: Likewise.
28585 * math/w_log10l_compat.c: Likewise.
28586 * math/w_log2_compat.c: Likewise.
28587 * math/w_log2f_compat.c: Likewise.
28588 * math/w_log2l_compat.c: Likewise.
28589 * math/w_log_compat.c: Likewise.
28590 * math/w_logf_compat.c: Likewise.
28591 * math/w_logl_compat.c: Likewise.
28592 * math/w_pow_compat.c: Likewise.
28593 * math/w_powf_compat.c: Likewise.
28594 * math/w_powl_compat.c: Likewise.
28595 * math/w_remainder_compat.c: Likewise.
28596 * math/w_remainderf_compat.c: Likewise.
28597 * math/w_remainderl_compat.c: Likewise.
28598 * math/w_sinh_compat.c: Likewise.
28599 * math/w_sinhf_compat.c: Likewise.
28600 * math/w_sinhl_compat.c: Likewise.
28601 * math/w_sqrt_compat.c: Likewise.
28602 * math/w_sqrtf_compat.c: Likewise.
28603 * math/w_sqrtl_compat.c: Likewise.
28604 * math/w_tgamma_compat.c: Likewise.
28605 * math/w_tgammaf_compat.c: Likewise.
28606 * math/w_tgammal_compat.c: Likewise.
28607 * math/w_scalb_compat.c (sysv_scalb): Condition definition on
28608 [LIBM_SVID_COMPAT].
28609 (__scalb): Condition call to sysv_scalb on [LIBM_SVID_COMPAT].
28610 * math/w_scalbf_compat.c (sysv_scalbf): Condition definition on
28611 [LIBM_SVID_COMPAT].
28612 (__scalbf): Condition call to sysv_scalbf on [LIBM_SVID_COMPAT].
28613 * math/w_scalbl_compat.c (sysv_scalbl): Condition definition on
28614 [LIBM_SVID_COMPAT].
28615 (__scalbl): Condition call to sysv_scalbl on [LIBM_SVID_COMPAT].
28616 * sysdeps/i386/fpu/w_sqrt.c: New file.
28617 * sysdeps/ia64/fpu/w_acos.c: Likewise.
28618 * sysdeps/ia64/fpu/w_acosf.c: Likewise.
28619 * sysdeps/ia64/fpu/w_acosh.c: Likewise.
28620 * sysdeps/ia64/fpu/w_acoshf.c: Likewise.
28621 * sysdeps/ia64/fpu/w_acoshl.c: Likewise.
28622 * sysdeps/ia64/fpu/w_acosl.c: Likewise.
28623 * sysdeps/ia64/fpu/w_asin.c: Likewise.
28624 * sysdeps/ia64/fpu/w_asinf.c: Likewise.
28625 * sysdeps/ia64/fpu/w_asinl.c: Likewise.
28626 * sysdeps/ia64/fpu/w_atan2.c: Likewise.
28627 * sysdeps/ia64/fpu/w_atan2f.c: Likewise.
28628 * sysdeps/ia64/fpu/w_atan2l.c: Likewise.
28629 * sysdeps/ia64/fpu/w_atanh.c: Likewise.
28630 * sysdeps/ia64/fpu/w_atanhf.c: Likewise.
28631 * sysdeps/ia64/fpu/w_atanhl.c: Likewise.
28632 * sysdeps/ia64/fpu/w_cosh.c: Likewise.
28633 * sysdeps/ia64/fpu/w_coshf.c: Likewise.
28634 * sysdeps/ia64/fpu/w_coshl.c: Likewise.
28635 * sysdeps/ia64/fpu/w_exp.c: Likewise.
28636 * sysdeps/ia64/fpu/w_exp10.c: Likewise.
28637 * sysdeps/ia64/fpu/w_exp10f.c: Likewise.
28638 * sysdeps/ia64/fpu/w_exp10l.c: Likewise.
28639 * sysdeps/ia64/fpu/w_exp2.c: Likewise.
28640 * sysdeps/ia64/fpu/w_exp2f.c: Likewise.
28641 * sysdeps/ia64/fpu/w_exp2l.c: Likewise.
28642 * sysdeps/ia64/fpu/w_expf.c: Likewise.
28643 * sysdeps/ia64/fpu/w_expl.c: Likewise.
28644 * sysdeps/ia64/fpu/w_fmod.c: Likewise.
28645 * sysdeps/ia64/fpu/w_fmodf.c: Likewise.
28646 * sysdeps/ia64/fpu/w_fmodl.c: Likewise.
28647 * sysdeps/ia64/fpu/w_hypot.c: Likewise.
28648 * sysdeps/ia64/fpu/w_hypotf.c: Likewise.
28649 * sysdeps/ia64/fpu/w_hypotl.c: Likewise.
28650 * sysdeps/ia64/fpu/w_lgamma_r.c: Likewise.
28651 * sysdeps/ia64/fpu/w_lgammaf_r.c: Likewise.
28652 * sysdeps/ia64/fpu/w_lgammal_r.c: Likewise.
28653 * sysdeps/ia64/fpu/w_log.c: Likewise.
28654 * sysdeps/ia64/fpu/w_log10.c: Likewise.
28655 * sysdeps/ia64/fpu/w_log10f.c: Likewise.
28656 * sysdeps/ia64/fpu/w_log10l.c: Likewise.
28657 * sysdeps/ia64/fpu/w_log2.c: Likewise.
28658 * sysdeps/ia64/fpu/w_log2f.c: Likewise.
28659 * sysdeps/ia64/fpu/w_log2l.c: Likewise.
28660 * sysdeps/ia64/fpu/w_logf.c: Likewise.
28661 * sysdeps/ia64/fpu/w_logl.c: Likewise.
28662 * sysdeps/ia64/fpu/w_pow.c: Likewise.
28663 * sysdeps/ia64/fpu/w_powf.c: Likewise.
28664 * sysdeps/ia64/fpu/w_powl.c: Likewise.
28665 * sysdeps/ia64/fpu/w_remainder.c: Likewise.
28666 * sysdeps/ia64/fpu/w_remainderf.c: Likewise.
28667 * sysdeps/ia64/fpu/w_remainderl.c: Likewise.
28668 * sysdeps/ia64/fpu/w_sinh.c: Likewise.
28669 * sysdeps/ia64/fpu/w_sinhf.c: Likewise.
28670 * sysdeps/ia64/fpu/w_sinhl.c: Likewise.
28671 * sysdeps/ia64/fpu/w_sqrt.c: Likewise.
28672 * sysdeps/ia64/fpu/w_sqrtf.c: Likewise.
28673 * sysdeps/ia64/fpu/w_sqrtl.c: Likewise.
28674 * sysdeps/ia64/fpu/w_tgamma.c: Likewise.
28675 * sysdeps/ia64/fpu/w_tgammaf.c: Likewise.
28676 * sysdeps/ia64/fpu/w_tgammal.c: Likewise.
28677 * sysdeps/ieee754/dbl-64/w_exp_compat.c: Condition contents on
28678 [LIBM_SVID_COMPAT].
28679 * sysdeps/ieee754/flt-32/w_expf_compat.c: Likewise.
28680 * sysdeps/ieee754/k_standard.c: Likewise.
28681 * sysdeps/ieee754/k_standardf.c: Likewise.
28682 * sysdeps/ieee754/k_standardl.c: Likewise.
28683 * sysdeps/ieee754/ldbl-128/w_expl_compat.c: Likewise.
28684 * sysdeps/ieee754/ldbl-128ibm/w_expl_compat.c: Likewise.
28685 * sysdeps/ieee754/ldbl-96/w_expl_compat.c: Likewise.
28686 * sysdeps/ieee754/ldbl-64-128/w_expl_compat.c: Condition
28687 long_double_symbol call on [LIBM_SVID_COMPAT].
28688 * sysdeps/ieee754/ldbl-opt/w_acoshl_compat.c: Likewise.
28689 * sysdeps/ieee754/ldbl-opt/w_acosl_compat.c: Likewise.
28690 * sysdeps/ieee754/ldbl-opt/w_asinl_compat.c: Likewise.
28691 * sysdeps/ieee754/ldbl-opt/w_atan2l_compat.c: Likewise.
28692 * sysdeps/ieee754/ldbl-opt/w_atanhl_compat.c: Likewise.
28693 * sysdeps/ieee754/ldbl-opt/w_coshl_compat.c: Likewise.
28694 * sysdeps/ieee754/ldbl-opt/w_fmodl_compat.c: Likewise.
28695 * sysdeps/ieee754/ldbl-opt/w_hypotl_compat.c: Likewise.
28696 * sysdeps/ieee754/ldbl-opt/w_j0l_compat.c: Likewise.
28697 * sysdeps/ieee754/ldbl-opt/w_j1l_compat.c: Likewise.
28698 * sysdeps/ieee754/ldbl-opt/w_jnl_compat.c: Likewise.
28699 * sysdeps/ieee754/ldbl-opt/w_lgammal_r_compat.c: Likewise.
28700 * sysdeps/ieee754/ldbl-opt/w_log10l_compat.c: Likewise.
28701 * sysdeps/ieee754/ldbl-opt/w_log2l_compat.c: Likewise.
28702 * sysdeps/ieee754/ldbl-opt/w_logl_compat.c: Likewise.
28703 * sysdeps/ieee754/ldbl-opt/w_powl_compat.c: Likewise.
28704 * sysdeps/ieee754/ldbl-opt/w_remainderl_compat.c: Likewise.
28705 * sysdeps/ieee754/ldbl-opt/w_sinhl_compat.c: Likewise.
28706 * sysdeps/ieee754/ldbl-opt/w_sqrtl_compat.c: Likewise.
28707 * sysdeps/ieee754/ldbl-opt/w_tgammal_compat.c: Likewise.
28708 * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c: Condition
28709 long_double_symbol and compat_symbol calls on [LIBM_SVID_COMPAT].
28711 2017-09-05 Steve Ellcey <sellcey@cavium.com>
28713 * include/shlib-compat.h (TEST_COMPAT): New Macro.
28714 * malloc/tst-mallocstate.c: Convert from test-skeleton
28715 to test-driver. Ifdef code using TEST_COMPAT macro.
28716 * math/test-matherr-2.c: Ifdef test using TEST_COMPAT macro.
28717 * math/test-matherr.c: Likewise.
28719 2017-09-05 Joseph Myers <joseph@codesourcery.com>
28722 * debug/pcprofiledump.c (main): Use byte-swapped mask when
28723 comparing word with byte-swapped constant.
28725 2017-09-05 Chris Leonard <cjlhomeaddress@gmail.com>
28728 * locale/iso-639.def: add Miskito.
28729 * localedata/SUPPORTED: Add miq_NI/UTF-8.
28730 * localedata/locales/miq_NI: New file.
28732 2017-09-04 H.J. Lu <hongjiu.lu@intel.com>
28735 * include/sys/stat.h (__chmod): Add libc_hidden_proto.
28736 (__mkdir): Likewise.
28737 * io/chmod.c (__chmod): Add libc_hidden_def.
28738 * io/mkdir.c (__mkdir): Likewise.
28739 * sysdeps/mach/hurd/chmod.c (__chmod): Likewise.
28740 * sysdeps/mach/hurd/mkdir.c (__mkdir): Likewise.
28741 * sysdeps/unix/sysv/linux/generic/chmod.c (__chmod): Likewise.
28742 * sysdeps/unix/sysv/linux/generic/mkdir.c (__mkdir): Likewise.
28744 2017-09-04 Joseph Myers <joseph@codesourcery.com>
28746 * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel
28750 * math/bits/math-finite.h (exp10): Redirect if [__GLIBC_USE
28751 (IEC_60559_FUNCS_EXT)], not [__USE_GNU].
28753 2017-09-04 Florian Weimer <fweimer@redhat.com>
28755 * math/math.h: Issue warning if log is defined.
28757 2017-09-04 Joseph Myers <joseph@codesourcery.com>
28759 * scripts/build-many-glibcs.py (Context.checkout): Default Linux
28760 kernel version to 4.13.
28762 2017-09-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
28764 * sysdeps/generic/sigsetops.h: Remove spurious #endif.
28765 (__sigismember, __sigaddset, __sigdelset): Fix referencing set
28767 * sysdeps/mach/hurd/bits/socket.h: Include <sys/types.h> instead of
28768 just <bits/types.h>.
28769 * sysdeps/posix/preadv2.c: Use off_t instead of OFF_T.
28770 * sysdeps/posix/preadv64v2.c: Use off64_t instead of OFF_T.
28771 * sysdeps/posix/pwritev2.c: Use off_t instead of OFF_T.
28772 * sysdeps/posix/pwritev64v2.c: Use off64_t instead of OFF_T.
28773 * misc/preadv2.c: Include <errno.h>.
28774 * misc/preadv64v2.c: Include <errno.h>.
28775 * misc/pwritev2.c: Include <errno.h>.
28776 * misc/pwritev64v2.c: Include <errno.h>.
28777 * sysdeps/posix/preadv2.c: Include <errno.h>.
28778 * sysdeps/posix/preadv64v2.c: Include <errno.h>.
28779 Fix <unistd.h> inclusion.
28780 * sysdeps/posix/pwritev2.c: Include <errno.h>.
28781 * sysdeps/posix/pwritev64v2.c: Include <errno.h>.
28782 * sysdeps/mach/hurd/dl-sysdep.c (__access_noerrno, __sbrk,
28783 __strtoul_internal): New functions.
28784 * sysdeps/posix/pause.c: Include <sigsetops.h>.
28785 * sysdeps/posix/system.c: Include <sigsetops.h>.
28786 * sysdeps/mach/hurd/i386/Makefile
28787 [$(subdir) = csu] (sysdep_routines): New rule: divdi3 object.
28788 [$(subdir) = csu] (sysdep-only-routines): Likewise.
28789 [$(subdir) = csu] (CFLAGS-divdi3.c): Likewise.
28790 * sysdeps/x86/fpu/include/bits/fenv.h [NO_HIDDEN]: Redirect
28791 __feraiseexcept_renamed to feraiseexcept instead of
28792 __GI_feraiseexcept.
28793 * sysdeps/mach/hurd/i386/Implies: Add mach/hurd/x86.
28794 * sysdeps/mach/hurd/x86/dl-sysdep.c: New file.
28795 * misc/tst-preadvwritev2-common.c (RWF_HIPRI, RWF_DSYNC, RWF_SYNC,
28796 RWF_NOWAIT): Define to 0 if undefined already.
28797 (do_test_with_invalid_flags): Set invalid_flag to 2 if RWF_SUPPORTED
28799 * resolv/tst-resolv-res_init-skeleton.c (run_res_init)
28800 [!CLONE_NEWUTS]: Fail as unsupported if hostname is not NULL.
28802 2017-09-01 Joseph Myers <joseph@codesourcery.com>
28804 * manual/math.texi (pow10): Do not document.
28805 (pow10f): Likewise.
28806 (pow10l): Likewise.
28807 * math/bits/mathcalls.h [__USE_GNU] (pow10): Do not declare.
28808 * math/bits/math-finite.h [__USE_GNU] (pow10): Likewise.
28809 * math/libm-test-exp10.inc (pow10_test): Remove.
28810 (do_test): Do not call pow10.
28811 * math/w_exp10_compat.c (pow10): Make into compat symbol.
28812 [NO_LONG_DOUBLE] (pow10l): Likewise.
28813 * math/w_exp10f_compat.c (pow10f): Likewise.
28814 * math/w_exp10l_compat.c (pow10l): Likewise.
28815 * sysdeps/ia64/fpu/e_exp10.S: Include <shlib-compat.h>.
28816 (pow10): Make into compat symbol.
28817 * sysdeps/ia64/fpu/e_exp10f.S: Include <shlib-compat.h>.
28818 (pow10f): Make into compat symbol.
28819 * sysdeps/ia64/fpu/e_exp10l.S: Include <shlib-compat.h>.
28820 (pow10l): Make into compat symbol.
28821 * sysdeps/ieee754/ldbl-opt/Makefile (libnldbl-calls): Remove
28823 (CFLAGS-nldbl-pow10.c): Remove variable..
28824 * sysdeps/ieee754/ldbl-opt/nldbl-pow10.c: Remove file.
28825 * sysdeps/ieee754/ldbl-opt/w_exp10_compat.c (pow10l): Condition on
28826 [SHLIB_COMPAT (libm, GLIBC_2_1, GLIBC_2_27)].
28827 * sysdeps/ieee754/ldbl-opt/w_exp10l_compat.c (compat_symbol):
28828 Undefine and redefine.
28829 (pow10l): Make into compat symbol.
28830 * sysdeps/aarch64/libm-test-ulps: Remove pow10 ulps.
28831 * sysdeps/alpha/fpu/libm-test-ulps: Likewise.
28832 * sysdeps/arm/libm-test-ulps: Likewise.
28833 * sysdeps/hppa/fpu/libm-test-ulps: Likewise.
28834 * sysdeps/i386/fpu/libm-test-ulps: Likewise.
28835 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Likewise.
28836 * sysdeps/microblaze/libm-test-ulps: Likewise.
28837 * sysdeps/mips/mips32/libm-test-ulps: Likewise.
28838 * sysdeps/mips/mips64/libm-test-ulps: Likewise.
28839 * sysdeps/nios2/libm-test-ulps: Likewise.
28840 * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
28841 * sysdeps/powerpc/nofpu/libm-test-ulps: Likewise.
28842 * sysdeps/s390/fpu/libm-test-ulps: Likewise.
28843 * sysdeps/sh/libm-test-ulps: Likewise.
28844 * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
28845 * sysdeps/tile/libm-test-ulps: Likewise.
28846 * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
28848 2017-09-01 Paul Pluzhnikov <ppluzhnikov@google.com>
28850 * stdlib/tst-atexit-common.c (crumbs): Ensure correct size.
28852 2017-09-01 H.J. Lu <hongjiu.lu@intel.com>
28854 * posix/tst-regex.c (do_test): Replace "../ChangeLog.8" with
28855 "../ChangeLog.old/ChangeLog.8".
28856 * posix/tst-regex2.c (do_test): Replace "../ChangeLog.14" with
28857 "../ChangeLog.old/ChangeLog.14".
28859 2017-09-01 H.J. Lu <hongjiu.lu@intel.com>
28861 * manual/contrib.texi: Credit Ulrich Drepper for the POSIX
28864 2017-09-01 Joseph Myers <joseph@codesourcery.com>
28866 * sysdeps/unix/sysv/linux/gentempfd.c: Include <string.h>.
28868 2017-09-01 H.J. Lu <hongjiu.lu@intel.com>
28870 * csu/version.c (banner): Remove "by Roland McGrath et al.".
28871 * nptl/Banner: Remove "by Ulrich Drepper et al.".
28873 2017-09-01 Paul Pluzhnikov <ppluzhnikov@google.com>
28875 * stdlib/tst-atexit-common.c (do_test): Test support for at least
28876 32 atexit handlers.
28878 2017-09-01 Zack Weinberg <zackw@panix.com>
28880 * math/math.h (HUGE_VAL): Improve commentary.
28882 2017-09-01 Adhemerval Zanella <adhemerval.zanella@linaro.org>
28883 Andreas Schwab <schwab@suse.de>
28886 * include/stdio.h (__gen_tempfd): New function.
28887 * stdio-common/Makefile (routines): Add gentempfd.
28888 * stdio-common/gentempfd.c: New file.
28889 * sysdeps/unix/sysv/linux/gentempfd.c: Likewise.
28890 * stdio-common/tmpfile.c (tmpfile): First try to use a system specific
28891 unnamed file first.
28893 2017-09-01 Florian Weimer <fweimer@redhat.com>
28897 * sysdeps/posix/getaddrinfo.c (gethosts): Look at NSS function
28898 result to determine success or failure, not the errno value.
28899 * nss/Makefile (tests): Add tst-nss-files-hosts-erange.
28900 (tst-nss-files-hosts-erange): Link with -ldl.
28901 * nss/tst-nss-files-hosts-erange.c: New file.
28902 * nss/tst-resolv-basic.c (response): Handle nodata.example.
28903 (do_test): Add NO_DATA tests.
28904 * resolv/tst-resolv-basic.c (test_nodata_nxdomain): New function.
28905 (do_test): Call it.
28907 2017-09-01 Florian Weimer <fweimer@redhat.com>
28910 * sysdeps/posix/getaddrinfo.c (gaih_inet): Report EAI_NODATA error
28911 coming from gethostbyname2_r.
28913 2017-09-01 Florian Weimer <fweimer@redhat.com>
28915 * support/namespace.h (struct support_chroot_configuration): Add
28917 (struct support_chroot): Add path_hosts, path_host_conf.
28918 * support/support_chroot.c (write_file): New function.
28919 (support_chroot_create): Call it to process /etc/resolv.conf,
28920 /etc/hosts, /etc/host.conf.
28921 (support_chroot_free): Update.
28923 2017-09-01 Florian Weimer <fweimer@redhat.com>
28925 * sysdeps/posix/getaddrinfo.c (gaih_inet): Only use h_errno if
28926 status indicates it is set.
28928 2017-09-01 Florian Weimer <fweimer@redhat.com>
28931 * sysdeps/posix/getaddrinfo.c (gaih_inet): Make reporting of NSS
28932 function lookup failures more reliable.
28934 2017-09-01 Florian Weimer <fweimer@redhat.com>
28936 * sysdeps/posix/getaddrinfo.c (gethosts): Use h_errno directly.
28937 (getcanonname): Likewise.
28938 (gaih_inet): Likewise.
28940 2017-09-01 Florian Weimer <fweimer@redhat.com>
28942 * sysdeps/posix/getaddrinfo.c (gethosts): Use errno directly.
28943 (getcanonname): Likewise.
28944 (gaih_inet): Likewise.
28946 2017-08-31 Steve Ellcey <sellcey@cavium.com>
28947 Richard Henderson <rth@twiddle.net>
28949 * sysdeps/aarch64/fpu/s_llrint.c (OREG_SIZE): New macro.
28950 * sysdeps/aarch64/fpu/s_llround.c (OREG_SIZE): Likewise.
28951 * sysdeps/aarch64/fpu/s_llrintf.c (OREGS, IREGS): Remove.
28952 (IREG_SIZE, OREG_SIZE): New macros.
28953 * sysdeps/aarch64/fpu/s_llroundf.c: (OREGS, IREGS): Remove.
28954 (IREG_SIZE, OREG_SIZE): New macros.
28955 * sysdeps/aarch64/fpu/s_lrintf.c (IREGS): Remove.
28956 (IREG_SIZE): New macro.
28957 * sysdeps/aarch64/fpu/s_lroundf.c (IREGS): Remove.
28958 (IREG_SIZE): New macro.
28959 * sysdeps/aarch64/fpu/s_lrint.c (get-rounding-mode.h, stdint.h):
28961 (IREG_SIZE, OREG_SIZE): Initialize if not already set.
28962 (OREGS, IREGS): Set based on IREG_SIZE and OREG_SIZE.
28963 (__CONCATX): Handle exceptions correctly on large values that may
28965 * sysdeps/aarch64/fpu/s_lround.c (IREG_SIZE, OREG_SIZE):
28966 Initialize if not already set.
28967 (OREGS, IREGS): Set based on IREG_SIZE and OREG_SIZE.
28969 2017-08-31 Adhemerval Zanella <adhemerval.zanella@linaro.org>
28971 * sysdeps/generic/not-cancel.h (NO_CANCELLATION): Remove macro.
28972 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h (NO_CANCELLATION):
28974 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h (NO_CANCELLATION):
28976 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h (NO_CANCELLATION):
28978 * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h (NO_CANCELLATION):
28980 * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h (NO_CANCELLATION):
28982 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (NO_CANCELLATION):
28984 * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h (NO_CANCELLATION):
28986 * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h
28987 (NO_CANCELLATION): Likewise.
28988 * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h (NO_CANCELLATION):
28990 * sysdeps/unix/sysv/linux/nios2/sysdep-cancel.h (NO_CANCELLATION):
28992 * sysdeps/unix/sysv/linux/powerpc/sysdep-cancel.h (NO_CANCELLATION):
28994 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h
28995 (NO_CANCELLATION): Likewise.
28996 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h
28997 (NO_CANCELLATION): Likewise.
28998 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h (NO_CANCELLATION):
29000 * sysdeps/unix/sysv/linux/sparc/sysdep-cancel.h (NO_CANCELLATION):
29002 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h (NO_CANCELLATION):
29004 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h (NO_CANCELLATION):
29006 * sysdeps/unix/sysv/linux/not-cancel.h (__fcntl_nocancel): Add
29008 * sysdeps/unix/sysv/linux/fcntl.c (__fcntl_nocancel): Define only
29009 for !IS_IN (rtld) and remove NO_CANCELLATION usage.
29011 2017-08-31 Steve Ellcey <sellcey@cavium.com>
29013 * sysdeps/aarch64/dl-irel.h: (elf_ifunc_invoke): Change argument type
29016 2017-08-31 Florian Weimer <fweimer@redhat.com>
29018 * include/libc-symbols.h (internal_function): Remove.
29020 2017-08-31 Florian Weimer <fweimer@redhat.com>
29022 * stdlib/fmtmsg.c (internal_addseverity): Remove
29025 2017-08-31 Florian Weimer <fweimer@redhat.com>
29027 * stdio-common/printf_fp.c (group_number): Remove
29029 * stdio-common/vfprintf.c (buffered_vfprintf): Likewise.
29031 2017-08-31 Florian Weimer <fweimer@redhat.com>
29033 * posix/fnmatch.c (internal_function): Remove definition.
29034 * posix/fnmatch_loop.c (FCT, EXT, END): Remove internal_function.
29035 * posix/regcomp.c (peek_token, init_word_char)
29036 (duplicate_node_closure, fetch_token, peek_token)
29037 (peek_token_bracket, build_range_exp, build_collating_symbol):
29039 * posix/regex_internal.c (re_string_construct_common)
29040 (create_ci_newstate, create_cd_newstate, re_string_allocate)
29041 (re_string_construct, re_string_realloc_buffers, build_wcs_buffer)
29042 (build_wcs_upper_buffer, re_string_skip_chars, build_upper_buffer)
29043 (re_string_translate_buffer, re_string_reconstruct)
29044 (re_string_peek_byte_case, re_string_fetch_byte_case)
29045 (re_string_destruct, re_string_context_at, re_node_set_alloc)
29046 (re_node_set_init_1, re_node_set_init_2, re_node_set_init_copy)
29047 (re_node_set_add_intersect, re_node_set_init_union)
29048 (re_node_set_merge, re_node_set_insert, re_node_set_insert_last)
29049 (re_node_set_compare, re_node_set_contains, re_node_set_remove_at)
29050 (re_dfa_add_node, calc_state_hash, re_acquire_state)
29051 (re_acquire_state_context): Likewise.
29052 * posix/regex_internal.h (internal_function): Remove definition.
29053 (re_string_realloc_buffers, build_wcs_buffer)
29054 (build_wcs_upper_buffer, build_upper_buffer)
29055 (re_string_translate_buffer, re_string_context_at)
29056 (re_string_char_size_at, re_string_wchar_at)
29057 (re_string_elem_size_at): Likewise.
29058 * posix/regexec.c (match_ctx_init, match_ctx_clean)
29059 (match_ctx_free, match_ctx_add_entry, search_cur_bkref_entry)
29060 (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init)
29061 (re_search_internal, re_search_2_stub, re_search_stub)
29062 (re_copy_regs, prune_impossible_nodes, check_matching)
29063 (check_halt_state_context, update_regs, push_fail_stack, set_regs)
29064 (free_fail_stack_return, sift_states_iter_mb)
29065 (sift_states_backward, build_sifted_states)
29066 (update_cur_sifted_state, add_epsilon_src_nodes, check_dst_limits)
29067 (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos)
29068 (check_subexp_limits, sift_states_bkref, merge_state_array)
29069 (find_recover_state, transit_state, merge_state_with_log)
29070 (check_subexp_matching_top, transit_state_sb, transit_state_sb)
29071 (transit_state_mb, transit_state_bkref, get_subexp)
29072 (get_subexp_sub, find_subexp_node, check_arrival)
29073 (check_arrival_add_next_nodes, check_arrival_expand_ecl)
29074 (check_arrival_expand_ecl_sub, expand_bkref_cache, build_trtable)
29075 (check_node_accept_bytes, find_collation_sequence_value)
29076 (group_nodes_into_DFAstates, check_node_accept, extend_buffers)
29077 (acquire_init_state_context, check_halt_node_context)
29078 (proceed_next_node, pop_fail_stack, clean_state_log_if_needed)
29079 (sub_epsilon_src_nodes): Likewise.
29080 * posix/spawn_int.h (__spawn_valid_fd): Likewise.
29081 * posix/spawn_valid_fd (__spawn_valid_fd): Likewise.
29082 * posix/wordexp.c (parse_dollars, parse_backtick, parse_dquote)
29083 (eval_expr, w_addmem, w_addstr, w_addword, parse_backslash)
29084 (parse_qtd_backslash, parse_tilde, do_parse_glob, parse_glob)
29085 (parse_squote, eval_expr_val, eval_expr_multdiv, parse_arith)
29086 (exec_comm_child, exec_comm, parse_comm, parse_param): Likewise.
29087 * sysdeps/posix/ttyname.c (getttyname): Likewise.
29088 * sysdeps/posix/ttyname_r.c (getttyname_r): Likewise.
29089 * sysdeps/unix/sysv/linux/preadv.c (__atomic_preadv_replacement)
29090 (PREADV): Likewise.
29091 * sysdeps/unix/sysv/linux/preadv64.c (__atomic_preadv64_replacement)
29092 (PREADV): Likewise.
29093 * sysdeps/unix/sysv/linux/pwritev.c (__atomic_pwritev_replacement)
29094 (PWRITEV): Likewise.
29095 * sysdeps/unix/sysv/linux/pwritev64.c (__atomic_pwritev64_replacement)
29096 (PWRITEV): Likewise.
29097 * sysdeps/unix/sysv/linux/ttyname.c (getttyname): Likewise.
29098 * sysdeps/unix/sysv/linux/ttyname_r.c (getttyname_r): Likewise.
29100 2017-08-31 Florian Weimer <fweimer@redhat.com>
29102 * nptl/allocatestack.c (change_stack_perm, __deallocate_stack)
29103 (setxid_mark_thread, setxid_unmark_thread, setxid_signal_thread):
29104 Remove internal_function.
29105 * nptl/cancellation.c (__pthread_disable_asynccancel): Likewise.
29106 * nptl/libc_pthread_init.c (__libc_pthread_init): Likewise.
29107 * nptl/pthreadP.h (__find_in_stack_list, __free_tcb)
29108 (__deallocate_stack, __libc_pthread_init)
29109 (__pthread_mutex_cond_lock, __pthread_mutex_cond_lock_adjust)
29110 (__pthread_mutex_unlock_usercnt, __pthread_disable_asynccancel)
29111 (__libc_disable_asynccancel, __librt_disable_asynccancel):
29113 * nptl/pthread_create.c (__find_in_stack_list, __free_tcb): Likewise.
29114 * nptl/pthread_mutex_cond_lock.c (__pthread_mutex_lock): Likewise.
29115 * nptl/pthread_mutex_lock.c (__pthread_mutex_cond_lock_adjust):
29117 * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full)
29118 (__pthread_mutex_unlock_usercnt): Likewise.
29120 2017-08-31 Florian Weimer <fweimer@redhat.com>
29122 * io/fts.c (fts_alloc, fts_build, fts_lfree, fts_load)
29123 (fts_maxarglen, fts_padjust, fts_palloc, fts_sort, fts_stat)
29124 (fts_safe_changedir): Remove internal_function.
29125 * io/ftw.c (internal_function): Remove definition.
29126 (ftw_dir, process_entry, ftw_startup): Remove internal_function.
29128 2017-08-31 Florian Weimer <fweimer@redhat.com>
29130 * inet/deadline.c (__deadline_current_time)
29131 (__deadline_from_timeval, __deadline_to_ms): Remove
29133 * inet/getnameinfo.c (nrl_domainname): Likewise.
29134 * inet/getnetgrent_r.c (__internal_setnetgrent_reuse): Likewise.
29135 * inet/inet6_option.c (add_pad): Likewise.
29136 * inet/net-internal.h (__deadline_current_time)
29137 (__deadline_from_timeval, __deadline_to_ms): Likewise.
29138 * inet/rcmd.c (__checkhost_sa, __icheckuser): Likewise.
29139 * sysdeps/mach/hurd/if_index.c (__protocol_available): Likewise.
29140 * sysdeps/unix/sysv/linux/ifaddrs.c (map_newlink): Likewise.
29142 2017-08-31 Joseph Myers <joseph@codesourcery.com>
29144 * math/math.h [__USE_ISOC99] (NAN): Define directly here. Do not
29145 include <bits/nan.h>.
29146 * math/Makefile (headers): Remove bits/nan.h.
29147 * bits/nan.h: Remove.
29148 * sysdeps/ieee754/bits/nan.h: Likewise.
29149 * sysdeps/mips/bits/nan.h: Likewise.
29151 * math/math.h [__USE_ISOC99] (INFINITY): Define directly here. Do
29152 not include <bits/inf.h>.
29153 * math/Makefile (headers): Remove bits/inf.h.
29154 * bits/inf.h: Remove.
29155 * sysdeps/ieee754/bits/inf.h: Likewise.
29157 * math/math.h: Do not include bits/huge_val.h, bits/huge_valf.h,
29158 bits/huge_vall.h or bits/huge_val_flt128.h.
29159 (HUGE_VAL): Define directly here.
29160 [__USE_ISOC99] (HUGE_VALF): Likewise.
29161 [__USE_ISOC99] (HUGE_VALL): Likewise.
29162 [__HAVE_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
29163 (HUGE_VAL_F128): Likewise.
29164 * math/Makefile (headers): Remove bits/huge_val.h,
29165 bits/huge_valf.h, bits/huge_vall.h and bits/huge_val_flt128.h.
29166 * bits/huge_val.h: Remove.
29167 * bits/huge_val_flt128.h: Likewise.
29168 * bits/huge_valf.h: Likewise.
29169 * bits/huge_vall.h: Likewise.
29170 * sysdeps/ia64/bits/huge_vall.h: Likewise.
29171 * sysdeps/ieee754/bits/huge_val.h: Likewise.
29172 * sysdeps/ieee754/bits/huge_valf.h: Likewise.
29173 * sysdeps/m68k/m680x0/bits/huge_vall.h: Likewise.
29174 * sysdeps/sh/bits/huge_val.h: Likewise.
29175 * sysdeps/sparc/bits/huge_vall.h: Likewise.
29176 * sysdeps/x86/bits/huge_vall.h: Likewise.
29178 2017-08-31 Florian Weimer <fweimer@redhat.com>
29180 * elf/dl-addr-obj.c (_dl_addr_inside_object): Remove
29182 * elf/dl-cache.c (_dl_cache_libcmp, _dl_load_cache_lookup):
29184 * elf/dl-debug.c (_dl_debug_initialize): Likewise.
29185 * elf/dl-deps.c (_dl_build_local_scope, _dl_map_object_deps): Likewise.
29186 * elf/dl-environ.c (_dl_next_ld_env_entry): Likewise.
29187 * elf/dl-execstack.c (_dl_make_stack_executable): Likewise.
29188 * elf/dl-fini.c (_dl_sort_fini): Likewise.
29189 * elf/dl-hwcaps.c (_dl_important_hwcaps): Likewise.
29190 * elf/dl-libc.c (dlerror_run): Likewise.
29191 * elf/dl-load.c (add_name_to_object, decompose_rpath)
29192 (_dl_init_paths, _dl_map_object, _dl_rtld_di_serinfo): Likewise.
29193 * elf/dl-lookup.c (add_dependency, _dl_debug_bindings)
29194 (_dl_lookup_symbol_x, _dl_setup_hash, _dl_debug_bindings):
29196 * elf/dl-misc.c (_dl_sysdep_read_whole_file, _dl_name_match_p)
29197 (_dl_higher_prime_number, _dl_strtoul): Likewise.
29198 * elf/dl-object.c (_dl_add_to_namespace_list, _dl_new_object): Likewise.
29199 * elf/dl-profile.c (_dl_start_profile): Likewise.
29200 * elf/dl-reloc.c (_dl_try_allocate_static_tls)
29201 (_dl_allocate_static_tls, _dl_protect_relro, _dl_reloc_bad_type):
29203 * elf/dl-support.c (_dl_aux_init, _dl_non_dynamic_init): Likewise.
29204 * elf/dl-sym.c (_dl_tls_symaddr, do_sym): Likewise.
29205 * elf/dl-sysdep.c (_dl_sysdep_start_cleanup, _dl_show_auxv): Likewise.
29206 * elf/dl-tls.c (_dl_next_tls_modid, _dl_count_modids)
29207 (_dl_determine_tlsoffset, allocate_dtv, _dl_get_tls_static_info)
29208 (_dl_allocate_tls_storage): Likewise.
29209 * elf/dl-version.c (match_symbol, _dl_check_map_versions)
29210 (_dl_check_all_versions): Likewise.
29211 * elf/dynamic-link.h (_dl_try_allocate_static_tls): Likewise.
29212 * elf/tlsdeschtab.h (_dl_make_tlsdesc_dynamic): Likewise.
29213 * elf/tst-_dl_addr_inside_object.c (_dl_addr_inside_object): Likewise.
29214 * sysdeps/aarch64/dl-tlsdesc.h (_dl_make_tlsdesc_dynamic): Likewise.
29215 * sysdeps/aarch64/tlsdesc.c (_dl_unmap): Likewise.
29216 * sysdeps/arm/dl-lookupcfg.h (_dl_unmap): Likewise.
29217 * sysdeps/arm/dl-machine.h (elf_machine_load_address): Remove
29218 internal_function from __dl_start.
29219 * sysdeps/arm/dl-tlsdesc.h (_dl_unmap): Remove internal_function.
29220 * sysdeps/generic/dl-cache.h (_dl_cache_libcmp): Likewise.
29221 * sysdeps/generic/ldsodefs.h (_dl_name_match_p)
29222 (_dl_higher_prime_number, _dl_strtoul, _dl_map_object)
29223 (_dl_map_object_deps, _dl_setup_hash, _dl_rtld_di_serinfo)
29224 (_dl_lookup_symbol_x, _dl_add_to_namespace_list, _dl_new_object)
29225 (_dl_protect_relro, _dl_reloc_bad_type, _dl_check_all_versions)
29226 (_dl_check_map_versions, _dl_sort_fini, _dl_debug_initialize)
29227 (_dl_init_paths, _dl_start_profile, _dl_show_auxv)
29228 (_dl_next_ld_env_entry, _dl_important_hwcaps)
29229 (_dl_load_cache_lookup, _dl_sysdep_read_whole_file)
29230 (_dl_sysdep_start_cleanup, _dl_next_tls_modid, _dl_count_modids)
29231 (_dl_determine_tlsoffset, _dl_get_tls_static_info)
29232 (_dl_allocate_static_tls, _dl_allocate_tls_storage)
29233 (_dl_addr_inside_object, _dl_non_dynamic_init, _dl_aux_init):
29235 (struct rtld_global_ro): Remove internal_function from the
29236 _dl_lookup_symbol_x member.
29237 (_dl_symbol_value): Remove. No longer defined anywhere.
29238 * sysdeps/i386/dl-lookupcfg.h (_dl_unmap): Remove
29240 * sysdeps/i386/dl-tlsdesc.h (_dl_make_tlsdesc_dynamic): Likewise.
29241 * sysdeps/i386/tlsdesc.c (_dl_unmap): Likewise.
29242 * sysdeps/mach/hurd/dl-sysdep.c (_dl_show_auxv): Likewise.
29243 * sysdeps/nios2/dl-init.c (_dl_nios2_get_gp_value): Likewise.
29244 * sysdeps/tile/dl-lookupcfg.h (_dl_unmap): Likewise.
29245 * sysdeps/tile/dl-machine.h (_dl_after_load): Likewise.
29246 * sysdeps/tile/dl-runtime.c (_dl_after_load, _dl_unmap): Likewise.
29247 * sysdeps/unix/sysv/linux/dl-vdso.c (_dl_vdso_vsym): Likewise.
29248 * sysdeps/unix/sysv/linux/dl-vdso.h (_dl_vdso_vsym): Likewise.
29249 * sysdeps/x86_64/dl-lookupcfg.h (_dl_unmap): Likewise.
29250 * sysdeps/x86_64/dl-tlsdesc.h (_dl_make_tlsdesc_dynamic): Likewise.
29251 * sysdeps/x86_64/tlsdesc.c (_dl_unmap): Likewise.
29253 2017-08-31 Florian Weimer <fweimer@redhat.com>
29255 * gmon/gmon.c (write_hist, write_call_graph, write_bb_counts):
29256 Remove internal_function.
29257 * sysdeps/arm/machine-gmon.h (mcount_internal, _MCOUNT_DECL):
29259 * sysdeps/sparc/machine-gmon.h (mcount_internal, _MCOUNT_DECL):
29262 2017-08-31 Florian Weimer <fweimer@redhat.com>
29264 * dlfcn/dlerror.c (_dlerror_run): Remove internal_function.
29265 * elf/dl-sym.c (_dl_vsym, _dl_sym): Likewise.
29266 * include/dlfcn.h (_dl_sym, _dl_vsym, _dlerror_run): Likewise.
29268 2017-08-31 Florian Weimer <fweimer@redhat.com>
29270 * resolv/gai_misc.c (__gai_find_request, __gai_remove_request)
29271 (__gai_enqueue_request): Remove internal_function.
29272 * resolv/gai_misc.h (__gai_enqueue_request, __gai_find_request)
29273 (__gai_remove_request, __gai_notify, __gai_notify_only)
29274 (__gai_sigqueue): Likewise.
29275 * resolv/gai_notify.c (__gai_notify_only, __gai_notify): Likewise.
29276 * resolv/gai_sigqueue.c (__gai_sigqueue): Likewise.
29277 * resolv/inet_ntop.c (inet_ntop4, inet_ntop6): Likewise.
29278 * sysdeps/unix/sysv/linux/gai_sigqueue.c (__gai_sigqueue):
29281 2017-08-31 Florian Weimer <fweimer@redhat.com>
29283 * dirent/scandir-tail.c (SCANDIR_TAIL): Remove internal_function.
29284 * include/dirent.h (__opendirat, __getdents, __getdents64)
29285 (__alloc_dir, __scandir_tail, __scandir64_tail): Likewise.
29286 * sysdeps/posix/opendir.c (__opendirat, __alloc_dir): Likewise.
29287 * sysdeps/mach/hurd/opendir.c (__opendirat): Likewise.
29288 * sysdeps/unix/sysv/linux/i386/olddirent.h (__old_getdents64):
29290 * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): Likewise.
29292 2017-08-31 Florian Weimer <fweimer@redhat.com>
29294 * sysdeps/unix/sysv/linux/getcwd.c (generic_getcwd): Remove
29296 (GETCWD_RETURN_TYPE): Likewise.
29298 2017-08-31 Florian Weimer <fweimer@redhat.com>
29300 * include/time.h (__tz_compute, __strptime_internal): Remove
29302 * time/strptime_l.c (__strptime_internal): Likewise.
29303 * time/tzset.c (compute_change, update_vars, __tz_compute): Likewise.
29305 2017-08-31 Florian Weimer <fweimer@redhat.com>
29307 * iconv/gconv.c (__gconv): Remove internal_function.
29308 * iconv/gconv_builtin.c (__gconv_get_builtin_trans): Likewise.
29309 * iconv/gconv_cache.c (__gconv_load_cache, find_module_idx)
29310 (find_module, __gconv_compare_alias_cache, __gconv_lookup_cache)
29311 (__gconv_release_cache): Likewise.
29312 * iconv/gconv_close.c (__gconv_close): Likewise.
29313 * iconv/gconv_conf.c (detect_conflict, insert_module, add_module)
29314 (read_conf_file, __gconv_get_path): Likewise.
29315 * iconv/gconv_db.c (derivation_lookup, add_derivation)
29316 (__gconv_release_step, gen_steps, increment_counter)
29317 (find_derivation, __gconv_compare_alias, __gconv_find_transform)
29318 (__gconv_close_transform, free_modules_db): Likewise.
29319 * iconv/gconv_dl.c (__gconv_find_shlib, __gconv_release_shlib):
29321 * iconv/gconv_int.h (__gconv_open, __gconv_close, __gconv)
29322 (__gconv_find_transform, __gconv_lookup_cache)
29323 (__gconv_release_step, __gconv_load_cache, __gconv_get_path)
29324 (__gconv_close_transform, __gconv_release_cache)
29325 (__gconv_loaded_object, __gconv_release_shlib)
29326 (__gconv_compare_alias): Likewise.
29327 * iconv/gconv_open.c (__gconv_open): Likewise.
29328 * iconv/iconv_prog.c (print_known_names, add_known_names): Likewise.
29329 * iconv/iconvconfig.c (add_module): Likewise.
29330 * intl/dcigettext.c (plural_lookup, guess_category_value)
29331 (category_to_name, get_output_charset, _nl_find_msg): Likewise.
29332 * intl/eval-plural.h (plural_eval): Likewise.
29333 * intl/finddomain.c (_nl_find_domain): Likewise.
29334 * intl/gettextP.h (_nl_unload_domain, _nl_find_domain)
29335 (_nl_load_domain, _nl_find_msg): Likewise.
29336 (internal_function): Remove definition.
29337 * intl/loadinfo.h (internal_function): Likewise.
29338 * intl/loadmsgcat.c (_nl_load_domain, _nl_unload_domain): Remove
29340 * intl/localealias.c (internal_function): Remove definition.
29341 (read_alias_file): Remove internal_function.
29342 * intl/plural-exp.c (EXTRACT_PLURAL_EXPRESSION): Likewise.
29343 * intl/plural-exp.h (internal_function): Remove definition.
29344 (FREE_EXPRESSION, EXTRACT_PLURAL_EXPRESSION): Remove
29346 * intl/plural.c: Regenerate.
29347 * intl/plural.y (FREE_EXPRESSION): Remove internal_function.
29348 * locale/coll-lookup.c (__collidx_table_lookup)
29349 (__collseq_table_lookup): Likewise.
29350 * locale/coll-lookup.h (__collidx_table_lookup)
29351 (__collseq_table_lookup): Likewise.
29352 * locale/findlocale.c (_nl_find_locale, _nl_remove_locale): Likewise.
29353 * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
29354 * locale/loadlocale.c (_nl_intern_locale_data, _nl_load_locale)
29355 (_nl_unload_locale): Likewise.
29356 * locale/localeinfo.h (struct __locale_data): Remove
29357 internal_function from cleanup member.
29358 (_nl_find_locale, _nl_load_locale, _nl_unload_locale)
29359 (_nl_remove_locale, _nl_load_locale_from_archive)
29360 (_nl_intern_locale_data, _nl_get_era_entry, _nl_select_era_entry)
29361 (_nl_get_alt_digit, _nl_get_walt_digit, _nl_parse_alt_digit)
29362 (_nl_cleanup_time): Remove internal_function.
29363 * time/alt_digit.c (_nl_get_alt_digit, _nl_get_walt_digit)
29364 (_nl_parse_alt_digit): Likewise.
29365 * time/era.c (_nl_init_era_entries, _nl_get_era_entry)
29366 (_nl_select_era_entry): Likewise.
29367 * time/lc-time-cleanup.c (_nl_cleanup_time): Likewise.
29368 * wcsmbs/wcsmbsload.c (__wcsmbs_load_conv, __wcsmbs_clone_conv)
29369 (__wcsmbs_named_conv, _nl_cleanup_ctype): Likewise.
29370 * wcsmbs/wcsmbsload.h (__wcsmbs_load_conv, __wcsmbs_clone_conv)
29371 (__wcsmbs_named_conv, _nl_cleanup_ctype): Likewise.
29373 2017-08-31 Florian Weimer <fweimer@redhat.com>
29375 * rt/aio_sigqueue.c (__aio_sigqueue): Remove internal_function.
29376 * sysdeps/generic/aio_misc.h (__aio_sigqueue): Likewise.
29377 * sysdeps/pthread/aio_misc.c (__aio_free_request, __aio_find_req)
29378 (__aio_find_req_fd, __aio_remove_request, __aio_enqueue_request):
29380 * sysdeps/pthread/aio_misc.h (__aio_enqueue_request)
29381 (__aio_find_req, __aio_find_req_fd, __aio_free_request)
29382 (__aio_notify, __aio_notify_only, __aio_sigqueue): Likewise.
29383 * sysdeps/pthread/aio_notify.c (__aio_notify_only, __aio_notify):
29385 * sysdeps/unix/sysv/linux/aio_sigqueue.c (__aio_sigqueue): Likewise.
29387 2017-08-31 Florian Weimer <fweimer@redhat.com>
29389 * misc/getttyent.c (skip, value): Remove internal_function.
29390 * misc/syslog.c (openlog_internal): Likewise.
29391 * misc/tsearch.c (trecurse, tdestroy_recurse): Likewise.
29393 2017-08-31 Florian Weimer <fweimer@redhat.com>
29395 * include/nss.h (__nss_valid_field, __nss_valid_list_field)
29396 (__nss_rewrite_field): Remove internal_function.
29397 * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
29398 * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
29399 * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
29400 * nss/nsswitch.c (nss_parse_file, nss_getline)
29401 (nss_parse_service_list, nss_new_service): Likewise.
29402 * nss/rewrite_field.c (__nss_rewrite_field): Likewise.
29403 * nss/valid_field.c (__nss_valid_field): Likewise.
29404 * nss/valid_list_field.c (__nss_valid_list_field): Likewise.
29406 2017-08-31 Florian Weimer <fweimer@redhat.com>
29408 * malloc/arena.c (__malloc_fork_lock_parent)
29409 (__malloc_fork_unlock_parent, __malloc_fork_unlock_child)
29410 (next_env_entry, new_heap, heap_trim, arena_get2): Remove
29411 internal_function from defintions.
29412 * malloc/hooks.c (mem2mem_check, mem2chunk_check): Likewise.
29413 * malloc/malloc-internal.h (__malloc_fork_lock_parent)
29414 (__malloc_fork_unlock_parent, __malloc_fork_unlock_child): Remove
29415 internal_function from declarations.
29416 * malloc/malloc.c (internal_function): Do not define.
29417 (mem2mem_check): Remove internal_function from declaration.
29418 (munmap_chunk, mremap_chunk): Remove internal_function.
29419 * malloc/mtrace.c (tr_where): Likewise.
29421 2017-08-31 Florian Weimer <fweimer@redhat.com>
29423 * include/rpc/pmap_clnt.h (__get_socket): Remove
29425 * sunrpc/auth_des.c (synchronize): Likewise.
29426 * sunrpc/auth_unix.c (marshal_new_auth): Likewise.
29427 * sunrpc/clnt_perr.c (auth_errmsg): Likewise.
29428 * sunrpc/des_impl.c (des_encrypt, des_set_key): Likewise.
29429 * sunrpc/key_call.c (key_call_keyenvoy, key_call_socket)
29430 (key_call): Likewise.
29431 * sunrpc/pm_getport.c (__get_socket): Likewise.
29432 * sunrpc/pmap_rmt.c (getbroadcastnets): Likewise.
29433 * sunrpc/svc_unix.c (makefd_xprt): Likewise.
29434 * sunrpc/svc_tcp.c (makefd_xprt): Likewise.
29435 * sunrpc/svcauth_des.c (cache_init, cache_spot, cache_ref)
29436 (invalidate): Likewise.
29437 * sunrpc/xcrypt.c (hexval, hex2bin, bin2hex): Likewise.
29438 * sunrpc/xdr_rec.c (fix_buf_size, skip_input_bytes, flush_out)
29439 (set_input_fragment, get_input_bytes): Likewise.
29441 2017-08-31 Florian Weimer <fweimer@redhat.com>
29443 * malloc/malloc.c (_int_free): Remove locked variable and related
29446 2017-08-31 H.J. Lu <hongjiu.lu@intel.com>
29449 * Makerules (build-module-helper-objlist): Filter out
29450 $(elf-objpfx)sofini.os.
29451 (build-shlib-objlist): Append $(elf-objpfx)sofini.os if it is
29454 2017-08-31 Florian Weimer <fweimer@redhat.com>
29456 * libio/fcloseall.c: Assume weak_alias is defined.
29457 * libio/feof.c: Likewise.
29458 * libio/fileno.c: Likewise.
29459 * libio/fileops.c: Assume _LIBC, errno, __set_errno are defined.
29460 (_POSIX_SOURCE, open, lseek, read, write): Remove macro
29462 (_IO_file_open): Call __open directly.
29463 (_IO_new_file_sync): Assume ESPIPE is defined.
29464 (_IO_file_seekoff_maybe_mmap): Call __read directly.
29465 (_IO_new_file_write): Call __write directly.
29466 * libio/ftello.c (__ftello): Assume EIO, EOVERFLOW are defined.
29467 * libio/ftello64.c (__ftello64): Assume EIO is defined.
29468 * libio/genops.c: Assume _LIBC is defined.
29469 (save_for_backup): Remove internal_function.
29470 * libio/getc.c: Assume weak_alias is defined.
29471 * libio/getwc.c: Likewise.
29472 * libio/iofclose.c: Assume _LIBC is defined.
29473 * libio/iofdopen.c: Likewise.
29474 (_IO_fcntl): Remove macro definition.
29475 (_IO_new_fdopen): Assume F_GETFL, F_SETFL, O_ACCMODE are defined.
29476 Call __fcntl directly.
29477 * libio/iofflush.c: Assume weak_alias is defined.
29478 * libio/iofgetpos.c (_IO_new_fgetpos): Assume EIO, EOVERFLOW are
29480 * libio/iofgetpos64.c (_IO_new_fgetpos64): Assume EIO is defined.
29481 * libio/iofgets.c: Likewise.
29482 * libio/iofopen.c: Assume _LIBC is defined.
29483 * libio/iofopen64.c: Assume _LIBC, weak_alias are defined.
29484 * libio/iofputs.c: Assume weak_alias is defined.
29485 * libio/iofread.c: Likewise.
29486 * libio/iofsetpos.c (_IO_new_fsetpos): Assume EIO is defined.
29487 * libio/iofsetpos64.c (_IO_new_fsetpos64): Likewise.
29488 * libio/ioftell.c: Assume weak_alias is defined.
29489 (_IO_ftell): Assume EIO, EOVERFLOW are defined.
29490 * libio/iofwide.c: Assume _LIBC is defined.
29491 (_IO_fwide): Drop SHARED conditional because it is implied by
29493 * libio/iofwrite.c: Assume weak_alias is defined.
29494 * libio/iogetdelim.c: Likewise.
29495 * libio/iogets.c: Assume _LIBC, weak_alias are defined.
29496 * libio/iogetwline.c (wmemcpy): Remove macro definition.
29497 (_IO_getwline): Call __wmemcpy directly.
29498 * libio/iopopen.c: Assume _LIBC is defined.
29499 (_POSIX_SOURCE, _IO_fork, _IO_dup2, _IO_waitpid, _IO_execl)
29500 (_IO_close): Remove macro definitions.
29501 (_IO_new_proc_open): Call __fork, __dup2, __close_nocancel, execl,
29503 (_IO_new_proc_close): Call __close_nocancel, __waitpid_nocancel
29505 * libio/ioputs.c: Assume weak_alias is defined.
29506 * libio/ioseekoff.c: Assume errno, __set_errno are defined.
29507 * libio/iosetbuffer.c: Assume weak_alias is defined.
29508 * libio/iosetvbuf.c: Likewise.
29509 * libio/ioungetc.c: Likewise.
29510 * libio/libioP.h: Assume _LIBC, __GLIBC__, libc_hidden_proto,
29511 libc_hidden_def, libc_hidden_weak, NULL are defined.
29512 (mmap, munmap, ftruncate, OS_FSTAT): Remove macro definitions.
29513 * libio/oldfilepos.c: Assume _LIBC, errno, __set_errno are
29515 (_POSIX_SOURCE, open, lseek, read, write): Remove macro
29517 (_IO_old_file_init_internal): Drop SHARED conditional because it
29518 is implied by SHLIB_COMPAT.
29519 (_IO_old_file_fopen): Call __open directly.
29520 (_IO_old_file_sync): Assume ESPIPE is defined.
29521 (_IO_old_file_write): Call __write directly.
29522 * libio/oldfdopen.c (_IO_fcntl): Remove macro definition.
29523 (_IO_old_fdopen): Assume F_GETFL, O_ACCMODE, F_SETFL are defined.
29524 Call __fcntl directly.
29525 * libio/oldiofgetpos.c: Assume weak_alias is defined.
29526 (_IO_old_fgetpos): Assume EIO is defined.
29527 * libio/oldiofgetpos64.c: Assume weak_alias is defined.
29528 (_IO_old_fgetpos64): Assume EIO is defined.
29529 * libio/oldiofsetpos.c: Assume weak_alias is defined.
29530 (_IO_old_fsetpos): Assume EIO is defined.
29531 * libio/oldiofsetpos64.c: Assume weak_alias is defined.
29532 (_IO_old_fsetpos64): Assume EIO is defined.
29533 * libio/oldiopopen.c: Assume _LIBC is defined.
29534 (_POSIX_SOURCE, _IO_fork, _IO_dup2, _IO_waitpid, _IO_execl)
29535 (_IO_close): Remove macro definitions.
29536 (_IO_old_proc_open): Call __pipe, __close, __dup2, execl, _exit
29538 (_IO_old_proc_close): Call __close, __waitpid directly.
29539 * libio/put.c: Assume weak_alias is defined.
29540 * libio/stdfiles.c: Assume _LIBC is defined.
29541 * libio/stdio.c: Likewise.
29542 * libio/wfileops.c: Likewise.
29543 (_IO_wfile_sync): Assume ESPIPE is defined.
29544 * libio/wgenops.c: Assume _LIBC is defined.
29545 (save_for_wbackup): Remove internal_function.
29547 2017-08-31 Florian Weimer <fweimer@redhat.com>
29549 * malloc/malloc.c (top_check): Change return type to void. Remove
29551 * malloc/hooks.c (top_check): Likewise.
29552 (malloc_check, realloc_check, memalign_check): Adjust.
29554 2017-08-30 Joseph Myers <joseph@codesourcery.com>
29557 * sysdeps/arm/sys/ucontext.h: Do not include <bits/sigcontext.h>.
29558 * sysdeps/generic/sys/ucontext.h: Add comment about use of struct
29559 sigcontext and namespace requirements.
29560 * sysdeps/i386/sys/ucontext.h: Do not include <bits/sigcontext.h>.
29561 * sysdeps/m68k/sys/ucontext.h: Likewise.
29562 * sysdeps/mips/sys/ucontext.h: Likewise. Include <bits/types.h>.
29563 * sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h: Do not include
29564 <bits/sigcontext.h>.
29565 (__ctx): Define earlier.
29566 (mcontext_t): Define structure contents rather than using struct
29568 * sysdeps/unix/sysv/linux/aarch64/ucontext_i.sym (oEXTENSION): Use
29569 __glibc_reserved1 instead of __reserved.
29570 * sysdeps/unix/sysv/linux/alpha/sys/ucontext.h: Do not include
29571 <bits/sigcontext.h>.
29572 (__ctx): Define earlier.
29573 (mcontext_t): Define structure contents rather than using struct
29575 * sysdeps/unix/sysv/linux/alpha/ucontext-offsets.sym: Use
29576 mcontext_t instead of struct sigcontext.
29577 * sysdeps/unix/sysv/linux/arm/sys/ucontext.h: Do not include
29578 <bits/sigcontext.h>.
29579 (__ctx): Define earlier.
29580 (mcontext_t): Define structure contents rather than using struct
29582 * sysdeps/unix/sysv/linux/hppa/sys/ucontext.h: Do not include
29583 <bits/sigcontext.h>.
29584 (__ctx): Define earlier.
29585 (mcontext_t): Define structure contents rather than using struct
29587 * sysdeps/unix/sysv/linux/ia64/makecontext.c (__makecontext): Use
29588 mcontext_t instead of struct sigcontext.
29589 * sysdeps/unix/sysv/linux/ia64/sigcontext-offsets.sym: Use
29590 mcontext_t instead of struct sigcontext.
29591 * sysdeps/unix/sysv/linux/ia64/sys/ucontext.h: Do not include
29592 <bits/sigcontext.h>.
29593 (__ctx): New macro.
29594 (struct __ia64_fpreg_mcontext): New type.
29595 (mcontext_t): Define structure contents rather than using struct
29597 (_SC_GR0_OFFSET): Use mcontext_t instead of struct sigcontext.
29598 (uc_sigmask): Define using __ctx.
29599 (uc_stack): Likewise.
29600 * sysdeps/unix/sysv/linux/ia64/sys/procfs.h: Include
29601 <bits/sigcontext.h>.
29602 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
29603 * sysdeps/unix/sysv/linux/m68k/sys/ucontext.h: Do not include
29604 <bits/sigcontext.h>.
29605 * sysdeps/unix/sysv/linux/microblaze/sys/ucontext.h: New file.
29606 * sysdeps/unix/sysv/linux/mips/sys/ucontext.h: Do not include
29607 <bits/sigcontext.h>.
29608 * sysdeps/unix/sysv/linux/nios2/sys/ucontext.h: Do not include
29609 <bits/sigcontext.h>.
29610 * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Do not include
29611 <bits/sigcontext.h>.
29612 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Do not include
29613 <bits/sigcontext.h>.
29614 * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: Do not include
29615 <bits/sigcontext.h>.
29616 * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h: Do not include
29617 <bits/sigcontext.h>.
29618 * sysdeps/unix/sysv/linux/tile/sys/ucontext.h: Do not include
29619 <bits/sigcontext.h>.
29620 (__ctx): Define earlier.
29621 (mcontext_t): Define structure contents rather than using struct
29623 * sysdeps/unix/sysv/linux/x86/sys/ucontext.h: Do not include
29624 <bits/sigcontext.h>. Include <bits/types.h>.
29625 * conform/Makefile (test-xfail-XPG42/signal.h/conform): Remove.
29626 (test-xfail-XPG42/sys/wait.h/conform): Likewise.
29627 (test-xfail-XPG42/ucontext.h/conform): Likewise.
29628 (test-xfail-UNIX98/signal.h/conform): Likewise.
29629 (test-xfail-UNIX98/sys/wait.h/conform): Likewise.
29630 (test-xfail-UNIX98/ucontext.h/conform): Likewise.
29631 (test-xfail-XOPEN2K/signal.h/conform): Likewise.
29632 (test-xfail-XOPEN2K/sys/wait.h/conform): Likewise.
29633 (test-xfail-XOPEN2K/ucontext.h/conform): Likewise.
29634 (test-xfail-POSIX2008/signal.h/conform): Likewise.
29635 (test-xfail-POSIX2008/sys/wait.h/conform): Likewise.
29636 (test-xfail-XOPEN2K8/signal.h/conform): Likewise.
29637 (test-xfail-XOPEN2K8/sys/wait.h/conform): Likewise.
29639 2017-08-30 Florian Weimer <fweimer@redhat.com>
29641 * malloc/dynarray_emplace_enlarge.c
29642 (__libc_dynarray_emplace_enlarge): Set errno on overflow.
29643 * malloc/dynarray_resize.c (__libc_dynarray_resize): Likewise.
29644 * malloc/tst-dynarray.c (test_long_overflow): New function.
29645 (do_test): Call it.
29647 2017-08-30 Florian Weimer <fweimer@redhat.com>
29649 * malloc/malloc.c (ARENA_CORRUPTION_BIT, arena_is_corrupt)
29650 (set_arena_corrupt): Remove definitions.
29651 (mtrim): Do not check for corrupt arena.
29652 * malloc/arena.c (arena_lock, reused_arena, arena_get_retry):
29655 2017-08-30 Florian Weimer <fweimer@redhat.com>
29658 * malloc/arena.c (TUNABLE_CALLBACK set_mallopt_check): Do not set
29660 (ptmalloc_init): Do not set or use check_action.
29661 * malloc/hooks.c (malloc_check_get_size, realloc_check): Adjust
29662 call to malloc_printerr. Remove return statement.
29663 (free_check): Likewise. Remove arena unlock.
29664 (top_check): Update comment. Adjust call to malloc_printerr.
29665 Remove heap repair code.
29666 * malloc/malloc.c (unlink): Adjust calls to malloc_printerr.
29667 (DEFAULT_CHECK_ACTION, check_action): Remove definitions.
29668 (sysmalloc): Adjust call to malloc_printerr.
29669 (munmap_chunk, __libc_realloc): Likewise. Remove return
29671 (_int_malloc, int_realloc): Likewise. Remove errstr variable.
29672 Remove errout label and corresponding gotos.
29673 (_int_free): Likewise. Remove arena unlock.
29674 (do_set_mallopt_check): Do not set check_action.
29675 (malloc_printerr): Adjust parameter list. Do not mark arena as
29677 * manual/memory.texi (Malloc Tunable Parameters): Remove TODO
29679 * manual/probes.texi (Memory Allocation Probes): Remove
29680 memory_mallopt_check_action.
29682 2017-08-30 Steve Ellcey <sellcey@cavium.com>
29684 * sysdeps/unix/sysv/linux/aarch64/makecontext.c (__makecontext):
29685 Use pointer to uint64_t instead of long int for sp.
29687 2017-08-30 Florian Weimer <fweimer@redhat.com>
29690 * malloc/malloc.c (malloc_printerr): Always terminate the process,
29691 without printing a backtrace. Do not leak any information in the
29693 * manual/memory.texi (Heap Consistency Checking): Update.
29694 * manual/tunables.texi (Memory Allocation Tunables): Likewise.
29696 2017-08-30 Florian Weimer <fweimer@redhat.com>
29698 Do not scale NPTL tests with available number of CPUs.
29699 * nptl/tst-cond16.c (count): Set to constant value of 8.
29700 * nptl/tst-cond18.c (count): Likewise.
29702 2017-08-29 Joseph Myers <joseph@codesourcery.com>
29705 * sysdeps/m68k/m680x0/fpu/bits/mathinline.h (__inline_functions):
29706 Define to take a second argument that is a macro that
29707 concatentates a suffix, not the suffix itself.
29708 (__CONCAT_d): New macro.
29709 (__CONCAT_f): Likewise.
29710 (__CONCAT_l): Likewise.
29712 2017-08-29 Paul Pluzhnikov <ppluzhnikov@google.com>
29714 * stdlib/tst-atexit-common.c (do_test): Test handler inheritance
29717 2017-08-29 Adhemerval Zanella <adhemerval.zanella@linaro.org>
29718 Aurelien Jarno <aurelien@aurel32.net>
29719 Maciej W. Rozycki <macro@imgtec.com>
29722 * sysdeps/unix/sysv/linux/mips/mips32/mips16/Makefile
29723 [subdir = misc] (sysdep_routines): Remove `mips16-syscall5',
29724 `mips16-syscall6' and `mips16-syscall7'.
29725 (CFLAGS-mips16-syscall5.c, CFLAGS-mips16-syscall6.c)
29726 (CFLAGS-mips16-syscall7.c): Remove.
29727 * sysdeps/unix/sysv/linux/mips/mips32/mips16/Versions (libc):
29728 Remove `__mips16_syscall5', `__mips16_syscall6' and
29729 `__mips16_syscall7'.
29730 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall0.c
29731 (__mips16_syscall0): Rename `__mips16_syscall_return' to
29732 `__mips_syscall_return'.
29733 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall1.c
29734 (__mips16_syscall1): Likewise.
29735 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall2.c
29736 (__mips16_syscall2): Likewise.
29737 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall3.c
29738 (__mips16_syscall3): Likewise.
29739 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall4.c
29740 (__mips16_syscall4): Likewise.
29741 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall5.c:
29743 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall6.c:
29745 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall7.c:
29747 * sysdeps/unix/sysv/linux/mips/mips32/mips16/mips16-syscall.h
29748 (__mips16_syscall5): Expand to `__mips_syscall5' rather than
29749 `__mips16_syscall5'. Remove prototype.
29750 (__mips16_syscall6): Expand to `__mips_syscall6' rather than
29751 `__mips16_syscall6'. Remove prototype.
29752 (__mips16_syscall7): Expand to `__mips_syscall7' rather than
29753 `__mips16_syscall7'. Remove prototype.
29754 (__nomips16, __mips16_syscall_return): Move to...
29755 * sysdeps/unix/sysv/linux/mips/mips32/sysdep.h
29756 (__nomips16, __mips_syscall_return): ... here.
29757 [__mips16] (INTERNAL_SYSCALL_NCS): Rename
29758 `__mips16_syscall_return' to `__mips_syscall_return'.
29759 [__mips16] (INTERNAL_SYSCALL_MIPS16): Pass `number' to
29760 `internal_syscall##nr'.
29761 [!__mips16] (INTERNAL_SYSCALL): Pass `SYS_ify (name)' to
29762 `internal_syscall##nr'.
29763 (FORCE_FRAME_POINTER): Remove.
29764 (__mips_syscall5): New prototype.
29765 (internal_syscall5): Rewrite to call `__mips_syscall5'.
29766 (__mips_syscall6): New prototype.
29767 (internal_syscall6): Rewrite to call `__mips_syscall6'.
29768 (__mips_syscall7): New prototype.
29769 (internal_syscall7): Rewrite to call `__mips_syscall7'.
29770 * sysdeps/unix/sysv/linux/mips/mips32/mips-syscall5.S: New file.
29771 * sysdeps/unix/sysv/linux/mips/mips32/mips-syscall6.S: New file.
29772 * sysdeps/unix/sysv/linux/mips/mips32/mips-syscall7.S: New file.
29773 * sysdeps/unix/sysv/linux/mips/mips32/Makefile [subdir = misc]
29774 (sysdep_routines): Add libc-do-syscall.
29775 * sysdeps/unix/sysv/linux/mips/mips32/Versions (libc): Add
29776 `__mips_syscall5', `__mips_syscall6' and `__mips_syscall7'.
29778 2017-08-29 Adhemerval Zanella <adhemerval.zanella@linaro.org>
29781 * nptl/allocatestack.c [_STACK_GROWS_DOWN] (setup_stack_prot):
29782 Set to use !NEED_SEPARATE_REGISTER_STACK as well.
29783 (advise_stack_range): New function.
29784 * nptl/pthread_create.c (START_THREAD_DEFN): Move logic to mark
29785 stack non required to advise_stack_range at allocatestack.c
29787 2017-08-29 Szabolcs Nagy <szabolcs.nagy@arm.com>
29789 * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h: Use __uint64_t.
29791 2017-08-29 Florian Weimer <fweimer@redhat.com>
29794 * iconv/gconv_db.c (gen_steps): Decrement step_cnt after resetting
29795 __end_fct. Mangle __end_fct after setting it to NULL.
29796 * iconv/Makefile (tests): Add tst-gconv-init-failure.
29797 (modules-names, modules-names-tests): Add
29798 tst-gconv-init-failure-mod.
29799 (gconv-modules): New target.
29800 (tst-gconv-init-failure-mod.so): Link against libsupport.
29801 (tst-gconv-init-failure): Depend on gconv-modules,
29802 tst-gconv-init-failure-mod.so.
29803 * iconv/tst-gconv-init-failure-mod.c: New file.
29804 * iconv/tst-gconv-init-failure.c: Likewise.
29805 * iconv/test-gconv-modules: Likewise.
29807 2017-08-29 Florian Weimer <fweimer@redhat.com>
29810 * iconv/gconv_db.c (free_derivation): Remove redundant
29812 (gen_steps): Unconditionally mangle __btowc_fct after
29814 (increment_counter): Likewise. Do not call init_fct for internal
29817 2017-08-29 Joseph Myers <joseph@codesourcery.com>
29820 * math/math.h [__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0]
29821 (_MSUF_): Remove macro.
29822 [__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0] (_MSUFTO_):
29824 [__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0]
29825 (__REDIRFROM_X): New macro.
29826 [__FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0] (__REDIRTO_X):
29828 * math/bits/math-finite.h (__REDIRFROM_X): Remove macro.
29829 (__REDIRTO_X): Likewise.
29830 (__MATH_REDIRCALL): Do not pass _MSUF_ or _MSUFTO_ macro
29832 (__MATH_REDIRCALL_2): Likewise.
29833 (__MATH_REDIRCALL_INTERNAL): Likewise.
29834 (__REDIRFROM (lgamma, , _MSUF_)): Likewise.
29835 (__REDIRFROM (gamma, , _MSUF_)): Likweise.
29836 (__REDIRFROM (__gamma, _r_finite, _MSUF_)): Likewise.
29837 (__REDIRFROM (tgamma, , _MSUF_)): Likewise.
29838 * math/test-finite-macros.c: New file.
29839 * math/Makefile (tests): Add test-finite-macros.
29840 (CFLAGS-test-finite-macros.c): New variable.
29842 2017-08-29 Patsy Franklin <pfrankli@redhat.com>
29843 Jeff Law <law@redhat.com>
29846 Mangle NULL pointers in iconv/gconv.
29847 * iconv/gconv_cache.c (find_module): Demangle init_fct before
29848 checking for NULL. Mangle __btowc_fct if init_fct is non-NULL.
29849 * iconv/gconv_db.c (free_derivation): Check that __shlib_handle
29850 is non-NULL before demangling the end_fct. Check for NULL
29851 end_fct after demangling.
29852 (__gconv_release_step): Demangle the end_fct before checking
29853 it for NULL. Remove assert on __shlibc_handle != NULL.
29854 (gen_steps): Don't check btowc_fct for NULL before mangling.
29855 Demangle init_fct before checking for NULL.
29856 (increment_counter): Likewise.
29857 * gconv_dl.c (__gconv_find_shlib): Don't check init_fct or
29858 end_fct for NULL before mangling.
29859 * wcsmbs/btowc.c (__btowc): Demangle btowc_fct before checking
29862 2017-08-29 Akhilesh Kumar <akhilesh.k@samsung.com>
29865 * locale/iso-639.def: add Morisyen.
29867 2017-08-28 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
29870 * math/math.h [defined __cplusplus && defined __SUPPORT_SNAN__]
29871 (iszero): New C++ implementation that does not use
29872 fpclassify/__MATH_TG/__builtin_types_compatible_p, when
29873 signaling nans are enabled, since __builtin_types_compatible_p
29874 is a C-only feature.
29875 * math/test-math-iszero.cc: When __HAVE_DISTINCT_FLOAT128 is
29876 defined, include ieee754_float128.h for access to the union and
29877 member ieee854_float128.ieee.
29878 [__HAVE_DISTINCT_FLOAT128] (do_test): Call check_float128.
29879 [__HAVE_DISTINCT_FLOAT128] (check_float128): New function.
29880 * sysdeps/powerpc/powerpc64le/Makefile [subdir == math]
29881 (CXXFLAGS-test-math-iszero.cc): Add -mfloat128 to the build
29882 options of test-math-zero on powerpc64le.
29884 2017-08-28 H.J. Lu <hongjiu.lu@intel.com>
29886 * sysdeps/x86_64/fpu/multiarch/e_expf.c (__redirect_ieee754_expf):
29887 Change double to float.
29889 2017-08-28 Joseph Myers <joseph@codesourcery.com>
29891 * math/math-svid-compat.h [!__ASSEMBLER__]: Make code
29893 * sysdeps/ieee754/s_lib_version.c [!defined SHARED]: Remove
29894 conditional code; define contents only for [LIBM_SVID_COMPAT].
29896 2017-08-28 Florian Weimer <fweimer@redhat.com>
29898 * sysdeps/unix/sysv/linux/aarch64/Makefile (abi-lp64-options)
29899 (abi-lp64_be-options): Remove.
29900 * sysdeps/unix/sysv/linux/arm/Makefile (abi-soft-options)
29901 (abi-hard-options): Likewise.
29902 * sysdeps/unix/sysv/linux/mips/Makefile(abi-o32_soft-options)
29903 (abi-o32_hard-options, abi-o32_soft_2008-options)
29904 (abi-o32_hard_2008-options, abi-n32_soft-options)
29905 (abi-n32_hard-options, abi-n32_soft_2008-options)
29906 (abi-n32_hard_2008-options, abi-n64_soft-options)
29907 (abi-n64_hard-options, abi-n64_soft_2008-options)
29908 (abi-n64_hard_2008-options): Likewise.
29909 * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-32-options)
29910 (abi-64-v1-options, abi-64-v2-options): Likewise.
29911 * sysdeps/unix/sysv/linux/s390/Makefile (abi-32-options)
29912 (abi-64-options): Likewise.
29913 * sysdeps/unix/sysv/linux/sparc/Makefile (abi-32-options)
29914 (abi-64-options): Likewise.
29915 * sysdeps/unix/sysv/linux/tile/tilegx/Makefile (abi-32-options)
29916 (abi-64-options): Likewise.
29917 * sysdeps/unix/sysv/linux/x86/Makefile (abi-32-options)
29918 (abi-64-options, abi-x32-options): Likewise.
29920 2017-08-28 Florian Weimer <fweimer@redhat.com>
29922 Store supported list of SYS_* system calls in the source tree.
29923 * sysdeps/unix/sysv/linux/Makefile [$(subdir) = misc]
29924 (bits/syscall.h): Generate from list file.
29925 [$(subdir) = misc] (before-compile): Add bits/syscall.h.
29926 [$(subdir) = misc] (tests): Add tst-syscall-list.
29927 [$(subdir) = misc] (tests-special): Add tst-syscall-list.out
29928 [$(subdir) = misc] (tst-syscall-list-macros.list)
29929 [$(subdir) = misc] (tst-syscall-list-nr.list)
29930 (tst-syscall-list-sys.list): Helper targets for new
29931 tst-syscall-list test.
29932 [$(subdir) = misc] (tst-syscall-list.out): Run test script
29933 tst-syscall-list.sh.
29934 [$(subdir) = misc] (bits/syscall%h, bits/syscall%d): Remove
29935 target. Do not include bits/syscall.d.
29936 [$(subdir) = misc] (generated): Do not update.
29937 * sysdeps/unix/sysv/linux/syscall-names.list: New file.
29938 * sysdeps/unix/sysv/linux/gen-syscall-h.awk: Likewise.
29939 * sysdeps/unix/sysv/linux/filter-nr-syscalls.awk: Likewise.
29940 * sysdeps/unix/sysv/linux/tst-syscall-list.sh: Likewise.
29942 2017-08-27 Paul Pluzhnikov <ppluzhnikov@google.com>
29944 * stdlib/Makefile (tst-atexit, tst-at_quick_exit): New tests.
29945 (tst-cxa_atexit, tst-on_exit): Likewise.
29946 * stdlib/Makefile (tests): Add tst-atexit, tst-at_quick_exit,
29947 tst-cxa_atexit, and tst-on_exit.
29948 * stdlib/tst-atexit-common.c: New file.
29949 * stdlib/tst-atexit.c: New file.
29950 * stdlib/tst-at_quick_exit.c: New file.
29951 * stdlib/tst-cxa_atexit.c: New file.
29952 * stdlib/tst-on_exit.c: New file.
29954 2017-08-27 Samuel Thibault <samuel.thibault@ens-lyon.org>
29956 * sysdeps/mach/hurd/bits/sysmacros.h: New file.
29957 * mach/stack_chk_fail_local.c: New file.
29958 * hurd/stack_chk_fail_local.c: New file.
29959 * mach/Machrules ($(interface-library)-routines): Add
29960 stack_chk_fail_local.
29961 * mach/Makefile (CFLAGS-mach_init.o, CFLAGS-RPC_vm_statistics.o,
29962 CFLAGS-RPC_vm_map.o, CFLAGS-RPC_vm_protect.o,
29963 CFLAGS-RPC_i386_set_gdt.o, CFLAGS-RPC_i386_set_ldt.o,
29964 CFLAGS-RPC_task_get_special_port.o): Add $(no-stack-protector).
29965 * hurd/Makefile (CFLAGS-hurdstartup.o,
29966 CFLAGS-RPC_exec_startup_get_info.o): Add $(no-stack-protector).
29968 2017-08-25 H.J. Lu <hongjiu.lu@intel.com>
29970 * sysdeps/x86/cpu-features.h [__ASSEMBLER__]
29971 (index_cpu_*, index_arch_*): Removed.
29973 2017-08-25 Szabolcs Nagy <szabolcs.nagy@arm.com>
29975 * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h (elf_greg_t):
29976 Use uint64_t instead of unsigned long.
29978 2017-08-25 Joseph Myers <joseph@codesourcery.com>
29980 * math/tgmath.h [__HAVE_FLOAT128]: Change conditional to
29981 [__HAVE_DISTINCT_FLOAT128].
29983 * math/math.h (_MSUFTO_): Define and undefine for each inclusion
29984 of <bits/math-finite.h>.
29985 (__MATH_DECLARING_LDOUBLE): Do not define and undefine for each
29986 inclusion of <bits/math-finite.h>.
29987 * math/bits/math-finite.h (__REDIRTO_X): Do not define
29988 conditionally on [__MATH_DECLARING_LDOUBLE && defined
29989 __NO_LONG_DOUBLE_MATH].
29990 (__MATH_REDIRCALL): Use _MSUFTO_ in __REDIRTO call.
29991 (__MATH_REDIRCALL_2): Likewise.
29992 (__MATH_REDIRCALL_INTERNAL): Likewise.
29993 (__REDIRFROM (lgamma, , _MSUF_)): Likewise.
29994 (__REDIRFROM (gamma, , _MSUF_)): Likewise.
29995 (__REDIRFROM (tgamma, , _MSUF_)): Likewise.
29997 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt_compat-power5.S:
29999 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt_compat-ppc32.S:
30001 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt_compat.c:
30003 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf_compat-power5.S:
30005 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf_compat-ppc32.S:
30007 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf_compat.c:
30009 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt_compat.S: Likewise.
30010 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf_compat.S: Likewise.
30011 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt_compat.S: Likewise.
30012 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf_compat.S: Likewise.
30013 * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile
30014 (libm-sysdep-routines): Remove w_sqrt_compat-power5,
30015 w_sqrt_compat-ppc32, w_sqrtf_compat-power5 and
30016 w_sqrtf_compat-ppc32.
30018 2017-08-24 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
30020 * math/math.h [defined __cplusplus] (issignaling): In the long
30021 double case, call __issignalingl only if __NO_LONG_DOUBLE_MATH
30022 is not defined. Call __issignaling, otherwise.
30024 2017-08-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30026 * sysdeps/unix/make-syscalls.sh: Remove cancellable tagging for
30027 syscall definitions and replace __builtin_expect with __glibc_likely.
30028 * sysdeps/unix/syscall-template.S: Update comment about cancellable
30030 (SYSCALL_CANCELLABLE): Removedefinition
30031 * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h (PSEUDO): Remove
30033 (PSEUDO_END): Likewise.
30034 [IS_IN (libpthread)] (CENABLE): Likewise.
30035 [IS_IN (libpthread)] (CDISABLE): Likewise.
30036 [IS_IN (libc)] (CENABLE): Likewise.
30037 [IS_IN (libc)] (CENABLE): Likewise.
30038 [IS_IN (librt)] (CDISABLE): Likewise.
30039 [IS_IN (librt)] (CDISABLE): Likewise.
30040 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30041 * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h (PSEUDO): Remove
30043 (PSEUDO_END): Likewise.
30044 [IS_IN (libpthread)] (__local_enable_asynccancel): Likewise.
30045 [IS_IN (libpthread)] (__local_disable_asynccancel): Likewise.
30046 [IS_IN (libc)] (__local_enable_asynccancel): Likewise.
30047 [IS_IN (libc)] (__local_enable_asynccancel): Likewise.
30048 [IS_IN (librt)] (__local_disable_asynccancel): Likewise.
30049 [IS_IN (librt)] (__local_disable_asynccancel): Likewise.
30050 (CENABLE): Likewise.
30051 (CDISABLE): Likewise.
30052 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30053 * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h (PSEUDO): Remove
30055 (PSEUDO_END): Likewise.
30056 [IS_IN (libpthread)] (CENABLE): Likewise.
30057 [IS_IN (libpthread)] (CDISABLE): Likewise.
30058 [IS_IN (libc)] (CENABLE): Likewise.
30059 [IS_IN (libc)] (CENABLE): Likewise.
30060 [IS_IN (librt)] (CDISABLE): Likewise.
30061 [IS_IN (librt)] (CDISABLE): Likewise.
30062 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30063 * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h (PSEUDO): Remove
30065 (PSEUDO_END): Likewise.
30066 [IS_IN (libpthread)] (CENABLE): Likewise.
30067 [IS_IN (libpthread)] (CDISABLE): Likewise.
30068 [IS_IN (libc)] (CENABLE): Likewise.
30069 [IS_IN (libc)] (CENABLE): Likewise.
30070 [IS_IN (librt)] (CDISABLE): Likewise.
30071 [IS_IN (librt)] (CDISABLE): Likewise.
30072 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30073 * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h (PSEUDO): Remove
30075 (PSEUDO_END): Likewise.
30076 [IS_IN (libpthread)] (CENABLE): Likewise.
30077 [IS_IN (libpthread)] (CDISABLE): Likewise.
30078 [IS_IN (libc)] (CENABLE): Likewise.
30079 [IS_IN (libc)] (CENABLE): Likewise.
30080 [IS_IN (librt)] (CDISABLE): Likewise.
30081 [IS_IN (librt)] (CDISABLE): Likewise.
30082 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30083 * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (PSEUDO): Remove
30085 (PSEUDO_END): Likewise.
30086 [IS_IN (libpthread)] (CENABLE): Likewise.
30087 [IS_IN (libpthread)] (CDISABLE): Likewise.
30088 [IS_IN (libc)] (CENABLE): Likewise.
30089 [IS_IN (libc)] (CENABLE): Likewise.
30090 [IS_IN (librt)] (CDISABLE): Likewise.
30091 [IS_IN (librt)] (CDISABLE): Likewise.
30092 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30093 * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h (PSEUDO): Remove
30095 (PSEUDO_END): Likewise.
30096 [IS_IN (libpthread)] (CENABLE): Likewise.
30097 [IS_IN (libpthread)] (CDISABLE): Likewise.
30098 [IS_IN (libc)] (CENABLE): Likewise.
30099 [IS_IN (libc)] (CENABLE): Likewise.
30100 [IS_IN (librt)] (CDISABLE): Likewise.
30101 [IS_IN (librt)] (CDISABLE): Likewise.
30102 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30103 * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h (PSEUDO): Remove
30105 (PSEUDO_END): Likewise.
30106 [IS_IN (libpthread)] (CENABLE): Likewise.
30107 [IS_IN (libpthread)] (CDISABLE): Likewise.
30108 [IS_IN (libc)] (CENABLE): Likewise.
30109 [IS_IN (libc)] (CENABLE): Likewise.
30110 [IS_IN (librt)] (CDISABLE): Likewise.
30111 [IS_IN (librt)] (CDISABLE): Likewise.
30112 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30113 * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h (PSEUDO):
30115 (PSEUDO_END): Likewise.
30116 [IS_IN (libpthread)] (CENABLE): Likewise.
30117 [IS_IN (libpthread)] (CDISABLE): Likewise.
30118 [IS_IN (libc)] (CENABLE): Likewise.
30119 [IS_IN (libc)] (CENABLE): Likewise.
30120 [IS_IN (librt)] (CDISABLE): Likewise.
30121 [IS_IN (librt)] (CDISABLE): Likewise.
30122 (SINGLE_THREAD_P): Likewise.
30123 * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h (PSEUDO): Remove
30125 (PSEUDO_END): Likewise.
30126 [IS_IN (libpthread)] (CENABLE): Likewise.
30127 [IS_IN (libpthread)] (CDISABLE): Likewise.
30128 [IS_IN (libc)] (CENABLE): Likewise.
30129 [IS_IN (libc)] (CENABLE): Likewise.
30130 [IS_IN (librt)] (CDISABLE): Likewise.
30131 [IS_IN (librt)] (CDISABLE): Likewise.
30132 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30133 * sysdeps/unix/sysv/linux/nios2/sysdep-cancel.h (PSEUDO): Remove
30135 (PSEUDO_END): Likewise.
30136 [IS_IN (libpthread)] (CENABLE): Likewise.
30137 [IS_IN (libpthread)] (CDISABLE): Likewise.
30138 [IS_IN (libc)] (CENABLE): Likewise.
30139 [IS_IN (libc)] (CENABLE): Likewise.
30140 [IS_IN (librt)] (CDISABLE): Likewise.
30141 [IS_IN (librt)] (CDISABLE): Likewise.
30142 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30143 * sysdeps/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Remove file.
30144 * sysdeps/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
30145 * sysdeps/unix/sysv/linux/powerpc/sysdep-cancel.h: New file.
30146 * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h (PSEUDO): Remove
30148 (PSEUDO_END): Likewise.
30149 [IS_IN (libpthread)] (CENABLE): Likewise.
30150 [IS_IN (libpthread)] (CDISABLE): Likewise.
30151 [IS_IN (libc)] (CENABLE): Likewise.
30152 [IS_IN (libc)] (CENABLE): Likewise.
30153 [IS_IN (librt)] (CDISABLE): Likewise.
30154 [IS_IN (librt)] (CDISABLE): Likewise.
30155 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30156 * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h (PSEUDO): Remove
30158 (PSEUDO_END): Likewise.
30159 [IS_IN (libpthread)] (CENABLE): Likewise.
30160 [IS_IN (libpthread)] (CDISABLE): Likewise.
30161 [IS_IN (libc)] (CENABLE): Likewise.
30162 [IS_IN (libc)] (CENABLE): Likewise.
30163 [IS_IN (librt)] (CDISABLE): Likewise.
30164 [IS_IN (librt)] (CDISABLE): Likewise.
30165 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30166 * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h (PSEUDO): Remove
30168 (PSEUDO_END): Likewise.
30169 [IS_IN (libpthread)] (CENABLE): Likewise.
30170 [IS_IN (libpthread)] (CDISABLE): Likewise.
30171 [IS_IN (libc)] (CENABLE): Likewise.
30172 [IS_IN (libc)] (CENABLE): Likewise.
30173 [IS_IN (librt)] (CDISABLE): Likewise.
30174 [IS_IN (librt)] (CDISABLE): Likewise.
30175 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30176 * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Remove file.
30177 * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
30178 * sysdeps/unix/sysv/linux/sparc/sysdep-cancel.h: New file.
30179 * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h (PSEUDO): Remove
30181 (PSEUDO_END): Likewise.
30182 [IS_IN (libpthread)] (CENABLE): Likewise.
30183 [IS_IN (libpthread)] (CDISABLE): Likewise.
30184 [IS_IN (libc)] (CENABLE): Likewise.
30185 [IS_IN (libc)] (CENABLE): Likewise.
30186 [IS_IN (librt)] (CDISABLE): Likewise.
30187 [IS_IN (librt)] (CDISABLE): Likewise.
30188 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30189 * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h (PSEUDO): Remove
30191 (PSEUDO_END): Likewise.
30192 [IS_IN (libpthread)] (CENABLE): Likewise.
30193 [IS_IN (libpthread)] (CDISABLE): Likewise.
30194 [IS_IN (libc)] (CENABLE): Likewise.
30195 [IS_IN (libc)] (CENABLE): Likewise.
30196 [IS_IN (librt)] (CDISABLE): Likewise.
30197 [IS_IN (librt)] (CDISABLE): Likewise.
30198 [__ASSEMBLER__] (SINGLE_THREAD_P): Likewise.
30200 2017-08-24 Szabolcs Nagy <szabolcs.nagy@arm.com>
30202 * sysdeps/ieee754/dbl-64/Makefile: Don't override CFLAGS.
30204 2017-08-23 H.J. Lu <hongjiu.lu@intel.com>
30206 * sysdeps/x86_64/fpu/libm-test-ulps: Regenerated.
30208 2017-08-23 H.J. Lu <hongjiu.lu@intel.com>
30211 * string/stratcliff.c (do_test): Declare size, nchars, inner,
30212 middle and outer with size_t instead of int. Repleace %d and
30213 %Zd with %zu in printf. Update "MAX (0, nchars - 128)" and
30214 "MAX (outer, nchars - 64)" to support unsigned outer and
30215 nchars. Also exit loop when outer == 0.
30217 2017-08-23 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30219 * include/fcntl.h (__fcntl_nocancel): Remove definition.
30220 * include/signal.h (__sigsuspend_nocancel): Likewise.
30221 * include/time.h (__nanosleep_nocancel): Likewise.
30222 * sysdeps/generic/not-cancel.h (__fcntl_nocancel): New macro.
30223 * login/utmp_file.c: Include non cancellable syscall header.
30224 * sysdeps/unix/sysv/linux/not-cancel.h (__fcntl_nocancel): New
30227 2017-08-23 H.J. Lu <hongjiu.lu@intel.com>
30229 * sysdeps/x86_64/fpu/svml_d_sincos8_core.S: Replace AVX512F
30230 .byte sequences with AVX512F instructions.
30231 * sysdeps/x86_64/fpu/svml_d_wrapper_impl.h: Likewise.
30232 * sysdeps/x86_64/fpu/svml_s_sincosf16_core.S: Likewise.
30233 * sysdeps/x86_64/fpu/svml_s_wrapper_impl.h: Likewise.
30234 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos8_core_avx512.S:
30236 * sysdeps/x86_64/fpu/multiarch/svml_s_sincosf16_core_avx512.S:
30239 2017-08-22 Szabolcs Nagy <szabolcs.nagy@arm.com>
30240 Steve Ellcey <sellcey@cavium.com>
30242 * sysdeps/aarch64/dl-tlsdesc.S (_dl_tlsdesc_dynamic):
30243 Use PTR_REG macro in cmp instruction.
30245 2017-08-22 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
30247 * include/libc-symbols.h: [!defined HAVE_GCC_IFUNC] (__ifunc):
30248 Change the return type of the ifunc resolver to match the return
30249 type of the target function.
30251 2017-08-22 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30253 * sysdeps/unix/sysv/linux/x86_64/syscalls.list (pread64): Remove.
30254 (preadv64): Likewise.
30255 (pwrite64(: Likewise.
30256 (pwritev64): Likewise.
30258 * sysdeps/unix/sysv/linux/x86_64/sysdep.h
30259 (INTERNAL_SYSCALL_NCS_TYPES): Remove define.
30260 (LOAD_ARGS_0): Likewise.
30261 (LOAD_ARGS_1): Likewise.
30262 (LOAD_ARGS_2): Likewise.
30263 (LOAD_ARGS_3): Likewise.
30264 (LOAD_ARGS_4): Likewise.
30265 (LOAD_ARGS_5): Likewise.
30266 (LOAD_ARGS_6): Likewise.
30267 (LOAD_REGS_0): Likewise.
30268 (LOAD_REGS_1): Likewise.
30269 (LOAD_REGS_2): Likewise.
30270 (LOAD_REGS_3): Likewise.
30271 (LOAD_REGS_4): Likewise.
30272 (LOAD_REGS_5): Likewise.
30273 (LOAD_REGS_6): Likewise.
30274 (ASM_ARGS_0): Likewise.
30275 (ASM_ARGS_1): Likewise.
30276 (ASM_ARGS_2): Likewise.
30277 (ASM_ARGS_3): Likewise.
30278 (ASM_ARGS_4): Likewise.
30279 (ASM_ARGS_5): Likewise.
30280 (ASM_ARGS_6): Likewise.
30281 (LOAD_ARGS_TYPES_1): Likewise.
30282 (LOAD_ARGS_TYPES_2): Likewise.
30283 (LOAD_ARGS_TYPES_3): Likewise.
30284 (LOAD_ARGS_TYPES_4): Likewise.
30285 (LOAD_ARGS_TYPES_5): Likewise.
30286 (LOAD_ARGS_TYPES_6): Likewise.
30287 (LOAD_REGS_TYPES_1): Likewise.
30288 (LOAD_REGS_TYPES_2): Likewise.
30289 (LOAD_REGS_TYPES_3): Likewise.
30290 (LOAD_REGS_TYPES_4): Likewise.
30291 (LOAD_REGS_TYPES_5): Likewise.
30292 (LOAD_REGS_TYPES_6): Likewise.
30293 (TYPEFY): New define.
30294 (ARGIFY): Likewise.
30295 (internal_syscall0): Likewise.
30296 (internal_syscall1): Likewise.
30297 (internal_syscall2): Likewise.
30298 (internal_syscall3): Likewise.
30299 (internal_syscall4): Likewise.
30300 (internal_syscall5): Likewise.
30301 (internal_syscall6): Likewise.
30302 * sysdeps/unix/sysv/linux/x86_64/x32/times.c
30303 (INTERNAL_SYSCALL_NCS): Remove define.
30304 (internal_syscall1): Add define.
30306 2017-08-22 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
30308 * math/w_remainder_compat.c: Remove duplicate inclusion of
30309 math-svid-compat.h.
30310 * math/w_remainderf_compat.c: Likewise.
30311 * math/w_remainderl_compat.c: Likewise.
30313 2017-08-22 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
30315 * sysdeps/powerpc/fpu/libm-test-ulps: Update.
30317 2017-08-22 Joseph Myers <joseph@codesourcery.com>
30320 * math/tgmath.h (__floating_type): Simplify definitions.
30321 (__real_integer_type): New macro.
30322 (__complex_integer_type): Likewise.
30323 (__expr_is_real): Likewise.
30324 (__tgmath_real_type_sub): Update comment to describe handling of
30326 (__tgmath_complex_type_sub): New macro.
30327 (__tgmath_complex_type): Likewise.
30328 [__HAVE_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
30329 (__TGMATH_CF128): Use __expr_is_real.
30330 (__TGMATH_UNARY_REAL_IMAG): Use __tgmath_complex_type and
30332 (__TGMATH_BINARY_REAL_IMAG): Likewise.
30333 (__TGMATH_UNARY_REAL_IMAG_RET_REAL): Use __expr_is_real.
30334 * math/gen-tgmath-tests.py (Type.create_type): Create complex
30337 2017-08-22 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30339 * sysdeps/generic/not-cancel.h (sigsuspend_not_cancel): Remove
30341 * sysdeps/mach/hurd/sigsuspend.c (sigsuspend_not_cancel): Remove
30343 * sysdeps/unix/sysv/linux/not-cancel.h (sigsuspend_not_cancel):
30346 * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock): Replace
30347 nanosleep_not_cancel with __nanosleep_nocancel.
30348 * sysdeps/generic/not-cancel.h (nanosleep_not_cancel): Remove macro.
30349 (__nanosleep_nocancel): New macro.
30350 * sysdeps/unix/sysv/linux/nanosleep.c (__nanosleep_nocancel): New
30352 * sysdeps/unix/sysv/linux/not-cancel.h (nanosleep_not_cancel): Remove
30354 (__nanosleep_nocancel): New prototype.
30356 * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full): Replace
30357 pause_not_cancel with __pause_nocancel.
30358 * sysdeps/generic/not-cancel.h (pause_not_cancel): Remove macro.
30359 (__pause_nocancel): New macro.
30360 * sysdeps/unix/sysv/linux/not-cancel.h (pause_not_cancel): Remove
30362 (__pause_nocancel): New prototype.
30363 * sysdeps/unix/sysv/linux/pause.c (__pause_nocancel): New function.
30365 2017-08-22 Martin Sebor <msebor@redhat.com>
30367 * include/libc-symbols.h (__ifunc_resolver): Declare resolver
30368 to return a pointer to the same type as the target function.
30370 2017-08-22 H.J. Lu <hongjiu.lu@intel.com>
30374 * include/printf.h (__printf_fphex): Add attribute_hidden.
30375 (__guess_grouping): New prototype.
30376 * stdio-common/printf_fp.c (__guess_grouping): Removed.
30377 * stdio-common/reg-printf.c (__register_printf_specifier): Add
30378 libc_hidden_proto and libc_hidden_def.
30379 * stdlib/strfmon_l.c (__guess_grouping): Removed.
30380 (__vstrfmon_l): Remove the third argument passed to
30383 2017-08-22 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
30385 * math/math.h [defined __cplusplus] (issignaling): Provide a C++
30386 definition for issignaling that does not rely on __MATH_TG,
30387 since __MATH_TG uses __builtin_types_compatible_p, which is only
30388 available in C mode.
30389 (CFLAGS-test-math-issignaling.cc): New variable.
30390 * math/Makefile [CXX] (tests): Add test-math-issignaling.
30391 * math/test-math-issignaling.cc: New test for C++ implementation
30392 of type-generic issignaling.
30393 * sysdeps/powerpc/powerpc64le/Makefile [subdir == math]
30394 (CXXFLAGS-test-math-issignaling.cc): Add -mfloat128 to the build
30395 options of test-math-issignaling on powerpc64le.
30397 2017-08-22 H.J. Lu <hongjiu.lu@intel.com>
30399 * include/libc-symbols.h (__hidden_proto_hiddenattr): New for
30401 (hidden_proto): Likewise.
30402 (hidden_tls_proto): Likewise.
30403 (__hidden_proto): Likewise.
30405 2017-08-22 Florian Weimer <fweimer@redhat.com>
30407 math: Statically link tests of internal functionality.
30408 * math/Makefile (tests): Remove atest-exp, atest-sincos,
30410 (tests-static): Add atest-exp, atest-sincos, atest-exp2.
30411 (gmp-objs): Remove assignment.
30412 (atest-exp, atest-sincos, atest-exp2): Remove targets.
30414 2017-08-22 Joseph Myers <joseph@codesourcery.com>
30417 * sysdeps/unix/sysv/linux/sparc/bits/long-double.h: Remove file
30419 * sysdeps/unix/sysv/linux/sparc/sparc32/bits/long-double.h:
30421 * sysdeps/unix/sysv/linux/sparc/sparc64/bits/long-double.h:
30424 * assert/Makefile [$(have-cxx-thread_local)]: Move conditional
30425 variable definitions above inclusion of ../Rules.
30427 2017-08-21 Joseph Myers <joseph@codesourcery.com>
30429 * sysdeps/ieee754/k_standard.c (__kernel_standard): Add default
30430 case calling __builtin_unreachable.
30432 2017-08-21 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30434 * libio/ioopen.c (_IO_waitpid): Replace waitpid_not_cancel with
30435 __waitpid_nocancel.
30436 * sysdeps/generic/not-cancel.h (waitpid_not_cancel): Remove macro.
30437 (__waitpid_nocancel): New macro.
30438 * sysdeps/unix/sysv/linux/not-cancel.h (waitpid_not_cancel): Remove
30440 (__waitpid_nocancel): Replace macro with a function.
30441 * sysdeps/unix/sysv/linux/waitpid.c (__waitpid_nocancel): New
30444 * login/utmp_file.c (timeout_handler): Replace fcntl_not_cancel with
30446 * sysdeps/generic/not-cancel.h (fcntl_not_cancel): Remove macro.
30447 * sysdeps/unix/sysv/linux/not-cancel.h (fcntl_not_cancel): Likewise.
30449 * gmon/gmon.c (write_hist): Replace writev_not_cancel_no_status with
30450 __writev_nocancel_nostatus.
30451 (write_call_graph): Likewise.
30452 (write_bb_counts): Likewise.
30453 * resolv/herror.c (herror): Likewise.
30454 * sysdeps/generic/not-cancel.h (writev_not_cancel_no_status): Remove
30456 (__writev_nocancel_nostatus): New macro.
30457 * sysdeps/unix/sysv/linux/not-cancel.h (writev_not_cancel_no_status):
30459 (__writev_nocancel_nostatus): New function.
30461 2017-08-21 Joseph Myers <joseph@codesourcery.com>
30464 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30466 * include/libc-symbols.h (__hidden_proto_hiddenattr): New for
30468 (hidden_proto): Likewise.
30469 (hidden_tls_proto): Likewise.
30470 (__hidden_proto): Likewise.
30473 * sysdeps/sparc/sparc32/fpu/w_sqrt_compat.S: Remove file.
30474 * sysdeps/sparc/sparc32/fpu/w_sqrtf_compat.S: Likewise.
30475 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt_compat-vis3.S:
30477 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt_compat.S:
30479 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf_compat-vis3.S:
30481 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf_compat.S:
30483 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt_compat.S : Likewise.
30484 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf_compat.S: Likewise.
30485 * sysdeps/sparc/sparc64/fpu/w_sqrt_compat.S: Likewise.
30486 * sysdeps/sparc/sparc64/fpu/w_sqrtf_compat.S: Likewise.
30487 * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: Add
30488 GLIBC_2.0 sqrtl symbol.
30490 * math/math.h [__USE_MISC] (_LIB_VERSION_TYPE): Remove.
30491 [__USE_MISC] (_LIB_VERSION): Likewise.
30492 [__USE_MISC] (struct exception): Likewise.
30493 [__USE_MISC] (matherr): Likewise.
30494 [__USE_MISC] (DOMAIN): Likewise.
30495 [__USE_MISC] (SING): Likewise.
30496 [__USE_MISC] (OVERFLOW): Likewise.
30497 [__USE_MISC] (UNDERFLOW): Likewise.
30498 [__USE_MISC] (TLOSS): Likewise.
30499 [__USE_MISC] (PLOSS): Likewise.
30500 [__USE_MISC] (HUGE): Likewise.
30501 [__USE_XOPEN] (MAXFLOAT): Define even if [__USE_MISC].
30502 * math/math-svid-compat.h: New file.
30503 * conform/linknamespace.pl (@whitelist): Remove matherr, matherrf
30505 * include/math.h [!_ISOMAC] (__matherr): Remove.
30506 * manual/arith.texi (FP Exceptions): Do not document matherr.
30507 * math/Makefile (tests): Change test-matherr to test-matherr-3.
30508 (tests-internal): New variable.
30509 (install-lib): Do not add libieee.a.
30510 (non-lib.a): Likewise.
30511 (extra-objs): Do not add libieee.a and ieee-math.o.
30512 (CPPFLAGS-s_lib_version.c): Remove variable.
30513 ($(objpfx)libieee.a): Remove rule.
30514 ($(addprefix $(objpfx), $(tests-internal)): Depend on $(libm).
30515 * math/ieee-math.c: Remove.
30516 * math/libm-test-support.c (matherr): Remove.
30517 * math/test-matherr.c: Use <support/test-driver.c>. Add copyright
30518 and license notices. Include <math-svid-compat.h> and
30520 (matherr): Undefine as macro. Use compat_symbol_reference.
30521 (_LIB_VERSION): Likewise.
30522 * math/test-matherr-2.c: New file.
30523 * math/test-matherr-3.c: Likewise.
30524 * sysdeps/generic/math_private.h (__kernel_standard): Remove
30526 (__kernel_standard_f): Likewise.
30527 (__kernel_standard_l): Likewise.
30528 * sysdeps/ieee754/s_lib_version.c: Do not include <math.h> or
30529 <math_private.h>. Include <math-svid-compat.h>.
30530 (_LIB_VERSION): Undefine as macro.
30531 (_LIB_VERSION_INTERNAL): Always initialize to _POSIX_. Define
30532 only if [LIBM_SVID_COMPAT || !defined SHARED]. If
30533 [LIBM_SVID_COMPAT], use compat_symbol.
30534 * sysdeps/ieee754/s_matherr.c: Do not include <math.h> or
30535 <math_private.h>. Include <math-svid-compat.h>.
30536 (matherr): Undefine as macro.
30537 (__matherr): Define only if [LIBM_SVID_COMPAT]. Use
30539 * sysdeps/ia64/fpu/libm_error.c: Include <math-svid-compat.h>.
30540 [_LIBC && LIBM_SVID_COMPAT] (matherrf): Use
30541 compat_symbol_reference.
30542 [_LIBC && LIBM_SVID_COMPAT] (matherrl): Likewise.
30543 [_LIBC && !LIBM_SVID_COMPAT] (matherrf): Define as macro.
30544 [_LIBC && !LIBM_SVID_COMPAT] (matherrl): Likewise.
30545 * sysdeps/ia64/fpu/libm_support.h: Include <math-svid-compat.h>.
30546 (MATHERR_D): Remove declaration.
30547 [!_LIBC] (_LIB_VERSION_TYPE): Likewise
30548 [!LIBM_BUILD] (_LIB_VERSIONIMF): Likewise.
30549 [LIBM_BUILD] (pmatherrf): Likewise.
30550 [LIBM_BUILD] (pmatherr): Likewise.
30551 [LIBM_BUILD] (pmatherrl): Likewise.
30552 (DOMAIN): Likewise.
30554 (OVERFLOW): Likewise.
30555 (UNDERFLOW): Likewise.
30558 * sysdeps/ia64/fpu/s_matherrf.c: Include <math-svid-compat.h>.
30559 (__matherrf): Define only if [LIBM_SVID_COMPAT]. Use
30561 * sysdeps/ia64/fpu/s_matherrl.c: Include <math-svid-compat.h>.
30562 (__matherrl): Define only if [LIBM_SVID_COMPAT]. Use
30564 * math/lgamma-compat.h: Include <math-svid-compat.h>.
30565 * math/w_acos_compat.c: Likewise.
30566 * math/w_acosf_compat.c: Likewise.
30567 * math/w_acosh_compat.c: Likewise.
30568 * math/w_acoshf_compat.c: Likewise.
30569 * math/w_acoshl_compat.c: Likewise.
30570 * math/w_acosl_compat.c: Likewise.
30571 * math/w_asin_compat.c: Likewise.
30572 * math/w_asinf_compat.c: Likewise.
30573 * math/w_asinl_compat.c: Likewise.
30574 * math/w_atan2_compat.c: Likewise.
30575 * math/w_atan2f_compat.c: Likewise.
30576 * math/w_atan2l_compat.c: Likewise.
30577 * math/w_atanh_compat.c: Likewise.
30578 * math/w_atanhf_compat.c: Likewise.
30579 * math/w_atanhl_compat.c: Likewise.
30580 * math/w_cosh_compat.c: Likewise.
30581 * math/w_coshf_compat.c: Likewise.
30582 * math/w_coshl_compat.c: Likewise.
30583 * math/w_exp10_compat.c: Likewise.
30584 * math/w_exp10f_compat.c: Likewise.
30585 * math/w_exp10l_compat.c: Likewise.
30586 * math/w_exp2_compat.c: Likewise.
30587 * math/w_exp2f_compat.c: Likewise.
30588 * math/w_exp2l_compat.c: Likewise.
30589 * math/w_fmod_compat.c: Likewise.
30590 * math/w_fmodf_compat.c: Likewise.
30591 * math/w_fmodl_compat.c: Likewise.
30592 * math/w_hypot_compat.c: Likewise.
30593 * math/w_hypotf_compat.c: Likewise.
30594 * math/w_hypotl_compat.c: Likewise.
30595 * math/w_j0_compat.c: Likewise.
30596 * math/w_j0f_compat.c: Likewise.
30597 * math/w_j0l_compat.c: Likewise.
30598 * math/w_j1_compat.c: Likewise.
30599 * math/w_j1f_compat.c: Likewise.
30600 * math/w_j1l_compat.c: Likewise.
30601 * math/w_jn_compat.c: Likewise.
30602 * math/w_jnf_compat.c: Likewise.
30603 * math/w_jnl_compat.c: Likewise.
30604 * math/w_lgamma_main.c: Likewise.
30605 * math/w_lgamma_r_compat.c: Likewise.
30606 * math/w_lgammaf_main.c: Likewise.
30607 * math/w_lgammaf_r_compat.c: Likewise.
30608 * math/w_lgammal_main.c: Likewise.
30609 * math/w_lgammal_r_compat.c: Likewise.
30610 * math/w_log10_compat.c: Likewise.
30611 * math/w_log10f_compat.c: Likewise.
30612 * math/w_log10l_compat.c: Likewise.
30613 * math/w_log2_compat.c: Likewise.
30614 * math/w_log2f_compat.c: Likewise.
30615 * math/w_log2l_compat.c: Likewise.
30616 * math/w_log_compat.c: Likewise.
30617 * math/w_logf_compat.c: Likewise.
30618 * math/w_logl_compat.c: Likewise.
30619 * math/w_pow_compat.c: Likewise.
30620 * math/w_powf_compat.c: Likewise.
30621 * math/w_powl_compat.c: Likewise.
30622 * math/w_remainder_compat.c: Likewise.
30623 * math/w_remainderf_compat.c: Likewise.
30624 * math/w_remainderl_compat.c: Likewise.
30625 * math/w_scalb_compat.c: Likewise.
30626 * math/w_scalbf_compat.c: Likewise.
30627 * math/w_scalbl_compat.c: Likewise.
30628 * math/w_sinh_compat.c: Likewise.
30629 * math/w_sinhf_compat.c: Likewise.
30630 * math/w_sinhl_compat.c: Likewise.
30631 * math/w_sqrt_compat.c: Likewise.
30632 * math/w_sqrtf_compat.c: Likewise.
30633 * math/w_sqrtl_compat.c: Likewise.
30634 * math/w_tgamma_compat.c: Likewise.
30635 * math/w_tgammaf_compat.c: Likewise.
30636 * math/w_tgammal_compat.c: Likewise.
30637 * sysdeps/ieee754/dbl-64/w_exp_compat.c: Likewise.
30638 * sysdeps/ieee754/flt-32/w_expf_compat.c: Likewise.
30639 * sysdeps/ieee754/k_standard.c: Likewise.
30640 * sysdeps/ieee754/k_standardf.c: Likewise.
30641 * sysdeps/ieee754/k_standardl.c: Likewise.
30642 * sysdeps/ieee754/ldbl-128/w_expl_compat.c: Likewise.
30643 * sysdeps/ieee754/ldbl-128ibm/w_expl_compat.c: Likewise.
30644 * sysdeps/ieee754/ldbl-96/w_expl_compat.c: Likewise.
30645 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt_compat.S: Likewise.
30646 * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf_compat.S: Likewise.
30647 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt_compat.S: Likewise.
30648 * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf_compat.S: Likewise.
30649 * sysdeps/sparc/sparc32/fpu/w_sqrt_compat.S: Likewise.
30650 * sysdeps/sparc/sparc32/fpu/w_sqrtf_compat.S: Likewise.
30651 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt_compat-vis3.S:
30653 * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf_compat-vis3.S:
30655 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt_compat.S: Likewise.
30656 * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf_compat.S: Likewise.
30657 * sysdeps/sparc/sparc64/fpu/w_sqrt_compat.S: Likewise.
30658 * sysdeps/sparc/sparc64/fpu/w_sqrtf_compat.S: Likewise.
30660 2017-08-21 Florian Weimer <fweimer@redhat.com>
30663 Do not compile benchmark helper objects with -DMODULE_NAME=libc.
30664 * benchtests/Makefile (others-extras): Set to $(bench-extra-objs).
30665 Move before inclusion of ../Rules.
30667 2017-08-21 Florian Weimer <fweimer@redhat.com>
30670 * assert/assert.h (assert): Use static_cast (bool) for C++.
30671 Use the ternary operator in the warning branch for GNU C.
30672 * assert/Makefile (tests): Add tst-assert-c++, tst-assert-g++.
30673 (CFLAGS-tst-assert-c++.o): Compile in C++11 mode.
30674 (CFLAGS-tst-assert-g++.o): Compile in GnU C++11 mode.
30675 (LDLIBS-tst-assert-c++, LDLIBS-tst-assert-g++): Link with libstdc++.
30676 * assert/tst-assert-c++.cc, assert/tst-assert-g++.cc: New files.
30678 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30681 * sysdeps/unix/sysv/linux/x86_64/init-first.c
30682 (__syscall_clock_gettime): Add attribute_hidden.
30683 * sysdeps/unix/sysv/linux/x86_64/makecontext.c
30684 (__start_context): Likewise.
30686 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30688 * include/libc-symbols.h (__hidden_proto_hiddenattr): New for
30690 (hidden_proto): Likewise.
30691 (hidden_tls_proto): Likewise.
30692 (__hidden_proto): Likewise.
30694 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30696 * include/libc-symbols.h (attribute_hidden): Enable hidden
30697 visibility in libc.a compiled with PIE.
30699 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30702 * sysdeps/unix/sysv/linux/x86/libc-vdso.h (VDSO_SYMBOL(getcpu)):
30703 Add attribute_hidden.
30705 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30708 * Makerules (all-nonlib): Add $(others-extras).
30709 * catgets/Makefile (others-extras): New.
30710 * elf/Makefile (others-extras): Likewise.
30711 * nss/Makefile (others-extras): Likewise.
30713 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30716 * csu/libc-start.c (__libc_multiple_libcs): Removed.
30717 * elf/dl-open.c: Include <libc-internal.h>.
30718 (__libc_multiple_libcs): Removed.
30719 * elf/dl-sysdep.c: Include <libc-internal.h> instead of
30721 * include/libc-internal.h (__libc_multiple_libcs): New.
30722 * misc/sbrk.c: Include <libc-internal.h>.
30723 (__libc_multiple_libcs): Removed.
30725 2017-08-21 H.J. Lu <hongjiu.lu@intel.com>
30728 * grp/initgroups.c (__nss_group_database): Removed.
30729 (__nss_initgroups_database): Likewise.
30730 * nscd/gai.c (__nss_hosts_database): Likewise.
30731 * nss/XXX-lookup.c (DATABASE_NAME_SYMBOL): Likewise.
30732 * posix/tst-rfc3484-2.c (__nss_hosts_database): Likewise.
30733 * posix/tst-rfc3484-3.c (__nss_hosts_database): Likewise.
30734 * posix/tst-rfc3484.c (__nss_hosts_database): Likewise.
30735 * sysdeps/posix/getaddrinfo.c (__nss_hosts_database): Likewise.
30736 * nss/getXXent.c (INTERNAL (REENTRANT_GETNAME)): Add
30738 * nss/nsswitch.c (__nss_database_custom): Define only if
30739 USE_NSCD is defined.
30740 (__nss_configure_lookup): Use __nss_database_custom only if
30741 USE_NSCD is defined.
30742 * nss/nsswitch.h (__nss_database_custom): Declare only if
30743 USE_NSCD is defined. Add attribute_hidden.
30744 (__nss_setent): Add attribute_hidden.
30745 (__nss_endent): Likewise.
30746 (__nss_getent_r): Likewise.
30747 (__nss_getent): Likewise.
30748 (DEFINE_DATABASE): Declare __nss_##arg##_database.
30750 2017-08-20 H.J. Lu <hongjiu.lu@intel.com>
30753 * sysdeps/unix/sysv/linux/i386/glob64.c (__old_glob64): Add
30754 libc_hidden_proto and libc_hidden_def.
30756 2017-08-20 H.J. Lu <hongjiu.lu@intel.com>
30759 * sysdeps/unix/sysv/linux/i386/olddirent.h (__old_readdir64):
30760 Add libc_hidden_proto.
30761 * sysdeps/unix/sysv/linux/i386/readdir64.c (__old_readdir64):
30762 Add libc_hidden_def.
30764 2017-08-20 H.J. Lu <hongjiu.lu@intel.com>
30767 * gmon/Makefile (routines): Remove bb_init_func and
30769 (elide-routines.os): Removed.
30770 * gmon/bb_exit_func.c: Likewise.
30771 * gmon/bb_init_func.c: Likewise.
30772 * include/sys/gmon.h (__bb): Likewise.
30773 (__bb_init_func): Likewise.
30774 (__bb_exit_func): Likewise.
30775 * sysdeps/alpha/bb_init_func.S: Likewise.
30777 2017-08-20 H.J. Lu <hongjiu.lu@intel.com>
30779 * debug/longjmp_chk.c (____longjmp_chk): Moved to ...
30780 * include/setjmp.h (____longjmp_chk): Here. Add
30783 2017-08-19 H.J. Lu <hongjiu.lu@intel.com>
30786 * sysdeps/x86_64/multiarch/strcspn-c.c (STRCSPN_SSE2): Add
30788 (__strspn_sse2): Likewise.
30790 2017-08-18 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30792 * sysdeps/generic/not-cancel.h (close_not_cancel): Remove macro.
30793 (close_not_cancel_no_status): Likewise.
30794 (__close_nocancel): New macro.
30795 (__close_nocancel_nostatus): Likewise.
30796 * sysdeps/unix/sysv/linux/not-cancel.h (__close_nocancel): Remove
30798 (close_not_cancel): Likewise.
30799 (close_not_cancel_no_status): Likewise.
30800 (__close_nocancel): New prototype.
30801 (__close_nocancel_nostatus): New function.
30802 * sysdeps/unix/sysv/linux/close.c (__close_nocancel): New function.
30803 * catgets/open_catalog.c (__open_catalog): Replace
30804 close_not_cancel{_no_status) with __close_nocancel{_nostatus}.
30805 * gmon/gmon.c (write_gmon): Likewise.
30806 * iconv/gconv_cache.c (__gconv_load_cache): Likewise.
30807 * intl/loadmsgcat.c (close): Likewise.
30808 * io/ftw.c (open_dir_stream): Likewise.
30809 (ftw_startup): Likewise.
30810 * libio/fileops.c (_IO_file_open): Likewise.
30811 (_IO_file_close_mmap): Likewise.
30812 (_IO_file_close): Likewise.
30813 * libio/iopopen.c (_IO_dup2): Likewise.
30814 * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
30815 * locale/loadlocale.c (_nl_load_locale): Likewise.
30816 * login/utmp_file.c (pututline_file): Likewise.
30817 (endutent_file): Likewise.
30818 * misc/daemon.c (daemon): Likewise.
30819 * nscd/nscd_getai.c (__nscd_getai): Likewise.
30820 * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
30821 * nscd/nscd_gethst_r.c (nscd_gethst_r): Likewise.
30822 * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
30823 * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
30824 * nscd/nscd_helper.c (open_socket): Likewise.
30825 (__nscd_open_socket): Likewise.
30826 * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
30827 * nscd/nscd_netgroup.c (__nscd_setnetgrent): Likewise.
30828 (__nscd_innetgr): Likewise.
30829 * nss/nss_db/db-open.c (internal_setent): Likewise.
30830 * resolv/res-close.c (__res_iclose): Likewise.
30831 * sunrpc/pm_getmaps.c (pmap_getmaps): Likewise.
30832 * sysdeps/posix/closedir.c (__closedir): Likewise.
30833 * sysdeps/posix/getaddrinfo.c (getaddrinfo): Likewise.
30834 * sysdeps/posix/getcwd.c (__getcwd): Likewise.
30835 * sysdeps/posix/opendir.c (tryopen_o_directory): Likewise.
30836 (opendir_tail): Likewise.
30837 * sysdeps/posix/spawni.c (__spawni_child): Likewise.
30838 * sysdeps/unix/sysv/linux/check_native.c (__check_native): Likewise.
30839 * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): Likewise.
30840 * sysdeps/unix/sysv/linux/fips-private.h (fips_enabled_p): Likewise.
30841 * sysdeps/unix/sysv/linux/gethostid.c (sethostid): Likewise.
30842 (gethostid): Likewise.
30843 * sysdeps/unix/sysv/linux/getloadavg.c (getloadavg): Likewise.
30844 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
30846 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Likewise.
30847 * sysdeps/unix/sysv/linux/grantpt.c (close_all_fds): Likewise.
30848 * sysdeps/unix/sysv/linux/i386/smp.h (is_smp_system): Likewise.
30849 * sysdeps/unix/sysv/linux/ia64/has_cpuclock.c (has_cpuclock):
30851 * sysdeps/unix/sysv/linux/if_index.c (__if_nametoindex): Likewise.
30852 * sysdeps/unix/sysv/linux/libc_fatal.c (backtrace_and_maps): Likewise.
30853 * sysdeps/unix/sysv/linux/malloc-sysdep.h (check_may_shrink_heap):
30855 * sysdeps/unix/sysv/linux/mq_notify.c (init_mq_netlink): Likewise.
30856 * sysdeps/unix/sysv/linux/pthread_getname.c (pthread_getname_np):
30858 * sysdeps/unix/sysv/linux/pthread_setname.c (pthread_setname_np):
30860 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Likewise.
30861 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Likewise.
30862 * sysdeps/unix/sysv/linux/Versions (libc) [GLIBC_PRIVATE]: Add
30865 * sysdeps/generic/not-cancel.h (openat_not_cancel): Remove macro.
30866 (openat_not_cancel_3): Likewise.
30867 (openat64_not_cancel_3): Likewise).
30868 (openat_not_cancel_3): Likewise).
30869 * sysdeps/unix/sysv/linux/not-cancel.h (openat_not_cancel): Remove
30871 (openat_not_cancel_3): Likewise.
30872 (openat64_not_cancel): Likewise.
30873 (openat64_not_cancel_3): Likewise.
30874 * sysdeps/unix/sysv/linux/openat.c (__openat_nocancel): New function.
30875 * sysdeps/unix/sysv/linux/openat64.c (__openat64_nocancel): Likewise.
30876 * io/ftw.c (open_dir_stream): Replace openat{64}_not_cancel{_3} with
30877 __open{64}_nocancel.
30878 * sysdeps/mach/hurd/opendir.c (__opendirat): Likewise.
30879 * sysdeps/posix/getcwd.c (__getcwd): Likewise.
30880 * sysdeps/posix/opendir.c (__opendirat): Likewise.
30882 2017-08-18 H.J. Lu <hongjiu.lu@intel.com>
30885 * include/argz.h (__argz_create_sep): New function prototype.
30886 (__argz_append): Likewise.
30887 (__argz_add): Likewise.
30888 (__argz_add_sep): Likewise.
30889 (__argz_delete): Likewise.
30890 (__argz_insert): Likewise.
30891 (__argz_replace): Likewise.
30892 * string/argz.h (__argz_create_sep): Removed.
30893 (__argz_append): Likewise.
30894 (__argz_add): Likewise.
30895 (__argz_add_sep): Likewise.
30896 (__argz_delete): Likewise.
30897 (__argz_insert): Likewise.
30898 (__argz_replace): Likewise.
30900 2017-08-18 H.J. Lu <hongjiu.lu@intel.com>
30902 * elf/elf.h (NT_GNU_PROPERTY_TYPE_0): New.
30903 (NOTE_GNU_PROPERTY_SECTION_NAME): Likewise.
30904 (GNU_PROPERTY_STACK_SIZE): Likewie.
30905 (GNU_PROPERTY_NO_COPY_ON_PROTECTED): Likewie.
30906 (GNU_PROPERTY_LOPROC): Likewise.
30907 (GNU_PROPERTY_HIPROC): Likewise.
30908 (GNU_PROPERTY_LOUSER): Likewise.
30909 (GNU_PROPERTY_HIUSER): Likewise.
30910 (GNU_PROPERTY_X86_ISA_1_USED): Likwise.
30911 (GNU_PROPERTY_X86_ISA_1_NEEDED): Likwise.
30912 (GNU_PROPERTY_X86_FEATURE_1_AND): Likwise.
30913 (GNU_PROPERTY_X86_ISA_1_486): Likwise.
30914 (GNU_PROPERTY_X86_ISA_1_586): Likwise.
30915 (GNU_PROPERTY_X86_ISA_1_686): Likwise.
30916 (GNU_PROPERTY_X86_ISA_1_SSE): Likwise.
30917 (GNU_PROPERTY_X86_ISA_1_SSE2): Likwise.
30918 (GNU_PROPERTY_X86_ISA_1_SSE3): Likwise.
30919 (GNU_PROPERTY_X86_ISA_1_SSSE3): Likwise.
30920 (GNU_PROPERTY_X86_ISA_1_SSE4_1): Likwise.
30921 (GNU_PROPERTY_X86_ISA_1_SSE4_2): Likwise.
30922 (GNU_PROPERTY_X86_ISA_1_AVX): Likwise.
30923 (GNU_PROPERTY_X86_ISA_1_AVX2): Likwise.
30924 (GNU_PROPERTY_X86_ISA_1_AVX512F): Likwise.
30925 (GNU_PROPERTY_X86_ISA_1_AVX512CD): Likwise.
30926 (GNU_PROPERTY_X86_ISA_1_AVX512ER): Likwise.
30927 (GNU_PROPERTY_X86_ISA_1_AVX512PF): Likwise.
30928 (GNU_PROPERTY_X86_ISA_1_AVX512VL): Likwise.
30929 (GNU_PROPERTY_X86_ISA_1_AVX512DQ): Likwise.
30930 (GNU_PROPERTY_X86_ISA_1_AVX512BW): Likwise.
30931 (GNU_PROPERTY_X86_FEATURE_1_IBT): Likwise.
30932 (GNU_PROPERTY_X86_FEATURE_1_SHSTK): Likwise.
30934 2017-08-18 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
30936 * misc/sys/cdefs.h (__HAVE_GENERIC_SELECTION): Define to 0, if
30939 2017-08-18 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
30942 * math/math.h (isinf): Check if in C or C++ mode before using
30943 __builtin_types_compatible_p, since this is a C mode feature.
30945 2017-08-18 Adhemerval Zanella <adhemerval.zanella@linaro.org>
30947 * sysdeps/generic/not-cancel.h (write_not_cancel): Remove macro.
30948 (__write_nocancel): New macro.
30949 * sysdeps/unix/sysv/linux/not-cancel.h (__write_nocancel):
30950 Rewrite as a function prototype.
30951 (write_not_cancel): Remove macro.
30952 * sysdeps/unix/sysv/linux/write.c (__write_nocancel): New function.
30953 * gmon/gmon.c (ERR): Replace write_not_cancel with __write_nocancel.
30954 (write_gmon): Likewise.
30955 * libio/fileops.c (_IO_new_file_write): Likewise.
30956 * login/utmp_file.c (pututline_file): Likewise.
30957 (updwtmp_file): Likewise.
30958 * stdio-common/psiginfo.c (psiginfo): Likewise.
30959 * sysdeps/posix/spawni.c (__spawni_child): Likewise.
30960 * sysdeps/unix/sysv/linux/gethostid.c (sethostid): Likewise.
30961 * sysdeps/unix/sysv/linux/libc_fatal.c (backtrace_and_maps):
30963 * sysdeps/unix/sysv/linux/pthread_setname.c (pthread_setname_np):
30966 * sysdeps/generic/not-cancel.h (read_not_cancel): Remove macro.
30967 (__read_nocancel): New macro.
30968 * sysdeps/unix/sysv/linux/Versions (libc) [GLIBC_PRIVATE]: Add
30970 * sysdeps/unix/sysv/linux/not-cancel.h (__read_nocancel): Remove
30972 (__read_nocancel): New prototype.
30973 * sysdeps/unix/sysv/linux/read.c (__read_nocancel): New function.
30974 * catgets/open_catalog.c (__open_catalog): Replace read_not_cancel
30975 with __read_nocancel.
30976 * intl/loadmsgcat.c (read): Likewise.
30977 * libio/fileops.c (_IO_file_read): Likewise.
30978 * locale/loadlocale.c (_nl_load_locale): Likewise.
30979 * login/utmp_file.c (getutent_r_file): Likewise.
30980 (internal_getut_r): Likewise.
30981 (getutline_r_file): Likewise.
30982 * sysdeps/unix/sysv/linux/fips-private.h (fips_enable_p): Likewise.
30983 * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Likewise.
30984 * sysdeps/unix/sysv/linux/getloadavg.c (getloadavg): Likewise.
30985 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
30987 * sysdeps/unix/sysv/linux/getsysstats.c (next_line): Likewise.
30988 * sysdeps/unix/sysv/linux/i386/smp.h (is_smp_system): Likewise.
30989 * sysdeps/unix/sysv/linux/ia64/has_cpuclock.c (has_cpuclock):
30991 * sysdeps/unix/sysv/linux/libc_fatal.c (backtrace_and_maps):
30993 * sysdeps/unix/sysv/linux/malloc-sysdep.h (check_may_shrink_heap):
30995 * sysdeps/unix/sysv/linux/pthread_getname.c (pthread_getname_np):
30997 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Likewise.
30999 2017-08-18 H.J. Lu <hongjiu.lu@intel.com>
31002 * sysdeps/x86_64/fpu/multiarch/ifunc-mathvec-avx2.h
31003 (IFUNC_SELECTOR): Don't use the AVX2 version if FMA isn't
31006 2017-08-17 DJ Delorie <dj@redhat.com>
31008 * bug17079.c: Update to new test harness.
31009 * test-digits-dots.c: Likewise.
31010 * test-netdb.c: Likewise.
31011 * tst-field.c: Likewise.
31012 * tst-nss-getpwent.c: Likewise.
31013 * tst-nss-static.c: Likewise.
31014 * tst-nss-test1.c: Likewise.
31015 * tst-nss-test2.c: Likewise.
31016 * tst-nss-test3.c: Likewise.
31017 * tst-nss-test4.c: Likewise.
31018 * tst-nss-test5.c: Likewise.
31020 2017-08-17 Adhemerval Zanella <adhemerval.zanella@linaro.org>
31022 * sysdeps/generic/not-cancel.h (open_not_cancel): Remove macro.
31023 (open_not_cancel_2): Likewise.
31024 (open_nocancel): New macro.
31025 (open64_nocancel): Likewise.
31026 * sysdeps/unix/sysv/linux/not-cancel.h (open_not_cancel): Remove macro.
31027 (open_not_cancel_2): Likewise.
31028 (__open_nocancel): New prototype.
31029 (__open64_nocancel): Likewise.
31030 * sysdeps/unix/sysv/linux/Versions (libc) [GLIBC_PRIVATE]: Add
31032 * sysdeps/unix/sysv/linux/open.c (__open_nocancel): New function.
31033 * sysdeps/unix/sysv/linux/open64.c (__open64_nocancel): Likewise.
31034 * catgets/open_catalog.c (__open_catalog): Replace open_not_cancel{_2}
31035 with __open_nocancel.
31036 * csu/check_fds.c (check_one_fd): Likewise.
31037 * gmon/gmon.c (write_gmon): Likewise.
31038 * iconv/gconv_cache.c (__gconv_load_cached): Likewise.
31039 * intl/loadmsgcat.c (open): Likewise.
31040 * libio/fileops.c (_IO_file_open): Likewise.
31041 * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
31042 * locale/loadlocale.c (_nl_load_locale): Likewise.
31043 * login/utmp_file.c (setutent_file): Likewise.
31044 * misc/daemon.c (daemon): Likewise.
31045 * nss/nss_db/db-open.c (internal_setent): Likewise.
31046 * sysdeps/mach/hurd/opendir.c (__opendirat): Likewise.
31047 * sysdeps/posix/libc_fatal.c (__libc_message): Likewise.
31048 * sysdeps/posix/opendir.c (tryopen_o_directory): Likewise.
31049 (__opendir): Likewise.
31050 * sysdeps/posix/spawni.c (__spawni_child): Likewise.
31051 * sysdeps/unix/sysv/linux/fips-private.h (fips_enable_p): Likewise.
31052 * sysdeps/unix/sysv/linux/gethostid.c (sethostid): Likewise.
31053 (gethostid): Likewise.
31054 * sysdeps/unix/sysv/linux/getloadavg.c (getloadavg): Likewise.
31055 * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
31057 * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Likewise.
31058 * sysdeps/unix/sysv/linux/grantpt.c (__close_all_fds): Likewise.
31059 * sysdeps/unix/sysv/linux/i386/smp.h (is_smp_system): Likewise.
31060 * sysdeps/unix/sysv/linux/ia64/has_cpuclock.c (has_cpuclock):
31062 * sysdeps/unix/sysv/linux/libc_fatal.c (backtrace_and_maps):
31064 * sysdeps/unix/sysv/linux/malloc-sysdep.h (check_may_shrink_heap):
31066 * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c (__get_clockfreq):
31068 * sysdeps/unix/sysv/linux/pthread_getname.c (pthread_getname_np):
31070 * sysdeps/unix/sysv/linux/pthread_setname.c (pthread_setname_np):
31072 * sysdeps/unix/sysv/linux/spawni.c (__spawni_child): Likewise.
31073 * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Likewise.
31075 2017-08-17 Wilco Dijkstra <wdijkstr@arm.com>
31077 * benchtests/bench-skeleton.c (main): Add support for
31078 latency benchmarking.
31079 * benchtests/scripts/bench.py: Add support for latency benchmarking.
31081 2017-08-17 H.J. Lu <hongjiu.lu@intel.com>
31083 * Makeconfig (+link-pie-before-libc): Add CRT-* hook to override
31084 the startup object.
31086 2017-08-17 Florian Weimer <fweimer@redhat.com>
31088 * include/sys/socket.h (__opensock): Remove internal_function.
31089 * socket/opensock.c (__opensock): Likewise.
31090 * sysdeps/unix/sysv/linux/opensock.c (__opensock): Likewise.
31092 2017-08-16 Joseph Myers <joseph@codesourcery.com>
31095 * signal/bits/types/__sigval_t.h: New file.
31096 * signal/Makefile (headers): Add bits/types/__sigval_t.h.
31097 * signal/bits/types/sigval_t.h: Include <bits/types/__sigval_t.h>
31098 and define sigval_t using __sigval_t.
31099 * include/bits/types/__sigval_t.h: New file.
31100 * bits/types/sigevent_t.h: Include <bits/types/__sigval_t.h>
31101 instead of <bits/types/__sigval_t.h>.
31102 (struct sigevent): Use __sigval_t instead of sigval_t.
31103 * bits/types/siginfo_t.h: Include <bits/types/__sigval_t.h>
31104 instead of <bits/types/__sigval_t.h>.
31105 (siginfo_t): Use __sigval_t instead of sigval_t.
31106 * sysdeps/unix/sysv/linux/bits/types/sigevent_t.h: Include
31107 <bits/types/__sigval_t.h> instead of <bits/types/__sigval_t.h>.
31108 (struct sigevent): Use __sigval_t instead of sigval_t.
31109 * sysdeps/unix/sysv/linux/bits/types/siginfo_t.h: Include
31110 <bits/types/__sigval_t.h> instead of <bits/types/__sigval_t.h>.
31111 (siginfo_t): Use __sigval_t instead of sigval_t.
31112 * signal/signal.h [__USE_MISC]: Include <bits/types/sigval_t.h>.
31114 2017-08-16 H.J. Lu <hongjiu.lu@intel.com>
31116 * NEWS: Remove "[Add new features here]" for 2.27.
31118 2017-08-16 Joseph Myers <joseph@codesourcery.com>
31120 * sysdeps/unix/sysv/linux/sh/localplt.data: Allow abort in
31123 2017-08-16 H.J. Lu <hongjiu.lu@intel.com>
31125 * NEWS: Mention x86-64 FMA optimization.
31127 2017-08-16 H.J. Lu <hongjiu.lu@intel.com>
31130 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
31132 * sysdeps/x86_64/fpu/multiarch/e_expf-fma.S: New file.
31133 * sysdeps/x86_64/fpu/multiarch/e_expf.c: Likewise.
31134 * sysdeps/x86_64/fpu/multiarch/ifunc-fma.h: Likewise.
31136 2017-08-16 Andreas Schwab <schwab@suse.de>
31140 * elf/ldd.bash.in: Never run file directly.
31142 2017-08-15 H.J. Lu <hongjiu.lu@intel.com>
31145 * sysdeps/x86_64/fpu/e_expf.S (L(SP_RANGE)): Aligned to 8 bytes.
31146 (L(SP_INF_0)): Likewise.
31148 2017-08-15 Florian Weimer <fweimer@redhat.com>
31150 * gmon/Makefile (tests-special): Add tst-gmon-prof only if
31153 2017-08-15 Florian Weimer <fweimer@redhat.com>
31155 Remove BROKEN_THREAD_SIGNALS support for LinuxThreads.
31156 * sysdeps/pthread/aio_misc.c (__aio_enqueue_request): Remove
31157 BROKEN_THREAD_SIGNALS code.
31158 * sysdeps/ppthread/aio_misc.h (struct waitlist, struct
31159 request_list): Remove caller_pid member used for
31160 BROKEN_THREAD_SIGNALS.
31161 [BROKEN_THREAD_SIGNALS] (__aio_notify_only): Remove declaration.
31162 * sysdeps/pthread/aio_notify.c (__aio_notify_only, __aio_notify):
31163 Remove BROKEN_THREAD_SIGNALS support.
31164 * sysdeps/pthread/aio_suspend.c (aio_suspend): Likewise.
31165 * sysdeps/pthread/lio_listio.c (lio_listio_internal): Likewise.
31167 2017-08-15 Florian Weimer <fweimer@redhat.com>
31169 * gmon/Makefile (tests): Add tst-gmon.
31170 (CFLAGS-tst-gmon.c, LDFLAGS-tst-gmon, CRT-tst-gmon, tst-gmon-ENV):
31172 (tests-special): Add tst-gmon-prof.out.
31173 (tst-gmon.out): Depend on clean-tst-gmon-data.
31174 (clean-tst-gmon-data, tst-gmon-gprof.out): New targets.
31175 * gmon/tst-gmon.c, gmon/tst-gmon-gprof.sh: New files.
31176 * Makeconfig (+link-before-libc): Add CRT-* hook to override the
31178 * aclocal.m4 (GPROF): Set and substitute.
31179 * config.amke.in (GPROF): Set.
31180 * configure: Regenerate.
31182 2017-08-15 Gustavo Romero <gromero@linux.vnet.ibm.com>
31184 * elf/elf.h A (NT_PPC_TAR): New macro.
31185 (NT_PPC_PPR): Likewise.
31186 (NT_PPC_DSCR): Likewise.
31187 (NT_PPC_EBB): Likewise.
31188 (NT_PPC_PMU): Likewise.
31189 (NT_PPC_TM_CGPR): Likewise.
31190 (NT_PPC_TM_CFPR): Likewise.
31191 (NT_PPC_TM_CVMX): Likewise.
31192 (NT_PPC_TM_CVSX): Likewise.
31193 (NT_PPC_TM_SPR): Likewise.
31194 (NT_PPC_TM_CTAR): Likewise.
31195 (NT_PPC_TM_CPPR): Likewise.
31196 (NT_PPC_TM_CDSCR): Likewise.
31198 2017-08-15 Florian Weimer <fweimer@redhat.com>
31200 * sysdeps/i386/machine-gmon.h (mcount_internal): Declare with
31201 regparm (2) instead of internal_function.
31202 (_MCOUNT_DECL): Adjust.
31204 2017-08-15 Stefan Liebler <stli@linux.vnet.ibm.com>
31206 * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Add z14.
31207 * sysdeps/s390/dl-procinfo.h (_DL_PLATFORMS_COUNT): Increased.
31209 2017-08-14 Joseph Myers <joseph@codesourcery.com>
31211 * conform/data/sys/wait.h-data (si_value): Do not expect for
31214 2017-08-14 Florian Weimer <fweimer@redhat.com>
31217 NSS: Create stubs for accidentally exported lookup functions.
31218 * grp/initgroups.c (__nss_group_lookup, __nss_lookup_function):
31219 Remove declaration.
31220 * inet/ether_hton.c (__nss_ethers_lookup): Likewise.
31221 (ether_hostton): Call __nss_ethers_lookup2 instead.
31222 * inet/ether_ntoh.c (__nss_ethers_lookup): Remove declaration.
31223 (ether_ntohost): Call __nss_ethers_lookup2 instead.
31224 * inet/getnetgrent_r.c (__nss_netgroup_lookup): Remove declaration.
31225 (setup): Call __nss_netgroup_lookup2 instead.
31226 * nss/Makefile (routines): Add compat-lookup.
31227 * nss/Versions (GLIBC_2.27): Add symbol version.
31228 * nss/XXX-lookup (DB_LOOKUP_FCT): Remove declaration. Now provided by <nsswitch.h>.
31229 (DB_COMPAT_FCT): Remove.
31230 * nss/compat-lookup.c: New file.
31231 * nss/nsswitch.h: Generate __nss_*_lookup2 function prototypes
31232 from databases.def.
31233 * nss/service-lookup.c (NO_COMPAT): Remove definition.
31234 * sunrpc/netname.c (__nss_publickey_lookup): Remove declaration.
31235 (netname2user): Call __nss_publickey_lookup2 instead.
31236 * sunrpc/publickey.c (__nss_publickey_lookup): Remove declaration.
31237 (getpublickey, getsecretkey): Call __nss_publickey_lookup2
31240 2017-08-14 Adhemerval Zanella <adhemerval.zanella@linaro.org>
31241 Sergei Trofimovich <slyfox@inbox.ru>
31244 * sysdeps/unix/sysv/linux/m68k/mmap_internal.h (MMAP2_PAGE_SHIFT):
31245 Rename to MMAP2_PAGE_UNIT.
31246 * sysdeps/unix/sysv/linux/mmap.c: Include mmap_internal iff
31247 __OFF_T_MATCHES_OFF64_T is not defined.
31248 * sysdeps/unix/sysv/linux/mmap_internal.h (page_unit): Declare as
31250 (MMAP2_PAGE_UNIT) [MMAP2_PAGE_UNIT == -1]: Redefine to page_unit.
31251 (page_unit) [MMAP2_PAGE_UNIT != -1]: Remove definition.
31253 2017-08-14 Florian Weimer <fweimer@redhat.com>
31255 i386: Do not set internal_function.
31256 * config.h.in (USE_REGPARMS, internal_function): Remove.
31257 * sysdeps/i386/configure.ac (USE_REGPARMS): Likewise.
31258 * sysdeps/i386/configure (USE_REGPARMS): Likewise.
31260 2017-08-14 Florian Weimer <fweimer@redhat.com>
31262 * elf/dl-init.c (_dl_init): Remove internal_function.
31263 * sysdeps/generic/ldsodefs.h (_dl_init): Likewise.
31264 * sysdeps/i386/dl-machine.h (RTLD_START): Adjust call to _dl_init.
31266 2017-08-14 Florian Weimer <fweimer@redhat.com>
31268 * elf/rtld.c (_dl_start): Remove internal_function.
31269 * sysdeps/i386/dl-machine.h (RTLD_START): Adjust call to
31272 2017-08-14 Florian Weimer <fweimer@redhat.com>
31274 * elf/dl-fini.c (_dl_fini): Remove internal_function
31275 * sysdeps/generic/ldsodefs.h (_dl_fini): Likewise.
31277 2017-08-14 H.J. Lu <hongjiu.lu@intel.com>
31279 * sysdeps/x86/cpu-features.h (bit_cpu_IBT): New.
31280 (bit_cpu_SHSTK): Likewise.
31281 (index_cpu_IBT): Likewise.
31282 (index_cpu_SHSTK): Likewise.
31283 (reg_IBT): Likewise.
31284 (reg_SHSTK): Likewise.
31285 * sysdeps/x86/cpu-tunables.c (TUNABLE_CALLBACK (set_hwcaps)):
31286 Handle index_cpu_IBT and index_cpu_SHSTK.
31288 2017-08-14 Mike FABIAN <mfabian@redhat.com>
31291 * po/fr.po: Fix spelling mistake.
31293 2017-08-13 Florian Weimer <fweimer@redhat.com>
31295 * elf/dl-addr.c (_dl_addr): Remove internal_function.
31296 * elf/dl-error-skeleton.c (_dl_signal_error, _dl_signal_cerror)
31297 (_dl_catch_error, _dl_receive_error): Likewise.
31298 * elf/dl-open.c (_dl_find_dso_for_object): Likewise.
31299 * elf/dl-tls.c (_dl_allocate_tls_init, _dl_allocate_tls)
31300 (_dl_deallocate_tls): Likewise.
31301 * include/dlfcn.h (_dl_addr): Likewise.
31302 * sysdeps/generic/ldsodefs.h (_dl_signal_error, _dl_signal_cerror)
31303 (_dl_catch_error, _dl_receive_error, _dl_find_dso_for_object)
31304 (_dl_allocate_tls_init, _dl_allocate_tls, _dl_deallocate_tls):
31307 2017-08-13 Florian Weimer <fweimer@redhat.com>
31309 * include/stdlib.h: (__strtof_nan, __strtod_nan, __strtold_nan)
31310 (__wcstof_nan, __wcstod_nan, __wcstold_nan): Remove
31312 * stdlib/sttod_nan_main.c (STRTOD_NAN): Likewise.
31314 2017-08-13 Florian Weimer <fweimer@redhat.com>
31316 * elf/dl-support.c (_dl_make_stack_executable_hook): Remove
31318 * nptl/allocatestack.c (__make_stacks_executable): Likewise.
31319 * nptl/pthreadP.h (__make_stacks_executable): Likewise.
31320 * sysdeps/generic/ldsodefs.h (_rtld_global): Remove
31321 internal_function from _dl_make_stack_executable_hook member.
31322 (_dl_make_stack_executable): Remove internal_function.
31323 * sysdeps/mach/hurd/dl-execstack.c (_dl_make_stack_executable):
31325 * sysdeps/unix/sysv/linux/dl-execstack.c
31326 (_dl_make_stack_executable): Likewise.
31328 2017-08-13 Florian Weimer <fweimer@redhat.com>
31330 * sysdeps/unix/sysv/linux/netlinkaccess.h
31331 (__netlink_assert_response): Remove internal_function.
31332 * sysdeps/unix/sysv/linux/netlink_assert_response.c
31333 (__netlink_assert_response): Likewise.
31335 2017-08-13 Florian Weimer <fweimer@redhat.com>
31337 * include/rpc/pmap_clnt.h (__libc_rpc_getport): Remove
31339 * sunrpoc/pm_getport.c (__libc_rpc_getport): Likewise.
31341 2017-08-13 Florian Weimer <fweimer@redhat.com>
31343 * grp/grp-merge.h (__copy_grp, __merge_grp): Remove
31345 * grp/grp-merge.c (__copy_grp, __merge_grp): Likewise.
31346 * inet/netgroup.h (__internal_setnetgrent)
31347 (__internal_endnetgrent,__internal_getnetgrent_r): Likewise.
31348 * inet/getnetgrent_r.c (__internal_setnetgrent)
31349 (__internal_endnetgrent,__internal_getnetgrent_r): Likewise.
31350 * nss/XXX-lookup.c (DB_LOOKUP_FCT, DB_COMPAT_FCT): Likewise.
31351 * nss/getXXbyYY_r.c (DB_LOOKUP_FCT): Likewise.
31352 * nss/getXXent_r.c (DB_LOOKUP_FCT): Likewise.
31353 * nss/nsswitch.h (db_lookup_function): Likewise.
31355 2017-08-13 Florian Weimer <fweimer@redhat.com>
31357 * debug/fortify_fail.c (__fortify_fail, __fortify_fail_abort):
31358 Remove internal_function.
31359 * include/stdio.h (__fortify_fail, __fortify_fail_abort): Likewise.
31360 * sysdeps/mach/hurd/i386/____longjmp_chk.S (CALL_FAIL): Pass
31361 message argument on the stack.
31362 * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S (CALL_FAIL):
31365 2017-08-12 Mike FABIAN <mfabian@redhat.com>
31367 Adapt test case data to the changes in the thousands
31371 * localedata/tst-langinfo.sh: Adapt test case data.
31372 * stdlib/tst-strfmon_l.c: Likewise.
31373 * stdlib/tst-strtod4.c: Likewise.
31374 * stdlib/tst-strtod5i.c: Likewise.
31376 2017-08-11 Florian Weimer <fweimer@redhat.com>
31379 * assert/assert.h [__GNUC__ && !__STRICT_ANSI__] (assert):
31380 Suppress pedantic warning resulting from statement expression.
31381 (__ASSERT_FUNCTION): Add missing __extension__.
31383 2017-08-11 Siddhesh Poyarekar <siddhesh@sourceware.org>
31385 * benchtests/bench-memmove-large.c: Print output in JSON
31387 * benchtests/bench-memmove.c: Likewise.
31389 * benchtests/bench-memccpy.c (do_one_test): Remove checks.
31390 * benchtests/bench-memchr.c (do_one_test): Likewise.
31391 * benchtests/bench-memcpy-large.c (do_one_test): Likewise.
31392 * benchtests/bench-memcpy.c (do_one_test): Likewise.
31393 * benchtests/bench-memmove-large.c (do_one_test): Likewise.
31394 * benchtests/bench-memmove.c (do_one_test): Likewise.
31395 * benchtests/bench-memset-large.c (do_one_test): Likewise.
31396 * benchtests/bench-memset.c (do_one_test): Likewise.
31397 * benchtests/bench-string.h (test_init): Remove memsets.
31399 2017-08-10 Rical Jasan <ricaljasan@pacific.net>
31402 (Computing the Width of an Integer Data Type): Rename section to
31403 "Width of an Integer Type". Remove inaccurate statement regarding
31404 lack of C language facilities for determining width of integer
31405 types, and reorder content to improve flow and context of
31408 2017-08-10 Rical Jasan <ricaljasan@pacific.net>
31410 * lang.texi (va_copy): Change standard from ISO to C99.
31411 (__va_copy): Add standard and header annotation.
31412 Update description for clarity of origins and current use.
31414 2017-08-10 Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com>
31417 * sysdeps/powerpc/fpu/math_private.h (__ieee754_sqrtf128): Since
31418 xssqrtqp requires operands to be in Vector Registers
31419 (Altivec/VMX), replace the register constraint 'wq' with 'v'.
31420 * sysdeps/powerpc/powerpc64le/power9/fpu/e_sqrtf128.c
31421 (__ieee754_sqrtf128): Likewise.
31423 2017-08-10 Wilco Dijkstra <wdijkstr@arm.com>
31425 * sysdeps/aarch64/memcmp.S (memcmp):
31426 Rewrite of optimized memcmp.
31428 2017-08-10 Florian Weimer <fweimer@redhat.com>
31430 Introduce ld.so exceptions.
31431 * sysdeps/generic/ldsodefs.h (struct dl_exception): Define.
31432 (_dl_exception_create, _dl_exception_create_format)
31433 (_dl_exception_free, _dl_signal_exception, _dl_signal_cexception)
31434 (_dl_catch_exception): Declare.
31435 (_dl_catch_error): Update comment.
31436 * elf/dl-error-skeleton.c (struct catch): Replace objname,
31437 errstring, malloced members with exception member.
31438 (_dl_out_of_memory): Remove.
31439 (fatal_error): New function, extracted from _dl_signal_error.
31440 (_dl_signal_exception, _dl_signal_cexception): New functions.
31441 (_dl_signal_error): Call _dl_exception_create to allocate an
31443 (_dl_catch_exception): New function, based on _dl_catch_error.
31444 (_dl_catch_error): Implement using _dl_catch_exception.
31445 * elf/dl-exception.c: New file.
31446 * elf/Makefile (dl-routines): Add dl-exception.
31447 (elide-routines.os): Likewise.
31448 * elf/Version (ld/GLIBC_PRIVATE): Add _dl_exception_create,
31449 _dl_exception_create_format, _dl_exception_free.
31450 * elf/dl-deps.c (_dl_map_object_deps): Use _dl_catch_exception and
31451 _dl_signal_exception.
31452 * elf/dl-lookup.c (make_string): Remove.
31453 (_dl_lookup_symbol_x): Use _dl_exception_create_format,
31454 _dl_signal_cexception, _dl_exception_free.
31455 * elf/dl-open.c (_dl_open): Use _dl_catch_exception and
31456 _dl_signal_exception.
31457 * elf/dl-sym.c (do_sym): Likewise.
31458 * elf/dl-version.c (make_string): Remove.
31459 (match_symbol): Use _dl_exception_create_format,
31460 _dl_signal_cexception, _dl_exception_free.
31461 (_dl_check_map_versions): Likewise.
31462 * sysdeps/generic/localplt.data (ld.so): Add _dl_signal_exception,
31463 _dl_catch_exception.
31464 * sysdeps/unix/sysv/linux/aarch64/localplt.data (ld.so): Likewise.
31465 * sysdeps/unix/sysv/linux/alpha/localplt.data (ld.so): Likewise.
31466 * sysdeps/unix/sysv/linux/arm/localplt.data (ld.so): Likewise.
31467 * sysdeps/unix/sysv/linux/hppa/localplt.data (ld.so): Likewise.
31468 * sysdeps/unix/sysv/linux/i386/localplt.data (ld.so): Likewise.
31469 * sysdeps/unix/sysv/linux/ia64/localplt.data (ld.so): Likewise.
31470 * sysdeps/unix/sysv/linux/m68k/localplt.data (ld.so): Likewise.
31471 * sysdeps/unix/sysv/linux/microblaze/localplt.data (ld.so):
31473 * sysdeps/unix/sysv/linux/nios2/localplt.data (ld.so): Likewise.
31474 * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data
31476 * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data
31478 * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data (ld.so):
31480 * sysdeps/unix/sysv/linux/s390/localplt.data (ld.so): Likewise.
31481 * sysdeps/unix/sysv/linux/sh/localplt.data (ld.so): Likewise.
31482 * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data (ld.so):
31484 * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data (ld.so):
31486 * sysdeps/x86_64/localplt.data (ld.so): Likewise.
31488 2017-08-10 Florian Weimer <fweimer@redhat.com>
31490 * inet/net-internal.h (__inet6_scopeid_pton): Remove
31491 attribute_hidden, internal_function.
31492 * inet/inet6_scopeid_pton.c (__inet6_scopeid_pton): Remove
31495 2017-08-10 Florian Weimer <fweimer@redhat.com>
31497 * malloc/malloc.c (get_max_fast): Reimplement as an inline
31498 function which calls __builtin_unreachable.
31500 2017-08-10 Mike FABIAN <mfabian@redhat.com>
31502 * stdlib/tst-strfmon_l.c: Fix test cases to agree with the changes in
31503 Indian monetary formatting
31504 * stdlib/Makefile: Adapt list of locales needed for the tst-strfmon_l.c
31507 2017-08-09 Dmitry V. Levin <ldv@altlinux.org>
31509 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h (enum __ptrace_request):
31510 Fix typo in comment.
31513 * sysdeps/unix/sysv/linux/sys/ptrace.h (enum __ptrace_flags,
31514 PTRACE_SEIZE_DEVEL): Remove.
31515 * sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h: Likewise.
31516 * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
31517 * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
31518 * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
31519 * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
31521 2017-08-09 Joseph Myers <joseph@codesourcery.com>
31523 * posix/bits/types.h (__qaddr_t): Remove.
31526 * sysdeps/arm/sys/ucontext.h (__ctx): Move undefine further down.
31527 (ucontext_t): Use __ctx with uc_flags. Rename uc_filler to
31529 * sysdeps/generic/sys/ucontext.h (__ctx): New macro.
31530 (ucontext_t): Use __ctx with uc_flags.
31531 * sysdeps/i386/sys/ucontext.h (__ctx): Move undefine further down.
31532 (__ctxt): Likewise.
31533 (ucontext_t): Use __ctx with uc_flags. Rename uc_filler to
31535 * sysdeps/m68k/sys/ucontext.h (__ctx): Move undefine further down.
31536 (ucontext_t): Use __ctx with uc_flags. Rename uc_filler to
31538 * sysdeps/mips/sys/ucontext.h (__ctx): Move undefine further down.
31539 (ucontext_t): Use __ctx with uc_flags. Rename uc_filler to
31541 * sysdeps/unix/sysv/linux/aarch64/sys/ucontext.h (__ctx): New
31543 (ucontext_t): Use __ctx with uc_flags.
31544 * sysdeps/unix/sysv/linux/alpha/sys/ucontext.h (__ctx): New macro.
31545 (ucontext_t): Use __ctx with uc_flags.
31546 * sysdeps/unix/sysv/linux/arm/sys/ucontext.h (__ctx): New macro.
31547 (ucontext_t): Use __ctx with uc_flags and uc_regspace.
31548 * sysdeps/unix/sysv/linux/hppa/sys/ucontext.h (__ctx): New macro.
31549 (ucontext_t): Use __ctx with uc_flags.
31550 * sysdeps/unix/sysv/linux/m68k/sys/ucontext.h (__ctx): Move
31551 undefine further down.
31552 (ucontext_t): Use __ctx with uc_flags. Rename uc_filler to
31554 * sysdeps/unix/sysv/linux/mips/sys/ucontext.h (__ctx): Move
31555 undefine further down.
31556 (ucontext_t): Use __ctx with uc_flags.
31557 * sysdeps/unix/sysv/linux/nios2/sys/ucontext.h (__ctx): Move
31558 undefine further down.
31559 (ucontext_t): Use __ctx with uc_flags.
31560 * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h (ucontext_t): Use
31561 __ctx with uc_flags, uc_regs_ptr, uc_regs and uc_reg_space.
31562 Rename uc_pad to __glibc_reserved1.
31563 * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (__ctx): Move
31564 undefine further down.
31565 (ucontext_t): Use __ctx with uc_flags.
31566 * sysdeps/unix/sysv/linux/sh/sys/ucontext.h (__ctx): Move undefine
31568 (ucontext_t): Use __ctx with uc_flags.
31569 * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (ucontext_t): Use
31570 __ctx with uc_flags.
31571 * sysdeps/unix/sysv/linux/tile/sys/ucontext.h (__ctx): New macro.
31572 (ucontext_t): Use __ctx with uc_flags.
31573 * sysdeps/unix/sysv/linux/x86/sys/ucontext.h (ucontext_t): Use
31574 __ctx with uc_flags.
31576 2017-08-09 Florian Weimer <fweimer@redhat.com>
31579 * nss/getXXbyYY_r.c (REENTRANT_NAME): Call __resolv_context_put
31580 before early return.
31582 2017-08-09 Andreas Schwab <schwab@suse.de>
31585 * sysdeps/unix/sysv/linux/s390/pt-longjmp.c: Update reference to
31589 * nptl/Makefile (tests) [$(build-shared) = yes]: Add
31590 tst-compat-forwarder.
31591 (modules-names): Add tst-compat-forwarder-mod.
31592 ($(objpfx)tst-compat-forwarder): Depend on
31593 $(objpfx)tst-compat-forwarder-mod.so.
31594 * nptl/tst-compat-forwarder.c: New file.
31595 * nptl/tst-compat-forwarder-mod.c: New file.
31597 2017-08-09 Siddhesh Poyarekar <siddhesh@sourceware.org>
31599 * sysdeps/aarch64/multiarch/memcpy_falkor.S: Fix code style in
31602 * manual/tunables.texi (Tunable glibc.tune.cpu): Add falkor.
31603 * sysdeps/aarch64/multiarch/Makefile (sysdep_routines): Add
31605 * sysdeps/aarch64/multiarch/ifunc-impl-list.c (MAX_IFUNC):
31607 (__libc_ifunc_impl_list): Add __memcpy_falkor.
31608 * sysdeps/aarch64/multiarch/memcpy.c: Likewise.
31609 * sysdeps/aarch64/multiarch/memcpy_falkor.S: New file.
31610 * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (cpu_list):
31612 * sysdeps/unix/sysv/linux/aarch64/cpu-features.h (IS_FALKOR):
31615 2017-08-08 Adhemerval Zanella <adhemerval.zanella@linaro.org>
31618 * manual/setjmp.texi (getcontex): Document uc_stack value
31619 compatibility differences.
31621 2017-08-08 Joseph Myers <joseph@codesourcery.com>
31623 * malloc/mcheck.c (old_free_hook): Use void * instead of __ptr_t.
31624 (old_malloc_hook): Likewise.
31625 (old_memalign_hook): Likewise.
31626 (old_realloc_hook): Likewise.
31627 (struct hdr): Likewise.
31629 (freehook): Likewise.
31630 (mallochook): Likewise.
31631 (memalignhook): Likewise.
31632 (reallochook): Likewise.
31633 (mprobe): Likewise.
31634 * malloc/mtrace.c (mallwatch): Likewise.
31635 (tr_old_free_hook): Likewise.
31636 (tr_old_malloc_hook): Likewise.
31637 (tr_old_realloc_hook): Likewise.
31638 (tr_old_memalign_hook): Likewise.
31639 (tr_where): Likewise.
31640 (lock_and_info): Likewise.
31641 (tr_freehook): Likewise.
31642 (tr_mallochook): Likewise.
31643 (tr_reallochook): Likewise.
31644 (tr_memalignhook): Likewise.
31645 * misc/err.h [!__GNUC_VA_LIST] (__gnuc_va_list): Likewise.
31646 * misc/mmap.c (__mmap): Likewise.
31647 * misc/mmap64.c (__mmap64): Likewise.
31648 * misc/mprotect.c (__mprotect): Likewise.
31649 * misc/msync.c (msync): Likewise.
31650 * misc/munmap.c (__munmap): Likewise.
31651 * posix/posix_madvise.c (posix_madvise): Likewise.
31652 * socket/send.c (__send): Likewise.
31653 * socket/sendto.c (__sendto): Likewise.
31654 * socket/setsockopt.c (__setsockopt): Likewise.
31655 * string/memcmp.c (__ptr_t): Remove macro.
31656 (MEMCMP): Use void * instead of ptr_t.
31657 * string/memrchr.c (__ptr_t): Remove macro.
31658 (__memrchr): Use void * instead of ptr_t.
31659 * sysdeps/mach/hurd/dl-sysdep.c (__mmap): Likewise.
31660 * sysdeps/mach/hurd/mmap.c (__mmap): Likewise.
31661 * sysdeps/mach/hurd/mmap64.c (__mmap64): Likewise.
31662 * sysdeps/mach/mprotect.c (__mprotect): Likewise.
31663 * sysdeps/mach/msync.c (msync): Likewise.
31664 * sysdeps/mach/munmap.c (__munmap): Likewise.
31665 * sysdeps/mips/bits/setjmp.h (struct __jmp_buf_internal_tag):
31667 * sysdeps/posix/getcwd.c (__getcwd): Likewise.
31668 * sysdeps/powerpc/powerpc32/memset.S (memset): Likewise.
31669 * sysdeps/powerpc/powerpc32/power4/memcpy.S (memcpy): Likewise.
31670 * sysdeps/powerpc/powerpc32/power4/memset.S (memset): Likewise.
31671 * sysdeps/powerpc/powerpc32/power6/memcpy.S (memcpy): Likewise.
31672 * sysdeps/powerpc/powerpc32/power6/memset.S (memset): Likewise.
31673 * sysdeps/powerpc/powerpc32/power7/memcpy.S (memcpy): Likewise.
31674 * sysdeps/powerpc/powerpc32/power7/mempcpy.S (__mempcpy):
31676 * sysdeps/powerpc/powerpc32/power7/memset.S (memset): Likewise.
31677 * sysdeps/powerpc/powerpc64/memcpy.S (memcpy): Likewise.
31678 * sysdeps/powerpc/powerpc64/memset.S (memset): Likewise.
31679 * sysdeps/powerpc/powerpc64/power4/memcpy.S (memcpy): Likewise.
31680 * sysdeps/powerpc/powerpc64/power4/memset.S (memset): Likewise.
31681 * sysdeps/powerpc/powerpc64/power6/memcpy.S (memcpy): Likewise.
31682 * sysdeps/powerpc/powerpc64/power6/memset.S (memset): Likewise.
31683 * sysdeps/powerpc/powerpc64/power7/memcpy.S (memcpy): Likewise.
31684 * sysdeps/powerpc/powerpc64/power7/mempcpy.S (__mempcpy):
31686 * sysdeps/powerpc/powerpc64/power7/memset.S (memset): Likewise.
31687 * sysdeps/powerpc/powerpc64/power8/memset.S (memset): Likewise.
31688 * sysdeps/tile/memcmp.c (__ptr_t): Remove macro.
31689 (MEMCMP): Use void * instead of ptr_t.
31690 * sysdeps/unix/sysv/linux/alpha/oldglob.c (old_glob_t): Likewise.
31691 * sysdeps/unix/sysv/linux/mmap.c (__mmap): Likewise.
31693 2017-08-08 Florian Weimer <fweimer@redhat.com>
31695 * sysdeps/posix/getaddrinfo.c (gaih_inet): Remove unreachable
31698 2017-08-08 H.J. Lu <hongjiu.lu@intel.com>
31701 * csu/libc-tls.c: Include <startup.h> first.
31702 (__libc_setup_tls): Call _startup_fatal instead of __libc_fatal.
31703 * elf/dl-tunables.c: Include <startup.h> first.
31704 * include/libc-symbols.h (BUILD_PIE_DEFAULT): New.
31705 * sysdeps/generic/startup.h: New file.
31706 * sysdeps/unix/sysv/linux/i386/startup.h: Likewise.
31707 * sysdeps/unix/sysv/linux/i386/brk.c [BUILD_PIE_DEFAULT != 0]
31708 (I386_USE_SYSENTER): New. Defined to 0.
31710 2017-08-08 Andreas Schwab <schwab@suse.de>
31713 * nptl/pt-longjmp.c (longjmp, siglongjmp): Don't use IFUNC resolver.
31714 * nptl/pt-system.c (system): Likewise.
31716 2017-08-07 Adhemerval Zanella <adhemerval.zanella@linaro.org>
31719 * sysdeps/posix/preadv2.c (preadv2): Use ENOTSUP instead of
31721 * sysdeps/posix/preadv64v2.c (preadv64v2): Likewise.
31722 * sysdeps/posix/pwritev2.c (pwritev2): Likewise.
31723 * sysdeps/posix/pwritev64v2.c (pwritev64v2): Likewise.
31724 * sysdeps/unix/sysv/linux/preadv2.c (preadv2): Likewise.
31725 * sysdeps/unix/sysv/linux/preadv64v2.c (preadv64v2): Likewise.
31726 * sysdeps/unix/sysv/linux/pwritev2.c (pwritev2): Likewise.
31727 * sysdeps/unix/sysv/linux/pwritev64v2.c (pwritev64v2): Likewise.
31729 2017-08-07 Joseph Myers <joseph@codesourcery.com>
31732 * bits/sigaction.h (struct sigaction): Define sa_handler and
31733 sa_sigaction using union also for [__USE_XOPEN_EXTENDED].
31734 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31735 [__USE_XOPEN_EXTENDED].
31736 (SA_RESTART): Likewise.
31737 (SA_NODEFER): Likewise.
31738 (SA_RESETHAND): Likewise.
31739 * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h
31740 (struct sigaction): Define sa_handler and sa_sigaction using union
31741 also for [__USE_XOPEN_EXTENDED].
31742 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31743 [__USE_XOPEN_EXTENDED].
31744 (SA_RESTART): Likewise.
31745 (SA_NODEFER): Likewise.
31746 (SA_RESETHAND): Likewise.
31747 * sysdeps/unix/sysv/linux/bits/sigaction.h
31748 (struct sigaction): Define sa_handler and sa_sigaction using union
31749 also for [__USE_XOPEN_EXTENDED].
31750 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31751 [__USE_XOPEN_EXTENDED].
31752 (SA_RESTART): Likewise.
31753 (SA_NODEFER): Likewise.
31754 (SA_RESETHAND): Likewise.
31755 * sysdeps/unix/sysv/linux/hppa/bits/sigaction.h
31756 (struct sigaction): Define sa_handler and sa_sigaction using union
31757 also for [__USE_XOPEN_EXTENDED].
31758 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31759 [__USE_XOPEN_EXTENDED].
31760 (SA_RESTART): Likewise.
31761 (SA_NODEFER): Likewise.
31762 (SA_RESETHAND): Likewise.
31763 * sysdeps/unix/sysv/linux/ia64/bits/sigaction.h
31764 (struct sigaction): Define sa_handler and sa_sigaction using union
31765 also for [__USE_XOPEN_EXTENDED].
31766 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31767 [__USE_XOPEN_EXTENDED].
31768 (SA_RESTART): Likewise.
31769 (SA_NODEFER): Likewise.
31770 (SA_RESETHAND): Likewise.
31771 * sysdeps/unix/sysv/linux/mips/bits/sigaction.h
31772 (struct sigaction): Define sa_handler and sa_sigaction using union
31773 also for [__USE_XOPEN_EXTENDED].
31774 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31775 [__USE_XOPEN_EXTENDED].
31776 (SA_RESTART): Likewise.
31777 (SA_NODEFER): Likewise.
31778 (SA_RESETHAND): Likewise.
31779 * sysdeps/unix/sysv/linux/s390/bits/sigaction.h
31780 (struct sigaction): Define sa_handler and sa_sigaction using union
31781 also for [__USE_XOPEN_EXTENDED].
31782 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31783 [__USE_XOPEN_EXTENDED].
31784 (SA_RESTART): Likewise.
31785 (SA_NODEFER): Likewise.
31786 (SA_RESETHAND): Likewise.
31787 * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h
31788 (struct sigaction): Define sa_handler and sa_sigaction using union
31789 also for [__USE_XOPEN_EXTENDED].
31790 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31791 [__USE_XOPEN_EXTENDED].
31792 (SA_RESTART): Likewise.
31793 (SA_NODEFER): Likewise. Define directly rather than as alias.
31794 (SA_RESETHAND): Likewise.
31795 (SA_INTERRUPT): Define only for [__USE_MISC].
31796 (SA_NOMASK): Define as alias of SA_NODEFER, only for [__USE_MISC].
31797 (SA_ONESHOT): Define as alias of SA_RESETHAND, only for
31799 (SA_STACK): Define only for [__USE_MISC].
31800 * sysdeps/unix/sysv/linux/tile/bits/sigaction.h
31801 (struct sigaction): Define sa_handler and sa_sigaction using union
31802 also for [__USE_XOPEN_EXTENDED].
31803 (SA_ONSTACK): Change [__USE_UNIX98] condition to
31804 [__USE_XOPEN_EXTENDED].
31805 (SA_RESTART): Likewise.
31806 (SA_NODEFER): Likewise.
31807 (SA_RESETHAND): Likewise.
31808 (SA_NOPTRACE): Define only for [__USE_MISC].
31810 * catgets/catgets.c (catgets): Use uintN_t instead of u_intN_t.
31811 * catgets/catgetsinfo.h (struct catalog_obj): Likewise.
31812 (struct catalog_info): Likewise.
31813 * inet/htontest.c (lo): Likewise.
31815 * inet/inet_lnaof.c (inet_lnaof): Likewise.
31816 * inet/inet_net.c (inet_network): Likewise.
31817 * inet/inet_netof.c (inet_netof): Likewise.
31818 * inet/rcmd.c (__ivaliduser): Likewise.
31819 (iruserok): Likewise.
31820 * locale/loadlocale.c (_nl_intern_locale_data): Likewise.
31821 * locale/programs/locale-spec.c (locale_special): Likewise.
31822 * nis/nis_findserv.c (struct findserv_req): Likewise.
31823 (__nis_findfastest_with_timeout): Likewise.
31824 * nss/test-netdb.c (test_network): Likewise.
31825 * resolv/inet_neta.c (inet_neta): Likewise.
31826 * resolv/ns_date.c (ns_datetosecs): Likewise.
31827 (SECS_PER_DAY): Likewise.
31828 * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyaddr_r):
31830 * resolv/res_comp.c (__putlong): Likewise.
31831 (__putshort): Likewise.
31832 (_getlong): Likewise.
31833 (_getshort): Likewise.
31834 * resolv/res_debug.c (p_time): Likewise.
31835 (precsize_ntoa): Likewise.
31836 (precsize_aton): Likewise.
31837 (latlon2ul): Likewise.
31838 (loc_aton): Likewise.
31839 (loc_ntoa): Likewise.
31840 * resolv/res_hconf.c (struct netaddr): Likewise.
31841 (_res_hconf_reorder_addrs): Likewise.
31842 * sunrpc/clnt_tcp.c (clnttcp_call): Likewise.
31843 (clnttcp_control): Likewise.
31844 * sunrpc/clnt_udp.c (clntudp_call): Likewise.
31845 (clntudp_control): Likewise.
31846 * sunrpc/clnt_unix.c (clntunix_call): Likewise.
31847 (clntunix_control): Likewise.
31848 * sunrpc/pmap_rmt.c (clnt_broadcast): Likewise.
31849 * sunrpc/rpc/auth.h (union des_block): Likewise.
31850 * sunrpc/tst-udp-nonblocking.c (do_test): Likewise.
31851 * sunrpc/xdr_rec.c (struct rec_strm): Likewise.
31852 (xdrrec_create): Likewise.
31853 (xdrrec_endofrecord): Likewise.
31854 (flush_out): Likewise.
31855 * sunrpc/xdr_stdio.c (xdrstdio_getlong): Likewise.
31856 (xdrstdio_putlong): Likewise.
31857 * sysdeps/unix/sysv/linux/errqueue.h (struct sock_extended_err):
31860 * misc/sys/cdefs.h (__long_double_t): Remove.
31861 * stdio-common/printf_fp.c (__printf_fp_l): Use long double
31862 instead of __long_double_t,
31863 * stdlib/strfmon_l.c (__vstrfmon_l): Likewise.
31865 2017-08-07 Siddhesh Poyarekar <siddhesh@sourceware.org>
31867 * benchtests/scripts/compare_strings.py: Avoid display error when
31868 running on a text terminal.
31870 * benchtests/scripts/compare_strings.py (main): Add an
31871 optional -base option.
31872 (process_results): New argument base_func.
31874 * benchtests/bench-memcpy.c (test_main): Use TEST_NAME instead of
31876 * benchtests/bench-memcpy-large.c (test_name): Likewise.
31877 * benchtests/bench-memcpy-random.c (test_name): Likewise.
31879 2017-08-07 Andreas Schwab <schwab@suse.de>
31881 * elf/Makefile ($(objpfx)tst-pathopt.out): Redirect output to target.
31882 * grp/Makefile ($(objpfx)tst_fgetgrent.out): Likewise.
31883 * intl/Makefile ($(objpfx)tst-gettext.out)
31884 ($(objpfx)tst-translit.out, $(objpfx)tst-gettext2.out)
31885 ($(objpfx)tst-gettext4.out, $(objpfx)tst-gettext6.out): Likewise.
31886 * libio/Makefile ($(objpfx)test-freopen.out): Likewise.
31887 * malloc/Makefile ($(objpfx)tst-mtrace.out): Likewise.
31888 * nptl/Makefile ($(objpfx)tst-tls6.out): Likewise.
31889 * posix/Makefile ($(objpfx)globtest.out)
31890 ($(objpfx)wordexp-tst.out, $(objpfx)tst-getconf.out): Likewise.
31891 * stdio-common/Makefile ($(objpfx)tst-unbputc.out)
31892 ($(objpfx)tst-printf.out): Likewise.
31893 * stdlib/Makefile ($(objpfx)tst-fmtmsg.out)
31894 ($(objpfx)tst-setcontext3.out): Likewise.
31896 2017-08-07 H.J. Lu <hongjiu.lu@intel.com>
31898 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
31899 Add e_exp-fma, e_log-fma, e_pow-fma, s_atan-fma, e_asin-fma,
31900 e_atan2-fma, s_sin-fma, s_tan-fma, mplog-fma, mpa-fma,
31901 slowexp-fma, slowpow-fma, sincos32-fma, doasin-fma, dosincos-fma,
31902 halfulp-fma, mpexp-fma, mpatan2-fma, mpatan-fma, mpsqrt-fma,
31904 (CFLAGS-doasin-fma.c): New.
31905 (CFLAGS-dosincos-fma.c): Likewise.
31906 (CFLAGS-e_asin-fma.c): Likewise.
31907 (CFLAGS-e_atan2-fma.c): Likewise.
31908 (CFLAGS-e_exp-fma.c): Likewise.
31909 (CFLAGS-e_log-fma.c): Likewise.
31910 (CFLAGS-e_pow-fma.c): Likewise.
31911 (CFLAGS-halfulp-fma.c): Likewise.
31912 (CFLAGS-mpa-fma.c): Likewise.
31913 (CFLAGS-mpatan-fma.c): Likewise.
31914 (CFLAGS-mpatan2-fma.c): Likewise.
31915 (CFLAGS-mpexp-fma.c): Likewise.
31916 (CFLAGS-mplog-fma.c): Likewise.
31917 (CFLAGS-mpsqrt-fma.c): Likewise.
31918 (CFLAGS-mptan-fma.c): Likewise.
31919 (CFLAGS-s_atan-fma.c): Likewise.
31920 (CFLAGS-sincos32-fma.c): Likewise.
31921 (CFLAGS-slowexp-fma.c): Likewise.
31922 (CFLAGS-slowpow-fma.c): Likewise.
31923 (CFLAGS-s_sin-fma.c): Likewise.
31924 (CFLAGS-s_tan-fma.c): Likewise.
31925 * sysdeps/x86_64/fpu/multiarch/doasin-fma.c: New file.
31926 * sysdeps/x86_64/fpu/multiarch/dosincos-fma.c: Likewise.
31927 * sysdeps/x86_64/fpu/multiarch/e_asin-fma.c: Likewise.
31928 * sysdeps/x86_64/fpu/multiarch/e_atan2-fma.c: Likewise.
31929 * sysdeps/x86_64/fpu/multiarch/e_exp-fma.c: Likewise.
31930 * sysdeps/x86_64/fpu/multiarch/e_log-fma.c: Likewise.
31931 * sysdeps/x86_64/fpu/multiarch/e_pow-fma.c: Likewise.
31932 * sysdeps/x86_64/fpu/multiarch/halfulp-fma.c: Likewise.
31933 * sysdeps/x86_64/fpu/multiarch/ifunc-avx-fma4.h: Likewise.
31934 * sysdeps/x86_64/fpu/multiarch/ifunc-fma4.h: Likewise.
31935 * sysdeps/x86_64/fpu/multiarch/mpa-fma.c: Likewise.
31936 * sysdeps/x86_64/fpu/multiarch/mpatan-fma.c: Likewise.
31937 * sysdeps/x86_64/fpu/multiarch/mpatan2-fma.c: Likewise.
31938 * sysdeps/x86_64/fpu/multiarch/mpexp-fma.c: Likewise.
31939 * sysdeps/x86_64/fpu/multiarch/mplog-fma.c: Likewise.
31940 * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma.c: Likewise.
31941 * sysdeps/x86_64/fpu/multiarch/mptan-fma.c: Likewise.
31942 * sysdeps/x86_64/fpu/multiarch/s_atan-fma.c: Likewise.
31943 * sysdeps/x86_64/fpu/multiarch/s_sin-fma.c: Likewise.
31944 * sysdeps/x86_64/fpu/multiarch/s_tan-fma.c: Likewise.
31945 * sysdeps/x86_64/fpu/multiarch/sincos32-fma.c: Likewise.
31946 * sysdeps/x86_64/fpu/multiarch/slowexp-fma.c: Likewise.
31947 * sysdeps/x86_64/fpu/multiarch/slowpow-fma.c: Likewise.
31948 * sysdeps/x86_64/fpu/multiarch/e_asin.c: Rewrite.
31949 * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Likewise.
31950 * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
31951 * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
31952 * sysdeps/x86_64/fpu/multiarch/e_pow.c: Likewise.
31953 * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
31954 * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
31955 * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
31957 2017-08-04 Joseph Myers <joseph@codesourcery.com>
31959 * sysdeps/generic/math_private.h (__EXPR_FLT128): Remove macro.
31960 (min_of_type_f): New macro.
31961 (min_of_type_): Likewise.
31962 (min_of_type_l): Likewise.
31963 (min_of_type_f128): Likewise.
31964 (min_of_type): Define using __MATH_TG and taking an expression
31966 (math_check_force_underflow): Pass expression instead of type to
31968 (math_check_force_underflow_nonneg): Likewise.
31970 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
31972 * sysdeps/x86/cpu-features.h [__ASSEMBLER__]
31973 (LOAD_RTLD_GLOBAL_RO_RDX, HAS_FEATURE, LOAD_FUNC_GOT_EAX,
31974 HAS_CPU_FEATURE, HAS_ARCH_FEATURE): Removed.
31976 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
31978 * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
31979 bcopy-ia32, bzero-ia32, rawmemchr-ia32 memchr-ia32,
31980 memcmp-ia32, memcpy-ia32, memmove-ia32, mempcpy-ia32,
31981 memset-ia32, strcat-ia32, strchr-ia32, strrchr-ia32,
31982 strcpy-ia32, strcmp-ia32, strcspn-ia32, strpbrk-ia32,
31983 strspn-ia32, strlen-ia32, stpcpy-ia32, stpncpy-ia32,
31984 memcpy_chk-nonshared, mempcpy_chk-nonshared,
31985 memmove_chk-nonshared and memset_chk-nonshared
31986 * sysdeps/i386/i686/multiarch/bcopy-ia32.S: New file.
31987 * sysdeps/i386/i686/multiarch/bcopy.c: Likewise.
31988 * sysdeps/i386/i686/multiarch/bzero-ia32.S: Likewise.
31989 * sysdeps/i386/i686/multiarch/bzero.c: Likewise.
31990 * sysdeps/i386/i686/multiarch/ifunc-memmove.h: Likewise.
31991 * sysdeps/i386/i686/multiarch/ifunc-memset.h: Likewise.
31992 * sysdeps/i386/i686/multiarch/ifunc-sse2-bsf.h: Likewise.
31993 * sysdeps/i386/i686/multiarch/ifunc-sse2-ssse3.h: Likewise.
31994 * sysdeps/i386/i686/multiarch/ifunc-sse2.h: Likewise.
31995 * sysdeps/i386/i686/multiarch/ifunc-sse4_2.h: Likewise.
31996 * sysdeps/i386/i686/multiarch/ifunc-ssse3-sse4_2.h: Likewise.
31997 * sysdeps/i386/i686/multiarch/memchr-ia32.S: Likewise.
31998 * sysdeps/i386/i686/multiarch/memchr.c: Likewise.
31999 * sysdeps/i386/i686/multiarch/memcmp-ia32.S: Likewise.
32000 * sysdeps/i386/i686/multiarch/memcmp.c: Likewise.
32001 * sysdeps/i386/i686/multiarch/memcpy-ia32.S: Likewise.
32002 * sysdeps/i386/i686/multiarch/memcpy.c: Likewise.
32003 * sysdeps/i386/i686/multiarch/memcpy_chk-nonshared.S: Likewise.
32004 * sysdeps/i386/i686/multiarch/memcpy_chk.c: Likewise.
32005 * sysdeps/i386/i686/multiarch/memmove-ia32.S: Likewise.
32006 * sysdeps/i386/i686/multiarch/memmove.c: Likewise.
32007 * sysdeps/i386/i686/multiarch/memmove_chk-nonshared.S: Likewise.
32008 * sysdeps/i386/i686/multiarch/memmove_chk.c: Likewise.
32009 * sysdeps/i386/i686/multiarch/mempcpy-ia32.S: Likewise.
32010 * sysdeps/i386/i686/multiarch/mempcpy.c: Likewise.
32011 * sysdeps/i386/i686/multiarch/mempcpy_chk-nonshared.S: Likewise.
32012 * sysdeps/i386/i686/multiarch/mempcpy_chk.c: Likewise.
32013 * sysdeps/i386/i686/multiarch/memrchr.c: Likewise.
32014 * sysdeps/i386/i686/multiarch/memset-ia32.S: Likewise.
32015 * sysdeps/i386/i686/multiarch/memset.c: Likewise.
32016 * sysdeps/i386/i686/multiarch/memset_chk-nonshared.S: Likewise.
32017 * sysdeps/i386/i686/multiarch/rawmemchr-ia32.S: Likewise.
32018 * sysdeps/i386/i686/multiarch/rawmemchr.c: Likewise.
32019 * sysdeps/i386/i686/multiarch/stpcpy-ia32.S: Likewise.
32020 * sysdeps/i386/i686/multiarch/stpcpy-ia32.S: Likewise.
32021 * sysdeps/i386/i686/multiarch/stpcpy.c: Likewise.
32022 * sysdeps/i386/i686/multiarch/stpncpy-ia32.S: Likewise.
32023 * sysdeps/i386/i686/multiarch/stpncpy.c: Likewise.
32024 * sysdeps/i386/i686/multiarch/strcasecmp.c: Likewise.
32025 * sysdeps/i386/i686/multiarch/strcasecmp_l.c: Likewise.
32026 * sysdeps/i386/i686/multiarch/strcat-ia32.S: Likewise.
32027 * sysdeps/i386/i686/multiarch/strcat.c: Likewise.
32028 * sysdeps/i386/i686/multiarch/strchr-ia32.S: Likewise.
32029 * sysdeps/i386/i686/multiarch/strchr.c: Likewise.
32030 * sysdeps/i386/i686/multiarch/strcmp-ia32.S: Likewise.
32031 * sysdeps/i386/i686/multiarch/strcmp.c: Likewise.
32032 * sysdeps/i386/i686/multiarch/strcpy-ia32.S: Likewise.
32033 * sysdeps/i386/i686/multiarch/strcpy.c: Likewise.
32034 * sysdeps/i386/i686/multiarch/strcspn-ia32.S: Likewise.
32035 * sysdeps/i386/i686/multiarch/strcspn.c: Likewise.
32036 * sysdeps/i386/i686/multiarch/strlen-ia32.S: Likewise.
32037 * sysdeps/i386/i686/multiarch/strlen.c: Likewise.
32038 * sysdeps/i386/i686/multiarch/strncase.c: Likewise.
32039 * sysdeps/i386/i686/multiarch/strncase_l.c: Likewise.
32040 * sysdeps/i386/i686/multiarch/strncat.c: Likewise.
32041 * sysdeps/i386/i686/multiarch/strncmp.c: Likewise.
32042 * sysdeps/i386/i686/multiarch/strncpy.c: Likewise.
32043 * sysdeps/i386/i686/multiarch/strnlen.c: Likewise.
32044 * sysdeps/i386/i686/multiarch/strpbrk-ia32.S: Likewise.
32045 * sysdeps/i386/i686/multiarch/strpbrk.c: Likewise.
32046 * sysdeps/i386/i686/multiarch/strrchr-ia32.S: Likewise.
32047 * sysdeps/i386/i686/multiarch/strrchr.c: Likewise.
32048 * sysdeps/i386/i686/multiarch/strspn-ia32.S: Likewise.
32049 * sysdeps/i386/i686/multiarch/strspn.c: Likewise.
32050 * sysdeps/i386/i686/multiarch/wcschr.c: Likewise.
32051 * sysdeps/i386/i686/multiarch/wcscmp.c: Likewise.
32052 * sysdeps/i386/i686/multiarch/wcscpy.c: Likewise.
32053 * sysdeps/i386/i686/multiarch/wcslen.c: Likewise.
32054 * sysdeps/i386/i686/multiarch/wcsrchr.c: Likewise.
32055 * sysdeps/i386/i686/multiarch/wmemcmp.c: Likewise.
32056 * sysdeps/i386/i686/multiarch/bcopy.S: Removed.
32057 * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
32058 * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
32059 * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
32060 * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
32061 * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
32062 * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
32063 * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
32064 * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
32065 * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
32066 * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
32067 * sysdeps/i386/i686/multiarch/memset.S: Likewise.
32068 * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
32069 * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
32070 * sysdeps/i386/i686/multiarch/stpcpy.S: Likewise.
32071 * sysdeps/i386/i686/multiarch/stpncpy.S: Likewise.
32072 * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
32073 * sysdeps/i386/i686/multiarch/strcasecmp_l.S: Likewise.
32074 * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
32075 * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
32076 * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
32077 * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
32078 * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
32079 * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
32080 * sysdeps/i386/i686/multiarch/strncase_l.S: Likewise.
32081 * sysdeps/i386/i686/multiarch/strncat.S: Likewise.
32082 * sysdeps/i386/i686/multiarch/strncmp.S: Likewise.
32083 * sysdeps/i386/i686/multiarch/strncpy.S: Likewise.
32084 * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
32085 * sysdeps/i386/i686/multiarch/strpbrk.S: Likewise.
32086 * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
32087 * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
32088 * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
32089 * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
32090 * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
32091 * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
32092 * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
32093 * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
32095 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32097 * sysdeps/x86_64/fpu/multiarch/Makefile (libmvec-sysdep_routines)
32098 Add svml_d_cos2_core-sse2, svml_d_cos4_core-sse,
32099 svml_d_cos8_core-avx2, svml_d_exp2_core-sse2,
32100 svml_d_exp4_core-sse, svml_d_exp8_core-avx2,
32101 svml_d_log2_core-sse2, svml_d_log4_core-sse,
32102 svml_d_log8_core-avx2, svml_d_pow2_core-sse2,
32103 svml_d_pow4_core-sse, svml_d_pow8_core-avx2
32104 svml_d_sin2_core-sse2, svml_d_sin4_core-sse,
32105 svml_d_sin8_core-avx2, svml_d_sincos2_core-sse2,
32106 svml_d_sincos4_core-sse, svml_d_sincos8_core-avx2,
32107 svml_s_cosf16_core-avx2, svml_s_cosf4_core-sse2,
32108 svml_s_cosf8_core-sse, svml_s_expf16_core-avx2,
32109 svml_s_expf4_core-sse2, svml_s_expf8_core-sse,
32110 svml_s_logf16_core-avx2, svml_s_logf4_core-sse2,
32111 svml_s_logf8_core-sse, svml_s_powf16_core-avx2,
32112 svml_s_powf4_core-sse2, svml_s_powf8_core-sse,
32113 svml_s_sincosf16_core-avx2, svml_s_sincosf4_core-sse2,
32114 svml_s_sincosf8_core-sse, svml_s_sinf16_core-avx2,
32115 svml_s_sinf4_core-sse2 and svml_s_sinf8_core-sse.
32116 * sysdeps/x86_64/fpu/multiarch/ifunc-mathvec-avx2.h: New file.
32117 * sysdeps/x86_64/fpu/multiarch/ifunc-mathvec-avx512.h: Likewise.
32118 * sysdeps/x86_64/fpu/multiarch/ifunc-mathvec-sse4_1.h: Likewise.
32119 * sysdeps/x86_64/fpu/multiarch/svml_d_cos2_core.c: Likewise.
32120 * sysdeps/x86_64/fpu/multiarch/svml_d_cos4_core.c: Likewise.
32121 * sysdeps/x86_64/fpu/multiarch/svml_d_cos8_core.c: Likewise.
32122 * sysdeps/x86_64/fpu/multiarch/svml_d_exp2_core.c: Likewise.
32123 * sysdeps/x86_64/fpu/multiarch/svml_d_exp4_core.c: Likewise.
32124 * sysdeps/x86_64/fpu/multiarch/svml_d_exp8_core.c: Likewise.
32125 * sysdeps/x86_64/fpu/multiarch/svml_d_log2_core.c: Likewise.
32126 * sysdeps/x86_64/fpu/multiarch/svml_d_log4_core.c: Likewise.
32127 * sysdeps/x86_64/fpu/multiarch/svml_d_log8_core.c: Likewise.
32128 * sysdeps/x86_64/fpu/multiarch/svml_d_pow2_core.c: Likewise.
32129 * sysdeps/x86_64/fpu/multiarch/svml_d_pow4_core.c: Likewise.
32130 * sysdeps/x86_64/fpu/multiarch/svml_d_pow8_core.c: Likewise.
32131 * sysdeps/x86_64/fpu/multiarch/svml_d_sin2_core.c: Likewise.
32132 * sysdeps/x86_64/fpu/multiarch/svml_d_sin4_core.c: Likewise.
32133 * sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core.c: Likewise.
32134 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos2_core.c: Likewise.
32135 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos4_core.c: Likewise.
32136 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos8_core.c: Likewise.
32137 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf16_core.c: Likewise.
32138 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf4_core.c: Likewise.
32139 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf8_core.c: Likewise.
32140 * sysdeps/x86_64/fpu/multiarch/svml_d_expf16_core.c: Likewise.
32141 * sysdeps/x86_64/fpu/multiarch/svml_d_expf4_core.c: Likewise.
32142 * sysdeps/x86_64/fpu/multiarch/svml_d_expf8_core.c: Likewise.
32143 * sysdeps/x86_64/fpu/multiarch/svml_d_logf16_core.c: Likewise.
32144 * sysdeps/x86_64/fpu/multiarch/svml_d_logf4_core.c: Likewise.
32145 * sysdeps/x86_64/fpu/multiarch/svml_d_logf8_core.c: Likewise.
32146 * sysdeps/x86_64/fpu/multiarch/svml_d_powf16_core.c: Likewise.
32147 * sysdeps/x86_64/fpu/multiarch/svml_d_powf4_core.c: Likewise.
32148 * sysdeps/x86_64/fpu/multiarch/svml_d_powf8_core.c: Likewise.
32149 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf16_core.c: Likewise.
32150 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf4_core.c: Likewise.
32151 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf8_core.c: Likewise.
32152 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf16_core.c: Likewise.
32153 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf4_core.c: Likewise.
32154 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf8_core.c: Likewise.
32155 * sysdeps/x86_64/fpu/multiarch/svml_d_cos2_core.S: Renamed to
32157 * sysdeps/x86_64/fpu/multiarch/svml_d_cos2_core-sse2.S: This.
32158 Don't include <sysdep.h> nor <init-arch.h>.
32159 (_ZGVbN2v_cos): Removed.
32160 * sysdeps/x86_64/fpu/multiarch/svml_d_cos4_core.S: Renamed to
32162 * sysdeps/x86_64/fpu/multiarch/svml_d_cos4_core-sse.S: This.
32163 Don't include <sysdep.h> nor <init-arch.h>.
32164 (_ZGVdN4v_cos): Removed.
32165 * sysdeps/x86_64/fpu/multiarch/svml_d_cos8_core.S: Renamed to
32167 * sysdeps/x86_64/fpu/multiarch/svml_d_cos8_core-avx2.S: This.
32168 Don't include <sysdep.h> nor <init-arch.h>.
32169 (_ZGVeN8v_cos): Removed.
32170 * sysdeps/x86_64/fpu/multiarch/svml_d_exp2_core.S: Renamed to
32172 * sysdeps/x86_64/fpu/multiarch/svml_d_exp2_core-sse2.S: This.
32173 Don't include <sysdep.h> nor <init-arch.h>.
32174 (_ZGVbN2v_exp): Removed.
32175 * sysdeps/x86_64/fpu/multiarch/svml_d_exp4_core.S: Renamed to
32177 * sysdeps/x86_64/fpu/multiarch/svml_d_exp4_core-sse.S: This.
32178 Don't include <sysdep.h> nor <init-arch.h>.
32179 (_ZGVdN4v_exp): Removed.
32180 * sysdeps/x86_64/fpu/multiarch/svml_d_exp8_core.S: Renamed to
32182 * sysdeps/x86_64/fpu/multiarch/svml_d_exp8_core-avx2.S: This.
32183 Don't include <sysdep.h> nor <init-arch.h>.
32184 (_ZGVeN8v_exp): Removed.
32185 * sysdeps/x86_64/fpu/multiarch/svml_d_log2_core.S: Renamed to
32187 * sysdeps/x86_64/fpu/multiarch/svml_d_log2_core-sse2.S: This.
32188 Don't include <sysdep.h> nor <init-arch.h>.
32189 (_ZGVbN2v_log): Removed.
32190 * sysdeps/x86_64/fpu/multiarch/svml_d_log4_core.S: Renamed to
32192 * sysdeps/x86_64/fpu/multiarch/svml_d_log4_core-sse.S: This.
32193 Don't include <sysdep.h> nor <init-arch.h>.
32194 (_ZGVdN4v_log): Removed.
32195 * sysdeps/x86_64/fpu/multiarch/svml_d_log8_core.S: Renamed to
32197 * sysdeps/x86_64/fpu/multiarch/svml_d_log8_core-avx2.S: This.
32198 Don't include <sysdep.h> nor <init-arch.h>.
32199 (_ZGVeN8v_log): Removed.
32200 * sysdeps/x86_64/fpu/multiarch/svml_d_pow2_core.S: Renamed to
32202 * sysdeps/x86_64/fpu/multiarch/svml_d_pow2_core-sse2.S: This.
32203 Don't include <sysdep.h> nor <init-arch.h>.
32204 (_ZGVbN2vv_pow): Removed.
32205 * sysdeps/x86_64/fpu/multiarch/svml_d_pow4_core.S: Renamed to
32207 * sysdeps/x86_64/fpu/multiarch/svml_d_pow4_core-sse.S: This.
32208 Don't include <sysdep.h> nor <init-arch.h>.
32209 (_ZGVdN4vv_pow): Removed.
32210 * sysdeps/x86_64/fpu/multiarch/svml_d_pow8_core.S: Renamed to
32212 * sysdeps/x86_64/fpu/multiarch/svml_d_pow8_core-avx2.S: This.
32213 Don't include <sysdep.h> nor <init-arch.h>.
32214 (_ZGVeN8vv_pow): Removed.
32215 * sysdeps/x86_64/fpu/multiarch/svml_d_sin2_core.S: Renamed to
32217 * sysdeps/x86_64/fpu/multiarch/svml_d_sin2_core-sse2.S: This.
32218 Don't include <sysdep.h> nor <init-arch.h>.
32219 (_ZGVbN2v_sin): Removed.
32220 * sysdeps/x86_64/fpu/multiarch/svml_d_sin4_core.S: Renamed to
32222 * sysdeps/x86_64/fpu/multiarch/svml_d_sin4_core-sse.S: This.
32223 Don't include <sysdep.h> nor <init-arch.h>.
32224 (_ZGVbN4v_sin): Removed.
32225 * sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core.S: Renamed to
32227 * sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core-avx2.S: This.
32228 Don't include <sysdep.h> nor <init-arch.h>.
32229 (_ZGVbN8v_sin): Removed.
32230 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos2_core.S: Renamed to
32232 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos2_core-sse2.S: This.
32233 Don't include <sysdep.h> nor <init-arch.h>.
32234 (_ZGVbN2vvv_sincos): Removed.
32235 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos4_core.S: Renamed to
32237 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos4_core-sse.S: This.
32238 Don't include <sysdep.h> nor <init-arch.h>.
32239 (_ZGVdN4vvv_sincos): Removed.
32240 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos8_core.S: Renamed to
32242 * sysdeps/x86_64/fpu/multiarch/svml_d_sincos8_core-avx2.S: This.
32243 Don't include <sysdep.h> nor <init-arch.h>.
32244 (_ZGVeN8vvv_sincos): Removed.
32245 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf16_core.S: Renamed to
32247 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf16_core-avx2.S: This.
32248 Don't include <sysdep.h> nor <init-arch.h>.
32249 (_ZGVeN16v_cosf): Removed.
32250 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf4_core.S: Renamed to
32252 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf4_core-sse2.S: This.
32253 Don't include <sysdep.h> nor <init-arch.h>.
32254 (_ZGVbN4v_cosf): Removed.
32255 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf8_core.S: Renamed to
32257 * sysdeps/x86_64/fpu/multiarch/svml_d_cosf8_core-sse.S: This.
32258 Don't include <sysdep.h> nor <init-arch.h>.
32259 (_ZGVdN8v_cosf): Removed.
32260 * sysdeps/x86_64/fpu/multiarch/svml_d_expf16_core.S: Renamed to
32262 * sysdeps/x86_64/fpu/multiarch/svml_d_expf16_core-avx2.S: This.
32263 Don't include <sysdep.h> nor <init-arch.h>.
32264 (_ZGVeN16v_expf): Removed.
32265 * sysdeps/x86_64/fpu/multiarch/svml_d_expf4_core.S: Renamed to
32267 * sysdeps/x86_64/fpu/multiarch/svml_d_expf4_core-sse2.S: This.
32268 Don't include <sysdep.h> nor <init-arch.h>.
32269 (_ZGVbN4v_expf): Removed.
32270 * sysdeps/x86_64/fpu/multiarch/svml_d_expf8_core.S: Renamed to
32272 * sysdeps/x86_64/fpu/multiarch/svml_d_expf8_core-sse.S: This.
32273 Don't include <sysdep.h> nor <init-arch.h>.
32274 (_ZGVdN8v_expf): Removed.
32275 * sysdeps/x86_64/fpu/multiarch/svml_d_logf16_core.S: Renamed to
32277 * sysdeps/x86_64/fpu/multiarch/svml_d_logf16_core-avx2.S: This.
32278 Don't include <sysdep.h> nor <init-arch.h>.
32279 (_ZGVeN16v_logf): Removed.
32280 * sysdeps/x86_64/fpu/multiarch/svml_d_logf4_core.S: Renamed to
32282 * sysdeps/x86_64/fpu/multiarch/svml_d_logf4_core-sse2.S: This.
32283 Don't include <sysdep.h> nor <init-arch.h>.
32284 (_ZGVbN4v_logf): Removed.
32285 * sysdeps/x86_64/fpu/multiarch/svml_d_logf8_core.S: Renamed to
32287 * sysdeps/x86_64/fpu/multiarch/svml_d_logf8_core-sse.S: This.
32288 Don't include <sysdep.h> nor <init-arch.h>.
32289 (_ZGVdN8v_logf): Removed.
32290 * sysdeps/x86_64/fpu/multiarch/svml_d_powf16_core.S: Renamed to
32292 * sysdeps/x86_64/fpu/multiarch/svml_d_powf16_core-avx2.S: This.
32293 Don't include <sysdep.h> nor <init-arch.h>.
32294 (_ZGVeN16vv_powf): Removed.
32295 * sysdeps/x86_64/fpu/multiarch/svml_d_powf4_core.S: Renamed to
32297 * sysdeps/x86_64/fpu/multiarch/svml_d_powf4_core-sse2.S: This.
32298 Don't include <sysdep.h> nor <init-arch.h>.
32299 (_ZGVbN4vv_powf): Removed.
32300 * sysdeps/x86_64/fpu/multiarch/svml_d_powf8_core.S: Renamed to
32302 * sysdeps/x86_64/fpu/multiarch/svml_d_powf8_core-sse.S: This.
32303 Don't include <sysdep.h> nor <init-arch.h>.
32304 (_ZGVdN8vv_powf): Removed.
32305 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf16_core.S: Renamed to
32307 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf16_core-avx2.S: This.
32308 Don't include <sysdep.h> nor <init-arch.h>.
32309 (_ZGVeN16vvv_sincosf): Removed.
32310 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf4_core.S: Renamed to
32312 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf4_core-sse2.S: This.
32313 Don't include <sysdep.h> nor <init-arch.h>.
32314 (_ZGVbN4vvv_sincosf): Removed.
32315 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf8_core.S: Renamed to
32317 * sysdeps/x86_64/fpu/multiarch/svml_d_sincosf8_core-sse.S: This.
32318 Don't include <sysdep.h> nor <init-arch.h>.
32319 (_ZGVdN8vvv_sincosf): Removed.
32320 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf16_core.S: Renamed to
32322 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf16_core-avx2.S: This.
32323 Don't include <sysdep.h> nor <init-arch.h>.
32324 (_ZGVeN16v_sinf): Removed.
32325 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf4_core.S: Renamed to
32327 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf4_core-sse2.S: This.
32328 Don't include <sysdep.h> nor <init-arch.h>.
32329 (_ZGVbN4v_sinf): Removed.
32330 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf8_core.S: Renamed to
32332 * sysdeps/x86_64/fpu/multiarch/svml_d_sinf8_core-sse.S: This.
32333 Don't include <sysdep.h> nor <init-arch.h>.
32334 (_ZGVdN8v_sinf): Removed.
32336 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32338 * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
32339 Add s_ceil-sse4_1, s_ceilf-sse4_1, s_floor-sse4_1,
32340 s_floorf-sse4_1, s_nearbyint-sse4_1, s_nearbyintf-sse4_1,
32341 s_rint-sse4_1 and s_rintf-sse4_1.
32342 * sysdeps/x86_64/fpu/multiarch/ifunc-sse4_1.h: New file.
32343 * sysdeps/x86_64/fpu/multiarch/s_ceil.c: Likewise.
32344 * sysdeps/x86_64/fpu/multiarch/s_ceilf.c: Likewise.
32345 * sysdeps/x86_64/fpu/multiarch/s_floor.c: Likewise.
32346 * sysdeps/x86_64/fpu/multiarch/s_floorf.c: Likewise.
32347 * sysdeps/x86_64/fpu/multiarch/s_nearbyint.c: Likewise.
32348 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.c: Likewise.
32349 * sysdeps/x86_64/fpu/multiarch/s_rint.c: Likewise.
32350 * sysdeps/x86_64/fpu/multiarch/s_rintf.c: Likewise.
32351 * sysdeps/x86_64/fpu/multiarch/s_ceil.S: Renamed to ...
32352 * sysdeps/x86_64/fpu/multiarch/s_ceil-sse4_1.S: This. Don't
32353 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32355 * sysdeps/x86_64/fpu/multiarch/s_ceilf.S: Renamed to ...
32356 * sysdeps/x86_64/fpu/multiarch/s_ceilf-sse4_1.S: This. Don't
32357 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32358 (__ceilf): Removed.
32359 * sysdeps/x86_64/fpu/multiarch/s_floor.S: Renamed to ...
32360 * sysdeps/x86_64/fpu/multiarch/s_floor-sse4_1.S: This. Don't
32361 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32362 (__floor): Removed.
32363 * sysdeps/x86_64/fpu/multiarch/s_floorf.S: Renamed to ...
32364 * sysdeps/x86_64/fpu/multiarch/s_floorf-sse4_1.S: This. Don't
32365 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32366 (__floorf): Removed.
32367 * sysdeps/x86_64/fpu/multiarch/s_nearbyint.S: Renamed to ...
32368 * sysdeps/x86_64/fpu/multiarch/s_nearbyint-sse4_1.S: This. Don't
32369 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32370 (__nearbyint): Removed.
32371 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.S: Renamed to ...
32372 * sysdeps/x86_64/fpu/multiarch/s_nearbyintf-sse4_1.S: This. Don't
32373 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32374 (__nearbyintf): Removed.
32375 * sysdeps/x86_64/fpu/multiarch/s_rint.S: Renamed to ...
32376 * sysdeps/x86_64/fpu/multiarch/s_rint-sse4_1.S: This. Don't
32377 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32379 * sysdeps/x86_64/fpu/multiarch/s_rintf.S: Renamed to ...
32380 * sysdeps/x86_64/fpu/multiarch/s_rintf-sse4_1.S: This. Don't
32381 include <machine/asm.h> nor <init-arch.h>. Include <sysdep.h>.
32382 (__rintf): Removed.
32384 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32386 * sysdeps/i386/start.S (_start): Check Check PIC instead of
32387 SHARED. Avoid dynamic relocation against main in static PIE.
32389 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32392 * elf/Makefile (CFLAGS-tst-prelink.c): New.
32393 (LDFLAGS-tst-prelink): Likewise.
32395 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32397 * sysdeps/unix/sysv/linux/i386/sysdep.h (I386_USE_SYSENTER):
32398 Define to I386_USE_SYSENTER to 0 or 1 if not defined.
32399 (ENTER_KERNEL): Check if I386_USE_SYSENTER is 1 and check PIC.
32400 (INTERNAL_SYSCALL_MAIN_INLINE): Likewise.
32401 (INTERNAL_SYSCALL_NCS): Likewise.
32402 (LOADARGS_1): Likewise.
32403 (LOADARGS_5): Likewise.
32404 (RESTOREARGS_1): Likewise.
32405 (RESTOREARGS_5): Likewise.
32407 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32409 * sysdeps/x86_64/memmove.S (MEMCPY_SYMBOL): Don't check SHARED.
32410 (MEMPCPY_SYMBOL): Likewise.
32411 * sysdeps/x86_64/multiarch/ifunc-impl-list.c
32412 (__libc_ifunc_impl_list): Test memcpy and mempcpy in libc.a.
32413 * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Also include
32415 * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
32416 * sysdeps/x86_64/multiarch/memmove-avx512-no-vzeroupper.S:
32418 * sysdeps/x86_64/multiarch/memcpy.c: Also include in libc.a.
32419 (__hidden_ver1): Don't use in libc.a.
32420 * sysdeps/x86_64/multiarch/memmove-sse2-unaligned-erms.S
32421 (__mempcpy): Don't create a weak alias in libc.a.
32422 * sysdeps/x86_64/multiarch/memmove-vec-unaligned-erms.S: Support
32424 * sysdeps/x86_64/multiarch/mempcpy.c: Also include in libc.a.
32425 (__hidden_ver1): Don't use in libc.a.
32427 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32429 * config.make.in (have-insert): New.
32430 * configure.ac (libc_cv_insert): New. Set to yes if linker
32431 supports INSERT in linker script.
32432 (AC_SUBST(libc_cv_insert): New.
32433 * configure: Regenerated.
32434 * sysdeps/x86_64/Makefile (tests): Add tst-split-dynreloc only
32435 if $(have-insert) == yes.
32437 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32439 * elf/Makefile (tests): Add vismain only if
32440 $(have-protected-data) == yes.
32441 (tests-pie): Likewise.
32443 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32446 * sysdeps/x86/cpu-features.c (init_cpu_features): Set
32447 bit_arch_Use_dl_runtime_resolve_opt only with AVX512F.
32449 2017-08-04 H.J. Lu <hongjiu.lu@intel.com>
32452 * sysdeps/i386/i586/memset.S
32453 (__memset_zero_constant_len_parameter): Removed.
32454 * sysdeps/i386/i686/memset.S
32455 (__memset_zero_constant_len_parameter): Likewise.
32456 * sysdeps/i386/i686/multiarch/memset_chk.S
32457 (__memset_zero_constant_len_parameter): Likewise.
32458 * sysdeps/x86_64/memset.S (__memset_zero_constant_len_parameter):
32461 2017-08-03 Aurelien Jarno <aurelien@aurel32.net>
32463 * stdlib/getentropy.c (getentropy): Change return type to int.
32465 2017-08-03 Aurelien Jarno <aurelien@aurel32.net>
32467 * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Regenerated.
32469 2017-08-03 Joseph Myers <joseph@codesourcery.com>
32471 * math/s_nextafter.c (__nextafter): Use uintN_t instead of
32473 * math/s_nexttowardf.c (__nexttowardf): Likewise.
32474 * sysdeps/generic/math_private.h (ieee_double_shape_type):
32476 (ieee_float_shape_type): Likewise.
32477 * sysdeps/i386/fpu/s_fpclassifyl.c (__fpclassifyl): Likewise.
32478 * sysdeps/i386/fpu/s_isnanl.c (__isnanl): Likewise.
32479 * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Likewise.
32480 * sysdeps/i386/fpu/s_nexttoward.c (__nexttoward): Likewise.
32481 * sysdeps/i386/fpu/s_nexttowardf.c (__nexttowardf): Likewise.
32482 * sysdeps/ieee754/dbl-64/e_acosh.c (__ieee754_acosh): Likewise.
32483 * sysdeps/ieee754/dbl-64/e_cosh.c (__ieee754_cosh): Likewise.
32484 * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Likewise.
32485 * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r):
32487 * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Likewise.
32488 * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn): Likewise.
32489 (__ieee754_yn): Likewise.
32490 * sysdeps/ieee754/dbl-64/e_log10.c (__ieee754_log10): Likewise.
32491 * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Likewise.
32492 * sysdeps/ieee754/dbl-64/e_rem_pio2.c (__ieee754_rem_pio2):
32494 * sysdeps/ieee754/dbl-64/e_sinh.c (__ieee754_sinh): Likewise.
32495 * sysdeps/ieee754/dbl-64/s_ceil.c (__ceil): Likewise.
32496 * sysdeps/ieee754/dbl-64/s_copysign.c (__copysign): Likewise.
32497 * sysdeps/ieee754/dbl-64/s_erf.c (__erf): Likewise.
32498 (__erfc): Likewise.
32499 * sysdeps/ieee754/dbl-64/s_expm1.c (__expm1): Likewise.
32500 * sysdeps/ieee754/dbl-64/s_finite.c (FINITE): Likewise.
32501 * sysdeps/ieee754/dbl-64/s_floor.c (__floor): Likewise.
32502 * sysdeps/ieee754/dbl-64/s_fpclassify.c (__fpclassify): Likewise.
32503 * sysdeps/ieee754/dbl-64/s_isnan.c (__isnan): Likewise.
32504 * sysdeps/ieee754/dbl-64/s_issignaling.c (__issignaling):
32506 * sysdeps/ieee754/dbl-64/s_llrint.c (__llrint): Likewise.
32507 * sysdeps/ieee754/dbl-64/s_llround.c (__llround): Likewise.
32508 * sysdeps/ieee754/dbl-64/s_lrint.c (__lrint): Likewise.
32509 * sysdeps/ieee754/dbl-64/s_lround.c (__lround): Likewise.
32510 * sysdeps/ieee754/dbl-64/s_modf.c (__modf): Likewise.
32511 * sysdeps/ieee754/dbl-64/s_nextup.c (__nextup): Likewise.
32512 * sysdeps/ieee754/dbl-64/s_remquo.c (__remquo): Likewise.
32513 * sysdeps/ieee754/dbl-64/s_round.c (__round): Likewise.
32514 * sysdeps/ieee754/dbl-64/s_trunc.c (__trunc): Likewise.
32515 * sysdeps/ieee754/dbl-64/wordsize-64/s_issignaling.c
32516 (__issignaling): Likewise.
32517 * sysdeps/ieee754/flt-32/e_atan2f.c (__ieee754_atan2f): Likewise.
32518 * sysdeps/ieee754/flt-32/e_fmodf.c (__ieee754_fmodf): Likewise.
32519 * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r):
32521 * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_ynf): Likewise.
32522 * sysdeps/ieee754/flt-32/e_log10f.c (__ieee754_log10f): Likewise.
32523 * sysdeps/ieee754/flt-32/e_powf.c (__ieee754_powf): Likewise.
32524 * sysdeps/ieee754/flt-32/e_rem_pio2f.c (__ieee754_rem_pio2f):
32526 * sysdeps/ieee754/flt-32/e_remainderf.c (__ieee754_remainderf):
32528 * sysdeps/ieee754/flt-32/e_sqrtf.c (__ieee754_sqrtf): Likewise.
32529 * sysdeps/ieee754/flt-32/s_ceilf.c (__ceilf): Likewise.
32530 * sysdeps/ieee754/flt-32/s_copysignf.c (__copysignf): Likewise.
32531 * sysdeps/ieee754/flt-32/s_erff.c (__erff): Likewise.
32532 (__erfcf): Likewise.
32533 * sysdeps/ieee754/flt-32/s_expm1f.c (__expm1f): Likewise.
32534 * sysdeps/ieee754/flt-32/s_finitef.c (FINITEF): Likewise.
32535 * sysdeps/ieee754/flt-32/s_floorf.c (__floorf): Likewise.
32536 * sysdeps/ieee754/flt-32/s_fpclassifyf.c (__fpclassifyf):
32538 * sysdeps/ieee754/flt-32/s_isnanf.c (__isnanf): Likewise.
32539 * sysdeps/ieee754/flt-32/s_issignalingf.c (__issignalingf):
32541 * sysdeps/ieee754/flt-32/s_llrintf.c (__llrintf): Likewise.
32542 * sysdeps/ieee754/flt-32/s_llroundf.c (__llroundf): Likewise.
32543 * sysdeps/ieee754/flt-32/s_lrintf.c (__lrintf): Likewise.
32544 * sysdeps/ieee754/flt-32/s_lroundf.c (__lroundf): Likewise.
32545 * sysdeps/ieee754/flt-32/s_modff.c (__modff): Likewise.
32546 * sysdeps/ieee754/flt-32/s_remquof.c (__remquof): Likewise.
32547 * sysdeps/ieee754/flt-32/s_roundf.c (__roundf): Likewise.
32548 * sysdeps/ieee754/ldbl-128/e_acoshl.c (__ieee754_acoshl):
32550 * sysdeps/ieee754/ldbl-128/e_atan2l.c (__ieee754_atan2l):
32552 * sysdeps/ieee754/ldbl-128/e_atanhl.c (__ieee754_atanhl):
32554 * sysdeps/ieee754/ldbl-128/e_fmodl.c (__ieee754_fmodl): Likewise.
32555 * sysdeps/ieee754/ldbl-128/e_gammal_r.c (__ieee754_gammal_r):
32557 * sysdeps/ieee754/ldbl-128/e_hypotl.c (__ieee754_hypotl):
32559 * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_jnl): Likewise.
32560 (__ieee754_ynl): Likewise.
32561 * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Likewise.
32562 * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c (__ieee754_rem_pio2l):
32564 * sysdeps/ieee754/ldbl-128/e_remainderl.c (__ieee754_remainderl):
32566 * sysdeps/ieee754/ldbl-128/e_sinhl.c (__ieee754_sinhl): Likewise.
32567 * sysdeps/ieee754/ldbl-128/k_cosl.c (__kernel_cosl): Likewise.
32568 * sysdeps/ieee754/ldbl-128/k_sincosl.c (__kernel_sincosl):
32570 * sysdeps/ieee754/ldbl-128/k_sinl.c (__kernel_sinl): Likewise.
32571 * sysdeps/ieee754/ldbl-128/s_ceill.c (__ceill): Likewise.
32572 * sysdeps/ieee754/ldbl-128/s_copysignl.c (__copysignl): Likewise.
32573 * sysdeps/ieee754/ldbl-128/s_erfl.c (__erfcl): Likewise.
32574 * sysdeps/ieee754/ldbl-128/s_fabsl.c (__fabsl): Likewise.
32575 * sysdeps/ieee754/ldbl-128/s_finitel.c (__finitel): Likewise.
32576 * sysdeps/ieee754/ldbl-128/s_floorl.c (__floorl): Likewise.
32577 * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c (__fpclassifyl):
32579 * sysdeps/ieee754/ldbl-128/s_frexpl.c (__frexpl): Likewise.
32580 * sysdeps/ieee754/ldbl-128/s_isnanl.c (__isnanl): Likewise.
32581 * sysdeps/ieee754/ldbl-128/s_issignalingl.c (__issignalingl):
32583 * sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Likewise.
32584 * sysdeps/ieee754/ldbl-128/s_llroundl.c (__llroundl): Likewise.
32585 * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Likewise.
32586 * sysdeps/ieee754/ldbl-128/s_lroundl.c (__lroundl): Likewise.
32587 * sysdeps/ieee754/ldbl-128/s_modfl.c (__modfl): Likewise.
32588 * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl):
32590 * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl):
32592 * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward):
32594 * sysdeps/ieee754/ldbl-128/s_nexttowardf.c (__nexttowardf):
32596 * sysdeps/ieee754/ldbl-128/s_nextupl.c (__nextupl): Likewise.
32597 * sysdeps/ieee754/ldbl-128/s_remquol.c (__remquol): Likewise.
32598 * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
32599 * sysdeps/ieee754/ldbl-128/s_roundl.c (__roundl): Likewise.
32600 * sysdeps/ieee754/ldbl-128/s_tanhl.c (__tanhl): Likewise.
32601 * sysdeps/ieee754/ldbl-128/s_truncl.c (__truncl): Likewise.
32602 * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl):
32604 * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
32606 * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
32607 * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
32609 * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c
32610 (__ieee754_remainderl): Likewise.
32611 * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
32612 * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
32613 * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Likewise.
32614 * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c (___fpclassifyl):
32616 * sysdeps/ieee754/ldbl-128ibm/s_modfl.c (__modfl): Likewise.
32617 * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
32619 * sysdeps/ieee754/ldbl-128ibm/s_remquol.c (__remquol): Likewise.
32620 * sysdeps/ieee754/ldbl-96/e_acoshl.c (__ieee754_acoshl): Likewise.
32621 * sysdeps/ieee754/ldbl-96/e_asinl.c (__ieee754_asinl): Likewise.
32622 * sysdeps/ieee754/ldbl-96/e_atanhl.c (__ieee754_atanhl): Likewise.
32623 * sysdeps/ieee754/ldbl-96/e_coshl.c (__ieee754_coshl): Likewise.
32624 * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
32626 * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Likewise.
32627 * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l): Likewise.
32628 (__ieee754_y0l): Likewise.
32631 * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l): Likewise.
32632 (__ieee754_y1l): Likewise.
32635 * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl): Likewise.
32636 (__ieee754_ynl): Likewise.
32637 * sysdeps/ieee754/ldbl-96/e_lgammal_r.c (sin_pi): Likewise.
32638 (__ieee754_lgammal_r): Likewise.
32639 * sysdeps/ieee754/ldbl-96/e_rem_pio2l.c (__ieee754_rem_pio2l):
32641 * sysdeps/ieee754/ldbl-96/e_sinhl.c (__ieee754_sinhl): Likewise.
32642 * sysdeps/ieee754/ldbl-96/s_copysignl.c (__copysignl): Likewise.
32643 * sysdeps/ieee754/ldbl-96/s_erfl.c (__erfl): Likewise.
32644 (__erfcl): Likewise.
32645 * sysdeps/ieee754/ldbl-96/s_frexpl.c (__frexpl): Likewise.
32646 * sysdeps/ieee754/ldbl-96/s_issignalingl.c (__issignalingl):
32648 * sysdeps/ieee754/ldbl-96/s_llrintl.c (__llrintl): Likewise.
32649 * sysdeps/ieee754/ldbl-96/s_llroundl.c (__llroundl): Likewise.
32650 * sysdeps/ieee754/ldbl-96/s_lrintl.c (__lrintl): Likewise.
32651 * sysdeps/ieee754/ldbl-96/s_lroundl.c (__lroundl): Likewise.
32652 * sysdeps/ieee754/ldbl-96/s_modfl.c (__modfl): Likewise.
32653 * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
32654 * sysdeps/ieee754/ldbl-96/s_nexttowardf.c (__nexttowardf):
32656 * sysdeps/ieee754/ldbl-96/s_nextupl.c (__nextupl): Likewise.
32657 * sysdeps/ieee754/ldbl-96/s_remquol.c (__remquol): Likewise.
32658 * sysdeps/ieee754/ldbl-96/s_roundl.c (__roundl): Likewise.
32659 * sysdeps/ieee754/ldbl-96/s_tanhl.c (__tanhl): Likewise.
32660 * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c (__nldbl_nexttowardf):
32662 * sysdeps/m68k/m680x0/fpu/e_pow.c (s(__ieee754_pow)): Likewise.
32663 * sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c (__fpclassifyl):
32665 * sysdeps/m68k/m680x0/fpu/s_llrint.c (__llrint): Likewise.
32666 * sysdeps/m68k/m680x0/fpu/s_llrintf.c (__llrintf): Likewise.
32667 * sysdeps/m68k/m680x0/fpu/s_llrintl.c (__llrintl): Likewise.
32668 * sysdeps/m68k/m680x0/fpu/s_nextafterl.c (__nextafterl): Likewise.
32669 * sysdeps/x86/fpu/powl_helper.c (__powl_helper): Likewise.
32671 2017-08-03 Florian Weimer <fweimer@redhat.com>
32674 * sysdeps/posix/getaddrinfo.c (gethosts): Release resolver context
32675 on memory allocation failure.
32677 2017-08-03 Alan Modra <amodra@gmail.com>
32679 * sysdeps/powerpc/mod-tlsopt-powerpc.c: Extract from
32680 tst-tlsopt-powerpc.c with function name change and no test harness.
32681 * sysdeps/powerpc/tst-tlsopt-powerpc.c: Remove body of test.
32682 Call tls_get_addr_opt_test.
32683 * sysdeps/powerpc/Makefile (LDFLAGS-tst-tlsopt-powerpc): Don't define.
32684 (modules-names): Add mod-tlsopt-powerpc.
32685 (mod-tlsopt-powerpc.so-no-z-defs): Define.
32686 (tst-tlsopt-powerpc): Depend on .so.
32687 * sysdeps/powerpc/powerpc64/tls-macros.h (__TLS_GET_ADDR): Don't
32688 define. Expand use in TLS_GD and TLS_LD.
32690 2017-08-02 Samuel Thibault <samuel.thibault@ens-lyon.org>
32692 * sysdeps/mach/hurd/enbl-secure.c (__libc_init_secure): Define
32694 * sysdeps/posix/shm_open.c: Include <pthread.h>.
32696 2017-08-02 Joseph Myers <joseph@codesourcery.com>
32699 * math/tgmath.h (__TGMATH_BINARY_REAL_ONLY): Add arguments before
32700 comparing size with that of double.
32701 (__TGMATH_BINARY_REAL_STD_ONLY): Likewise.
32702 (__TGMATH_BINARY_REAL_RET_ONLY): Likewise.
32703 (__TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY): Likewise.
32704 (__TGMATH_TERNARY_REAL_ONLY): Likewise.
32705 (__TGMATH_BINARY_REAL_IMAG): Likewise.
32706 * math/gen-tgmath-tests.py (Type.init_types): Create __int128 and
32707 unsigned __int128 types.
32709 2017-08-02 Steve Ellcey <sellcey@cavium.com>
32711 * localedata/Makefile (CFLAGS-tst_iswalnum.c, CFLAGS-tst_iswalpha.c
32712 CFLAGS-tst_iswcntrl.c, CFLAGS-tst_iswdigit.c, CFLAGS-tst_iswgraph.c,
32713 CFLAGS-tst_iswlower.c, CFLAGS-tst_iswprint.c, CFLAGS-tst_iswpunct.c,
32714 CFLAGS-tst_iswspace.c, CFLAGS-tst_iswupper.c, CFLAGS-tst_iswxdigit.c,
32715 CFLAGS-tst_towlower.c, CFLAGS-tst_towupper.c): Remove.
32717 2017-08-02 H.J. Lu <hongjiu.lu@intel.com>
32719 * sysdeps/x86_64/start.S (_start): Check PIC instead of SHARED.
32721 2017-08-02 H.J. Lu <hongjiu.lu@intel.com>
32723 * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Check PIC instead
32725 * sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S: Likewise.
32726 * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
32727 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
32728 * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
32729 * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
32730 * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
32731 * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
32733 2017-08-02 Joseph Myers <joseph@codesourcery.com>
32736 * math/tgmath.h (__tgmath_real_type): Use unary + on potentially
32737 bit-field expressions passed to sizeof or typeof.
32738 [__HAVE_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
32739 (__TGMATH_F128): Likewise.
32740 [__HAVE_FLOAT128 && __GLIBC_USE (IEC_60559_TYPES_EXT)]
32741 (__TGMATH_CF128): Likewise.
32742 (__TGMATH_UNARY_REAL_ONLY): Likewise.
32743 (__TGMATH_UNARY_REAL_RET_ONLY): Likewise.
32744 (__TGMATH_BINARY_FIRST_REAL_ONLY): Likewise.
32745 (__TGMATH_BINARY_FIRST_REAL_STD_ONLY): Likewise.
32746 (__TGMATH_BINARY_REAL_ONLY): Likewise.
32747 (__TGMATH_BINARY_REAL_STD_ONLY): Likewise.
32748 (__TGMATH_BINARY_REAL_RET_ONLY): Likewise.
32749 (__TGMATH_TERNARY_FIRST_SECOND_REAL_ONLY): Likewise.
32750 (__TGMATH_TERNARY_REAL_ONLY): Likewise.
32751 (__TGMATH_TERNARY_FIRST_REAL_RET_ONLY): Likewise.
32752 (__TGMATH_UNARY_REAL_IMAG): Likewise.
32753 (__TGMATH_UNARY_IMAG): Likewise.
32754 (__TGMATH_UNARY_REAL_IMAG_RET_REAL): Likewise.
32755 (__TGMATH_BINARY_REAL_IMAG): Likewise.
32756 * math/gen-tgmath-tests.py (Type.init_types): Create bit_field
32758 (define_vars_for_type): Handle bit_field type specially.
32759 (Tests.__init__): Declare structure with bit-field element.
32761 2017-08-02 H.J. Lu <hongjiu.lu@intel.com>
32764 * sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S
32765 (MEMCPY_CHK): Define only if SHARED is defined.
32766 * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S (MEMCPY_CHK):
32768 * sysdeps/i386/i686/multiarch/memcpy-ssse3.S (MEMCPY_CHK):
32771 See ChangeLog.18 for earlier changes.